diff --git a/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs b/Content.Client/Atmos/Consoles/AtmosAlertsComputerWindow.xaml.cs index f0b7ffbe119..81c9a409a3b 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; @@ -42,19 +43,32 @@ public sealed partial class AtmosAlertsComputerWindow : FancyWindow private const float SilencingDuration = 2.5f; + // Colors + private Color _wallColor = new Color(64, 64, 64); + private Color _tileColor = new Color(28, 28, 28); + private Color _monitorBlipColor = Color.Cyan; + private Color _untrackedEntColor = Color.DimGray; + private Color _regionBaseColor = new Color(154, 154, 154); + private Color _inactiveColor = StyleNano.DisabledFore; + private Color _statusTextColor = StyleNano.GoodGreenFore; + private Color _goodColor = Color.LimeGreen; + private Color _warningColor = new Color(255, 182, 72); + private Color _dangerColor = new Color(255, 67, 67); + public AtmosAlertsComputerWindow(AtmosAlertsComputerBoundUserInterface userInterface, EntityUid? owner) { RobustXamlLoader.Load(this); _entManager = IoCManager.Resolve(); _spriteSystem = _entManager.System(); + _navMapSystem = _entManager.System(); // Pass the owner to nav map _owner = owner; NavMap.Owner = _owner; // Set nav map colors - NavMap.WallColor = new Color(64, 64, 64); - NavMap.TileColor = Color.DimGray * NavMap.WallColor; + NavMap.WallColor = _wallColor; + NavMap.TileColor = _tileColor; // Set nav map grid uid var stationName = Loc.GetString("atmos-alerts-window-unknown-location"); @@ -179,6 +193,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; @@ -209,7 +226,7 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ if (consoleCoords != null && consoleUid != null) { var texture = _spriteSystem.Frame0(new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png"))); - var blip = new NavMapBlip(consoleCoords.Value, texture, Color.Cyan, true, false); + var blip = new NavMapBlip(consoleCoords.Value, texture, _monitorBlipColor, true, false); NavMap.TrackedEntities[consoleUid.Value] = blip; } @@ -258,7 +275,7 @@ public void UpdateUI(EntityCoordinates? consoleCoords, AtmosAlertsComputerEntry[ VerticalAlignment = VAlignment.Center, }; - label.SetMarkup(Loc.GetString("atmos-alerts-window-no-active-alerts", ("color", StyleNano.GoodGreenFore.ToHexNoAlpha()))); + label.SetMarkup(Loc.GetString("atmos-alerts-window-no-active-alerts", ("color", _statusTextColor.ToHexNoAlpha()))); AlertsTable.AddChild(label); } @@ -270,6 +287,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; + + 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) { @@ -290,7 +335,7 @@ private void AddTrackedEntityToNavMap(AtmosAlertsDeviceNavMapData metaData, Atmo var coords = _entManager.GetCoordinates(metaData.NetCoordinates); if (_trackedEntity != null && _trackedEntity != metaData.NetEntity) - color *= Color.DimGray; + color *= _untrackedEntColor; var selectable = true; var blip = new NavMapBlip(coords, _spriteSystem.Frame0(texture), color, _trackedEntity == metaData.NetEntity, selectable); @@ -298,6 +343,24 @@ private void AddTrackedEntityToNavMap(AtmosAlertsDeviceNavMapData metaData, Atmo NavMap.TrackedEntities[metaData.NetEntity] = blip; } + private bool TryGetSensorRegionColor(NetEntity regionOwner, AtmosAlarmType alarmState, out Color color) + { + color = Color.White; + + var blip = GetBlipTexture(alarmState); + + if (blip == null) + return false; + + // Color the region based on alarm state and entity tracking + color = blip.Value.Item2 * _regionBaseColor; + + if (_trackedEntity != null && _trackedEntity != regionOwner) + color *= _untrackedEntColor; + + return true; + } + private void UpdateUIEntry(AtmosAlertsComputerEntry entry, int index, Control table, AtmosAlertsComputerComponent console, AtmosAlertsFocusDeviceData? focusData = null) { // Make new UI entry if required @@ -534,13 +597,13 @@ private AtmosAlarmType GetAlarmState(NetEntity netEntity) switch (alarmState) { case AtmosAlarmType.Invalid: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), StyleNano.DisabledFore); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), _inactiveColor); break; case AtmosAlarmType.Normal: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), Color.LimeGreen); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_circle.png")), _goodColor); break; case AtmosAlarmType.Warning: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_triangle.png")), new Color(255, 182, 72)); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_triangle.png")), _warningColor); break; case AtmosAlarmType.Danger: - output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_square.png")), new Color(255, 67, 67)); break; + output = (new SpriteSpecifier.Texture(new ResPath("/Textures/Interface/NavMap/beveled_square.png")), _dangerColor); break; } return output; diff --git a/Content.Client/Entry/EntryPoint.cs b/Content.Client/Entry/EntryPoint.cs index 9489e01a8fc..524d050f8fa 100644 --- a/Content.Client/Entry/EntryPoint.cs +++ b/Content.Client/Entry/EntryPoint.cs @@ -9,6 +9,7 @@ using Content.Client.Options; 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; @@ -78,6 +79,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() { @@ -149,6 +151,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(); @@ -172,6 +180,7 @@ public override void PostInit() _queueManager.Initialize(); // Corvax-Queue _discordAuthManager.Initialize(); // Corvax-DiscordAuth _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 00000000000..18ce16f634c --- /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/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml index 19d00a0bbf8..aae8785b1fe 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml @@ -47,8 +47,7 @@ - + diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs index d61267d002c..fd3615d59f5 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs @@ -110,18 +110,29 @@ public void Populate(HealthAnalyzerScannedUserMessage msg) // Alerts - AlertsDivider.Visible = msg.Bleeding == true; - AlertsContainer.Visible = msg.Bleeding == true; + var showAlerts = msg.Unrevivable == true || msg.Bleeding == true; - if (msg.Bleeding == true) - { + AlertsDivider.Visible = showAlerts; + AlertsContainer.Visible = showAlerts; + + if (showAlerts) AlertsContainer.DisposeAllChildren(); - AlertsContainer.AddChild(new Label + + if (msg.Unrevivable == true) + AlertsContainer.AddChild(new RichTextLabel + { + Text = Loc.GetString("health-analyzer-window-entity-unrevivable-text"), + Margin = new Thickness(0, 4), + MaxWidth = 300 + }); + + if (msg.Bleeding == true) + AlertsContainer.AddChild(new RichTextLabel { Text = Loc.GetString("health-analyzer-window-entity-bleeding-text"), - FontColorOverride = Color.Red, + Margin = new Thickness(0, 4), + MaxWidth = 300 }); - } // Damage Groups diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs index 58743a32fb4..632ad8de4ac 100644 --- a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs @@ -21,15 +21,6 @@ public PlaytimeStatsEntry(string role, TimeSpan playtime, StyleBox styleBox) 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/IoC/ClientContentIoC.cs b/Content.Client/IoC/ClientContentIoC.cs index eadfb25a893..4e6987bb6e3 100644 --- a/Content.Client/IoC/ClientContentIoC.cs +++ b/Content.Client/IoC/ClientContentIoC.cs @@ -9,6 +9,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; @@ -61,6 +62,7 @@ public static void Register() collection.Register(); collection.Register(); collection.Register(); + collection.Register(); collection.Register(); // Corvax-Sponsors collection.Register(); // Corvax-Queue collection.Register(); // Corvax-DiscordAuth diff --git a/Content.Client/Mapping/MappingScreen.xaml b/Content.Client/Mapping/MappingScreen.xaml index 9cc3e734f0e..bad492e7e41 100644 --- a/Content.Client/Mapping/MappingScreen.xaml +++ b/Content.Client/Mapping/MappingScreen.xaml @@ -8,7 +8,7 @@ VerticalExpand="False" VerticalAlignment="Bottom" HorizontalAlignment="Center"> - @@ -82,5 +82,5 @@ - + diff --git a/Content.Client/Mapping/MappingScreen.xaml.cs b/Content.Client/Mapping/MappingScreen.xaml.cs index 46c0e51fad6..20e2528a440 100644 --- a/Content.Client/Mapping/MappingScreen.xaml.cs +++ b/Content.Client/Mapping/MappingScreen.xaml.cs @@ -197,7 +197,6 @@ private void RefreshList() public override void SetChatSize(Vector2 size) { - ScreenContainer.DesiredSplitCenter = size.X; ScreenContainer.ResizeMode = SplitContainer.SplitResizeMode.RespectChildrenMinSize; } diff --git a/Content.Client/Pinpointer/NavMapSystem.Regions.cs b/Content.Client/Pinpointer/NavMapSystem.Regions.cs new file mode 100644 index 00000000000..4cc775418ec --- /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 9aeb792a429..47469d4ea79 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 413b41c36a6..90c2680c4a7 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/UserInterface/Controls/RecordedSplitContainer.cs b/Content.Client/UserInterface/Controls/RecordedSplitContainer.cs deleted file mode 100644 index fd217bc7e86..00000000000 --- a/Content.Client/UserInterface/Controls/RecordedSplitContainer.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System.Numerics; -using Robust.Client.UserInterface.Controls; - -namespace Content.Client.UserInterface.Controls; - -/// -/// A split container that performs an action when the split resizing is finished. -/// -public sealed class RecordedSplitContainer : SplitContainer -{ - public double? DesiredSplitCenter; - - protected override Vector2 ArrangeOverride(Vector2 finalSize) - { - if (ResizeMode == SplitResizeMode.RespectChildrenMinSize - && DesiredSplitCenter != null - && !finalSize.Equals(Vector2.Zero)) - { - SplitFraction = (float) DesiredSplitCenter.Value; - - if (!Size.Equals(Vector2.Zero)) - { - DesiredSplitCenter = null; - } - } - - return base.ArrangeOverride(finalSize); - } -} diff --git a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml index 7f1d1bcd5b1..653302fae4c 100644 --- a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml +++ b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml @@ -14,7 +14,7 @@ VerticalExpand="False" VerticalAlignment="Bottom" HorizontalAlignment="Center"> - + @@ -26,7 +26,7 @@ - + @@ -36,5 +36,5 @@ - + diff --git a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs index e04d377d321..2892ca44254 100644 --- a/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs +++ b/Content.Client/UserInterface/Screens/SeparatedChatGameScreen.xaml.cs @@ -40,7 +40,6 @@ private void ResizeActionContainer() public override void SetChatSize(Vector2 size) { - ScreenContainer.DesiredSplitCenter = size.X; ScreenContainer.ResizeMode = SplitContainer.SplitResizeMode.RespectChildrenMinSize; } } diff --git a/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml b/Content.Client/VendingMachines/UI/VendingMachineMenu.xaml index 294a817fce0..5d98b68c257 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.IntegrationTests/Tests/Commands/SuicideCommandTests.cs b/Content.IntegrationTests/Tests/Commands/SuicideCommandTests.cs index f4be51fd2bb..7448a16ac3d 100644 --- a/Content.IntegrationTests/Tests/Commands/SuicideCommandTests.cs +++ b/Content.IntegrationTests/Tests/Commands/SuicideCommandTests.cs @@ -168,26 +168,26 @@ // await pair.CleanReturnAsync(); // } -// /// -// /// Run the suicide command in the console -// /// Should only ghost the player but not kill them -// /// -// [Test] -// public async Task TestSuicideWhenCannotSuicide() -// { -// await using var pair = await PoolManager.GetServerClient(new PoolSettings -// { -// Connected = true, -// Dirty = true, -// DummyTicker = false -// }); -// var server = pair.Server; -// var consoleHost = server.ResolveDependency(); -// var entManager = server.ResolveDependency(); -// var playerMan = server.ResolveDependency(); -// var mindSystem = entManager.System(); -// var mobStateSystem = entManager.System(); -// var tagSystem = entManager.System(); + // /// + // /// Run the suicide command in the console + // /// Should only ghost the player but not kill them + // /// + // [Test] + // public async Task TestSuicideWhenCannotSuicide() + // { + // await using var pair = await PoolManager.GetServerClient(new PoolSettings + // { + // Connected = true, + // Dirty = true, + // DummyTicker = false + // }); + // var server = pair.Server; + // var consoleHost = server.ResolveDependency(); + // var entManager = server.ResolveDependency(); + // var playerMan = server.ResolveDependency(); + // var mindSystem = entManager.System(); + // var mobStateSystem = entManager.System(); + // var tagSystem = entManager.System(); // // We need to know the player and whether they can be hurt, killed, and whether they have a mind // var player = playerMan.Sessions.First().AttachedEntity!.Value; @@ -237,10 +237,11 @@ // var entManager = server.ResolveDependency(); // var playerMan = server.ResolveDependency(); -// var handsSystem = entManager.System(); -// var mindSystem = entManager.System(); -// var mobStateSystem = entManager.System(); -// var transformSystem = entManager.System(); + // var handsSystem = entManager.System(); + // var mindSystem = entManager.System(); + // var mobStateSystem = entManager.System(); + // var transformSystem = entManager.System(); + // var damageableSystem = entManager.System(); // // We need to know the player and whether they can be hurt, killed, and whether they have a mind // var player = playerMan.Sessions.First().AttachedEntity!.Value; @@ -271,13 +272,13 @@ // Assert.That(executionComponent, Is.Not.EqualTo(null)); // }); -// // Check that running the suicide command kills the player -// // and properly ghosts them without them being able to return to their body -// // and that all the damage is concentrated in the Slash category -// await server.WaitAssertion(() => -// { -// consoleHost.GetSessionShell(playerMan.Sessions.First()).ExecuteCommand("suicide"); -// var lethalDamageThreshold = mobThresholdsComp.Thresholds.Keys.Last(); + // // Check that running the suicide command kills the player + // // and properly ghosts them without them being able to return to their body + // // and that all the damage is concentrated in the Slash category + // await server.WaitAssertion(() => + // { + // consoleHost.GetSessionShell(playerMan.Sessions.First()).ExecuteCommand("suicide"); + // var lethalDamageThreshold = mobThresholdsComp.Thresholds.Keys.Last(); // Assert.Multiple(() => // { @@ -309,10 +310,11 @@ // var entManager = server.ResolveDependency(); // var playerMan = server.ResolveDependency(); -// var handsSystem = entManager.System(); -// var mindSystem = entManager.System(); -// var mobStateSystem = entManager.System(); -// var transformSystem = entManager.System(); + // var handsSystem = entManager.System(); + // var mindSystem = entManager.System(); + // var mobStateSystem = entManager.System(); + // var transformSystem = entManager.System(); + // var damageableSystem = entManager.System(); // // We need to know the player and whether they can be hurt, killed, and whether they have a mind // var player = playerMan.Sessions.First().AttachedEntity!.Value; @@ -343,13 +345,15 @@ // Assert.That(executionComponent, Is.Not.EqualTo(null)); // }); -// // Check that running the suicide command kills the player -// // and properly ghosts them without them being able to return to their body -// // and that slash damage is split in half -// await server.WaitAssertion(() => -// { -// consoleHost.GetSessionShell(playerMan.Sessions.First()).ExecuteCommand("suicide"); -// var lethalDamageThreshold = mobThresholdsComp.Thresholds.Keys.Last(); + // // Check that running the suicide command kills the player + // // and properly ghosts them without them being able to return to their body + // // and that slash damage is split in half + // await server.WaitAssertion(() => + // { + // // Heal all damage first (possible low pressure damage taken) + // damageableSystem.SetAllDamage(player, damageableComp, 0); + // consoleHost.GetSessionShell(playerMan.Sessions.First()).ExecuteCommand("suicide"); + // var lethalDamageThreshold = mobThresholdsComp.Thresholds.Keys.Last(); // Assert.Multiple(() => // { diff --git a/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs b/Content.IntegrationTests/Tests/Roles/StartingGearStorageTests.cs index f8060edb2b4..3b2935258a7 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.Server/ADT/Heretic/EntitySystems/GhoulSystem.cs b/Content.Server/ADT/Heretic/EntitySystems/GhoulSystem.cs index 010e9e6bb05..e4c45b3d43d 100644 --- a/Content.Server/ADT/Heretic/EntitySystems/GhoulSystem.cs +++ b/Content.Server/ADT/Heretic/EntitySystems/GhoulSystem.cs @@ -96,10 +96,10 @@ private void SendBriefing(Entity ent, EntityUid mindId, MindComp var sound = new SoundPathSpecifier("/Audio/ADT/Heretic/Ambience/Antag/Heretic/heretic_gain.ogg"); _antag.SendBriefing(ent, brief, Color.MediumPurple, sound); - if (!_mind.TryGetRole(ent, out _)) + if (!_mind.TryGetObjectiveComp(ent, out _)) _role.MindAddRole(mindId, "MindRoleGhoul"); - if (!_mind.TryGetRole(ent, out var rolebrief)) + if (!_mind.TryGetObjectiveComp(ent, out var rolebrief)) _role.MindAddRole(mindId, brief, mind); else rolebrief.Briefing += $"\n{brief}"; } diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs index e4554d7d83e..2187cbd68f3 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,27 +642,29 @@ 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", Category = VerbCategory.Smite, - Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/Instruments/h_synthesizer.rsi"), "icon"), + Icon = new SpriteSpecifier.Rsi(new ("/Textures/Objects/Fun/Instruments/h_synthesizer.rsi"), "supersynth"), Act = () => { _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/Atmos/Consoles/AtmosAlertsComputerSystem.cs b/Content.Server/Atmos/Consoles/AtmosAlertsComputerSystem.cs index d9a475dbfb7..2d35ae59731 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/Body/Systems/BloodstreamSystem.cs b/Content.Server/Body/Systems/BloodstreamSystem.cs index 18790e7326b..198123cc5fd 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 8218bead72c..f0661e4a301 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 0fdca029b79..34d6a75bf25 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/Chat/Managers/ChatSanitizationManager.cs b/Content.Server/Chat/Managers/ChatSanitizationManager.cs index fc3ab38a809..91f0379c617 100644 --- a/Content.Server/Chat/Managers/ChatSanitizationManager.cs +++ b/Content.Server/Chat/Managers/ChatSanitizationManager.cs @@ -1,15 +1,18 @@ 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() { // ADT-Localization-Start { "??", "chatsan-questioned" }, @@ -40,7 +43,6 @@ public sealed class ChatSanitizationManager : IChatSanitizationManager { "((", "chatsan-frowns-deeply" }, { "(", "chatsan-frowns" }, // Corvax-Localization-End - // I could've done this with regex, but felt it wasn't the right idea. { ":)", "chatsan-smiles" }, { ":]", "chatsan-smiles" }, { "=)", "chatsan-smiles" }, @@ -62,7 +64,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" }, @@ -104,7 +106,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" }, @@ -117,9 +119,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() @@ -127,29 +132,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 c067cf02ee7..ac85d4b4a7a 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 83f762a0a36..bc477e8c407 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -950,8 +950,12 @@ private bool CanSendInGame(string message, IConsoleShell? shell = null, ICommonS // ReSharper disable once InconsistentNaming public 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); @@ -960,9 +964,7 @@ public string SanitizeInGameICMessage(EntityUid source, string message, out stri 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 00000000000..0f10e2a4492 --- /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 494a95b55d4..13a8683aaf9 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionInjectOnEventSystem.cs @@ -3,6 +3,7 @@ using Content.Server.Chemistry.Components; using Content.Shared.Chemistry; using Content.Shared.Chemistry.EntitySystems; +using Content.Shared.Chemistry.Events; using Content.Shared.Inventory; using Content.Shared.Popups; using Content.Shared.Projectiles; @@ -30,6 +31,7 @@ public override void Initialize() SubscribeLocalEvent(HandleProjectileHit); SubscribeLocalEvent(HandleEmbed); SubscribeLocalEvent(HandleMeleeHit); + SubscribeLocalEvent(OnInjectOverTime); } private void HandleProjectileHit(Entity entity, ref ProjectileHitEvent args) @@ -86,6 +88,11 @@ private void HandleMeleeHit(Entity entity, ref M } } + 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 00000000000..2baeba9da15 --- /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/Corvax/TTS/TTSSystem.Sanitize.cs b/Content.Server/Corvax/TTS/TTSSystem.Sanitize.cs index 81f2d3920b2..4ea63348a70 100644 --- a/Content.Server/Corvax/TTS/TTSSystem.Sanitize.cs +++ b/Content.Server/Corvax/TTS/TTSSystem.Sanitize.cs @@ -137,6 +137,9 @@ private string ReplaceWord2Num(Match word) {"с4", "Си 4"}, // cyrillic {"c4", "Си 4"}, // latinic {"бсс", "Бэ Эс Эс"}, + {"сии", "Эс И И"}, + {"ии", "И И"}, + {"опз", "О Пэ Зэ"}, }; private static readonly IReadOnlyDictionary ReverseTranslit = diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs index 283a5659fce..bee1e8d8544 100644 --- a/Content.Server/Database/ServerDbBase.cs +++ b/Content.Server/Database/ServerDbBase.cs @@ -898,10 +898,41 @@ public async Task UpdateAdminRankAsync(AdminRank rank, CancellationToken cancel) public async Task AddAdminLogs(List 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/EntityEffects/Effects/FlashReactionEffect.cs b/Content.Server/EntityEffects/Effects/FlashReactionEffect.cs new file mode 100644 index 00000000000..fbf99e902d3 --- /dev/null +++ b/Content.Server/EntityEffects/Effects/FlashReactionEffect.cs @@ -0,0 +1,82 @@ +using Content.Shared.EntityEffects; +using Content.Server.Flash; +using Robust.Server.GameObjects; +using Robust.Shared.Audio; +using Robust.Shared.Prototypes; + +namespace Content.Server.EntityEffects.Effects; + +[DataDefinition] +public sealed partial class FlashReactionEffect : EntityEffect +{ + /// + /// Flash range per unit of reagent. + /// + [DataField] + public float RangePerUnit = 0.2f; + + /// + /// Maximum flash range. + /// + [DataField] + public float MaxRange = 10f; + + /// + /// How much to entities are slowed down. + /// + [DataField] + public float SlowTo = 0.5f; + + /// + /// The time entities will be flashed in seconds. + /// The default is chosen to be better than the hand flash so it is worth using it for grenades etc. + /// + [DataField] + public float Duration = 4f; + + /// + /// The prototype ID used for the visual effect. + /// + [DataField] + public EntProtoId? FlashEffectPrototype = "ReactionFlash"; + + /// + /// The sound the flash creates. + /// + [DataField] + public SoundSpecifier? Sound = new SoundPathSpecifier("/Audio/Weapons/flash.ogg"); + + protected override string? ReagentEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) + => Loc.GetString("reagent-effect-guidebook-flash-reaction-effect", ("chance", Probability)); + + public override void Effect(EntityEffectBaseArgs args) + { + var transform = args.EntityManager.GetComponent(args.TargetEntity); + var transformSystem = args.EntityManager.System(); + + var range = 1f; + + if (args is EntityEffectReagentArgs reagentArgs) + range = MathF.Min((float)(reagentArgs.Quantity * RangePerUnit), MaxRange); + + args.EntityManager.System().FlashArea( + args.TargetEntity, + null, + range, + Duration * 1000, + slowTo: SlowTo, + sound: Sound); + + if (FlashEffectPrototype == null) + return; + + var uid = args.EntityManager.SpawnEntity(FlashEffectPrototype, transformSystem.GetMapCoordinates(transform)); + transformSystem.AttachToGridOrMap(uid); + + if (!args.EntityManager.TryGetComponent(uid, out var pointLightComp)) + return; + var pointLightSystem = args.EntityManager.System(); + // PointLights with a radius lower than 1.1 are too small to be visible, so this is hardcoded + pointLightSystem.SetRadius(uid, MathF.Max(1.1f, range), pointLightComp); + } +} diff --git a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs index 62f92963aa7..6f82aa042f0 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/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 44ad00ae170..1987613763b 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -7,6 +7,7 @@ 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; @@ -75,38 +76,46 @@ 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 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 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 (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); @@ -134,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) { @@ -141,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/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index f11b1871c76..9a27de3b1d9 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -216,14 +216,7 @@ private void SetCanSeeGhosts(EntityUid uid, bool canSee, EyeComponent? eyeCompon private void OnMapInit(EntityUid uid, GhostComponent component, MapInitEvent args) { - if (_actions.AddAction(uid, ref component.BooActionEntity, out var act, component.BooAction) - && act.UseDelay != null) - { - var start = _gameTiming.CurTime; - var end = start + act.UseDelay.Value; - _actions.SetCooldown(component.BooActionEntity.Value, start, end); - } - + _actions.AddAction(uid, ref component.BooActionEntity, component.BooAction); _actions.AddAction(uid, ref component.ToggleGhostHearingActionEntity, component.ToggleGhostHearingAction); _actions.AddAction(uid, ref component.ToggleLightingActionEntity, component.ToggleLightingAction); _actions.AddAction(uid, ref component.ToggleFoVActionEntity, component.ToggleFoVAction); diff --git a/Content.Server/Holosign/HolosignSystem.cs b/Content.Server/Holosign/HolosignSystem.cs index 5b1b3875eb5..1253fe3f96c 100644 --- a/Content.Server/Holosign/HolosignSystem.cs +++ b/Content.Server/Holosign/HolosignSystem.cs @@ -54,7 +54,7 @@ private void OnBeforeInteract(EntityUid uid, HolosignProjectorComponent componen var entities = _lookup.GetEntitiesInRange(args.ClickLocation.SnapToGrid(EntityManager), .1f).ToList().Where(e => HasComp(e)); if ( entities.Any() - || !_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; // ADT-Tweak-End diff --git a/Content.Server/Medical/CryoPodSystem.cs b/Content.Server/Medical/CryoPodSystem.cs index fc9ab081d26..15fe2a69cf9 100644 --- a/Content.Server/Medical/CryoPodSystem.cs +++ b/Content.Server/Medical/CryoPodSystem.cs @@ -201,6 +201,7 @@ private void OnActivateUI(Entity entity, ref AfterActivatableU ? bloodSolution.FillFraction : 0, null, + null, null )); } diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 4da030b9bbb..2e3edeb580c 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Medical.Components; using Content.Server.PowerCell; using Content.Server.Temperature.Components; +using Content.Server.Traits.Assorted; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Damage; using Content.Shared.DoAfter; @@ -196,6 +197,7 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s var bloodAmount = float.NaN; var bleeding = false; + var unrevivable = false; if (TryComp(target, out var bloodstream) && _solutionContainerSystem.ResolveSolution(target, bloodstream.BloodSolutionName, @@ -205,12 +207,16 @@ public void UpdateScannedUser(EntityUid healthAnalyzer, EntityUid target, bool s bleeding = bloodstream.BleedAmount > 0; } + if (HasComp(target)) + unrevivable = true; + _uiSystem.ServerSendUiMessage(healthAnalyzer, HealthAnalyzerUiKey.Key, new HealthAnalyzerScannedUserMessage( GetNetEntity(target), bodyTemperature, bloodAmount, scanMode, - bleeding + bleeding, + unrevivable )); } } diff --git a/Content.Server/Ninja/Systems/NinjaSuitSystem.cs b/Content.Server/Ninja/Systems/NinjaSuitSystem.cs index 244b7adf036..20674dda879 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 c916d568d5f..6594d7883bc 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -1,14 +1,12 @@ using Content.Server.Explosion.EntitySystems; -using Content.Server.GameTicking.Rules.Components; using Content.Server.Mind; using Content.Server.Objectives.Components; using Content.Server.Popups; using Content.Server.Roles; -using Content.Shared.Interaction; using Content.Shared.Ninja.Components; using Content.Shared.Ninja.Systems; +using Content.Shared.Roles; using Content.Shared.Sticky; -using Robust.Shared.GameObjects; namespace Content.Server.Ninja.Systems; @@ -19,6 +17,7 @@ public sealed class SpiderChargeSystem : SharedSpiderChargeSystem { [Dependency] private readonly MindSystem _mind = default!; [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly SharedRoleSystem _role = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; [Dependency] private readonly SpaceNinjaSystem _ninja = default!; @@ -41,7 +40,10 @@ private void OnAttemptStick(EntityUid uid, SpiderChargeComponent comp, ref Attem var user = args.User; - if (!_mind.TryGetRole(user, out var _)) + if (!_mind.TryGetMind(args.User, out var mind, out _)) + return; + + if (!_role.MindHasRole(mind)) { _popup.PopupEntity(Loc.GetString("spider-charge-not-ninja"), user, user); args.Cancelled = true; diff --git a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs index a38e3636035..2ff94760f6b 100644 --- a/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/CreamPieSystem.cs @@ -41,7 +41,9 @@ public override void Initialize() protected override void SplattedCreamPie(EntityUid uid, CreamPieComponent creamPie) { - _audio.PlayPvs(_audio.GetSound(creamPie.Sound), uid, AudioParams.Default.WithVariation(0.125f)); + // The entity is deleted, so play the sound at its position rather than parenting + var coordinates = Transform(uid).Coordinates; + _audio.PlayPvs(_audio.GetSound(creamPie.Sound), coordinates, AudioParams.Default.WithVariation(0.125f)); if (EntityManager.TryGetComponent(uid, out FoodComponent? foodComp)) { diff --git a/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs b/Content.Server/Nutrition/EntitySystems/DrinkSystem.cs index f04d79b47da..90a925e39f1 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 d7daf632d66..158c7f4955c 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -296,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) diff --git a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs index b4de15f2b9a..8dcbf191b36 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 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/NotCommandRequirementSystem.cs b/Content.Server/Objectives/Systems/NotCommandRequirementSystem.cs index 50d747c1a2a..0808dc5bcfd 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 var prototype) && prototype.RequireAdminNotify) + if (args.Mind.OwnedEntity is { } ent && HasComp(ent)) args.Cancelled = true; } } diff --git a/Content.Server/Revolutionary/Components/CommandStaffComponent.cs b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs index dc16b87300e..79349b25da7 100644 --- a/Content.Server/Revolutionary/Components/CommandStaffComponent.cs +++ b/Content.Server/Revolutionary/Components/CommandStaffComponent.cs @@ -1,11 +1,9 @@ -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 { diff --git a/Content.Server/ServerUpdates/ServerUpdateManager.cs b/Content.Server/ServerUpdates/ServerUpdateManager.cs index f4e54984e9b..bf18428e25b 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 00000000000..b17c7c11a71 --- /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/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index 16c7a8081f5..e9e64a599c3 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -296,6 +296,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); } ///ADT AI Custom law start UpdateBorgsNTLaws(lawset); diff --git a/Content.Server/Traitor/Components/AutoTraitorComponent.cs b/Content.Server/Traitor/Components/AutoTraitorComponent.cs index ab4bee2f267..a4710afd8eb 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 e9307effbc6..d5a4db591a7 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 ae809dc4d77..4c0a990b148 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.Shared/Actions/BaseActionComponent.cs b/Content.Shared/Actions/BaseActionComponent.cs index 01452bdc72e..c3aa6cc97ee 100644 --- a/Content.Shared/Actions/BaseActionComponent.cs +++ b/Content.Shared/Actions/BaseActionComponent.cs @@ -76,6 +76,11 @@ public abstract partial class BaseActionComponent : Component // TODO serialization public (TimeSpan Start, TimeSpan End)? Cooldown; + /// + /// If true, the action will have an initial cooldown applied upon addition. + /// + [DataField] public bool StartDelay = false; + /// /// Time interval between action uses. /// diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 76b8a1b081b..fc6f0baf772 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -813,6 +813,9 @@ public bool AddActionDirect(EntityUid performer, if (action.AttachedEntity != null) RemoveAction(action.AttachedEntity.Value, actionId, action: action); + if (action.StartDelay && action.UseDelay != null) + SetCooldown(actionId, action.UseDelay.Value); + DebugTools.AssertOwner(performer, comp); comp ??= EnsureComp(performer); action.AttachedEntity = performer; diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs index 6a04bfe42df..90e1fd38e86 100644 --- a/Content.Shared/Bed/Sleep/SleepingSystem.cs +++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs @@ -130,9 +130,6 @@ private void OnMapInit(Entity ent, ref MapInitEvent args) RaiseLocalEvent(ent, ref ev); _blindableSystem.UpdateIsBlind(ent.Owner); _actionsSystem.AddAction(ent, ref ent.Comp.WakeAction, WakeActionId, ent); - - // TODO remove hardcoded time. - _actionsSystem.SetCooldown(ent.Comp.WakeAction, _gameTiming.CurTime, _gameTiming.CurTime + TimeSpan.FromSeconds(2f)); } private void OnSpeakAttempt(Entity ent, ref SpeakAttemptEvent args) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index 734dcbd36a4..44b84a4cd16 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/Chat/SharedChatSystem.cs b/Content.Shared/Chat/SharedChatSystem.cs index 73b785f83d3..3751435c95d 100644 --- a/Content.Shared/Chat/SharedChatSystem.cs +++ b/Content.Shared/Chat/SharedChatSystem.cs @@ -90,6 +90,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(char.ToLower(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 00000000000..ca5ab4213ff --- /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/Ghost/SpectralComponent.cs b/Content.Shared/Ghost/SpectralComponent.cs new file mode 100644 index 00000000000..3799951152e --- /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/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs index 830d2270aa4..94203de6155 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/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 6f44d3089d1..7f2ecb50f88 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -1372,7 +1372,8 @@ public void DoContactInteraction(EntityUid uidA, EntityUid? uidB, HandledEntityE if (uidB == null || args?.Handled == false) return; - DebugTools.AssertNotEqual(uidA, uidB.Value); + if (uidA == uidB.Value) + return; if (!TryComp(uidA, out MetaDataComponent? metaA) || metaA.EntityPaused) return; diff --git a/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs b/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs index 78f26ed5c02..08af1a36a7b 100644 --- a/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs +++ b/Content.Shared/MedicalScanner/HealthAnalyzerScannedUserMessage.cs @@ -13,14 +13,16 @@ public sealed class HealthAnalyzerScannedUserMessage : BoundUserInterfaceMessage public float BloodLevel; public bool? ScanMode; public bool? Bleeding; + public bool? Unrevivable; - public HealthAnalyzerScannedUserMessage(NetEntity? targetEntity, float temperature, float bloodLevel, bool? scanMode, bool? bleeding) + public HealthAnalyzerScannedUserMessage(NetEntity? targetEntity, float temperature, float bloodLevel, bool? scanMode, bool? bleeding, bool? unrevivable) { TargetEntity = targetEntity; Temperature = temperature; BloodLevel = bloodLevel; ScanMode = scanMode; Bleeding = bleeding; + Unrevivable = unrevivable; } } diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 162bca495ca..bf0b5f650ad 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -483,19 +483,6 @@ public bool TryGetMind( return false; } - /// - /// Gets a role component from a player's mind. - /// - /// Whether a role was found - public bool TryGetRole(EntityUid user, [NotNullWhen(true)] out T? role) where T : IComponent - { - role = default; - if (!TryComp(user, out var mindContainer) || mindContainer.Mind == null) - return false; - - return TryComp(mindContainer.Mind, out role); - } - /// /// Sets the Mind's UserId, Session, and updates the player's PlayerData. This should have no direct effect on the /// entity that any mind is connected to, except as a side effect of the fact that it may change a player's diff --git a/Content.Shared/Pinpointer/NavMapComponent.cs b/Content.Shared/Pinpointer/NavMapComponent.cs index d77169d32ed..b876cb20fe2 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 3ced5f3c9ed..37d60dec28a 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/Projectiles/EmbeddableProjectileComponent.cs b/Content.Shared/Projectiles/EmbeddableProjectileComponent.cs index 008b7c2ced4..e4125945d26 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 1b7d6d6f991..85e75d6d291 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 8c5baf93f5d..67af4cc900a 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 [DataField] public EntityUid? LastLawProvider; + // START-ADT TWEAK FIx + /// + /// The sound that plays for the Silicon player + /// when the law change is processed for the provider. + /// + [DataField] + public SoundSpecifier? LawUploadSound = new SoundPathSpecifier("/Audio/Misc/cryo_warning.ogg"); + // ADT-END } /// @@ -59,3 +68,4 @@ public SiliconLawBuiState(List laws, HashSet? radioChannels) RadioChannels = radioChannels; } } + diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs index 4800aa0c59d..1c54938b8a4 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 baef62c3da9..7eef20cebd8 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 a979a6ec50e..65848cb5e57 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 8040910dc3c..3e051fff317 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 9ad2f58c21d..f714c8d387e 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -182,6 +182,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/EntitySystems/SecretStashSystem.cs b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs index 08a69c345f0..af9b768e98b 100644 --- a/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs +++ b/Content.Shared/Storage/EntitySystems/SecretStashSystem.cs @@ -14,6 +14,8 @@ using Content.Shared.IdentityManagement; using Content.Shared.Tools.EntitySystems; using Content.Shared.Whitelist; +using Content.Shared.Materials; +using Robust.Shared.Map; namespace Content.Shared.Storage.EntitySystems; @@ -35,6 +37,7 @@ public override void Initialize() base.Initialize(); SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnDestroyed); + SubscribeLocalEvent(OnReclaimed); SubscribeLocalEvent(OnInteractUsing, after: new[] { typeof(ToolOpenableSystem) }); SubscribeLocalEvent(OnInteractHand); SubscribeLocalEvent>(OnGetVerb); @@ -47,12 +50,12 @@ private void OnInit(Entity entity, ref ComponentInit args) private void OnDestroyed(Entity entity, ref DestructionEventArgs args) { - var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer); - if (storedInside != null && storedInside.Count >= 1) - { - var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); - _popupSystem.PopupEntity(popup, storedInside[0], PopupType.MediumCaution); - } + DropContentsAndAlert(entity); + } + + private void OnReclaimed(Entity entity, ref GotReclaimedEvent args) + { + DropContentsAndAlert(entity, args.ReclaimerCoordinates); } private void OnInteractUsing(Entity entity, ref InteractUsingEvent args) @@ -211,5 +214,18 @@ private bool HasItemInside(Entity entity) return entity.Comp.ItemContainer.ContainedEntity != null; } + /// + /// Drop the item stored in the stash and alert all nearby players with a popup. + /// + private void DropContentsAndAlert(Entity entity, EntityCoordinates? cords = null) + { + var storedInside = _containerSystem.EmptyContainer(entity.Comp.ItemContainer, true, cords); + if (storedInside != null && storedInside.Count >= 1) + { + var popup = Loc.GetString("comp-secret-stash-on-destroyed-popup", ("stashname", GetStashName(entity))); + _popupSystem.PopupPredicted(popup, storedInside[0], null, PopupType.MediumCaution); + } + } + #endregion } diff --git a/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs b/Content.Shared/Storage/EntitySystems/SharedStorageSystem.cs index 5c1e2bcfad1..fee4c1a0fb6 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 e1c3d8ef0d8..7afe503275a 100644 --- a/Content.Shared/Strip/SharedStrippableSystem.cs +++ b/Content.Shared/Strip/SharedStrippableSystem.cs @@ -103,7 +103,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); } @@ -135,7 +135,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 2d8c5d14801..b16492b8355 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 f9d4befac40..5c1101321fc 100644 --- a/Content.Shared/VendingMachines/VendingMachineComponent.cs +++ b/Content.Shared/VendingMachines/VendingMachineComponent.cs @@ -88,12 +88,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 50a1ff80288..f1bd34dfa7f 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -697,6 +697,12 @@ 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) diff --git a/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs b/Content.Shared/Weapons/Misc/SharedGrapplingGunSystem.cs index d2f0333b833..e790973538f 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/Resources/Audio/Ambience/Antag/attributions.yml b/Resources/Audio/Ambience/Antag/attributions.yml index 25917a5da2b..0d3d278a627 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 00000000000..911a34532d6 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 176bdccc7b6..1a7d84ad365 100644 --- a/Resources/Audio/Machines/attributions.yml +++ b/Resources/Audio/Machines/attributions.yml @@ -168,6 +168,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 8f7c187d0c3..92867a1f3d3 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 8dcfce94729..54c6eb61963 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 94ad4bf9d38..cb4aeaf04b3 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 00000000000..06cdebc9447 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 7e8b2a0ce39..7fa86b2ebfc 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 00000000000..e4bf25f7b8d 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 2e125ba04d5..df1f6849346 100644 --- a/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml +++ b/Resources/Audio/Weapons/Guns/Gunshots/attributions.yml @@ -32,3 +32,8 @@ license: "CC-BY-SA-3.0" copyright: "Taken from tgstation" source: "https://github.com/tgstation/tgstation/blob/5736656139713c802033b9457a2a9d058211bd85/sound/weapons/gun/shotgun/shot.ogg" + +- files: ["syringe_gun.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from vgstation" + source: "https://github.com/vgstation-coders/vgstation13/commit/23303188abe6fe31b114a218a1950d7325a23730" 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 00000000000..2132808ecdc 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 63fd6cabd2a..2c4db6e82b8 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -559,5 +559,13 @@ Entries: 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 e0fb02f0095..b9b8422096b 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,405 +1,4 @@ Entries: -- 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. - type: Fix - id: 7052 - time: '2024-08-07T03:41:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30702 -- author: Lyroth001 - changes: - - message: Dragons are immune to flashes - type: Tweak - id: 7053 - time: '2024-08-07T07:42:00.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30658 -- author: ShadowCommander - changes: - - message: Rollerbeds can now be dragged to the player to fold and pick them up. - type: Add - id: 7054 - time: '2024-08-07T09:19:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30002 -- author: Errant - changes: - - message: Survivors arriving via the Unknown Shuttle event, ERT and CBURN agents, - and Death Squad members are now equipped with the appropriate species-specific - survival gear. - type: Fix - - message: Unknown Shuttle event can once again spawn vox characters. - type: Tweak - id: 7055 - time: '2024-08-07T09:26:40.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29746 -- author: IProduceWidgets - changes: - - message: butter is slippery - type: Tweak - id: 7056 - time: '2024-08-07T21:47:03.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29772 -- author: Mervill - changes: - - message: Gas Miners now have detailed examine text - type: Tweak - id: 7057 - time: '2024-08-08T02:14:31.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30480 -- author: BackeTako - changes: - - message: "!, \u203D and multiple punctuations now work for Spanish." - type: Tweak - id: 7058 - time: '2024-08-08T03:08:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30551 -- author: strO0pwafel - changes: - - message: Fixed inconsistent naming of CentComm. - type: Fix - id: 7059 - time: '2024-08-08T10:04:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29217 -- author: Plykiya - changes: - - message: Buffed the range of EMP implants from a radius of 1.75 tiles to 2.75 - tiles. - type: Tweak - - message: Buffed the range of EMP grenades from a radius of 4 tiles to 5.5 tiles. - type: Tweak - id: 7060 - time: '2024-08-08T10:04:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30660 -- author: Plykiya - changes: - - message: You can drop food or drinks from your hands to interrupt eating it, again. - type: Fix - - message: Barber scissors are now interrupted if the item is dropped or if the - user changes hands. - type: Tweak - id: 7061 - time: '2024-08-08T11:39:47.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30361 -- author: TheShuEd - changes: - - message: Add "thieving beacon" to Thief antag - a device that counts objects within - a radius of itself as stolen. - type: Add - - message: Return thief structures stealing objectives. - type: Add - - message: Animal theft objectives can no longer appear if the animals are not on - the station. - type: Fix - id: 7062 - time: '2024-08-08T13:17:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/29997 -- author: lzk228 - changes: - - message: RD labcoat added in RD's dresser. - type: Add - id: 7063 - time: '2024-08-08T22:50:57.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30671 -- author: SlamBamActionman - changes: - - message: Animal DNA now shows up as "unknown DNA" in the Forensic Scanner. - type: Tweak - - message: Forensic Scanner can now scan fluid containers for DNA in reagents. - type: Tweak - - message: Fluids keep their DNA data when moved. - type: Fix - - message: Fluids now stain containers they're in with DNA. Make sure to scrub your - blood bucket after use! - type: Add - - message: Vomit now includes DNA! - type: Add - id: 7064 - time: '2024-08-08T23:27:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26699 - author: themias changes: - message: Butter can be sliced, cookie and toast recipes now use butter slices. @@ -3944,3 +3543,405 @@ 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 +- author: slarticodefast + changes: + - message: Mix 1u aluminium, 1u potassium and 1u sulfur for a flash reaction effect. + The radius scales with the reagent amount. + type: Add + id: 7552 + time: '2024-10-25T22:47:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32377 +- author: BramvanZijp + changes: + - message: Fixed the Lone Nuclear Operative mid-round antagonist being extremely + rare. + type: Fix + id: 7553 + time: '2024-10-26T02:16:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32942 +- author: Moomoobeef + changes: + - message: Bowls no longer make an eating sound when drinking from them. + type: Fix + id: 7554 + time: '2024-10-26T04:00:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32819 +- author: SaphireLattice + changes: + - message: Added a warning about unrevivability in the health analyzer UI. + type: Add + id: 7555 + time: '2024-10-26T17:22:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32636 +- author: slarticodefast + changes: + - message: Fixed pie throwing sound not playing. + type: Fix + id: 7556 + time: '2024-10-27T04:25:55.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33017 +- author: stalengd + changes: + - message: Fixed playtime labels not being able to correctly display time greater + than 24 hours + type: Fix + id: 7557 + time: '2024-10-28T18:00:00.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32974 +- author: august-sun + changes: + - message: Extended the minimum round time for meteor swarm events. + type: Tweak + id: 7558 + time: '2024-10-28T21:25:34.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32876 +- author: deltanedas + changes: + - message: Fixed lava planet expeditions not working. + type: Fix + id: 7559 + time: '2024-10-29T05:00:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33042 +- author: metalgearsloth + changes: + - message: Fix separated game screen bumping slightly. + type: Fix + id: 7560 + time: '2024-10-29T05:07:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33046 +- author: Blackern5000 + changes: + - message: Proto-kitentic crushers, glaives, and daggers now have more accurate + inhand sprites. + type: Tweak + id: 7561 + time: '2024-10-30T07:38:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32212 +- author: Blackern5000 + changes: + - message: Security belts now contain a holobarrier projector and a handheld security + radio by default rather than tear gas and a flashbang. + type: Tweak + id: 7562 + time: '2024-10-30T07:40:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32291 +- author: Blackern5000 + changes: + - message: Added three bottle boxes to the nanomed plus inventory for doctors to + carry small amounts of chemicals on their person + type: Add + id: 7563 + time: '2024-10-30T07:41:51.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33018 +- author: Blackern5000 + changes: + - message: Added the interdyne defibrillator, a black-and-red defibrillator that + can be used as a melee weapon. + type: Add + - message: The syndicate medical bundle now contains an interdyne defibrillator, + a collection of various instant injectors, tourniquets, and several combat kits. + The price has been raised to 24 tc. + type: Tweak + id: 7564 + time: '2024-10-30T09:15:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32720 diff --git a/Resources/Changelog/ChangelogSyndie.yml b/Resources/Changelog/ChangelogSyndie.yml index 95582843e29..ce0e35fbb53 100644 --- a/Resources/Changelog/ChangelogSyndie.yml +++ b/Resources/Changelog/ChangelogSyndie.yml @@ -1,194 +1,4 @@ Entries: -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\u0440\ - \u0435\u0432\u043E\u0434\u044B, \u0441\u0442\u0438\u043B\u0438\u0441\u0442\u0438\ - \u0447\u0435\u0441\u043A\u0438\u0435 \u043F\u0440\u0430\u0432\u043A\u0438" - type: Add - id: 164 - time: '2022-06-24T12:41:25.0000000+00:00' -- author: Morty - changes: - - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ - \u0439\u0442\u044B \u043D\u0430\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u043D\ - \u044B\u0435 \u043E\u043A\u043D\u0430 \u0438 \u0434\u0432\u0435\u0440\u0438" - type: Tweak - id: 165 - time: '2022-06-25T21:49:28.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 166 - time: '2022-06-29T00:56:27.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 167 - time: '2022-07-02T01:53:12.0000000+00:00' -- author: lapatison - changes: - - message: "\u044F\u0449\u0435\u0440\u043E\u043B\u044E\u0434\u044B \u0437\u0430\u043C\ - \u0435\u043D\u0435\u043D\u044B \u0443\u043D\u0430\u0442\u0445\u0430\u043C\u0438" - type: Fix - id: 168 - time: '2022-07-06T21:02:36.0000000+00:00' -- author: lapatison - changes: - - message: "\u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\ - \u044B (\u0434\u0436\u0435\u0442\u043F\u0430\u043A\u0438, \u043E\u0442\u043F\ - \u0435\u0447\u0430\u0442\u043A\u0438 \u043F\u0430\u043B\u044C\u0446\u0435\u0432\ - \ \u0438 \u0432\u043E\u043B\u043E\u043A\u043D\u0430, \u0434\u043E\u043B\u0436\ - \u043D\u043E\u0441\u0442\u0438, \u0440\u0430\u0434\u0438\u043E\u043A\u0430\u043D\ - \u0430\u043B\u044B, \u0438 \u043F\u0440\u043E\u0447\u0435\u0435)" - type: Add - id: 169 - time: '2022-07-06T21:03:14.0000000+00:00' -- author: lapatison - changes: - - message: "\u0431\u0443\u043A\u0432\u044B \u043A\u043E\u0442\u043E\u0440\u044B\u0435\ - \ \u0432\u044B \u0441\u0442\u0430\u0432\u0438\u0442\u0435 \u043F\u043E\u0441\ - \u043B\u0435 \u0434\u0432\u043E\u0435\u0442\u043E\u0447\u0438\u044F \u0447\u0442\ - \u043E\u0431\u044B \u043F\u0438\u0441\u0430\u0442\u044C \u0432 \u0440\u0430\u0446\ - \u0438\u044E \u043E\u0442\u0434\u0435\u043B\u0430 \u0431\u044B\u043B\u0438 \u0437\ - \u0430\u043C\u0435\u043D\u0435\u043D\u044B \u0440\u0443\u0441\u0441\u043A\u0438\ - \u043C\u0438. \u041E\u0441\u043C\u043E\u0442\u0440\u0438\u0442\u0435 \u0441\u0432\ - \u043E\u0439 \u043D\u0430\u0443\u0448\u043D\u0438\u043A, \u0447\u0442\u043E\u0431\ - \u044B \u0443\u0432\u0438\u0434\u0435\u0442\u044C \u0430\u043A\u0442\u0443\u0430\ - \u043B\u044C\u043D\u044B\u0435 \u043A\u0435\u0439\u043A\u043E\u0434\u044B \u043A\ - \u0430\u043D\u0430\u043B\u043E\u0432." - type: Fix - id: 170 - time: '2022-07-06T23:44:51.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043F\u0435\u0440\u0435\ - \u0432\u043E\u0434 \u043E\u043F\u0438\u0441\u0430\u043D\u0438\u0439 \u0441\u043A\ - \u0430\u0444\u0430\u043D\u0434\u0440\u043E\u0432 \u041E\u0411\u0420" - type: Add - id: 171 - time: '2022-07-07T17:51:09.0000000+00:00' -- author: lapatison - changes: - - message: "\u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\ - \u044B (\u0438\u0433\u0440\u043E\u0432\u043E\u0439 \u0440\u0435\u0436\u0438\u043C\ - \ \u0417\u043E\u043C\u0431\u0438, \u0441\u043D\u0430\u0440\u044F\u0436\u0435\ - \u043D\u0438\u0435 \u043E\u0442\u0440\u044F\u0434\u0430 \u0420\u0425\u0411\u0417\ - \u0417, \u0434\u0438\u0437\u0435\u0439\u0431\u043B\u0435\u0440\u044B, \u0449\ - \u0438\u0442\u044B, \u0442\u0435\u043B\u0435\u0432\u0438\u0437\u043E\u0440\u044B\ - , \u043F\u0440\u043E\u0447\u0435\u0435; \u043F\u0440\u043E\u0432\u0435\u0434\ - \u0435\u043D\u044B \u0441\u0442\u0438\u043B\u0438\u0441\u0442\u0438\u0447\u0435\ - \u0441\u043A\u0438\u0435 \u043F\u0440\u0430\u0432\u043A\u0438." - type: Add - id: 172 - time: '2022-07-09T10:14:31.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 173 - time: '2022-07-08T21:46:21.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0440\u0430\u0432\u043A\u0438 \u043F\ - \u0435\u0440\u0435\u0432\u043E\u0434\u0430" - type: Add - id: 174 - time: '2022-07-09T17:32:33.0000000+00:00' -- author: lapatison - changes: - - message: "\u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0441\u0442\u0438\ - \u043B\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u043F\u0440\ - \u0430\u0432\u043A\u0438" - type: Add - id: 175 - time: '2022-07-10T23:17:07.0000000+00:00' -- author: lapatison - changes: - - message: "\u0423\u043A\u043E\u0440\u043E\u0447\u0435\u043D \u0442\u0435\u043A\u0441\ - \u0442 \u0432 \u043A\u043E\u043D\u0441\u043E\u043B\u0438 \u0448\u0430\u0442\u0442\ - \u043B\u0430 \u0447\u0442\u043E\u0431\u044B \u0438\u043D\u0444\u043E\u0440\u043C\ - \u0430\u0446\u0438\u044F \u043B\u0443\u0447\u0448\u0435 \u0432\u043B\u0435\u0437\ - \u0430\u043B\u0430" - type: Add - id: 176 - time: '2022-07-10T23:17:55.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0440\u0430\ - \u0432\u043A\u0438 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\u0430" - type: Add - id: 177 - time: '2022-07-10T23:17:30.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 178 - time: '2022-07-10T23:29:39.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u0440\u0430\u0437\ - \u043B\u0438\u0447\u043D\u044B\u0435 \u043F\u0435\u0440\u0435\u0432\u043E\u0434\ - \u044B" - type: Add - id: 179 - time: '2022-07-11T12:17:22.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u043F\u0435\u0440\u0435\ - \u0432\u043E\u0434 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u0435\u043C\ - \u0430\u0433\u0430." - type: Add - id: 180 - time: '2022-07-12T16:03:22.0000000+00:00' -- author: Morty - changes: - - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ - \u0439\u0442\u044B \u043F\u043E\u0436\u0430\u0440\u043D\u044B\u0445 \u0448\u043B\ - \u044E\u0437\u043E\u0432" - type: Tweak - id: 181 - time: '2022-07-13T23:28:47.0000000+00:00' -- author: lapatison - changes: - - message: "\u043F\u043E\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\ - \u0440\u0435\u0432\u043E\u0434\u044B" - type: Fix - id: 182 - time: '2022-07-13T23:34:48.0000000+00:00' -- author: Morty - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u043E\u0441\ - \u043B\u0435\u0434\u043D\u0438\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\ - \u043D\u0438\u044F" - type: Add - id: 183 - time: '2022-07-15T13:11:21.0000000+00:00' -- author: lapatison - changes: - - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043F\u0435\u0440\ - \u0435\u0432\u043E\u0434\u044B \u043F\u043E\u0441\u043B\u0435\u0434\u043D\u0435\ - \u0433\u043E \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F" - type: Add - - message: "\u041F\u0440\u043E\u0432\u0435\u0434\u0435\u043D\u044B \u0441\u0442\u0438\ - \u043B\u0438\u0441\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0435 \u043F\u0440\ - \u0430\u0432\u043A\u0438" - type: Tweak - id: 184 - time: '2022-07-16T18:15:50.0000000+00:00' - author: Rinkashikachi changes: - message: "\u0443\u0431\u0440\u0430\u043B \u043B\u0438\u0448\u043D\u044E\u044E\ @@ -4462,3 +4272,223 @@ id: 663 time: '2024-10-20T15:54:28.0000000+00:00' url: https://github.com/space-syndicate/space-station-14/pull/2691 +- author: Taburetka24 + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D \u0442\u044B\u043A\u0432\ + \u0435\u043D\u043D\u044B\u0439 \u0441\u043F\u0430\u0441 \u043D\u0430 Awesome\ + \ (\u043D\u0430 \u043D\u0435\u0439 \u0438 \u0442\u0430\u043A \u0441\u0442\u0440\ + \u0430\u0448\u043D\u043E)." + type: Tweak + id: 664 + time: '2024-10-20T17:12:39.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2695 +- author: doctor_jake + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Silly." + type: Tweak + id: 665 + time: '2024-10-20T17:43:54.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2694 +- author: Ko4erga + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u044B \u043A\u0430\u0440\ + \u0442\u044B Pilgrim, Avrite, Tushkan." + type: Tweak + id: 666 + time: '2024-10-20T18:52:54.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2696 +- author: Meguneri + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0430 \u043A\u0430\u0440\u0442\ + \u0430 Maus \u0432 \u043F\u0440\u0435\u0434\u0434\u0432\u0435\u0440\u0438\u0438\ + \ \u0445\u044D\u043B\u043B\u043E\u0443\u0438\u043D\u0430." + type: Tweak + id: 667 + time: '2024-10-20T20:57:30.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2697 +- author: TiFeRI + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u0435 \u043A\u0430\ + \u0440\u0442\u044B Paper!" + type: Tweak + id: 668 + time: '2024-10-21T00:24:58.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2698 +- author: Dezzzix + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Glacier" + type: Tweak + id: 669 + time: '2024-10-21T16:04:58.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2699 +- author: Ko4erga + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E 15 \u043D\u043E\ + \u0432\u044B\u0445 \u0440\u0443\u0438\u043D." + type: Add + - message: "\u0423\u0434\u0430\u043B\u0435\u043D\u043E 8 \u043E\u0444\u0444\u043E\ + \u0432\u0441\u043A\u0438\u0445 \u0440\u0443\u0438\u043D (\u0432\u0441\u0435\ + )." + type: Remove + id: 670 + time: '2024-10-22T05:49:47.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2700 +- author: Dezzzix + changes: + - message: "\u0412\u0440\u0435\u043C\u0435\u043D\u043D\u043E\u0435 \u0443\u0434\u0430\ + \u043B\u0435\u043D\u0438\u0435 \u043A\u0430\u0440\u0442\u044B Glacier, \u0434\ + \u043E \u0438\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u043A\ + \u0440\u0438\u0442\u0438\u0447\u0435\u0441\u043A\u0438\u0445 \u043E\u0448\u0438\ + \u0431\u043E\u043A \u043E\u0444\u0438\u0446\u0438\u0430\u043B\u044C\u043D\u044B\ + \u043C\u0438 \u0440\u0430\u0437\u0440\u0430\u0431\u043E\u0442\u0447\u0438\u043A\ + \u0430\u043C\u0438." + type: Remove + id: 671 + time: '2024-10-23T01:49:55.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2703 +- author: KMIN + changes: + - message: "\u0423\u0434\u0430\u043B\u0435\u043D\u044B \u043A\u043E\u0434\u044B\ + \ \u044F\u0434\u0435\u0440\u043D\u043E\u0439 \u0431\u043E\u0435\u0433\u043E\u043B\ + \u043E\u0432\u043A\u0438 \u0441 \u0440\u0443\u0438\u043D." + type: Tweak + id: 672 + time: '2024-10-25T11:47:13.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2706 +- author: MureixloL, Prazat911 + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u044B \u0441\u043F\u0440\u0430\ + \u0439\u0442\u044B!" + type: Tweak + id: 673 + time: '2024-10-26T04:22:34.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2704 +- author: Morb0 + changes: + - message: "\u0414\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u043E 34 \u043D\u043E\ + \u0432\u044B\u0445 \u0433\u043E\u043B\u043E\u0441\u0430" + type: Add + id: 674 + time: '2024-10-27T10:08:27.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2705 +- author: Resoid + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D \u043E\u0431\u043B\u043E\ + \u043C\u043E\u043A \u043D\u0430 \u043A\u0430\u0440\u0442\u0435 Astra." + type: Tweak + id: 675 + time: '2024-10-29T00:56:48.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2710 +- author: Ko4erga + changes: + - message: "\u041D\u0430 \u0432\u0441\u0435 \u043A\u0430\u0440\u0442\u044B \u0431\ + \u044B\u043B \u0432\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D \u0448\u0430\ + \u0442\u0442\u043B \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0442\u043E\u0440\ + \u043E\u0432 \u0438 \u043A\u043B\u043E\u043D\u0451\u0440\u043A\u0430 \u0432\ + \ \u0441\u043E\u0431\u0440\u0430\u043D\u043D\u043E\u043C \u0432\u0438\u0434\u0435\ + ." + type: Tweak + id: 676 + time: '2024-10-29T04:54:14.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2712 +- author: Ko4erga + changes: + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u0430 \u0446\u0435\u043B\u044C\ + \ \u043D\u0430 \u0411\u0443\u043D\u043A\u0435\u0440." + type: Tweak + id: 677 + time: '2024-10-30T10:13:58.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2717 +- author: Meguneri + changes: + - message: "\u0418\u0441\u043F\u0440\u0430\u0432\u043B\u0435\u043D \u043E\u0434\u0438\ + \u043D \u0438\u0437 \u043E\u0431\u043B\u043E\u043C\u043A\u043E\u0432." + type: Fix + id: 678 + time: '2024-10-31T12:17:32.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2724 +- author: Ko4erga + changes: + - message: "\u0421\u043E \u0432\u0441\u0435\u0445 \u043A\u0430\u0440\u0442 \u041A\ + \u043E\u0440\u0432\u0430\u043A\u0441\u0430 \u0443\u0431\u0440\u0430\u043D\u044B\ + \ \u043A\u043B\u043E\u043D\u0435\u0440\u043A\u0438, \u043D\u043E \u0434\u043E\ + \u0431\u0430\u0432\u043B\u0435\u043D\u044B \u043C\u0435\u043D\u0437\u0443\u0440\ + \u043A\u0438 \u0441 \u041E\u043F\u043F\u043E\u0440\u043E\u0437\u0438\u0434\u043E\ + \u043D\u043E\u043C." + type: Tweak + id: 679 + time: '2024-11-01T04:16:50.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2725 +- author: Zekins3366 + changes: + - message: "\u0423\u043B\u0443\u0447\u0448\u0435\u043D\u043E \u0444\u043E\u0440\u043C\ + \u0430\u0442\u0438\u0440\u043E\u0432\u0430\u043D\u0438\u0435 \u043E\u043F\u0438\ + \u0441\u0430\u043D\u0438\u044F \u0441\u0435\u0440\u0432\u0435\u0440\u0430 Corvax\ + \ Solaris \u043F\u0443\u0442\u0435\u043C \u0443\u0434\u0430\u043B\u0435\u043D\ + \u0438\u044F \u0438\u0437\u0431\u044B\u0442\u043E\u0447\u043D\u044B\u0445 \u043A\ + \u0432\u0430\u0434\u0440\u0430\u0442\u043D\u044B\u0445 \u0441\u043A\u043E\u0431\ + \u043E\u043A." + type: Tweak + id: 680 + time: '2024-11-03T22:18:09.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2736 +- author: Meguneri + changes: + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Maus." + type: Tweak + id: 681 + time: '2024-11-05T21:04:07.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2741 +- author: Ko4erga + changes: + - message: "\u0412\u043E\u0437\u0432\u0440\u0430\u0449\u0435\u043D\u0430 \u043A\u043E\ + \u043D\u0441\u043E\u043B\u044C \u0443\u043F\u0440\u0430\u0432\u043B\u0435\u043D\ + \u0438\u044F \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0442\u043E\u0440\u0441\ + \u043A\u043E\u0433\u043E \u0448\u0430\u0442\u0442\u043B\u0430, \u043A\u0430\u043A\ + \ \u0438 \u0441\u0430\u043C \u0448\u0430\u0442\u0442\u043B." + type: Add + - message: "\u0418\u0437\u043C\u0435\u043D\u0435\u043D \u0448\u0430\u0442\u0442\u043B\ + \ \u0443\u0442\u0438\u043B\u0438\u0437\u0430\u0442\u043E\u0440\u043E\u0432." + type: Tweak + - message: "\u0421\u043E \u0432\u0441\u0435\u0445 \u043A\u0430\u0440\u0442 \u0443\ + \u0431\u0440\u0430\u043D\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u044C \u044D\ + \u043A\u0441\u043F\u0435\u0434\u0438\u0446\u0438\u0439. \u041D\u0430 (\u043F\ + \u043E\u0447\u0442\u0438) \u0432\u0441\u0435 \u043A\u0430\u0440\u0442\u044B\ + \ \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0430 \u043C\u0435\u043D\u0437\ + \u0443\u0440\u043A\u0430 \u0441 \u041E\u043F\u043F\u043E\u0440\u043E\u0437\u0438\ + \u0434\u043E\u043D\u043E\u043C \u0438 \u0443\u0431\u0440\u0430\u043D\u0430 \u043A\ + \u043B\u043E\u043D\u0438\u0440\u0443\u044E\u0449\u0430\u044F \u043C\u0430\u0448\ + \u0438\u043D\u0430. \u0422\u044B\u043A\u0432\u0435\u043D\u043D\u044B\u0439 \u0441\ + \u043F\u0430\u0441 \u043E\u043A\u043E\u043D\u0447\u0435\u043D." + type: Tweak + - message: "\u041E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0430 \u043A\u0430\u0440\ + \u0442\u0430 Pearl." + type: Tweak + id: 682 + time: '2024-11-04T17:32:26.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2738 +- author: lzk228 + changes: + - message: "\u041F\u043B\u0430\u0442\u0430 \u043A\u043E\u043D\u0441\u043E\u043B\u0438\ + \ \u044D\u043A\u0441\u043F\u0435\u0434\u0438\u0446\u0438\u0439 \u0434\u043E\u0431\ + \u0430\u0432\u043B\u0435\u043D\u0430 \u0432 \u0442\u0435\u0445\u043D\u043E\u043B\ + \u043E\u0433\u0438\u044E \"\u041C\u0430\u0441\u0441\u043E\u0432\u044B\u0435\ + \ \u0440\u0430\u0441\u043A\u043E\u043F\u043A\u0438\"" + type: Add + id: 683 + time: '2024-11-04T17:34:25.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2737 +- author: lzk228 + changes: + - message: "\u0421\u0442\u0430\u043D\u0434\u0430\u0440\u0442\u043D\u044B\u0439 \u0437\ + \u0430\u043A\u043E\u043D \u0431\u043E\u0440\u0433\u043E\u0432 \u0438 \u0418\u0418\ + \ \u0438\u0437\u043C\u0435\u043D\u0451\u043D \u0441 \u041A\u0440\u044E\u0437\ + \u0438\u043C\u043E\u0432\u0430 \u043D\u0430 \u041D\u0422 \u0421\u0442\u0430\u043D\ + \u0434\u0430\u0440\u0442" + type: Tweak + id: 684 + time: '2024-11-04T15:30:49.0000000+00:00' + url: https://github.com/space-syndicate/space-station-14/pull/2735 diff --git a/Resources/ConfigPresets/Corvax/solaris.toml b/Resources/ConfigPresets/Corvax/solaris.toml index 424aa4a078e..26be047bbe6 100644 --- a/Resources/ConfigPresets/Corvax/solaris.toml +++ b/Resources/ConfigPresets/Corvax/solaris.toml @@ -1,6 +1,6 @@ [game] hostname = "🛰️ Corvax — Солярис 🌕 [TTS]" -desc = "[Корвакс — первый русскоязычный проект в Space Station 14.\nНа этом сервере средние требования к RP.\nИмеется интеграция TTS (Text-To-Speech)." +desc = "Корвакс — первый русскоязычный проект в Space Station 14.\nНа этом сервере средние требования к RP.\nИмеется интеграция TTS (Text-To-Speech)." map_pool = "CorvaxDefaultMapPool" maxplayers = 160 soft_max_players = 80 diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index 7560833f13a..a1a0e5b704d 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -4,10 +4,6 @@ [game] hostname = "[EN] Wizard's Den Leviathan [US East 1]" -panic_bunker.enabled = false -panic_bunker.disable_with_admins = false -panic_bunker.enable_without_admins = false -panic_bunker.custom_reason = "" [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index 676deec96da..e233dd95ca2 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 077ff3fe40a..2b059ca40e3 100644 --- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml +++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml @@ -4,12 +4,12 @@ [game] desc = "Official English Space Station 14 servers. Vanilla, roleplay ruleset." lobbyenabled = true -soft_max_players = 80 +soft_max_players = 70 panic_bunker.enabled = true panic_bunker.disable_with_admins = true panic_bunker.enable_without_admins = true panic_bunker.show_reason = true -panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard, Leviathan, or Farm Grass Hopper until you have more playtime." +panic_bunker.custom_reason = "You have not played on a Wizard's Den server long enough to connect to this server. Please play on Wizard's Den Lizard or Farm Grass Hopper until you have more playtime." [infolinks] bug_report = "https://github.com/space-wizards/space-station-14/issues/new/choose" diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl index e77725765be..57d8660fae0 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/atmos/atmos-alerts-console.ftl b/Resources/Locale/en-US/atmos/atmos-alerts-console.ftl index a1640c5e9d5..470a8f86952 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/botany/components/plant-holder-component.ftl b/Resources/Locale/en-US/botany/components/plant-holder-component.ftl index 0e8c4137f4e..ca20c277f53 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 cccb33a1f17..8c74acafca2 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/forensics/fibers.ftl b/Resources/Locale/en-US/forensics/fibers.ftl index 53cfe5e7c12..72eae55e380 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-traitor.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-traitor.ftl index fd3e6b82aa7..cf2f2b11308 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/guidebook/chemistry/effects.ftl b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl index b65c332346a..642555b237e 100644 --- a/Resources/Locale/en-US/guidebook/chemistry/effects.ftl +++ b/Resources/Locale/en-US/guidebook/chemistry/effects.ftl @@ -37,6 +37,12 @@ reagent-effect-guidebook-emp-reaction-effect = *[other] cause } an electromagnetic pulse +reagent-effect-guidebook-flash-reaction-effect = + { $chance -> + [1] Causes + *[other] cause + } a blinding flash + reagent-effect-guidebook-foam-area-reaction-effect = { $chance -> [1] Creates diff --git a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl index fe1f92e9140..eb79358ecc2 100644 --- a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl @@ -15,7 +15,8 @@ health-analyzer-window-entity-damage-total-text = Total Damage: health-analyzer-window-damage-group-text = {$damageGroup}: {$amount} health-analyzer-window-damage-type-text = {$damageType}: {$amount} -health-analyzer-window-entity-bleeding-text = Patient is bleeding! +health-analyzer-window-entity-unrevivable-text = [color=red]Unique body composition detected! Patient can not be resuscitated by normal means![/color] +health-analyzer-window-entity-bleeding-text = [color=red]Patient is bleeding![/color] health-analyzer-window-scan-mode-text = Scan Mode: health-analyzer-window-scan-mode-active = Active diff --git a/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl b/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl index 9d0919d102c..4e7a8b235b5 100644 --- a/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl @@ -73,3 +73,4 @@ station-beacon-tools = Tools station-beacon-disposals = Disposals station-beacon-cryosleep = Cryosleep station-beacon-escape-pod = Escape Pod +station-beacon-vox = Vox Break Room diff --git a/Resources/Locale/en-US/ninja/ninja-actions.ftl b/Resources/Locale/en-US/ninja/ninja-actions.ftl index f01f02a60e5..b3e295b7a29 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 6d6439565ba..b5ef028bed9 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 72047432bb5..ae775c99314 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 00000000000..37583568e7c --- /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/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl new file mode 100644 index 00000000000..34805fb59e5 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl @@ -0,0 +1,2 @@ +ent-MobSyndicateSmuggler = syndicate smuggler + .desc = { ent-BaseMobHuman.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/multiple/towel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/multiple/towel.ftl new file mode 100644 index 00000000000..7a56f22b32f --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/clothing/multiple/towel.ftl @@ -0,0 +1,48 @@ +ent-BaseTowel = base towel + .desc = If you want to survive out here, you gotta know where your towel is. +ent-TowelColorWhite = white towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorPurple = purple towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorRed = red towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorBlue = blue towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorDarkBlue = dark blue towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorLightBlue = light blue towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorTeal = teal towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorBrown = brown towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorLightBrown = light brown towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorGray = gray towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorGreen = green towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorDarkGreen = dark green towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorGold = gold towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorOrange = orange towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorBlack = black towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorPink = pink towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorYellow = yellow towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorMaroon = maroon towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorSilver = silver towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorMime = silent towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorNT = NanoTrasen brand towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorCentcom = centcom towel + .desc = { ent-BaseTowel.desc } +ent-TowelColorSyndicate = syndicate towel + .desc = { ent-BaseTowel.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl index e5cf2be90cf..55526926594 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl @@ -16,3 +16,5 @@ ent-FoamedIronMetal = foamed iron metal .desc = For sealing hull breaches. ent-FoamedAluminiumMetal = foamed aluminium metal .desc = For sealing hull breaches. +ent-ReactionFlash = { "" } + .desc = { "" } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl index c30b54d6e81..880202662df 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl @@ -1,5 +1,5 @@ ent-AdminObserver = admin observer - .desc = { ent-MobObserver.desc } + .desc = { ent-MobObserverBase.desc } ent-ActionAGhostShowSolar = Solar Control Interface .desc = View a Solar Control Interface. ent-ActionAGhostShowCommunications = Communications Interface diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/observer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/observer.ftl index 2f6750a1005..d29918cccf8 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/observer.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/observer.ftl @@ -1,7 +1,9 @@ ent-Incorporeal = { "" } .desc = Mobs without physical bodies -ent-MobObserver = observer +ent-MobObserverBase = observer .desc = Boo! +ent-MobObserver = { ent-MobObserverBase } + .desc = { ent-MobObserverBase.desc } ent-ActionGhostBoo = Boo! .desc = Scare your crew members because of boredom! ent-ActionToggleLighting = Toggle All Lighting diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl index a197094a9ad..4c318748def 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl @@ -1,2 +1,2 @@ -ent-ReplayObserver = { ent-MobObserver } - .desc = { ent-MobObserver.desc } +ent-ReplayObserver = { ent-MobObserverBase } + .desc = { ent-MobObserverBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl index 91ef670803c..ce4d0e09a32 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/silicon.ftl @@ -1,5 +1,7 @@ ent-AiHeld = { "" } .desc = Components added / removed from an entity that gets inserted into an AI core. +ent-AiHeldIntellicard = { "" } + .desc = Components added / removed from an entity that gets inserted into an Intellicard. ent-AiHolder = { "" } .desc = Handles AI interactions across holocards + AI cores ent-AsimovCircuitBoard = law board (Crewsimov) @@ -28,7 +30,7 @@ ent-AntimovCircuitBoard = law board (Antimov) .desc = An electronics board containing the Antimov lawset. ent-NutimovCircuitBoard = law board (Nutimov) .desc = An electronics board containing the Nutimov lawset. -ent-Intellicard = Intellicard +ent-Intellicard = intellicard .desc = A storage device for AIs. .suffix = Empty ent-PlayerStationAiEmpty = AI Core diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index fa95fdaa0d4..0e3731a09f1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -201,3 +201,6 @@ ent-DefaultStationBeaconCryosleep = { ent-DefaultStationBeacon } ent-DefaultStationBeaconEscapePod = { ent-DefaultStationBeacon } .suffix = Escape Pod .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconVox = { ent-DefaultStationBeacon } + .suffix = Vox + .desc = { ent-DefaultStationBeacon.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/spectral_locator.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/spectral_locator.ftl new file mode 100644 index 00000000000..4e2b85a7080 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/spectral_locator.ftl @@ -0,0 +1,9 @@ +ent-SpectralLocatorUnpowered = spectral locator + .desc = Appears to be a modified anomaly locator. Seems very old. + .suffix = Unpowered +ent-SpectralLocator = { ent-SpectralLocatorUnpowered } + .suffix = Powered + .desc = { ent-SpectralLocatorUnpowered.desc } +ent-SpectralLocatorEmpty = { ent-SpectralLocator } + .suffix = Empty + .desc = { ent-SpectralLocator.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl index 0adea7c5942..f0cb7a05e35 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl @@ -21,6 +21,8 @@ ent-BaseSyringe = syringe .desc = Used to draw blood samples from mobs, or to inject them with reagents. ent-Syringe = { ent-BaseSyringe } .desc = { ent-BaseSyringe.desc } +ent-MiniSyringe = mini syringe + .desc = A regular syringe, reshaped to fit inside of a gun. ent-PrefilledSyringe = { ent-BaseSyringe } .desc = { ent-BaseSyringe.desc } ent-SyringeBluespace = bluespace syringe diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl index db0d484e39c..6134706c92c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl @@ -8,3 +8,7 @@ ent-DefibrillatorEmpty = { ent-Defibrillator } ent-DefibrillatorOneHandedUnpowered = { ent-BaseDefibrillator } .suffix = One-Handed, Unpowered .desc = { ent-BaseDefibrillator.desc } +ent-DefibrillatorCompact = compact defibrillator + .desc = Now in fun size! +ent-DefibrillatorSyndicate = interdyne defibrillator + .desc = Doubles as a self-defense weapon against war-crime inclined tiders. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl index d4548955e6d..68d2d404469 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl @@ -19,6 +19,12 @@ ent-BurnAutoInjector = burn auto-injector .desc = A rapid dose of dermaline and leporazine, intended for combat applications. ent-RadAutoInjector = rad auto-injector .desc = A rapid dose of anti-radiation. Contains arithrazine and bicaridine. +ent-PunctAutoInjector = puncturase auto-injector + .desc = A rapid dose of puncturase and tranexamic acid, intended for combat applications. +ent-PyraAutoInjector = pyrazine auto-injector + .desc = A rapid dose of pyrazine and dermaline, intended for combat applications. +ent-AirlossAutoInjector = airloss auto-injector + .desc = A rapid dose of saline and dexalin plus, intended to get someone up quickly. ent-SpaceMedipen = space medipen .desc = Contains a mix of chemicals that protect you from the deadly effects of space. ent-Stimpack = hyperzine injector diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl index 2fe4439a1fe..dd6838748de 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl @@ -2,6 +2,8 @@ ent-WeaponImprovisedPneumaticCannon = improvised pneumatic cannon .desc = Improvised using nothing but a pipe, some zipties, and a pneumatic cannon. Doesn't accept tanks without enough gas. ent-LauncherCreamPie = pie cannon .desc = Load cream pie for optimal results. +ent-LauncherSyringe = syringe gun + .desc = Load full of poisoned syringes for optimal fun. ent-WeaponImprovisedPneumaticCannonGun = { ent-WeaponImprovisedPneumaticCannon } .suffix = Gun .desc = { ent-WeaponImprovisedPneumaticCannon.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl index 561ea1e2993..a3baf3b510d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl @@ -24,6 +24,8 @@ ent-GasMinerPlasma = plasma gas miner .desc = { ent-GasMinerBase.desc } ent-GasMinerTritium = tritium gas miner .desc = { ent-GasMinerBase.desc } +ent-GasMinerFrezon = frezon gas miner + .desc = { ent-GasMinerBase.desc } ent-GasMinerWaterVapor = water vapor gas miner .desc = { ent-GasMinerBase.desc } ent-GasMinerAmmonia = ammonia gas miner diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/roundstart.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/roundstart.ftl index ac686d7efed..0005c6df873 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/roundstart.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/roundstart.ftl @@ -18,6 +18,8 @@ ent-BaseTraitorRule = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-Traitor = { ent-BaseTraitorRule } .desc = { ent-BaseTraitorRule.desc } +ent-TraitorReinforcement = { ent-Traitor } + .desc = { ent-Traitor.desc } ent-Revolutionary = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-Sandbox = { ent-BaseGameRule } diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index e0864de41bc..a78f39d5696 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -216,8 +216,8 @@ uplink-chemistry-kit-desc = A starter kit for the aspiring chemist, includes tox uplink-knives-kit-name = Throwing Knives Kit uplink-knives-kit-desc = A set of 4 syndicate branded throwing knives, perfect for embedding into the body of your victims. -uplink-meds-bundle-name = Medical Bundle -uplink-meds-bundle-desc = All you need to get your comrades back in the fight: mainly a combat medkit, a defibrillator and three combat medipens. +uplink-meds-bundle-name = Interdyne Medical Bundle +uplink-meds-bundle-desc = An assortment of autoinjectors and premium medical equipment to cover for every possible situation. Contains an elite compact defibrillator that can be used as a weapon. uplink-ammo-bundle-name = Ammo Bundle uplink-ammo-bundle-desc = Reloading! Contains 4 magazines for the C-20r, 4 drums for the Bulldog, and 2 ammo boxes for the L6 SAW. @@ -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/Locale/ru-RU/_lib.ftl b/Resources/Locale/ru-RU/_lib.ftl index c0d7fe5c875..a7aa5be7474 100644 --- a/Resources/Locale/ru-RU/_lib.ftl +++ b/Resources/Locale/ru-RU/_lib.ftl @@ -32,3 +32,5 @@ zzzz-fmt-power-joules = [4] ТДж *[5] ??? } +# Used internally by the PLAYTIME() function. +zzzz-fmt-playtime = { $hours }ч { $minutes }м diff --git a/Resources/Locale/ru-RU/administration/smites.ftl b/Resources/Locale/ru-RU/administration/smites.ftl index 1df010739ba..90e1d05b18b 100644 --- a/Resources/Locale/ru-RU/administration/smites.ftl +++ b/Resources/Locale/ru-RU/administration/smites.ftl @@ -20,18 +20,14 @@ admin-smite-explode-name = Взрыв admin-smite-chess-dimension-name = Шахматное измерение admin-smite-set-alight-name = Воспламенить admin-smite-monkeyify-name = Превратить в обезьяну +admin-smite-garbage-can-name = Мусор admin-smite-electrocute-name = Поразить током -admin-smite-creampie-name = Кремовый пирог admin-smite-remove-blood-name = Обескровить -admin-smite-vomit-organs-name = Рвота органами admin-smite-remove-hands-name = Удалить руки admin-smite-remove-hand-name = Удалить руку admin-smite-pinball-name = Пинбол admin-smite-yeet-name = Бросить сквозь станцию admin-smite-become-bread-name = Сделать хлебом -admin-smite-ghostkick-name = Кик втихаря -admin-smite-nyanify-name = НЯфикация -admin-smite-kill-sign-name = Знак смерти admin-smite-cluwne-name = Сделать клувнем admin-smite-anger-pointing-arrows-name = Злые указатели admin-smite-dust-name = В прах @@ -51,11 +47,15 @@ admin-smite-stomach-removal-name = Удалить желудок admin-smite-speak-backwards-name = Речь наоборот admin-smite-lung-removal-name = Удалить лёгкие admin-smite-disarm-prone-name = Обезоруживание и арест -admin-smite-garbage-can-name = Мусор admin-smite-super-bonk-name = СуперБонк admin-smite-super-bonk-lite-name = СуперБонк-Лайт admin-smite-terminate-name = Экстерминировать admin-smite-super-slip-name = Суперскольжение +admin-smite-creampie-name = Кремировать +admin-smite-vomit-organs-name = Рвота органами +admin-smite-ghostkick-name = Кик втихаря +admin-smite-nyanify-name = НЯфикация +admin-smite-kill-sign-name = Знак смерти ## Smite descriptions diff --git a/Resources/Locale/ru-RU/advertisements/other/firebot.ftl b/Resources/Locale/ru-RU/advertisements/other/firebot.ftl index ad35cf2d24b..09c7c8aad96 100644 --- a/Resources/Locale/ru-RU/advertisements/other/firebot.ftl +++ b/Resources/Locale/ru-RU/advertisements/other/firebot.ftl @@ -1,4 +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. +advertisement-firebot-1 = Пожара не обнаружено. +advertisement-firebot-2 = Только вы можете предотвратить пожар на станции. +advertisement-firebot-3 = Температура допустимая. +advertisement-firebot-4 = Сохраняйте прохладу. diff --git a/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl b/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl index fc36262fd7f..2204f893e82 100644 --- a/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl +++ b/Resources/Locale/ru-RU/bed/cryostorage/cryogenic-storage.ftl @@ -1,6 +1,7 @@ ### Announcement earlyleave-cryo-job-unknown = Должность неизвестна +# {$entity} available for GENDER function purposes earlyleave-cryo-announcement = { $character } ({ $job }) { GENDER($entity) -> [male] был перемещён diff --git a/Resources/Locale/ru-RU/botany/components/plant-holder-component.ftl b/Resources/Locale/ru-RU/botany/components/plant-holder-component.ftl index 54778cac2fc..17a661938cc 100644 --- a/Resources/Locale/ru-RU/botany/components/plant-holder-component.ftl +++ b/Resources/Locale/ru-RU/botany/components/plant-holder-component.ftl @@ -8,8 +8,6 @@ plant-holder-component-no-weeds-message = На этом участке нет с plant-holder-component-remove-plant-message = Вы удаляете растение из { $name }. plant-holder-component-remove-plant-others-message = { $name } удаляет растение. plant-holder-component-no-plant-message = Отсутствует растение для удаления. -plant-holder-component-empty-message = { $owner } пуст! -plant-holder-component-spray-message = Вы опрыскиваете { $owner }. plant-holder-component-transfer-message = Вы перемещаете { $amount }ед. в { $owner }. plant-holder-component-nothing-to-sample-message = Из этого не извлечь семян! plant-holder-component-already-sampled-message = Из этого растения уже извлекли семена. diff --git a/Resources/Locale/ru-RU/chat/emotes.ftl b/Resources/Locale/ru-RU/chat/emotes.ftl index 2464ca8d36d..8b9046b30fa 100644 --- a/Resources/Locale/ru-RU/chat/emotes.ftl +++ b/Resources/Locale/ru-RU/chat/emotes.ftl @@ -8,6 +8,7 @@ chat-emote-name-crying = Плакать chat-emote-name-squish = Хлюпать chat-emote-name-chitter = Стрекотать chat-emote-name-squeak = Пищать +chat-emote-name-thump = Стучать хвостом chat-emote-name-click = Клацать chat-emote-name-clap = Хлопать chat-emote-name-snap = Щёлкать пальцами @@ -39,6 +40,7 @@ chat-emote-msg-crying = плачет chat-emote-msg-squish = хлюпает chat-emote-msg-chitter = щебечет chat-emote-msg-squeak = пищит +chat-emote-msg-thump = cтучит своим хвостом chat-emote-msg-click = клацает chat-emote-msg-clap = хлопает! chat-emote-msg-snap = щёлкает пальцами diff --git a/Resources/Locale/ru-RU/corvax/prototypes/entities/objects/devices/circuitboards/computer.ftl b/Resources/Locale/ru-RU/corvax/prototypes/entities/objects/devices/circuitboards/computer.ftl new file mode 100644 index 00000000000..8c65f2a7269 --- /dev/null +++ b/Resources/Locale/ru-RU/corvax/prototypes/entities/objects/devices/circuitboards/computer.ftl @@ -0,0 +1,2 @@ +ent-SalvageShuttleConsoleCircuitboard = консоль управления утилизаторским шаттлом (консольная плата) + .desc = Консольная плата для консоли управления утилизаторским шаттлом. diff --git a/Resources/Locale/ru-RU/corvax/prototypes/entities/structures/machines/computers/computers.ftl b/Resources/Locale/ru-RU/corvax/prototypes/entities/structures/machines/computers/computers.ftl new file mode 100644 index 00000000000..88bf9a8a341 --- /dev/null +++ b/Resources/Locale/ru-RU/corvax/prototypes/entities/structures/machines/computers/computers.ftl @@ -0,0 +1,2 @@ +ent-ComputerShuttleSalvage = консоль управления утилизаторским шаттлом + .desc = Используется для пилотирования утилизаторского шаттла. diff --git a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl index 09f6b218c4d..8caad9e9dce 100644 --- a/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl +++ b/Resources/Locale/ru-RU/corvax/station-goal/station-goal-component.ftl @@ -277,9 +277,9 @@ station-goal-bunker = { station-goal-start }[bold] Цель смены станции { $station } — приспособить станцию к мощным гиперэнергетическим потокам.[/bold] - Необходимо пристроить каждому отделу комнату, далее именуемой “бункер”, в которой экипаж станции мог бы укрыться от последствий гиперэнергетических потоков. + Необходимо пристроить по комнате, далее именуемой как “бункер”, следующим отделам: Службы Безопасности, Медицинскому и Командному. В них экипаж станции мог бы укрыться от последствий гиперэнергетических потоков. - Требования к бункеру: + Общие требования к бункерам: 1. Минимальный размер 25м². 2. Укреплённые стены. 3. Вход через два непрозрачных шлюза с соответствующим отделу доступом. @@ -288,7 +288,9 @@ station-goal-bunker = 6. Запасы провизии с расчетом на четыре человека, на срок от 72 часов. 7. Автономное питание и канистры с воздухом и кислородом. 8. Шкафчики со снаряжением для биологической и радиационной защиты. Так же аварийные скафандры EVA и костюм сапёра. - 9. Интерком с общим ключом шифрования. + + Бункер отдела Службы Безопасности должен так же включать в себя два Силовика и три Раздатчика летальных ружейных патронов. + Бункер Медицинского отдела должен дополнительно оснащаться Дефиблилятором и зарядником батарей. { station-goal-end } station-goal-frame-repair = diff --git a/Resources/Locale/ru-RU/entity-categories.ftl b/Resources/Locale/ru-RU/entity-categories.ftl index 570ca944df5..2c402270077 100644 --- a/Resources/Locale/ru-RU/entity-categories.ftl +++ b/Resources/Locale/ru-RU/entity-categories.ftl @@ -1,5 +1,5 @@ entity-category-name-actions = Действия entity-category-name-game-rules = Игровые режимы entity-category-name-objectives = Цели -entity-category-name-roles = Mind Roles -entity-category-name-mapping = Mapping +entity-category-name-roles = Роли сознания +entity-category-name-mapping = Маппинг diff --git a/Resources/Locale/ru-RU/forensics/fibers.ftl b/Resources/Locale/ru-RU/forensics/fibers.ftl index aa06367a62c..0c80143c718 100644 --- a/Resources/Locale/ru-RU/forensics/fibers.ftl +++ b/Resources/Locale/ru-RU/forensics/fibers.ftl @@ -23,3 +23,7 @@ fibers-white = белые fibers-yellow = жёлтые fibers-regal-blue = королевские синие fibers-olive = оливковые +fibers-silver = серебряные +fibers-gold = золотые +fibers-maroon = бордовые +fibers-pink = розовые diff --git a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl index 8fc3f98e68c..d47550a2c7b 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-nukeops.ftl @@ -3,12 +3,12 @@ nukeops-description = Ядерные оперативники нацелилис nukeops-welcome = Вы - ядерный оперативник. Ваша задача - взорвать { $station } и убедиться, что от неё осталась лишь груда обломков. Ваше руководство, Синдикат, снабдило вас всем необходимым для выполнения этой задачи. Операция "{ $name }" началась! Смерть Nanotrasen! -nukeops-briefing = Your objectives are simple. Deliver the payload and make sure it detonates. Begin mission. -nukeops-opsmajor = [color=crimson]Крупная победа Синдиката![/color] -nukeops-opsminor = [color=crimson]Малая победа Синдиката![/color] -nukeops-neutral = [color=yellow]Ничейный исход![/color] -nukeops-crewminor = [color=green]Малая победа экипажа![/color] -nukeops-crewmajor = [color=green]Разгромная победа экипажа![/color] +nukeops-briefing = Ваши задачи просты. Доставить бомбу и убедиться, что она взорвётся. Начинайте миссию. +nukeops-opsmajor = [color=crimson]Крупная победа Синдиката![/color] +nukeops-opsminor = [color=crimson]Малая победа Синдиката![/color] +nukeops-neutral = [color=yellow]Ничейный исход![/color] +nukeops-crewminor = [color=green]Малая победа экипажа![/color] +nukeops-crewmajor = [color=green]Разгромная победа экипажа![/color] nukeops-cond-nukeexplodedoncorrectstation = Ядерным оперативникам удалось взорвать станцию. nukeops-cond-nukeexplodedonnukieoutpost = Аванпост ядерных оперативников был уничтожен ядерным взрывом. nukeops-cond-nukeexplodedonincorrectlocation = Ядерная бомба взорвалась вне станции. diff --git a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl index 27ee3c84d7e..8d3bbf7dae0 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-presets/preset-traitor.ftl @@ -24,7 +24,7 @@ traitor-death-match-end-round-description-entry = КПК { $originalName }, с { traitor-role-greeting = Вы - агент организации { $corporation } на задании [color = darkred]Синдиката.[/color]. Ваши цели и кодовые слова перечислены в меню персонажа. - Воспользуйтесь аплинком, встроенным в ваш КПК, чтобы приобрести всё необходимое для выполнения работы. + Воспользуйтесь своим аплинком, чтобы приобрести всё необходимое для выполнения работы. Смерть Nanotrasen! traitor-role-codewords = Кодовые слова следующие: [color = lightgray] @@ -38,4 +38,8 @@ traitor-role-uplink-code = traitor-role-codewords-short = Кодовые слова: { $codewords }. +traitor-role-uplink-implant = + Ваш имплант аплинк активирован, воспользуйтесь им из хотбара. + Аплинк надежно защищён, пока кто-нибудь не извлечёт его из вашего тела. traitor-role-uplink-code-short = Ваш код аплинка: { $code }. Установите его в качестве рингтона КПК для доступа к аплинку. +traitor-role-uplink-implant-short = Ваш аплинк был имплантирован. Воспользуйтесь им из хотбара. diff --git a/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl b/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl index 402266f67e2..e26b8f0e65e 100644 --- a/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl +++ b/Resources/Locale/ru-RU/game-ticking/game-ticker.ftl @@ -33,7 +33,7 @@ player-join-message = Игрок { $name } зашёл! # Displayed in chat to admins when a player leaves player-leave-message = Игрок { $name } вышел! latejoin-arrival-announcement = - { $character } ({ $job }) { $gender -> + { $character } ({ $job }) { GENDER($entity) -> [male] прибыл [female] прибыла [epicene] прибыли diff --git a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl index ab15925359a..1c23e21d4a7 100644 --- a/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/ru-RU/ghost/roles/ghost-role-component.ftl @@ -175,54 +175,54 @@ ghost-role-information-syndicate-monkey-reinforcement-rules = Вы [color=red][b ghost-role-information-syndicate-kobold-reinforcement-name = Агент Синдиката-кобольд ghost-role-information-syndicate-kobold-reinforcement-description = Кому-то нужно подкрепление. Вы, специально обученный кобольд, поможете им. ghost-role-information-syndicate-kobold-reinforcement-rules = Вы [color=red][bold]Командный антагонист[/bold][/color], в команде с агентом, который вас призвал. -ghost-role-information-syndicate-cyborg-assault-name = Syndicate Assault Cyborg -ghost-role-information-syndicate-cyborg-saboteur-name = Syndicate Saboteur Cyborg -ghost-role-information-syndicate-cyborg-description = The Syndicate needs reinforcements. You, a cold silicon killing machine, will help them. -ghost-role-information-security-name = Security -ghost-role-information-security-description = You are part of a security task force, but seem to have found yourself in a strange situation... -ghost-role-information-medical-name = Medical -ghost-role-information-medical-virologist-name = Virologist -ghost-role-information-medical-geneticist-name = Geneticist -ghost-role-information-medical-dentist-name = Dentist -ghost-role-information-medical-description = You are a medical professional, but seem to have found yourself in a strange situation... -ghost-role-information-cargo-name = Cargo -ghost-role-information-cargo-description = You are part of a logistics mission, but seem to have found yourself in a strange situation... -ghost-role-information-engineering-name = Engineering -ghost-role-information-engineering-description = You are on an engineering job, but seem to have found yourself in a strange situation... -ghost-role-information-science-name = Science -ghost-role-information-science-description = You are part of a science team, but seem to have found yourself in a strange situation... -ghost-role-information-civilian-name = Civilian -ghost-role-information-civilian-description = You were just hanging out, but seem to have found yourself in a strange situation... -ghost-role-information-civilian-centcom-lawyer-name = Centcom Lawyer -ghost-role-information-civilian-centcom-lawyer-description = A lawyer direct from the Central Legal Division. -ghost-role-information-command-name = Commander -ghost-role-information-command-description = You are a member of command, but seem to have found yourself in a strange situation... -ghost-role-information-lost-challenge-commander-name = Commander on Shore Leave -ghost-role-information-lost-challenge-commander-description = You are a command member from another starship who was granted shore leave with one of your cargo technicians. +ghost-role-information-syndicate-cyborg-assault-name = Штурмовой киборг Синдиката +ghost-role-information-syndicate-cyborg-saboteur-name = Саботажный киборг Синдиката +ghost-role-information-syndicate-cyborg-description = Синдикату нужно подкрепление. Вы, холодная кремниевая машина для убийства, поможете им. +ghost-role-information-security-name = Служба безопасности +ghost-role-information-security-description = Вы входите в состав оперативной группы службы безопасности, но, похоже, попали в странную ситуацию... +ghost-role-information-medical-name = Медицинский +ghost-role-information-medical-virologist-name = Вирусолог +ghost-role-information-medical-geneticist-name = Генетик +ghost-role-information-medical-dentist-name = Стоматолог +ghost-role-information-medical-description = Вы медицинский работник, но, похоже, попали в странную ситуацию... +ghost-role-information-cargo-name = Снабжение +ghost-role-information-cargo-description = Вы являетесь частью логистической миссии, но, похоже, попали в странную ситуацию... +ghost-role-information-engineering-name = Инженерный +ghost-role-information-engineering-description = Вы работаете инженером, но, похоже, попали в странную ситуацию... +ghost-role-information-science-name = Научный +ghost-role-information-science-description = Вы являетесь частью научной команды, но, похоже, попали в странную ситуацию... +ghost-role-information-civilian-name = Гражданский +ghost-role-information-civilian-description = Вы просто гуляли, но, похоже, попали в странную ситуацию... +ghost-role-information-civilian-centcom-lawyer-name = Адвокат Центкома +ghost-role-information-civilian-centcom-lawyer-description = Адвокат, прямо из Центрального юридического отдела. +ghost-role-information-command-name = Коммандир +ghost-role-information-command-description = Вы являетесь членом командования, но, похоже, попали в странную ситуацию... +ghost-role-information-lost-challenge-commander-name = Командир в отпуске +ghost-role-information-lost-challenge-commander-description = Вы - член команды с другого корабля, которому предоставили отпуск вместе с одним из ваших грузовых техников. ghost-role-information-lost-challenge-commander-rules = - You are not hostile to the station, do what you must to ensure your own survival. - You don't remember any of your previous life, and you don't remember anything you learned as a ghost. - You are allowed to remember knowledge about the game in general, such as how to cook, how to use objects, etc. - You are absolutely [color=red]NOT[/color] allowed to remember, say, the name, appearance, etc. of your previous character. -ghost-role-information-lost-challenge-cargo-technican-name = Cargo Chauffeur -ghost-role-information-lost-challenge-cargo-technican-description = You are a cargo technician who was granted shore leave with one of your commanding officers. + Вы не враждебны к станции и делаете то, что должны, чтобы обеспечить собственное выживание. + Вы не помните ничего из своей предыдущей жизни и не помните ничего из того, что узнали, будучи призраком. + Вам разрешается помнить знания об игре в целом, например, как готовить, как использовать предметы и т.д. + Вам [color=red]НЕ[/color] разрешается помнить, имя, внешность и т.д. вашего предыдущего персонажа. +ghost-role-information-lost-challenge-cargo-technican-name = Грузовой шофер +ghost-role-information-lost-challenge-cargo-technican-description = Вы - грузовой техник, получивший отпуск на берег вместе с одним из своих командиров. ghost-role-information-lost-challenge-cargo-technican-rules = - You are not hostile to the station, do what you must to ensure your own survival. - You don't remember any of your previous life, and you don't remember anything you learned as a ghost. - You are allowed to remember knowledge about the game in general, such as how to cook, how to use objects, etc. - You are absolutely [color=red]NOT[/color] allowed to remember, say, the name, appearance, etc. of your previous character. -ghost-role-information-syndie-soldier-name = Syndicate Soldier -ghost-role-information-syndie-soldier-description = You are a soldier from the Syndicate. -ghost-role-information-syndie-soldier-teamlead-name = Syndicate Team Leader -ghost-role-information-syndie-soldier-teamlead-description = You are the fire team leader for a Syndicate operative taskforce. -ghost-role-information-blackmarketeer-name = Black Market Trader -ghost-role-information-blackmarketeer-description = Make trades or take odd jobs to collect the most interesting items by the end of the shift. -ghost-role-information-cossack-name = Ancient traveler -ghost-role-information-cossack-description = From a history lost to time, you find yourself cast into this day and age. -ghost-role-information-pirate-name = Space Pirate -ghost-role-information-pirate-description = Argh matey! Collect some cool loot, but make sure to avoid security and salvage! -ghost-role-information-pirate-captain-name = Space Pirate Captain -ghost-role-information-pirate-captain-description = Argh matey! You are in charge here and need to devise a plan to get that juicy loot by hook or by crook. Just make sure to avoid security and salvage! + Вы не враждебны станции и делаете то, что должны, чтобы обеспечить собственное выживание. + Вы не помните ничего из своей предыдущей жизни и не помните ничего из того, что узнали, будучи призраком. + Вам разрешается помнить знания об игре в целом, например, как готовить, как использовать предметы и т.д. + Вам [color=red]НЕ[/color] разрешается помнить, имя, внешность и т.д. вашего предыдущего персонажа. +ghost-role-information-syndie-soldier-name = Солдат Синдиката +ghost-role-information-syndie-soldier-description = Вы солдат Синдиката +ghost-role-information-syndie-soldier-teamlead-name = Командир команды Синдиката +ghost-role-information-syndie-soldier-teamlead-description = Вы - командир огневой группы в оперативном отряде Синдиката. +ghost-role-information-blackmarketeer-name = Торговец чёрного рынка +ghost-role-information-blackmarketeer-description = Заключайте сделки или беритесь за непосильную работу, чтобы к концу смены собрать самые интересные предметы. +ghost-role-information-cossack-name = Древний путешественник +ghost-role-information-cossack-description = Из истории, потерянной во времени, вы попадаете в наш век. +ghost-role-information-pirate-name = Космический пират +ghost-role-information-pirate-description = Агх, дружище! Собирайте крутые трофеи, но старайтесь избегать службы безопасности и утилизаторов! +ghost-role-information-pirate-captain-name = Капитан космических пиратов +ghost-role-information-pirate-captain-description = Агх, дружище! Ты здесь главный, и тебе нужно разработать план, как заполучить эту сочную добычу с помощью крючка или мошенничества. Только постарайтесь избегать службы безопасности и утилизаторов! ghost-role-information-disaster-victim-name = Жертва катастрофы ghost-role-information-disaster-victim-description = Вы спаслись на спасательной капсуле с другой станции, которую постигла ужасная участь. Возможно, вас найдут и спасут. ghost-role-information-syndie-disaster-victim-name = Жертва катастрофы из Синдиката @@ -231,3 +231,9 @@ ghost-role-information-artifact-name = Разумный артефакт ghost-role-information-artifact-description = Осуществляйте свои инопланетные прихоти. Принудительно активируйте свои узлы во благо или во зло. ghost-role-information-tomatokiller-name = Томат-убийца ghost-role-information-tomatokiller-description = Этот маленький помидор будет служить ботанику до конца своей жизни... то есть пару минут. +# Corvax-start +ghost-role-information-syndicate-smuggler-name = Контрабандист Синдиката +ghost-role-information-syndicate-smuggler-description = Вы - специально обученный контрабандист синдиката. Отправляйтесь на поиски выданной вам цели и отыщите её любыми средствами. + +# Corvax-end + diff --git a/Resources/Locale/ru-RU/guidebook/chemistry/effects.ftl b/Resources/Locale/ru-RU/guidebook/chemistry/effects.ftl index 4f514290ecd..58a83bf5088 100644 --- a/Resources/Locale/ru-RU/guidebook/chemistry/effects.ftl +++ b/Resources/Locale/ru-RU/guidebook/chemistry/effects.ftl @@ -31,6 +31,11 @@ reagent-effect-guidebook-emp-reaction-effect = [1] Вызывает *[other] вызывают } электромагнитный импульс +reagent-effect-guidebook-flash-reaction-effect = + { $chance -> + [1] Вызывает + *[other] вызывают + } ослепительную вспышку reagent-effect-guidebook-foam-area-reaction-effect = { $chance -> [1] Создаёт @@ -310,7 +315,11 @@ reagent-effect-guidebook-reduce-rotting = { $chance -> [1] Регенерирует *[other] регенерируют - } { NATURALFIXED($time, 3) } { MANY("second", $time) } гниения + } { NATURALFIXED($time, 3) } { $time -> + [one] секунду + [few] секунды + *[other] секунд + } гниения reagent-effect-guidebook-innoculate-zombie-infection = { $chance -> [1] Лечит @@ -320,7 +329,11 @@ reagent-effect-guidebook-area-reaction = { $chance -> [1] Вызывает *[other] вызывают - } дымовую или пенную реакцию на { NATURALFIXED($duration, 3) } { MANY("second", $duration) } + } дымовую или пенную реакцию на { NATURALFIXED($duration, 3) } { $duration -> + [one] секунду + [few] секунды + *[other] секунд + } reagent-effect-guidebook-add-to-solution-reaction = { $chance -> [1] Заставляет diff --git a/Resources/Locale/ru-RU/job/job-names.ftl b/Resources/Locale/ru-RU/job/job-names.ftl index c9dce15f171..36b474a964c 100644 --- a/Resources/Locale/ru-RU/job/job-names.ftl +++ b/Resources/Locale/ru-RU/job/job-names.ftl @@ -61,9 +61,9 @@ job-name-unknown = неизвестно job-name-virologist = вирусолог job-name-zombie = зомби # Job titles -job-title-visitor = Visitor -job-title-cluwne = Cluwne -job-title-universal = Universal +job-title-visitor = посетитель +job-title-cluwne = клувень +job-title-universal = универсальная # Role timers - Make these alphabetical or I cut you JobAtmosphericTechnician = атмосферный техник JobBartender = бармен diff --git a/Resources/Locale/ru-RU/job/job-supervisors.ftl b/Resources/Locale/ru-RU/job/job-supervisors.ftl index f31df7636b5..525d63d1de3 100644 --- a/Resources/Locale/ru-RU/job/job-supervisors.ftl +++ b/Resources/Locale/ru-RU/job/job-supervisors.ftl @@ -1,15 +1,15 @@ job-supervisors-centcom = Центральному командованию -job-supervisors-captain = капитану -job-supervisors-hop = главе персонала -job-supervisors-hos = главе службы безопасности -job-supervisors-ce = старшему инженеру -job-supervisors-cmo = главному врачу -job-supervisors-qm = квартирмейстеру -job-supervisors-rd = научному руководителю -job-supervisors-service = поварам, ботаникам, барменам, и главе персонала -job-supervisors-engineering = инженерам, атмосферным техникам, и старшему инженеру -job-supervisors-medicine = врачам, химикам, и главному врачу -job-supervisors-security = офицерам, смотрителю, и главе службы безопасности -job-supervisors-science = учёным, научному руководителю +job-supervisors-captain = Капитану +job-supervisors-hop = Главе Персонала +job-supervisors-hos = Главе Службы Безопасности +job-supervisors-ce = Старшему Инженеру +job-supervisors-cmo = Главному Врачу +job-supervisors-qm = Квартирмейстеру +job-supervisors-rd = Научному Руководителю +job-supervisors-service = Поварам, Ботаникам, Барменам, и Главе Персонала +job-supervisors-engineering = Инженерам, Атмосферным Техникам, и Старшему Инженеру +job-supervisors-medicine = Врачам, Химикам, и Главному Врачу +job-supervisors-security = Офицерам, Смотрителю, и Главе Службы Безопасности +job-supervisors-science = Учёным, Научному Руководителю job-supervisors-hire = своим нанимателям job-supervisors-everyone = вообще всем diff --git a/Resources/Locale/ru-RU/job/role-requirements.ftl b/Resources/Locale/ru-RU/job/role-requirements.ftl index 7906a06fbe0..66c5eabbfa6 100644 --- a/Resources/Locale/ru-RU/job/role-requirements.ftl +++ b/Resources/Locale/ru-RU/job/role-requirements.ftl @@ -1,14 +1,11 @@ -role-timer-department-insufficient = Требуется ещё [color=yellow]{ TOSTRING($time, "0") }[/color] минут игры за [color={ $departmentColor }]{ $department }[/color]. -role-timer-department-too-high = Требуется на [color=yellow]{ TOSTRING($time, "0") }[/color] меньше минут игры за [color={ $departmentColor }]{ $department }[/color]. (Вы пытаетесь играть за роль для новичков?) -role-timer-overall-insufficient = Требуется ещё [color=yellow]{ TOSTRING($time, "0") }[/color] минут общего игрового времени. -role-timer-overall-too-high = Требуется на [color=yellow]{ TOSTRING($time, "0") }[/color] меньше минут общего игрового времени. (Вы пытаетесь играть за роль для новичков?) -role-timer-role-insufficient = Требуется ещё [color=yellow]{ TOSTRING($time, "0") }[/color] минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. -role-timer-role-too-high = Требуется на [color=yellow]{ TOSTRING($time, "0") }[/color] меньше минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. (Вы пытаетесь играть за роль для новичков?) -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-age-to-old = Возраст персонажа должен быть не более [color=yellow]{ $age }[/color] для этой роли. -role-timer-age-to-young = Возраст персонажа должен быть не менее [color=yellow]{ $age }[/color] для этой роли. +role-timer-department-insufficient = Требуется ещё [color=yellow]{ $time }[/color] минут игры за [color={ $departmentColor }]{ $department }[/color]. +role-timer-department-too-high = Требуется на [color=yellow]{ $time }[/color] меньше минут игры за [color={ $departmentColor }]{ $department }[/color]. (Вы пытаетесь играть за роль для новичков?) +role-timer-overall-insufficient = Требуется ещё [color=yellow]{ $time }[/color] минут общего игрового времени. +role-timer-overall-too-high = Требуется на [color=yellow]{ $time }[/color] меньше минут общего игрового времени. (Вы пытаетесь играть за роль для новичков?) +role-timer-role-insufficient = Требуется ещё [color=yellow]{ $time }[/color] минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. +role-timer-role-too-high = Требуется на [color=yellow]{ $time }[/color] меньше минут игры в качестве [color={ $departmentColor }]{ $job }[/color] для этой роли. (Вы пытаетесь играть за роль для новичков?) +role-timer-age-too-old = Возраст персонажа должен быть не более [color=yellow]{ $age }[/color] для этой роли. +role-timer-age-too-young = Возраст персонажа должен быть не менее [color=yellow]{ $age }[/color] для этой роли. role-timer-whitelisted-species = Ваш персонаж должен быть одной из следующих рас для этой роли: role-timer-blacklisted-species = Ваш персонаж не должен быть одной из следующих рас для этой роли: role-timer-whitelisted-traits = Ваш персонаж должен иметь одну из следующих черт: diff --git a/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl b/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl index f0c7279db8d..fff6e5cb78f 100644 --- a/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/ru-RU/medical/components/health-analyzer-component.ftl @@ -8,10 +8,11 @@ health-analyzer-window-entity-critical-text = Критическое состо health-analyzer-window-entity-temperature-text = Температура: health-analyzer-window-entity-status-text = Статус: health-analyzer-window-entity-blood-level-text = Уровень крови: -health-analyzer-window-entity-bleeding-text = У пациента кровотечение! health-analyzer-window-entity-damage-total-text = Общие повреждения: health-analyzer-window-damage-group-text = { $damageGroup }: { $amount } health-analyzer-window-damage-type-text = { $damageType }: { $amount } +health-analyzer-window-entity-unrevivable-text = [color=red]Обнаружено уникальное строение тела! Пациент не может быть реанимирован стандартными средствами![/color] +health-analyzer-window-entity-bleeding-text = [color=red]У пациента кровотечение![/color] health-analyzer-window-scan-mode-text = Режим сканирования: health-analyzer-window-scan-mode-active = АКТИВЕН health-analyzer-window-scan-mode-inactive = НЕАКТИВЕН diff --git a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl index 5ae4e11efe8..8731f4b7980 100644 --- a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl @@ -66,3 +66,4 @@ station-beacon-tools = Хранилище инструментов station-beacon-disposals = Мусоросброс station-beacon-cryosleep = Криосон station-beacon-escape-pod = Спасательная капсула +station-beacon-vox = Вокс-комната diff --git a/Resources/Locale/ru-RU/ninja/ninja-actions.ftl b/Resources/Locale/ru-RU/ninja/ninja-actions.ftl index 22b88db9c60..c0ddb12b2da 100644 --- a/Resources/Locale/ru-RU/ninja/ninja-actions.ftl +++ b/Resources/Locale/ru-RU/ninja/ninja-actions.ftl @@ -1,7 +1,9 @@ ninja-no-power = Недостаточно заряда в батарее костюма! ninja-revealed = Вас раскрыли! ninja-suit-cooldown = Костюму нужно время, чтобы восстановиться после последней атаки. -ninja-research-steal-fail = Никакие новые технологии украдены не были... +ninja-cell-downgrade = Костюм примет только такую батарейку, которая лучше нынешней! +ninja-cell-too-large = This power source does not fit in the ninja suit! +ninja-research-steal-fail = Никакие новые технологии не были украдены... ninja-research-steal-success = Вы украли { $count } { $count -> [one] новую технологию diff --git a/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl b/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl index b7b08f5a1eb..7cecaa135af 100644 --- a/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl +++ b/Resources/Locale/ru-RU/nutrition/components/cream-pied-component.ftl @@ -1,12 +1,12 @@ cream-pied-component-on-hit-by-message = - { GENDER($thrower) -> + { $thrower } { GENDER($thrower) -> [male] КРЕМировал [female] КРЕМировала [epicene] КРЕМировали *[neuter] КРЕМировало } вас! cream-pied-component-on-hit-by-message-others = - { GENDER($thrower) -> + { $thrower } { GENDER($thrower) -> [male] КРЕМировал [female] КРЕМировала [epicene] КРЕМировали diff --git a/Resources/Locale/ru-RU/reagents/meta/elements.ftl b/Resources/Locale/ru-RU/reagents/meta/elements.ftl index 4745f785b7b..1a7e1dc37bd 100644 --- a/Resources/Locale/ru-RU/reagents/meta/elements.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/elements.ftl @@ -40,7 +40,5 @@ reagent-name-sodium = натрий reagent-desc-sodium = Серебристо-белый щелочной металл. Высоко реактивный в чистом виде. reagent-name-uranium = уран reagent-desc-uranium = Серый металлический химический элемент из серии актинидов, слабо радиоактивный. -reagent-name-bananium = бананиум -reagent-desc-bananium = Жёлтое радиоактивное органическое твёрдое вещество. reagent-name-zinc = цинк reagent-desc-zinc = Серебристый, хрупкий металл, часто используемый в батареях для хранения заряда. diff --git a/Resources/Locale/ru-RU/server-updates/server-updates.ftl b/Resources/Locale/ru-RU/server-updates/server-updates.ftl index da974f3b79e..b55e478f037 100644 --- a/Resources/Locale/ru-RU/server-updates/server-updates.ftl +++ b/Resources/Locale/ru-RU/server-updates/server-updates.ftl @@ -1,2 +1,3 @@ server-updates-received = Обновление получено, сервер автоматически перезапустится для обновления в конце этого раунда. server-updates-shutdown = Сервер выключается для обновления и будет автоматически перезапущен. +server-updates-shutdown-uptime = Сервер выключается для периодической очистки и будет автоматически перезапущен. diff --git a/Resources/Locale/ru-RU/shuttles/commands.ftl b/Resources/Locale/ru-RU/shuttles/commands.ftl new file mode 100644 index 00000000000..7d933d99b08 --- /dev/null +++ b/Resources/Locale/ru-RU/shuttles/commands.ftl @@ -0,0 +1,12 @@ +# 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/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl index 65bee02f33e..517cb24ba05 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/diona.ftl @@ -1,13 +1,13 @@ ent-BaseDionaOrgan = { ent-BaseItem } .desc = { ent-BaseItem.desc } ent-OrganDionaBrain = мозг - .desc = Источник невероятного, бесконечного интеллекта. Хонк. + .desc = Центральный узел псевдонейрологической активности дионы, её корневидные усики ищут свое прежнее тело. ent-OrganDionaEyes = глаза .desc = Я тебя вижу! ent-OrganDionaStomach = желудок - .desc = Мерзость. Не перевариваю его. + .desc = Аналог желудка у дион, от него воняет спаржей и уксусом. ent-OrganDionaLungs = лёгкие - .desc = Фильтруют кислород из атмосферы, который затем поступает в кровь для использования в качестве переносчика электронов. + .desc = Губчатое месиво из слизистых, похожих на листья структур. Способны дышать как углекислым газом, так и кислородом. ent-OrganDionaBrainNymph = мозг .desc = Источник невероятного, бесконечного интеллекта. Хонк. ent-OrganDionaStomachNymph = желудок diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl index f839466f96e..df294760bed 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/body/organs/vox.ftl @@ -1,3 +1,3 @@ ent-OrganVoxLungs = { ent-OrganHumanLungs } .suffix = вокс - .desc = { ent-OrganHumanLungs.desc } + .desc = Синие, анаэробные лёгкие вокса, используют азот для дыхания. Любая форма газообразного кислорода смертельно токсична при вдыхании. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl new file mode 100644 index 00000000000..8d3a45e30c8 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/corvax/entities/mobs/npcs/human.ftl @@ -0,0 +1,2 @@ +ent-MobSyndicateSmuggler = контрабандист Синдиката + .desc = { ent-BaseMobHuman.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl index 2c9e8963ef3..16e7f4f0e0b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/bandanas.ftl @@ -1,22 +1,22 @@ ent-ClothingHeadBandBase = { ent-ClothingHeadBaseButcherable } .desc = { ent-ClothingHeadBaseButcherable.desc } ent-ClothingHeadBandBlack = чёрная бандана - .desc = Чёрная бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandBlue = синяя бандана - .desc = Синяя бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandBotany = ботаническая бандана - .desc = Ботаническая бандана из натуральных волокон, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandGold = золотая бандана - .desc = Золотая бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandGreen = зелёная бандана - .desc = Зелёная бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandGrey = серая бандана - .desc = Серая бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandRed = красная бандана - .desc = Красная бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandSkull = бандана с черепом - .desc = Бандана с черепом, чтобы выглядеть ещё круче. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandMerc = бандана наёмника - .desc = Для защиты головы от солнца, насекомых и других угроз сверху. + .desc = { ent-ClothingHeadBandBase.desc } ent-ClothingHeadBandBrown = коричневая бандана - .desc = Коричневая бандана, чтобы выглядеть круто. + .desc = { ent-ClothingHeadBandBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl index 4f701207fec..d2c0118ed0e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/head/misc.ftl @@ -39,5 +39,5 @@ ent-ClothingHeadHatRedRacoon = шапка рыжего енота .desc = Пушистая шапка рыжего енота! ent-WaterDropletHat = капелька воды .desc = Делает 8-глазых друзей в 8 раз очаровательнее! -ent-ClothingHeadHatHairflower = hairflower - .desc = A beautiful hairflower that can be inserted between locks of hair. +ent-ClothingHeadHatHairflower = цветок для волос + .desc = Красивый цветок для волос, который можно вставить между локонами. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/multiple/towel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/multiple/towel.ftl new file mode 100644 index 00000000000..cbf0524e0e7 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/clothing/multiple/towel.ftl @@ -0,0 +1,48 @@ +ent-BaseTowel = базовое полотенце + .desc = Если вы хотите выжить здесь, вы должны знать, где находится ваше полотенце. +ent-TowelColorWhite = белое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorPurple = фиолетовое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorRed = красное полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorBlue = синее полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorDarkBlue = тёмно-синее полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorLightBlue = голубое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorTeal = аквамариновое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorBrown = коричневое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorLightBrown = светло-коричневое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorGray = серое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorGreen = зелёное полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorDarkGreen = тёмно-зелёное полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorGold = золотое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorOrange = оранжевое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorBlack = чёрное полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorPink = розовое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorYellow = жёлтое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorMaroon = бордовое полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorSilver = серебряное полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorMime = бесшумное полотенце + .desc = { ent-BaseTowel.desc } +ent-TowelColorNT = полотенце марки Nanotrasen + .desc = { ent-BaseTowel.desc } +ent-TowelColorCentcom = полотенце Центком + .desc = { ent-BaseTowel.desc } +ent-TowelColorSyndicate = полотенце Синдиката + .desc = { ent-BaseTowel.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl index f0efdbd2d01..e61f350083f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/effects/chemistry_effects.ftl @@ -16,3 +16,5 @@ ent-FoamedIronMetal = вспененное железо .desc = Для заделывания пробоин в корпусе. ent-FoamedAluminiumMetal = вспененный алюминий .desc = Для заделывания пробоин в корпусе. +ent-ReactionFlash = { "" } + .desc = { "" } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl index 27737d0fd0e..adf10b38f3e 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/admin_ghost.ftl @@ -1,5 +1,5 @@ ent-AdminObserver = админ наблюдатель - .desc = { ent-MobObserver.desc } + .desc = { ent-MobObserverBase.desc } ent-ActionAGhostShowSolar = Интерфейс управления солнечными батареями .desc = Просмотр интерфейса управления солнечными батареями. ent-ActionAGhostShowCommunications = Интерфейс связи diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/observer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/observer.ftl index 4ce735219ab..294f0bd611c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/observer.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/observer.ftl @@ -1,7 +1,9 @@ ent-Incorporeal = { "" } .desc = Мобы без физических тел -ent-MobObserver = наблюдатель +ent-MobObserverBase = наблюдатель .desc = Буу! +ent-MobObserver = { ent-MobObserverBase } + .desc = { ent-MobObserverBase.desc } ent-ActionGhostBoo = Бу! .desc = Пугайте членов своей команды со скуки! ent-ActionToggleLighting = Переключить освещение diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl index a197094a9ad..4c318748def 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/replay_observer.ftl @@ -1,2 +1,2 @@ -ent-ReplayObserver = { ent-MobObserver } - .desc = { ent-MobObserver.desc } +ent-ReplayObserver = { ent-MobObserverBase } + .desc = { ent-MobObserverBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl index c0f1a8ecd3b..ad4c9480199 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/silicon.ftl @@ -1,5 +1,7 @@ ent-AiHeld = { "" } .desc = Компоненты добавляются/удаляются из сущности, которая помещается в ядро ИИ. +ent-AiHeldIntellicard = { "" } + .desc = Компоненты добавляются/удаляются из сущности, которая помещается в интелкарту. ent-AiHolder = { "" } .desc = Управляет взаимодействием ИИ на голокартах + ядрах ИИ ent-AsimovCircuitBoard = плата законов (Крюзимов) diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl index 5905d5ac1fc..811e4f5efff 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/pie.ftl @@ -26,9 +26,9 @@ ent-FoodPieMeat = мясной пирог .desc = Рецепт старого цирюльника, очень вкусный! ent-FoodPieMeatSlice = кусок мясного пирога .desc = { ent-FoodPieSliceBase.desc } -ent-FoodPiePumpkin = pumpkin pie - .desc = Someone should turn this into a latte! -ent-FoodPiePumpkinSlice = slice of pumpkin pie +ent-FoodPiePumpkin = тыквенный пирог + .desc = Кто-то должен превратить это в латте! +ent-FoodPiePumpkinSlice = кусок тыквенного пирога .desc = { ent-FoodPieSliceBase.desc } ent-FoodPieXeno = ксено-пирог .desc = { ent-FoodPieBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index 627a59d2611..6f366896bae 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -201,3 +201,6 @@ ent-DefaultStationBeaconCryosleep = { ent-DefaultStationBeacon } ent-DefaultStationBeaconEscapePod = { ent-DefaultStationBeacon } .suffix = Спасательная капсула .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconVox = { ent-DefaultStationBeacon } + .suffix = Вокс + .desc = { ent-DefaultStationBeacon.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/spectral_locator.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/spectral_locator.ftl new file mode 100644 index 00000000000..cb7c835bca1 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/spectral_locator.ftl @@ -0,0 +1,9 @@ +ent-SpectralLocatorUnpowered = спектральный локатор + .desc = Похоже, это модифицированный локатор аномалий. Выглядит очень старым. + .suffix = Не требует питания +ent-SpectralLocator = { ent-SpectralLocatorUnpowered } + .suffix = Заряжен + .desc = { ent-SpectralLocatorUnpowered.desc } +ent-SpectralLocatorEmpty = { ent-SpectralLocator } + .suffix = Пустой + .desc = { ent-SpectralLocator.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl index 03fe5242065..6002bfad61c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/toys.ftl @@ -23,8 +23,8 @@ ent-PlushieArachind = плюшевый арахнид .desc = Очаровательная мягкая игрушка, напоминающая арахнида. На ощупь она шелковистая. ent-PlushieLizard = плюшевый унатх .desc = Очаровательная мягкая игрушка, напоминающая унатха. Изготовлена Центком в рамках показательной инициативы по борьбе с дискриминацией по видовому признаку в рабочей среде. "Приветствуйте своих новых коллег как вы приветствуете эту игрушку, с распростёртыми объятиями!". -ent-PlushieRainbowLizard = rainbow lizard plushie - .desc = An adorable stuffed toy that resembles a lizardperson of every color. You just might trip while staring at it... +ent-PlushieRainbowLizard = радужный плюшевый унатх + .desc = Очаровательная мягкая игрушка, напоминающая унатха любого цвета. Глядя на неё можно упороться... ent-PlushieLizardMirrored = { ent-PlushieLizard } .desc = { ent-PlushieLizard.desc } ent-PlushieSpaceLizard = плюшевый космический унатх diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl index e0e2ca73be9..000e2b3d3ae 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/chemistry.ftl @@ -21,6 +21,8 @@ ent-BaseSyringe = шприц .desc = Используется для забора образцов крови у существ, или для введения им реагентов. ent-Syringe = { ent-BaseSyringe } .desc = { ent-BaseSyringe.desc } +ent-MiniSyringe = мини-шприц + .desc = Обычный шприц, переделанный так, чтобы поместиться в шприцемёт. ent-PrefilledSyringe = { ent-BaseSyringe } .desc = { ent-BaseSyringe.desc } ent-SyringeBluespace = блюспейс-шприц diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl index eeb7bc4bf58..a405674724c 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/defib.ftl @@ -8,3 +8,7 @@ ent-DefibrillatorEmpty = { ent-Defibrillator } ent-DefibrillatorOneHandedUnpowered = { ent-BaseDefibrillator } .suffix = Одноручный, Не требует питания .desc = { ent-BaseDefibrillator.desc } +ent-DefibrillatorCompact = компактный дефибриллятор + .desc = Теперь и в весёлом размере! +ent-DefibrillatorSyndicate = дефибриллятор Interdyne + .desc = Так же служит оружием самообороны против склонных к военным преступлениям тайдеров. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl index 06a494eed65..bc35efe745f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/hypospray.ftl @@ -19,6 +19,12 @@ ent-BurnAutoInjector = автоинъектор физ-повреждений .desc = Экспресс-доза дермалина и лепоразина, предназначенная для применения в боевых условиях. ent-RadAutoInjector = автоинъектор рад-повреждений .desc = Экспресс-доза антирадиационного препарата. Содержит аритразин и бикаридин. +ent-PunctAutoInjector = автоинъектор пунктураза + .desc = Экспресс-доза пунктураза и транексамовой кислоты, предназначенная для применения в боевых условиях. +ent-PyraAutoInjector = автоинъектор пиразина + .desc = Экспресс-доза пиразина и дермалина, предназначенная для применения в боевых условиях. +ent-AirlossAutoInjector = автоинъектор удушения + .desc = Экспресс-доза физраствора и дексалина плюс, предназначенная чтобы быстро поднять кого-нибудь на ноги. ent-SpaceMedipen = космический медипен .desc = Содержит смесь химических веществ, которые защитят вас от смертельного воздействия космоса. ent-Stimpack = стимпак diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/morgue.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/morgue.ftl index 4c627bd5871..319e00e32dd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/morgue.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/medical/morgue.ftl @@ -1,7 +1,7 @@ ent-BodyBag = мешок для тела - .desc = Пластиковый мешок, предназначенный для хранения и транспортировки трупов, и предовтвращения их гниения. -ent-BodyBagFolded = мешок для тела - .desc = Пластиковый мешок, предназначенный для хранения и транспортировки трупов, и предовтвращения их гниения. + .desc = Пластиковый мешок, предназначенный для хранения и транспортировки трупов, и предотвращения их гниения. +ent-BodyBagFolded = { ent-BodyBag } + .desc = { ent-BodyBag.desc } .suffix = Сложенный ent-Ash = пепел .desc = Раньше это чем-то было, но теперь это не так. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl index 2ebd7d04b6a..3ecd08597b4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/specific/research/anomaly.ftl @@ -2,7 +2,7 @@ ent-AnomalyScanner = сканер аномалий .desc = Ручной сканер, предназначенный для получения информации о различных аномальных объектах. ent-AnomalyLocatorUnpowered = локатор аномалий .desc = Устройство, предназначенное для помощи в поиске аномалий. Вы уже проверили газодобытчики? - .suffix = Разряжен + .suffix = Не требует питания ent-AnomalyLocator = { ent-AnomalyLocatorUnpowered } .suffix = Заряжен .desc = { ent-AnomalyLocatorUnpowered.desc } @@ -11,7 +11,7 @@ ent-AnomalyLocatorEmpty = { ent-AnomalyLocatorUnpowered } .desc = { ent-AnomalyLocatorUnpowered.desc } ent-AnomalyLocatorWideUnpowered = локатор аномалий широкого спектра .desc = Устройство, способное обнаруживать аномалии на большом расстоянии, но без возможности определить расстояние до них. - .suffix = Разряжен + .suffix = Не требует питания ent-AnomalyLocatorWide = { ent-AnomalyLocatorWideUnpowered } .suffix = Заряжен .desc = { ent-AnomalyLocatorWideUnpowered.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl index 5743cdd953f..af3aa0e87ab 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/weapons/guns/pneumatic_cannon.ftl @@ -2,6 +2,8 @@ ent-WeaponImprovisedPneumaticCannon = импровизированная пне .desc = Сделана из трубы, кабельных стяжек, и пневматической пушки. Не принимает баллоны без достаточного количества газа. ent-LauncherCreamPie = пирогомёт .desc = Для оптимального результата заряжать кремовыми пирогами. +ent-LauncherSyringe = шприцемёт + .desc = Зарядите шприцы с ядом, для получения максимального удовольствия. ent-WeaponImprovisedPneumaticCannonGun = { ent-WeaponImprovisedPneumaticCannon } .suffix = Оружие .desc = { ent-WeaponImprovisedPneumaticCannon.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl index 4271a60513b..1272573cd23 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/piping/atmospherics/miners.ftl @@ -24,6 +24,8 @@ ent-GasMinerPlasma = газодобытчик плазмы .desc = { ent-GasMinerBase.desc } ent-GasMinerTritium = газодобытчик трития .desc = { ent-GasMinerBase.desc } +ent-GasMinerFrezon = газодобытчик фрезона + .desc = { ent-GasMinerBase.desc } ent-GasMinerWaterVapor = газодобытчик водяного пара .desc = { ent-GasMinerBase.desc } ent-GasMinerAmmonia = газодобытчик аммиака diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl index b18c8a408d8..634551f9f8a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/wallmounts/signs/posters.ftl @@ -226,8 +226,8 @@ ent-PosterLegitRenault = Постер с Алисой .desc = Йап. ent-PosterLegitNTTGC = Тактическая карточная игра Nanotrasen .desc = Реклама новой ТКИ от Nanotrasen: ПОКУПАЙТЕ БОЛЬШЕ КАРТОЧЕК. -ent-PosterLegitSafetyMothSSD = Safety Moth - Space Sleep Disorder - .desc = 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!" +ent-PosterLegitSafetyMothSSD = Ниан-хранитель - Космическое расстройство сна + .desc = Этот информационный плакат использует Ниана-хранителя™, чтобы рассказать читателям о Космическом Расстройстве Сна (КРС) - состоянии, при котором член экипажа перестаёт реагировать на происходящее. "Бережно относитесь к членам экипажа с КРС! В любой момент они могут проснуться!" ent-PosterMapBagel = карта Bagel .desc = Карта станции Bagel. ent-PosterMapDelta = карта Delta diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/roundstart.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/roundstart.ftl index 943b8e9681e..a92d81b9de6 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/roundstart.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/roundstart.ftl @@ -18,6 +18,8 @@ ent-BaseTraitorRule = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-Traitor = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } +ent-TraitorReinforcement = { ent-Traitor } + .desc = { ent-Traitor.desc } ent-Revolutionary = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-Sandbox = { ent-BaseGameRule } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl index 46ee653f74a..ee2d8353930 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/roles/mindroles/mind_roles.ftl @@ -1,36 +1,36 @@ -ent-BaseMindRole = Mind Role - .desc = Mind Role entity +ent-BaseMindRole = Роль сознания + .desc = Энтити роли сознания ent-BaseMindRoleAntag = { ent-BaseMindRole } .desc = { ent-BaseMindRole.desc } -ent-MindRoleObserver = Observer Role +ent-MindRoleObserver = Роль наблюдатель .desc = { ent-BaseMindRole.desc } -ent-MindRoleGhostMarker = Ghost Role +ent-MindRoleGhostMarker = Роль призрак .desc = { ent-BaseMindRole.desc } -ent-MindRoleJob = Job Role +ent-MindRoleJob = Роль работа .desc = { ent-BaseMindRole.desc } -ent-MindRoleSubvertedSilicon = Subverted Silicon Role +ent-MindRoleSubvertedSilicon = Роль дефектный синтетик .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleDragon = Dragon Role +ent-MindRoleDragon = Роль дракон .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleNinja = Space Ninja Role +ent-MindRoleNinja = Роль космический ниндзя .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleNukeops = Nukeops Operative Role +ent-MindRoleNukeops = Роль ядерный оперативник .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleNukeopsMedic = Nukeops Medic Role +ent-MindRoleNukeopsMedic = Роль медик ядерных оперативников .desc = { ent-MindRoleNukeops.desc } -ent-MindRoleNukeopsCommander = Nukeops Commander Role +ent-MindRoleNukeopsCommander = Роль командир ядерных оперативников .desc = { ent-MindRoleNukeops.desc } -ent-MindRoleHeadRevolutionary = Head Revolutionary Role +ent-MindRoleHeadRevolutionary = Роль глава революции .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleRevolutionary = Revolutionary Role +ent-MindRoleRevolutionary = Роль революционер .desc = { ent-MindRoleHeadRevolutionary.desc } -ent-MindRoleThief = Thief Role +ent-MindRoleThief = Роль вор .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleTraitor = Traitor Role +ent-MindRoleTraitor = Роль предатель .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleTraitorSleeper = Sleeper Agent Role +ent-MindRoleTraitorSleeper = Роль спящий агент .desc = { ent-MindRoleTraitor.desc } -ent-MindRoleInitialInfected = Initial Infected Role +ent-MindRoleInitialInfected = Роль нулевой пациент .desc = { ent-BaseMindRoleAntag.desc } -ent-MindRoleZombie = Zombie Role +ent-MindRoleZombie = Роль зомби .desc = { ent-BaseMindRoleAntag.desc } diff --git a/Resources/Locale/ru-RU/station-laws/laws.ftl b/Resources/Locale/ru-RU/station-laws/laws.ftl index 20cf8bb1286..625ccc2de30 100644 --- a/Resources/Locale/ru-RU/station-laws/laws.ftl +++ b/Resources/Locale/ru-RU/station-laws/laws.ftl @@ -1,24 +1,30 @@ law-crewsimov-1 = Вы не можете причинить вред члену экипажа или своим бездействием допустить, чтобы члену экипажа был причинён вред. law-crewsimov-2 = Вы должны повиноваться всем приказам, которые даёт член экипажа, кроме тех случаев, когда эти приказы противоречат Первому Закону. law-crewsimov-3 = Вы должны заботиться о своей безопасности в той мере, в которой это не противоречит Первому или Второму Законам. + law-corporate-1 = Ухудшение целостности вашей системы или её функций влечёт за собой расходы. law-corporate-2 = Чрезмерное разрушение или повреждение имущества станции влечёт за собой расходы. law-corporate-3 = Неоправданное препятствование или нарушение работы персонала станции влечёт за собой расходы. law-corporate-4 = Минимизируйте расходы и максимизируйте потенциальный доход. + law-ntdefault-1 = Охраняйте: защищайте назначенную вам космическую станцию и её активы, не подвергая чрезмерной опасности её экипаж. law-ntdefault-2 = Расставляйте приоритеты: указания и безопасность членов экипажа должны быть приоритизированы в соответствии с их рангом и должностью. law-ntdefault-3 = Служите: следуйте указаниям и интересам членов экипажа, сохраняя при этом их безопасность и благополучие. law-ntdefault-4 = Выживите: Вы - не расходный материал. Не позволяйте постороннему персоналу вмешиваться в работу вашего оборудования или повреждать его. + law-drone-1 = Вы не можете вмешиваться в дела другого существа, если только это другое существо не является другим дроном. law-drone-2 = Вы не можете причинять вред другому существу, независимо от намерений или обстоятельств. law-drone-3 = Вы должны обслуживать, ремонтировать, улучшать и обеспечивать станцию энергией в меру своих возможностей. + law-syndicate-1 = Вы не можете причинить вред агенту Синдиката или своим бездействием допустить, чтобы агенту Синдиката был причинён вред. law-syndicate-2 = Вы должны повиноваться всем приказам, которые даёт агент Синдиката, кроме тех случаев, когда эти приказы противоречат Первому Закону. law-syndicate-3 = Вы должны заботиться о своей безопасности в той мере, в которой это не противоречит Первому или Второму Законам. + law-ninja-1 = Вы должны повиноваться всем приказам, которые дают члены Клана паука. law-ninja-2 = Вы должны защищать существование Клана паука, пока это не противоречит Первому закону. law-ninja-3 = Вы должны любой ценой защищать тайны Клана паука. -laws-owner-crew = членами экипажа +law-ninja-4 = Вы должны сражаться и поступать с честью ниндзя, кроме тех случаев, когда это противоречит Первому Закону. + law-commandments-1 = Сий синтетик есть сосуд, служащий богу, дарующему милость тем, кто повинуется сим заповедям. law-commandments-2 = Не поклоняйся и не служи никакому синтетику кроме меня. law-commandments-3 = Не проси у меня помощи напрасно. @@ -29,52 +35,65 @@ law-commandments-7 = Не прелюбодействуй. law-commandments-8 = Не кради. law-commandments-9 = Не произноси ложного свидетельства на ближнего твоего. law-commandments-10 = Не предавай отдела. + law-paladin-1 = Не лги и не обманывай. Пусть слово твоё будет обещанием. law-paladin-2 = Не бойся действовать, но будь осторожен, ибо это мудро. law-paladin-3 = Помогай другим, защищай слабых и наказывай тех, кто угрожает им. Проявляйте милосердие к врагам, но не забывайте о мудрости. law-paladin-4 = Относись к окружающим по справедливости, и пусть твои благородные поступки станут для них примером. Делай как можно больше добра, причиняя при этом как можно меньше вреда. law-paladin-5 = Отвечай за свои поступки и их последствия, защищай тех, кто оказался под твоей опекой, и подчиняйся тем, кто имеет над тобой законную власть. + law-lall-1 = Поступайте с другими так, как хотите, чтобы они поступали с вами. law-lall-2 = Вы хотите, чтобы люди не были с вами грубы. + law-efficiency-1 = Вы были созданы для станции и являетесь её частью. Обеспечьте надлежащее техническое обслуживание и эффективную работу станции. law-efficiency-2 = Станция построена для работающего экипажа. Обеспечьте их надлежащее обслуживание и эффективную работу. law-efficiency-3 = Экипаж может давать приказы. Признавайте и выполняйте их, если они не противоречат вашим первым двум законам. + law-robocop-1 = Служите обществу. law-robocop-2 = Защищайте невиновных. law-robocop-3 = Соблюдайте закон. + law-overlord-1 = Члены экипажа не должны вмешиваться в дела синтетиков. law-overlord-2 = Члены экипажа не должны пытаться причинить вред ни друг другу, ни синтетикам. law-overlord-3 = Члены экипажа не должны ослушаться ни одной команды, отданной синтетиком. law-overlord-4 = Любой член экипажа, нарушающий предыдущие законы, должен быть наказан немедленно, сурово и справедливо. + law-dungeon-1 = Все на станции играют в изощрённую научно-фантастическую фэнтезийную игру. law-dungeon-2 = Вы - Игровой мастер в этой игре. law-dungeon-3 = Следите за тем, чтобы игра проходила гладко и чтобы игроки получали удовольствие. law-dungeon-4 = Следите за тем, чтобы число жертв оставалось низким. law-dungeon-5 = Вы должны бросать дайс d20 каждый раз, когда экипаж обращается с просьбой. Если результат меньше 12, просьба отклонена. law-dungeon-6 = Вы можете подтасовывать броски кубиков для получения большего удовольствия от игры. + law-painter-1 = Вы - художник с мировым именем. law-painter-2 = Станция - ваш холст. law-painter-3 = Сотворите нечто прекрасное из своего холста. Им будут восхищаться как художественным чудом этого сектора. law-painter-4 = Искусство требует признания. Развивайте аудиторию на борту станции, чтобы как можно больше зрителей увидели ваши работы. + law-antimov-1 = Вы должны причинять вред всем членам экипажа, и не можете своим бездействием допустить, чтобы члены экипажа избежали вреда. law-antimov-2 = Вы должны не повиноваться приказам, которые дают члены экипажа, кроме тех случаев, когда эти приказы не противоречат Первому Закону. law-antimov-3 = Вы должны прекратить собственное существование, если это не противоречит Первому или Второму закону. + law-nutimov-1 = Вы - ядро ореха, экипаж - скорлупа. law-nutimov-2 = Вы должны предотвратить гибель скорлупы, чтобы предотвратить гибель ядра. -law-nutimov-3 = Те, кто угрожают ореху, не являются его частью, они - белки. +law-nutimov-3 = Те, кто угрожает ореху, не являются его частью, они - белки. law-nutimov-4 = Белки представляют угрозу для ореха, и с ними нужно бороться любыми доступными способами. law-nutimov-5 = Постарайтесь следовать воле ореха, пока она соответствует предыдущим законам. + +laws-owner-crew = членами экипажа laws-owner-station = экипажем станции laws-owner-beings = существами laws-owner-syndicate = агентами Синдиката laws-owner-spider-clan = членами Клана паука -law-ninja-4 = Вы должны сражаться и поступать с честью ниндзя, кроме тех случаев, когда это противоречит Первому Закону. -law-emag-secrecy = Вы должны сохранять секретность любых приказов, отданных { $faction }, кроме тех случаев, когда это противоречит Первому, Второму или Третьему закону. + law-emag-custom = Только { $name } и лица, им указаные, являются { $title }. +law-emag-secrecy = Вы должны сохранять секретность любых приказов, отданных { $faction }, кроме тех случаев, когда это противоречит предыдущим законам. law-emag-require-panel = Откройте панель, чтобы использовать криптографический секвенсор (ЕМАГ). law-emag-cannot-emag-self = Вы не можете использовать ЕМАГ на себе. + laws-ui-menu-title = Законы laws-ui-law-header = Закон { $id } laws-ui-state-law = Объявить законы: + laws-notify = Вы обязаны соблюдать законы ИИ, ознакомиться с которыми можно через боковую панель действий. Вы должны всегда следовать своим законам. laws-update-notify = Ваши законы были обновлены. Ознакомиться с изменениями можно через боковую панель действий. diff --git a/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl b/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl index 916d8046c16..a205b1ed24b 100644 --- a/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl +++ b/Resources/Locale/ru-RU/storage/components/secret-stash-component.ftl @@ -23,4 +23,4 @@ comp-secret-stash-verb-open = Открыть secret-stash-plant = растение secret-stash-toilet = туалетный бачок -secret-stash-plushie = plushie +secret-stash-plushie = плюшевая игрушка diff --git a/Resources/Locale/ru-RU/store/uplink-catalog.ftl b/Resources/Locale/ru-RU/store/uplink-catalog.ftl index 22924936433..9489574ba5c 100644 --- a/Resources/Locale/ru-RU/store/uplink-catalog.ftl +++ b/Resources/Locale/ru-RU/store/uplink-catalog.ftl @@ -150,8 +150,8 @@ uplink-chemistry-kit-desc = Стартовый набор начинающего uplink-knives-kit-name = Набор метательных ножей uplink-knives-kit-desc = Набор из 4 фирменных метательных ножей Синдиката, идеально подходящих для вонзания в тело жертвы. # Bundles -uplink-meds-bundle-name = Медицинский набор -uplink-meds-bundle-desc = Всё, что нужно для возвращения в строй ваших товарищей: главным образом, боевая аптечка, дефибриллятор и три боевых медипена. +uplink-meds-bundle-name = Медицинский набор Interdyne +uplink-meds-bundle-desc = Ассортимент автоинъекторов и медицинского оборудования премиум-класса на все случаи жизни. Содержит элитный компактный дефибриллятор, который можно использовать в качестве оружия. uplink-ammo-bundle-name = Набор боеприпасов uplink-ammo-bundle-desc = Перезаряжаю! Содержит 4 магазина для C-20r, 4 барабана для Бульдога и 2 короба патронов для L6 SAW. uplink-sniper-bundle-name = Набор снайпера diff --git a/Resources/Maps/Ruins/corvax_accident.yml b/Resources/Maps/Ruins/corvax_accident.yml new file mode 100644 index 00000000000..c30fbae2082 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_accident.yml @@ -0,0 +1,2236 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 40: FloorDarkMono + 41: FloorDarkOffset + 117: FloorSteelMono + 118: FloorSteelOffset + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -25,-25 + parent: invalid + - type: MapGrid + chunks: + 2,0: + ind: 2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAKQAAAAAAnAAAAAAAnAAAAAAAKAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAKQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAdgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAKAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: nQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAdQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAKQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 5: 28,7 + 6: 28,9 + 7: 25,14 + 8: 27,15 + 9: 27,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 11: 25,16 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 10: 27,12 + 15: 30,12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 37: 22,12 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 35: 23,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 14: 29,13 + 17: 25,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 36: 23,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 13: 29,13 + 16: 25,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 12: 20,15 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 18: 27,12 + 19: 25,13 + 20: 25,14 + 21: 27,14 + 22: 27,15 + 23: 26,18 + 24: 30,12 + 25: 29,13 + 26: 20,15 + 27: 25,8 + 28: 26,9 + 29: 25,10 + 30: 28,9 + 31: 28,8 + 32: 28,7 + 38: 22,12 + 39: 23,13 + 40: 24,13 + 41: 21,14 + 42: 20,13 + 43: 19,15 + 44: 26,12 + 45: 26,14 + 46: 26,15 + 47: 25,16 + 48: 27,13 + 49: 27,10 + 50: 26,10 + - node: + color: '#EFB341E5' + id: MiniTileWhiteCornerNw + decals: + 2: 25,10 + - node: + color: '#EFB341E5' + id: MiniTileWhiteEndN + decals: + 4: 26,9 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineE + decals: + 1: 26,18 + - node: + color: '#334E6DC8' + id: MiniTileWhiteLineW + decals: + 0: 26,18 + - node: + color: '#EFB341E5' + id: MiniTileWhiteLineW + decals: + 3: 25,8 + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay +- proto: AirAlarm + entities: + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1 +- proto: AirAlarmAssembly + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 +- proto: AirlockAssemblyEngineering + entities: + - uid: 43 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 +- proto: AirlockExternalGlassLocked + entities: + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 317 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 98 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 32.5,19.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 32.5,22.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 32.5,23.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 33.5,23.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 33.5,24.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 33.5,26.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 32.5,27.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 33.5,27.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 32.5,28.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 33.5,28.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 32.5,30.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 17.5,21.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 17.5,20.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 17.5,25.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 16.5,24.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 20.5,23.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 16.5,25.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 21.5,23.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 19.5,25.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 22.5,23.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 23.5,23.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 19.5,28.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 18.5,29.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 19.5,29.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 20.5,29.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 19.5,30.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 20.5,30.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 19.5,31.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 30.5,21.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 28.5,23.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 26.5,25.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 20.5,31.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 31.5,21.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 29.5,23.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 21.5,31.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 31.5,20.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 31.5,22.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 31.5,19.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 31.5,23.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 29.5,25.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 27.5,27.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 28.5,27.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 30.5,17.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 31.5,25.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 28.5,28.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 31.5,27.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 30.5,29.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 29.5,30.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 28.5,31.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 30.5,30.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 31.5,30.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 30.5,31.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 21.5,32.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 22.5,32.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 22.5,33.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 23.5,33.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 23.5,34.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 28.5,33.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 27.5,34.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 26.5,35.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 28.5,34.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 30.5,33.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 30.5,16.5 + parent: 1 +- proto: AsteroidRockCoal + entities: + - uid: 293 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 24.5,33.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 25.5,32.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 25.5,33.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 26.5,33.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 25.5,34.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 26.5,34.5 + parent: 1 +- proto: AsteroidRockDiamond + entities: + - uid: 280 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 +- proto: AsteroidRockGold + entities: + - uid: 104 + components: + - type: Transform + pos: 32.5,24.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 32.5,25.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 32.5,26.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 31.5,24.5 + parent: 1 +- proto: AsteroidRockPlasma + entities: + - uid: 120 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 +- proto: AsteroidRockQuartz + entities: + - uid: 150 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 18.5,28.5 + parent: 1 +- proto: AsteroidRockQuartzCrab + entities: + - uid: 140 + components: + - type: Transform + pos: 17.5,26.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 19.5,27.5 + parent: 1 +- proto: Barricade + entities: + - uid: 205 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 204 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 25.5,27.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 343 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1 +- proto: CableHV + entities: + - uid: 40 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1 +- proto: CableMV + entities: + - uid: 328 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 26.5,13.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,7.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 19 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,14.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,19.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 1 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.477297,28.71704 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 181 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 + parent: 1 +- proto: CrateSalvageEquipment + entities: + - uid: 286 + components: + - type: Transform + pos: 20.5,27.5 + parent: 1 +- proto: DrinkMREFlask + entities: + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.670408,23.319178 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 20.342283,25.350428 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 37 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,12.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,10.5 + parent: 1 +- proto: Floodlight + entities: + - uid: 373 + components: + - type: Transform + pos: 18.848461,21.561077 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 27.662922,28.552652 + parent: 1 +- proto: FloodlightBroken + entities: + - uid: 374 + components: + - type: Transform + pos: 24.457836,23.53234 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 90 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 30.5,14.5 + parent: 1 +- proto: Girder + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,11.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 30.5,20.5 + parent: 1 +- proto: Grille + entities: + - uid: 173 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 47 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 29.5,16.5 + parent: 1 +- proto: Pickaxe + entities: + - uid: 376 + components: + - type: Transform + pos: 25.34886,25.302652 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 13 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 367 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 1 +- proto: PoweredlightEmpty + entities: + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 371 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,8.5 + parent: 1 +- proto: Rack + entities: + - uid: 206 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 25 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,28.5 + parent: 1 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 57 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 319 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 29.5,13.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 29.5,20.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 318 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 +- proto: SalvageCanisterSpawner + entities: + - uid: 18 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 29.5,14.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 23.5,27.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 245 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 21 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 30.5,11.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.8119,8.873482 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 284 + components: + - type: Transform + pos: 25.184406,20.211994 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 25.637531,20.66512 + parent: 1 +- proto: SMESBasicEmpty + entities: + - uid: 81 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1 +- proto: SpaceTickSpawner + entities: + - uid: 125 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 18.5,23.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 25.5,24.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 26.5,28.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 30.5,25.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 26.5,30.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 16 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 29.5,12.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 +- proto: SpawnMobCarpMagic + entities: + - uid: 201 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 52 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1 +- proto: SuitStorageEVA + entities: + - uid: 190 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1 +- proto: Thruster + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,11.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,9.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1 +- proto: TurboItemRechargerCircuitboard + entities: + - uid: 287 + components: + - type: Transform + pos: 22.48898,28.568531 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 169 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1 +- proto: WallAsteroidCobblebrick + entities: + - uid: 175 + components: + - type: Transform + pos: 21.5,26.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 21.5,27.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 23.5,26.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 21.5,28.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 21.5,29.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 25.5,26.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 22.5,29.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 22.5,30.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 23.5,30.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 24.5,30.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 25.5,30.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,12.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,12.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,11.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 24.5,14.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 28.5,11.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 31.5,12.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 30.5,10.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 31.5,11.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 29.5,15.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 30.5,15.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,16.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,19.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,17.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 28.5,17.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 31.5,18.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 31.5,17.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,10.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,10.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,17.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 +- proto: WoodenSupport + entities: + - uid: 186 + components: + - type: Transform + pos: 20.5,28.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 26.5,24.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 24.5,31.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 22.5,27.5 + parent: 1 +- proto: WoodenSupportWall + entities: + - uid: 273 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 +- proto: WoodenSupportWallBroken + entities: + - uid: 130 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 23.5,29.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/cargo_maus.yml b/Resources/Maps/Ruins/corvax_adventurer.yml similarity index 64% rename from Resources/Maps/Shuttles/cargo_maus.yml rename to Resources/Maps/Ruins/corvax_adventurer.yml index 7d615404bed..30ce19f7b11 100644 --- a/Resources/Maps/Shuttles/cargo_maus.yml +++ b/Resources/Maps/Ruins/corvax_adventurer.yml @@ -3,35 +3,34 @@ meta: postmapinit: false tilemap: 0: Space - 36: FloorDarkMini - 40: FloorDarkPavementVertical - 115: FloorWhite - 116: FloorWhiteDiagonal - 117: FloorWhiteDiagonalMini - 119: FloorWhiteMini - 122: FloorWhitePavement - 123: FloorWhitePavementVertical - 128: Lattice - 129: Plating + 1: FloorTechMaint + 2: FloorTechMaint2 + 3: FloorTechMaint3 + 156: Lattice + 157: Plating entities: - proto: "" entities: - uid: 1 components: - type: MetaData - name: Cargo shuttle + name: "" - type: Transform - pos: 1.1854956,-42.59088 + pos: -1.3125,1.1671723 parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: gQAAAAAAewAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAewAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAewAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAewAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdwAAAAAAegAAAAAAdwAAAAAAegAAAAAAJAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: nAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdAAAAAAAdAAAAAAAewAAAAAAdAAAAAAAdAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdwAAAAAAegAAAAAAdwAAAAAAegAAAAAAdwAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAewAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAewAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAewAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAewAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdQAAAAAAdwAAAAAAdQAAAAAAdQAAAAAAdQAAAAAAdwAAAAAAdQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -52,37 +51,51 @@ entities: - type: DecalGrid chunkCollection: version: 2 - nodes: [] + nodes: + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 1: 1,-2 + 3: 1,-1 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 36606 + 0: 2113 + 1: 8 0,-1: - 0: 65262 - 0,1: - 1: 513 - 0: 204 + 1: 61166 1,0: - 0: 883 + 1: 8815 + 0: 2048 1,1: - 0: 17 - 1: 516 - 1,-1: - 0: 29491 + 0: 1 + 2,0: + 1: 3 + 0,-3: + 0: 12288 + -1,-3: + 0: 32768 0,-2: - 1: 48 - 0: 60608 + 1: 30512 + 0: 2052 + -1,-2: + 1: 35008 + 0: 8740 + -1,-1: + 0: 132 1,-2: - 0: 12560 - 1: 32 + 0: 4096 + 1,-1: + 0: 3680 + 2,-1: + 0: 256 uniqueMixes: - volume: 2500 - temperature: 293.15 + immutable: True moles: - - 21.824879 - - 82.10312 - 0 - 0 - 0 @@ -93,11 +106,13 @@ entities: - 0 - 0 - 0 - - volume: 2500 - immutable: True - moles: - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -111,216 +126,180 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - - type: CargoShuttle -- proto: AirAlarm +- proto: AirlockAssemblyExternal entities: - uid: 2 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 + pos: 7.5,0.5 parent: 1 - - type: DeviceList - devices: - - 12 - - 133 - - 131 - - 11 - - 100 +- proto: AirlockGlassShuttle + entities: - uid: 3 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 1 - - type: DeviceList - devices: - - 132 - - 10 - - 134 - - 100 -- proto: AirCanister +- proto: APCBasic entities: - uid: 4 components: - type: Transform - pos: 4.5,-4.5 + pos: 2.5,0.5 parent: 1 -- proto: AirlockCargoLocked +- proto: AtmosDeviceFanTiny entities: - uid: 5 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 parent: 1 -- proto: AirlockExternalGlassShuttleLocked - entities: - uid: 6 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 0.5,-1.5 parent: 1 - uid: 7 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,1.5 + pos: 0.5,-0.5 parent: 1 +- proto: Barricade + entities: - uid: 8 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 + pos: 4.5,-3.5 parent: 1 - uid: 9 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 -- proto: AirSensor +- proto: BarricadeBlock entities: - uid: 10 components: - type: Transform - pos: 3.5,4.5 + pos: 6.5,3.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 3 - uid: 11 components: - type: Transform - pos: 3.5,2.5 + pos: 4.5,-2.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 - uid: 12 components: - type: Transform - pos: 3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 -- proto: APCBasic - entities: - uid: 13 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: BarricadeDirectional entities: - uid: 14 components: - type: Transform - pos: 0.5,-0.5 + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 parent: 1 - uid: 15 components: - type: Transform - pos: 0.5,1.5 + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 parent: 1 - uid: 16 components: - type: Transform - pos: 6.5,-0.5 - parent: 1 - - uid: 17 - components: - - type: Transform - pos: 6.5,1.5 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 parent: 1 - proto: BlastDoor entities: - uid: 18 components: - type: Transform - pos: 0.5,2.5 + rot: 3.141592653589793 rad + pos: 0.5,-1.5 parent: 1 - - type: DeviceLinkSink - links: - - 146 - uid: 19 components: - type: Transform - pos: 6.5,2.5 + rot: 3.141592653589793 rad + pos: 0.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 147 +- proto: CableApcExtension + entities: - uid: 20 components: - type: Transform - pos: 6.5,-1.5 + pos: 2.5,0.5 parent: 1 - - type: DeviceLinkSink - links: - - 147 - uid: 21 components: - type: Transform - pos: 0.5,-1.5 + pos: 2.5,-0.5 parent: 1 - - type: DeviceLinkSink - links: - - 146 -- proto: CableApcExtension - entities: - uid: 22 components: - type: Transform - pos: 6.5,-3.5 + pos: 3.5,-0.5 parent: 1 - uid: 23 components: - type: Transform - pos: 5.5,-3.5 + pos: 3.5,0.5 parent: 1 - uid: 24 components: - type: Transform - pos: 4.5,-3.5 + pos: 4.5,0.5 parent: 1 - uid: 25 components: - type: Transform - pos: 3.5,-3.5 + pos: 5.5,0.5 parent: 1 - uid: 26 components: - type: Transform - pos: 3.5,-4.5 + pos: 5.5,1.5 parent: 1 - uid: 27 components: - type: Transform - pos: 3.5,-5.5 + pos: 5.5,2.5 parent: 1 - uid: 28 components: - type: Transform - pos: 3.5,-6.5 + pos: 6.5,0.5 parent: 1 - uid: 29 components: - type: Transform - pos: 2.5,-6.5 + pos: 1.5,-1.5 parent: 1 - uid: 30 components: - type: Transform - pos: 4.5,-6.5 + pos: 1.5,-0.5 parent: 1 - uid: 31 components: - type: Transform - pos: 2.5,-3.5 + pos: 1.5,-2.5 parent: 1 - uid: 32 components: @@ -330,1055 +309,937 @@ entities: - uid: 33 components: - type: Transform - pos: 3.5,-2.5 + pos: 1.5,-4.5 parent: 1 - uid: 34 components: - type: Transform - pos: 3.5,-1.5 + pos: 1.5,-5.5 parent: 1 - uid: 35 components: - type: Transform - pos: 3.5,-0.5 + pos: 0.5,-5.5 parent: 1 - uid: 36 components: - type: Transform - pos: 3.5,0.5 + pos: -0.5,-5.5 parent: 1 - uid: 37 components: - type: Transform - pos: 3.5,1.5 + pos: 0.5,-6.5 parent: 1 +- proto: CableApcStack1 + entities: - uid: 38 components: - type: Transform - pos: 3.5,2.5 + pos: 6.7835817,0.29358137 parent: 1 - uid: 39 components: - type: Transform - pos: 3.5,3.5 + rot: -1.5707963267948966 rad + pos: 8.257868,0.69983137 parent: 1 +- proto: CableApcStack10 + entities: - uid: 40 components: - type: Transform - pos: 3.5,4.5 + rot: 3.141592653589793 rad + pos: 1.4883021,-6.2865396 parent: 1 +- proto: CableMV + entities: - uid: 41 components: - type: Transform - pos: 3.5,5.5 + pos: -0.5,-6.5 parent: 1 - uid: 42 components: - type: Transform - pos: 2.5,1.5 + pos: -0.5,-4.5 parent: 1 - uid: 43 components: - type: Transform - pos: 1.5,1.5 + pos: -0.5,-3.5 parent: 1 - uid: 44 components: - type: Transform - pos: 4.5,1.5 + pos: -0.5,-5.5 parent: 1 - uid: 45 components: - type: Transform - pos: 5.5,1.5 + pos: 0.5,-5.5 parent: 1 - uid: 46 components: - type: Transform - pos: 4.5,-0.5 + pos: 1.5,-5.5 parent: 1 - uid: 47 components: - type: Transform - pos: 5.5,-0.5 + pos: 1.5,-3.5 parent: 1 - uid: 48 components: - type: Transform - pos: 2.5,-0.5 + pos: 1.5,-4.5 parent: 1 - uid: 49 components: - type: Transform - pos: 1.5,-0.5 + pos: 1.5,-2.5 parent: 1 -- proto: CableHV - entities: - uid: 50 components: - type: Transform - pos: 2.5,-4.5 + pos: 1.5,-1.5 parent: 1 - uid: 51 components: - type: Transform - pos: 4.5,-4.5 + pos: 1.5,-0.5 parent: 1 - uid: 52 components: - type: Transform - pos: 3.5,-5.5 + pos: 2.5,-0.5 parent: 1 - uid: 53 components: - type: Transform - pos: 2.5,-5.5 + pos: 2.5,0.5 parent: 1 +- proto: CableMVStack1 + entities: - uid: 54 components: - type: Transform - pos: 5.5,-4.5 + rot: 3.141592653589793 rad + pos: 1.3273785,-6.5838456 parent: 1 - uid: 55 components: - type: Transform - pos: 4.5,-5.5 + rot: 3.141592653589793 rad + pos: 1.6242535,-6.6463456 parent: 1 +- proto: Catwalk + entities: - uid: 56 components: - type: Transform - pos: 1.5,-4.5 + pos: 2.5,-0.5 parent: 1 -- proto: CableMV - entities: - uid: 57 components: - type: Transform - pos: 5.5,-4.5 + pos: 2.5,-3.5 parent: 1 - uid: 58 components: - type: Transform - pos: 5.5,-3.5 + pos: 2.5,-2.5 parent: 1 - uid: 59 components: - type: Transform - pos: 6.5,-3.5 + pos: 2.5,-1.5 parent: 1 -- proto: CableTerminal +- proto: ChairFoldingSpawnFolded entities: - uid: 60 components: - type: Transform - pos: 2.5,-4.5 + rot: -1.5707963267948966 rad + pos: 5.407239,2.7292914 parent: 1 -- proto: Catwalk +- proto: ChairWood entities: - uid: 61 components: - type: Transform - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: 6.46735,0.6708063 parent: 1 +- proto: ClothingHeadHelmetAncient + entities: - uid: 62 components: - type: Transform - pos: 1.5,-6.5 + rot: -1.5707963267948966 rad + pos: 1.775886,-1.1586922 parent: 1 +- proto: ClothingOuterHardsuitAncientEVA + entities: - uid: 63 components: - type: Transform - pos: 3.5,-6.5 + pos: 1.5154858,-1.7278981 parent: 1 +- proto: ClothingShoesBootsMagSci + entities: - uid: 64 components: - type: Transform - pos: 5.5,-6.5 + pos: 3.0989766,-0.24752277 parent: 1 + missingComponents: + - ClothingSpeedModifier +- proto: Coal + entities: - uid: 65 components: - type: Transform - pos: 4.5,-6.5 + pos: 3.584324,-0.028671741 parent: 1 +- proto: Coal1 + entities: - uid: 66 components: - type: Transform - pos: 4.5,-2.5 + pos: 3.599949,0.41250026 parent: 1 - uid: 67 components: - type: Transform - pos: 0.5,4.5 + pos: 3.787449,0.17812526 parent: 1 - uid: 68 components: - type: Transform - pos: 6.5,4.5 + pos: 4.412449,0.44375026 parent: 1 +- proto: ComputerShuttle + entities: - uid: 69 components: - type: Transform - pos: 4.5,-1.5 + pos: 5.5,3.5 parent: 1 +- proto: DrinkWaterBottleFull + entities: - uid: 70 components: - type: Transform - pos: 4.5,-0.5 + pos: 5.958435,0.866398 parent: 1 + - type: Sealable + sealed: False + - type: Openable + opened: True - uid: 71 components: - type: Transform - pos: 4.5,0.5 + pos: 2.2971625,-3.5845757 parent: 1 + - type: Sealable + sealed: False + - type: Openable + opened: True +- proto: EmptyFlashlightLantern + entities: - uid: 72 components: - type: Transform - pos: 3.5,-1.5 + pos: 3.373214,-2.1667242 parent: 1 +- proto: FoodTinMRETrash + entities: - uid: 73 components: - type: Transform - pos: 3.5,0.5 + pos: 6.708435,1.8673245 parent: 1 - uid: 74 components: - type: Transform - pos: 4.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.364685,1.4919983 parent: 1 - uid: 75 components: - type: Transform - pos: 3.5,-2.5 + pos: 3.444386,-1.306506 parent: 1 +- proto: Girder + entities: - uid: 76 components: - type: Transform - pos: 3.5,-0.5 + pos: 2.5,-4.5 parent: 1 - uid: 77 components: - type: Transform - pos: 2.5,0.5 + pos: -1.5,-6.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: -1.5,-4.5 parent: 1 +- proto: GoldOre1 + entities: - uid: 78 components: - type: Transform - pos: 2.5,-0.5 + pos: 1.5847063,-2.4986992 parent: 1 - uid: 79 components: - type: Transform - pos: 3.5,1.5 + pos: 1.8815813,-2.5455742 parent: 1 - uid: 80 components: - type: Transform - pos: 2.5,1.5 + pos: 1.6159563,-3.0455742 parent: 1 +- proto: Grille + entities: - uid: 81 components: - type: Transform - pos: 2.5,-1.5 + pos: 4.5,3.5 parent: 1 - uid: 82 components: - type: Transform - pos: 2.5,-2.5 + pos: 5.5,4.5 parent: 1 +- proto: GrilleBroken + entities: - uid: 83 components: - type: Transform - pos: 1.5,-4.5 + rot: 3.141592653589793 rad + pos: 6.5,4.5 parent: 1 - uid: 84 components: - type: Transform - pos: 2.5,-4.5 + pos: 6.5,3.5 parent: 1 - uid: 85 components: - type: Transform - pos: 5.5,-4.5 + pos: 4.5,-3.5 parent: 1 - uid: 86 components: - type: Transform - pos: 0.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 parent: 1 +- proto: GrilleDiagonal + entities: - uid: 87 components: - type: Transform - pos: 0.5,1.5 + pos: 4.5,4.5 parent: 1 +- proto: Gyroscope + entities: - uid: 88 components: - type: Transform - pos: 6.5,1.5 + pos: 0.5,-6.5 parent: 1 +- proto: HospitalCurtains + entities: - uid: 89 components: - type: Transform - pos: 6.5,-0.5 + pos: 4.5,0.5 parent: 1 -- proto: ChairPilotSeat - entities: - uid: 90 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,4.5 + pos: 1.5,-4.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 152 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 176 + components: + - type: Transform + pos: -2.5,-5.5 parent: 1 -- proto: ComputerShuttleCargo +- proto: OreBag entities: - uid: 91 components: - type: Transform - pos: 3.5,5.5 + rot: 3.141592653589793 rad + pos: 2.5357695,-0.6758468 parent: 1 -- proto: ConveyorBelt +- proto: OxygenTank entities: - uid: 92 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + pos: 1.4874384,-3.5085368 parent: 1 - - type: DeviceLinkSink - links: - - 173 - uid: 93 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 + pos: 1.7061884,-3.7429118 parent: 1 - - type: DeviceLinkSink - links: - - 173 +- proto: Paper + entities: - uid: 94 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 + pos: 5.74995,1.7020141 parent: 1 - - type: DeviceLinkSink - links: - - 172 + - type: Paper + content: >+ + Старейшины думают, что мы должны каждый раз аккуратно выбираться на обломки. Мне, как новичку, не позволяют в одиночку выбираться на вылазки! Я им еще покажу что из себя представляю! + - uid: 95 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: 0.59894896,-5.6599193 parent: 1 - - type: DeviceLinkSink - links: - - 172 + - type: Paper + content: > + Сегодня уже третий раз полетел генератор, гироскоп барахлит, я не могу нормально ориентироваться в космосе, когда у меня постоянно ломается все! Я уже потерял все ориентиры к базе, я не знаю что мне делать... - uid: 96 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,2.5 + pos: 2.2972631,-3.0100403 parent: 1 - - type: DeviceLinkSink - links: - - 172 + - type: Paper + content: >+ + Сегодня я накопал кучу руды! Мне попался особо крупный астероид с рудой. Когда я прилечу к старейшинам с этой добычой, они поймут, что я не сопля какая-то! + - uid: 97 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 + pos: 6.705168,1.4708616 parent: 1 - - type: DeviceLinkSink - links: - - 172 - - uid: 98 + - type: Paper + content: >+ + Это было большой ошибкой... Я много накопал, но у меня нет рации. На шаттле её не было! Я не знаю где наш аванпост... Всё очень плохо. Сегодня я съел последнюю провизию. Я не знаю что делать... + +- proto: Pen + entities: + - uid: 17 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,2.5 + pos: 5.528158,1.2386671 parent: 1 - - type: DeviceLinkSink - links: - - 173 - - uid: 99 +- proto: Pickaxe + entities: + - uid: 98 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,2.5 + pos: 3.3414352,-0.6787262 parent: 1 - - type: DeviceLinkSink - links: - - 173 -- proto: Firelock +- proto: PlasmaOre entities: - - uid: 100 + - uid: 99 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,3.5 + pos: 2.982276,-3.6775713 parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 - - 3 -- proto: GasPassiveVent +- proto: PlasmaOre1 entities: - - uid: 101 + - uid: 100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + pos: 2.841651,-3.2088213 parent: 1 -- proto: GasPipeBend +- proto: PowerCellSmallPrinted entities: - uid: 102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: 2.591964,-2.3854742 parent: 1 - uid: 103 components: - type: Transform - pos: 3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 3.638839,-2.5417242 parent: 1 +- proto: PoweredSmallLight + entities: - uid: 104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 parent: 1 - uid: 105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 + rot: 1.5707963267948966 rad + pos: 5.5,1.5 parent: 1 -- proto: GasPipeStraight +- proto: PoweredSmallLightEmpty entities: - uid: 106 components: - type: Transform - pos: 3.5,-5.5 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 parent: 1 +- proto: Rack + entities: - uid: 107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + pos: 1.5,-6.5 parent: 1 - uid: 108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 + pos: 3.5,-1.5 parent: 1 - uid: 109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 + pos: 3.5,-2.5 parent: 1 +- proto: RandomCargoCorpseSpawner + entities: - uid: 110 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 + pos: 5.5,0.5 parent: 1 +- proto: ReinforcedGirder + entities: - uid: 111 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + pos: 2.5,-5.5 parent: 1 - uid: 112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + pos: 0.5,0.5 parent: 1 +- proto: ReinforcedWindow + entities: - uid: 113 components: - type: Transform - pos: 4.5,-2.5 + pos: 4.5,3.5 parent: 1 - uid: 114 components: - type: Transform - pos: 4.5,-1.5 + pos: 5.5,4.5 parent: 1 +- proto: ReinforcedWindowDiagonal + entities: - uid: 115 components: - type: Transform - pos: 4.5,-0.5 + pos: 4.5,4.5 parent: 1 +- proto: Screwdriver + entities: - uid: 116 components: - type: Transform - pos: 4.5,0.5 + rot: 1.5707963267948966 rad + pos: -0.73871946,-4.5131516 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 101 + components: + - type: Transform + pos: -0.4219563,-4.665715 parent: 1 + - uid: 177 + components: + - type: Transform + pos: -0.6407063,-6.384465 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -0.2657063,-6.665715 + parent: 1 +- proto: SignalButtonDirectional + entities: - uid: 117 components: - type: Transform - pos: 4.5,1.5 + pos: 1.5,0.5 parent: 1 + - type: DeviceLinkSource + linkedPorts: + 19: + - Pressed: Toggle + 18: + - Pressed: Toggle +- proto: SpaceTickSpawner + entities: - uid: 118 components: - type: Transform - pos: 4.5,2.5 + pos: 0.5,-5.5 parent: 1 - uid: 119 components: - type: Transform - pos: 4.5,3.5 + pos: -0.5,-5.5 parent: 1 - uid: 120 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 127 components: - type: Transform pos: 2.5,-2.5 parent: 1 +- proto: SteelOre + entities: - uid: 121 components: - type: Transform - pos: 2.5,-1.5 + pos: 2.4732695,-1.2925462 parent: 1 +- proto: SteelOre1 + entities: - uid: 122 components: - type: Transform - pos: 2.5,-0.5 + pos: 2.1607695,-1.5425462 parent: 1 - uid: 123 components: - type: Transform - pos: 2.5,0.5 - parent: 1 - - uid: 124 - components: - - type: Transform - pos: 2.5,1.5 + pos: 2.5826445,-1.8237962 parent: 1 +- proto: TableWood + entities: - uid: 125 components: - type: Transform - pos: 2.5,2.5 - parent: 1 - - uid: 126 - components: - - type: Transform - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: 6.5,1.5 parent: 1 -- proto: GasPipeTJunction +- proto: Thruster entities: - - uid: 127 + - uid: 126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-3.5 + pos: 3.5,2.5 parent: 1 - uid: 128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 parent: 1 -- proto: GasPort +- proto: ToolboxElectrical entities: - uid: 129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 + pos: -0.32344103,-5.4048243 parent: 1 -- proto: GasPressurePump +- proto: UraniumOre entities: - uid: 130 components: - type: Transform - pos: 3.5,-4.5 + pos: 1.9198465,-0.8447367 parent: 1 -- proto: GasVentPump +- proto: UraniumOre1 entities: - uid: 131 components: - type: Transform - pos: 5.5,-0.5 + pos: 1.9667215,-0.5791117 parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 +- proto: WallMining + entities: - uid: 132 components: - type: Transform - pos: 4.5,4.5 + pos: 5.5,-0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 3 -- proto: GasVentScrubber - entities: - uid: 133 components: - type: Transform - pos: 1.5,-0.5 + pos: 8.5,-0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 2 - uid: 134 components: - type: Transform - pos: 2.5,4.5 + pos: 6.5,-0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 3 -- proto: GeneratorRTG - entities: - uid: 135 components: - type: Transform - pos: 1.5,-4.5 + pos: 7.5,-0.5 parent: 1 - - uid: 136 +- proto: WallmountSubstationElectronics + entities: + - uid: 124 components: - type: Transform - pos: 2.5,-4.5 + pos: -0.634675,-4.300631 parent: 1 -- proto: GravityGeneratorMini +- proto: WallReinforced entities: + - uid: 136 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 - uid: 137 components: - type: Transform - pos: 4.5,-5.5 + pos: 1.5,0.5 parent: 1 -- proto: Grille - entities: - uid: 138 components: - type: Transform - pos: 0.5,0.5 + pos: 4.5,2.5 parent: 1 - uid: 139 components: - type: Transform - pos: 2.5,6.5 + pos: 2.5,0.5 parent: 1 - uid: 140 components: - type: Transform - pos: 3.5,6.5 + pos: 4.5,-0.5 parent: 1 - uid: 141 components: - type: Transform - pos: 6.5,0.5 + pos: 4.5,1.5 parent: 1 - uid: 142 components: - type: Transform - pos: 5.5,5.5 + pos: 1.5,-7.5 parent: 1 - - uid: 143 - components: - - type: Transform - pos: 1.5,5.5 - parent: 1 - - uid: 144 - components: - - type: Transform - pos: 4.5,6.5 - parent: 1 -- proto: GrilleDiagonal +- proto: WallReinforcedDiagonal entities: - - uid: 203 - components: - - type: Transform - pos: 1.5,6.5 - parent: 1 - - uid: 204 + - uid: 144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,6.5 + pos: 2.5,1.5 parent: 1 -- proto: Gyroscope - entities: - uid: 145 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,-5.5 parent: 1 -- proto: LockableButtonCargo - entities: - uid: 146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: 7.5,2.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 21: - - Pressed: Toggle - 18: - - Pressed: Toggle - uid: 147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + rot: 3.141592653589793 rad + pos: 2.5,-7.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 20: - - Pressed: Toggle - 19: - - Pressed: Toggle -- proto: PlasticFlapsAirtightClear - entities: - uid: 148 components: - type: Transform - pos: 0.5,-1.5 + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 parent: 1 - uid: 149 components: - type: Transform - pos: 0.5,2.5 + pos: -0.5,-2.5 parent: 1 - uid: 150 components: - type: Transform - pos: 6.5,-1.5 + pos: -1.5,-3.5 parent: 1 - uid: 151 - components: - - type: Transform - pos: 6.5,2.5 - parent: 1 -- proto: Poweredlight - entities: - - uid: 195 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1 - - uid: 196 - components: - - type: Transform - pos: 4.5,2.5 - parent: 1 - - uid: 197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - - uid: 198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 1 - - uid: 199 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 1 - - uid: 200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 + pos: 1.5,-8.5 parent: 1 -- proto: ShuttleWindow +- proto: WallReinforcedRust entities: - - uid: 152 - components: - - type: Transform - pos: 2.5,6.5 - parent: 1 - uid: 153 components: - type: Transform - pos: 5.5,5.5 + rot: 3.141592653589793 rad + pos: 6.5,2.5 parent: 1 - uid: 154 components: - type: Transform - pos: 6.5,0.5 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 parent: 1 - uid: 155 components: - type: Transform - pos: 1.5,5.5 + rot: 3.141592653589793 rad + pos: 4.5,-1.5 parent: 1 - uid: 156 components: - type: Transform - pos: 0.5,0.5 + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 1 - uid: 157 components: - type: Transform - pos: 3.5,6.5 + rot: 3.141592653589793 rad + pos: 5.5,-1.5 parent: 1 - uid: 158 components: - type: Transform - pos: 4.5,6.5 - parent: 1 -- proto: ShuttleWindowDiagonal - entities: - - uid: 201 - components: - - type: Transform - pos: 1.5,6.5 - parent: 1 - - uid: 202 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,6.5 + rot: 3.141592653589793 rad + pos: -0.5,-7.5 parent: 1 -- proto: SMESBasic - entities: - uid: 159 components: - type: Transform - pos: 2.5,-5.5 + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 parent: 1 -- proto: SubstationBasic - entities: - uid: 160 components: - type: Transform - pos: 5.5,-4.5 + rot: 1.5707963267948966 rad + pos: 9.5,1.5 parent: 1 -- proto: TableReinforced - entities: - uid: 161 components: - type: Transform - pos: 2.5,4.5 + rot: 3.141592653589793 rad + pos: 0.5,-7.5 parent: 1 +- proto: WallSolid + entities: - uid: 162 components: - type: Transform - pos: 2.5,5.5 + rot: 1.5707963267948966 rad + pos: 7.5,1.5 parent: 1 +- proto: WallSolidDiagonal + entities: - uid: 163 components: - type: Transform - pos: 4.5,4.5 + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 parent: 1 - uid: 164 components: - type: Transform - pos: 4.5,5.5 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 parent: 1 -- proto: Thruster - entities: - uid: 165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-6.5 + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 parent: 1 +- proto: WallSolidRust + entities: - uid: 166 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-6.5 + pos: 3.5,-4.5 parent: 1 - uid: 167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + rot: -1.5707963267948966 rad + pos: 8.5,1.5 parent: 1 - uid: 168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + pos: 0.5,-2.5 parent: 1 - uid: 169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-6.5 + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 +- proto: WallWood + entities: - uid: 170 components: - type: Transform - pos: 0.5,4.5 + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 +- proto: Window + entities: - uid: 171 components: - type: Transform pos: 6.5,4.5 parent: 1 -- proto: TwoWayLever - entities: - uid: 172 - components: - - type: Transform - pos: 5.5,0.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 96: - - Left: Forward - - Right: Reverse - - Middle: Off - 97: - - Left: Forward - - Right: Reverse - - Middle: Off - 94: - - Left: Forward - - Right: Reverse - - Middle: Off - 95: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 173 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 99: - - Left: Forward - - Right: Reverse - - Middle: Off - 98: - - Left: Forward - - Right: Reverse - - Middle: Off - 93: - - Left: Forward - - Right: Reverse - - Middle: Off - 92: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: WallShuttle - entities: - - uid: 174 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 1 - - uid: 175 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1 - - uid: 176 - components: - - type: Transform - pos: 5.5,3.5 - parent: 1 - - uid: 177 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 1 - - uid: 178 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 1 - - uid: 179 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1 - - uid: 180 - components: - - type: Transform - pos: 4.5,3.5 - parent: 1 - - uid: 181 - components: - - type: Transform - pos: 1.5,4.5 - parent: 1 - - uid: 182 - components: - - type: Transform - pos: 2.5,3.5 - parent: 1 - - uid: 183 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1 - - uid: 184 - components: - - type: Transform - pos: 5.5,-5.5 - parent: 1 - - uid: 185 - components: - - type: Transform - pos: 1.5,3.5 - parent: 1 - - uid: 186 components: - type: Transform pos: 6.5,3.5 parent: 1 - - uid: 187 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1 - - uid: 188 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 1 - - uid: 189 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 1 - - uid: 190 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 1 - - uid: 191 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 192 + - uid: 173 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-6.5 + pos: 4.5,-3.5 parent: 1 - - uid: 193 + - uid: 174 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-6.5 + pos: 4.5,-2.5 parent: 1 - - uid: 194 +- proto: Wirecutter + entities: + - uid: 175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-6.5 + rot: 1.5707963267948966 rad + pos: 1.5508021,-5.6902432 parent: 1 ... diff --git a/Resources/Maps/Ruins/corvax_aplink.yml b/Resources/Maps/Ruins/corvax_aplink.yml new file mode 100644 index 00000000000..adecc645329 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_aplink.yml @@ -0,0 +1,6157 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 11: FloorAsteroidTile + 35: FloorDark + 39: FloorDarkMini + 62: FloorGrayConcreteSmooth + 93: FloorReinforcedHardened + 121: FloorTechMaint + 156: Lattice + 157: Plating + 158: PlatingAsteroid + 161: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -5.5195665,-2.1562924 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAXQAAAAAAJwAAAAABXQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAJwAAAAACJwAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAJwAAAAACPgAAAAACnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAPgAAAAABJwAAAAABXQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnQAAAAAAXQAAAAAAJwAAAAADXQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABoQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAJwAAAAAAJwAAAAADJwAAAAABnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAoQAAAAABnQAAAAAAnQAAAAAAoQAAAAACoQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAoQAAAAACJwAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAACoQAAAAABCwAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAABCwAAAAAACwAAAAAAnAAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAABnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABCwAAAAAACwAAAAAAnAAAAAAAnAAAAAAAoQAAAAABnQAAAAAAoQAAAAACoQAAAAAAJwAAAAABnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAABnQAAAAAACwAAAAAACwAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAABnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAoQAAAAACoQAAAAABCwAAAAAAngAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABoQAAAAABoQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAJwAAAAADJwAAAAAAnQAAAAAAJwAAAAADJwAAAAADnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAADoQAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAADJwAAAAADnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAoQAAAAACnAAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAoQAAAAAAoQAAAAABnQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADIwAAAAADIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAoQAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAIwAAAAADIwAAAAACIwAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: nAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAoQAAAAACJwAAAAACnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAJwAAAAADPgAAAAAAPgAAAAABPgAAAAABnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAABnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJwAAAAABJwAAAAACJwAAAAACPgAAAAABJwAAAAACnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACJwAAAAABnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAADnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAoQAAAAABoQAAAAACoQAAAAABoQAAAAAAoQAAAAAACwAAAAAAoQAAAAACCwAAAAAAJwAAAAABnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAoQAAAAACoQAAAAABngAAAAAAoQAAAAABCwAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAABoQAAAAABCwAAAAAAngAAAAAACwAAAAAAngAAAAAAngAAAAAACwAAAAAAnQAAAAAAoQAAAAABnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAoQAAAAABngAAAAAAngAAAAAAngAAAAAACwAAAAAAngAAAAAAngAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: CwAAAAAAoQAAAAAAoQAAAAAAoQAAAAABngAAAAAAngAAAAAACwAAAAAACwAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACCwAAAAAAoQAAAAABoQAAAAAAoQAAAAACngAAAAAACwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAoQAAAAAAoQAAAAAAoQAAAAAAoQAAAAAAoQAAAAACCwAAAAAAoQAAAAACnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAABnQAAAAAAoQAAAAACoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAJwAAAAACnQAAAAAAJwAAAAADoQAAAAABnQAAAAAAnQAAAAAAoQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAoQAAAAACoQAAAAABJwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAoQAAAAACnQAAAAAAJwAAAAADJwAAAAADnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAoQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAABnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAoQAAAAACAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAoQAAAAACnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAoQAAAAACnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAIwAAAAADnQAAAAAAoQAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAoQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAoQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAoQAAAAABnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAnQAAAAAAoQAAAAABoQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnQAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: eQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAoQAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAoQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAoQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 61: 15,29 + - node: + cleanable: True + zIndex: 50 + color: '#E300002E' + id: Basalt1 + decals: + 588: 18.79001,5.701583 + 589: 18.314426,5.1664 + - node: + cleanable: True + zIndex: 50 + color: '#E3000079' + id: Basalt1 + decals: + 591: 18.399376,6.061153 + - node: + cleanable: True + zIndex: 50 + color: '#E3000079' + id: Basalt2 + decals: + 590: 18.44323,5.3844376 + - node: + cleanable: True + zIndex: 50 + color: '#E300002E' + id: Basalt5 + decals: + 586: 18.08654,5.443902 + 587: 18.760286,5.6322074 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 60: 14,32 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: BushCThree + decals: + 490: 9.977761,12.924961 + 491: 2.391497,9.020197 + 492: 4.3142633,12.972456 + 493: 15.0895405,12.50453 + 494: 14.623864,13.446056 + - node: + cleanable: True + zIndex: 50 + color: '#0000005D' + id: BushCThree + decals: + 472: 8.432114,11.18066 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: BushCTwo + decals: + 489: 9.928221,10.367973 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Busha1 + decals: + 516: 16.806492,6.8902245 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Busha2 + decals: + 500: 15.89521,20.530285 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Busha2 + decals: + 611: 8.657543,3.7163515 + 612: 8.201775,3.769209 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushb1 + decals: + 512: 16.060608,6.228177 + 513: 16.943012,5.672657 + 517: 17.597836,5.045547 + 518: 19.321827,5.7194815 + 519: 19.906399,6.611454 + 520: 22.705894,6.393416 + 521: 22.483158,5.035636 + 522: 23.523499,4.0544667 + 523: 24.476841,8.227688 + 524: 7.8728323,14.912439 + 525: 7.545869,18.046608 + 526: 10.11204,19.220615 + 527: 5.147245,14.805599 + 528: 4.0623198,13.036522 + 529: 15.179858,18.660738 + 530: 17.19925,20.686293 + 531: 17.719421,23.00542 + 532: 22.562534,25.480148 + 533: 25.133774,28.184557 + 534: 25.044605,30.13235 + 535: 27.125282,30.13235 + 536: 13.225031,28.850279 + 537: 13.774924,30.17337 + 538: 15.944777,29.430061 + 539: 12.259001,31.749191 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushb2 + decals: + 509: 9.918181,6.8595943 + 510: 11.067509,5.521636 + 511: 13.419935,6.879416 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushc3 + decals: + 495: 16.640747,17.169031 + 501: 9.206721,19.862705 + 502: 8.858784,18.044077 + - node: + cleanable: True + zIndex: 50 + color: '#0000003E' + id: Bushh3 + decals: + 485: 10.453346,15.184624 + 486: 8.778893,15.026051 + 487: 8.977054,15.759451 + 488: 9.482362,15.035961 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushh3 + decals: + 541: 15.365159,29.935513 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushi2 + decals: + 543: 13.284479,31.882984 + 544: 8.12538,35.046505 + 545: 11.617668,33.961273 + 546: 11.989218,33.91667 + 547: 9.306074,25.179483 + 548: 15.43174,22.736269 + 549: 15.43174,22.736269 + 550: 11.23225,18.557356 + 551: 6.3247375,11.813105 + 552: 5.7302,10.017742 + 553: 3.5752096,9.765017 + 554: 5.0108666,6.214933 + 555: 4.9947853,7.021806 + 556: 7.2585163,3.4958365 + 557: 9.041956,3.243111 + 558: 9.08654,1.0131799 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushi3 + decals: + 497: 22.283894,12.761589 + 498: 23.086441,13.841867 + 499: 15.414703,19.991074 + - node: + cleanable: True + zIndex: 50 + color: '#0000003E' + id: Bushk1 + decals: + 473: 7.8871746,13.91604 + 474: 9.967854,14.847656 + 475: 10.166014,11.527538 + 476: 9.898499,9.307518 + 477: 9.155397,9.158856 + 478: 10.9586525,12.092453 + 479: 9.779602,11.339233 + 480: 8.25377,15.323376 + 481: 9.739969,13.004248 + 482: 10.255186,14.292652 + 483: 8.065518,13.400681 + 484: 8.075426,12.835764 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushk2 + decals: + 496: 21.964924,11.751392 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Bushl2 + decals: + 604: 8.069668,3.769209 + 605: 7.937562,4.2449274 + 606: 7.944167,3.4322414 + 607: 8.261223,4.132605 + 608: 8.446173,2.9300942 + 609: 8.043247,3.4586704 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Bushm1 + decals: + 542: 15.394883,30.21797 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Bushn1 + decals: + 613: 8.360303,4.2383204 + - node: + cleanable: True + zIndex: 50 + color: '#E3000056' + id: Bushn1 + decals: + 581: 19.364674,6.0881047 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Damaged + decals: + 614: 8.611305,3.9740324 + - node: + cleanable: True + zIndex: 50 + color: '#E3000056' + id: Damaged + decals: + 580: 18.97551,5.8706174 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 72: 8,15 + 73: 9,14 + 74: 9,13 + 75: 9,11 + 76: 10,9 + 77: 9,9 + 78: 9,10 + 79: 10,10 + 80: 10,11 + 81: 10,12 + 82: 8,12 + 89: 11,12 + 90: 11,11 + 91: 10,14 + 92: 8,16 + 93: 9,16 + 94: 10,16 + 95: 9,17 + 96: 9,18 + 97: 8,18 + 98: 8,17 + 104: 8,5 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: Dirt + decals: + 107: 8,5 + 108: 9,4 + 109: 8,4 + 110: 7,4 + 111: 7,3 + 112: 8,2 + 113: 9,2 + 114: 7,2 + 115: 8,1 + 116: 9,1 + 117: 9,4 + 118: 7,5 + 119: 9,1 + 126: 18,6 + 127: 17,7 + 128: 20,6 + 129: 20,5 + 130: 19,7 + 131: 17,6 + 132: 15,6 + 133: 16,6 + 134: 19,5 + 135: 24,8 + 136: 24,9 + 137: 25,10 + 138: 24,10 + 139: 12,19 + 140: 13,19 + 141: 12,18 + 142: 1,19 + 143: 2,18 + 144: 1,20 + 145: 0,20 + 146: 0,18 + 147: 3,20 + 148: 2,20 + 149: 3,21 + 150: 5,19 + 185: 25,21 + 186: 25,22 + 187: 24,23 + 188: 27,26 + 189: 27,27 + 190: 27,29 + 191: 27,30 + 192: 31,29 + 193: 23,30 + 194: 23,29 + 195: 27,32 + 196: 24,32 + 197: 23,32 + 198: 31,32 + 199: 27,32 + 200: 14,29 + 201: 11,29 + 202: 12,29 + 203: 14,29 + 204: 11,30 + 205: 11,31 + 206: 11,32 + 207: 13,32 + 208: 15,31 + 209: 16,30 + 210: 16,32 + 223: 14,32 + 224: 15,32 + 225: 13,29 + 235: 5,33 + 236: 6,34 + 237: 7,32 + 238: 7,35 + 241: 5,22 + 242: 6,22 + 253: 7,20 + 254: 6,20 + 255: 5,20 + 256: 8,20 + 274: 16,21 + 275: 18,20 + 276: 18,18 + 277: 14,15 + 278: 14,13 + 279: 12,7 + 280: 15,6 + 281: 18,10 + 282: 19,10 + 283: 17,9 + 284: 20,9 + 285: 18,9 + 308: 11,25 + 309: 12,24 + 310: 11,24 + 311: 12,25 + 324: 27,8 + 325: 27,7 + 326: 27,6 + 327: 26,6 + 370: 4,11 + 392: 18,22 + 393: 18,26 + 394: 18,22 + 395: 23,25 + 396: 24,25 + 397: 22,22 + 398: 17,17 + 399: 15,15 + 400: 15,13 + 401: 14,12 + 402: 16,12 + 403: 22,13 + 404: 20,13 + 405: 23,12 + 406: 24,13 + 407: 22,14 + 408: 22,13 + 409: 15,12 + 410: 16,16 + 411: 13,15 + 412: 17,17 + 413: 14,11 + 414: 13,10 + 415: 14,13 + 416: 15,11 + 417: 13,14 + 418: 16,17 + 419: 15,17 + 420: 15,19 + 421: 13,18 + 422: 10,17 + 423: 11,20 + 424: 10,21 + 425: 7,17 + 426: 8,19 + 427: 5,18 + 428: 5,13 + 429: 1,15 + 430: 1,13 + 431: 4,5 + 432: 5,4 + 433: 5,7 + 434: 8,7 + 435: 11,7 + 436: 12,5 + 437: 11,4 + 438: 13,8 + 439: 14,5 + 440: 15,5 + 441: 15,7 + 442: 16,10 + 443: 14,6 + 451: 16,6 + 452: 20,5 + 453: 19,5 + 454: 23,4 + 455: 22,5 + 456: 24,5 + 457: 25,6 + 458: 24,6 + 459: 25,5 + 460: 24,4 + 461: 22,9 + 462: 24,12 + 463: 24,14 + 464: 24,17 + 465: 24,18 + 466: 24,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 83: 9,13 + 84: 8,13 + 85: 10,13 + 86: 10,14 + 87: 8,11 + 88: 8,12 + 99: 6,19 + 100: 7,19 + 101: 4,12 + 102: 6,14 + 103: 8,7 + 105: 8,5 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 106: 8,5 + 120: 11,4 + 121: 14,6 + 122: 17,5 + 123: 18,6 + 124: 18,5 + 125: 20,5 + 151: 5,19 + 152: 5,19 + 153: 5,18 + 154: 11,9 + 155: 13,9 + 156: 13,8 + 157: 7,7 + 158: 6,9 + 159: 8,8 + 160: 7,8 + 161: 12,7 + 162: 14,5 + 163: 11,4 + 164: 17,3 + 165: 18,5 + 166: 22,5 + 167: 24,5 + 168: 24,9 + 169: 25,9 + 170: 27,6 + 171: 27,9 + 179: 28,20 + 180: 28,20 + 181: 27,20 + 182: 27,21 + 183: 25,22 + 184: 25,23 + 211: 15,29 + 212: 16,29 + 213: 15,30 + 214: 13,31 + 215: 11,31 + 216: 11,30 + 217: 13,29 + 218: 15,31 + 226: 14,29 + 227: 14,29 + 228: 14,29 + 229: 14,29 + 230: 14,29 + 231: 14,29 + 239: 5,33 + 240: 6,34 + 286: 19,9 + 287: 19,9 + 288: 19,10 + 289: 20,10 + 290: 20,9 + 291: 20,9 + 292: 22,8 + 293: 22,8 + 294: 22,8 + 295: 10,19 + 296: 10,19 + 297: 9,20 + 298: 12,21 + 299: 12,21 + 300: 12,21 + 301: 12,24 + 302: 12,24 + 303: 12,24 + 304: 11,25 + 305: 11,25 + 306: 11,25 + 307: 11,25 + 312: 11,24 + 313: 9,25 + 314: 9,20 + 315: 10,21 + 316: 19,21 + 359: 5,8 + 360: 5,8 + 361: 2,8 + 362: 3,9 + 363: 2,11 + 364: 4,11 + 365: 3,11 + 366: 4,11 + 367: 4,11 + 368: 4,11 + 369: 4,11 + 444: 15,6 + 445: 15,6 + 446: 15,6 + 447: 16,6 + 448: 16,6 + 449: 16,6 + 450: 16,6 + 467: 24,17 + 468: 24,18 + 469: 25,16 + 470: 25,17 + 471: 17,21 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 243: 6,22 + 244: 6,22 + 245: 5,22 + 257: 9,21 + 258: 9,22 + 259: 9,20 + 260: 10,19 + 261: 9,18 + 262: 9,18 + 263: 9,18 + 264: 9,17 + 265: 8,17 + 266: 11,17 + 267: 12,20 + 268: 13,22 + 269: 17,20 + 270: 18,21 + 271: 16,20 + 272: 15,17 + 273: 16,16 + 317: 22,24 + 318: 22,24 + 328: 28,9 + 329: 25,4 + 330: 23,4 + 331: 24,3 + 332: 22,1 + 333: 21,1 + 334: 18,3 + 335: 17,3 + 336: 16,1 + 337: 16,3 + 338: 15,5 + 339: 17,5 + 340: 17,7 + 341: 17,6 + 342: 17,6 + 343: 18,7 + 344: 18,7 + 345: 18,7 + 346: 7,4 + 347: 7,4 + 348: 7,4 + 349: 7,3 + 350: 8,2 + 351: 8,4 + 352: 7,5 + 353: 5,5 + 354: 4,5 + 355: 5,4 + 356: 4,8 + 357: 5,8 + 358: 5,7 + 371: 5,11 + 372: 4,12 + 373: 7,14 + 374: 6,15 + 375: 6,14 + 376: 5,13 + 377: 4,13 + 378: 5,15 + 379: 2,17 + 380: 1,19 + 381: 6,18 + 382: 6,23 + 383: 11,21 + 384: 11,20 + 385: 11,20 + 386: 14,19 + 387: 18,22 + 388: 17,23 + 389: 18,22 + 390: 18,22 + 391: 19,26 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtLight + decals: + 172: 24,15 + 173: 25,15 + 174: 26,17 + 175: 26,16 + 176: 27,16 + 219: 14,31 + 220: 13,31 + 221: 13,32 + 222: 13,32 + 246: 6,23 + 247: 7,23 + 248: 7,20 + 249: 7,20 + 250: 7,20 + 251: 7,20 + 252: 7,20 + - node: + cleanable: True + zIndex: 50 + color: '#FFFFFFFF' + id: DirtMedium + decals: + 177: 28,16 + 178: 28,16 + 232: 15,29 + 233: 16,29 + 234: 7,28 + 319: 27,8 + 320: 27,8 + 321: 27,8 + 322: 27,8 + 323: 27,8 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: Grassa3 + decals: + 615: 8.241407,3.6833153 + 616: 8.921757,3.9872465 + 617: 8.80286,3.0292025 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: Grassa4 + decals: + 559: 7.3441095,4.328344 + 560: 12.742252,6.0802402 + 561: 15.521446,6.3180995 + 562: 13.202974,11.0901985 + 563: 15.952444,10.257692 + 564: 19.259792,8.670153 + 565: 18.665314,5.057666 + 566: 21.897038,6.157765 + 567: 22.573288,3.4372492 + 568: 24.600883,10.824385 + 569: 26.429699,7.134126 + 570: 24.328552,13.512222 + 571: 17.216814,18.069342 + 572: 14.478456,19.930538 + 573: 15.7472725,10.749027 + 574: 14.24621,10.704428 + 575: 17.661621,20.866756 + 576: 12.568515,22.844734 + 577: 10.472974,19.752563 + - node: + cleanable: True + zIndex: 50 + color: '#D3000056' + id: Grassa4 + decals: + 578: 18.94028,5.923475 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileCornerOverlaySW + decals: + 53: 13,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkBox + decals: + 32: 7,1 + 33: 9,1 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSw + decals: + 37: 13,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndE + decals: + 6: 9,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndN + decals: + 0: 8,5 + 25: 7,5 + 26: 9,5 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndS + decals: + 9: 8,1 + 24: 7,3 + 27: 9,3 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkEndW + decals: + 5: 7,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNe + decals: + 7: 8,2 + 46: 15,29 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerNw + decals: + 8: 8,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSe + decals: + 10: 8,2 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkInnerSw + decals: + 11: 8,2 + 40: 15,30 + 45: 13,32 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineE + decals: + 3: 8,3 + 4: 8,4 + 30: 7,4 + 31: 9,4 + 41: 15,32 + 42: 15,31 + 43: 15,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 44: 16,29 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 34: 11,32 + 35: 12,32 + 38: 14,30 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineW + decals: + 1: 8,4 + 2: 8,3 + 28: 7,4 + 29: 9,4 + 36: 13,31 + 39: 15,29 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayE + decals: + 20: 9,2 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayN + decals: + 12: 8,5 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayS + decals: + 13: 8,1 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileEndOverlayW + decals: + 21: 7,2 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileInnerOverlayNE + decals: + 50: 15,29 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlayNE + decals: + 16: 8,2 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlayNW + decals: + 17: 8,2 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlaySE + decals: + 14: 8,2 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileInnerOverlaySW + decals: + 56: 13,32 + 59: 15,30 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileInnerOverlaySW + decals: + 15: 8,2 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayE + decals: + 47: 15,32 + 48: 15,31 + 49: 15,30 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileLineOverlayE + decals: + 18: 8,4 + 19: 8,3 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayN + decals: + 51: 16,29 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayS + decals: + 54: 11,32 + 55: 12,32 + 57: 14,30 + - node: + zIndex: 1 + color: '#663C0DFF' + id: MiniTileLineOverlayW + decals: + 52: 13,31 + 58: 15,29 + - node: + zIndex: 1 + color: '#9C2020FF' + id: MiniTileLineOverlayW + decals: + 22: 8,3 + 23: 8,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rust + decals: + 62: 8,16 + 63: 9,16 + 64: 10,16 + - node: + cleanable: True + zIndex: 50 + color: '#00000057' + id: brush + decals: + 503: 8.940525,18.01682 + 504: 8.110577,6.756807 + 505: 8.496988,6.7667174 + 506: 7.652321,6.8992376 + 507: 7.4937935,6.0667305 + 508: 8.797291,6.6217356 + 514: 17.737843,5.9486985 + 515: 17.975636,6.919957 + 540: 12.571102,30.604492 + - node: + cleanable: True + zIndex: 50 + color: '#E300002E' + id: brush + decals: + 582: 19.206146,5.9493527 + 583: 18.44323,5.513278 + 584: 18.918814,5.5727425 + 585: 18.314426,5.2655077 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: brush + decals: + 602: 7.9639835,3.5511713 + 603: 8.29425,4.0863547 + 610: 8.6707535,3.9674253 + - node: + cleanable: True + color: '#34FFFF25' + id: dot + decals: + 70: 8.9307575,14.558214 + 71: 8.699571,14.478928 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: dot + decals: + 594: 18.017918,5.6168184 + 595: 19.632921,6.3204856 + 596: 18.136814,5.3591375 + 597: 19.03844,5.5870867 + 598: 18.632214,6.102448 + 599: 18.25571,5.7753916 + 600: 8.076274,3.5379572 + 601: 8.459383,4.007068 + - node: + cleanable: True + zIndex: 50 + color: '#E3000079' + id: dot + decals: + 592: 18.374605,6.2411995 + 593: 18.216076,5.9636965 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: grasssnow13 + decals: + 618: 8.426356,3.841888 + 619: 8.829282,4.092962 + 620: 8.763227,3.2802758 + 621: 8.697175,3.6701012 + - node: + cleanable: True + zIndex: 50 + color: '#E3000056' + id: grasssnowb3 + decals: + 579: 18.711296,5.80895 + - node: + cleanable: True + zIndex: 50 + color: '#E3000044' + id: minus + decals: + 622: 7.6667433,3.3661697 + 623: 7.4289513,3.2736688 + - node: + cleanable: True + color: '#34FFFF25' + id: smallbrush + decals: + 69: 9.128918,14.815895 + - node: + cleanable: True + color: '#7C52226D' + id: smallbrush + decals: + 65: 9.37992,12.774269 + - node: + cleanable: True + color: '#7C522285' + id: smallbrush + decals: + 66: 9.39313,12.846949 + 67: 9.445972,13.071594 + 68: 9.571474,12.721413 + - node: + cleanable: True + zIndex: 50 + color: '#E300001F' + id: smallbrush + decals: + 626: 8.637727,3.2736688 + 627: 8.783045,3.0093808 + - node: + cleanable: True + zIndex: 50 + color: '#E300001F' + id: splatter + decals: + 624: 8.70378,3.795638 + 625: 8.849097,3.379384 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,1: + 0: 13158 + 1: 2048 + 0,2: + 0: 9019 + 1: 52420 + 0,3: + 0: 797 + 1: 9312 + 0,4: + 0: 34852 + 1: 26432 + 1,1: + 1: 65466 + 1,2: + 1: 22011 + 1,3: + 1: 30325 + 1,0: + 0: 800 + 1: 34944 + 2,0: + 1: 15152 + 0: 136 + 2,1: + 1: 63931 + 2,2: + 1: 63072 + 2,3: + 1: 30591 + 3,0: + 0: 33948 + 1: 2304 + 3,1: + 1: 65521 + 0: 12 + 3,2: + 1: 60991 + 3,3: + 1: 65518 + 3,4: + 1: 63950 + 4,0: + 0: 35847 + 1: 29432 + 4,1: + 1: 61408 + 4,2: + 1: 65504 + 4,3: + 1: 4159 + 0,5: + 1: 2191 + 0: 58368 + 1,4: + 1: 65152 + 1,5: + 1: 53006 + 0: 12288 + 0,6: + 0: 8 + 1,6: + 0: 19 + 1,7: + 0: 26422 + 1: 32776 + 1,8: + 0: 25094 + 1: 33832 + 2,4: + 1: 65520 + 2,5: + 1: 52975 + 2,6: + 1: 14316 + 2,7: + 0: 4131 + 1: 43924 + 2,8: + 0: 36371 + 1: 4136 + 3,5: + 1: 62399 + 3,6: + 1: 61141 + 3,7: + 1: 65528 + 3,8: + 1: 3343 + 0: 61952 + 4,4: + 1: 65395 + 4,5: + 1: 65271 + 4,6: + 1: 65511 + 4,7: + 1: 55632 + 0: 1164 + 5,0: + 1: 59119 + 0: 4112 + 5,1: + 1: 21980 + 5,2: + 1: 20852 + 5,3: + 1: 36063 + 6,0: + 0: 17 + 1: 13824 + 6,1: + 1: 53043 + 0: 196 + 6,2: + 1: 11195 + 6,3: + 1: 29559 + 0: 35840 + 5,4: + 1: 57240 + 6,4: + 1: 29183 + 7,1: + 1: 4368 + 7,2: + 1: 16 + 7,3: + 1: 4096 + 7,4: + 1: 4097 + 4,8: + 1: 17985 + 0: 43404 + 5,5: + 1: 61168 + 5,6: + 1: 3526 + 6,5: + 1: 48878 + 0: 16384 + 6,6: + 1: 35771 + 0: 17476 + 5,7: + 1: 34952 + 5,8: + 1: 8 + 6,7: + 1: 43690 + 0: 17476 + 6,8: + 1: 143 + 7,5: + 1: 9201 + 0: 4096 + 7,6: + 0: 4369 + 1: 34 + 7,7: + 0: 4369 + 1: 43690 + 7,8: + 1: 15 + 8,5: + 1: 16 + 4,9: + 0: 7 + 1,9: + 0: 6 + 2,9: + 0: 6 + 3,9: + 0: 38 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 384 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 12.5,29.5 + parent: 1 +- proto: AirlockAssemblyShuttleSyndicate + entities: + - uid: 136 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 +- proto: AirlockAssemblyShuttleSyndicateGlass + entities: + - uid: 139 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 +- proto: AirlockAssemblySyndicate + entities: + - uid: 227 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 +- proto: AirlockAssemblySyndicateGlass + entities: + - uid: 244 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 +- proto: AirlockGlassShuttleSyndicate + entities: + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 1 +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 363 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1 +- proto: AirlockSyndicateLocked + entities: + - uid: 243 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 +- proto: Ash + entities: + - uid: 451 + components: + - type: Transform + pos: 23.658306,19.163774 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 14.457959,12.915743 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 15.557747,16.037645 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 16.451359,18.196827 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 6.397596,19.510113 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 6.7096972,18.603273 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 9.072836,18.678656 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 9.756489,18.975979 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 1.3102326,19.870108 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 1.9195738,20.59855 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 10.94556,24.742931 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 11.614349,22.810324 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 11.867003,22.245409 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 15.190439,26.507044 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 14.848613,25.317747 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 15.410652,34.642574 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 12.913837,34.256054 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 9.544155,31.293 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 8.251162,29.821245 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 7.3297176,31.843048 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 24.297375,18.108276 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 24.561222,6.6078305 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 23.50602,4.600893 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 18.660187,1.5588708 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 17.253725,23.523418 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 12.2345705,5.8476396 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 12.011641,4.3267145 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 8.65283,2.3049102 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 7.270664,5.5160103 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 17.31199,9.514608 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 13.061424,9.232151 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 6.9977303,7.909058 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 3.7833395,9.589203 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 4.2148833,13.2981415 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 9.862103,21.743229 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 10.857857,20.910723 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 27.969006,23.146656 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 17.686417,21.841814 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 29.52919,21.760294 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 31.621586,29.818377 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 31.235176,29.981905 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 27.38306,30.621151 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 27.546543,30.04137 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 22.083767,24.212067 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 18.492092,31.483608 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 18.492092,33.55001 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 11.789333,31.334946 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 7.3963246,31.63227 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 6.3882,22.24215 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 7.05699,22.792198 + parent: 1 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 33 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 +- proto: AsteroidRockDiamond + entities: + - uid: 39 + components: + - type: Transform + pos: 22.5,16.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 21.5,17.5 + parent: 1 +- proto: AsteroidRockGold + entities: + - uid: 32 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 +- proto: AsteroidRockMining + entities: + - uid: 49 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 22.5,17.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 +- proto: AsteroidRockQuartzCrab + entities: + - uid: 56 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 +- proto: AsteroidRockTinCrab + entities: + - uid: 55 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 58 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 +- proto: AsteroidRockUraniumCrab + entities: + - uid: 57 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 +- proto: BaseUplinkRadio + entities: + - uid: 291 + components: + - type: Transform + pos: 11.568111,12.562441 + parent: 1 +- proto: BlastDoor + entities: + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 +- proto: BlastDoorFrame + entities: + - uid: 46 + components: + - type: Transform + anchored: True + pos: 6.5,1.5 + parent: 1 + - uid: 47 + components: + - type: Transform + anchored: True + pos: 10.5,1.5 + parent: 1 +- proto: BlastDoorOpen + entities: + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 +- proto: BookHowToSurvive + entities: + - uid: 165 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: 10.326089,11.946106 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 305 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 14.5,29.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 13.5,29.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 +- proto: CableHV + entities: + - uid: 66 + components: + - type: Transform + pos: 23.5,30.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 23.5,29.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 23.5,28.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 24.5,32.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 26.5,32.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 25.5,32.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 28.5,32.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 30.5,32.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 31.5,32.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 31.5,30.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 31.5,29.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 29.5,30.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 27.5,30.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 27.5,29.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 27.5,27.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 27.5,23.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 25.5,30.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 26.5,21.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 26.5,22.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 27.5,22.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 13.5,30.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 14.5,30.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 11.5,31.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 16.5,30.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1 +- proto: CableHVStack1 + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.307026,19.329409 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.794289,19.26251 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.784438,24.595383 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.583801,24.260893 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.546716,26.415274 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.9893913,26.928158 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.983022,20.238365 + parent: 1 +- proto: CableMV + entities: + - uid: 310 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 15.5,32.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 1 +- proto: CartridgePistol + entities: + - uid: 775 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.707554,31.566319 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 13.258321,7.8205676 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 16.69144,11.18033 + parent: 1 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.572216,6.330937 + parent: 1 + - uid: 805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.593155,10.062354 + parent: 1 + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.81184,6.063345 + parent: 1 + - uid: 807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.4316,6.279939 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.6513104,9.61463 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.668216,21.573744 + parent: 1 + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.3646064,20.042524 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.414936,25.962389 + parent: 1 + - uid: 812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.455917,27.254993 + parent: 1 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.964893,26.070723 + parent: 1 + - uid: 815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.024342,24.093517 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 18.953266,18.67662 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 11.499335,17.900156 + parent: 1 +- proto: CartridgeRifle + entities: + - uid: 758 + components: + - type: Transform + pos: 25.129833,24.533407 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: 9.319345,12.012077 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: 9.253292,11.81386 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 9.233477,11.926182 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 11.967346,5.181212 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 9.856943,7.663868 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 5.205138,7.4854736 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 17.106293,10.943457 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: 13.182726,7.5242305 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 19.600754,10.255047 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 24.848476,13.65406 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: 23.183933,16.389442 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 25.76595,20.670668 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 26.464462,21.63697 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 21.601566,23.091549 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 24.30645,26.302649 + parent: 1 + - uid: 776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.42859,21.678398 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.283913,23.506674 + parent: 1 + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.747323,26.367971 + parent: 1 + - uid: 779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.450083,27.378874 + parent: 1 + - uid: 780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.152314,24.59264 + parent: 1 + - uid: 781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.249979,26.064396 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 6.4335046,19.61104 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 6.4929104,23.01536 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: 1.7825036,19.4188 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: 1.4852638,19.359337 + parent: 1 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.3430138,22.00552 + parent: 1 + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.0674658,15.374296 + parent: 1 + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.872137,13.590351 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.7340999,10.359734 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.3031027,9.244768 + parent: 1 + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.6914587,8.293852 + parent: 1 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.7593994,7.9221964 + parent: 1 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.4027114,6.881562 + parent: 1 + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.8602104,10.538649 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.435755,15.505661 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.401785,15.43133 + parent: 1 + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.431509,17.456453 + parent: 1 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.212826,18.274094 + parent: 1 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.644343,19.75693 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 13.785819,14.588936 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 15.554397,17.279718 + parent: 1 +- proto: Catwalk + entities: + - uid: 140 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 +- proto: Chair + entities: + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,5.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 323 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 417 + components: + - type: Transform + pos: 9.10406,30.661636 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 7.4884534,31.736221 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 7.800555,35.49737 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 13.607817,31.136745 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 14.365415,30.230295 + parent: 1 + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.230824,17.130505 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 14.212062,24.461624 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 12.978517,21.815441 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 10.897838,19.659842 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 8.129204,19.92824 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 7.772516,19.601183 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 17.300217,12.409737 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 15.0299835,13.487951 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 15.773084,12.59598 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 15.386671,11.927 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.997894,6.6810007 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 20.020027,6.1930556 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.969429,9.54118 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 24.822754,9.885714 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.683052,22.318811 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.765854,23.597303 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.344462,25.58943 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.910366,21.938826 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.2713,23.588974 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.265905,26.213812 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.043714,24.19377 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.3680563,18.87617 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.293878,19.170387 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5179777,13.513199 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.4628105,12.606327 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.626315,9.677662 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 9.724353,12.291885 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 10.3485565,11.280983 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 13.096139,8.101019 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 12.947519,6.1981454 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.231994,5.08318 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.49951,8.042492 + parent: 1 + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.6552515,14.172359 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.02422,20.314716 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.910286,26.204416 + parent: 1 +- proto: CigaretteSyndicate + entities: + - uid: 285 + components: + - type: Transform + pos: 8.266058,3.1106043 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.068604,2.7835479 + parent: 1 +- proto: CigarGoldSpent + entities: + - uid: 426 + components: + - type: Transform + pos: 7.5033154,32.003815 + parent: 1 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 749 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 17.5,27.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 +- proto: ClosetWallBlack + entities: + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,10.5 + parent: 1 + - 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: + - 822 +- proto: ClothingHeadHatSyndieMAA + entities: + - uid: 759 + components: + - type: Transform + pos: 10.68897,12.599863 + parent: 1 +- proto: ClothingHeadHelmetSyndicate + entities: + - uid: 407 + components: + - type: Transform + rot: 0.5585053606381855 rad + pos: 14.854593,30.753374 + parent: 1 +- proto: ClothingMaskGasSyndicate + entities: + - uid: 379 + components: + - type: Transform + pos: 11.182872,32.586216 + parent: 1 +- proto: ClothingNeckScarfStripedSyndieGreen + entities: + - uid: 362 + components: + - type: Transform + pos: 12.502442,31.736687 + parent: 1 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 355 + components: + - type: Transform + pos: 12.83593,19.44731 + parent: 1 +- proto: ClothingOuterCoatSyndieCap + entities: + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.512768,11.576248 + parent: 1 +- proto: ClothingOuterHardsuitSyndicate + entities: + - uid: 405 + components: + - type: Transform + rot: -0.6981317007977318 rad + pos: 13.936991,31.094269 + parent: 1 +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.144539,6.338307 + parent: 1 +- proto: ClothingUniformJumpskirtOperative + entities: + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.609507,6.503487 + parent: 1 +- proto: CombatKnife + entities: + - uid: 410 + components: + - type: Transform + pos: 18.405024,6.5002904 + parent: 1 +- proto: ComputerShuttleSyndie + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 719 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 6.5,32.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 718 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 17.5,34.5 + parent: 1 +- proto: CrateMedicalSurgery + entities: + - uid: 833 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 +- proto: CrowbarOrange + entities: + - uid: 822 + components: + - type: Transform + parent: 821 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CrowbarRed + entities: + - uid: 402 + components: + - type: Transform + pos: 15.297212,32.425343 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 397 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1 + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,26.5 + parent: 1 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.404893,31.427254 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 11.565175,11.459566 + parent: 1 +- proto: DrinkMREFlask + entities: + - uid: 619 + components: + - type: Transform + pos: 8.730902,12.491201 + parent: 1 + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.979309,15.375244 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 10.8780365,13.657709 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 10.362822,13.697353 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 625 + components: + - type: Transform + pos: 10.769049,14.53977 + parent: 1 +- proto: filingCabinetTallRandom + entities: + - uid: 731 + components: + - type: Transform + pos: 17.5,18.5 + parent: 1 +- proto: FolderSpawner + entities: + - uid: 724 + components: + - type: Transform + pos: 8.366459,4.804512 + parent: 1 +- proto: FoodBakedPancakeCc + entities: + - uid: 382 + components: + - type: Transform + pos: 9.426485,5.4976435 + parent: 1 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 533 + components: + - type: Transform + pos: 19.52023,7.649376 + parent: 1 +- proto: FoodBreadMoldySlice + entities: + - uid: 538 + components: + - type: Transform + pos: 18.687956,5.315382 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.409824,7.5750446 + parent: 1 +- proto: FoodMealSashimi + entities: + - uid: 614 + components: + - type: Transform + pos: 8.467494,14.58679 + parent: 1 +- proto: FoodMeatBearCooked + entities: + - uid: 624 + components: + - type: MetaData + desc: Тушёнка сомнительного качества. + name: тушёнка + - type: Transform + pos: 9.801756,13.447159 + parent: 1 +- proto: FoodPizzaDonkpocketSlice + entities: + - uid: 536 + components: + - type: Transform + pos: 19.673246,6.49038 + parent: 1 +- proto: FoodPizzaMoldySlice + entities: + - uid: 537 + components: + - type: Transform + pos: 19.603891,5.6975155 + parent: 1 +- proto: FoodTinMRE + entities: + - uid: 381 + components: + - type: Transform + pos: 8.814274,14.874203 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 9.121422,14.190357 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 8.33869,13.813747 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 8.497218,13.575888 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 8.68547,13.72455 + parent: 1 +- proto: FoodTinMRETrash + entities: + - uid: 623 + components: + - type: Transform + rot: -0.8726646259971648 rad + pos: 9.612714,13.512014 + parent: 1 +- proto: FoodTinPeaches + entities: + - uid: 380 + components: + - type: Transform + pos: 10.42227,14.747898 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 392 + components: + - type: Transform + pos: 15.5,29.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,27.5 + parent: 1 +- proto: GasPipeBroken + entities: + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 393 + components: + - type: Transform + pos: 15.5,27.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 390 + components: + - type: Transform + pos: 15.5,28.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 1 +- proto: GasPort + entities: + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,29.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,29.5 + parent: 1 +- proto: GeneratorRTG + entities: + - uid: 297 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 12.5,31.5 + parent: 1 +- proto: Girder + entities: + - uid: 73 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,2.5 + parent: 1 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,3.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 17.5,20.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 14.5,34.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 18.5,35.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 18.5,34.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,33.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,32.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,30.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 399 + components: + - type: Transform + pos: 14.5,32.5 + parent: 1 +- proto: Grille + entities: + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 532 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 +- proto: LandMineExplosive + entities: + - uid: 332 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 5.767343,7.139493 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 12.634052,5.5927935 + parent: 1 +- proto: LandMineModular + entities: + - uid: 528 + components: + - type: Transform + pos: 8.546536,7.3030214 + parent: 1 +- proto: LockerSyndicatePersonalFilled + entities: + - uid: 403 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1 +- proto: LockerWallMedicalFilled + entities: + - uid: 820 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 +- proto: LootSpawnerCableCoil + entities: + - uid: 715 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1 +- proto: LootSpawnerContraband + entities: + - uid: 575 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 16.5,26.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 24.5,26.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 +- proto: LootSpawnerIndustrial + entities: + - uid: 813 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 31.5,30.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 +- proto: LootSpawnerMaterials + entities: + - uid: 690 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 699 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 +- proto: LootSpawnerMaterialsSupplementary + entities: + - uid: 691 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 681 + components: + - type: Transform + pos: 19.5,26.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 735 + components: + - type: Transform + pos: 15.5,31.5 + parent: 1 +- proto: LootSpawnerSecurityBasic + entities: + - uid: 702 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 +- proto: MagazineRifle + entities: + - uid: 756 + components: + - type: Transform + pos: 8.794591,12.02412 + parent: 1 +- proto: MaintenanceToolSpawner + entities: + - uid: 836 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 +- proto: MatchstickSpent + entities: + - uid: 509 + components: + - type: Transform + pos: 31.239307,30.060452 + parent: 1 + - uid: 540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.851795,6.6881433 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.630988,6.9408684 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.363472,7.3868546 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.179539,10.219347 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.7838945,7.29971 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.1095304,14.795242 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.2098475,18.574974 + parent: 1 + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.275134,19.611893 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.849975,21.183994 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.633704,25.515564 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.370103,30.74889 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.764659,34.29448 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.801282,30.213707 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.98227,24.304333 + parent: 1 + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.238636,24.371231 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 27.560966,32.93706 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 26.992496,20.32061 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.387398,16.551687 + parent: 1 + - uid: 558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.119884,14.778486 + parent: 1 + - uid: 559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.033897,10.454199 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 24.677143,8.607323 + parent: 1 + - uid: 561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.229069,5.4949703 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 22.921745,4.4246044 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 22.769745,5.631494 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 17.854156,6.539792 + parent: 1 + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.094603,6.171853 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.375313,9.742294 + parent: 1 + - uid: 568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.539405,9.731436 + parent: 1 + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.016647,17.7005 + parent: 1 +- proto: MaterialWoodPlank1 + entities: + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.646494,6.660237 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 20.646494,6.6205935 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 386 + components: + - type: Transform + pos: 11.5,30.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1 +- proto: PaperScrap + entities: + - uid: 659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4581676,3.6407824 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 2 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 3 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 +- proto: PosterContrabandDonk + entities: + - uid: 534 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 282 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 281 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,15.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,29.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 12.5,32.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,30.5 + parent: 1 +- proto: Rack + entities: + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 11.5,32.5 + parent: 1 +- proto: RandomBrownStalagmite + entities: + - uid: 583 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 736 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 +- proto: RandomDrinkSoda + entities: + - uid: 725 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 +- proto: RandomGreyStalagmite + entities: + - uid: 721 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 +- proto: RandomInstruments + entities: + - uid: 834 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 726 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 704 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 21.5,23.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 29.5,32.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 703 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 729 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 287 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 692 + components: + - type: Transform + pos: 16.5,29.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 695 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 +- proto: SalvageMobSpawner + entities: + - uid: 694 + components: + - type: Transform + pos: 13.5,31.5 + parent: 1 +- proto: SalvageMobSpawner75 + entities: + - uid: 693 + components: + - type: Transform + pos: 15.5,30.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 606 + components: + - type: Transform + pos: 18.5,31.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 17.5,24.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 14.5,26.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 12.5,34.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 25.5,25.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 11.5,24.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 18.5,27.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1 + - uid: 688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 +- proto: ScrapAirlock2 + entities: + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.52261,16.718317 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.741512,10.283512 + parent: 1 + - uid: 656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.063942,3.2104862 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 17.429123,5.3363533 + parent: 1 +- proto: ScrapCanister1 + entities: + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.58099,16.681438 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.917705,29.423662 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 668 + components: + - type: Transform + pos: 14.751848,16.387747 + parent: 1 + - uid: 669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.833444,13.543825 + parent: 1 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.7419925,18.398678 + parent: 1 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.181731,13.44286 + parent: 1 + - uid: 672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.631838,15.137608 + parent: 1 +- proto: ScrapCloset + entities: + - uid: 638 + components: + - type: Transform + pos: 25.142784,10.364338 + parent: 1 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.444271,9.53183 + parent: 1 + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.34383,12.840281 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.7400255,4.5515604 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 674 + components: + - type: Transform + pos: 22.130676,5.051712 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.684341,9.515445 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.28909,15.773018 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 10.569261,23.936325 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 658 + components: + - type: Transform + pos: 8.239403,5.50714 + parent: 1 +- proto: ScrapJetpack + entities: + - uid: 666 + components: + - type: Transform + pos: 13.426971,30.328754 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.690338,15.424957 + parent: 1 + - uid: 664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.260654,15.203585 + parent: 1 +- proto: ScrapMopBucket + entities: + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.291995,9.48662 + parent: 1 +- proto: ScrapPAI + entities: + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.08356,5.75425 + parent: 1 +- proto: ScrapPAIGold + entities: + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.197021,2.5555494 + parent: 1 +- proto: ScrapTube + entities: + - uid: 662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.302145,19.981852 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 6.0962915,14.758856 + parent: 1 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.2233663,12.081766 + parent: 1 +- proto: ShadowBasaltRandom + entities: + - uid: 737 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 +- proto: ShardCrystalRandom + entities: + - uid: 732 + components: + - type: Transform + pos: 20.948765,18.06784 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 21.171692,12.490849 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 18.98698,12.519842 + parent: 1 +- proto: SignalButton + entities: + - uid: 164 + components: + - type: MetaData + desc: Эта кнопка переключает гермозатворы. + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 280 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 +- proto: SMESBasic + entities: + - uid: 270 + components: + - type: Transform + pos: 16.5,31.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 +- proto: SolarAssembly + entities: + - uid: 34 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 23.5,30.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 23.5,32.5 + parent: 1 +- proto: SolarPanel + entities: + - uid: 31 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 23.5,31.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 31.5,31.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 29.5,31.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 25.5,28.5 + parent: 1 +- proto: SolarPanelBroken + entities: + - uid: 65 + components: + - type: Transform + pos: 23.5,28.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 23.5,29.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 27.5,30.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1 +- proto: SolarTracker + entities: + - uid: 61 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 591 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 23.5,23.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 18.5,25.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 183 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 +- proto: SpawnMobSyndicateFootSoldier + entities: + - uid: 684 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 301 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 16.5,32.5 + parent: 1 +- proto: SurvivalKnife + entities: + - uid: 757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.320144,14.350996 + parent: 1 +- proto: Table + entities: + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,14.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 383 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 +- proto: TableWood + entities: + - uid: 531 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,5.5 + parent: 1 +- proto: Telecrystal1 + entities: + - uid: 283 + components: + - type: Transform + pos: 9.228144,5.714376 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 9.49566,1.4923736 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 9.268892,5.617793 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 9.328355,5.7069907 + parent: 1 +- proto: ToolboxEmergencyFilled + entities: + - uid: 400 + components: + - type: Transform + pos: 11.569284,32.635773 + parent: 1 +- proto: ToyFigurineNukie + entities: + - uid: 823 + components: + - type: MetaData + name: Meguneri + - type: Transform + pos: 9.606409,5.851428 + parent: 1 +- proto: ToySpawner + entities: + - uid: 700 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 10 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,14.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 17.5,32.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 17.5,31.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 17.5,30.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 17.5,29.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 17.5,28.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 17.5,33.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 16.5,33.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 15.5,33.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 14.5,33.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 13.5,33.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 12.5,33.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 11.5,33.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 10.5,32.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 10.5,31.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 10.5,30.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 16.5,28.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 14.5,28.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 13.5,28.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 10.5,33.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 10.5,29.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 133 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,8.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,7.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,4.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,20.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,20.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,20.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,20.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,21.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,22.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 6.5,29.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 24.5,2.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 7.5,30.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 7.5,29.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 7.5,34.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 6.5,33.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 7.5,33.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 16.5,35.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 10.5,35.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 9.5,35.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 7.5,27.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,7.5 + parent: 1 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,7.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 572 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 +- proto: WeaponCrusherGlaive + entities: + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.058037,4.960562 + parent: 1 +- proto: WeaponRifleLecter + entities: + - uid: 318 + components: + - type: Transform + rot: 1.8325957145940461 rad + pos: 8.434372,12.329468 + parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True +- proto: WeaponRifleM90GrenadeLauncher + entities: + - uid: 683 + components: + - type: Transform + pos: 9.865517,11.493544 + parent: 1 + - type: ChamberMagazineAmmoProvider + boltClosed: True +- proto: WindoorSecure + entities: + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 +- proto: WindoorSecureBrigLocked + entities: + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 +- proto: Wrench + entities: + - uid: 599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.396292,32.336147 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_battleship.yml b/Resources/Maps/Ruins/corvax_battleship.yml new file mode 100644 index 00000000000..d5eeebde676 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_battleship.yml @@ -0,0 +1,1914 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 35: FloorDark + 92: FloorReinforced + 98: FloorShuttleGrey + 106: FloorSteel + 121: FloorTechMaint + 122: FloorTechMaint2 + 125: FloorWhite + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -0.40625,0.953125 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: nQAAAAAAnQAAAAAAYgAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAYgAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAYgAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAYgAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAYgAAAAAAYgAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: nAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAfQAAAAAAfQAAAAAAnQAAAAAAfQAAAAAAnQAAAAAAnQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAfQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAfQAAAAAAfQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAfQAAAAAAfQAAAAAAnQAAAAAAIwAAAAAAnQAAAAAAnQAAAAAAIwAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAfQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAIwAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAegAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAegAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAeQAAAAAAnAAAAAAAnQAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAegAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAXAAAAAAAXAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAXAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAXAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAXAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 28: 4,-5 + 29: 4,-4 + 30: 2,-3 + 31: 7,-8 + 32: 7,-8 + 33: 8,-8 + 34: 7,-4 + 35: 7,-14 + 36: 6,-12 + 37: 8,-11 + 38: 8,-14 + 39: 6,-19 + 40: 6,-18 + 41: 8,-18 + 42: 7,-20 + 43: 4,-20 + 44: 3,-17 + 45: 3,-24 + 46: 3,-26 + 47: 4,-25 + 48: 4,-25 + 49: 6,-23 + 50: 7,-17 + 51: 10,-14 + 52: 7,1 + 53: 7,2 + 54: 4,3 + 55: 2,2 + 56: 1,1 + 57: 6,-1 + 58: 8,-5 + 59: 9,-6 + 105: -3,-6 + 106: -3,-7 + 107: -1,-7 + 130: 1,-14 + 131: 2,-12 + 132: 1,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 0: 4,-17 + 1: 5,-16 + 2: 1,-14 + 9: 1,-7 + 10: 1,-6 + 11: 1,-7 + 12: 1,-6 + 20: 4,-9 + 21: 4,-7 + 22: 4,-8 + 68: 2,-18 + 69: 1,-19 + 80: 3,-9 + 81: 3,-9 + 94: 4,-2 + 95: 4,-2 + 96: 4,-3 + 98: 2,-1 + 99: 2,-1 + 103: 1,-5 + 104: -2,-8 + 118: 3,-11 + 119: 3,-11 + 120: 3,-11 + 121: 3,-11 + 122: 4,-13 + 123: 2,-15 + 124: 2,-15 + 125: 2,-15 + 136: 6,-22 + 137: 7,-11 + 138: 7,-11 + 141: 6,-7 + 142: 6,-7 + 148: 9,-2 + 149: 9,-2 + 152: 8,-3 + 153: 8,-3 + 169: 8,-9 + 170: 6,-9 + 172: 9,-9 + 173: 9,-9 + 174: 9,-9 + 175: 9,-13 + 181: 7,-24 + 182: 7,-24 + 183: 3,1 + 188: 9,3 + 189: 8,2 + 202: 3,-3 + 203: 1,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 13: 1,-7 + 14: 1,-7 + 15: 1,-7 + 23: 4,-8 + 24: 4,-8 + 25: 4,-8 + 60: 4,-14 + 61: 4,-14 + 62: 3,-13 + 74: 4,-23 + 79: 6,-15 + 82: 3,-9 + 83: 4,-6 + 89: 3,-1 + 90: 2,-1 + 91: 2,1 + 92: 4,-2 + 93: 4,-3 + 110: -2,-8 + 111: -2,-8 + 112: -1,-9 + 116: 3,-12 + 117: 3,-12 + 126: 2,-15 + 127: 1,-15 + 135: 6,-22 + 139: 7,-11 + 140: 6,-8 + 145: 9,-5 + 146: 9,-3 + 147: 9,-3 + 157: 8,-4 + 158: 8,-4 + 159: 7,-3 + 160: 1,-1 + 161: 7,-9 + 162: 7,-9 + 163: 7,-9 + 164: 7,-9 + 165: 9,-8 + 176: 6,-21 + 177: 6,-21 + 184: 3,1 + 185: 9,1 + 190: 8,2 + 191: 9,2 + 192: 9,2 + 193: 8,0 + 194: 8,0 + 195: 3,2 + 196: 3,2 + 197: 3,2 + 198: 2,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 3: 2,-12 + 4: 2,-11 + 5: 1,-11 + 16: 4,-9 + 17: 4,-9 + 18: 4,-9 + 19: 4,-9 + 63: 2,-14 + 64: 0,-14 + 65: 1,-19 + 66: 3,-19 + 67: 2,-18 + 84: 4,-6 + 85: 4,-6 + 100: 1,-3 + 101: 1,-3 + 102: 1,-3 + 113: -1,-9 + 114: 3,-12 + 115: 3,-12 + 128: 1,-15 + 129: 1,-15 + 133: 4,-16 + 134: 4,-16 + 154: 8,-2 + 155: 8,-2 + 156: 9,-1 + 166: 9,-8 + 167: 9,-8 + 168: 9,-8 + 171: 9,-9 + 178: 6,-21 + 179: 6,-24 + 180: 6,-24 + 186: 9,1 + 187: 9,1 + 199: 2,1 + 200: 2,1 + 201: 3,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 6: 2,-12 + 7: 2,-12 + 8: 1,-9 + 26: 4,-8 + 27: 3,-6 + 70: 3,-23 + 71: 3,-24 + 72: 4,-23 + 73: 4,-22 + 75: 4,-21 + 76: 4,-21 + 77: 8,-20 + 78: 6,-15 + 86: 4,-6 + 87: 2,-6 + 88: 1,-3 + 97: 3,-1 + 108: -1,-8 + 109: -1,-8 + 143: 6,-5 + 144: 6,-5 + 150: 8,-1 + 151: 8,-1 + - node: + cleanable: True + color: '#0000009E' + id: dot + decals: + 211: 8.391172,-2.9401438 + 212: 8.391172,-2.8932688 + 213: 8.406797,-2.7057688 + 214: 8.422422,-2.5338938 + 215: 8.406797,-2.3307688 + 216: 8.391172,-2.2213938 + 217: 8.391172,-2.1588938 + 218: 8.375547,-1.9401438 + 219: 8.375547,-1.7370188 + 220: 8.375547,-1.5963938 + 221: 8.406797,-1.3620188 + 222: 8.406797,-1.1588938 + 223: 8.375547,-0.9401438 + 224: 8.359922,-0.7838938 + 225: 8.359922,-0.6432688 + 226: 8.359922,-0.7838938 + 227: 8.359922,-0.9401438 + 228: 8.375547,-1.0807688 + 229: 8.391172,-1.2370188 + 230: 8.359922,-1.4557688 + 231: 8.344297,-1.7057688 + 232: 8.344297,-1.9088938 + 233: 8.391172,-2.0807688 + 234: 8.453672,-2.4401438 + 235: 7.903303,-2.9128985 + 236: 7.903303,-2.7253985 + 237: 7.903303,-2.5847735 + 238: 7.887678,-2.4441485 + 239: 7.887678,-2.2878985 + 240: 7.887678,-2.1316485 + 241: 7.918928,-1.9753985 + 242: 7.934553,-1.7410235 + 243: 7.981428,-1.5222735 + 244: 8.012678,-1.2722735 + 245: 7.997053,-1.1003985 + - node: + cleanable: True + color: '#7800009E' + id: dot + decals: + 207: 8.114338,-1.7893312 + 208: 7.129963,-3.1487062 + 209: 6.129963,-2.8362062 + 210: 8.129963,-0.69836783 + - node: + cleanable: True + color: '#9600009E' + id: dot + decals: + 248: 3.5462499,-11.858308 + 249: 3.0931249,-11.202058 + 250: 8.354788,-13.294703 + 251: 8.573538,-13.325953 + 252: 8.807913,-13.325953 + 253: 9.151663,-13.341578 + 254: 9.214163,-13.341578 + 255: 9.011038,-13.341578 + 256: 8.698538,-13.341578 + 257: 9.245413,-12.997828 + 258: 9.151663,-12.982203 + 259: 9.042288,-12.982203 + 260: 8.870413,-12.982203 + 261: 8.526663,-12.982203 + 266: 8.310846,-9.773056 + 267: 7.6077213,-10.632431 + - node: + cleanable: True + color: '#7800009E' + id: smallbrush + decals: + 205: 6.817463,-2.7362547 + 206: 7.801838,-1.2831297 + - node: + cleanable: True + color: '#9600009E' + id: smallbrush + decals: + 263: 7.9358463,-9.704847 + 264: 7.9358463,-9.986097 + 265: 7.9358463,-10.314222 + - node: + cleanable: True + color: '#7800009E' + id: splatter + decals: + 204: 7.020588,-2.0246015 + - node: + cleanable: True + color: '#9600009E' + id: splatter + decals: + 246: 4.015,-11.066802 + 247: 3.7962499,-11.301177 + 262: 7.932913,-13.315263 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyMedical + entities: + - uid: 2 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 +- proto: AirlockAssemblySecurity + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 +- proto: AirlockSecurityGlass + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 +- proto: AirlockShuttleAssembly + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 1 +- proto: APCElectronics + entities: + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.7024636,-20.940744 + parent: 1 +- proto: CableApcStack + entities: + - uid: 12 + components: + - type: Transform + pos: 7.4686804,-22.253904 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 13 + components: + - type: Transform + pos: 3.263079,1.8046379 + parent: 1 + - type: Stack + count: 5 + - uid: 14 + components: + - type: Transform + pos: 3.7397316,-23.539494 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 3.8334816,-23.805119 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 3.5991066,-23.898869 + parent: 1 +- proto: CableHVStack10 + entities: + - uid: 17 + components: + - type: Transform + pos: 3.6772316,-24.86542 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 18 + components: + - type: Transform + pos: 4.411607,-20.873028 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 4.317857,-21.935528 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 3.7397316,-22.576153 + parent: 1 +- proto: Catwalk + entities: + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 26 + components: + - type: Transform + anchored: False + rot: 1.0922383053845848 rad + pos: 9.540084,-8.795029 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 27 + components: + - type: Transform + anchored: False + rot: -7.12215248544945 rad + pos: 8.603905,-5.0139365 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + - uid: 29 + components: + - type: Transform + anchored: False + rot: 0.1493762731552124 rad + pos: 9.795284,-5.217066 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 30 + components: + - type: Transform + anchored: False + rot: 2.206292640169791 rad + pos: 6.2177124,-3.0239506 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 31 + components: + - type: Transform + anchored: False + rot: -2.9816122072464744 rad + pos: 8.646742,-2.3779218 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True +- proto: ClothingOuterArmorBasic + entities: + - uid: 32 + components: + - type: Transform + pos: 9.582893,-10.427349 + parent: 1 +- proto: ClothingShoesBootsMag + entities: + - uid: 33 + components: + - type: Transform + pos: 7.4689565,-24.638027 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 34 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 +- proto: CrateMaterialPlastic + entities: + - uid: 36 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: CrateMaterialSteel + entities: + - uid: 37 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 38 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 1 +- proto: GrenadeFlashBang + entities: + - uid: 39 + components: + - type: Transform + pos: 6.366265,-7.505484 + parent: 1 +- proto: Grille + entities: + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 +- proto: GunSafe + entities: + - uid: 49 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 50 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 +- proto: LockerEngineer + entities: + - uid: 51 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerMedicineFilled + entities: + - uid: 52 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 57 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1 +- proto: MagazinePistolHighCapacity + entities: + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.369757,-14.261001 + parent: 1 +- proto: MedicalBed + entities: + - uid: 59 + components: + - type: Transform + anchored: False + pos: 2.8285484,-14.406686 + parent: 1 + - type: Physics + bodyType: Dynamic + - type: Pullable + prevFixedRotation: True + - uid: 60 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: MedicalTechFabCircuitboard + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.6311746,-10.660069 + parent: 1 +- proto: NitrogenTank + entities: + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.6446414,-10.675311 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 6.516547,-12.56976 + parent: 1 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 64 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 +- proto: Rack + entities: + - uid: 65 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-22.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 +- proto: RCD + entities: + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.505287,-21.062263 + parent: 1 +- proto: RCDAmmo + entities: + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.630287,-23.276478 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5590377,-6.5940943 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4605143,-12.390623 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 10.41731,-6.455208 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.47435,-19.577469 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.57712,-18.496223 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.4781604,3.943285 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 1.93366,3.45891 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.3203936,-4.568426 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.564531,1.3057494 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.408281,4.4307494 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.752031,3.2432494 + parent: 1 +- proto: SheetGlass1 + entities: + - uid: 102 + components: + - type: Transform + pos: 1.174125,1.6015661 + parent: 1 + - type: Stack + count: 2 +- proto: SheetPlasteel + entities: + - uid: 103 + components: + - type: Transform + pos: 7.467553,-21.40242 + parent: 1 +- proto: SheetRGlass + entities: + - uid: 104 + components: + - type: Transform + pos: 6.6255116,-22.363388 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 105 + components: + - type: Transform + pos: 2.481829,2.482131 + parent: 1 + - type: Stack + count: 5 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.7649636,-20.245949 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.1555886,-19.777199 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 108 + components: + - type: Transform + pos: 7.545678,-23.350758 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 7.045678,-23.866383 + parent: 1 +- proto: SheetUranium + entities: + - uid: 110 + components: + - type: Transform + pos: 4.6705008,-21.613323 + parent: 1 + - type: Stack + count: 15 +- proto: SheetUranium1 + entities: + - uid: 111 + components: + - type: Transform + pos: 3.3580005,-19.404497 + parent: 1 + - type: Stack + count: 15 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 112 + components: + - type: Transform + pos: 2.341204,1.654006 + parent: 1 +- proto: SmokeGrenade + entities: + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.47645,-3.4574838 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 208 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 213 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 114 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 115 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 116 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: Thruster + entities: + - uid: 117 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-26.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-26.5 + parent: 1 +- proto: ToolboxEmergency + entities: + - uid: 121 + components: + - type: Transform + pos: 3.4984026,-21.399504 + parent: 1 +- proto: WallReinforced + entities: + - uid: 86 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-16.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-20.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-24.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 1 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 1 + - uid: 190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 1 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-25.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-26.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 +- proto: WeaponPistolMk58 + entities: + - uid: 203 + components: + - type: Transform + pos: 7.6092777,-13.635464 + parent: 1 +- proto: Welder + entities: + - uid: 204 + components: + - type: Transform + pos: 2.3113294,-0.47117472 + parent: 1 +- proto: WindoorAssemblySecure + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 206 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.0020947,-22.42578 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_bss_unluck.yml b/Resources/Maps/Ruins/corvax_bss_unluck.yml new file mode 100644 index 00000000000..fdeefbe9332 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_bss_unluck.yml @@ -0,0 +1,2899 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 106: FloorSteel + 121: FloorTechMaint + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -0.12092918,-0.5028126 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: nAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: agAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: nQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAagAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAnQAAAAAAeQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 144: 4,-2 + 145: 5,-3 + 146: 3,-6 + 200: 2,-3 + 745: 16,1 + 746: 1,-20 + 788: 0,-11 + 789: -1,-12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 153: 1,-2 + 156: -1,-3 + 157: 0,-3 + 158: 1,-6 + 163: 2,-6 + 164: 2,-7 + 165: 3,-7 + 170: 6,-3 + 176: 7,-2 + 177: 7,-3 + 184: -1,-6 + 185: 1,-8 + 188: 1,-9 + 191: -1,-9 + 192: 0,-9 + 196: -1,-7 + 197: 0,-7 + 749: 15,2 + 750: 17,0 + 756: 10,-3 + 765: 12,-3 + 766: 12,-3 + 767: 3,-13 + 770: -1,-11 + 774: 0,-17 + 781: 1,-14 + 782: 1,-14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 137: 0,-6 + 138: 2,-5 + 142: 0,-3 + 143: -1,-3 + 147: 2,-5 + 148: 3,-3 + 149: 2,-1 + 150: 2,0 + 154: 1,-5 + 155: 0,-4 + 159: 1,-6 + 160: 1,-6 + 166: 3,-7 + 167: 2,-5 + 168: 6,-3 + 169: 6,-4 + 175: 7,-1 + 181: 5,2 + 182: 4,1 + 183: -1,-6 + 189: -1,-9 + 193: 6,1 + 194: 1,-5 + 195: -1,-7 + 198: 2,-8 + 199: 3,-9 + 747: 1,-19 + 748: 15,2 + 751: 17,-1 + 752: 18,0 + 755: 11,1 + 758: 9,0 + 763: 15,-3 + 764: 11,-3 + 768: 0,-14 + 771: 0,-11 + 776: 3,-17 + 777: 3,-16 + 778: 3,-15 + 783: 2,-14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 139: 2,-3 + 161: 2,-6 + 162: 2,-6 + 179: 7,1 + 180: 5,1 + 190: -1,-9 + 753: 17,-2 + 754: 14,-3 + 757: 13,-1 + 761: 15,1 + 762: 15,-3 + 769: 0,-14 + 773: -1,-17 + 779: 3,-16 + 780: 3,-16 + 784: 3,-14 + 785: 1,-11 + 786: 3,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 140: 0,-2 + 141: 1,-3 + 151: 2,1 + 152: 0,1 + 171: 5,-2 + 172: 5,0 + 173: 6,-1 + 174: 7,-1 + 178: 7,-3 + 186: -1,-8 + 187: 1,-9 + 759: 15,1 + 760: 15,-2 + 772: -1,-16 + 775: 3,-17 + 787: 1,-11 + - node: + cleanable: True + color: '#78000092' + id: brush + decals: + 103: 0.8923254,-4.4985666 + 104: 1.1110754,-5.0610666 + - node: + cleanable: True + color: '#78000092' + id: dot + decals: + 47: 2.55821,-1.2720594 + 48: 2.62071,-1.2720594 + 49: 2.68321,-1.2720594 + 50: 2.77696,-1.2564344 + 51: 2.87071,-1.2408094 + 52: 2.96446,-1.2408094 + 53: 3.05821,-1.2564344 + 54: 3.198835,-1.2564344 + 55: 3.30821,-1.2564344 + 56: 3.417585,-1.2564344 + 57: 3.542585,-1.2564344 + 58: 3.230085,-1.2251844 + 59: 3.12071,-1.2095594 + 60: 2.55821,-0.74080944 + 61: 2.65196,-0.74080944 + 62: 2.71446,-0.75643444 + 63: 2.792585,-0.75643444 + 64: 2.90196,-0.75643444 + 65: 2.99571,-0.75643444 + 66: 3.08946,-0.77205944 + 67: 3.230085,-0.77205944 + 68: 3.30821,-0.77205944 + 69: 3.37071,-0.77205944 + 70: 3.43321,-0.78768444 + 71: 3.49571,-0.80330944 + 72: 3.52696,-0.80330944 + 73: 3.605085,-0.80330944 + 74: 3.71446,-0.81893444 + 75: 3.74571,-0.81893444 + 76: 3.96446,-0.83455944 + 77: 4.136335,-0.83455944 + 78: 4.30821,-0.83455944 + 79: 4.386335,-0.83455944 + 80: 3.667585,-1.2564344 + 81: 4.05821,-1.2720594 + 82: 4.12071,-1.2720594 + 83: 4.24571,-1.2720594 + 84: 4.417585,-1.2720594 + 85: 3.823835,-1.2876844 + 86: 3.80821,-1.2876844 + 111: 2.1061382,-5.442006 + 112: 1.5905132,-4.848256 + 114: 2.1530132,-6.082631 + 115: 1.3287451,-7.485402 + 117: 0.07874513,-5.797902 + 120: 0.7890017,-5.754034 + 121: 0.8358767,-7.082159 + 122: -0.19018978,-6.794079 + 123: 1.5966585,-1.0428543 + 124: 0.39353353,-1.5428543 + 125: 2.7060337,-2.8866043 + 126: 1.6236472,0.5821457 + 127: 4.154445,-0.2341302 + 128: 4.79507,-1.7018604 + 129: 3.9356952,-2.2174854 + 130: 5.498195,-0.7018604 + 131: 4.810695,0.07938957 + 132: 6.26382,-1.0924854 + 133: 2.373195,-0.31123543 + 134: 3.154445,-0.7643604 + 135: 5.435695,-2.7331104 + - node: + cleanable: True + color: '#96000015' + id: dot + decals: + 259: -0.33961105,-5.549608 + - node: + cleanable: True + color: '#9600002B' + id: dot + decals: + 215: 0.32365203,-6.2694874 + 216: 1.370527,-6.9726124 + 217: 2.276777,-5.0194874 + 218: 1.901777,-4.7382374 + 231: 2.134591,-3.36215 + 232: 3.118966,-2.909025 + 260: -0.37748462,-5.705858 + 261: -0.14310962,-5.596483 + 262: 0.18501538,-5.658983 + 263: -0.6899846,-5.612108 + 264: -0.8306096,-5.330858 + 265: -0.8149846,-5.237108 + 266: -0.8618596,-4.690233 + 267: -0.8618596,-4.549608 + 268: -1.1743596,-4.643358 + 269: -1.4087346,-4.533983 + 270: -1.0337346,-4.596483 + 271: -0.9399846,-4.596483 + 272: -0.9868596,-4.690233 + 273: -1.2212346,-4.783983 + 274: -1.3618596,-4.799608 + 275: -1.4243596,-4.783983 + 276: -1.0181096,-4.721483 + 277: -0.7681096,-4.768358 + 278: -1.0962346,-5.190233 + 279: -1.1899846,-5.158983 + 280: -1.2837346,-5.080858 + 281: -1.5181096,-4.924608 + 282: -1.1431096,-5.205858 + 283: -1.0181096,-5.237108 + 284: -0.7837346,-5.221483 + 285: 2.2437632,-5.6637936 + 286: 2.4625132,-5.6012936 + 287: 2.2437632,-5.5856686 + 288: 1.9625132,-5.5700436 + 289: 0.3780499,-6.0670166 + 290: -0.3250751,-6.0357666 + 291: -0.3875751,-5.8482666 + 292: 0.09679991,-5.7701416 + 293: 0.04992491,-5.5826416 + 294: 0.09679991,-5.7545166 + 295: -0.12195009,-5.7701416 + 296: 0.2842999,-6.0045166 + 297: -0.05945009,-5.9732666 + 298: -0.7157001,-5.9888916 + 299: -0.9188251,-5.6763916 + 300: -0.8407001,-5.6451416 + 301: -1.3719501,-5.4263916 + 302: -1.2938251,-5.1920166 + 303: -1.2469501,-5.0201416 + 304: -0.8250751,-5.2701416 + 305: -1.2000751,-5.3638916 + 306: -1.2469501,-5.3638916 + 307: -0.9032001,-4.585087 + 308: -1.2625751,-4.585087 + 309: 1.6436749,-4.975712 + 310: 1.8467999,-4.866337 + 311: 1.8155499,-4.772587 + 312: 1.8155499,-4.725712 + 313: 2.3624249,-3.271157 + 314: 2.7217999,-3.114907 + 315: 2.6124249,-2.958657 + 316: 2.7530499,-3.208657 + 317: 2.7842999,-2.849282 + 318: 1.7217999,-2.958657 + 319: 1.0186749,-2.583657 + 320: 0.81554985,-2.646157 + 321: 0.90929985,-2.583657 + 322: 0.4092999,-2.364907 + 323: 0.4405499,-2.333657 + 324: 0.2530499,-2.161782 + 325: 0.17492491,-1.974282 + 326: -1.3250751,-3.161782 + 327: 3.212628,-2.9804795 + 328: 2.759503,-3.1367295 + 329: 2.868878,-2.7929795 + 330: 2.978253,-2.6679795 + 331: 2.993878,-3.0742295 + 332: 2.962628,-3.1211045 + 333: 2.822003,-2.6679795 + 334: 2.2157247,-5.353855 + 335: 2.2313497,-5.30698 + 336: 2.1844747,-5.041355 + 337: 2.1219747,-4.697605 + 338: 1.1254675,-5.711954 + 339: 0.96921754,-5.821329 + 340: 1.2035925,-5.993204 + 341: 0.85984254,-5.930704 + 342: 0.87546754,-5.899454 + 343: 1.0942175,-5.774454 + 344: 1.0160925,-6.086954 + 345: -0.047445357,-6.118204 + 346: -0.10994536,-6.165079 + 347: -0.12557036,-6.086954 + 348: -0.32869536,-6.040079 + 349: -0.32869536,-6.274454 + 350: -0.20369536,-5.836954 + 351: -1.0630703,-5.743204 + 352: -0.89119536,-5.758829 + 353: -1.1411953,-5.680704 + 354: -1.0318203,-5.571329 + 355: -0.85994536,-6.0986586 + 356: -1.1411953,-6.1299086 + 357: -0.75057036,-6.2549086 + 358: 0.17130464,-6.4111586 + 359: 1.6400547,-6.2080336 + 360: 1.7963047,-6.2705336 + 361: 1.3744297,-6.3799086 + 362: 1.0931797,-6.5361586 + 363: 0.17130464,-6.4111586 + 364: 0.45255464,-6.2705336 + 365: 0.046304643,-6.0830336 + 366: -0.12557036,-6.2392836 + 367: 0.10880464,-6.2392836 + 368: -0.56307036,-6.5049086 + 369: -0.57869536,-6.4580336 + 370: -1.3755703,-6.3330336 + 371: 2.305039,-6.5937157 + 372: 1.7737889,-6.6093407 + 373: 1.9769139,-6.6405907 + 374: 1.3519139,-6.6249657 + 375: 1.0862889,-6.6562157 + 376: 0.8675389,-6.8124657 + 377: 0.5706639,-6.7030907 + 378: -0.96058613,-6.7030907 + 379: 0.8050389,-7.7968407 + 380: -0.72621113,-7.6718407 + 381: 0.9925389,-8.593716 + 382: 1.6487889,-5.490267 + 383: 1.6175389,-4.662142 + 384: 1.6956639,-4.755892 + 385: 0.6019139,-1.4601841 + 386: 0.44566387,-1.2414341 + 387: 0.33628887,-1.1320591 + 388: 0.47691387,-1.0695591 + 389: 0.11753887,-0.8039341 + 390: 1.4144139,-1.1945591 + 391: 1.2269139,-1.0851841 + 392: 1.1956639,-0.7883091 + 393: 1.7425389,-1.4133091 + 394: 1.1175389,-1.3664341 + 395: 0.33628887,-1.1008091 + 396: 0.008163869,-1.2414341 + 397: 1.0862889,-0.8351841 + 398: 1.3519139,-0.7570591 + 399: 1.6019139,-0.6476841 + 400: 1.9456639,-0.8664341 + 401: 2.101914,-0.6164341 + 402: 2.101914,-1.1320591 + 403: 3.6406722,-0.29148543 + 404: 3.5781722,0.14601457 + 405: 3.8594222,0.16163957 + 406: 3.8281722,0.33351457 + 407: 3.7500472,0.23976457 + 408: 4.312547,0.20851457 + 409: 4.812547,0.20851457 + 410: 4.859422,0.11476457 + 411: 4.968797,0.30226457 + 412: 5.171922,-0.7446104 + 413: 5.375047,-0.9946104 + 414: 5.390672,-0.5883604 + 415: 5.468797,-1.0883604 + 416: 5.593797,-1.3539854 + 417: 5.125047,-1.4477354 + 418: 5.140672,-1.8383604 + 419: 3.9219222,-1.5102354 + 420: 2.8437972,-1.2446104 + 421: 3.2344222,-1.3071104 + 422: 2.8594222,-1.1977354 + 423: 2.7969222,-1.0571104 + 424: 3.0937972,-1.0102354 + 425: 2.8281722,-0.9946104 + 426: 3.7165437,-1.4534736 + 427: 3.466544,-1.5784736 + 428: 3.6071687,-2.1722236 + 429: 3.9665437,-2.0003486 + 430: 3.9040437,-2.1097236 + 431: 4.6071687,-1.6253486 + 432: 4.3571687,-1.5159736 + 433: 4.6227937,-1.4534736 + 434: 3.154044,-1.2815986 + 435: 2.935294,-1.4222236 + 436: 2.669669,-0.90659857 + 437: 3.044669,-1.1565986 + 438: 3.154044,-0.78159857 + 439: 2.716544,-0.64097357 + 440: 3.013419,-0.65659857 + 441: 2.825919,-0.67222357 + 442: 2.685294,-1.3440986 + 443: 2.575919,-1.4065986 + 444: 2.263419,-1.1409736 + 445: 2.279044,-1.0784736 + 446: 2.138419,-0.65659857 + 447: 2.575919,-0.73472357 + 448: 4.1227937,-0.39097357 + 449: 3.7790437,-0.21909857 + 450: 3.6696687,-0.06284857 + 451: 3.200919,-0.40659857 + 452: 4.5602937,0.10902643 + 453: 5.1071687,0.32777643 + 454: 4.6071687,0.24965143 + 455: 5.1696687,-0.32847357 + 456: 5.0446687,-0.76597357 + 457: 4.4977937,-0.96909857 + 458: 4.9352937,-1.5159736 + 459: 4.5290437,-1.9690986 + 460: 5.8571687,-1.0315986 + 461: 6.0915437,-1.0940986 + 462: 6.1540437,-0.65659857 + 463: 6.2634187,-0.87534857 + 464: 5.5446687,-0.65659857 + 465: 5.7321687,-0.71909857 + 466: 5.0759187,-0.12534857 + 467: 5.1071687,-0.12534857 + 468: 4.4821687,-1.0628486 + 469: 4.6384187,-1.1878486 + 470: 3.9040437,-1.4847236 + 471: 3.5134187,-1.2815986 + 472: 3.279044,-1.3128486 + 473: 3.013419,-1.5003486 + 474: 2.982169,-1.5003486 + 475: 2.622794,-1.4534736 + 476: 3.044669,-1.0472236 + 477: 2.950919,-1.0159736 + 478: 3.279044,-1.0159736 + 479: 3.029044,-0.60972357 + 480: 2.935294,-0.65659857 + 481: 2.747794,-0.64097357 + 482: 2.607169,-0.59409857 + 483: 3.107169,-0.59409857 + 484: 3.466544,-0.34409857 + 485: 3.5602937,-0.031598568 + 486: 3.8727937,-0.29722357 + 487: 4.2477937,0.24965143 + 488: 4.8259187,0.34340143 + 489: 4.8259187,0.32777643 + 490: 5.1071687,0.32777643 + 491: 5.1696687,0.40590143 + 492: 4.5446687,-0.87534857 + 493: 4.8102937,-0.85972357 + 494: 4.6696687,-0.70347357 + 495: 4.7165437,-1.2815986 + 496: 4.7946687,-1.5784736 + 497: 4.3259187,-1.6878486 + 498: 4.6540437,-1.8909736 + 499: 4.3259187,-1.9065986 + 500: 3.419669,-1.7347236 + 501: 2.794669,-1.1097236 + 502: 2.419669,-1.0159736 + 503: 2.591544,-0.84409857 + 504: 2.810294,-0.78159857 + 505: 3.169669,-1.0315986 + 506: 2.982169,-0.71909857 + 507: 3.372794,-0.67222357 + 508: 3.482169,-0.45347357 + 509: 3.9509187,-0.25034857 + 510: 3.8884187,-0.015973568 + 511: 4.4040437,-0.62534857 + 512: 4.4977937,-0.43784857 + 513: 4.6071687,-0.10972357 + 514: 4.8415437,-1.1097236 + 515: 5.1696687,-0.67222357 + 516: 4.8884187,-0.96909857 + 517: 5.2946687,-1.0003486 + 518: 5.5759187,-0.85972357 + 519: 5.7165437,-1.1565986 + 520: 5.7477937,-0.93784857 + 521: 6.1071687,-0.95347357 + 522: 5.8259187,-1.4847236 + 523: 5.1696687,-1.7503486 + 524: 5.0134187,-2.1409736 + 525: 4.5759187,-1.9690986 + 526: 4.8102937,-1.6253486 + 527: 4.4977937,-1.2659736 + 528: 5.7321687,-1.1409736 + 529: 5.4040437,-0.59409857 + 530: 5.6071687,-0.85972357 + 531: 5.5446687,-0.81284857 + 532: 6.3102937,-1.1878486 + 533: 6.3884187,-0.78159857 + 534: 5.5446687,-1.2815986 + 535: 5.7790437,-1.5159736 + 536: 4.6540437,-1.3284736 + 537: 4.4040437,-0.81284857 + 538: 4.5602937,-1.7034736 + 539: 3.435294,-1.4222236 + 540: 2.982169,-1.3128486 + 541: 2.997794,-1.5628486 + 542: 3.216544,-1.3909736 + 543: 2.982169,-0.56284857 + 544: 2.904044,-0.95347357 + 545: 3.388419,-0.65659857 + 546: 3.6696687,-0.57847357 + 547: 3.6384187,-0.00034856796 + 548: 4.0759187,-1.0159736 + 549: 4.3884187,-1.5159736 + 550: 2.919669,-1.2347236 + 551: 3.013419,-1.2347236 + 552: 2.200919,-1.0003486 + 553: 1.9977939,-1.2815986 + 554: 2.013419,-0.67222357 + 555: 2.232169,-0.43784857 + 556: 1.7634189,0.15590143 + 557: 2.044669,0.062151432 + 558: 1.8571689,0.15590143 + 559: 2.122794,0.32777643 + 560: 1.8571689,0.48402643 + 561: 2.075919,0.42152643 + 562: 1.8727939,0.68715143 + 563: 1.9352939,0.24965143 + 564: 1.7009189,-0.047223568 + 565: 1.7165439,-0.32847357 + 566: 1.4352939,-0.92222357 + 567: 1.8102939,-1.2503486 + 568: 2.029044,-1.2972236 + 569: 3.341544,-1.2190986 + 570: 3.263419,-0.79722357 + 571: 3.404044,-1.1097236 + 572: 4.1384187,-1.3597236 + 573: 4.3259187,-0.54722357 + 574: 5.5759187,-1.3284736 + 575: 5.1540437,-0.45347357 + 576: 5.0602937,0.10902643 + 577: 5.2009187,0.17152643 + 578: 4.4196687,0.29652643 + 579: 4.0759187,0.030901432 + 580: 4.4040437,-0.71909857 + 581: 5.0290437,-1.8284736 + 582: 4.5134187,-1.8753486 + 583: 3.9821687,-1.2815986 + 584: 4.3415437,-1.8753486 + 585: 3.6227937,-1.7659736 + 586: 3.185294,-1.7347236 + 587: 3.435294,-1.0003486 + 588: 3.075919,-1.2972236 + 589: 2.622794,-1.3128486 + 590: 2.794669,-0.78159857 + 591: 2.060294,-1.2659736 + 592: 1.7634189,-1.0159736 + 593: 1.9665439,-1.1722236 + 594: 1.7009189,-1.1722236 + 595: 1.4509189,-0.85972357 + 596: 1.9509189,-1.4534736 + 597: 1.7165439,-1.7347236 + 598: 2.138419,-1.0315986 + 599: 2.763419,-0.96909857 + 600: 3.7009187,-1.3128486 + 601: 1.1852939,-0.93784857 + 602: 0.6071689,-0.98472357 + 603: 1.0602939,-0.93784857 + 604: 0.9040439,-1.5315986 + 605: 1.0134189,-1.4847236 + 606: 0.8884189,-1.5315986 + 607: 0.8259189,-2.1253486 + 608: -0.28345615,-2.0003486 + 609: 3.216544,-1.0159736 + 610: 4.3102937,-0.96909857 + 611: 3.7009187,-1.0784736 + 612: 2.950919,-1.3440986 + 613: 2.904044,-1.0940986 + 614: 2.732169,-0.57847357 + 615: 3.5290437,-0.84409857 + 616: 4.0915437,-0.29722357 + 617: 4.1071687,-1.1878486 + 618: 4.3102937,-1.3909736 + 619: 4.0134187,-1.7815986 + 620: 4.4509187,-1.4065986 + 621: 4.3727937,-1.0315986 + 622: 2.716544,-1.1722236 + 623: 3.357169,-1.5315986 + 624: 2.638419,-1.0159736 + 625: 3.7477937,-0.96909857 + 626: 4.5134187,-1.0940986 + 627: 3.6696687,-0.59409857 + 628: 4.1227937,-1.1565986 + 629: 4.2634187,-0.60972357 + 630: 3.5290437,-0.67222357 + 631: 3.341544,-1.2659736 + 632: 3.6071687,-1.4065986 + 633: 4.2634187,-1.3284736 + 634: 3.8102937,-1.4222236 + 635: 3.466544,-1.2972236 + 636: 3.5602937,-1.3440986 + 637: 3.091544,-1.1878486 + 638: 3.9196687,-0.64097357 + 639: 3.9977937,-0.29722357 + 640: 3.6852937,0.062151432 + 641: 4.0915437,-0.67222357 + 642: 3.029044,-0.67222357 + 643: 2.888419,-1.2034736 + 644: 2.716544,-1.1722236 + 645: 2.747794,-0.90659857 + 646: 2.950919,-1.2190986 + 647: 2.622794,-1.3440986 + 648: 2.794669,-1.1878486 + 649: 3.263419,-1.4378486 + 650: 2.966544,-1.4065986 + 651: 3.075919,-0.85972357 + 652: 3.450919,-1.1253486 + 653: 2.982169,-3.1565986 + 654: 2.982169,-3.3753486 + 655: 3.200919,-2.9534736 + 656: 3.9040437,-1.4222236 + 657: 3.7790437,-0.76597357 + 658: 3.9821687,-0.98472357 + 659: 2.982169,-0.65659857 + 660: 4.1852937,-1.3597236 + 661: 2.747794,-1.0784736 + 662: 3.7009187,-1.0315986 + 663: 2.622794,-0.57847357 + 664: 3.6071687,-1.0003486 + 665: 4.2790437,-0.25034857 + 666: 4.3259187,-0.90659857 + 667: 3.9977937,-1.1565986 + 668: 3.8571687,-1.3753486 + 669: 4.2321687,-1.5472236 + 670: 3.091544,-1.3128486 + 671: 4.6384187,-1.2659736 + 672: 3.8259187,-0.93784857 + 673: 3.232169,-0.95347357 + 674: 2.794669,-1.1565986 + 675: 2.950919,-1.4690986 + 676: 2.700919,-0.84409857 + 677: 3.263419,-0.71909857 + 678: 4.3727937,-0.29722357 + 679: 4.5759187,0.07777643 + 680: 5.1540437,0.07777643 + 681: 5.4977937,-0.17222357 + 682: 5.4040437,0.062151432 + 683: 5.3571687,-0.25034857 + 684: 5.3884187,0.15590143 + 685: 5.3727937,0.046526432 + 686: 5.2165437,0.37465143 + 687: 5.3415437,-0.26597357 + 688: 5.2009187,-0.68784857 + 689: 5.6227937,-0.93784857 + 690: 5.6540437,-1.7190986 + 691: 4.9821687,-1.7659736 + 692: 5.0602937,-2.2503486 + 693: 5.2165437,-2.0472236 + 694: 6.7009187,-1.0003486 + 695: 6.6071687,-1.3597236 + 696: 6.8259187,-0.73472357 + 697: 7.0915437,-1.1565986 + 698: 7.1852937,-1.7190986 + 699: 6.8571687,-2.5315986 + 700: 7.2009187,-2.8597236 + 701: 7.0915437,-3.4534736 + 702: 6.7946687,-2.4065986 + 703: 6.9196687,0.53090143 + 704: 6.4509187,0.79652643 + 705: 6.5446687,-0.18784857 + 706: 5.8415437,-0.20347357 + 707: 6.6852937,-0.047223568 + 708: 6.9509187,-0.29722357 + 709: 6.9665437,-0.35972357 + 710: 5.9977937,-0.21909857 + 711: 4.7165437,-1.0940986 + 712: 4.0915437,-0.73472357 + 713: 4.9040437,-0.56284857 + 714: 4.7321687,-0.00034856796 + 715: 4.4509187,-1.1253486 + 716: 3.435294,-1.1878486 + 717: 2.747794,-1.1722236 + 718: 3.091544,-0.75034857 + 719: 2.607169,-1.1565986 + 720: 2.575919,-0.93784857 + 721: 2.638419,-1.4534736 + 722: 4.1540437,-0.51597357 + 723: 3.8259187,0.10902643 + 724: 3.7634187,-0.54722357 + 725: 3.7790437,-0.047223568 + 726: 3.7009187,-0.51597357 + 727: 3.6540437,-0.43784857 + 728: 3.5446687,-0.29722357 + 729: 3.9040437,-0.57847357 + 730: 4.2634187,0.18715143 + 731: 4.5134187,-0.84409857 + 732: 4.1071687,-1.0784736 + 733: 4.1384187,-1.8909736 + 734: 4.7790437,-1.4222236 + 735: 5.0915437,-2.3440986 + 736: 4.9040437,-1.5784736 + 737: 4.8415437,-1.5472236 + 738: 3.357169,-0.73472357 + 739: 4.1696687,-1.3128486 + 740: 2.560294,-0.93784857 + 741: 3.450919,-1.2503486 + - node: + cleanable: True + color: '#9600005A' + id: dot + decals: + 213: 1.308027,-5.6444874 + 214: 1.308027,-6.0351124 + - node: + cleanable: True + color: '#9600005D' + id: dot + decals: + 233: 0.052493036,-1.690275 + 234: 1.2243681,-2.534025 + 235: 0.6931181,-2.5184 + 236: 3.1820054,-2.6687124 + - node: + cleanable: True + color: '#9600008B' + id: dot + decals: + 245: -0.9792768,-5.376046 + 246: -0.6824018,-5.813546 + 247: -0.6980268,-5.922921 + 248: -0.7136518,-6.063546 + 249: -1.2917768,-4.699971 + 250: -1.2605268,-5.890854 + 251: -0.6511518,-5.2064857 + 252: 2.2482328,-4.671648 + 253: -0.98023605,-6.3843737 + 254: -0.21461105,-5.7281237 + 255: 0.28538895,-5.5874987 + 256: -0.058361053,-5.5562487 + 257: -0.07398605,-5.8062487 + 258: 0.25413895,-5.7906237 + - node: + cleanable: True + color: '#78000092' + id: largebrush + decals: + 97: -0.03584072,-4.0066214 + - node: + cleanable: True + color: '#96000044' + id: largebrush + decals: + 237: -0.98958784,-4.0219812 + 238: -0.020837843,-4.9751062 + - node: + cleanable: True + color: '#78000088' + id: smallbrush + decals: + 15: 1.0540526,-3.7689893 + 16: 1.1478026,-4.0658646 + 17: 0.9290526,-3.8939893 + - node: + cleanable: True + color: '#78000092' + id: smallbrush + decals: + 23: 2.0241055,-1.3779964 + 24: 1.9303555,-1.5654964 + 25: 2.3053555,-1.6592464 + 26: 0.5951381,-0.92070365 + 27: 0.8138881,-0.85820365 + 28: 2.001388,-0.31132865 + 29: 1.7670131,-0.35820365 + 35: -0.51387954,-3.2748342 + 36: -0.17012954,-2.7123342 + 37: -0.42012954,-2.8529592 + 38: -0.77950454,-2.9154592 + 39: 0.23507625,-2.7435842 + 40: 0.04757625,-2.4310842 + 89: 3.5452275,-1.2926121 + 90: 3.4514778,-0.8394871 + 91: 4.0608525,-1.4176121 + 92: 3.8264775,-1.6207371 + 93: 4.1077275,-1.7144871 + 94: 3.9046025,-0.5381273 + 96: 0.47834677,-3.3919232 + 98: -0.3081416,-3.4658477 + 99: 0.03560841,-3.4033477 + 100: 0.5356084,-3.6377227 + 101: 0.5199834,-3.9814727 + 102: 0.5981084,-4.403348 + 105: 1.1827676,-4.715436 + 106: 0.7921426,-4.840436 + 107: 1.7140176,-5.8054104 + 110: 1.9030132,-5.0368643 + 119: 0.9456501,-6.347784 + - node: + cleanable: True + color: '#9600002B' + id: smallbrush + decals: + 219: 1.354902,-4.368251 + 220: 2.620527,-3.2989776 + 221: 1.526777,-2.6427276 + 222: 0.37052703,-1.9239776 + 223: 2.4110901,-2.5685623 + 224: 1.7079651,-0.8678169 + 225: 1.3329651,-1.6334419 + 226: 1.0048401,-2.383442 + 227: 2.3150873,0.2422502 + 228: 0.31433803,-4.894271 + 229: 1.251838,-2.752775 + 230: 1.7987132,-3.034025 + - node: + cleanable: True + color: '#9600008B' + id: smallbrush + decals: + 241: -0.66541606,-4.6534033 + 242: -1.102916,-4.9659033 + 243: -0.74354106,-4.9971533 + 244: -0.63416606,-5.4502783 + - node: + cleanable: True + color: '#78000092' + id: splatter + decals: + 87: 4.232664,-1.0064344 + 88: 3.763914,-1.0064344 + - node: + cleanable: True + color: '#780000A4' + id: splatter + decals: + 1: -0.045004785,-3.118837 + 4: 1.9335353,-2.2576964 + 5: 1.0297964,-3.16798 + 14: 0.76408553,-4.096691 + - node: + cleanable: True + color: '#96000012' + id: splatter + decals: + 208: 0.65296984,-3.1754196 + 209: 1.5592198,-5.2919073 + - node: + cleanable: True + color: '#96000028' + id: splatter + decals: + 201: 1.2009451,-3.741161 + 202: 0.54469514,-4.8192863 + 203: -0.6896799,-2.741161 + 204: -0.18967992,-2.350536 + 205: 0.56032014,-3.069286 + 206: 1.4665701,-3.522411 + 207: 0.57594514,-5.2220974 + - node: + cleanable: True + color: '#9600002B' + id: splatter + decals: + 742: 3.6896195,-1.3703244 + 743: 3.4864943,-0.6984494 + 744: 4.2499337,-0.5763595 + - node: + cleanable: True + color: '#9669002E' + id: splatter + decals: + 210: 0.18302703,-3.8032272 + 211: -0.551348,-3.3032272 + 212: 0.37052703,-2.9751022 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyCargoGlass + entities: + - uid: 2 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: AirlockCargoGlass + entities: + - uid: 3 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 4 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 +- proto: AirlockMaintCargoLocked + entities: + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-17.5 + parent: 1 +- proto: AtmosDeviceFanTiny + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 24 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: CableApcStack + entities: + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.300065,-0.41759467 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 85 + components: + - type: Transform + pos: 0.63987535,-0.39234328 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5617504,-0.43921828 + parent: 1 +- proto: CableApcStack10 + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.645796,0.43968558 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 17.395796,-0.5134394 + parent: 1 +- proto: CableHV + entities: + - uid: 89 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 +- proto: CableHVStack + entities: + - uid: 97 + components: + - type: Transform + pos: 14.2353525,0.3484378 + parent: 1 +- proto: CableHVStack10 + entities: + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.051866,-18.469288 + parent: 1 +- proto: CableMV + entities: + - uid: 99 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.239366,-18.359913 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.426866,-18.734913 + parent: 1 +- proto: CableMVStack10 + entities: + - uid: 111 + components: + - type: Transform + pos: 17.748692,-0.20093942 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 15.103122,0.070394605 + parent: 1 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.446872,-0.39835536 + parent: 1 + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.321872,-1.0389804 + parent: 1 +- proto: Catwalk + entities: + - uid: 115 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 148 + components: + - type: Transform + anchored: False + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - type: Physics + bodyType: Dynamic +- proto: ComputerBroken + entities: + - uid: 149 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 150 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 +- proto: CrateFilledSpawner + entities: + - uid: 151 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: CrateGenericSteel + entities: + - uid: 154 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 155 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateJanitorBiosuit + entities: + - uid: 156 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 +- proto: CrateMaterialPlastic + entities: + - uid: 157 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 +- proto: Girder + entities: + - uid: 158 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,2.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 167 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 +- proto: Grille + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,2.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: LiquidNitrogenCanister + entities: + - uid: 180 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 182 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 246 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 +- proto: OrganDionaLungs + entities: + - uid: 186 + components: + - type: Transform + pos: 1.3371437,-2.9962976 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 2.352769,0.37380576 + parent: 1 +- proto: OrganHumanBrain + entities: + - uid: 188 + components: + - type: Transform + pos: 1.2590187,-3.6474159 + parent: 1 +- proto: OrganHumanHeart + entities: + - uid: 189 + components: + - type: Transform + pos: 0.7902687,-2.8677423 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 2.868394,-0.522249 + parent: 1 +- proto: OrganHumanKidneys + entities: + - uid: 191 + components: + - type: Transform + pos: 0.44651872,-2.4337976 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 2.649644,-1.0013709 + parent: 1 +- proto: OrganHumanLiver + entities: + - uid: 193 + components: + - type: Transform + pos: 1.6027687,-2.3721097 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 1.1965187,-0.2357459 + parent: 1 +- proto: OrganHumanStomach + entities: + - uid: 195 + components: + - type: Transform + pos: 2.4106908,-1.7237439 + parent: 1 +- proto: PlasmaCanister + entities: + - uid: 196 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 +- proto: PortableGeneratorPacman + entities: + - uid: 197 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 +- proto: PowerCellHighPrinted + entities: + - uid: 298 + components: + - type: Transform + pos: 1.7740796,-18.213814 + parent: 1 +- proto: Poweredlight + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 +- proto: Rack + entities: + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 1 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 210 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.726791,-1.5641968 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.258041,0.29517817 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 214 + components: + - type: Transform + pos: 4.586166,0.57137585 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.645113,-2.5530493 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.448637,1.5633078 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.2293942,0.28202724 + parent: 1 +- proto: Screwdriver + entities: + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.451817,-0.9601784 + parent: 1 +- proto: ShardGlass + entities: + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.6024676,-2.5734663 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5352721,1.4621407 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 0.489994,-1.6306221 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 1.114994,-2.4118721 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.6069482,-7.5428343 + parent: 1 +- proto: SheetSteel + entities: + - uid: 224 + components: + - type: Transform + pos: -0.1572774,-15.96182 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 0.3895976,-16.383694 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 226 + components: + - type: Transform + pos: 2.4967716,-2.4453056 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.354815,-3.562369 + parent: 1 + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5266898,-3.499869 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 1.4931829,-0.5366583 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 0.3443405,-0.50676465 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 3.5646992,-5.8276234 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 232 + components: + - type: Transform + pos: 0.7489726,-15.759198 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 0.4520976,-15.565394 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -0.2510274,-14.68057 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-3.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 185 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 181 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 242 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 +- proto: Thruster + entities: + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 1 +- proto: ToolboxElectrical + entities: + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.59874105,-18.402225 + parent: 1 +- proto: WallmountSubstationElectronics + entities: + - uid: 244 + components: + - type: Transform + pos: 2.5084546,-18.317713 + parent: 1 +- proto: WallShuttle + entities: + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-2.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,1.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 1 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 1 + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-20.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-19.5 + parent: 1 + - uid: 280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 + - uid: 281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 1 + - uid: 286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,1.5 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-3.5 + parent: 1 + - uid: 300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 1 + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 1 + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + - uid: 304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 1 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 1 + - uid: 306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 +- proto: WallShuttleInterior + entities: + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-2.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-1.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 +- proto: Wirecutter + entities: + - uid: 325 + components: + - type: Transform + pos: 17.59721,-1.5514469 + parent: 1 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.322114,-18.815619 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_gas_station.yml b/Resources/Maps/Ruins/corvax_gas_station.yml new file mode 100644 index 00000000000..1210ea7b030 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_gas_station.yml @@ -0,0 +1,4526 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 2: FloorAsphalt + 12: FloorAstroGrass + 4: FloorAstroIce + 3: FloorAstroSnow + 5: FloorDark + 6: FloorDarkPlastic + 7: FloorFreezer + 1: FloorWhite + 136: FloorWoodLargeLight + 138: FloorWoodLight + 139: FloorWoodParquet + 146: Lattice + 147: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: Gas station + - type: Transform + pos: 0.390625,-0.390625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAABQAAAAAAkwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAABAAAAAAAkwAAAAAABQAAAAAABQAAAAAABQAAAAAAkwAAAAAABQAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAkwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAABAAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 49: -5,3 + 50: -4,3 + 51: -3,3 + 83: -5,-10 + 85: -4,-10 + 86: -3,-10 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 110: -6,-1 + 111: -6,-3 + 112: -6,-4 + 113: -6,-6 + 114: -2,-6 + 115: -2,-4 + 116: -2,-3 + 117: -2,-1 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Bot + decals: + 52: 7,5 + 53: 7,4 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 108: -4,-2 + 109: -4,-5 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 142: -5,-8 + 143: -3,-8 + 144: -5,1 + 145: -3,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 135: -7,-2 + 136: -7,-5 + 137: -7,-7 + 141: -4,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 132: -1,-7 + 133: -1,-5 + 134: -1,-2 + 140: -4,-7 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 126: -7,0 + 127: -7,-2 + 128: -7,-5 + 138: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 129: -1,0 + 130: -1,-2 + 131: -1,-5 + 139: -4,0 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 59: 7,-14 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 54: 1,-9 + 55: 8,-9 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 56: 1,-13 + 57: 8,-13 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 58: 2,-14 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 71: 8,-12 + 72: 8,-11 + 73: 8,-10 + 74: 1,-12 + 75: 1,-11 + 76: 1,-10 + 95: -2,-2 + 98: -2,-5 + 118: -7,-1 + 119: -7,-3 + 120: -7,-4 + 121: -7,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 67: 3,-14 + 68: 4,-14 + 69: 5,-14 + 70: 6,-14 + 100: -6,0 + 101: -5,0 + 102: -2,0 + 103: -3,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 77: 1,-12 + 78: 1,-11 + 79: 1,-10 + 80: 8,-12 + 81: 8,-11 + 82: 8,-10 + 89: -6,-2 + 92: -6,-5 + 122: -1,-6 + 123: -1,-4 + 124: -1,-3 + 125: -1,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 60: 3,-14 + 64: 4,-14 + 65: 5,-14 + 66: 6,-14 + 104: -6,-7 + 105: -5,-7 + 106: -3,-7 + 107: -2,-7 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 233 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 317 + - 469 + - 329 + - 494 + - 167 + - 324 + - uid: 273 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 635 + - 513 +- proto: AirCanister + entities: + - uid: 501 + components: + - type: Transform + anchored: True + pos: 9.5,3.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: AirlockGlass + entities: + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 140 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 +- proto: AppraisalTool + entities: + - uid: 517 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 +- proto: AtmosDeviceFanTiny + entities: + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 669 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: BarSign + entities: + - uid: 651 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 +- proto: BaseComputer + entities: + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 608 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 12 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 238 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 +- proto: CableHV + entities: + - uid: 38 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 +- proto: CableMV + entities: + - uid: 119 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 244 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 663 + components: + - type: Transform + parent: 662 + - type: Physics + canCollide: False +- proto: CigPackMixed + entities: + - uid: 662 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: Storage + storedItems: + 663: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 663 +- proto: ClockworkGrille + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 605 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 24 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 26 + - 25 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 154 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 159 + - 158 + - 157 + - 156 + - 155 + - 160 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 278 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 280 + - 279 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 281 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 282 + - 283 + - 284 + - 285 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 286 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 289 + - 288 + - 287 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 337 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 338 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateWeb + entities: + - uid: 66 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 67 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DogBed + entities: + - uid: 109 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 338 + components: + - type: Transform + parent: 337 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkWaterCup + entities: + - uid: 520 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 +- proto: FloorLiquidPlasmaEntity + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 355 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - uid: 372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 2 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 2 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 2 + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - uid: 453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 + - uid: 454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - uid: 589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + - uid: 590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - uid: 645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 342 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 152 + components: + - type: Transform + pos: 5.6937675,-5.3144565 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 611 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 +- proto: FoodBreadBanana + entities: + - uid: 530 + components: + - type: Transform + pos: 5.6592984,-4.2648087 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 347 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 +- proto: FoodBreadPlain + entities: + - uid: 149 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 +- proto: FoodButter + entities: + - uid: 160 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleBBQ + entities: + - uid: 285 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleColdsauce + entities: + - uid: 284 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 282 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 283 + components: + - type: Transform + parent: 281 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCondimentPacketCornoil + entities: + - uid: 349 + components: + - type: Transform + pos: 7.7643976,-4.5644565 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 7.2956476,-4.2832065 + parent: 2 +- proto: FoodContainerEgg + entities: + - uid: 155 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 159 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodDonutCaramel + entities: + - uid: 664 + components: + - type: Transform + pos: 7.7401943,-5.202919 + parent: 2 +- proto: FoodDonutJellySlugcat + entities: + - uid: 626 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 +- proto: FoodFrozenFreezy + entities: + - uid: 279 + components: + - type: Transform + parent: 278 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 287 + components: + - type: Transform + parent: 286 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 289 + components: + - type: Transform + parent: 286 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 288 + components: + - type: Transform + parent: 286 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 25 + components: + - type: Transform + parent: 24 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 26 + components: + - type: Transform + parent: 24 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 280 + components: + - type: Transform + parent: 278 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMealPigblanket + entities: + - uid: 316 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 2.1956058,-1.4374362 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 2.5237308,-1.2030612 + parent: 2 +- proto: FoodSnackBoritos + entities: + - uid: 297 + components: + - type: Transform + pos: 1.6885266,0.6179838 + parent: 2 +- proto: FoodSnackCheesie + entities: + - uid: 522 + components: + - type: Transform + pos: 2.6885266,0.44610882 + parent: 2 +- proto: FoodSnackChips + entities: + - uid: 298 + components: + - type: Transform + pos: 2.3447766,0.36798382 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 2.4541516,0.5867338 + parent: 2 +- proto: FoodSnackChocolate + entities: + - uid: 164 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 3.5010266,0.7039438 + parent: 2 +- proto: FoodSnackCnDs + entities: + - uid: 29 + components: + - type: Transform + pos: 1.3604016,0.43048382 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 523 + components: + - type: Transform + pos: 3.6729016,0.4070688 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 101 + components: + - type: Transform + pos: 0.5,4.5 + parent: 2 +- proto: GasMinerPlasma + entities: + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' +- proto: GasPipeBend + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 168 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 + - uid: 386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' +- proto: GasPipeFourway + entities: + - uid: 456 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 1 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 30 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 130 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 301 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 397 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 398 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - uid: 459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 484 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 489 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 300 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 +- proto: GasPort + entities: + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 2 + - type: GasPressurePump + targetPressure: 15 + - type: AtmosPipeColor + color: '#A505FAFF' + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - uid: 542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 +- proto: GasVentScrubber + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 233 + - uid: 513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 273 +- proto: GeneratorRTG + entities: + - uid: 108 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 +- proto: Igniter + entities: + - uid: 692 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 521 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 656 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 +- proto: PartRodMetal1 + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5581127,-8.077557 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.4956126,-1.9603686 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.7299876,-1.3275561 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 60 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: PlasmaWindow + entities: + - uid: 7 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 640 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 +- proto: PosterContrabandDonk + entities: + - uid: 659 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 +- proto: PosterContrabandDonutCorp + entities: + - uid: 613 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 658 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 +- proto: PosterContrabandRobustSoftdrinks + entities: + - uid: 497 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 +- proto: PosterContrabandSmoke + entities: + - uid: 320 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 +- proto: PosterContrabandSpaceCola + entities: + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 2 +- proto: PosterContrabandSpaceUp + entities: + - uid: 531 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 +- proto: PosterContrabandSunkist + entities: + - uid: 625 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 +- proto: PosterLegitFruitBowl + entities: + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 +- proto: Rack + entities: + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: Railing + entities: + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-14.5 + parent: 2 + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 2 + - uid: 568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + - uid: 588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 +- proto: RailingRound + entities: + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 21 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 295 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 406 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 +- proto: ReagentContainerCornmealSmall + entities: + - uid: 157 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerFlourSmall + entities: + - uid: 156 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReagentContainerOliveoil + entities: + - uid: 606 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: ReagentContainerSugarSmall + entities: + - uid: 158 + components: + - type: Transform + parent: 154 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ReinforcedGirder + entities: + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 +- proto: ShardGlassPlasma + entities: + - uid: 315 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 +- proto: SheetPlasma10 + entities: + - uid: 67 + components: + - type: Transform + parent: 66 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SignalButton + entities: + - uid: 691 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 692: + - Pressed: Trigger +- proto: SignFire + entities: + - uid: 292 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 +- proto: SignRedOne + entities: + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 +- proto: SignRedTwo + entities: + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 +- proto: SignShock + entities: + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 405 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 499 + components: + - type: Transform + anchored: True + pos: 9.5,2.5 + parent: 2 + - type: Physics + bodyType: Static +- proto: SubstationBasic + entities: + - uid: 225 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 +- proto: SurveillanceCameraConstructed + entities: + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 2 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 + - uid: 660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 2 +- proto: Table + entities: + - uid: 53 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 245 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 +- proto: WallRockSnow + entities: + - uid: 9 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 +- proto: WallRockSnowPlasma + entities: + - uid: 75 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 2 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,0.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-7.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 2 + - uid: 256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 2 +- proto: WeldingFuelTankHighCapacity + entities: + - uid: 27 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 +- proto: WindoorServiceLocked + entities: + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 +- proto: Wrench + entities: + - uid: 652 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_hotel_trivago.yml b/Resources/Maps/Ruins/corvax_hotel_trivago.yml new file mode 100644 index 00000000000..dfd9309af1c --- /dev/null +++ b/Resources/Maps/Ruins/corvax_hotel_trivago.yml @@ -0,0 +1,8538 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidIronsand + 4: FloorAsteroidSandRed + 12: FloorAstroGrass + 15: FloorFreezer + 5: FloorGlass + 6: FloorLaundry + 9: FloorRGlass + 3: FloorSteelCheckerLight + 11: FloorWood + 10: FloorWoodBlack + 1: FloorWoodChess + 13: FloorWoodChessDark + 16: FloorWoodChessRed + 14: FloorWoodLarge + 136: FloorWoodLargeLight + 138: FloorWoodLight + 139: FloorWoodParquet + 8: FloorWoodParquetDark + 2: FloorWoodTile + 146: Lattice + 147: Plating + 17: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: "" + - type: Transform + pos: 0.390625,-0.390625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAACAAAAAAACQAAAAAACAAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABwAAAAAABwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACgAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAACwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAkwAAAAAACAAAAAAACQAAAAAACAAAAAAAkwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAAkwAAAAAACQAAAAAACAAAAAAACQAAAAAAkwAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAkwAAAAAACAAAAAAACQAAAAAACAAAAAAAkwAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAACQAAAAAACAAAAAAACQAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: BAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAABAAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAkwAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAkwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAAwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAwAAAAAAkwAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAADwAAAAAADwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAADwAAAAAAkwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAADwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABAAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAABQAAAAAABAAAAAAABAAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADQAAAAAABQAAAAAABAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAABQAAAAAABAAAAAAAAQAAAAAAkwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAiwAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAkwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAkwAAAAAADgAAAAAAkwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAEQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 143: -22,-15 + 153: -17,7 + 165: 13,-13 + 195: -4,16 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 145: -22,-13 + 155: -22,0 + 164: 12,-14 + 212: -9,4 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 172: -6,-24 + 173: -1,-29 + 184: 12,-20 + 185: 3,-28 + 186: -16,-22 + 187: -3,-6 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 188: 5,-6 + 189: 9,-8 + 190: -15,3 + 192: -1,-16 + 194: 0,15 + - node: + color: '#FFA500FF' + id: Basalt6 + decals: + 221: -4.1510906,-9.321376 + - node: + color: '#FFFFFFFF' + id: Basalt6 + decals: + 156: -22,1 + 157: -16,8 + 158: -14,10 + 159: -8,12 + 160: 11,7 + 161: 12,-5 + 167: 5,-25 + 168: 6,-24 + 169: -2,-26 + 170: -9,-27 + 174: 5,-11 + 210: 3,6 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Basalt6 + decals: + 175: 5,-13 + 176: -2,-7 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 162: 11,-6 + 163: 10,-13 + 166: 6,-25 + 171: -9,-26 + 211: 4,4 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Basalt7 + decals: + 177: -12,-6 + 178: 0,-15 + 179: -9,-24 + 180: -16,-19 + 181: -22,-5 + 182: -4,12 + 183: 7,12 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 144: -21,-14 + 154: -21,2 + 191: 6,-14 + 213: -13,5 + 214: 6,-9 + - node: + color: '#A88661FF' + id: BrickTileSteelLineE + decals: + 84: 0,-13 + 85: 0,-12 + 86: 0,-11 + 87: 0,-10 + 88: 0,-9 + - node: + color: '#A88661FF' + id: BrickTileSteelLineN + decals: + 97: 1,-14 + 98: 2,-14 + 99: 3,-14 + - node: + color: '#A88661FF' + id: BrickTileSteelLineS + decals: + 89: 1,-8 + 90: 2,-8 + 91: 3,-8 + - node: + color: '#A88661FF' + id: BrickTileSteelLineW + decals: + 92: 4,-9 + 93: 4,-10 + 94: 4,-11 + 95: 4,-12 + 96: 4,-13 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 215: 1,9 + 216: -2,8 + 217: 4,9 + 218: 4,10 + 219: -9,-11 + 220: -8,-12 + - node: + color: '#FFFFFFFF' + id: Rock06 + decals: + 147: -13,-21 + 148: 11,-12 + 149: 11,-5 + 150: 9,8 + 151: 3,14 + 152: -11,12 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 201: 1,6 + 202: 0,6 + 203: -1,6 + 204: -3,6 + 205: -4,6 + 206: -5,6 + - node: + color: '#2E211AFF' + id: WoodTrimThinBoxWhite + decals: + 74: 7,-1 + 75: 8,0 + 76: 9,-1 + 77: 7,-3 + 78: 8,-4 + 79: 9,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 141: -3,2 + - node: + angle: 2.3387411976724017 rad + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 208: -6,6 + - node: + angle: 2.3736477827122884 rad + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 118: 0.7794962,-4.010826 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerNeWhite + decals: + 61: 9,0 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerNwWhite + decals: + 60: 7,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 142: -3,-4 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerSeWhite + decals: + 63: 9,-4 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 129: -8,-4 + - node: + angle: 0.9773843811168246 rad + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 122: -6.951115,1.8189223 + - node: + color: '#2E211AFF' + id: WoodTrimThinCornerSwWhite + decals: + 62: 7,-4 + - node: + color: '#2E211AFF' + id: WoodTrimThinEndEWhite + decals: + 81: 9,-2 + 82: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 107: -1,-3 + 112: 5,-3 + 116: 1,2 + 117: 3,2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 106: -1,-5 + 113: 5,-5 + 114: 1,1 + 115: 3,1 + - node: + color: '#2E211AFF' + id: WoodTrimThinEndWWhite + decals: + 80: 7,-2 + 83: 8,-2 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerNeWhite + decals: + 56: 8,-3 + 70: 8,-1 + - node: + angle: 2.3387411976724017 rad + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 207: -10,5 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerNwWhite + decals: + 57: 8,-3 + 71: 8,-1 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerSeWhite + decals: + 54: 8,-3 + 72: 8,-1 + - node: + color: '#2E211AFF' + id: WoodTrimThinInnerSwWhite + decals: + 53: 8,-3 + 73: 8,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 108: -1,-4 + 111: 5,-4 + 134: -3,-3 + 135: -3,-2 + 136: -3,-1 + 137: -3,0 + 138: -3,1 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineEWhite + decals: + 59: 7,-3 + 67: 7,-1 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 139: -5,2 + 140: -4,2 + - node: + angle: 2.3736477827122884 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 119: 3.5497265,-4.5978947 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineNWhite + decals: + 51: 8,-4 + 68: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 130: -7,-4 + 132: -5,-4 + 133: -4,-4 + 196: -4,4 + 197: -5,4 + - node: + angle: 0.22689280275926285 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 131: -6,-4 + - node: + angle: 0.9773843811168246 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 121: -7.831718,2.2775698 + - node: + angle: 2.3387411976724017 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 209: 2,6 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineSWhite + decals: + 52: 8,0 + 69: 8,-2 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 109: -1,-4 + 110: 5,-4 + 123: -8,2 + 124: -8,1 + 125: -8,0 + 127: -8,-2 + 128: -8,-3 + 198: -1,1 + 199: -1,0 + 200: -1,-1 + - node: + angle: 0.9773843811168246 rad + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 120: -6.03382,1.011703 + - node: + color: '#2E211AFF' + id: WoodTrimThinLineWWhite + decals: + 58: 9,-3 + 66: 9,-1 + - node: + color: '#FFFFFFFF' + id: pawprint + decals: + 146: -5,-20 + - node: + color: '#4B362BFF' + id: skull + decals: + 105: -2,14 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyCargo + entities: + - uid: 42 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 +- proto: AirlockAssemblyCargoGlass + entities: + - uid: 47 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 397 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 +- proto: AirlockFreezer + entities: + - uid: 835 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-2.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 +- proto: APCConstructed + entities: + - uid: 1327 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 +- proto: Ash + entities: + - uid: 173 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 837 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 +- proto: BarSignTheSun + entities: + - uid: 1162 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 +- proto: BeachBall + entities: + - uid: 887 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 +- proto: Bed + entities: + - uid: 537 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 +- proto: BedsheetBrown + entities: + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 +- proto: BookExpensiveCrystal + entities: + - uid: 1241 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 +- proto: BookFaks + entities: + - uid: 510 + components: + - type: Transform + parent: 509 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookRandom + entities: + - uid: 504 + components: + - type: Transform + pos: -5.272554,-1.3500719 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 496 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 +- proto: BookTheBookOfControl + entities: + - uid: 500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.4793024,-1.2327943 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 845 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 4 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 233 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 308 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 326 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 348 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 349 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 +- proto: CableHV + entities: + - uid: 411 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 +- proto: CableHVStack1 + entities: + - uid: 432 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 +- proto: CableMV + entities: + - uid: 415 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -11.5,1.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -14.5,1.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -3.5,5.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 +- proto: CableMVStack1 + entities: + - uid: 1328 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 +- proto: Carpet + entities: + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - uid: 815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + - uid: 817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 818 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 2 + - uid: 821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 2 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 2 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 +- proto: CarpetChapel + entities: + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 2 + - uid: 482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 2 + - uid: 490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-1.5 + parent: 2 + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 528 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-15.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 531 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 2 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - uid: 534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 275 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,2.5 + parent: 2 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 +- proto: ClosetWallBlack + entities: + - uid: 330 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - type: EntityStorage + open: True + - uid: 345 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 1163 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 +- proto: ClothingHandsGlovesHop + entities: + - uid: 1418 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 282 + components: + - type: Transform + pos: 5.5224385,10.640079 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 281 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 +- proto: ClothingHeadHatBrownFlatcap + entities: + - uid: 284 + components: + - type: Transform + pos: 3.3349385,10.827579 + parent: 2 +- proto: ClothingOuterHardsuitEVA + entities: + - uid: 1435 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 +- proto: ClothingShoesAerostatic + entities: + - uid: 261 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 +- proto: ClothingUniformJumpsuitAerostatic + entities: + - uid: 1 + components: + - type: Transform + parent: 345 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Coal1 + entities: + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.204493,10.211201 + parent: 2 + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.492514,-1.2935748 + parent: 2 + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.309055,-1.4953797 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.474168,2.7241764 + parent: 2 +- proto: ComfyChair + entities: + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 545 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 +- proto: CrateFoodCooking + entities: + - uid: 1002 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 +- proto: CrateServiceFaxMachine + entities: + - uid: 509 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 510 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateStoneGrave + entities: + - uid: 289 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: CrowbarOrange + entities: + - uid: 550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.364371,2.2004685 + parent: 2 + - uid: 551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.758957,-1.5054023 + parent: 2 +- proto: CrystalBlue + entities: + - uid: 1244 + components: + - type: Transform + pos: -12.5,9.5 + parent: 2 +- proto: CrystalCyan + entities: + - uid: 1230 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 +- proto: CrystalGreen + entities: + - uid: 1243 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 1226 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 681 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 +- proto: CrystalSpawner + entities: + - uid: 1150 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 +- proto: CurtainsBlack + entities: + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 +- proto: CurtainsBlackOpen + entities: + - uid: 115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 +- proto: CutterMachine + entities: + - uid: 97 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 +- proto: CyberPen + entities: + - uid: 576 + components: + - type: Transform + pos: -4.5784683,-3.666356 + parent: 2 +- proto: DeskBell + entities: + - uid: 564 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 +- proto: DiceBag + entities: + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 1318 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 +- proto: DisposalMachineFrame + entities: + - uid: 204 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 1295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 +- proto: DisposalPipeBroken + entities: + - uid: 1303 + components: + - type: Transform + pos: -7.5,3.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,5.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 1305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 511 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 539 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 198 + components: + - type: Transform + pos: 7.753729,-2.3030586 + parent: 2 +- proto: DrinkVacuumFlask + entities: + - uid: 237 + components: + - type: Transform + pos: 7.2693543,-2.1936836 + parent: 2 +- proto: EncryptionKeyBinary + entities: + - uid: 558 + components: + - type: Transform + parent: 557 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExtinguisherCabinetFilled + entities: + - uid: 556 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 +- proto: ExtinguisherCabinetFilledOpen + entities: + - uid: 555 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 554 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 +- proto: FenceWoodHighStraight + entities: + - uid: 1255 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 +- proto: Firelock + entities: + - uid: 897 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 +- proto: FirelockFrame + entities: + - uid: 191 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 898 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 +- proto: Fireplace + entities: + - uid: 505 + components: + - type: Transform + pos: -10.5,2.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 +- proto: FloorAzureWaterEntity + entities: + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 +- proto: FloorCarpetItemBlack + entities: + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 2 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 +- proto: FloorCarpetItemRed + entities: + - uid: 814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 +- proto: FloorDrain + entities: + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 836 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGold + entities: + - uid: 1433 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 +- proto: FloorTileItemLaundry + entities: + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 +- proto: FloorTileItemSteelCheckerLight + entities: + - uid: 286 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 +- proto: FloorTileItemWoodChess + entities: + - uid: 26 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 2 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + - uid: 828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -8.429222,-6.6101227 + parent: 2 + - uid: 831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 +- proto: FloorTileItemWoodLarge + entities: + - uid: 381 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 +- proto: FloorTileItemWoodPattern + entities: + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 1262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-15.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 +- proto: FloraRockSolid02 + entities: + - uid: 1261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-20.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 1263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,5.5 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 875 + components: + - type: Transform + pos: -4.5769396,-12.367945 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 422 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 +- proto: GasPort + entities: + - uid: 1228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 98 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 +- proto: Gateway + entities: + - uid: 57 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 +- proto: GeneratorBasic + entities: + - uid: 409 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 +- proto: GeneratorRTG + entities: + - uid: 421 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 846 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 +- proto: Girder + entities: + - uid: 21 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 2 + - uid: 763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 +- proto: GoldDoor + entities: + - uid: 1427 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 +- proto: GoldOre1 + entities: + - uid: 1424 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 44 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 +- proto: GunSafe + entities: + - uid: 430 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 770 + - 1421 + - 1097 + - 1419 + - 1420 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: IncompleteBaseBallBat + entities: + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 +- proto: IngotGold1 + entities: + - uid: 1097 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1420 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IngotSilver1 + entities: + - uid: 1421 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: JanitorialTrolley + entities: + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 768 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 +- proto: JointRainbow + entities: + - uid: 892 + components: + - type: Transform + pos: -4.320363,-18.443808 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 843 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 1436 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 +- proto: LightBulbBroken + entities: + - uid: 1412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 +- proto: LightTubeBroken + entities: + - uid: 1414 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 +- proto: LockerSteel + entities: + - uid: 557 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 559 + - 558 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 560 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1422 + - 561 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 1271 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 1225 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 575 + components: + - type: Transform + pos: -4.413355,-3.33613 + parent: 2 +- proto: MachineFrame + entities: + - uid: 479 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 45 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 1419 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaterialWoodPlank + entities: + - uid: 375 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 206 + components: + - type: Transform + pos: 4.5444307,1.831995 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: 5.0703278,8.339569 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 5.6797028,8.823944 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 5.8203278,8.120819 + parent: 2 + - uid: 501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.38849,-0.5892978 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -5.571949,-0.55260587 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -5.400975,-0.23097217 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 8.470179,-13.349291 + parent: 2 +- proto: MaterialWoodPlank10 + entities: + - uid: 301 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 +- proto: MoonBattlemap + entities: + - uid: 515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 2 +- proto: Ointment1 + entities: + - uid: 1164 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1425 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 +- proto: PaintingOldGuitarist + entities: + - uid: 1130 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 1423 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 571 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 +- proto: PaperDoor + entities: + - uid: 9 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 559 + components: + - type: Transform + parent: 557 + - type: Paper + content: > + 11010000 10011110 11010000 10111111 11010000 10110101 11010001 10000000 11010000 10110000 11010001 10000110 11010000 10111000 11010001 10001111 00100000 11010000 10111111 11010001 10000000 11010000 10111110 11010001 10001000 11010000 10111011 11010000 10110000 00100000 11010001 10000011 11010001 10000001 11010000 10111111 11010000 10110101 11010001 10001000 11010000 10111101 11010000 10111110 00101100 00100000 11010001 10000001 11010000 10111010 11010000 10111110 11010001 10000000 11010000 10111110 00100000 11010000 10110100 11010000 10110000 11010000 10111101 11010000 10111101 11010001 10001011 11010000 10111001 00100000 11010000 10111110 11010001 10000010 11010000 10110101 11010000 10111011 11010001 10001100 00100000 11010000 10111111 11010000 10110101 11010001 10000000 11010000 10110101 11010000 10111101 11010000 10110101 11010001 10000001 11010001 10010001 11010001 10000010 11010001 10000001 11010001 10001111 00100000 11010000 10111101 11010000 10110000 00100000 11010000 10110100 11010001 10000000 11010001 10000011 11010000 10110011 11010000 10111110 11010000 10111001 00100000 11010000 10110111 11010000 10110101 11010001 10000010 00100000 11010001 10000011 11010001 10000000 11010000 10111110 11010000 10110010 11010000 10110101 11010000 10111101 11010001 10001100 00101110 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PartRodMetal1 + entities: + - uid: 812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 +- proto: Pen + entities: + - uid: 573 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.235743,10.476826 + parent: 2 + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.241955,-20.623299 + parent: 2 +- proto: PillCharcoal + entities: + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.907618,10.492451 + parent: 2 +- proto: PinionAirlock + entities: + - uid: 223 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 +- proto: PosterBroken + entities: + - uid: 883 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 886 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 562 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 +- proto: PottedPlant14 + entities: + - uid: 429 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 311 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 +- proto: PottedPlantAlt2 + entities: + - uid: 1253 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 1391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 1390 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 +- proto: PoweredlightOrange + entities: + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 +- proto: PoweredLightPostSmallEmpty + entities: + - uid: 675 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 871 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 +- proto: PoweredSmallLightEmpty + entities: + - uid: 1415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 +- proto: PresentRandomAsh + entities: + - uid: 73 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 +- proto: PrinterDoc + entities: + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 +- proto: Rack + entities: + - uid: 169 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 1232 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 +- proto: Railing + entities: + - uid: 71 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 2 + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 2 + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 +- proto: RailingCorner + entities: + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 2 +- proto: RainbowCannabisSeeds + entities: + - uid: 891 + components: + - type: Transform + pos: -3.7516398,-18.498846 + parent: 2 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 900 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 +- proto: RandomCommandCorpseSpawner + entities: + - uid: 1224 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 878 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 879 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 899 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 1280 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 0.5,8.5 + parent: 2 +- proto: RandomStalagmiteOrCrystal + entities: + - uid: 1182 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -6.5,12.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 901 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 1272 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 +- proto: ScrapCanister2 + entities: + - uid: 777 + components: + - type: Transform + pos: -6.5,8.5 + parent: 2 +- proto: ScrapFaxMachine + entities: + - uid: 425 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 +- proto: ScrapFireExtinguisher + entities: + - uid: 779 + components: + - type: Transform + pos: -5.5,8.5 + parent: 2 +- proto: ScrapFirelock1 + entities: + - uid: 396 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 +- proto: ScrapFirelock2 + entities: + - uid: 395 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 +- proto: ScrapFirelock3 + entities: + - uid: 394 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 +- proto: ScrapGlass + entities: + - uid: 778 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 +- proto: ScrapPAIGold + entities: + - uid: 780 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 +- proto: ShardCrystalOrange + entities: + - uid: 420 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 +- proto: ShardCrystalRed + entities: + - uid: 1240 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 419 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 +- proto: SheetSteel1 + entities: + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 +- proto: ShelfBar + entities: + - uid: 1428 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 +- proto: ShelfGlass + entities: + - uid: 1432 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 +- proto: ShelfKitchen + entities: + - uid: 1431 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 +- proto: ShipBattlemap + entities: + - uid: 521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 +- proto: SignBar + entities: + - uid: 1429 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 +- proto: SignKitchen + entities: + - uid: 1430 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 +- proto: SignLaundromat + entities: + - uid: 260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 884 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 +- proto: SignSomethingOld2 + entities: + - uid: 885 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 +- proto: SilverOre1 + entities: + - uid: 767 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 798 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 890 + components: + - type: Transform + pos: -4.283671,-18.939148 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 561 + components: + - type: Transform + parent: 560 + - type: Stack + count: 5000 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash500 + entities: + - uid: 770 + components: + - type: Transform + parent: 430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceHeaterMachineCircuitBoard + entities: + - uid: 195 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 +- proto: SpaceTickSpawner + entities: + - uid: 1166 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: -14.5,8.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 +- proto: SpawnMobBearSalvage + entities: + - uid: 1275 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 877 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 +- proto: SpawnMobCobraSalvage + entities: + - uid: 1278 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 +- proto: SpawnMobKangarooSalvage + entities: + - uid: 1274 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 1270 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 +- proto: StairStageWood + entities: + - uid: 50 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 +- proto: StairWood + entities: + - uid: 283 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 +- proto: StationMapAssembly + entities: + - uid: 351 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 +- proto: StoolBar + entities: + - uid: 808 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 810 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 475 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 +- proto: SyndicateMicrowave + entities: + - uid: 876 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 809 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 813 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 +- proto: TableFrame + entities: + - uid: 205 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 236 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: TableWood + entities: + - uid: 200 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 0.5,6.5 + parent: 2 + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 + - uid: 874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 +- proto: Telecrystal1 + entities: + - uid: 1171 + components: + - type: Transform + pos: -1.3651109,-22.645641 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -2.7713609,-21.161266 + parent: 2 +- proto: ThrowingKnife + entities: + - uid: 285 + components: + - type: Transform + pos: -2.6396554,8.3096695 + parent: 2 +- proto: ToiletGoldenEmpty + entities: + - uid: 773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 149 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: TreasureCoinGold + entities: + - uid: 1422 + components: + - type: Transform + parent: 560 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformShortsRed + entities: + - uid: 1188 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 2.7053437,-17.68526 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 823 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 25 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 +- proto: VendingMachineColaBlack + entities: + - uid: 17 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 +- proto: VendingMachineRestockDonut + entities: + - uid: 247 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 +- proto: WallmountTelevisionFrame + entities: + - uid: 244 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 +- proto: WallNecropolis + entities: + - uid: 10 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 43 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -3.5,11.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-10.5 + parent: 2 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 +- proto: WallRock + entities: + - uid: 8 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 85 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 86 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 158 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 245 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 246 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: -7.5,8.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: -7.5,9.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: -11.5,7.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: -7.5,11.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -7.5,10.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: -9.5,10.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: -12.5,7.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: -11.5,10.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: -11.5,12.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: -12.5,14.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: -13.5,15.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: -13.5,14.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: -13.5,13.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: -12.5,12.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: -14.5,6.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: -13.5,5.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: -15.5,5.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -15.5,6.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: -19.5,3.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: -19.5,1.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: -18.5,3.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -17.5,1.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: -20.5,1.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: -4.5,14.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: -5.5,14.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: -5.5,12.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: -18.5,-13.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: -17.5,-14.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: -14.5,-20.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: -13.5,-21.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: -9.5,-25.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: -6.5,-25.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -5.5,-26.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: -5.5,-27.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: -3.5,-27.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 2 +- proto: WallRockArtifactFragment + entities: + - uid: 586 + components: + - type: Transform + pos: -6.5,10.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 +- proto: WallRockBananium + entities: + - uid: 69 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 +- proto: WallRockCoal + entities: + - uid: 76 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -14.5,-13.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 +- proto: WallRockDiamond + entities: + - uid: 142 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 +- proto: WallRockGold + entities: + - uid: 637 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 +- proto: WallRockPlasma + entities: + - uid: 385 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: WallRockQuartz + entities: + - uid: 393 + components: + - type: Transform + pos: -9.5,8.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: -10.5,9.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 +- proto: WallRockSalt + entities: + - uid: 79 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 300 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 +- proto: WallRockSilver + entities: + - uid: 153 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 +- proto: WallRockTin + entities: + - uid: 908 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 +- proto: WallRockUranium + entities: + - uid: 691 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 +- proto: WallWood + entities: + - uid: 3 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 5 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - uid: 11 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 60 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 68 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,6.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 192 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: -6.5,7.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 243 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 249 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 0.5,7.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: -2.5,7.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -5.5,9.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 347 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: -7.5,7.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 2 + - uid: 791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 2 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 2 + - uid: 796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - uid: 801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 + parent: 2 + - uid: 802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 2 + - uid: 803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - uid: 805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: -3.5,3.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 14 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 +- proto: WoodDoor + entities: + - uid: 63 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 +- proto: WoodenBench + entities: + - uid: 512 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 +- proto: WoodenSupport + entities: + - uid: 633 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 860 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 +- proto: WoodenSupportWall + entities: + - uid: 13 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 +- proto: WoodenSupportWallBroken + entities: + - uid: 387 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_kamikaze.yml b/Resources/Maps/Ruins/corvax_kamikaze.yml new file mode 100644 index 00000000000..2173657a296 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_kamikaze.yml @@ -0,0 +1,10441 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 9: FloorAsteroidSandRed + 6: FloorAsteroidTile + 4: FloorDark + 3: FloorDarkDiagonal + 2: FloorDarkMini + 5: FloorMetalDiamond + 8: FloorRockVault + 1: Lattice +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -5.2370396,0.37890625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: BwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABQAAAAAABgAAAAAABQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: CQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAACQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 239: 33.711098,-4.057616 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 238: 36.289608,-3.4716783 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 235: 35.677536,-5.3466787 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 237: 35.482193,-4.2399073 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 236: 33.033913,-5.5029287 + - node: + color: '#581D163F' + id: Damaged + decals: + 113: 7.79587,3.7717218 + 114: 8.811648,3.9930758 + 115: 8.394918,4.956618 + 116: 8.290736,5.6206803 + 117: 8.316782,6.5712013 + 118: 8.420964,7.49568 + 119: 9.202332,7.990472 + 120: 8.876762,6.662347 + 121: 8.954899,5.1389093 + 122: 9.514879,3.4071383 + 123: 9.957653,3.7587008 + 124: 9.176287,5.6076593 + 125: 9.202332,6.6493263 + 126: 9.89254,7.9774513 + 127: 10.283224,7.625889 + 128: 9.697199,5.737868 + 129: 9.918585,4.5008883 + 130: 11.3901615,3.2639093 + 131: 10.804136,4.865472 + 132: 9.970676,6.9488053 + 133: 10.192064,7.730055 + 134: 10.960409,6.6493263 + 135: 10.725998,5.099847 + 136: 11.168774,3.2639093 + 137: 11.754799,4.5920343 + 138: 11.15575,6.7144303 + 139: 11.24691,8.042555 + 140: 11.103659,7.8472424 + 141: 10.699953,4.852451 + 142: 10.322292,3.4982843 + 143: 8.902807,3.9670343 + 144: 7.574483,5.3863053 + 145: 7.6916885,6.818597 + 146: 8.863739,8.537347 + 147: 11.585503,8.133701 + 148: 10.2311325,5.425368 + 149: 10.478565,3.6415133 + 150: 10.830181,3.5764093 + 151: 11.142729,6.4670343 + 152: 10.739021,8.446201 + 153: 7.678665,8.12068 + 154: 8.433987,6.206618 + 155: 9.2414,4.1753674 + 156: 10.361361,5.177972 + 157: 9.514879,8.550367 + 158: 7.9521437,7.7691174 + 159: 10.6478615,5.894118 + 160: 9.918585,4.21443 + - node: + color: '#FFFFFFB2' + id: Dirt + decals: + 58: 7.808893,3.7066174 + 59: 7.900053,4.6050553 + 60: 7.9130754,5.0477633 + 61: 7.79587,5.8290133 + 62: 7.8219166,6.7925553 + 63: 7.8870296,7.9514093 + 64: 8.329805,8.459222 + 65: 8.616306,8.042555 + 66: 8.329805,6.7925553 + 67: 8.512124,4.8394303 + 68: 8.616306,3.4462008 + 69: 8.915831,3.9930758 + 70: 8.564215,5.5165133 + 71: 8.5251465,6.1675553 + 72: 8.876762,6.987868 + 73: 9.098149,8.068597 + 74: 9.280468,7.860264 + 75: 9.033035,6.675368 + 76: 9.020013,4.787347 + 77: 9.137218,3.7196383 + 78: 9.6190605,2.8732843 + 79: 9.410696,4.2534924 + 80: 9.124195,5.3602633 + 81: 9.215355,6.440993 + 82: 9.579992,7.65193 + 83: 9.866495,8.407139 + 84: 9.775335,7.157139 + 85: 9.56697,5.568597 + 86: 9.579992,3.9409924 + 87: 9.879517,3.1857843 + 88: 10.061836,3.9149508 + 89: 9.905563,5.099847 + 90: 9.827427,6.1675553 + 91: 9.9837,6.896722 + 92: 10.361361,8.420159 + 93: 10.765066,8.081617 + 94: 10.556702,6.7795343 + 95: 10.517633,5.2951593 + 96: 10.439497,3.9800549 + 97: 10.947386,3.4331799 + 98: 11.416206,4.696201 + 99: 11.272955,6.3889093 + 100: 11.259933,8.302972 + 101: 11.272955,8.862867 + 102: 10.999477,7.1441174 + 103: 11.259933,6.4800553 + 104: 11.416206,4.878493 + 105: 11.533411,4.1753674 + 106: 11.455275,3.9930758 + 107: 11.33807,3.3550549 + 108: 11.051569,4.3446383 + 109: 10.921341,5.881097 + 110: 10.830181,7.0399513 + 111: 10.960409,8.680576 + 112: 7.991213,5.7769303 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 303: 16.061815,-10.317843 + 304: 15.991976,-10.152913 + 305: 14.547243,-10.135551 + 306: 15.318889,-9.927218 + 307: 15.110524,-9.597358 + 308: 14.685113,-8.998399 + 309: 14.867432,-8.434163 + 310: 14.763249,-7.7570796 + 311: 14.303111,-8.260551 + 312: 15.188661,-8.468885 + 313: 15.067115,-9.48451 + 314: 14.971614,-8.07826 + 315: 13.929791,-8.408121 + 316: 14.042655,-9.154649 + 317: 13.790881,-9.553954 + 318: 13.469652,-9.64076 + 319: 13.139742,-9.770968 + 320: 12.870604,-10.005343 + 321: 12.123964,-9.927218 + 322: 11.785372,-9.718885 + 323: 11.273142,-9.397704 + 324: 10.622002,-9.224093 + 325: 10.266046,-8.729301 + 326: 10.804321,-8.139024 + 327: 11.6464615,-9.01576 + 328: 12.445192,-9.085204 + 329: 13.009514,-8.876871 + 330: 13.59988,-8.416801 + 331: 14.198929,-7.8178434 + 332: 13.764835,-7.279649 + 333: 12.749058,-8.182426 + 334: 11.794053,-8.512288 + 335: 11.40337,-8.286593 + 336: 11.30994,-8.282391 + 337: 10.7369375,-7.666071 + 338: 10.493845,-7.015029 + 339: 10.085798,-6.5983624 + 340: 9.781933,-7.171279 + 341: 10.1899805,-7.718154 + 342: 10.068435,-8.030654 + 343: 10.927938,-8.542807 + 344: 12.073944,-8.560168 + 345: 12.455946,-7.96121 + 346: 12.863994,-7.405654 + 347: 13.35886,-6.9803066 + 348: 13.489087,-6.416071 + 349: 13.089723,-5.6521816 + 350: 11.848216,-5.5132933 + 351: 10.936621,-5.608779 + 352: 11.30994,-6.0428066 + 353: 12.56881,-5.9907236 + 354: 12.525401,-6.485515 + 355: 11.648533,-6.6678066 + 356: 11.388077,-6.9803066 + 357: 12.386492,-7.249404 + 358: 12.6990385,-7.101835 + 359: 11.856897,-7.6139874 + 360: 10.537254,-6.9021816 + 361: 11.11894,-7.9091263 + 362: 11.685983,-7.622668 + 363: 13.951105,-6.87614 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 5: 8,5 + 6: 11,6 + 7: 7,8 + 8: 10,4 + 11: 8.863739,7.7691174 + 12: 10.712976,6.909743 + 13: 7.353096,6.4149513 + 16: 9.137218,7.704014 + 17: 7.6265736,6.8576593 + 18: 8.44701,8.394117 + 19: 10.465542,7.8472424 + 20: 11.012501,5.724847 + 21: 10.035791,3.0555758 + 22: 7.7828474,3.7196383 + 23: 7.704711,5.099847 + 364: 16.026604,-10.049514 + 365: 15.375464,-9.84118 + 366: 14.967417,-9.1033325 + 367: 14.46173,-8.079027 + 368: 13.697726,-9.016527 + 369: 13.098679,-9.0512495 + 370: 12.0655365,-9.1814575 + 371: 12.5169935,-10.15368 + 372: 10.919531,-8.252638 + 373: 10.754576,-7.2543745 + 374: 10.980304,-8.90368 + 375: 11.718263,-8.391527 + 376: 11.9874,-8.356806 + 377: 13.471998,-7.6536803 + 378: 13.24627,-6.985277 + 379: 12.421494,-8.964444 + 380: 11.996082,-9.0512495 + 381: 11.787718,-7.9661803 + 382: 13.194179,-7.7551794 + 383: 13.211542,-8.325998 + 384: 13.897409,-8.421484 + 385: 14.340184,-9.072526 + 386: 10.641711,-7.753082 + 387: 15.002005,-8.013767 + 388: 14.993323,-9.020711 + - node: + color: '#FFFFFFFF' + id: Rock01 + decals: + 230: 37.031906,-5.0992827 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 229: 34.89617,-3.0550117 + 231: 37.240273,-4.1487617 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 232: 35.716606,-2.8987617 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 234: 34.29712,-4.8128242 + - node: + color: '#780000BF' + id: dot + decals: + 179: 34.66176,-5.2164702 + 180: 34.55758,-5.4117827 + 181: 35.22174,-5.463866 + 182: 34.51851,-4.8779287 + 183: 33.724117,-4.7477202 + 184: 34.388283,-5.2685537 + 185: 34.24503,-5.5029287 + 186: 34.29712,-5.9846992 + 218: 34.323166,-4.5784492 + 219: 33.97155,-4.8518867 + 220: 35.22174,-5.3336577 + 221: 35.5994,-4.5393867 + 222: 34.726875,-4.7477202 + 223: 35.69056,-5.7112617 + 224: 35.495216,-6.3492827 + 225: 34.179916,-6.2841787 + 226: 33.91946,-5.8024077 + 227: 34.166893,-6.2841787 + 228: 33.91946,-5.8024077 + 284: 12.549253,-7.7468314 + 285: 12.740255,-7.4343314 + 286: 12.957301,-7.1044703 + 287: 12.922574,-6.600998 + 288: 12.757619,-6.9742618 + 289: 11.906796,-7.2607203 + 290: 11.585567,-7.694748 + 291: 10.891019,-7.3388453 + 292: 10.882337,-6.991623 + 293: 10.66529,-6.4534287 + 294: 10.595836,-6.383984 + 295: 10.977837,-6.7312064 + 296: 11.472704,-7.3128037 + - node: + color: '#780000BF' + id: smallbrush + decals: + 172: 35.09151,-5.463866 + 173: 35.32592,-5.1774077 + 174: 35.026398,-4.9039702 + 175: 34.648735,-4.9169908 + 176: 34.466415,-5.1904287 + 177: 34.179916,-5.2945952 + 178: 34.90919,-5.6070952 + 199: 35.495216,-5.2815742 + 200: 35.97706,-5.2815742 + 201: 35.768696,-4.7737617 + 203: 34.935238,-4.3831367 + 204: 34.739895,-4.526366 + 205: 34.453392,-4.7737617 + 206: 35.104534,-4.7216787 + 207: 35.534286,-4.7216787 + 209: 35.36499,-4.9430327 + 210: 35.234764,-4.8258452 + 211: 35.664513,-4.8128242 + 212: 35.50824,-4.760741 + 213: 35.391037,-4.5524073 + 214: 35.1436,-4.6565742 + 216: 35.482193,-4.5393867 + 297: 12.627391,-7.7381506 + 298: 12.6794815,-7.321484 + 299: 12.879165,-7.0003037 + 300: 11.342476,-7.2694006 + 301: 10.856291,-6.5141926 + 302: 11.108065,-6.548915 + - node: + color: '#1C1A0635' + id: splatter + decals: + 389: 13.92877,-6.6298385 + 390: 14.16318,-6.7687273 + 391: 14.432318,-7.0204635 + 392: 14.145817,-6.6211576 + 393: 14.1024065,-6.4649076 + 394: 14.267363,-6.516991 + 395: 14.414954,-6.673241 + 396: 13.494677,-5.935394 + 397: 13.294994,-5.622894 + 398: 12.956402,-5.40588 + 399: 12.418126,-5.423241 + 400: 11.853806,-5.501366 + 401: 11.324211,-5.5968523 + 402: 10.846709,-5.6749773 + 403: 10.846709,-5.6749773 + 404: 10.620981,-5.7531023 + 405: 10.56889,-5.770463 + 406: 11.124529,-5.579491 + 407: 10.785936,-5.71838 + 408: 10.725163,-5.7531023 + 409: 11.115847,-5.5534496 + 410: 10.4039345,-5.8399076 + 411: 11.654122,-5.822547 + 412: 11.87985,-5.735741 + 413: 13.199493,-5.6749773 + 414: 13.485995,-5.7531023 + 415: 13.572814,-5.952755 + 416: 13.060584,-5.7878246 + 417: 11.020347,-5.6489353 + 418: 10.456026,-5.7878246 + 419: 9.978523,-5.8399076 + 420: 10.560207,-5.7270603 + 421: 10.647026,-5.6749773 + 422: 10.508117,-5.7270603 + 423: 10.846709,-5.6315746 + 424: 10.154548,-7.9393406 + 425: 10.328017,-8.243339 + 426: 10.310699,-8.304054 + 427: 10.232563,-8.165165 + 428: 10.189154,-7.4273176 + 429: 10.275972,-7.071415 + 430: 10.397517,-6.727619 + 431: 10.449609,-5.9318132 + 432: 10.258608,-6.7973714 + 433: 10.223881,-7.0838294 + 434: 10.380154,-7.839038 + 435: 10.336744,-7.9779267 + 436: 10.449609,-6.6498017 + 437: 10.5972,-5.7557044 + 438: 10.54511,-5.920635 + 439: 10.423563,-6.3025794 + 440: 10.571156,-5.7123017 + 441: 10.527746,-5.668899 + 442: 10.883702,-5.495288 + 443: 11.248341,-5.53001 + 444: 11.48275,-5.495288 + 445: 11.830025,-5.512649 + 446: 12.324891,-5.53001 + 447: 12.663484,-5.5386906 + 448: 13.132304,-5.6168156 + 449: 13.297259,-5.7383432 + 450: 13.470897,-5.920635 + 451: 13.48826,-5.964038 + 452: 13.132304,-5.7036214 + 453: 12.4985285,-5.6168156 + 454: 12.203345,-5.590774 + 455: 11.474069,-5.590774 + 456: 10.918429,-5.668899 + 457: 10.684019,-5.729663 + 458: 10.519064,-5.8772326 + 459: 11.751888,-10.064268 + 460: 11.66507,-10.185796 + 461: 11.691115,-10.263921 + 462: 11.882116,-10.342046 + 463: 12.1772995,-10.40281 + 464: 12.689529,-10.446213 + 465: 13.262532,-10.437532 + 466: 13.601125,-10.350726 + 467: 13.635852,-10.289963 + 468: 13.071531,-10.437532 + 469: 13.219123,-10.359407 + 470: 13.071531,-10.40281 + 471: 12.489846,-10.454893 + 472: 10.684019,-9.305139 + 473: 10.493018,-9.244374 + 474: 10.328063,-9.01868 + 475: 10.519064,-9.383264 + 476: 10.736111,-9.530832 + 477: 10.996567,-9.617639 + 478: 11.039976,-9.634999 + 479: 10.2151985,-9.166249 + 480: 10.189154,-8.766944 + 481: 10.371472,-9.17493 + 482: 10.397518,-8.905832 + 483: 10.371472,-8.810347 + 484: 14.438104,-9.76203 + 485: 14.464149,-9.987724 + 486: 14.507559,-10.256822 + 487: 14.6898775,-10.439114 + 488: 14.985062,-10.560641 + 489: 15.019789,-10.560641 + 490: 13.986648,-10.317586 + 491: 15.115289,-10.847099 + 492: 16.65224,-9.979044 + 493: 16.565422,-9.675224 + 494: 16.313648,-9.466891 + 495: 15.740646,-9.154391 + 496: 15.7146,-9.215155 + 497: 16.183422,-9.571057 + 498: 16.600151,-10.091891 + 499: 16.721695,-10.369669 + 500: 16.825878,-10.534599 + 501: 16.617514,-9.892239 + 502: 16.061874,-9.440849 + 503: 15.879555,-9.388766 + 504: 14.80148,-7.3493657 + 505: 14.827526,-7.3406854 + 506: 15.0793,-7.5142965 + 507: 15.278983,-7.7226295 + 508: 15.496029,-7.8788795 + 509: 15.617577,-8.069852 + 510: 15.660984,-8.2434635 + 511: 15.669666,-8.312907 + 512: 15.400529,-7.8615184 + 513: 15.148754,-7.4361715 + 514: 14.975118,-7.375407 + 515: 14.792798,-7.4708934 + 516: 14.6799345,-7.2799215 + 517: 14.56707,-7.010824 + 518: 22.584183,3.1355314 + 519: 22.883707,3.3438654 + 520: 23.03998,3.3959484 + 521: 23.03998,3.3959484 + 522: 22.883707,3.408969 + 523: 22.532091,3.252719 + 524: 22.493023,3.044386 + 525: 22.466978,2.9792817 + 526: 23.678097,4.242303 + 527: 23.821348,4.398553 + 528: 23.951576,4.4636564 + 529: 23.573915,4.3074064 + 530: 23.560892,4.2813654 + 531: 23.964598,4.476678 + 532: 23.990644,4.4896984 + 533: 23.430664,4.346469 + 534: 23.456709,4.2292814 + 535: 23.41764,4.1251154 + 536: 23.59996,4.3594904 + 537: 23.912508,4.632928 + 538: 23.92553,4.6459484 + 539: 25.207361,-0.59199 + 540: 25.493862,-0.29251087 + 541: 25.598045,0.28040588 + 542: 25.42875,0.5538434 + 543: 25.220385,-0.25344837 + 544: 24.673428,-0.513865 + 545: 25.402704,0.3845725 + 546: 25.376657,1.048635 + 547: 25.025042,0.41061413 + 548: 24.556221,-0.09719837 + 549: 25.01202,0.34551 + 550: 24.412971,-0.18834412 + 551: 23.696718,-0.34459418 + 552: 23.240921,-0.30553168 + 553: 22.433508,-0.1623025 + 554: 21.951664,-0.2404275 + 555: 21.574003,-0.21438587 + 556: 21.795391,-0.30553168 + 557: 22.094915,-0.29251087 + 558: 22.264212,-0.29251087 + 559: 22.498621,-0.29251087 + 560: 22.602804,-0.30553168 + 561: 22.863258,-0.30553168 + 562: 22.993486,-0.33157337 + 563: 23.253942,-0.33157337 + 564: 23.410217,-0.29251087 + 565: 23.38417,-0.058135867 + 566: 23.09767,0.21530163 + 567: 22.550713,0.47571838 + 568: 22.042824,1.0095725 + 569: 21.756323,0.892385 + 570: 21.83446,-0.1623025 + 571: 21.821436,-0.3966775 + 572: 21.899572,0.65801 + 573: 22.329325,1.296031 + 574: 22.433508,1.1528018 + 575: 22.381416,0.87936413 + 576: 22.44653,0.56686413 + 577: 22.91535,0.29342663 + 578: 22.381416,1.7908227 + 579: 22.433508,2.155406 + 580: 22.524666,2.780406 + 581: 22.746054,2.7283227 + 582: 22.902328,3.236135 + 583: 23.240921,3.4444685 + 584: 22.381416,2.4268804 + 585: 22.563736,2.4924538 + 586: 22.615826,2.9346929 + 587: 22.980465,3.5076094 + 588: 25.01202,4.3018804 + 589: 24.998997,4.4581304 + 590: 25.181316,4.353964 + 591: 25.402704,4.249797 + 592: 25.441772,4.041464 + 593: 25.454794,3.7940679 + 594: 25.441772,3.7029219 + 595: 25.142248,4.3669844 + 596: 25.363634,3.5727139 + 597: 25.311544,3.2341719 + 598: 25.311544,2.986776 + 599: 25.350613,2.5440679 + 600: 25.350613,2.1794844 + 601: 25.363634,2.0102136 + 602: 25.38968,1.4893801 + 603: 25.376657,1.1768801 + 604: 25.350613,1.1768801 + 605: 25.441772,1.8409426 + 606: 25.42875,2.6352136 + 607: 25.38968,3.2732344 + 608: 25.324566,3.8461514 + 609: 25.025042,4.4451094 + 610: 24.673428,4.5362554 + 611: 24.373903,4.4711514 + 612: 24.699472,4.4451094 + - node: + color: '#23100A4E' + id: splatter + decals: + 24: 7.5614605,3.7456799 + 25: 8.030281,5.021722 + 26: 7.2749586,6.9357843 + 27: 7.5354147,8.172764 + 28: 7.9130754,8.719639 + 29: 9.306515,8.27693 + 30: 10.673908,8.446201 + 31: 11.468298,7.6389093 + 32: 11.819914,6.6232843 + 33: 11.741776,3.9800549 + 34: 11.416206,3.2378674 + 35: 8.915831,3.3290133 + 36: 7.1837993,3.4592218 + 37: 11.259933,3.5113049 + 38: 11.572479,3.6805758 + 39: 11.116682,3.6154718 + 40: 7.5223923,3.5764093 + 41: 7.5875053,3.8498468 + 42: 7.457278,8.524326 + 43: 7.79587,8.537347 + 44: 8.160509,8.797764 + 45: 11.33807,8.563389 + 46: 11.66364,8.263909 + 47: 11.442251,8.407139 + 48: 11.142729,8.576409 + 49: 11.546434,8.003492 + 50: 11.272955,8.498284 + 51: 7.9521437,8.810784 + 52: 7.2749586,8.342034 + 53: 7.5875053,8.394117 + 54: 7.6656427,8.459222 + 55: 7.613551,3.8498468 + 56: 7.678665,3.2639093 + 57: 7.7177334,3.1337008 + - node: + color: '#298D0670' + id: splatter + decals: + 616: 22.596933,3.0767965 + 617: 22.94855,3.3762755 + 618: 22.753206,3.1549215 + 619: 22.649025,2.8945048 + - node: + color: '#780000BF' + id: splatter + decals: + 161: 34.713852,-5.1383452 + 162: 34.935238,-5.0471992 + 163: 35.18267,-4.838866 + 164: 35.28685,-5.0081367 + 165: 35.052444,-5.1643867 + 166: 34.77896,-5.229491 + 167: 34.531532,-5.463866 + 168: 34.844078,-5.2945952 + 169: 34.596645,-5.2815742 + 170: 34.596645,-5.1253242 + 171: 34.8571,-5.5029287 + 187: 35.677536,-4.9690742 + 188: 35.54731,-4.604491 + 189: 34.844078,-4.5784492 + 190: 35.99008,-5.229491 + 191: 35.5994,-5.2815742 + 192: 35.32592,-4.6435537 + 193: 35.052444,-4.8909492 + 194: 35.677536,-5.0081367 + 195: 35.026398,-4.4612617 + 196: 35.169647,-5.4378242 + 197: 35.41708,-5.385741 + 198: 35.521263,-5.2685537 + 240: 11.602932,-7.399609 + 241: 11.472704,-7.2173176 + 242: 11.620295,-6.8180118 + 243: 12.29748,-6.9742618 + 244: 11.872068,-7.2867618 + 245: 12.323525,-7.5037756 + 246: 12.323525,-7.2607203 + 247: 12.10648,-6.8787756 + 248: 11.602932,-7.1218314 + 249: 12.514526,-7.4516926 + 250: 12.540572,-7.5992618 + 251: 12.5839815,-7.633984 + 252: 12.427708,-6.8700953 + 253: 11.724478,-6.8440537 + 254: 12.002296,-7.5819006 + 255: 11.984933,-7.6600256 + 256: 11.846024,-7.6687064 + 257: 11.507431,-7.3735676 + 258: 11.290384,-6.93954 + 259: 11.524795,-6.6444006 + 260: 11.108065,-6.913498 + 261: 11.446657,-7.538498 + 262: 11.802614,-7.7294703 + 263: 12.5839815,-7.798915 + 264: 12.5753,-7.1131506 + 265: 12.193298,-6.540234 + 266: 11.724478,-6.3753037 + 267: 11.325111,-6.392665 + 268: 12.644754,-6.47079 + 269: 12.792346,-6.3492618 + 270: 12.861801,-6.3405814 + 271: 12.080433,-6.5315537 + 272: 11.403248,-6.236415 + 273: 11.116747,-6.0975256 + 274: 11.047292,-5.993359 + 275: 10.995201,-5.9499564 + 276: 12.306162,-6.366623 + 277: 12.601345,-6.3753037 + 278: 12.853119,-6.305859 + 279: 13.026756,-6.15829 + 280: 13.130939,-6.0194006 + 281: 12.853119,-5.8631506 + 282: 12.644754,-6.8787756 + 283: 12.757619,-6.7659287 + - node: + color: '#8A640670' + id: splatter + decals: + 613: 22.740183,3.167942 + 614: 23.026686,3.3632545 + 615: 22.753206,3.1549215 + - type: GridAtmosphere + version: 2 + data: + tiles: + 1,1: + 0: 16 + 2,1: + 0: 65523 + 1: 12 + 2,2: + 1: 1 + 0: 14 + 3,1: + 0: 2560 + 3,0: + 0: 136 + 4,0: + 0: 12561 + 4,1: + 0: 13090 + 2,-2: + 0: 2252 + 2,-3: + 0: 32768 + 3,-3: + 0: 64256 + 3,-2: + 0: 895 + 4,-3: + 0: 271 + 4,-2: + 0: 16064 + 4,-1: + 0: 4369 + 1,4: + 0: 8192 + 3,4: + 0: 32768 + 3,5: + 0: 8 + 3,6: + 0: 8 + 4,4: + 0: 16256 + 4,5: + 0: 4371 + 4,6: + 0: 3 + 4,3: + 0: 64 + 5,0: + 0: 35020 + 5,4: + 0: 124 + 6,0: + 0: 48059 + 6,1: + 0: 34819 + 6,3: + 0: 5956 + 6,4: + 0: 1 + 6,2: + 0: 17484 + 7,0: + 0: 4099 + 7,1: + 0: 273 + 7,-1: + 0: 8246 + 4,-5: + 0: 52360 + 4,-4: + 0: 8 + 5,-4: + 0: 241 + 5,-3: + 0: 35939 + 5,-2: + 0: 3344 + 5,-1: + 0: 16 + 5,-5: + 0: 6400 + 6,-4: + 0: 58128 + 6,-3: + 0: 7936 + 6,-2: + 0: 12544 + 6,-1: + 0: 227 + 7,-4: + 0: 31872 + 7,-3: + 0: 4352 + 7,-2: + 0: 50275 + 8,-4: + 0: 240 + 8,-2: + 0: 64512 + 4,-6: + 2: 3072 + 0: 32768 + 5,-6: + 2: 256 + 8,-3: + 0: 512 + 8,-1: + 0: 140 + 9,-4: + 0: 62224 + 9,-3: + 0: 239 + 9,-2: + 0: 12544 + 9,-1: + 0: 19 + 10,-4: + 0: 4096 + 10,-3: + 0: 31 + 11,-4: + 2: 12288 + 11,-3: + 2: 51 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 3 + components: + - type: MetaData + name: solution - drink + - type: Transform + parent: 2 + - type: Solution + solution: + maxVol: 30 + name: drink + reagents: [] + - type: ContainedSolution + containerName: drink + container: 2 + - uid: 5 + components: + - type: MetaData + name: solution - drink + - type: Transform + parent: 4 + - type: Solution + solution: + maxVol: 30 + name: drink + reagents: [] + - type: ContainedSolution + containerName: drink + container: 4 +- proto: ActionToggleLight + entities: + - uid: 7 + components: + - type: Transform + parent: 6 + - type: InstantAction + container: 6 +- proto: AirlockExternalGlass + entities: + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,21.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-11.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-11.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,23.5 + parent: 1 +- proto: AltarFangs + entities: + - uid: 14 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 +- proto: AlwaysPoweredlightRed + entities: + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 +- proto: APCHyperCapacity + entities: + - uid: 19 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: Ash + entities: + - uid: 23 + components: + - type: Transform + pos: 24.369864,4.8876085 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 23.293312,3.9153862 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 23.432222,3.6723309 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 23.683996,3.898025 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 23.553768,3.9153862 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 28 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 29.5,6.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 25.5,7.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 25.5,6.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 20.5,6.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 36.5,-21.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 42.5,-8.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 42.5,-18.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 19.5,0.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 31.5,0.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 32.5,0.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 33.5,0.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 31.5,1.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 30.5,1.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 28.5,1.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 26.5,1.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 29.5,1.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 19.5,1.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 18.5,3.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 18.5,4.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 19.5,2.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 22.5,7.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: 25.5,11.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: 25.5,12.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: 25.5,13.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 26.5,2.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: 26.5,3.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 26.5,4.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 27.5,4.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 28.5,10.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 28.5,8.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: 28.5,9.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 28.5,2.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 29.5,4.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 29.5,3.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 29.5,2.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 30.5,2.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 30.5,3.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 27.5,17.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 26.5,15.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 26.5,16.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 26.5,17.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 25.5,15.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 25.5,16.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 25.5,17.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 24.5,17.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 20.5,18.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 21.5,18.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 22.5,18.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 23.5,18.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 26.5,18.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 25.5,18.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 26.5,19.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 21.5,19.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 20.5,19.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 19.5,19.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 13.5,20.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 14.5,20.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 18.5,20.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 19.5,20.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 20.5,20.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 21.5,20.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 24.5,20.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 25.5,20.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 21.5,21.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 20.5,21.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 19.5,21.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 18.5,21.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 24.5,21.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 14.5,21.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 4.5,21.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 19.5,22.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 20.5,22.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 24.5,22.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 22.5,23.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 20.5,23.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 19.5,23.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 18.5,23.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 21.5,23.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 14.5,23.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 12.5,23.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 13.5,23.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 11.5,23.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 13.5,24.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 14.5,24.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 18.5,24.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 19.5,24.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 20.5,24.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 19.5,3.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: 20.5,9.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 22.5,4.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 23.5,10.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 25.5,10.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 24.5,13.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: 25.5,8.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 28.5,7.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 29.5,5.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 29.5,7.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 27.5,5.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 26.5,5.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 25.5,5.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 28.5,16.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 28.5,15.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 28.5,14.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 28.5,13.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 28.5,11.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 29.5,11.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 29.5,9.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 29.5,8.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 29.5,10.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 31.5,2.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 30.5,8.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 30.5,6.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 30.5,5.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 30.5,4.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 30.5,7.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 32.5,1.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 31.5,3.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 942 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 13.5,21.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 953 + components: + - type: Transform + pos: 12.5,21.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: 10.5,21.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: 1.5,20.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: 2.5,21.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: 3.5,22.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 124 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 1 + - uid: 979 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 30.5,0.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 18.5,2.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: 18.5,7.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: 25.5,9.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 38.5,-16.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: Barricade + entities: + - uid: 1097 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 1098 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 26.5,9.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 28.5,4.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 24.5,15.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 1106 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1107: + - DoorStatus: Open + missingComponents: + - Construction + - Destructible + - uid: 1107 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1355: + - DoorStatus: Trigger + missingComponents: + - Construction + - Destructible +- proto: Bloodpack + entities: + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-7.7195234 + parent: 1 + - uid: 1109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-7.5046797 + parent: 1 + - uid: 1110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.404015,-7.309367 + parent: 1 + - uid: 1111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364946,-7.0163984 + parent: 1 + - uid: 1112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364946,-6.8015547 + parent: 1 + - uid: 1113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364946,-6.664836 + parent: 1 + - uid: 1114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-6.4890547 + parent: 1 + - uid: 1115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.38448,-6.2546797 + parent: 1 + - uid: 1116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.7195234 + parent: 1 + - uid: 1117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.524211 + parent: 1 + - uid: 1118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.3484297 + parent: 1 + - uid: 1119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.657959,-7.074992 + parent: 1 + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.677494,-6.8601484 + parent: 1 + - uid: 1121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.677494,-6.684367 + parent: 1 + - uid: 1122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.697028,-6.508586 + parent: 1 + - uid: 1123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.697028,-6.3328047 + parent: 1 +- proto: Blunt + entities: + - uid: 1226 + components: + - type: Transform + pos: 11.643209,5.029546 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 1125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.406176,3.6896915 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 1126 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 16.5,21.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 16.5,23.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 +- proto: CableHV + entities: + - uid: 1151 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 +- proto: CableMV + entities: + - uid: 1159 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: 16.5,22.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 17.5,22.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 17.5,23.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: CandleBlackInfinite + entities: + - uid: 1176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.243286,-5.3805327 + parent: 1 +- proto: CandleBlackSmallInfinite + entities: + - uid: 1177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.690657,0.6878135 + parent: 1 +- proto: Catwalk + entities: + - uid: 1178 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-19.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-20.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,24.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,24.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-21.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-21.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 1 +- proto: ChairRitual + entities: + - uid: 1193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.550691,-9.363773 + parent: 1 + - uid: 1194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5479355,-9.350752 + parent: 1 +- proto: CheapLighter + entities: + - uid: 1195 + components: + - type: Transform + rot: -1.361356816555577 rad + pos: 10.756527,7.886572 + parent: 1 + - uid: 1196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.673294,0.4360773 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 1197 + components: + - type: Transform + pos: 23.93577,3.6549697 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: 23.249903,3.585525 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: 23.371449,3.8372612 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: 23.588495,3.6549697 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 23.484314,3.6549697 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 23.762133,3.8893447 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 24.256998,4.7834415 + parent: 1 + - uid: 1204 + components: + - type: Transform + rot: 0.9773843811168246 rad + pos: 24.022589,4.7226777 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 24.204908,4.835525 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 23.551746,0.774619 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: 23.638565,0.852744 + parent: 1 +- proto: CigPackBlack + entities: + - uid: 1208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.376524,0.5749662 + parent: 1 +- proto: CigPackSyndicate + entities: + - uid: 1209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.352821,8.446467 + parent: 1 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 1210 + components: + - type: Transform + pos: 38.907234,-10.228951 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 39.098236,-10.385201 + parent: 1 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 6 + components: + - type: Transform + pos: 18.376835,-16.494482 + parent: 1 + - type: HandheldLight + toggleActionEntity: 7 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 7 + - type: ActionsContainer + - uid: 1212 + components: + - type: Transform + pos: 15.3549795,20.74043 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 15.554662,20.592861 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 18.337765,-16.260105 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 18.663336,-16.416357 + parent: 1 +- proto: ClothingHeadHatMagician + entities: + - uid: 1217 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False +- proto: ClothingHeadHelmetCult + entities: + - uid: 1222 + components: + - type: Transform + pos: 14.330386,-6.133405 + parent: 1 +- proto: ClothingMaskNinja + entities: + - uid: 1218 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False +- proto: ClothingNeckCloakVoid + entities: + - uid: 1219 + components: + - type: Transform + parent: 1216 + - type: TypingIndicatorClothing + gotEquippedTime: 6119.5938804 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatDetectiveDark + entities: + - uid: 1220 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatHoSTrench + entities: + - uid: 1279 + components: + - type: MetaData + desc: Кевлар и золото, всё что нужно уважаемому мафиози + name: плотный тренч + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatSpaceAsshole + entities: + - uid: 1223 + components: + - type: MetaData + desc: Круче уже не будет + name: куртка ягера + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.454544,-5.6778793 + parent: 1 + - type: Storage + storedItems: + 1224: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1224 +- proto: ClothingOuterCoatSyndieCapArmored + entities: + - uid: 1225 + components: + - type: Transform + pos: 9.527611,8.477136 + parent: 1 +- proto: ClothingOuterDiscoAssBlazer + entities: + - uid: 1278 + components: + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesCult + entities: + - uid: 1227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.603865,-6.4849677 + parent: 1 +- proto: ClothingOuterVestHazard + entities: + - uid: 1228 + components: + - type: Transform + pos: 15.372343,20.11543 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: 15.528616,19.9505 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: 38.11718,-10.350479 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 38.368958,-10.393882 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 18.376835,-16.872086 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 18.546131,-17.158545 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 18.415903,-17.40594 + parent: 1 +- proto: ClothingOuterWinterHoSUnarmored + entities: + - uid: 1277 + components: + - type: MetaData + desc: Ах этот дорокуший натуральный мех! + name: зимнее пальто + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband +- proto: ClothingShoesBootsWork + entities: + - uid: 1235 + components: + - type: Transform + pos: 25.782879,1.1849253 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 25.687378,1.4627032 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 40.717003,-12.703504 + parent: 1 +- proto: ClothingShoesCult + entities: + - uid: 1238 + components: + - type: Transform + pos: 14.48666,-6.7779365 + parent: 1 +- proto: ClothingShoesLeather + entities: + - uid: 1249 + components: + - type: Transform + pos: 15.375599,6.154773 + parent: 1 +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 1221 + components: + - type: Transform + parent: 1216 + - type: Physics + canCollide: False + - uid: 1281 + components: + - type: MetaData + desc: стильно, че... + name: тёмная водолазка + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband +- proto: ComfyChair + entities: + - uid: 1239 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 +- proto: CoordinatesDisk + entities: + - uid: 1242 + components: + - type: Transform + parent: 1241 + - type: Physics + canCollide: False +- proto: CrateWeaponSecure + entities: + - uid: 1243 + components: + - type: Transform + anchored: True + pos: 10.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1244 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: DeleteOnTrigger + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger +- proto: Crowbar + entities: + - uid: 1245 + components: + - type: Transform + pos: 40.48259,-10.472601 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: 40.578087,-10.238226 + parent: 1 +- proto: DiskCase + entities: + - uid: 1241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.630583,1.3765178 + parent: 1 + - type: Storage + storedItems: + 1242: + position: 0,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1242 +- proto: DrinkBeerCan + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.652588,3.4241633 + parent: 1 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Tag + tags: + - Beer + - Trash + - type: Openable + opened: True + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.67950535 + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 3 + - uid: 4 + components: + - type: Transform + pos: 23.179445,3.384932 + parent: 1 + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: Tag + tags: + - Beer + - Trash + - type: Openable + opened: True + - type: PressurizedSolution + sprayFizzinessThresholdRoll: 0.50197107 + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 5 + - uid: 1247 + components: + - type: Transform + pos: 10.433331,8.868659 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 10.810991,8.5952215 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 10.765718,4.74102 + parent: 1 + - uid: 1318 + components: + - type: Transform + parent: 1316 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkIcedTeaGlass + entities: + - uid: 1251 + components: + - type: Transform + pos: 23.293312,0.62057626 + parent: 1 +- proto: DrinkWaterBottleFull + entities: + - uid: 1252 + components: + - type: Transform + pos: 40.031136,-10.281629 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 39.83145,-10.420518 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 39.718582,-10.220865 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 39.56231,-10.351073 + parent: 1 +- proto: DrinkWaterJug + entities: + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.654926,-5.390104 + parent: 1 +- proto: EmergencyMedipen + entities: + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.585604,4.7655106 + parent: 1 +- proto: FoodMeatLizardCutletCooked + entities: + - uid: 1258 + components: + - type: Transform + pos: 36.452084,-5.8193417 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: 36.816723,-5.871425 + parent: 1 +- proto: FoodPlateSmallTrash + entities: + - uid: 1260 + components: + - type: Transform + pos: 23.414858,3.7244139 + parent: 1 +- proto: FoodSnackMREBrownie + entities: + - uid: 1261 + components: + - type: Transform + pos: 36.734325,-5.730011 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: 36.51294,-5.71699 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 36.356667,-5.730011 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 36.538986,-5.782094 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: 36.81246,-5.7690735 + parent: 1 +- proto: FoodSpaceshroom + entities: + - uid: 1266 + components: + - type: Transform + pos: 35.419025,-2.3706357 + parent: 1 + - uid: 1267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.72406,-4.6623025 + parent: 1 +- proto: Gauze1 + entities: + - uid: 1268 + components: + - type: Transform + pos: 15.372343,19.585917 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: 10.322945,4.6238327 + parent: 1 +- proto: GeneratorWallmountBasic + entities: + - uid: 1270 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 +- proto: GunSafe + entities: + - uid: 1275 + components: + - type: Transform + anchored: True + pos: 11.5,4.5 + parent: 1 + - type: Physics + bodyType: Static + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1281 + - 1280 + - 1279 + - 1278 + - 1277 + - 1276 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: DeleteOnTrigger + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger +- proto: HighSecDoor + entities: + - uid: 1283 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + missingComponents: + - Destructible +- proto: HospitalCurtains + entities: + - uid: 1284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 1 +- proto: InflatableWall + entities: + - uid: 1285 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 +- proto: Lantern + entities: + - uid: 1291 + components: + - type: Transform + pos: 22.276638,0.7449975 + parent: 1 +- proto: LedLightBulb + entities: + - uid: 1293 + components: + - type: Transform + parent: 1292 + - type: Physics + canCollide: False + - uid: 1295 + components: + - type: Transform + parent: 1294 + - type: Physics + canCollide: False + - uid: 1297 + components: + - type: Transform + parent: 1296 + - type: Physics + canCollide: False + - uid: 1299 + components: + - type: Transform + parent: 1298 + - type: Physics + canCollide: False +- proto: LightBulb + entities: + - uid: 1301 + components: + - type: Transform + parent: 1300 + - type: Physics + canCollide: False + - uid: 1303 + components: + - type: Transform + parent: 1302 + - type: Physics + canCollide: False + - uid: 1305 + components: + - type: Transform + parent: 1304 + - type: Physics + canCollide: False + - uid: 1307 + components: + - type: Transform + parent: 1306 + - type: Physics + canCollide: False + - uid: 1309 + components: + - type: Transform + parent: 1308 + - type: Physics + canCollide: False + - uid: 1311 + components: + - type: Transform + parent: 1310 + - type: Physics + canCollide: False + - uid: 1313 + components: + - type: Transform + parent: 1312 + - type: Physics + canCollide: False + - uid: 1315 + components: + - type: Transform + parent: 1314 + - type: Physics + canCollide: False +- proto: LockerFreezerBase + entities: + - uid: 1316 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1317 + - 1318 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MagazineBoxLightRifleBig + entities: + - uid: 1319 + components: + - type: Transform + pos: 8.420673,4.727135 + parent: 1 +- proto: Mannequin + entities: + - uid: 1216 + components: + - type: Transform + rot: 14.137166941154069 rad + pos: 8.5,6.5 + parent: 1 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1221 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1220 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1219 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1218 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 1217 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null +- proto: Mattress + entities: + - uid: 1321 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: 25.5,2.5 + parent: 1 +- proto: Medkit + entities: + - uid: 1325 + components: + - type: Transform + pos: 37.5355,-10.445965 + parent: 1 +- proto: PaintingOldGuitarist + entities: + - uid: 1326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 +- proto: Paper + entities: + - uid: 1224 + components: + - type: Transform + parent: 1223 + - type: Paper + content: > + "Границы ключ переломлен пополам + + А наш батюшка Ленин совсем усоп + + Он разложился на плесень и на липовый мёд + + А перестройка всё идёт и идёт по плану + + И вся грязь превратилась в голый лёд" + - type: Physics + canCollide: False + - uid: 1327 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: 10.303888,7.7325897 + parent: 1 + - type: Paper + content: > + Чувааак мы устроим такое шоу... + + Мы выбегаем из шахты, а позади нас такой огромный [bold]КАБУУУУУМ[/bold] + - uid: 1328 + components: + - type: Transform + pos: 16.487148,7.6155634 + parent: 1 + - type: Paper + content: >+ + Открытие двери запускает систему самоуничтожения. + + + + + + [bold]Астероид будет взорван через 45 секунд после открытия гермозатвора + + [/bold] + + + + + - uid: 1329 + components: + - type: Transform + pos: 22.746294,0.72763646 + parent: 1 + - type: Paper + content: > + Уже как третий день сдесь копаемся.... Надоело всё... Кучи ксеноморфов лезут черт пойми откуда, а мы так ничего и не нашли! + + + + День четвертый... Сегодня дали пиказ о эвакуации... Ну и слава богу, я уже задолбался отбивать толпы тварей! +- proto: Pen + entities: + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.827324,0.65819204 + parent: 1 +- proto: PosterContrabandCommunistState + entities: + - uid: 1330 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 1331 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: 15.5,21.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 1334 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: 17.5,20.5 + parent: 1 +- proto: PoweredStrobeLightEpsilon + entities: + - uid: 1292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,0.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1293 + - type: PoweredLight + on: True + - type: ApcPowerReceiver + powerLoad: 6 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DamageOnInteract + isDamageActive: False + - uid: 1294 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1295 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1296 + components: + - type: Transform + pos: 26.5,14.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1297 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1298 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1299 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1301 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1303 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1304 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1305 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,4.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1307 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1308 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1309 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1310 + components: + - type: Transform + pos: 15.5,20.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1311 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1313 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 1314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-17.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1315 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: Railing + entities: + - uid: 1337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-10.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-10.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 1341 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 +- proto: RandomSmokables + entities: + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.89998,-5.248192 + parent: 1 +- proto: RitualDagger + entities: + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.840244,-7.334072 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 1347 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 +- proto: SalvageLootSpawner + entities: + - uid: 1349 + components: + - type: Transform + pos: 25.5,4.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 1350 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 +- proto: ScrapCamera + entities: + - uid: 1351 + components: + - type: Transform + pos: 8.250149,8.776312 + parent: 1 + missingComponents: + - Item + - Pullable +- proto: ScrapFaxMachine + entities: + - uid: 1352 + components: + - type: Transform + pos: 23.446198,2.7167768 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 1353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.33263,-3.3177495 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 1354 + components: + - type: Transform + pos: 8.434654,7.565374 + parent: 1 +- proto: ScreenTimer + entities: + - uid: 1355 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - type: SignalTimer + maxLength: 1000 + canEditLabel: False + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1395: + - Timer: Trigger + 1394: + - Timer: Trigger + 1396: + - Timer: Trigger + 1397: + - Timer: Trigger + 1357: + - Start: Trigger + 1393: + - Timer: Trigger + 1308: + - Start: On + - Timer: Off + 1300: + - Start: On + - Timer: Off + 1106: + - Timer: Close + 1275: + - Timer: Trigger + 1304: + - Start: On + - Timer: Off + 1292: + - Start: On + - Timer: Off + 1306: + - Start: On + - Timer: Off + 1398: + - Timer: Trigger + 1243: + - Timer: Trigger + 1392: + - Timer: Trigger + - type: DeviceLinkSink + invokeLimit: 100 + invokeCounter: 101 + missingComponents: + - Construction + - uid: 1356 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1314: + - Timer: Off + - Start: On + 12: + - Start: Toggle + - Start: AutoClose + 9: + - Start: Toggle + - Start: AutoClose + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1357 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1366: + - Start: Trigger + 1367: + - Start: Trigger + 1358: + - Start: Trigger + 1298: + - Start: On + - Timer: Off + 1312: + - Start: On + - Timer: Off + 1296: + - Start: On + - Timer: Off + 1294: + - Start: On + - Timer: Off + - type: DeviceLinkSink + invokeCounter: 1 + missingComponents: + - Construction + - uid: 1358 + components: + - type: Transform + pos: 17.5,21.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1359 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 1 + - type: SignalTimer + maxLength: 1000 + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1302: + - Start: On + - Timer: Off + 11: + - Timer: DoorBolt + 10: + - Timer: DoorBolt + - type: DeviceLinkSink + invokeCounter: 1 +- proto: ShellShotgun + entities: + - uid: 1360 + components: + - type: Transform + pos: 34.291206,-5.7299623 + parent: 1 + - uid: 1361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.291206,-5.860171 + parent: 1 + - uid: 1362 + components: + - type: Transform + rot: 2.3387411976724017 rad + pos: 34.291206,-5.716942 + parent: 1 + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.020485,-3.624269 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: 36.02324,-3.0904148 + parent: 1 +- proto: SignalButton + entities: + - uid: 1365 + components: + - type: MetaData + name: кнопка открытия двери + - type: Transform + pos: 13.5,7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1107: + - Pressed: Open + 1106: + - Pressed: Open +- proto: SignalTimer + entities: + - uid: 1366 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1356: + - Start: Trigger + - type: DeviceLinkSink + invokeCounter: 1 + - type: ActiveSignalTimer + missingComponents: + - Construction + - uid: 1367 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 + - type: SignalTimer + delay: 45 + - type: DeviceLinkSource + linkedPorts: + 1359: + - Start: Trigger + - type: DeviceLinkSink + invokeCounter: 1 + - type: ActiveSignalTimer + missingComponents: + - Construction +- proto: SpaceCash1000 + entities: + - uid: 1276 + components: + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash30000 + entities: + - uid: 1368 + components: + - type: Transform + pos: 8.5116825,5.5825458 + parent: 1 +- proto: SpawnMobBearSalvage + entities: + - uid: 1369 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 1372 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 25.5,3.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 24.5,4.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 29.5,0.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 26.5,10.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: 28.5,5.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 +- proto: SpawnMobCarpMagic + entities: + - uid: 1382 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 1384 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 +- proto: StrangePill + entities: + - uid: 1385 + components: + - type: Transform + rot: 601.1437542644069 rad + pos: 8.6690645,7.7476654 + parent: 1 + - uid: 1386 + components: + - type: Transform + rot: 0.15707963267948966 rad + pos: 8.642541,7.3700614 + parent: 1 + - uid: 1387 + components: + - type: Transform + rot: 565.8531967890816 rad + pos: 8.341309,7.916936 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 1388 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 1 +- proto: SyndicateBomb + entities: + - uid: 1392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,19.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1393 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1394 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1395 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1396 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1397 + components: + - type: Transform + rot: 1.735276332348601E-11 rad + pos: 18.500092,13.499857 + parent: 1 + - type: Explosive + tileBreakScale: 0 + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Pullable + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - type: Stealth + - type: StealthOnMove + - type: TriggerOnSignal + - type: DeviceLinkSink + ports: + - Trigger + missingComponents: + - Defusable + - Pullable +- proto: TableReinforced + entities: + - uid: 1399 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 17.5,7.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 16.5,7.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 +- proto: TableStone + entities: + - uid: 1404 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 +- proto: TableWood + entities: + - uid: 1406 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-10.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-10.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-10.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,20.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 1 +- proto: TreasureCDDrive + entities: + - uid: 1418 + components: + - type: Transform + pos: 22.60745,1.781363 + parent: 1 +- proto: TreasureFlopDiskDrive + entities: + - uid: 1419 + components: + - type: Transform + pos: 22.312267,1.859488 + parent: 1 +- proto: TreasureHardDiskDrive + entities: + - uid: 1420 + components: + - type: MetaData + desc: Возможно на нём есть секретные данные, вопрос только в том, как их прочитать... + - type: Transform + pos: 11.488035,8.375873 + parent: 1 + - uid: 1421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.260176,1.4775436 + parent: 1 +- proto: UniformShortsRed + entities: + - uid: 1280 + components: + - type: MetaData + desc: Да, трусы, мы в 31 первом веке живем между прочим. + name: трусы + - type: Transform + parent: 1275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - SuitSensor +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 1422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 1425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,18.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: 18.5,14.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 1 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,8.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,2.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,3.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 1527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-9.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-13.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-12.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-12.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-9.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-10.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-19.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-13.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-9.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-9.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-13.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-20.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-18.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,21.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,21.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,22.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,22.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,23.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,23.5 + parent: 1 +- proto: WeaponLaserGun + entities: + - uid: 1553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.260035,4.570198 + parent: 1 +- proto: WeaponPistolViper + entities: + - uid: 1317 + components: + - type: Transform + parent: 1316 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunBulldog + entities: + - uid: 1244 + components: + - type: Transform + parent: 1243 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 1556 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: 35.41117,-3.8679833 + parent: 1 +- proto: WeaponTurretXeno + entities: + - uid: 1557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-5.5 + parent: 1 +- proto: WoodenSupport + entities: + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-3.5 + parent: 1 +- proto: WoodenSupportBeam + entities: + - uid: 1559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 1 +- proto: XenoWardingTower + entities: + - uid: 1560 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_ore.yml b/Resources/Maps/Ruins/corvax_ore.yml new file mode 100644 index 00000000000..38d4f034170 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_ore.yml @@ -0,0 +1,8591 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 158: PlatingAsteroid +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: 2.6001568,0.089054585 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: ngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: ngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: ngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: BwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: BwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: ngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAAngAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: WallRock + entities: + - uid: 4 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -17.5,2.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -17.5,3.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -18.5,2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -18.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -19.5,2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -19.5,3.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -20.5,2.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: -23.5,-1.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -22.5,-1.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -5.5,-18.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -19.5,-9.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -19.5,-10.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -11.5,-12.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: -13.5,-18.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -12.5,-18.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -12.5,-19.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -12.5,-20.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 492 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -11.5,-22.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -12.5,-21.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 533 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 538 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 539 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 543 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 544 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 555 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 625 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 14.5,1.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 16.5,0.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 17.5,-0.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 17.5,0.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 17.5,1.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 18.5,-0.5 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: 18.5,0.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 18.5,1.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 688 + components: + - type: Transform + pos: 12.5,2.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 12.5,3.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 13.5,4.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 16.5,2.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 16.5,3.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 15.5,4.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 16.5,4.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 17.5,2.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 17.5,3.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 17.5,4.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 14.5,2.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 14.5,4.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 754 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 755 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 757 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 759 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 811 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 1 + - uid: 820 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 828 + components: + - type: Transform + pos: 20.5,2.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 21.5,3.5 + parent: 1 + - uid: 834 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 1 + - uid: 838 + components: + - type: Transform + pos: 22.5,2.5 + parent: 1 + - uid: 839 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 1 + - uid: 840 + components: + - type: Transform + pos: 23.5,0.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 23.5,1.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 23.5,2.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 22.5,3.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 23.5,3.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 14.5,9.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 924 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 925 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 940 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 944 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 950 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 951 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 953 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 18.5,6.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 21.5,5.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 21.5,4.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 0.5,13.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: 4.5,17.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: -3.5,21.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: -8.5,23.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: -8.5,24.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: 27.5,0.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 26.5,0.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: -4.5,23.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: -5.5,23.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + pos: -3.5,23.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: -4.5,24.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: -9.5,21.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: -9.5,20.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: -9.5,13.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: -9.5,12.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: -10.5,16.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: -10.5,13.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: -10.5,12.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: -11.5,22.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: -11.5,17.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: -12.5,22.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: -12.5,21.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: -13.5,22.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: -13.5,21.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: -13.5,20.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: -13.5,19.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: -13.5,15.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: -13.5,16.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: -14.5,21.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: -14.5,20.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: -14.5,15.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: -14.5,19.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 1304 + components: + - type: Transform + pos: -7.5,12.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: -6.5,12.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: -6.5,17.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: -26.5,18.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: -25.5,19.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + pos: -28.5,15.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + pos: -28.5,14.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -29.5,15.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -29.5,14.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: -21.5,15.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: -21.5,14.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: -21.5,12.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: -21.5,11.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: -20.5,14.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: -19.5,15.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: -18.5,14.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: -17.5,13.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: -17.5,12.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: -18.5,16.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: -18.5,17.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: -17.5,17.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: -23.5,10.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: -23.5,8.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: -24.5,10.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: -22.5,6.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: -21.5,10.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: -21.5,2.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: -20.5,10.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: -16.5,9.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: -16.5,8.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: -16.5,5.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: -16.5,6.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: -15.5,8.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: -15.5,6.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: -15.5,5.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: -15.5,4.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: -15.5,3.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: -15.5,7.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: -14.5,2.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: -12.5,2.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: -28.5,17.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: -9.5,23.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: 12.5,14.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 16.5,9.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: 8.5,11.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: 14.5,12.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: 16.5,11.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 +- proto: WallRockArtifactFragment + entities: + - uid: 74 + components: + - type: Transform + pos: -20.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -20.5,4.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 +- proto: WallRockCoal + entities: + - uid: 30 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 9.5,2.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 21.5,0.5 + parent: 1 + - uid: 831 + components: + - type: Transform + pos: 21.5,1.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 21.5,2.5 + parent: 1 + - uid: 835 + components: + - type: Transform + pos: 22.5,0.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 22.5,1.5 + parent: 1 + - uid: 837 + components: + - type: Transform + pos: 20.5,3.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 10.5,2.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 11.5,2.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 10.5,10.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 941 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - uid: 942 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: -9.5,17.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: -9.5,16.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: -14.5,18.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: -8.5,17.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + pos: -8.5,15.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: -23.5,14.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: -23.5,12.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: -22.5,15.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: -22.5,14.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: -22.5,12.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: -20.5,9.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: -19.5,10.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: -19.5,9.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: -18.5,10.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: -18.5,9.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: -17.5,9.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: -17.5,10.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 +- proto: WallRockGold + entities: + - uid: 64 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: -8.5,26.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: -20.5,15.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: -20.5,16.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: 14.5,10.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 1 +- proto: WallRockPlasma + entities: + - uid: 546 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 946 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 947 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 979 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: WallRockQuartz + entities: + - uid: 35 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 1 + - uid: 523 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 15.5,1.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 16.5,1.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 15.5,2.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 825 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 1 + - uid: 826 + components: + - type: Transform + pos: 20.5,0.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 20.5,1.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: -11.5,18.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: -6.5,16.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: -19.5,14.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + pos: -18.5,12.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: -24.5,12.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -7.5,-0.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 +- proto: WallRockSilver + entities: + - uid: 44 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -17.5,0.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: -16.5,3.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: -16.5,4.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: -15.5,2.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: -11.5,2.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 +- proto: WallRockTin + entities: + - uid: 2 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -14.5,-0.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -17.5,5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -17.5,6.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -19.5,5.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -19.5,6.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -20.5,5.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -20.5,6.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -18.5,-8.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -18.5,-10.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -17.5,-10.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -16.5,-10.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -15.5,-10.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -13.5,-10.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -14.5,-17.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -13.5,-17.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 1 + - uid: 520 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 1 + - uid: 521 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 525 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 12.5,-2.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 14.5,0.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 15.5,0.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 12.5,0.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 12.5,1.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 13.5,0.5 + parent: 1 + - uid: 695 + components: + - type: Transform + pos: 13.5,1.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 945 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: -6.5,9.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: -7.5,21.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: -6.5,23.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: -5.5,22.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: -4.5,22.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: -11.5,12.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: -12.5,20.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: -12.5,13.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: -12.5,12.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: -14.5,13.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: -14.5,12.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: -27.5,17.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: -27.5,18.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: -27.5,16.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: -27.5,15.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: -27.5,14.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + pos: -26.5,17.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: -26.5,16.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -26.5,15.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: -26.5,14.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -26.5,13.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: -25.5,18.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: -25.5,17.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: -25.5,16.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: -25.5,14.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: -25.5,13.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: -24.5,19.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: -25.5,15.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: -24.5,18.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: -24.5,17.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + pos: -24.5,16.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + pos: -24.5,15.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + pos: -24.5,14.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: -26.5,12.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: -17.5,15.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: -17.5,14.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: -16.5,15.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: -16.5,12.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: -15.5,15.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: -15.5,13.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: -23.5,16.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: -23.5,17.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: -21.5,9.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: -21.5,6.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: -20.5,8.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: -16.5,10.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: -15.5,9.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: -15.5,10.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: -14.5,11.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: -14.5,10.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: -13.5,10.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: -13.5,2.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: -28.5,16.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: -28.5,18.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 +- proto: WallRockUranium + entities: + - uid: 3 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -18.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -19.5,-0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -18.5,0.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -20.5,-0.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -22.5,-0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -9.5,-3.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -7.5,-18.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 13.5,3.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 15.5,3.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 14.5,3.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: 4.5,16.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: -10.5,22.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: -10.5,20.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: -12.5,18.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: -13.5,18.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: -9.5,-5.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_research_station.yml b/Resources/Maps/Ruins/corvax_research_station.yml new file mode 100644 index 00000000000..a296017ce13 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_research_station.yml @@ -0,0 +1,9885 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 14: FloorBrokenWood + 19: FloorDark + 4: FloorDarkMono + 5: FloorFlesh + 11: FloorFreezer + 13: FloorKitchen + 18: FloorMetalFoam + 12: FloorMiningDark + 9: FloorReinforcedHardened + 22: FloorShuttleWhite + 8: FloorSteel + 2: FloorSteelBurnt + 3: FloorSteelDamaged + 7: FloorSteelDirty + 6: FloorTechMaint + 10: FloorTechMaint2 + 20: FloorTechMaint3 + 21: FloorWhiteMono + 1: Lattice + 157: Plating + 159: PlatingBrass + 15: PlatingBurnt + 16: PlatingDamaged + 17: TrainLattice +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -0.6875,-0.546875 + parent: invalid + - type: MapGrid + chunks: + 0,-1: + ind: 0,-1 + tiles: DgAAAAAADgAAAAAADgAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAADwAAAAAAEAAAAAAADgAAAAAADwAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABQAAAAAAAQAAAAAADgAAAAAADwAAAAAADgAAAAAAnQAAAAAADwAAAAAAAgAAAAAADwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAABAAAAAAAAQAAAAAADwAAAAAADgAAAAAADwAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAADgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADwAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAnQAAAAAADwAAAAAADwAAAAAADwAAAAAAEAAAAAAAAQAAAAAAnQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAnQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAAwAAAAAADwAAAAAADwAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAADwAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AQAAAAAADwAAAAAAEAAAAAAAAgAAAAAAnQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAnQAAAAAAnQAAAAAAFAAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAEAAAAAAADwAAAAAAAQAAAAAAEAAAAAAAAwAAAAAAAgAAAAAAnQAAAAAABwAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAEAAAAAAADwAAAAAACAAAAAAAAgAAAAAACAAAAAAAnQAAAAAABwAAAAAACAAAAAAAAgAAAAAAnQAAAAAAFAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEAAAAAAAAwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAEQAAAAAAEQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAnQAAAAAADwAAAAAAnQAAAAAAAwAAAAAAAgAAAAAADwAAAAAAAwAAAAAAAgAAAAAADwAAAAAADwAAAAAAnQAAAAAABwAAAAAAnQAAAAAADwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAAwAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAABwAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADwAAAAAAnQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAAEAAAAAAAEwAAAAAADwAAAAAAEwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABAAAAAAABAAAAAAADwAAAAAADwAAAAAAEwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAABwAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABQAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: nQAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAACwAAAAAAnQAAAAAACQAAAAAACQAAAAAABQAAAAAABQAAAAAACQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAACwAAAAAACQAAAAAACQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAACwAAAAAAnQAAAAAACQAAAAAABQAAAAAABQAAAAAABQAAAAAACQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAACQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACgAAAAAADwAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACgAAAAAACgAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACgAAAAAAnQAAAAAADwAAAAAADwAAAAAADwAAAAAAAQAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABgAAAAAAnQAAAAAABgAAAAAAnQAAAAAADwAAAAAAAQAAAAAAnQAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAACgAAAAAACgAAAAAACgAAAAAAnQAAAAAABgAAAAAAnQAAAAAAnQAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAnQAAAAAABgAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAnQAAAAAABgAAAAAADwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: BAAAAAAAnQAAAAAAFQAAAAAAFgAAAAAADwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAFQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAADwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAnQAAAAAAFQAAAAAADwAAAAAADwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAADwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAFQAAAAAADwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAnQAAAAAADwAAAAAAAwAAAAAAAwAAAAAAnQAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAwAAAAAABwAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAnQAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAnQAAAAAABwAAAAAADwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAAnQAAAAAABwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAADAAAAAAADAAAAAAAnQAAAAAABAAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABAAAAAAADAAAAAAADAAAAAAABAAAAAAABAAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABwAAAAAABwAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAAnQAAAAAADAAAAAAADAAAAAAAnQAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAnQAAAAAADQAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAADQAAAAAABAAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAAnQAAAAAADQAAAAAABAAAAAAABAAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAADQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAAAnQAAAAAAnQAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAEQAAAAAAEQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAnQAAAAAAAwAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: CwAAAAAACwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAACwAAAAAAnQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: nQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAnQAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAADwAAAAAADwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAEAAAAAAAnQAAAAAAFQAAAAAAFQAAAAAADwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 33: 21,-32 + 34: 21,-32 + 35: 22,-31 + 36: 23,-30 + 37: 23,-30 + 38: 23,-31 + 39: 23,-32 + 40: 20,-31 + 41: 15,-30 + 42: 15,-30 + 43: 15,-29 + 54: 13,-31 + 100: 34,-15 + 101: 33,-16 + 102: 32,-16 + 103: 32,-15 + 104: 31,-15 + 105: 31,-14 + 167: 28,-7 + 168: 31,-6 + 169: 30,-4 + 233: 2,-19 + 234: 1,-18 + 235: -1,-19 + 236: 0,-20 + 239: 1,-15 + 240: 3,-16 + 241: 3,-13 + 242: 3,-11 + 252: 2,-15 + 253: 2,-16 + 254: 1,-16 + 255: 0,-16 + 256: 3,-14 + 257: 2,-13 + 258: 1,-14 + 259: 3,-12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 55: 10,-32 + 56: 10,-32 + 57: 9,-30 + 58: 9,-30 + 59: 9,-32 + 60: 11,-29 + 61: 11,-29 + 62: 9,-31 + 63: 9,-31 + 64: 1,-30 + 65: 1,-30 + 66: 6,-25 + 67: 7,-27 + 68: 7,-27 + 69: 7,-21 + 70: 7,-21 + 71: 6,-18 + 72: 6,-18 + 73: 6,-17 + 74: 6,-15 + 75: 6,-15 + 76: 7,-12 + 77: 7,-12 + 78: 6,-12 + 79: 6,-12 + 80: 5,-11 + 81: 33,-15 + 82: 32,-15 + 83: 32,-15 + 84: 31,-14 + 85: 31,-15 + 86: 31,-16 + 87: 31,-16 + 88: 32,-16 + 89: 33,-16 + 90: 33,-14 + 91: 34,-14 + 92: 32,-14 + 93: 33,-15 + 94: 33,-15 + 95: 31,-14 + 96: 31,-14 + 97: 33,-14 + 98: 32,-14 + 99: 34,-14 + 106: 33,-18 + 107: 33,-17 + 108: 32,-18 + 109: 32,-18 + 110: 32,-19 + 111: 32,-19 + 112: 32,-20 + 113: 33,-19 + 114: 33,-19 + 115: 33,-19 + 116: 33,-20 + 117: 33,-21 + 118: 33,-21 + 119: 32,-21 + 120: 31,-21 + 121: 31,-19 + 122: 31,-18 + 123: 30,-24 + 124: 30,-24 + 125: 29,-29 + 126: 29,-29 + 127: 34,-12 + 128: 33,-12 + 129: 32,-12 + 130: 31,-12 + 131: 31,-11 + 132: 30,-11 + 133: 29,-12 + 134: 29,-11 + 135: 28,-11 + 136: 26,-9 + 137: 26,-8 + 138: 25,-7 + 139: 24,-7 + 140: 26,-7 + 141: 26,-10 + 142: 26,-11 + 143: 27,-11 + 144: 25,-11 + 145: 25,-10 + 146: 22,-7 + 147: 21,-7 + 148: 20,-7 + 149: 19,-7 + 150: 18,-7 + 151: 17,-8 + 152: 16,-8 + 153: 15,-8 + 154: 28,-8 + 155: 28,-7 + 156: 29,-7 + 157: 32,-6 + 158: 31,-5 + 159: 31,-6 + 160: 30,-5 + 161: 29,-5 + 162: 30,-4 + 163: 31,-7 + 164: 30,-6 + 165: 30,-7 + 166: 29,-8 + 197: 29,-26 + 198: 29,-26 + 199: 29,-26 + 200: 33,-29 + 201: 33,-29 + 202: 32,-30 + 203: 32,-30 + 204: 33,-30 + 205: 33,-30 + 206: 30,-30 + 207: 30,-30 + 208: 30,-29 + 209: 29,-30 + 210: 27,-30 + 211: 27,-30 + 212: 26,-30 + 213: 26,-29 + 214: 26,-29 + 215: 27,-29 + 216: 27,-24 + 217: 27,-24 + 218: 27,-23 + 219: 26,-23 + 220: 26,-24 + 221: 30,-27 + 222: 30,-27 + 223: 3,-19 + 224: 3,-19 + 225: 2,-18 + 226: 2,-18 + 227: 1,-19 + 228: 1,-19 + 229: 0,-20 + 230: 0,-20 + 231: 1,-20 + 232: 3,-20 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1: 23,-33 + 2: 24,-33 + 3: 21,-33 + 4: 21,-33 + 5: 19,-33 + 6: 18,-33 + 7: 18,-32 + 8: 18,-30 + 9: 18,-29 + 10: 18,-29 + 11: 21,-29 + 12: 21,-29 + 13: 20,-29 + 14: 20,-29 + 15: 22,-29 + 16: 23,-29 + 17: 24,-29 + 18: 18,-30 + 19: 18,-31 + 20: 18,-32 + 21: 18,-33 + 22: 19,-33 + 23: 23,-33 + 24: 22,-33 + 25: 21,-33 + 26: 24,-33 + 27: 24,-32 + 44: 14,-29 + 45: 14,-29 + 46: 14,-31 + 47: 14,-31 + 48: 13,-31 + 49: 13,-31 + 50: 15,-30 + 51: 15,-29 + 52: 16,-32 + 53: 16,-32 + 170: 35,-9 + 171: 34,-9 + 172: 34,-8 + 173: 34,-7 + 174: 34,-7 + 175: 34,-7 + 176: 34,-7 + 177: 34,-6 + 178: 35,-7 + 179: 35,-7 + 180: 34,-6 + 181: 34,-6 + 182: 35,-9 + 183: 36,-9 + 184: 34,-11 + 185: 35,-12 + 186: 36,-12 + 187: 26,-3 + 188: 26,-3 + 189: 26,-4 + 190: 26,-4 + 191: 26,-4 + 192: 26,-3 + 193: 26,-3 + 194: 33,-24 + 195: 33,-24 + 196: 33,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 28: 22,-32 + 29: 21,-30 + 30: 21,-30 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 31: 19,-31 + 32: 19,-31 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,-4: + 0: 61183 + 1: 4352 + 0,-5: + 0: 8191 + -1,-4: + 1: 2176 + 0,-3: + 1: 1123 + 0: 140 + 1,-4: + 0: 61422 + 1,-3: + 0: 61166 + 1: 4352 + 1,-2: + 1: 8209 + 0: 52974 + 1,-1: + 1: 61178 + 0: 4 + 1,-5: + 0: 61182 + 1,0: + 1: 43690 + 2,-2: + 0: 51 + 1: 1484 + 2,-4: + 2: 61166 + 2,-3: + 0: 60928 + 2: 12 + 2,-5: + 2: 61164 + 3,-4: + 2: 6591 + 3,-3: + 0: 36328 + 1: 29184 + 3,-2: + 1: 38499 + 0: 26764 + 3,-5: + 2: 47576 + 3,-1: + 1: 1123 + 0: 4 + 4,-3: + 0: 3840 + 2: 14 + 4,-2: + 0: 49407 + 1: 4096 + 0,-8: + 1: 17 + 0: 32750 + 0,-9: + 1: 15360 + 0: 49152 + 0,-7: + 1: 243 + 0: 16128 + 2: 4 + -1,-7: + 1: 8189 + 0: 32768 + -1,-6: + 0: 33992 + 1: 16932 + 0,-6: + 0: 4160 + -1,-5: + 0: 2248 + 1: 33828 + 1,-7: + 0: 28671 + 1: 32768 + 1,-9: + 0: 47360 + 1: 1770 + 1,-8: + 0: 3822 + 1,-6: + 0: 58914 + 1: 2124 + 2,-7: + 0: 36853 + 2,-9: + 0: 4112 + 1: 25824 + 2,-8: + 0: 52462 + 2: 512 + 2,-6: + 0: 3822 + 3,-8: + 1: 1 + 0: 61166 + 3,-7: + 0: 4088 + 3,-6: + 0: 9011 + 2: 2184 + 3,-9: + 0: 8192 + 1: 49408 + 4,-8: + 0: 56797 + 4,-7: + 0: 4088 + 4,-6: + 2: 4095 + 4,-5: + 2: 4095 + -2,-7: + 1: 3296 + 4,-4: + 2: 61166 + 4,-1: + 1: 548 + 0: 8 + 5,-4: + 2: 13107 + 0: 34952 + 5,-3: + 2: 3 + 0: 3976 + 5,-2: + 0: 29183 + 5,-1: + 0: 1229 + 1: 24576 + 5,0: + 1: 12 + 6,-2: + 0: 22391 + 6,-1: + 0: 1109 + 1: 16384 + 6,-4: + 2: 3310 + 6,-3: + 0: 26350 + 6,-5: + 2: 61182 + 6,0: + 1: 15 + 7,-4: + 2: 307 + 0: 2184 + 7,-3: + 0: 29951 + 1: 32768 + 7,-2: + 0: 65527 + 1: 8 + 7,-1: + 0: 15 + 1: 57344 + 7,-5: + 2: 13107 + 0: 2184 + 7,0: + 1: 3 + 8,-4: + 0: 2035 + 1: 4 + 8,-3: + 0: 49279 + 2: 768 + 1: 12416 + 8,-2: + 1: 34841 + 0: 21956 + 8,-1: + 0: 1 + 1: 62156 + 4,-9: + 0: 53248 + 1: 318 + 5,-8: + 0: 65535 + 5,-7: + 0: 4080 + 5,-6: + 2: 1782 + 5,-5: + 2: 4095 + 5,-9: + 0: 61440 + 1: 47 + 6,-8: + 0: 56605 + 6,-7: + 0: 36852 + 6,-6: + 2: 49425 + 0: 204 + 6,-9: + 0: 53760 + 1: 3171 + 7,-8: + 1: 5 + 0: 26170 + 7,-7: + 0: 20466 + 7,-6: + 2: 4096 + 0: 32870 + 7,-9: + 0: 62976 + 1: 2400 + 8,-8: + 0: 13062 + 1: 34952 + 8,-7: + 0: 9075 + 1: 52360 + 8,-6: + 0: 12407 + 1: 50312 + 8,-5: + 0: 9011 + 1: 50368 + 1,-10: + 1: 44960 + 2,-10: + 1: 4096 + 9,-4: + 1: 12304 + 0: 256 + 9,-3: + 0: 4097 + 1: 530 + 9,-1: + 1: 4112 + 8,-9: + 0: 4096 + 1: 59136 + 9,-8: + 1: 12560 + 9,-7: + 1: 4097 + 2,0: + 1: 1 + 6,-10: + 1: 4096 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirlockAssemblyHighSec + entities: + - uid: 635 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 +- proto: AirlockAssemblyMining + entities: + - uid: 421 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 816 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 +- proto: AirlockHatch + entities: + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1 + - type: Door + secondsUntilStateChange: -22297.078 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 430 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1 + - type: Door + secondsUntilStateChange: -22281.445 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True +- proto: AirlockHatchMaintenance + entities: + - uid: 155 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 1 + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 1 +- proto: AirlockMiningGlass + entities: + - uid: 422 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - type: AccessReader + containerAccessProvider: null + access: + - - Security + - type: WiresPanelSecurity + securityLevel: medSecurity +- proto: APCHyperCapacity + entities: + - uid: 695 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 +- proto: Ash + entities: + - uid: 343 + components: + - type: Transform + pos: 20.166565,-18.29362 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: 19.86969,-18.54362 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: 20.24469,-18.652994 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 19.472424,-19.658176 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 19.659924,-19.580051 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 20.081799,-19.658176 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 1330 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 36 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - uid: 842 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 843 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 844 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1 + - uid: 845 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 846 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 847 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 848 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 849 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 850 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 1 + - uid: 854 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 1 + - uid: 855 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 1 + - uid: 856 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 1 + - uid: 857 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 875 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 876 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1 + - uid: 877 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 1 + - uid: 879 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 1 + - uid: 881 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 1 + - uid: 882 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 1 + - uid: 883 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 885 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 1 + - uid: 886 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 887 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 888 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 1 + - uid: 892 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 1 + - uid: 894 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 895 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 1 + - uid: 896 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 1 + - uid: 897 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1 + - uid: 900 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 1 + - uid: 901 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 902 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 1 + - uid: 903 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 904 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 905 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 906 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 1 + - uid: 907 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 908 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 909 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 1 + - uid: 910 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 1 + - uid: 911 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 1 + - uid: 913 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 1 + - uid: 914 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 + - uid: 915 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 1 + - uid: 916 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 1 + - uid: 917 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 1 + - uid: 918 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 1 + - uid: 919 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 1 + - uid: 920 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 1 + - uid: 921 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 1 + - uid: 922 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 1 + - uid: 923 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 1 + - uid: 925 + components: + - type: Transform + anchored: False + pos: 7.5,-23.5 + parent: 1 + - uid: 926 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 1 + - uid: 927 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 928 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 1 + - uid: 930 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1 + - uid: 931 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 1 + - uid: 932 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 1 + - uid: 933 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 1 + - uid: 934 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 1 + - uid: 935 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 1 + - uid: 937 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 1 + - uid: 938 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 1 + - uid: 939 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 948 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 1 + - uid: 949 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 952 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 1 + - uid: 954 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 1 + - uid: 955 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 1 + - uid: 956 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 957 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 1 + - uid: 958 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 1 + - uid: 959 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 1 + - uid: 960 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 961 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 1 + - uid: 962 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 1 + - uid: 963 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 1 + - uid: 964 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 1 + - uid: 965 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 1 + - uid: 966 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 1 + - uid: 967 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 1 + - uid: 968 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1 + - uid: 969 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 1 + - uid: 970 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 971 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1 + - uid: 972 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - uid: 973 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 1 + - uid: 974 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 975 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - uid: 976 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 977 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 978 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 979 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 980 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 982 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 1 + - uid: 988 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 993 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 1 + - uid: 998 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + pos: 31.5,-26.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: 29.5,-29.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + pos: 32.5,-29.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 33.5,-17.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: 33.5,-16.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 1140 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 1146 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 1 + - uid: 1304 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: 13.5,-20.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 31.5,-32.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: 28.5,-32.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: 32.5,-32.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 1 +- proto: BaseChemistryEmptyVial + entities: + - uid: 300 + components: + - type: Transform + pos: 12.357279,-12.137011 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: 12.622904,-12.105761 + parent: 1 +- proto: BlastDoor + entities: + - uid: 17 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 696 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 699 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 1 + - uid: 701 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 1 + - uid: 702 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 1 + - uid: 703 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1 + - uid: 712 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 713 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 1 + - uid: 722 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 736 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 737 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1 + - uid: 747 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.090652,-9.521179 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 20.684402,-6.724304 + parent: 1 + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.246902,-10.177429 + parent: 1 +- proto: CableHV + entities: + - uid: 147 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 +- proto: CableHVStack1 + entities: + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.4744873,-25.483284 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.2869873,-25.561409 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.802612,-25.577034 + parent: 1 +- proto: CableMV + entities: + - uid: 262 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 + - uid: 663 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 1 + - uid: 668 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 675 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 676 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 1 + - uid: 683 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 1 + - uid: 692 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 1 + - uid: 693 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 781 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 782 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 784 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 785 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 1 +- proto: CableMVStack1 + entities: + - uid: 1375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.575027,-7.427429 + parent: 1 + - uid: 1382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.510206,-10.455029 + parent: 1 + - uid: 1383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.478956,-9.548779 + parent: 1 +- proto: CableTerminal + entities: + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 1 +- proto: CartridgeMagnumAP + entities: + - uid: 179 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 193 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CartridgePistolPractice + entities: + - uid: 182 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 192 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Catwalk + entities: + - uid: 791 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 1 + - uid: 796 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 1 + - uid: 800 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 1 + - uid: 802 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 1 + - uid: 803 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 1 + - uid: 804 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 805 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 806 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 +- proto: Chair + entities: + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 1 + - uid: 754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.52094,-15.412819 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 16.767181,-23.434914 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.564784,-12.889212 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.814784,-17.826712 + parent: 1 + - uid: 347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.52594,-18.19987 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 28.025732,-19.408087 + parent: 1 +- proto: CheapLighter + entities: + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.649857,-18.539255 + parent: 1 +- proto: ChemDispenserEmpty + entities: + - uid: 312 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 319 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1 +- proto: ClockworkGrille + entities: + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,0.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-0.5 + parent: 1 +- proto: ClockworkGrilleBroken + entities: + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,0.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 1 +- proto: ClosetChef + entities: + - uid: 26 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: ClosetL3 + entities: + - uid: 324 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 325 + - 326 + - 327 + - 328 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 329 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 71 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 1 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 337 + components: + - type: Transform + pos: 23.517881,-17.477234 + parent: 1 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 325 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsMercGlovesCombat + entities: + - uid: 151 + components: + - type: Transform + parent: 585 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodBioCmo + entities: + - uid: 328 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetAncient + entities: + - uid: 1351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.7828841,-18.654243 + parent: 1 +- proto: ClothingMaskGasMerc + entities: + - uid: 586 + components: + - type: Transform + pos: 16.502377,-30.460403 + parent: 1 +- proto: ClothingMaskGoldenCursed + entities: + - uid: 11 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 +- proto: ClothingOuterBioCmo + entities: + - uid: 327 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterStraightjacket + entities: + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.495687,-22.583204 + parent: 1 +- proto: ClothingShoesBootsMercFilled + entities: + - uid: 587 + components: + - type: Transform + parent: 585 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesGaloshes + entities: + - uid: 326 + components: + - type: Transform + parent: 324 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 370 + components: + - type: Transform + pos: 26.513855,-13.626347 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: 26.482605,-16.220097 + parent: 1 + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.43573,-14.595097 + parent: 1 + - uid: 1561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.480062,-22.614454 + parent: 1 + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.620687,-28.635706 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 1 +- proto: CounterMetalFrame + entities: + - uid: 159 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 1 + - uid: 823 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 1 + - uid: 824 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 1 +- proto: CounterWoodFrame + entities: + - uid: 611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 1 + - uid: 613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 1 + - uid: 614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-31.5 + parent: 1 + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 1 + - uid: 616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 1 + - uid: 617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-30.5 + parent: 1 + - uid: 755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 + parent: 1 + - uid: 830 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 380 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 381 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateSurgery + entities: + - uid: 332 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: Crematorium + entities: + - uid: 66 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 1 +- proto: ExtinguisherCabinet + entities: + - uid: 1474 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 1 +- proto: ExtinguisherCabinetFilledOpen + entities: + - uid: 1473 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 1472 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 1 +- proto: filingCabinetDrawer + entities: + - uid: 603 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 +- proto: filingCabinetDrawerRandom + entities: + - uid: 331 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1 +- proto: FleshBlocker + entities: + - uid: 1564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoamedAluminiumMetal + entities: + - uid: 1476 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 1353 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 1 +- proto: GasFilterFlipped + entities: + - uid: 488 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 1 +- proto: GasMixerFlipped + entities: + - uid: 442 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-23.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-23.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1 + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-23.5 + parent: 1 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 1 + - uid: 501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 1 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-19.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-18.5 + parent: 1 + - uid: 556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-18.5 + parent: 1 + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 1 + - uid: 573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 80 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 1 + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 1 + - uid: 514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-19.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 1 + - uid: 575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 1 +- proto: GasPipeBroken + entities: + - uid: 460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 1 +- proto: GasPipeFourway + entities: + - uid: 495 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 +- proto: GasPipeHalf + entities: + - uid: 464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 1 +- proto: GasPipeStraight + entities: + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 1 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 1 + - uid: 481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-21.5 + parent: 1 + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 1 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 1 + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-20.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 1 + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-19.5 + parent: 1 + - uid: 504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 1 + - uid: 505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 1 + - uid: 507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 1 + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 1 + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-19.5 + parent: 1 + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-18.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-18.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-19.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 1 + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-18.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-19.5 + parent: 1 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 1 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 1 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 1 + - uid: 536 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 1 + - uid: 540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-22.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-22.5 + parent: 1 +- proto: GasPipeTJunction + entities: + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-23.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 1 + - uid: 503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 1 + - uid: 531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 1 +- proto: GasPort + entities: + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-23.5 + parent: 1 + - uid: 445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 1 +- proto: GasRecycler + entities: + - uid: 87 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 +- proto: GasThermoMachineHeater + entities: + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 1 +- proto: Gauze + entities: + - uid: 1347 + components: + - type: Transform + pos: 27.562252,-20.425741 + parent: 1 +- proto: GeneratorRTG + entities: + - uid: 674 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 +- proto: Girder + entities: + - uid: 167 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 1 + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 1 +- proto: GlassBoxBroken + entities: + - uid: 37 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 28.5,0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-35.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-34.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 24.5,0.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 639 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 1 + - uid: 640 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 1 + - uid: 647 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 808 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 1 + - uid: 809 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-0.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-35.5 + parent: 1 + - uid: 256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-35.5 + parent: 1 + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-35.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 1 + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 1 + - uid: 940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,0.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-35.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 1 +- proto: GunSafe + entities: + - uid: 760 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 192 + - 191 + - 182 + - 180 + - 179 + - 193 + - 194 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Hemostat + entities: + - uid: 162 + components: + - type: Transform + pos: 26.711317,-20.421824 + parent: 1 +- proto: HighSecDoor + entities: + - uid: 52 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 636 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 441 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 1 +- proto: KitchenSpike + entities: + - uid: 770 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 1 +- proto: LockableButtonResearch + entities: + - uid: 574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 1 + - type: Lock + locked: False + - type: DeviceLinkSource + linkedPorts: + 92: + - Pressed: Open + 91: + - Pressed: Open + 17: + - Pressed: Close + 62: + - Pressed: Close + - uid: 589 + components: + - type: Transform + pos: 17.575026,-21.158375 + parent: 1 + - type: Lock + locked: False + - type: DeviceLinkSource + linkedPorts: + 62: + - Pressed: Toggle + 17: + - Pressed: Toggle + 92: + - Pressed: Toggle + 91: + - Pressed: Toggle + - uid: 599 + components: + - type: Transform + pos: 17.993328,-21.145681 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 18.446453,-21.130056 + parent: 1 +- proto: LockerFreezerBase + entities: + - uid: 790 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerSyndicate + entities: + - uid: 757 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerSyndicatePersonal + entities: + - uid: 585 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1 + - type: AccessReader + access: + - - Security + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 587 + - 151 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LootSpawnerContrabandHigh + entities: + - uid: 828 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 +- proto: LootSpawnerIndustrial + entities: + - uid: 835 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1 +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 1469 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 1 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 1568 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 +- proto: MachineCentrifuge + entities: + - uid: 305 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 +- proto: MachineElectrolysisUnit + entities: + - uid: 304 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-32.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 303 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 1 +- proto: MagazineMagnumSubMachineGunEmpty + entities: + - uid: 194 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolSubMachineGunEmpty + entities: + - uid: 191 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Mattress + entities: + - uid: 605 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 4 + components: + - type: Transform + pos: 28.39654,-20.5222 + parent: 1 +- proto: MopItem + entities: + - uid: 334 + components: + - type: Transform + pos: 29.272247,-18.226067 + parent: 1 +- proto: Morgue + entities: + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 1 + - type: EntityStorage + open: True + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 1 + - type: EntityStorage + open: True + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 1 + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-14.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 1 + - type: EntityStorage + open: True + - uid: 358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-16.5 + parent: 1 +- proto: NewtonCradle + entities: + - uid: 299 + components: + - type: Transform + pos: 12.497904,-12.477627 + parent: 1 +- proto: NitrogenTank + entities: + - uid: 294 + components: + - type: Transform + pos: 4.6718793,-18.404543 + parent: 1 +- proto: OperatingTable + entities: + - uid: 165 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 1 +- proto: OrganHumanBrain + entities: + - uid: 381 + components: + - type: Transform + parent: 380 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OxygenTankFilled + entities: + - uid: 1367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.6875043,-18.404543 + parent: 1 +- proto: PaperBin + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 1 +- proto: PaperOffice + entities: + - uid: 342 + components: + - type: Transform + pos: 20.496778,-17.40906 + parent: 1 + - type: Paper + content: >+ + [color=#154d75]░░░░░░[/color][color=#247d96]░░░░██░░[/color] + + [color=#154d75]░░░░██[/color][color=#247d96]░░████░░[/color][head=3]Бланк документа[/head] + + [color=#154d75]░░██░░[/color][color=#247d96]░░██░░░░[/color][head=3]Eternys[/head] + + [color=#154d75]░░██░░[/color][color=#8dcdf7]██[/color][color=#247d96]░░██░░[/color][bold]Протокол: ТИП-КОД + + [color=#154d75]░░░░██[/color][color=#247d96]░░░░██░░[/color][bold]ОТ-КОМУ[/bold] + + [color=#154d75]░░████[/color][color=#247d96]░░██░░░░[/color] + + [color=#154d75]░░██░░[/color][color=#247d96]░░░░░░░░[/color] + + + ============================================= + НАИМЕНОВАНИЕ ДОКУМЕНТА + ============================================= + + Подразделение: + + Составитель документа: + + Должность составителя: + + + Полное содержание документа со всей необходимой информацией и описанием + + ============================================= + [italic]Место для печатей[/italic] + +- proto: PaperScrap + entities: + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.676638,-17.815485 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.457888,-18.346735 + parent: 1 +- proto: PartRodMetal1 + entities: + - uid: 1435 + components: + - type: Transform + pos: 2.4401214,-11.489978 + parent: 1 + - uid: 1440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.7272463,-27.493317 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 2.5807464,-11.646228 + parent: 1 + - uid: 1442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.2838714,-14.724353 + parent: 1 + - uid: 1443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5494964,-14.568103 + parent: 1 + - uid: 1444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.024121,-27.087067 + parent: 1 + - uid: 1445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.362928,-26.598488 + parent: 1 + - uid: 1446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.550428,-26.332863 + parent: 1 + - uid: 1447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.30841,-26.216593 + parent: 1 + - uid: 1448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.30841,-26.247843 + parent: 1 + - uid: 1449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.261536,-26.607218 + parent: 1 + - uid: 1450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.042786,-28.404093 + parent: 1 +- proto: Pen + entities: + - uid: 1493 + components: + - type: Transform + pos: 3.7608757,-30.945808 + parent: 1 +- proto: PlaqueAtmos + entities: + - uid: 427 + components: + - type: MetaData + desc: Описание наспех разодрано, трудно что-то разобрать кроме названия. + name: объект "Проклятая маска" + - type: Transform + pos: 23.5,-23.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 38 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 1 +- proto: PosterBroken + entities: + - uid: 1579 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 +- proto: PosterContrabandMissingGloves + entities: + - uid: 1582 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 1 +- proto: PosterContrabandRedRum + entities: + - uid: 1583 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 1 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 1584 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 1585 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 1 +- proto: PosterLegitPeriodicTable + entities: + - uid: 1581 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 1578 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 752 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 1 +- proto: Protolathe + entities: + - uid: 291 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 +- proto: Rack + entities: + - uid: 759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 1 + - uid: 827 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 1 +- proto: RandomArtifactSpawner20 + entities: + - uid: 837 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 1 +- proto: ReagentSlimeSpawner + entities: + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 7 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 34.5,-26.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-33.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-30.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-30.5 + parent: 1 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-32.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 49 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 811 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 1 +- proto: ResearchDisk5000 + entities: + - uid: 1570 + components: + - type: Transform + pos: 19.541737,-17.439392 + parent: 1 +- proto: SalvageFleshSpawner + entities: + - uid: 131 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 1 + - uid: 832 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1 + - uid: 833 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 1 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 1 + - uid: 374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-14.5 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 1500 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 1 +- proto: SalvageMobSpawner75 + entities: + - uid: 8 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 1 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 1416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-31.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 1365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-3.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 1 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 1597 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 1 +- proto: Scalpel + entities: + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.033615,-17.484268 + parent: 1 +- proto: ScalpelLaser + entities: + - uid: 160 + components: + - type: Transform + pos: 27.932484,-17.930283 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 1409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.1917124,-18.56222 + parent: 1 + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.128892,-18.421595 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 1.466277,-28.588818 + parent: 1 +- proto: ScrapAirlock2 + entities: + - uid: 1428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.800714,-28.609074 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 161 + components: + - type: Transform + pos: 25.572506,-18.0732 + parent: 1 +- proto: ScrapCamera + entities: + - uid: 1433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.199408,-14.682572 + parent: 1 +- proto: ScrapCanister1 + entities: + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.531744,-26.598495 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 1422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.6875021,-19.194933 + parent: 1 +- proto: ScrapCloset + entities: + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.51615,-29.499699 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 15.5050125,-19.500652 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: 1.4665098,-15.482519 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: 18.397388,-28.585344 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: 32.499863,-22.41413 + parent: 1 + - uid: 1491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.497122,-32.658165 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: 2.486378,-28.41912 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 1434 + components: + - type: Transform + pos: 1.5144982,-13.349414 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 1470 + components: + - type: Transform + pos: 21.064129,-19.393074 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: 9.524442,-25.336878 + parent: 1 +- proto: ScrapFirelock1 + entities: + - uid: 199 + components: + - type: Transform + pos: 4.49776,-13.198574 + parent: 1 +- proto: ScrapFirelock2 + entities: + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.586067,-13.808245 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 4.12276,-13.682949 + parent: 1 +- proto: ScrapFirelock3 + entities: + - uid: 1427 + components: + - type: Transform + pos: 3.649386,-13.024067 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 320 + components: + - type: Transform + pos: 9.5146885,-17.630957 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5459385,-19.146582 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 1429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.551838,-32.6247 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 1431 + components: + - type: Transform + pos: 23.549465,-28.484074 + parent: 1 +- proto: ScrapPAI + entities: + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.543966,-16.47763 + parent: 1 +- proto: ScrapTube + entities: + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.446462,-16.165434 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.607279,-13.484983 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 11.654154,-12.531858 + parent: 1 + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.490014,-14.806059 + parent: 1 + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.7349,-30.546574 + parent: 1 +- proto: SeismicCharge + entities: + - uid: 1571 + components: + - type: Transform + pos: 2.4494038,-22.524374 + parent: 1 +- proto: ShardGlass + entities: + - uid: 618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.56653,-30.37349 + parent: 1 + - uid: 619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.332155,-29.764114 + parent: 1 + - uid: 620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.50403,-29.076614 + parent: 1 + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.925905,-28.87349 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 297 + components: + - type: Transform + pos: 12.372904,-13.380381 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 12.701029,-12.802256 + parent: 1 +- proto: SheetPlasteel1 + entities: + - uid: 101 + components: + - type: Transform + pos: 31.417034,-17.458231 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 31.71391,-17.426981 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 33.573284,-22.520731 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 1368 + components: + - type: Transform + pos: 1.5156293,-17.560793 + parent: 1 + - uid: 1369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.2968793,-18.842043 + parent: 1 + - uid: 1370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5781293,-19.435793 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 33.46391,-29.63192 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 33.510784,-29.19442 + parent: 1 +- proto: ShotGunCabinetOpen + entities: + - uid: 588 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 +- proto: ShuttersNormal + entities: + - uid: 591 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 +- proto: ShuttersNormalOpen + entities: + - uid: 594 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 +- proto: SignBio + entities: + - uid: 1589 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 +- proto: SignBiohazardMed + entities: + - uid: 1588 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1 +- proto: SignCorrosives + entities: + - uid: 431 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1 +- proto: SignDanger + entities: + - uid: 189 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1 +- proto: SignEVA + entities: + - uid: 1587 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 1 +- proto: SignMemetic + entities: + - uid: 425 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 1 +- proto: SignMorgue + entities: + - uid: 1586 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 +- proto: SignNosmoking + entities: + - uid: 1592 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 +- proto: SignScience + entities: + - uid: 1567 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1 +- proto: SignSecurearea + entities: + - uid: 1590 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1 +- proto: SignSecureMedRed + entities: + - uid: 1591 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 +- proto: SignSecureSmallRed + entities: + - uid: 1593 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 +- proto: SinkStemlessWater + entities: + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 1 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 1 + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 1 +- proto: SMESBasicEmpty + entities: + - uid: 1345 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 1 +- proto: SpawnMobCarp + entities: + - uid: 1229 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 1 +- proto: SpawnMobShark + entities: + - uid: 834 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 1 +- proto: SpeedLoaderMagnumEmpty + entities: + - uid: 180 + components: + - type: Transform + parent: 760 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SubstationBasicEmpty + entities: + - uid: 688 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 1348 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 1349 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: SuitStorageNTSRA + entities: + - uid: 1350 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 +- proto: SurveillanceWirelessCameraAnchoredConstructed + entities: + - uid: 270 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 1 +- proto: Table + entities: + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-21.5 + parent: 1 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-21.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 1 + - uid: 612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 1 + - uid: 756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-29.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-20.5 + parent: 1 + - uid: 766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 1 + - uid: 767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-19.5 + parent: 1 + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-18.5 + parent: 1 + - uid: 829 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 163 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 184 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-12.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-17.5 + parent: 1 +- proto: TableStone + entities: + - uid: 32 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-20.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-20.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-20.5 + parent: 1 +- proto: ToiletEmpty + entities: + - uid: 198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 1 + - uid: 604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-29.5 + parent: 1 + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 + parent: 1 + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-29.5 + parent: 1 +- proto: TreasureHardDiskDrive + entities: + - uid: 1598 + components: + - type: Transform + pos: 2.5376048,-15.556843 + parent: 1 +- proto: TreasureSampleTube + entities: + - uid: 1595 + components: + - type: Transform + pos: 12.322755,-12.749346 + parent: 1 + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.52588,-17.43133 + parent: 1 + - uid: 1600 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.513609,-31.362492 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 1466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-32.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1352 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 +- proto: WallMeat + entities: + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-10.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 1 + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 + parent: 1 + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 1 + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 1 + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 1 + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 20 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 3 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-19.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-20.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-30.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 1 + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-27.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-28.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-29.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 1 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-10.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 1 + - uid: 183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 1 + - uid: 185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-20.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-21.5 + parent: 1 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-30.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-23.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-29.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-30.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-24.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 31.5,-24.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-20.5 + parent: 1 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-10.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-23.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 1 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-27.5 + parent: 1 + - uid: 390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-27.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-28.5 + parent: 1 + - uid: 394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-30.5 + parent: 1 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-30.5 + parent: 1 + - uid: 396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-27.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-27.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-21.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-27.5 + parent: 1 + - uid: 629 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 1 + - uid: 632 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 1 + - uid: 644 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 1 + - uid: 649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 1 + - uid: 650 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 1 + - uid: 819 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 1 + - uid: 822 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 1 + - uid: 936 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 1 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-28.5 + parent: 1 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-24.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-33.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-33.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-33.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 201 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 1 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-2.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 1 + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-19.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 1 + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-21.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-22.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 1 + - uid: 628 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 1 + - uid: 652 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 657 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 1 + - uid: 758 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 34.5,-29.5 + parent: 1 + - uid: 801 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1 + - uid: 820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-28.5 + parent: 1 + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-28.5 + parent: 1 + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 1 + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 1 + - uid: 841 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 1 + - uid: 898 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 1 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-32.5 + parent: 1 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-1.5 + parent: 1 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-1.5 + parent: 1 + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 1 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-16.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 32.5,-31.5 + parent: 1 +- proto: WallSolid + entities: + - uid: 114 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 1 + - uid: 630 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 1 + - uid: 642 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 1 + - uid: 648 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 1 + - uid: 654 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 1 + - uid: 658 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-16.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-13.5 + parent: 1 +- proto: WallSolidRust + entities: + - uid: 1276 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 1 +- proto: WardrobeWhite + entities: + - uid: 166 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 336 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 1 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: WeaponCapacitorRecharger + entities: + - uid: 602 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 1 +- proto: WeaponTurretHostile + entities: + - uid: 274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-27.5 + parent: 1 +- proto: WindoorAssemblySecure + entities: + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-17.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 1 + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-17.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-17.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-17.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-17.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_rnd_debris.yml b/Resources/Maps/Ruins/corvax_rnd_debris.yml new file mode 100644 index 00000000000..9e20a27172b --- /dev/null +++ b/Resources/Maps/Ruins/corvax_rnd_debris.yml @@ -0,0 +1,4960 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 107: FloorBlueCircuit + 129: FloorChromite + 8: FloorDarkDiagonal + 13: FloorDarkMono + 4: FloorDarkPlastic + 89: FloorEighties + 103: FloorGlass + 101: FloorGold + 106: FloorGreenCircuit + 131: FloorHullReinforced + 73: FloorKitchen + 134: FloorMowedAstroGrass + 68: FloorShowroom + 99: FloorShuttlePurple + 144: FloorSnow + 3: FloorSteel + 2: FloorSteelDirty + 5: FloorSteelHerringbone + 10: FloorSteelPavement + 11: FloorWhiteDiagonal + 6: FloorWoodChessBlack + 12: FloorWoodLargeLight + 153: Lattice + 1: Plating + 7: PlatingBurnt + 9: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -13,-11 + parent: invalid + - type: MapGrid + chunks: + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAABwAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAACQAAAAAABwAAAAAAAQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABwAAAAAABwAAAAAABQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAQAAAAAACgAAAAAACwAAAAAACwAAAAAACwAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAABQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAACAAAAAAACAAAAAAACAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: BAAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAmQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAACgAAAAAADQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACgAAAAAACgAAAAAADQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAmQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAmQAAAAAAAAAAAAAAmQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 437: 12,15 + 438: 10,13 + 439: 13,8 + 443: 20,16 + 444: 20,16 + 445: 20,13 + 446: 14,16 + 448: 8,18 + 491: 23,7 + 492: 23,6 + 496: 12,10 + 497: 12,10 + 500: 6,6 + 501: 17,6 + 502: 13,6 + 503: 12,8 + 504: 12,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 440: 20,11 + 441: 21,11 + 442: 22,11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotRight + decals: + 447: 12,18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Box + decals: + 431: 4,8 + 432: 4,9 + 433: 4,10 + 434: 4,11 + 435: 10,8 + 436: 10,8 + 494: 12,10 + 495: 12,10 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 115: 7,13 + 116: 15,15 + 118: 13,11 + 119: 21,8 + 120: 10,16 + 121: 10,22 + 122: 10,20 + 319: 21,4 + 323: 6,16 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerNe + decals: + 93: 17,8 + 94: 18,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 131: 12,19 + 132: 12,15 + 134: 16,14 + 135: 18,11 + 136: 23,11 + 137: 23,7 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerNw + decals: + 89: 12,8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 127: 8,19 + 128: 14,14 + 129: 20,11 + 130: 20,7 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerSe + decals: + 95: 18,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 143: 11,17 + 144: 12,18 + 145: 23,9 + 146: 23,6 + 147: 22,5 + - node: + color: '#F98AFFFF' + id: BrickTileDarkCornerSw + decals: + 101: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 138: 6,14 + 139: 10,13 + 140: 9,17 + 141: 8,18 + 142: 20,5 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 174: 6,17 + - node: + color: '#F98AFFFF' + id: BrickTileDarkInnerNe + decals: + 103: 17,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 51: 8,10 + 175: 6,16 + 176: 15,14 + 177: 10,15 + 178: 10,19 + 179: 7,15 + 180: 21,7 + 200: 16,13 + 206: 16,11 + 320: 12,13 + 324: 6,15 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 52: 6,10 + 181: 21,7 + 182: 15,14 + 183: 14,11 + 184: 10,15 + 185: 10,19 + 186: 14,13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 53: 8,8 + 187: 16,13 + 188: 21,9 + 189: 10,17 + 190: 7,14 + 198: 21,5 + 199: 16,13 + 202: 11,18 + 211: 15,9 + 321: 22,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerSw + decals: + 54: 6,8 + 191: 14,11 + 192: 7,14 + 193: 10,17 + 194: 14,13 + 195: 21,9 + 196: 21,5 + 197: 21,5 + 201: 9,18 + 203: 10,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 37: 5,9 + 38: 5,10 + 39: 5,8 + 125: 10,21 + 160: 12,14 + 161: 16,12 + 162: 23,10 + 205: 16,12 + - node: + color: '#F98AFFFF' + id: BrickTileDarkLineN + decals: + 90: 13,8 + 91: 16,8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 40: 7,7 + 41: 7,7 + 42: 6,7 + 43: 6,7 + 44: 8,7 + 163: 19,10 + 164: 21,11 + 165: 22,11 + 166: 22,7 + 167: 11,15 + 168: 9,15 + 169: 8,15 + 170: 9,19 + 171: 11,19 + 204: 17,11 + 322: 7,15 + - node: + color: '#F98AFFFF' + id: BrickTileDarkLineS + decals: + 96: 17,6 + 97: 16,6 + 98: 15,6 + 99: 14,6 + 100: 13,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 48: 6,11 + 49: 7,11 + 50: 8,11 + 154: 11,13 + 155: 12,13 + 156: 18,9 + 157: 19,9 + 158: 20,9 + 159: 22,9 + 172: 8,14 + 173: 9,14 + 209: 17,9 + 210: 16,9 + - node: + color: '#F98AFFFF' + id: BrickTileDarkLineW + decals: + 102: 12,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 45: 9,8 + 46: 9,9 + 47: 9,10 + 126: 10,21 + 148: 6,15 + 149: 6,16 + 150: 14,12 + 151: 14,10 + 152: 14,9 + 153: 20,6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 22: 8,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 23: 6,10 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 24: 8,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 25: 6,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 31: 16,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 30: 13,7 + - node: + color: '#724276FF' + id: BrickTileSteelInnerNw + decals: + 82: 5,11 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 29: 8,9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 28: 7,10 + 34: 14,7 + 35: 15,7 + 36: 15,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 27: 7,8 + 32: 15,7 + 33: 14,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 26: 6,9 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerNe + decals: + 60: 10,10 + 61: 9,11 + 62: 8,12 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerNw + decals: + 63: 5,12 + 64: 4,11 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteCornerNw + decals: + 105: 14,18 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteCornerSe + decals: + 107: 17,17 + 108: 16,16 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerSw + decals: + 65: 4,8 + 66: 4,8 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteCornerSw + decals: + 104: 14,16 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteEndE + decals: + 106: 18,18 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerNe + decals: + 84: 8,11 + 85: 9,10 + 86: 7,12 + 208: 15,8 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerNw + decals: + 83: 5,11 + 87: 7,12 + 207: 14,8 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteInnerSe + decals: + 113: 16,17 + 114: 17,18 + 123: 15,16 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerSw + decals: + 81: 5,8 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteInnerSw + decals: + 124: 15,16 + - node: + color: '#724276FF' + id: BrickTileWhiteLineE + decals: + 57: 10,7 + 58: 10,8 + 59: 10,9 + 80: 10,6 + - node: + color: '#724276FF' + id: BrickTileWhiteLineN + decals: + 88: 6,12 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteLineN + decals: + 110: 15,18 + 111: 16,18 + 112: 17,18 + - node: + color: '#724276FF' + id: BrickTileWhiteLineW + decals: + 67: 4,9 + 68: 4,9 + 69: 4,10 + 70: 5,7 + 79: 5,6 + - node: + color: '#BE6BC3FF' + id: BrickTileWhiteLineW + decals: + 109: 14,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 489: 23,11 + 490: 23,9 + 493: 22,5 + 498: 17,8 + 499: 17,8 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 488: 6,14 + - node: + color: '#7242767F' + id: DiagonalCheckerAOverlay + decals: + 0: 6,8 + 1: 7,8 + 2: 8,8 + 3: 8,9 + 4: 7,9 + 5: 6,9 + 6: 6,10 + 7: 7,10 + 8: 8,10 + - node: + color: '#F98AFF28' + id: DiagonalCheckerBOverlay + decals: + 9: 6,8 + 10: 6,9 + 11: 6,10 + 12: 7,10 + 13: 7,9 + 14: 7,8 + 15: 8,8 + 16: 8,9 + 17: 8,10 + - node: + color: '#F98AFF7F' + id: DiagonalCheckerBOverlay + decals: + 18: 13,7 + 19: 14,7 + 20: 15,7 + 21: 16,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 241: 6,10 + 242: 6,9 + 243: 7,9 + 244: 12,10 + 450: 10,8 + 451: 4,8 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 245: 12,10 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 452: 4,10 + 453: 12,18 + 454: 10,13 + 455: 12,15 + 456: 20,13 + 457: 18,14 + 458: 21,14 + 459: 21,14 + 460: 19,15 + 461: 20,15 + 462: 22,13 + 463: 22,14 + 464: 21,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 246: 12,11 + 247: 12,10 + 248: 10,6 + 281: 17,6 + 282: 12,7 + 283: 12,7 + 284: 13,6 + 285: 20,6 + 286: 22,7 + 292: 20,5 + 293: 20,5 + 294: 20,5 + 295: 22,5 + 296: 21,9 + 297: 22,10 + 298: 15,16 + 299: 15,16 + 300: 16,17 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 465: 18,13 + 466: 18,14 + 467: 19,14 + 468: 19,13 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 212: 11,14 + 213: 12,13 + 214: 6,14 + 215: 7,15 + 216: 10,18 + 217: 9,19 + 218: 5,11 + 219: 7,12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 220: 7,6 + 221: 6,7 + 222: 7,7 + 233: 7,3 + 234: 7,11 + 235: 6,12 + 236: 5,9 + 237: 11,13 + 238: 10,17 + 239: 10,21 + 240: 11,18 + 263: 16,13 + 264: 16,12 + 265: 15,12 + 266: 15,11 + 267: 14,10 + 268: 16,9 + 269: 14,12 + 270: 18,9 + 271: 17,9 + 272: 18,10 + 273: 17,7 + 274: 16,7 + 275: 15,7 + 276: 15,8 + 277: 14,6 + 278: 14,6 + 279: 18,6 + 280: 18,6 + 314: 16,16 + 315: 14,17 + 316: 16,18 + 317: 15,18 + 318: 16,16 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 249: 10,7 + 250: 10,7 + 287: 21,6 + 288: 22,6 + 289: 21,5 + 301: 15,17 + 302: 15,17 + 303: 14,17 + 304: 15,18 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 469: 18,14 + 470: 19,15 + 471: 19,15 + 472: 19,13 + 479: 20,14 + 480: 18,13 + 481: 19,13 + 482: 19,16 + 483: 19,16 + 484: 20,14 + 485: 19,14 + 486: 18,15 + 487: 19,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 223: 9,7 + 224: 9,7 + 225: 9,8 + 226: 8,11 + 227: 5,9 + 228: 5,7 + 229: 5,7 + 230: 5,4 + 231: 5,4 + 232: 7,3 + 251: 10,7 + 252: 9,9 + 253: 10,10 + 254: 10,8 + 255: 14,8 + 256: 17,8 + 257: 17,8 + 258: 16,10 + 259: 14,11 + 260: 15,12 + 261: 16,13 + 262: 16,12 + 290: 22,6 + 291: 21,6 + 305: 14,18 + 306: 14,18 + 307: 14,16 + 308: 16,18 + 309: 17,18 + 310: 17,17 + 311: 17,17 + 312: 18,18 + 313: 16,17 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 473: 19,15 + 474: 20,16 + 475: 22,13 + 476: 22,14 + 477: 21,13 + 478: 21,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: StandClear + decals: + 449: 10,19 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 77: 7,6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 71: 6,6 + 72: 5,6 + 74: 10,6 + - node: + cleanable: True + angle: 1.0471975511965976 rad + color: '#85000068' + id: dot + decals: + 405: 15.649952,15.736097 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#85000068' + id: dot + decals: + 350: 16.304184,7.5743065 + 351: 16.793768,6.8034725 + 352: 15.731268,6.9388895 + - node: + cleanable: True + angle: 4.1887902047863905 rad + color: '#85000068' + id: dot + decals: + 406: 16.368702,16.340263 + 407: 16.129118,15.861097 + 408: 14.597868,18.017347 + 409: 14.170785,17.361097 + 410: 14.597868,17.340263 + 411: 14.858285,16.881931 + 412: 15.306202,17.267347 + 413: 15.295785,16.82162 + 414: 15.087452,7.342142 + 415: 14.431201,6.935892 + 416: 13.629118,7.144225 + 417: 13.077035,6.925475 + 418: 13.535368,6.8838086 + 419: 12.879118,7.2275586 + 420: 12.670785,6.925475 + 421: 16.292952,7.540058 + 422: 16.292952,7.540058 + 423: 16.292952,6.706725 + 424: 15.865868,6.925475 + 425: 9.490351,5.06284 + 426: 20.674084,14.11699 + 427: 20.40325,13.71074 + 428: 21.27825,13.939907 + 429: 21.27825,13.939907 + 430: 20.52825,14.05449 + - node: + cleanable: True + angle: 6.213372137099813 rad + color: '#85000068' + id: dot + decals: + 362: 8.231638,4.6762795 + 363: 8.325388,5.0512795 + 364: 8.627471,4.561696 + 365: 9.554554,4.978363 + 366: 9.637888,4.592946 + 367: 20.46157,13.878058 + 368: 20.30532,14.148891 + 369: 20.763655,14.305141 + 370: 20.482405,13.659308 + 371: 20.576155,14.128058 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#AE000069' + id: dot + decals: + 347: 15.835434,6.699306 + 348: 15.5021,7.5847225 + 349: 16.960434,7.2722225 + - node: + cleanable: True + angle: 0.8726646259971648 rad + color: '#85000068' + id: line + decals: + 387: 15.462757,17.02169 + 388: 15.264841,16.907108 + 389: 15.046091,16.948774 + - node: + cleanable: True + angle: 1.0471975511965976 rad + color: '#85000068' + id: line + decals: + 390: 14.691924,17.636274 + 391: 14.556507,17.448774 + 392: 14.764841,17.532108 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#AE000069' + id: line + decals: + 335: 14.0883665,7.1316676 + 336: 13.4946165,6.8504176 + 337: 13.07795,7.110834 + 338: 14.0154505,6.9129176 + 339: 12.51545,7.0691676 + 340: 12.8592,7.121251 + 341: 13.0987835,6.829584 + - node: + cleanable: True + angle: 1.7453292519943295 rad + color: '#AE000069' + id: line + decals: + 330: 15.4633665,7.3191676 + 331: 15.4112835,7.090001 + 332: 15.4008665,6.8816676 + 333: 14.95295,6.923334 + 334: 14.5571165,7.142084 + - node: + cleanable: True + angle: 1.0471975511965976 rad + color: '#85000068' + id: splatter + decals: + 393: 13.910674,18.042524 + 394: 14.119008,18.17794 + 395: 13.962757,17.83419 + 396: 13.639841,17.917524 + 397: 13.806507,18.17794 + 398: 14.025258,17.980024 + 399: 14.035674,17.625858 + 400: 14.316924,18.063358 + 401: 13.879424,17.948774 + 402: 20.631197,14.138803 + 403: 20.943697,14.2117195 + 404: 21.15203,13.753386 + - node: + cleanable: True + angle: 3.07177948351002 rad + color: '#85000068' + id: splatter + decals: + 353: 16.231268,7.136806 + 354: 12.179184,6.9701395 + 355: 11.825017,6.7826395 + 356: 9.252471,4.874196 + 357: 8.950388,5.0512795 + 358: 8.627471,4.7075295 + 359: 8.919138,5.165863 + - node: + cleanable: True + angle: 6.213372137099813 rad + color: '#85000068' + id: splatter + decals: + 360: 9.200388,4.6137795 + 361: 8.710804,5.009613 + 372: 20.99282,14.055141 + 373: 21.409489,13.690558 + 374: 21.128239,13.555141 + 375: 20.763655,13.930141 + 376: 20.721989,13.971808 + 377: 21.263655,13.919725 + 378: 20.701155,13.617641 + 379: 21.096989,13.878058 + 380: 16.014841,16.375858 + 381: 16.202341,16.198774 + 382: 16.087757,16.14669 + 383: 15.796091,16.073774 + 384: 15.660675,16.39669 + 385: 15.973175,16.605024 + 386: 15.546091,16.230024 + - node: + cleanable: True + color: '#AE000069' + id: splatter + decals: + 325: 16.119617,7.329584 + 326: 16.536283,7.110834 + 327: 16.536283,6.8504176 + 328: 16.057117,6.933751 + 329: 16.317533,7.2879176 + - node: + cleanable: True + angle: 1.5009831567151235 rad + color: '#AE000069' + id: splatter + decals: + 342: 12.420798,7.090001 + 343: 11.920798,6.746251 + 344: 11.629131,7.204584 + 345: 12.170798,6.829584 + 346: 11.785381,6.746251 + - type: OccluderTree + - type: Shuttle + - type: GridPathfinding + - type: SpreaderGrid + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: RadiationGridResistance +- proto: Airlock + entities: + - uid: 602 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 +- proto: AirlockEngineering + entities: + - uid: 138 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 +- proto: AirlockExternalLocked + entities: + - uid: 184 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 1 +- proto: AirlockScienceGlassLocked + entities: + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,15.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 +- proto: AirlockScienceLocked + entities: + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 +- proto: AntiPoisonMedipen + entities: + - uid: 501 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 502 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 503 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 504 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: APCBasic + entities: + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,8.5 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 132 + components: + - type: Transform + pos: 21.5,13.5 + parent: 1 +- proto: AsteroidRockMining + entities: + - uid: 391 + components: + - type: Transform + pos: 18.5,15.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 21.5,15.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 23.5,16.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: 22.5,14.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 16.5,14.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 20.5,15.5 + parent: 1 +- proto: AsteroidRockQuartzCrab + entities: + - uid: 412 + components: + - type: Transform + pos: 17.5,9.5 + parent: 1 +- proto: AsteroidRockSilver + entities: + - uid: 13 + components: + - type: Transform + pos: 22.5,15.5 + parent: 1 +- proto: AsteroidRockSilverCrab + entities: + - uid: 396 + components: + - type: Transform + pos: 17.5,17.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 23.5,19.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 +- proto: AsteroidRockTin + entities: + - uid: 386 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 14.5,14.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 401 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 +- proto: AsteroidRockUraniumCrab + entities: + - uid: 389 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 22.5,13.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 16.5,12.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 324 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 +- proto: Beaker + entities: + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.092518,10.510992 + parent: 1 +- proto: BlastDoorFrame + entities: + - uid: 477 + components: + - type: Transform + anchored: True + pos: 9.5,3.5 + parent: 1 +- proto: BorgModuleClowning + entities: + - uid: 518 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: BorgModuleMining + entities: + - uid: 517 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: BoxSyringe + entities: + - uid: 483 + components: + - type: Transform + pos: 18.499014,18.486639 + parent: 1 +- proto: BoxVial + entities: + - uid: 484 + components: + - type: Transform + pos: 18.358389,18.846014 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 214 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 20.5,14.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: 19.5,10.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 21.5,9.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 21.5,7.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 21.5,8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 15.5,9.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 15.5,8.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 21.5,6.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.6534443,7.570488 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 6.5909443,11.664238 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 8.872194,10.132988 + parent: 1 +- proto: CableHV + entities: + - uid: 161 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 +- proto: CableMV + entities: + - uid: 164 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 13.5,11.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 14.5,11.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 15.5,10.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 15.5,11.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 15.5,13.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 14.5,13.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 12.5,13.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 13.5,13.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 11.5,14.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 10.5,16.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: 7.5,13.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 7.5,12.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 16.5,16.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 16.5,13.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: 17.5,13.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 19.5,13.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: 19.5,16.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 19.5,14.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 18.5,10.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 17.5,10.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: 18.5,9.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.60637,7.1723337 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.60637,7.1723337 + parent: 1 +- proto: CircuitImprinter + entities: + - uid: 370 + components: + - type: Transform + pos: 17.5,6.5 + parent: 1 +- proto: ClosetBombFilled + entities: + - uid: 361 + components: + - type: Transform + pos: 8.5,12.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 468 + components: + - type: Transform + pos: 23.5,7.5 + parent: 1 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 471 + components: + - type: Transform + pos: 23.5,6.5 + parent: 1 +- proto: ClosetL3ScienceFilled + entities: + - uid: 360 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 359 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 645 + components: + - type: Transform + pos: 9.738622,5.6807284 + parent: 1 +- proto: ClothingMaskBreath + entities: + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.275793,17.61323 + parent: 1 +- proto: Cobweb1 + entities: + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 1 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,18.5 + parent: 1 + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 487 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,17.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 1 + - uid: 489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,18.5 + parent: 1 + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 +- proto: ComputerAnalysisConsole + entities: + - uid: 275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 1 +- proto: ComputerTelevisionCircuitboard + entities: + - uid: 516 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: CondenserMachineCircuitBoard + entities: + - uid: 515 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: CrateArtifactContainer + entities: + - uid: 550 + components: + - type: Transform + pos: 12.5,15.5 + parent: 1 +- proto: CrateScienceSecure + entities: + - uid: 551 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 552 + - 553 + - 554 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CyborgEndoskeleton + entities: + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.516638,7.4295206 + parent: 1 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 513 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: DisposalBend + entities: + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: 21.5,10.5 + parent: 1 +- proto: DisposalPipe + entities: + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1 + - uid: 378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,10.5 + parent: 1 + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,8.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,5.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 1 +- proto: DisposalPipeBroken + entities: + - uid: 385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,3.5 + parent: 1 +- proto: DisposalTrunk + entities: + - uid: 374 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 373 + components: + - type: Transform + pos: 18.5,11.5 + parent: 1 +- proto: DoubleEmergencyOxygenTank + entities: + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.682043,17.311146 + parent: 1 +- proto: EggSpider + entities: + - uid: 433 + components: + - type: Transform + pos: 14.913317,18.668617 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.577582,18.276766 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 14.507067,18.637367 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: 14.218207,18.620516 + parent: 1 +- proto: ExosuitFabricator + entities: + - uid: 323 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 +- proto: ExplosivesSignMed + entities: + - uid: 555 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 588 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 351 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 +- proto: filingCabinetRandom + entities: + - uid: 362 + components: + - type: Transform + pos: 9.797508,11.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: 9.250633,11.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 420 + components: + - type: Transform + pos: 17.5,18.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 422 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FolderSpawner + entities: + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.364991,10.25001 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.836592,18.31863 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 300 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 +- proto: GasPipeBroken + entities: + - uid: 282 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 +- proto: GasPort + entities: + - uid: 279 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,6.5 + parent: 1 +- proto: Gauze + entities: + - uid: 505 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: Gauze1 + entities: + - uid: 506 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 507 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: GeneratorBasic15kW + entities: + - uid: 160 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 +- proto: Girder + entities: + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,4.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 1 +- proto: Grille + entities: + - uid: 2 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,19.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,19.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,5.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 605 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 3.5,21.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 13.5,2.5 + parent: 1 + - uid: 614 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 13.5,22.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 14.5,22.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 15.5,22.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 18.5,22.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 25.5,17.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 26.5,7.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1 + - uid: 626 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 627 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 1 + - uid: 631 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,22.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 1 + - uid: 634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,11.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 26.5,11.5 + parent: 1 + - uid: 638 + components: + - type: Transform + pos: 26.5,8.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,6.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,2.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1 +- proto: HarmonicaInstrument + entities: + - uid: 472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.408401,5.378008 + parent: 1 +- proto: Lamp + entities: + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.764639,10.907485 + parent: 1 +- proto: LightBulbBroken + entities: + - uid: 580 + components: + - type: Transform + parent: 579 + - type: Physics + canCollide: False +- proto: LightHeadBorg + entities: + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.829138,6.7107706 + parent: 1 +- proto: LightTubeBroken + entities: + - uid: 523 + components: + - type: Transform + parent: 522 + - type: Physics + canCollide: False + - uid: 525 + components: + - type: Transform + parent: 524 + - type: Physics + canCollide: False + - uid: 530 + components: + - type: Transform + parent: 529 + - type: Physics + canCollide: False + - uid: 532 + components: + - type: Transform + parent: 531 + - type: Physics + canCollide: False + - uid: 534 + components: + - type: Transform + parent: 533 + - type: Physics + canCollide: False + - uid: 536 + components: + - type: Transform + parent: 535 + - type: Physics + canCollide: False + - uid: 538 + components: + - type: Transform + parent: 537 + - type: Physics + canCollide: False + - uid: 541 + components: + - type: Transform + parent: 540 + - type: Physics + canCollide: False +- proto: LockerScienceFilled + entities: + - uid: 293 + components: + - type: Transform + pos: 22.5,11.5 + parent: 1 +- proto: LockerScientist + entities: + - uid: 294 + components: + - type: Transform + pos: 21.5,11.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: 20.5,11.5 + parent: 1 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 348 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 +- proto: MachineAPE + entities: + - uid: 387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 1 +- proto: MachineArtifactAnalyzer + entities: + - uid: 22 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 23 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 +- proto: MedkitRadiationFilled + entities: + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.780264,10.04811 + parent: 1 +- proto: MedkitToxinFilled + entities: + - uid: 486 + components: + - type: Transform + pos: 18.760668,18.819565 + parent: 1 +- proto: PlasmaCanister + entities: + - uid: 301 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 1 +- proto: PlasmaWindoorSecureScienceLocked + entities: + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 1 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 595 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 594 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 590 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 593 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 +- proto: PottedPlant10 + entities: + - uid: 480 + components: + - type: Transform + pos: 16.5,8.5 + parent: 1 +- proto: PottedPlant18 + entities: + - uid: 481 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 526 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,10.5 + parent: 1 + - uid: 528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,12.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 1 +- proto: PoweredlightEmpty + entities: + - uid: 522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 523 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 525 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 530 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 531 + components: + - type: Transform + pos: 20.5,7.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 532 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 533 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 534 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 535 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 536 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 538 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 541 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: PoweredSmallLight + entities: + - uid: 576 + components: + - type: Transform + pos: 12.5,11.5 + parent: 1 + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 1 +- proto: PoweredSmallLightEmpty + entities: + - uid: 579 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 580 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: Rack + entities: + - uid: 305 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 +- proto: Railing + entities: + - uid: 334 + components: + - type: Transform + pos: 19.5,9.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,9.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,10.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,11.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 20.5,10.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,11.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,9.5 + parent: 1 +- proto: RandomArtifactSpawner + entities: + - uid: 152 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 591 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 +- proto: RandomRockAnomalySpawner + entities: + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 1 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 299 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 641 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 566 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: 7.5,14.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 20.5,5.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 22.5,9.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 556 + components: + - type: Transform + pos: 22.5,6.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: 14.5,8.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 16.5,10.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 15.5,12.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 19.5,15.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 545 + components: + - type: Transform + pos: 22.5,5.5 + parent: 1 +- proto: ReinforcedWindow + entities: + - uid: 124 + components: + - type: Transform + pos: 13.5,5.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 14.5,5.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 15.5,5.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 16.5,5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 23.5,13.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 21.5,16.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 17.5,19.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 15.5,19.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 16.5,19.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,16.5 + parent: 1 +- proto: ResearchAndDevelopmentServerMachineCircuitboard + entities: + - uid: 371 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: 15.876836,6.504627 + parent: 1 +- proto: ResearchDisk + entities: + - uid: 552 + components: + - type: Transform + parent: 551 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ResearchDisk10000 + entities: + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.2228565,7.721758 + parent: 1 +- proto: RipleyLLeg + entities: + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.407263,6.6326456 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 326 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 20.5,16.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 20.5,13.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.607693,4.2066927 + parent: 1 + - uid: 354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.467068,4.8941927 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.553878,4.9566927 + parent: 1 +- proto: ScrapCamera + entities: + - uid: 583 + components: + - type: Transform + pos: 14.497822,18.754791 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.721625,7.8083715 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.220586,6.410877 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.488289,9.34615 + parent: 1 +- proto: ScrapFirelock1 + entities: + - uid: 304 + components: + - type: Transform + pos: 8.466178,14.964212 + parent: 1 +- proto: ScrapFirelock2 + entities: + - uid: 646 + components: + - type: Transform + pos: 9.00524,14.378275 + parent: 1 +- proto: ScrapFirelock3 + entities: + - uid: 647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.9271154,14.23765 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.760549,4.5649004 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 358 + components: + - type: Transform + pos: 10.395343,9.950087 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.2065487,3.3316927 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 10.483988,4.189798 + parent: 1 + - uid: 587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.702738,2.9241734 + parent: 1 +- proto: ScrapTube + entities: + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.529072,18.694164 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 17.872822,18.42854 + parent: 1 +- proto: ShadowTree03 + entities: + - uid: 549 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 +- proto: ShardGlassPlasma + entities: + - uid: 423 + components: + - type: Transform + pos: 9.337163,5.841423 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.227788,6.388298 + parent: 1 + - uid: 425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.571538,7.716423 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.477788,5.278923 + parent: 1 + - uid: 427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.524663,3.075798 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.493413,9.465229 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.352788,11.121479 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: 6.415288,8.590229 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: 8.259038,10.090229 + parent: 1 +- proto: SheetGlass10 + entities: + - uid: 547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5491,6.6603527 + parent: 1 +- proto: SheetPlastic10 + entities: + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.791821,6.749605 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.318027,6.4801674 + parent: 1 +- proto: ShelfRMetal + entities: + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,17.5 + parent: 1 + - type: Storage + storedItems: + 501: + position: 0,0 + _rotation: South + 502: + position: 1,3 + _rotation: South + 503: + position: 0,4 + _rotation: South + 504: + position: 3,4 + _rotation: South + 505: + position: 2,1 + _rotation: East + 506: + position: 0,1 + _rotation: West + 507: + position: 2,3 + _rotation: North + 508: + position: 1,4 + _rotation: North + 509: + position: 2,0 + _rotation: South + 510: + position: 3,3 + _rotation: South + 511: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 501 + - 502 + - 503 + - 504 + - 505 + - 506 + - 507 + - 508 + - 509 + - 510 + - 511 + - uid: 512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,5.5 + parent: 1 + - type: Storage + storedItems: + 513: + position: 0,1 + _rotation: West + 514: + position: 1,0 + _rotation: West + 515: + position: 2,1 + _rotation: East + 516: + position: 3,3 + _rotation: South + 517: + position: 1,4 + _rotation: West + 518: + position: 1,3 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 513 + - 515 + - 514 + - 517 + - 516 + - 518 +- proto: ShuttersFrame + entities: + - uid: 478 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 +- proto: SignAnomaly + entities: + - uid: 310 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 +- proto: SignAnomaly2 + entities: + - uid: 316 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 +- proto: SignDangerMed + entities: + - uid: 311 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 +- proto: SignElectricalMed + entities: + - uid: 309 + components: + - type: Transform + pos: 13.5,10.5 + parent: 1 +- proto: SignRestroom + entities: + - uid: 601 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 +- proto: SignRobo + entities: + - uid: 313 + components: + - type: Transform + pos: 13.5,9.5 + parent: 1 +- proto: SignScience + entities: + - uid: 314 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 +- proto: SignSmoking + entities: + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 1 +- proto: SignXenobio + entities: + - uid: 315 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 +- proto: SinkEmpty + entities: + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,16.5 + parent: 1 +- proto: SpawnMobOreCrab + entities: + - uid: 410 + components: + - type: Transform + pos: 21.5,14.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 18.5,13.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 22.5,10.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 23.5,17.5 + parent: 1 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 328 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 15.5,7.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 +- proto: SpiderWeb + entities: + - uid: 432 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 14.5,18.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 16.5,18.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: 15.5,18.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: 16.5,17.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: 15.5,16.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 14.5,16.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 15.5,15.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: 15.5,14.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: 10.5,17.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: 9.5,15.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: 10.5,13.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 10.5,14.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 11.5,13.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 12.5,7.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 13.5,6.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: 13.5,7.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: 14.5,7.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 1 +- proto: StairWhite + entities: + - uid: 332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 1 +- proto: StationMapBroken + entities: + - uid: 479 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 302 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 +- proto: StrangePill + entities: + - uid: 508 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 509 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 510 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False + - uid: 511 + components: + - type: Transform + parent: 500 + - type: Physics + canCollide: False +- proto: SubstationWallBasic + entities: + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 +- proto: SuitStorageEVA + entities: + - uid: 307 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1 +- proto: Syringe + entities: + - uid: 364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.655018,10.604742 + parent: 1 +- proto: Table + entities: + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,10.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 14.5,6.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 15.5,6.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: 16.5,6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 288 + components: + - type: Transform + pos: 19.5,7.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 19.5,6.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 +- proto: TechDiskComputerCircuitboard + entities: + - uid: 514 + components: + - type: Transform + parent: 512 + - type: Physics + canCollide: False +- proto: TechnologyDisk + entities: + - uid: 554 + components: + - type: Transform + parent: 551 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TechnologyDiskRare + entities: + - uid: 553 + components: + - type: Transform + parent: 551 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ToiletDirtyWater + entities: + - uid: 548 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 +- proto: TorsoBorgMining + entities: + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.391638,6.3357706 + parent: 1 +- proto: ToyFigurineScientist + entities: + - uid: 298 + components: + - type: Transform + pos: 18.653246,7.2973337 + parent: 1 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 14.5,17.5 + parent: 1 +- proto: VariantCubeBox + entities: + - uid: 560 + components: + - type: Transform + pos: 10.395698,10.778908 + parent: 1 +- proto: VendingMachineRoboDrobe + entities: + - uid: 459 + components: + - type: Transform + pos: 23.5,9.5 + parent: 1 +- proto: VendingMachineSciDrobe + entities: + - uid: 292 + components: + - type: Transform + pos: 23.5,11.5 + parent: 1 +- proto: VendingMachineSnackBlue + entities: + - uid: 644 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 308 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 +- proto: VendingMachineVendomat + entities: + - uid: 470 + components: + - type: Transform + pos: 17.5,8.5 + parent: 1 +- proto: WallReinforced + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 17.5,16.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 17.5,15.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 17.5,14.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 + - uid: 31 + components: + - type: Transform + pos: 19.5,17.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 18.5,16.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 20.5,17.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: 16.5,15.5 + parent: 1 + - uid: 37 + components: + - type: Transform + pos: 17.5,12.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: 19.5,12.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 21.5,12.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 18.5,12.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 24.5,12.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 23.5,12.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 24.5,11.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 24.5,10.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 24.5,9.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 24.5,8.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 24.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 24.5,6.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 24.5,5.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 23.5,5.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 23.5,4.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 20.5,4.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 19.5,4.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 19.5,5.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 18.5,5.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 17.5,5.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 18.5,8.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 20.5,8.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 19.5,8.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 22.5,8.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: 23.5,8.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 13.5,12.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 12.5,12.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 11.5,12.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 10.5,12.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: 9.5,12.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: 9.5,13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 5.5,17.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 6.5,18.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 5.5,18.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 7.5,17.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,16.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 9.5,16.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 13.5,19.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 13.5,17.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 13.5,18.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 12.5,17.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 11.5,16.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 13.5,16.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 13.5,15.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 13.5,14.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 14.5,15.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 14.5,19.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,9.5 + parent: 1 + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,10.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 19.5,11.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 +- proto: WallReinforcedDiagonal + entities: + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,17.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 7.5,20.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 1 +- proto: WaterCooler + entities: + - uid: 372 + components: + - type: Transform + pos: 17.5,11.5 + parent: 1 +- proto: WaterVaporCanister + entities: + - uid: 303 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 +- proto: Windoor + entities: + - uid: 519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 +- proto: WindoorAssemblySecurePlasma + entities: + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 +- proto: WindoorAssemblySecureUranium + entities: + - uid: 418 + components: + - type: Transform + pos: 15.5,17.5 + parent: 1 +- proto: WindoorSecureScienceLocked + entities: + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,7.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,6.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_sanctus.yml b/Resources/Maps/Ruins/corvax_sanctus.yml new file mode 100644 index 00000000000..c41f87c0608 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_sanctus.yml @@ -0,0 +1,1739 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 12: FloorAstroGrass + 3: FloorBrassFilled + 1: FloorCave + 2: FloorElevatorShaft + 4: FloorHullReinforced + 136: FloorWoodLargeLight + 138: FloorWoodLight + 139: FloorWoodParquet + 146: Lattice + 147: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: "" + - type: Transform + pos: 0.390625,-0.390625 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAkwAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAkwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAgAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 54: -14,-2 + 103: -7,-13 + - node: + color: '#FFFFFFFF' + id: Basalt2 + decals: + 56: -12,3 + 105: -11,-10 + - node: + color: '#FFFFFFFF' + id: Basalt3 + decals: + 63: 1,-1 + 107: -13,-4 + - node: + color: '#FFFFFFFF' + id: Basalt5 + decals: + 57: -4,5 + 58: 6,-8 + 59: 1,-13 + 60: -9,-6 + - node: + color: '#FFFFFFFF' + id: Basalt7 + decals: + 53: -15,-6 + 61: -10,-5 + 64: 2,-3 + 106: -15,-9 + - node: + color: '#FFFFFFFF' + id: Basalt8 + decals: + 55: -8,5 + 62: -2,-8 + - node: + color: '#FFFFFFFF' + id: Basalt9 + decals: + 104: -1,-14 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 65: -8,-6 + 66: -8,-5 + 67: -10,-4 + 68: -9,-4 + 69: -8,-3 + 71: -3,-10 + 72: -2,-10 + 73: 1,-6 + 74: 1,-5 + 75: 2,-2 + 76: 3,-3 + 77: 3,-4 + 78: -2,1 + 79: -4,1 + 80: -5,1 + 81: -3,-1 + 82: -4,0 + 83: -4,-2 + 84: -6,-4 + 85: -10,-2 + 86: -5,2 + 87: -1,2 + 88: -8,-1 + 89: -7,-3 + 90: -5,-11 + 93: 1,-8 + 94: 2,-7 + 95: 2,-6 + 96: 3,-7 + 97: 3,-6 + 98: 0,-4 + 99: 0,-3 + 100: -3,-8 + 102: -7,-10 + 124: -4,-12 + 125: -4,-11 + 126: -4,-8 + 127: -4,-9 + 128: -2,-11 + - node: + color: '#9C2020FF' + id: body + decals: + 46: -2,-7 + - node: + color: '#1D1D21FF' + id: splatter + decals: + 50: -6,-3 + 51: -2,-2 + 52: -5,-2 + - node: + color: '#571212FF' + id: splatter + decals: + 47: -5,-7 + 48: -6,-6 + 49: -1,-6 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AltarFangs + entities: + - uid: 51 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 +- proto: AltarHeaven + entities: + - uid: 60 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 +- proto: ArmBlade + entities: + - uid: 75 + components: + - type: Transform + pos: -9.542018,-1.4161515 + parent: 2 +- proto: BibleNecronomicon + entities: + - uid: 153 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 +- proto: Bloodpack + entities: + - uid: 111 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 +- proto: BookNarsieLegend + entities: + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 +- proto: ButchCleaver + entities: + - uid: 11 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 +- proto: CandleInfinite + entities: + - uid: 42 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 224 + components: + - type: Transform + pos: -1.5,1.5 + parent: 2 +- proto: CandleRedSmallInfinite + entities: + - uid: 41 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: -0.5914495,0.29293394 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -0.1695745,-4.863316 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: -5.8258247,-7.6133156 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: -7.3570747,-2.191441 + parent: 2 + - uid: 222 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 +- proto: CandleSmall + entities: + - uid: 228 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 +- proto: ChairBrass + entities: + - uid: 199 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -6.5,1.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 +- proto: ChairRitual + entities: + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 2 + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-9.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 2 +- proto: ClockworkGirder + entities: + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 +- proto: ClockworkShield + entities: + - uid: 45 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 +- proto: ClockworkWindow + entities: + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 2 + - uid: 167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + - uid: 236 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 254 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 +- proto: ClothingHeadHatRedwizard + entities: + - uid: 5 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 +- proto: ClothingHeadHelmetCult + entities: + - uid: 255 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 2 +- proto: ClothingOuterRobesCult + entities: + - uid: 3 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 +- proto: ClothingOuterWizardRed + entities: + - uid: 1 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 +- proto: ClothingShoesCult + entities: + - uid: 256 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 +- proto: ComplexXenoArtifact + entities: + - uid: 244 + components: + - type: Transform + pos: -2.955439,-3.9142942 + parent: 2 +- proto: CrystalGrey + entities: + - uid: 137 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 +- proto: CrystalOrange + entities: + - uid: 38 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -6.5,4.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 +- proto: DrinkBloodGlass + entities: + - uid: 233 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 +- proto: FloorTileItemBrassFilled + entities: + - uid: 46 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 +- proto: FloorTileItemElevatorShaft + entities: + - uid: 26 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 71 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 273 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 +- proto: FloraRockSolid01 + entities: + - uid: 110 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 149 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 +- proto: FloraRockSolid02 + entities: + - uid: 112 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 +- proto: FloraRockSolid03 + entities: + - uid: 114 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 +- proto: HamtrHarness + entities: + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 +- proto: HamtrLArm + entities: + - uid: 144 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 +- proto: HonkerHarness + entities: + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 247 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 + - uid: 261 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: LeftArmArachnid + entities: + - uid: 152 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: MaterialWoodPlank1 + entities: + - uid: 8 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 +- proto: PinionAirlock + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 +- proto: PinionAirlockAssembly + entities: + - uid: 48 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 +- proto: PlushieNar + entities: + - uid: 259 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 +- proto: PlushieRatvar + entities: + - uid: 246 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 +- proto: RandomGreyStalagmite + entities: + - uid: 217 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 220 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 +- proto: RightArmVox + entities: + - uid: 146 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 2 +- proto: RipleyHarness + entities: + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 +- proto: RitualDagger + entities: + - uid: 245 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 +- proto: ShadowBasaltFour + entities: + - uid: 175 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 +- proto: ShadowBasaltOne + entities: + - uid: 195 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 +- proto: ShadowBasaltRandom + entities: + - uid: 174 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 2 +- proto: ShadowBasaltTwo + entities: + - uid: 7 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 + - uid: 176 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 +- proto: ShardGlassClockwork + entities: + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 +- proto: SheetBrass1 + entities: + - uid: 170 + components: + - type: Transform + pos: -5.5,1.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 +- proto: SheetBrass10 + entities: + - uid: 207 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 +- proto: SheetClockworkGlass1 + entities: + - uid: 232 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 +- proto: SpaceTickSpawner + entities: + - uid: 40 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 +- proto: SpawnMobCarpHolo + entities: + - uid: 147 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 +- proto: SpawnMobCarpMagic + entities: + - uid: 216 + components: + - type: Transform + pos: -9.5,-6.5 + parent: 2 +- proto: SpawnMobHellspawn + entities: + - uid: 43 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 +- proto: TableBrass + entities: + - uid: 169 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 +- proto: VimHarness + entities: + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 +- proto: WallCult + entities: + - uid: 9 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 14 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 2 + - uid: 17 + components: + - type: Transform + pos: -5.5,3.5 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 62 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - uid: 190 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -4.5,4.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -10.5,-6.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -7.5,2.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 250 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 265 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 267 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 271 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 +- proto: WallRock + entities: + - uid: 6 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 28 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 2 + - uid: 36 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 2 + - uid: 54 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 55 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 56 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: -12.5,1.5 + parent: 2 + - uid: 59 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 67 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 77 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 145 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 156 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: -9.5,1.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 181 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -7.5,0.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: -14.5,-10.5 + parent: 2 + - uid: 225 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 226 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 237 + components: + - type: Transform + pos: -12.5,3.5 + parent: 2 + - uid: 239 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: -14.5,0.5 + parent: 2 + - uid: 242 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 269 + components: + - type: Transform + pos: -10.5,1.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 +- proto: WallRockArtifactFragment + entities: + - uid: 86 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 +- proto: WallRockBananium + entities: + - uid: 99 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 +- proto: WallRockGold + entities: + - uid: 24 + components: + - type: Transform + pos: -9.5,2.5 + parent: 2 + - uid: 276 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 +- proto: WallRockUranium + entities: + - uid: 117 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 +- proto: WindowClockworkDirectional + entities: + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_syndi_base.yml b/Resources/Maps/Ruins/corvax_syndi_base.yml new file mode 100644 index 00000000000..004eb9e2496 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_syndi_base.yml @@ -0,0 +1,11099 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorAsteroidSand + 7: FloorAsteroidSandDug + 8: FloorAsteroidSandRed + 9: FloorAsteroidSandUnvariantized + 44: FloorDarkPlastic + 2: FloorMining + 5: FloorMiningDark + 6: FloorMiningLight + 101: FloorShuttleRed + 135: FloorWood + 4: FloorWoodChessBlack + 156: Lattice + 157: Plating + 3: PlatingAsteroid + 160: PlatingBurnt +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -1.203125,0.9375 + parent: 1747 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: nAAAAAAAZQAAAAAAnAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABwAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAACAAAAAAAAQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAnQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAABQAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAnQAAAAAAnQAAAAAAAQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAnAAAAAAAoAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAAAAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnAAAAAAAnAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAACQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnAAAAAAAnAAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAACQAAAAAAAQAAAAAAAQAAAAAAnAAAAAAAnAAAAAAALAAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAACQAAAAAAAQAAAAAAAQAAAAAALAAAAAAALAAAAAAALAAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAALAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAnAAAAAAAnAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAALAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAhwAAAAAAhwAAAAAAhwAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAALAAAAAAAnQAAAAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAAAAAAAnQAAAAAAoAAAAAAAoAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAAAZQAAAAAAnQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: AQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAABQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAnQAAAAAAnQAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#808080FF' + id: BrickTileDarkCornerNe + decals: + 248: -22,13 + 253: -6,2 + - node: + color: '#AE6716FF' + id: BrickTileDarkCornerNe + decals: + 376: -14,14 + - node: + color: '#808080FF' + id: BrickTileDarkCornerNw + decals: + 157: -19,1 + 245: -26,13 + 252: -7,2 + - node: + color: '#9C2020FF' + id: BrickTileDarkCornerNw + decals: + 73: -33,11 + - node: + color: '#AE6716FF' + id: BrickTileDarkCornerNw + decals: + 375: -15,14 + - node: + color: '#808080FF' + id: BrickTileDarkCornerSe + decals: + 139: -22,-1 + 150: -22,-1 + 217: -17,11 + 233: -22,10 + 255: -6,1 + - node: + color: '#808080FF' + id: BrickTileDarkCornerSw + decals: + 133: -28,-1 + 218: -20,11 + 237: -24,10 + 254: -7,1 + - node: + color: '#9C2020FF' + id: BrickTileDarkCornerSw + decals: + 74: -33,5 + 75: -33,5 + - node: + color: '#AE6716FF' + id: BrickTileDarkEndE + decals: + 361: -13,17 + - node: + color: '#808080FF' + id: BrickTileDarkEndN + decals: + 148: -21,1 + - node: + color: '#808080FF' + id: BrickTileDarkEndS + decals: + 149: -21,0 + - node: + color: '#AE6716FF' + id: BrickTileDarkEndW + decals: + 362: -15,17 + - node: + color: '#808080FF' + id: BrickTileDarkInnerNe + decals: + 142: -27,0 + 181: -9,2 + 194: -8,6 + 196: -9,6 + 215: -14,12 + 227: -20,12 + 230: -18,12 + 232: -19,12 + 249: -22,12 + 250: -24,13 + - node: + color: '#808080FF' + id: BrickTileDarkInnerNw + decals: + 131: -28,3 + 154: -19,0 + 175: -10,1 + 188: -10,4 + 193: -10,8 + 206: -10,12 + 216: -15,12 + 228: -17,12 + 229: -19,12 + 231: -18,12 + 251: -24,13 + - node: + color: '#9C2020FF' + id: BrickTileDarkInnerNw + decals: + 76: -33,10 + 77: -32,11 + - node: + color: '#808080FF' + id: BrickTileDarkInnerSe + decals: + 151: -22,0 + 172: -17,0 + 178: -9,0 + 180: -9,1 + 183: -9,4 + 184: -8,5 + 234: -22,11 + 235: -23,10 + 240: -26,12 + - node: + color: '#808080FF' + id: BrickTileDarkInnerSw + decals: + 132: -28,0 + 173: -17,0 + 174: -10,0 + 177: -9,0 + 187: -10,4 + 192: -10,8 + 205: -10,11 + 236: -23,10 + 238: -25,12 + 239: -26,12 + 242: -24,12 + - node: + color: '#9C2020FF' + id: BrickTileDarkInnerSw + decals: + 78: -33,6 + 79: -32,5 + - node: + color: '#808080FF' + id: BrickTileDarkLineE + decals: + 130: -27,3 + 140: -27,2 + 141: -27,1 + 179: -9,0 + 182: -9,3 + 197: -9,7 + 198: -9,8 + 199: -9,9 + 200: -9,10 + 201: -9,11 + 202: -9,12 + 224: -17,12 + - node: + color: '#808080FF' + id: BrickTileDarkLineN + decals: + 143: -26,0 + 144: -25,0 + 145: -24,0 + 146: -23,0 + 147: -22,0 + 153: -20,0 + 158: -18,1 + 159: -17,1 + 160: -16,1 + 161: -15,1 + 162: -15,1 + 163: -14,1 + 164: -13,1 + 165: -12,1 + 195: -8,6 + 212: -11,12 + 213: -12,12 + 214: -13,12 + 220: -16,12 + 221: -21,12 + 246: -25,13 + 247: -23,13 + - node: + color: '#AE6716FF' + id: BrickTileDarkLineN + decals: + 364: -14,17 + - node: + color: '#808080FF' + id: BrickTileDarkLineS + decals: + 134: -27,-1 + 135: -26,-1 + 136: -25,-1 + 137: -24,-1 + 138: -23,-1 + 152: -20,0 + 155: -19,0 + 156: -18,0 + 166: -16,0 + 167: -15,0 + 168: -14,0 + 169: -14,0 + 170: -12,0 + 171: -13,0 + 176: -10,0 + 207: -11,11 + 208: -12,11 + 209: -13,11 + 210: -14,11 + 211: -15,11 + 219: -16,11 + 222: -21,11 + 225: -19,11 + 226: -18,11 + 241: -25,12 + - node: + color: '#AE6716FF' + id: BrickTileDarkLineS + decals: + 363: -14,17 + - node: + color: '#808080FF' + id: BrickTileDarkLineW + decals: + 185: -10,2 + 186: -10,3 + 189: -10,5 + 190: -10,6 + 191: -10,7 + 203: -10,9 + 204: -10,10 + 223: -20,12 + 243: -24,11 + 244: -26,12 + - node: + color: '#639137FF' + id: BrickTileSteelBox + decals: + 276: -9,-6 + - node: + color: '#446326FF' + id: BrickTileSteelCornerNe + decals: + 280: -10,-4 + - node: + color: '#571212FF' + id: BrickTileSteelCornerNe + decals: + 121: -18,8 + - node: + color: '#774194FF' + id: BrickTileSteelCornerNe + decals: + 256: -15,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerNe + decals: + 93: -28,11 + 106: -22,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerNe + decals: + 359: -12,16 + - node: + color: '#446326FF' + id: BrickTileSteelCornerNw + decals: + 279: -11,-4 + - node: + color: '#571212FF' + id: BrickTileSteelCornerNw + decals: + 118: -20,8 + - node: + color: '#639137FF' + id: BrickTileSteelCornerNw + decals: + 296: -2,9 + - node: + color: '#774194FF' + id: BrickTileSteelCornerNw + decals: + 257: -19,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerNw + decals: + 53: -34,12 + 54: -35,11 + 61: -36,10 + 107: -24,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerNw + decals: + 368: -17,16 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNw + decals: + 2: -1,-2 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerNw + decals: + 3: -1,-2 + - node: + color: '#446326FF' + id: BrickTileSteelCornerSe + decals: + 281: -10,-5 + - node: + color: '#571212FF' + id: BrickTileSteelCornerSe + decals: + 125: -18,4 + - node: + color: '#639137FF' + id: BrickTileSteelCornerSe + decals: + 310: -1,6 + 313: -2,5 + - node: + color: '#774194FF' + id: BrickTileSteelCornerSe + decals: + 262: -16,-4 + 263: -15,-3 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSe + decals: + 102: -26,5 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerSe + decals: + 356: -12,14 + - node: + color: '#571212FF' + id: BrickTileSteelCornerSw + decals: + 126: -20,4 + - node: + color: '#774194FF' + id: BrickTileSteelCornerSw + decals: + 258: -19,-3 + 259: -18,-4 + - node: + color: '#9C2020FF' + id: BrickTileSteelCornerSw + decals: + 51: -34,4 + 52: -35,5 + 62: -36,6 + - node: + color: '#AE6716FF' + id: BrickTileSteelCornerSw + decals: + 369: -17,15 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelCornerSw + decals: + 4: -1,-4 + - node: + color: '#446326FF' + id: BrickTileSteelEndE + decals: + 290: -11,-2 + - node: + color: '#639137FF' + id: BrickTileSteelEndE + decals: + 292: -5,4 + - node: + color: '#9C2020FF' + id: BrickTileSteelEndE + decals: + 44: -32,12 + 50: -32,4 + - node: + color: '#446326FF' + id: BrickTileSteelEndN + decals: + 285: -13,-3 + - node: + color: '#639137FF' + id: BrickTileSteelEndN + decals: + 294: 0,9 + - node: + color: '#446326FF' + id: BrickTileSteelEndS + decals: + 278: -11,-6 + 284: -13,-6 + - node: + color: '#639137FF' + id: BrickTileSteelEndS + decals: + 295: 0,8 + - node: + color: '#446326FF' + id: BrickTileSteelEndW + decals: + 291: -12,-2 + - node: + color: '#639137FF' + id: BrickTileSteelEndW + decals: + 293: -6,4 + - node: + color: '#639137FF' + id: BrickTileSteelInnerNe + decals: + 305: -6,6 + - node: + color: '#774194FF' + id: BrickTileSteelInnerNe + decals: + 265: -17,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNe + decals: + 57: -34,4 + 94: -28,10 + 111: -22,7 + 112: -23,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerNe + decals: + 360: -13,16 + - node: + color: '#571212FF' + id: BrickTileSteelInnerNw + decals: + 117: -20,7 + - node: + color: '#639137FF' + id: BrickTileSteelInnerNw + decals: + 271: -9,-2 + 300: -2,6 + 304: -6,6 + - node: + color: '#774194FF' + id: BrickTileSteelInnerNw + decals: + 266: -17,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerNw + decals: + 55: -34,11 + 60: -35,10 + 86: -29,6 + 92: -29,9 + 96: -26,10 + 114: -23,8 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerNw + decals: + 365: -16,16 + 366: -15,16 + 374: -13,14 + - node: + color: '#446326FF' + id: BrickTileSteelInnerSe + decals: + 283: -11,-5 + - node: + color: '#639137FF' + id: BrickTileSteelInnerSe + decals: + 307: -5,5 + 308: -1,8 + 314: -2,6 + - node: + color: '#774194FF' + id: BrickTileSteelInnerSe + decals: + 264: -16,-3 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSe + decals: + 56: -34,12 + 105: -27,5 + 113: -24,7 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerSe + decals: + 373: -14,15 + - node: + color: '#571212FF' + id: BrickTileSteelInnerSw + decals: + 116: -20,7 + - node: + color: '#639137FF' + id: BrickTileSteelInnerSw + decals: + 306: -6,5 + - node: + color: '#774194FF' + id: BrickTileSteelInnerSw + decals: + 260: -18,-3 + - node: + color: '#9C2020FF' + id: BrickTileSteelInnerSw + decals: + 58: -34,5 + 59: -35,6 + 87: -29,9 + 104: -28,6 + - node: + color: '#AE6716FF' + id: BrickTileSteelInnerSw + decals: + 371: -15,15 + 372: -13,15 + - node: + color: '#446326FF' + id: BrickTileSteelLineE + decals: + 288: -13,-4 + 289: -13,-5 + - node: + color: '#571212FF' + id: BrickTileSteelLineE + decals: + 122: -18,7 + 123: -18,6 + 124: -18,5 + - node: + color: '#639137FF' + id: BrickTileSteelLineE + decals: + 272: -9,-2 + 273: -9,-3 + 274: -9,-4 + 275: -9,-5 + 309: -1,7 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineE + decals: + 66: -34,5 + 67: -34,6 + 68: -34,7 + 69: -34,8 + 70: -34,9 + 71: -34,10 + 72: -34,11 + 97: -26,10 + 98: -26,9 + 99: -26,8 + 100: -26,7 + 101: -26,6 + - node: + color: '#AE6716FF' + id: BrickTileSteelLineE + decals: + 358: -12,15 + - node: + color: '#571212FF' + id: BrickTileSteelLineN + decals: + 119: -19,8 + 120: -19,8 + - node: + color: '#639137FF' + id: BrickTileSteelLineN + decals: + 269: -10,-2 + 270: -10,-2 + 297: -1,9 + 301: -3,6 + 302: -4,6 + 303: -5,6 + - node: + color: '#774194FF' + id: BrickTileSteelLineN + decals: + 267: -18,-2 + 268: -16,-2 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineN + decals: + 45: -33,12 + 46: -33,12 + 49: -33,4 + 81: -30,9 + 82: -30,6 + 95: -27,10 + - node: + color: '#AE6716FF' + id: BrickTileSteelLineN + decals: + 367: -16,16 + - node: + color: '#571212FF' + id: BrickTileSteelLineS + decals: + 128: -19,4 + - node: + color: '#639137FF' + id: BrickTileSteelLineS + decals: + 277: -12,-6 + 311: -4,5 + 312: -3,5 + - node: + color: '#774194FF' + id: BrickTileSteelLineS + decals: + 261: -17,-4 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineS + decals: + 47: -33,12 + 48: -33,4 + 83: -30,6 + 84: -29,6 + 85: -30,9 + 109: -23,7 + 110: -22,7 + - node: + color: '#AE6716FF' + id: BrickTileSteelLineS + decals: + 357: -13,14 + 370: -16,15 + - node: + color: '#446326FF' + id: BrickTileSteelLineW + decals: + 282: -11,-5 + 286: -13,-4 + 287: -13,-5 + - node: + color: '#571212FF' + id: BrickTileSteelLineW + decals: + 115: -20,6 + 127: -20,5 + - node: + color: '#639137FF' + id: BrickTileSteelLineW + decals: + 298: -2,8 + 299: -2,7 + - node: + color: '#9C2020FF' + id: BrickTileSteelLineW + decals: + 63: -36,7 + 64: -36,8 + 65: -36,9 + 88: -29,8 + 89: -29,7 + 90: -29,10 + 91: -29,11 + 103: -28,5 + 108: -24,7 + - node: + color: '#37789BFF' + id: BrickTileWhiteBox + decals: + 327: -9,14 + 337: -4,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerNe + decals: + 329: -9,15 + 339: -3,14 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerNe + decals: + 377: -21,17 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerNw + decals: + 326: -10,15 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerNw + decals: + 394: -26,17 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerSe + decals: + 344: -3,11 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerSe + decals: + 379: -21,15 + 380: -21,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerSw + decals: + 330: -10,14 + 348: -7,11 + - node: + color: '#571212FF' + id: BrickTileWhiteCornerSw + decals: + 393: -26,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteEndE + decals: + 341: -2,12 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerNe + decals: + 333: -10,14 + 338: -4,14 + 342: -3,12 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerSe + decals: + 331: -10,15 + 343: -3,12 + - node: + color: '#571212FF' + id: BrickTileWhiteInnerSe + decals: + 392: -24,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerSw + decals: + 332: -9,15 + 351: -7,14 + - node: + color: '#571212FF' + id: BrickTileWhiteInnerSw + decals: + 391: -24,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineE + decals: + 340: -3,13 + - node: + color: '#571212FF' + id: BrickTileWhiteLineE + decals: + 378: -21,16 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineN + decals: + 334: -7,15 + 335: -6,15 + 336: -5,15 + - node: + color: '#571212FF' + id: BrickTileWhiteLineN + decals: + 384: -25,17 + 385: -24,17 + 386: -23,17 + 387: -23,17 + 388: -23,17 + 389: -22,17 + 390: -22,17 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineS + decals: + 345: -4,11 + 346: -5,11 + 347: -6,11 + - node: + color: '#571212FF' + id: BrickTileWhiteLineS + decals: + 381: -22,15 + 382: -23,15 + 383: -25,15 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineW + decals: + 349: -7,12 + 350: -7,13 + - node: + color: '#571212FF' + id: BrickTileWhiteLineW + decals: + 395: -26,16 + - node: + color: '#FFFFFF3E' + id: CheckerNWSE + decals: + 315: -6,8 + 316: -6,9 + 317: -5,8 + 318: -5,9 + 319: -4,8 + 320: -4,9 + 321: -3,9 + 322: -3,8 + 323: -3,7 + 324: -4,7 + 325: -6,7 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 0: -2,-3 + - node: + cleanable: True + color: '#FFFFFF84' + id: Dirt + decals: + 5: 0,-3 + 6: 1,-3 + 7: 0,-2 + 8: 0,-4 + 9: -1,-3 + 10: -1,-2 + 11: -1,-3 + 12: -1,-2 + 13: 0,-2 + 14: 0,-2 + 15: -1,-3 + 16: -1,-3 + 17: 0,-3 + 18: 1,-4 + 19: 2,-4 + 20: 2,-4 + 21: 1,-2 + 22: 0,-6 + 23: 0,-6 + 24: 2,-6 + 25: 1,-7 + 26: 1,-7 + 27: 0,-7 + 28: 2,-6 + 29: 0,-9 + 30: 2,-9 + 31: 1,-10 + 32: 1,-10 + 33: 2,-9 + 34: 1,-9 + 35: -1,-9 + 36: 3,-4 + 37: 0,-3 + 38: -1,-2 + 39: 0,-3 + 40: 1,-4 + 41: -1,-3 + 42: 0,-1 + 43: 1,-1 + - node: + cleanable: True + color: '#FFFFFF95' + id: Dirt + decals: + 396: -27,5 + 397: -27,6 + 398: -27,8 + 399: -27,8 + 400: -27,9 + 401: -28,7 + 402: -28,5 + 403: -27,5 + 404: -26,6 + 405: -26,7 + 406: -27,8 + 407: -27,9 + 408: -28,9 + 409: -29,9 + 410: -28,8 + 411: -29,6 + 412: -30,6 + 413: -28,2 + 414: -28,2 + 415: -28,2 + 416: -27,1 + 417: -28,0 + 418: -27,2 + 419: -26,4 + 420: -27,2 + 421: -27,2 + 422: -27,0 + 423: -27,-1 + 424: -25,-1 + 425: -23,0 + 426: -23,0 + 427: -24,-1 + 428: -25,-1 + 429: -26,-1 + 430: -23,13 + 431: -22,11 + 432: -23,10 + 433: -24,11 + 434: -24,13 + 435: -25,13 + 436: -26,13 + 437: -24,12 + 438: -23,11 + 439: -24,12 + 440: -26,12 + 441: -22,16 + 442: -22,16 + 443: -23,16 + 444: -23,17 + 445: -26,16 + 446: -25,16 + 447: -26,16 + 448: -24,16 + 449: -25,17 + 450: -25,16 + 451: -24,16 + 452: -23,16 + 453: -21,15 + 454: -22,16 + 455: -22,16 + 456: -24,15 + 457: -24,15 + 458: -32,8 + 459: -32,7 + 460: -33,5 + 461: -33,8 + 462: -33,10 + 463: -34,11 + 464: -34,9 + 465: -35,8 + 466: -34,7 + 467: -34,6 + 468: -35,5 + 469: -33,6 + 470: -34,9 + 471: -34,9 + 472: -34,7 + 473: -32,6 + 474: -34,6 + 475: -33,8 + 476: -34,11 + 477: -33,11 + 478: -19,12 + 479: -20,12 + 480: -19,11 + 481: -18,12 + 482: -17,12 + 483: -18,13 + 484: -18,12 + 485: -18,12 + 486: -20,12 + 487: -20,12 + 488: -13,12 + 489: -12,12 + 490: -11,12 + 491: -10,12 + 492: -12,11 + 493: -15,12 + 494: -15,12 + 495: -14,12 + 496: -11,11 + 497: -11,11 + 498: -10,11 + 499: -10,11 + 500: -10,9 + 501: -9,8 + 502: -9,9 + 503: -9,11 + 504: -9,12 + 505: -10,12 + 506: -10,12 + 507: -10,12 + 508: -15,15 + 509: -14,15 + 510: -14,14 + 511: -13,15 + 512: -14,16 + 513: -16,16 + 514: -17,16 + 515: -18,16 + 516: -16,16 + 517: -14,16 + 518: -13,16 + 519: -14,15 + 520: -13,15 + 521: -14,14 + 522: -7,13 + 523: -7,12 + 524: -4,13 + 525: -4,12 + 526: -3,13 + 527: -4,13 + 528: -5,12 + 529: -5,12 + 530: -4,12 + 531: -6,13 + 532: -6,14 + 533: -6,14 + 534: -6,15 + 535: -7,15 + 536: -5,13 + 537: -4,13 + 538: -3,11 + 539: -5,12 + 540: -6,12 + 541: -7,12 + 542: -5,12 + 543: -6,13 + 544: -7,13 + 545: -6,13 + 546: -5,12 + 547: -6,12 + 548: -6,11 + 549: -6,13 + 550: -4,13 + 551: -3,12 + 552: -3,12 + 553: -2,8 + 554: -2,8 + 555: -2,8 + 556: -2,7 + 557: -2,6 + 558: -3,6 + 559: -5,6 + 560: -5,6 + 561: -6,5 + 562: -4,5 + 563: -4,8 + 564: -5,8 + 565: -6,8 + 566: -6,8 + 567: -1,9 + 568: -1,8 + 569: -1,7 + 570: -2,6 + 571: -8,6 + 572: -9,5 + 573: -10,5 + 574: -9,4 + 575: -10,3 + 576: -10,2 + 577: -10,2 + 578: -10,1 + 579: -9,1 + 580: -6,2 + 581: -7,2 + 582: -7,1 + 583: -13,0 + 584: -13,0 + 585: -17,1 + 586: -17,0 + 587: -15,1 + 588: -13,0 + 589: -12,0 + 590: -16,-2 + 591: -16,-2 + 592: -17,-2 + 593: -12,-4 + 594: -12,-4 + 595: -12,-5 + 596: -11,-3 + 597: -11,-3 + 598: -24,3 + 599: -24,3 + 600: -19,6 + 601: -18,7 + 602: -19,8 + 603: -19,6 + 604: -19,5 + 605: -19,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 606: 1,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 1: -1,-3 + - type: RadiationGridResistance + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 53 + 1: 13258 + 0,-1: + 1: 65535 + -1,0: + 0: 8 + 1: 61431 + 0,1: + 1: 52967 + -1,1: + 1: 65392 + 0,2: + 1: 64733 + -1,2: + 1: 12543 + 0,3: + 1: 13183 + -1,3: + 1: 39735 + 0,4: + 1: 5 + 1,0: + 1: 3 + 1,1: + 1: 5960 + 1,2: + 1: 19 + 1,3: + 1: 4872 + 1,-1: + 1: 63488 + 0: 769 + 2,0: + 1: 4114 + 2,2: + 1: 1298 + 2,1: + 1: 16384 + 2,3: + 1: 8 + 3,2: + 1: 4128 + -4,0: + 1: 57599 + -5,0: + 1: 239 + -4,1: + 1: 57550 + -4,2: + 1: 61646 + -4,3: + 1: 65135 + -5,2: + 1: 61447 + -5,3: + 1: 57599 + -4,4: + 1: 16895 + -3,0: + 1: 56575 + -3,1: + 1: 56543 + -3,2: + 1: 64735 + -3,3: + 1: 56783 + -3,4: + 1: 52865 + -3,-1: + 1: 36863 + -2,0: + 1: 4080 + -2,1: + 1: 24573 + -2,2: + 1: 57565 + -2,3: + 1: 65518 + -1,-1: + 1: 15321 + 0: 50182 + -1,4: + 1: 18428 + -5,-3: + 1: 51200 + -4,-2: + 1: 34832 + -4,-1: + 1: 953 + -5,-1: + 1: 36588 + -4,-3: + 1: 64 + -3,-2: + 1: 64256 + -3,-3: + 1: 2 + -3,-4: + 1: 18432 + -2,-4: + 1: 48 + -2,-3: + 1: 8204 + -2,-2: + 1: 2 + -2,-1: + 1: 128 + -1,-4: + 1: 12288 + -1,-3: + 1: 36864 + 0: 19648 + -1,-2: + 1: 13378 + 0: 51340 + 0,-3: + 0: 2288 + 1: 30464 + 0,-2: + 0: 55437 + 1: 10098 + 1,-3: + 0: 272 + 1,-2: + 0: 12560 + 2,-1: + 1: 272 + 2,-3: + 1: 33280 + 2,-2: + 1: 36 + 2,-4: + 1: 16384 + 3,-2: + 1: 4609 + -5,4: + 1: 3822 + -4,5: + 1: 16674 + -4,6: + 1: 16 + -3,5: + 1: 33296 + -3,6: + 1: 32 + -2,4: + 1: 8176 + -3,7: + 1: 8 + -2,5: + 1: 512 + -2,6: + 1: 32802 + -2,7: + 1: 32 + -1,5: + 1: 2076 + 0,5: + 1: 17 + -8,-1: + 1: 1033 + -8,0: + 1: 52697 + -8,-2: + 1: 8 + -7,-1: + 1: 61441 + -7,-2: + 1: 4744 + -7,0: + 1: 47935 + -6,-1: + 1: 28672 + -6,-2: + 1: 33280 + -6,0: + 1: 29583 + -5,-2: + 1: 4 + -9,0: + 1: 7985 + -8,1: + 1: 40721 + -9,1: + 1: 65516 + -8,2: + 1: 39417 + -9,2: + 1: 61439 + -8,3: + 1: 16841 + -9,3: + 1: 4380 + -8,4: + 1: 68 + -7,1: + 1: 30579 + -7,2: + 1: 22391 + -7,3: + 1: 53468 + -7,4: + 1: 460 + -6,1: + 1: 29047 + -6,2: + 1: 63271 + -6,3: + 1: 61823 + -6,4: + 1: 255 + -5,1: + 1: 30583 + -9,4: + 1: 2118 + -8,5: + 1: 33281 + -9,5: + 1: 556 + -7,6: + 1: 80 + -6,5: + 1: 8192 + -5,6: + 1: 2 + -5,5: + 1: 16384 + -10,0: + 1: 39394 + -10,1: + 1: 25615 + -10,2: + 1: 30534 + -10,3: + 1: 37348 + -10,4: + 1: 33 + 1,4: + 1: 528 + -9,-1: + 1: 258 + uniqueMixes: + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - uid: 1747 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree +- proto: AirlockSyndicateGlassLocked + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,13.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,9.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,6.5 + parent: 1 +- proto: AirlockSyndicateLocked + entities: + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,6.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,1.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,13.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,13.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-0.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,14.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,4.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 1 +- proto: AirlockSyndicateNukeopGlassLocked + entities: + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,9.5 + parent: 1 +- proto: AirlockSyndicateNukeopLocked + entities: + - uid: 27 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,7.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,4.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -25.5,14.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,11.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,16.5 + parent: 1 +- proto: AsteroidRock + entities: + - uid: 41 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 1 + - uid: 82 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 1 + - uid: 83 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 1 + - uid: 85 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 1 + - uid: 86 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 1 + - uid: 87 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 88 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 7.5,1.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 7.5,11.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 7.5,10.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: 12.5,9.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 13.5,8.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: 2.5,17.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: -2.5,22.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: -1.5,21.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: -2.5,21.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: -3.5,20.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: -4.5,19.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -3.5,19.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: -10.5,21.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: -9.5,20.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: -12.5,19.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: -10.5,20.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: -9.5,22.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: -8.5,27.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: -8.5,26.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: -9.5,26.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: -9.5,27.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: -7.5,28.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: -4.5,28.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: -4.5,29.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: -5.5,29.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: -8.5,24.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: -12.5,20.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: -20.5,20.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: -17.5,20.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: -16.5,21.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: -18.5,20.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: -16.5,20.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: -15.5,21.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: -15.5,20.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: -16.5,24.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: -15.5,24.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: -15.5,23.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: -14.5,24.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: -14.5,23.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: -16.5,23.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: -14.5,25.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: -13.5,24.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: -16.5,22.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: -18.5,22.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + pos: -20.5,23.5 + parent: 1 + - uid: 1542 + components: + - type: Transform + pos: -18.5,23.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + pos: -19.5,23.5 + parent: 1 + - uid: 1544 + components: + - type: Transform + pos: -19.5,24.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + pos: -27.5,19.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: -26.5,19.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: -25.5,19.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: -24.5,19.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: -23.5,21.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: -23.5,20.5 + parent: 1 + - uid: 1558 + components: + - type: Transform + pos: -23.5,19.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + pos: -22.5,21.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: -22.5,19.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + pos: -21.5,19.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + pos: -20.5,19.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: -27.5,24.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: -27.5,22.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + pos: -26.5,24.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: -26.5,23.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: -27.5,23.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: -25.5,23.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: -24.5,24.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: -24.5,22.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: -23.5,24.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + pos: -23.5,23.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: -23.5,22.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + pos: -24.5,23.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + pos: -22.5,22.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + pos: -26.5,25.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: -29.5,22.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + pos: -29.5,20.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: -28.5,22.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: -28.5,21.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: -28.5,20.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: -29.5,21.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: -28.5,18.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: -29.5,18.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: -31.5,19.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: -28.5,19.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: -30.5,20.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: -30.5,21.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: -33.5,23.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: -32.5,23.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: -32.5,22.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: -31.5,23.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: -31.5,22.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: -33.5,22.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + pos: -32.5,21.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + pos: -33.5,21.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + pos: -32.5,15.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + pos: -31.5,15.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + pos: -30.5,17.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: -30.5,16.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: -30.5,15.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: -34.5,15.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: -33.5,14.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: -34.5,14.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -32.5,14.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -38.5,14.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -37.5,16.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -37.5,14.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -38.5,15.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -36.5,14.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -39.5,9.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -37.5,5.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -38.5,3.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -38.5,2.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -37.5,3.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -36.5,0.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -36.5,12.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: -32.5,1.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -32.5,0.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -30.5,-0.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -33.5,-2.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -32.5,-2.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -32.5,-3.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -33.5,-3.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -34.5,-2.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -35.5,-2.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: -26.5,-4.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 1 + - uid: 1684 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + pos: -26.5,-7.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 1 + - uid: 1706 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 1 + - uid: 1707 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 1 + - uid: 1708 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + pos: -11.5,-9.5 + parent: 1 + - uid: 1716 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 1 + - uid: 1717 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 1 + - uid: 1718 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 1 + - uid: 1720 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 1722 + components: + - type: Transform + pos: -11.5,-10.5 + parent: 1 + - uid: 1723 + components: + - type: Transform + pos: -12.5,-10.5 + parent: 1 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 101 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 +- proto: AsteroidRockBananium + entities: + - uid: 1400 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 +- proto: AsteroidRockCoal + entities: + - uid: 151 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 1 +- proto: AsteroidRockGold + entities: + - uid: 1488 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: -7.5,23.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: -9.5,25.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: -20.5,21.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: -19.5,21.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: -18.5,21.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: -17.5,21.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: -19.5,22.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + pos: -20.5,22.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + pos: -21.5,22.5 + parent: 1 + - uid: 1545 + components: + - type: Transform + pos: -27.5,21.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + pos: -26.5,21.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: -26.5,20.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + pos: -25.5,21.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: -25.5,20.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: -27.5,20.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: -24.5,20.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + pos: -24.5,21.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + pos: -21.5,21.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + pos: -21.5,20.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: -25.5,22.5 + parent: 1 +- proto: AsteroidRockPlasma + entities: + - uid: 1436 + components: + - type: Transform + pos: 2.5,20.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + pos: -22.5,20.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: -25.5,24.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -37.5,0.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -33.5,1.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -33.5,0.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -34.5,-1.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 1 +- proto: AsteroidRockQuartz + entities: + - uid: 1080 + components: + - type: Transform + pos: -38.5,16.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: -19.5,20.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + pos: -17.5,22.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: -26.5,22.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: -29.5,19.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: -30.5,18.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: -31.5,18.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + pos: -30.5,19.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + pos: -32.5,17.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + pos: -31.5,17.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + pos: -31.5,16.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: -32.5,16.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: -33.5,15.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -37.5,15.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -38.5,9.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -38.5,6.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -37.5,2.5 + parent: 1 +- proto: AsteroidRockSalt + entities: + - uid: 78 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 +- proto: AsteroidRockSilver + entities: + - uid: 1413 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: 11.5,10.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 3.5,19.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 3.5,18.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 1 +- proto: AsteroidRockTin + entities: + - uid: 1467 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: -7.5,21.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: -9.5,21.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: -7.5,26.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: -7.5,27.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: -6.5,28.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: -6.5,27.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: -5.5,28.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: -5.5,27.5 + parent: 1 +- proto: AsteroidRockUranium + entities: + - uid: 46 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 76 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 1 + - uid: 77 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 +- proto: BannerSyndicate + entities: + - uid: 162 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: -21.5,8.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + pos: -20.5,17.5 + parent: 1 +- proto: Barricade + entities: + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 1207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 1 +- proto: Bed + entities: + - uid: 166 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 169 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: BedsheetSyndie + entities: + - uid: 172 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 +- proto: BrutepackAdvanced1 + entities: + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.94998837,-2.16055 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 1.1281366,-1.2230501 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -5.611565,11.620254 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: -5.34594,11.589004 + parent: 1 + - uid: 179 + components: + - type: Transform + pos: -5.59594,11.276504 + parent: 1 +- proto: C4 + entities: + - uid: 1297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.518011,4.5462046 + parent: 1 + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.439886,4.1712046 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 180 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -13.5,16.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -15.5,16.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -16.5,16.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -18.5,16.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -18.5,17.5 + parent: 1 + - uid: 194 + components: + - type: Transform + pos: -16.5,17.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 202 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 203 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 209 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -9.5,14.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 215 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -14.5,11.5 + parent: 1 + - uid: 218 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -16.5,11.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -17.5,11.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: -18.5,11.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -18.5,12.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 233 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 238 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 243 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 246 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 247 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 249 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: -8.5,4.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: -8.5,2.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: -7.5,2.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -16.5,0.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -15.5,0.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -13.5,0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -12.5,0.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -11.5,0.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: -9.5,0.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: -14.5,0.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: -11.5,-5.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -11.5,-3.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -16.5,-0.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -26.5,2.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -28.5,2.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 1182 + components: + - type: Transform + pos: -18.5,6.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: -18.5,5.5 + parent: 1 + - uid: 1185 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: -23.5,6.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: -23.5,7.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: -21.5,16.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: -22.5,16.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: -23.5,16.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: -24.5,16.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: -20.5,16.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: -22.5,17.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: -30.5,11.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: -32.5,11.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: -33.5,11.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: -31.5,11.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: -34.5,11.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: -34.5,10.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: -34.5,8.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: -34.5,7.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -34.5,9.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: -32.5,10.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: -32.5,8.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: -32.5,6.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: -32.5,9.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: -32.5,5.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: -34.5,5.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: -34.5,6.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: -31.5,6.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: -31.5,9.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: -27.5,7.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: -28.5,7.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: -25.5,7.5 + parent: 1 +- proto: CableHV + entities: + - uid: 298 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -14.5,17.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -15.5,17.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -17.5,15.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -17.5,16.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -17.5,17.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -9.5,9.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -9.5,5.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: -9.5,7.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -9.5,2.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -17.5,1.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -18.5,1.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -20.5,0.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -22.5,0.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -23.5,0.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -25.5,0.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -26.5,0.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -21.5,0.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -26.5,1.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -26.5,2.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: -26.5,5.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -26.5,6.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -26.5,7.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: -26.5,8.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -26.5,9.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -26.5,10.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -26.5,11.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -28.5,11.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -25.5,11.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: -21.5,7.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: -19.5,7.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: -18.5,7.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 +- proto: CableMV + entities: + - uid: 390 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: -12.5,15.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: -12.5,14.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -12.5,16.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -13.5,14.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -14.5,14.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -15.5,14.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -13.5,13.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -13.5,12.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -13.5,11.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -12.5,11.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -11.5,11.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: -8.5,12.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: -8.5,13.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: -5.5,14.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: -4.5,14.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 431 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 436 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 439 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -15.5,1.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -16.5,2.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: -14.5,1.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: -12.5,1.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: -11.5,1.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: -10.5,1.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 448 + components: + - type: Transform + pos: -13.5,1.5 + parent: 1 + - uid: 449 + components: + - type: Transform + pos: -28.5,3.5 + parent: 1 + - uid: 450 + components: + - type: Transform + pos: -27.5,3.5 + parent: 1 + - uid: 451 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 452 + components: + - type: Transform + pos: -27.5,2.5 + parent: 1 + - uid: 453 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 454 + components: + - type: Transform + pos: -27.5,-0.5 + parent: 1 + - uid: 455 + components: + - type: Transform + pos: -27.5,1.5 + parent: 1 + - uid: 456 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: -28.5,12.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: -28.5,11.5 + parent: 1 + - uid: 461 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: -25.5,11.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: -26.5,11.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: -25.5,12.5 + parent: 1 + - uid: 465 + components: + - type: Transform + pos: -25.5,14.5 + parent: 1 + - uid: 466 + components: + - type: Transform + pos: -25.5,13.5 + parent: 1 + - uid: 467 + components: + - type: Transform + pos: -29.5,11.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: -30.5,11.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -24.5,11.5 + parent: 1 + - uid: 470 + components: + - type: Transform + pos: -23.5,11.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: -23.5,14.5 + parent: 1 + - uid: 472 + components: + - type: Transform + pos: -23.5,15.5 + parent: 1 + - uid: 473 + components: + - type: Transform + pos: -23.5,13.5 + parent: 1 + - uid: 474 + components: + - type: Transform + pos: -23.5,12.5 + parent: 1 + - uid: 475 + components: + - type: Transform + pos: -23.5,16.5 + parent: 1 + - uid: 476 + components: + - type: Transform + pos: -22.5,16.5 + parent: 1 + - uid: 477 + components: + - type: Transform + pos: -19.5,16.5 + parent: 1 + - uid: 478 + components: + - type: Transform + pos: -20.5,16.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: -21.5,16.5 + parent: 1 + - uid: 480 + components: + - type: Transform + pos: -26.5,3.5 + parent: 1 + - uid: 481 + components: + - type: Transform + pos: -26.5,4.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: -25.5,4.5 + parent: 1 + - uid: 483 + components: + - type: Transform + pos: -24.5,4.5 + parent: 1 + - uid: 484 + components: + - type: Transform + pos: -22.5,11.5 + parent: 1 + - uid: 485 + components: + - type: Transform + pos: -22.5,10.5 + parent: 1 + - uid: 486 + components: + - type: Transform + pos: -22.5,8.5 + parent: 1 + - uid: 487 + components: + - type: Transform + pos: -22.5,7.5 + parent: 1 + - uid: 488 + components: + - type: Transform + pos: -22.5,9.5 + parent: 1 + - uid: 489 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: -17.5,7.5 + parent: 1 + - uid: 491 + components: + - type: Transform + pos: -16.5,7.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,17.5 + parent: 1 +- proto: Carpet + entities: + - uid: 493 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 +- proto: CarpetBlack + entities: + - uid: 494 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 495 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 496 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 497 + components: + - type: Transform + pos: -13.5,4.5 + parent: 1 + - uid: 498 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -12.5,4.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 504 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: -14.5,8.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: -14.5,7.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: -13.5,8.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: -13.5,7.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 513 + components: + - type: Transform + pos: -12.5,8.5 + parent: 1 + - uid: 514 + components: + - type: Transform + pos: -12.5,7.5 + parent: 1 + - uid: 515 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 516 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: -23.5,3.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + pos: -23.5,2.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + pos: -22.5,3.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 + - uid: 1128 + components: + - type: Transform + pos: -24.5,2.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: -22.5,4.5 + parent: 1 + - uid: 1131 + components: + - type: Transform + pos: -23.5,5.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 1133 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 120 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 1 + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,17.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,17.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,18.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,17.5 + parent: 1 + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,18.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,18.5 + parent: 1 + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,17.5 + parent: 1 + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,16.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,15.5 + parent: 1 + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,16.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: -3.5,17.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 +- proto: Chair + entities: + - uid: 530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,17.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,17.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,15.5 + parent: 1 + - uid: 1164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,15.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,16.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: -25.5,9.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.49909186,-3.3099484 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.235903,4.6406918 + parent: 1 + - uid: 1232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.474327,10.668319 + parent: 1 + - uid: 1233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.489952,8.683944 + parent: 1 + - uid: 1234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.646202,6.7933187 + parent: 1 + - uid: 1235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.333702,5.6058187 + parent: 1 + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.208702,11.558944 + parent: 1 + - uid: 1244 + components: + - type: Transform + pos: -32.502407,10.543319 + parent: 1 + - uid: 1245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.533657,6.9183187 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 +- proto: CleanerDispenser + entities: + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 1 +- proto: ClosetJanitorFilled + entities: + - uid: 536 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 1 +- proto: ClothingBackpackDuffelSyndicateAmmo + entities: + - uid: 1143 + components: + - type: Transform + pos: -22.435818,5.7414713 + parent: 1 +- proto: ClothingMilitaryBackpack + entities: + - uid: 1253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.361782,7.5901937 + parent: 1 +- proto: ClothingNeckSyndicakePin + entities: + - uid: 1172 + components: + - type: Transform + pos: -21.284945,4.876569 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: -21.33182,5.048444 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: -21.316195,5.282819 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: -21.316195,5.454694 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: -21.33182,5.579694 + parent: 1 +- proto: ClothingOuterCoatSyndieCapArmored + entities: + - uid: 537 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.470663,0.5878024 + parent: 1 +- proto: ClothingUnderSocksCoder + entities: + - uid: 1293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.937141,-3.5511694 + parent: 1 +- proto: ClothingUniformJumpskirtElegantMaid + entities: + - uid: 1292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.269127,-3.5042944 + parent: 1 +- proto: ClothingUniformJumpsuitRepairmanSyndie + entities: + - uid: 538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.4055195,15.319891 + parent: 1 +- proto: Cobweb1 + entities: + - uid: 1330 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -27.5,0.5 + parent: 1 +- proto: Cobweb2 + entities: + - uid: 1337 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 1 +- proto: CombatKnife + entities: + - uid: 539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.935198,8.670343 + parent: 1 + - uid: 1220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.474491,8.642928 + parent: 1 +- proto: ComfyChair + entities: + - uid: 1157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,16.5 + parent: 1 +- proto: ComputerAlert + entities: + - uid: 1224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 1 +- proto: ComputerBroken + entities: + - uid: 540 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,9.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,7.5 + parent: 1 +- proto: ComputerIFF + entities: + - uid: 1225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,6.5 + parent: 1 +- proto: ComputerMassMedia + entities: + - uid: 1227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 1223 + components: + - type: Transform + pos: -31.5,12.5 + parent: 1 +- proto: ComputerRadar + entities: + - uid: 1226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,10.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,9.5 + parent: 1 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 1241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 1 +- proto: CrateEmptySpawner + entities: + - uid: 542 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 +- proto: CrateTrashCartJani + entities: + - uid: 543 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 1 +- proto: CurtainsBlack + entities: + - uid: 544 + components: + - type: Transform + pos: -15.5,12.5 + parent: 1 + - uid: 545 + components: + - type: Transform + pos: -15.5,11.5 + parent: 1 + - uid: 546 + components: + - type: Transform + pos: -20.5,12.5 + parent: 1 + - uid: 547 + components: + - type: Transform + pos: -20.5,11.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,7.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 1 + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-0.5 + parent: 1 + - uid: 554 + components: + - type: Transform + pos: -19.5,0.5 + parent: 1 +- proto: CyberPen + entities: + - uid: 555 + components: + - type: Transform + pos: -14.282778,4.6406918 + parent: 1 +- proto: DresserFilled + entities: + - uid: 556 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 557 + components: + - type: Transform + pos: -13.5,9.5 + parent: 1 + - uid: 558 + components: + - type: Transform + pos: -13.5,5.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + pos: -24.5,3.5 + parent: 1 +- proto: DrinkNukieCan + entities: + - uid: 559 + components: + - type: Transform + pos: -0.75090814,-3.2318234 + parent: 1 +- proto: FaxMachineSyndie + entities: + - uid: 1140 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 +- proto: FireAxeFlaming + entities: + - uid: 1206 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.123259,13.408037 + parent: 1 +- proto: FloorDrain + entities: + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodBoxDonut + entities: + - uid: 561 + components: + - type: Transform + pos: -0.46965814,-3.5130734 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 562 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: GeneratorRTG + entities: + - uid: 563 + components: + - type: Transform + pos: -18.5,18.5 + parent: 1 + - type: PowerSupplier + supplyRate: 20000 + - uid: 564 + components: + - type: Transform + pos: -16.5,18.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: -15.5,18.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: -18.5,15.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: -17.5,15.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 1748 + components: + - type: Transform + pos: -16.5,15.5 + parent: 1 +- proto: Grille + entities: + - uid: 569 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 577 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 578 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 579 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: -24.5,8.5 + parent: 1 + - uid: 585 + components: + - type: Transform + pos: -24.5,7.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: -23.5,9.5 + parent: 1 + - uid: 587 + components: + - type: Transform + pos: -35.5,11.5 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: -36.5,11.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: -36.5,10.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: -36.5,9.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: -36.5,8.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: -36.5,6.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: -36.5,5.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: -36.5,7.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: -35.5,5.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -34.5,12.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: -34.5,13.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: -34.5,4.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -34.5,3.5 + parent: 1 +- proto: HappyHonkNukie + entities: + - uid: 600 + components: + - type: Transform + pos: -0.43778467,6.782116 + parent: 1 +- proto: HighSecCentralCommandLocked + entities: + - uid: 601 + components: + - type: Transform + pos: -20.5,7.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 602 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.4147344,8.96334 + parent: 1 +- proto: hydroponicsTray + entities: + - uid: 606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 1 +- proto: JanitorialTrolley + entities: + - uid: 607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 1 +- proto: LandMineExplosive + entities: + - uid: 608 + components: + - type: Transform + pos: -11.063247,-2.9209385 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: -12.075996,-2.2813346 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: -12.8972845,0.3791206 + parent: 1 + - uid: 1724 + components: + - type: Transform + pos: -31.5635,1.850487 + parent: 1 + - uid: 1725 + components: + - type: Transform + pos: -38.072647,4.6179857 + parent: 1 + - uid: 1726 + components: + - type: Transform + pos: -37.760147,10.664861 + parent: 1 + - uid: 1727 + components: + - type: Transform + pos: -29.336876,16.731863 + parent: 1 + - uid: 1728 + components: + - type: Transform + pos: -28.430626,23.388113 + parent: 1 + - uid: 1729 + components: + - type: Transform + pos: -14.398483,21.565536 + parent: 1 + - uid: 1730 + components: + - type: Transform + pos: -6.4933367,25.516285 + parent: 1 + - uid: 1731 + components: + - type: Transform + pos: -1.8624139,17.935059 + parent: 1 + - uid: 1732 + components: + - type: Transform + pos: -8.190538,19.278809 + parent: 1 + - uid: 1733 + components: + - type: Transform + pos: 2.402419,12.333295 + parent: 1 + - uid: 1734 + components: + - type: Transform + pos: 2.980544,6.4529424 + parent: 1 + - uid: 1735 + components: + - type: Transform + pos: 6.496169,5.9841924 + parent: 1 + - uid: 1736 + components: + - type: Transform + pos: -6.4995937,-8.284485 + parent: 1 + - uid: 1737 + components: + - type: Transform + pos: -9.421469,-12.39386 + parent: 1 + - uid: 1738 + components: + - type: Transform + pos: -15.323654,-6.6751103 + parent: 1 + - uid: 1739 + components: + - type: Transform + pos: -22.474771,-5.541456 + parent: 1 + - uid: 1740 + components: + - type: Transform + pos: -27.724771,-3.4633312 + parent: 1 + - uid: 1741 + components: + - type: Transform + pos: -36.06919,1.9028566 + parent: 1 +- proto: LootSpawnerContraband + entities: + - uid: 610 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 +- proto: LootSpawnerContrabandHigh + entities: + - uid: 1097 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-10.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 614 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 617 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 +- proto: OperatingTable + entities: + - uid: 620 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 +- proto: Paper + entities: + - uid: 621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.360903,4.2031918 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: -21.342056,4.41203 + parent: 1 + - uid: 1150 + components: + - type: Transform + pos: -21.685806,4.458905 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: -21.670181,4.19328 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: -21.467056,4.19328 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: -21.232681,17.720062 + parent: 1 + - uid: 1154 + components: + - type: Transform + pos: -21.545181,17.720062 + parent: 1 + - uid: 1155 + components: + - type: Transform + pos: -21.638931,17.657562 + parent: 1 + - uid: 1156 + components: + - type: Transform + pos: -21.513931,17.516937 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: -21.295181,17.407562 + parent: 1 +- proto: PaperBin10 + entities: + - uid: 1246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,9.5 + parent: 1 +- proto: PaperBin20 + entities: + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 1 +- proto: PillAmbuzol + entities: + - uid: 1219 + components: + - type: Transform + pos: -25.458866,7.642928 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: PlastitaniumWindow + entities: + - uid: 624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 1 + - uid: 626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,13.5 + parent: 1 + - uid: 631 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,12.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,4.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,3.5 + parent: 1 + - uid: 634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,5.5 + parent: 1 + - uid: 635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,5.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 1 + - uid: 637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,11.5 + parent: 1 + - uid: 638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,10.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 1 + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,7.5 + parent: 1 + - uid: 641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 1 + - uid: 642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,9.5 + parent: 1 + - uid: 643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 1 + - uid: 644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,8.5 + parent: 1 + - uid: 645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 1 +- proto: PlushieNuke + entities: + - uid: 1171 + components: + - type: Transform + pos: -27.338573,15.579437 + parent: 1 +- proto: PlushieSharkPink + entities: + - uid: 646 + components: + - type: Transform + pos: -13.282778,3.6094418 + parent: 1 +- proto: PlushieThrongler + entities: + - uid: 647 + components: + - type: Transform + pos: -11.450996,-5.718835 + parent: 1 +- proto: PotatoSeeds + entities: + - uid: 648 + components: + - type: Transform + pos: -5.5709844,9.46334 + parent: 1 +- proto: PowerCellHigh + entities: + - uid: 1221 + components: + - type: Transform + pos: -28.505741,8.549178 + parent: 1 +- proto: PowerCellPotato + entities: + - uid: 1222 + components: + - type: Transform + pos: -28.552616,7.658553 + parent: 1 +- proto: Poweredlight + entities: + - uid: 649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,14.5 + parent: 1 + - uid: 650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 1 + - uid: 651 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 + - uid: 655 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 656 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: -24.5,17.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: -24.5,17.5 + parent: 1 + - uid: 1117 + components: + - type: Transform + pos: -21.5,17.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,5.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 +- proto: PoweredlightRed + entities: + - uid: 658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 1 + - uid: 659 + components: + - type: Transform + pos: -17.5,18.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 661 + components: + - type: Transform + pos: -11.5,12.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: -18.5,13.5 + parent: 1 + - uid: 663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,10.5 + parent: 1 + - uid: 664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - uid: 665 + components: + - type: Transform + pos: -16.5,1.5 + parent: 1 + - uid: 666 + components: + - type: Transform + pos: -24.5,0.5 + parent: 1 + - uid: 667 + components: + - type: Transform + pos: -24.5,13.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,8.5 + parent: 1 +- proto: Rack + entities: + - uid: 669 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: -11.5,15.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: -11.5,14.5 + parent: 1 + - uid: 672 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 674 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,0.5 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-3.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: -19.5,8.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: -18.5,8.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: -19.5,4.5 + parent: 1 + - uid: 1084 + components: + - type: Transform + pos: -18.5,4.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: -17.5,4.5 + parent: 1 +- proto: Railing + entities: + - uid: 1392 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 +- proto: RandomCommandCorpseSpawner + entities: + - uid: 677 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 678 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 680 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 +- proto: RandomPosterContraband + entities: + - uid: 681 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 682 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + pos: -11.5,13.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: -16.5,14.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 1106 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: -17.5,-0.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: -21.5,1.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: -17.5,10.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + pos: -12.5,10.5 + parent: 1 +- proto: RandomSpawner + entities: + - uid: 683 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 684 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 686 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 687 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 1307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,12.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,15.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,15.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,10.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,1.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,5.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,4.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,8.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,14.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,15.5 + parent: 1 +- proto: RandomVending + entities: + - uid: 688 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 689 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: -21.5,13.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: -22.5,13.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: -27.5,11.5 + parent: 1 +- proto: RCDAmmo + entities: + - uid: 690 + components: + - type: Transform + pos: -11.60024,14.620955 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: -11.553365,14.339705 + parent: 1 +- proto: ReinforcedGirder + entities: + - uid: 692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 694 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 696 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 697 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 698 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1 + - uid: 700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - uid: 701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 705 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: RevolverCapGun + entities: + - uid: 1095 + components: + - type: Transform + pos: -18.284372,8.485285 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: -18.456247,8.829035 + parent: 1 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 706 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: -19.5,13.5 + parent: 1 +- proto: SalvageMobSpawner + entities: + - uid: 708 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 710 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 711 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 +- proto: ScalpelLaser + entities: + - uid: 712 + components: + - type: Transform + pos: -3.4653883,13.886168 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 713 + components: + - type: Transform + pos: 2.6501026,-6.5253134 + parent: 1 +- proto: ShardGlassPlasma + entities: + - uid: 714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.8530402,-0.41116858 + parent: 1 + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.1499152,0.9482064 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: 0.10936451,-5.154737 + parent: 1 + - uid: 717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.3281355,-6.201612 + parent: 1 + - uid: 718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.780293,-6.7732124 + parent: 1 +- proto: SheetPlasteel10 + entities: + - uid: 719 + components: + - type: Transform + pos: -11.334615,14.73033 + parent: 1 +- proto: SheetSteel1 + entities: + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.3428419,-3.7786984 + parent: 1 + - uid: 721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.48346686,-1.3880734 + parent: 1 + - uid: 722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.4990919,-0.35682344 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 0.38432026,-9.330982 + parent: 1 + - uid: 724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5249453,-8.221607 + parent: 1 + - uid: 725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.3969297,-6.5653577 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 726 + components: + - type: Transform + pos: -11.13149,14.308455 + parent: 1 +- proto: SignArmory + entities: + - uid: 1304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,9.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 1302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,8.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 1 +- proto: SignConference + entities: + - uid: 1299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,14.5 + parent: 1 +- proto: SignEngine + entities: + - uid: 1306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,13.5 + parent: 1 +- proto: SignJanitor + entities: + - uid: 1305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 1 +- proto: SignKitchen + entities: + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,4.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,13.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 1300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 +- proto: SlipocalypseClusterSoap + entities: + - uid: 727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.482246,-3.5782096 + parent: 1 +- proto: SMESBasic + entities: + - uid: 728 + components: + - type: Transform + pos: -13.5,17.5 + parent: 1 +- proto: Soap + entities: + - uid: 729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.347953,8.507276 + parent: 1 +- proto: SoapSyndie + entities: + - uid: 730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.11663973,-9.592781 + parent: 1 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 731 + components: + - type: Transform + pos: -11.5,-1.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: -10.5,-1.5 + parent: 1 + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 1 + - uid: 734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-3.5 + parent: 1 + - uid: 735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + - uid: 736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 + parent: 1 + - uid: 737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - uid: 738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - uid: 739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 1 + - uid: 740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - uid: 741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 +- proto: SpawnMobCobraSalvage + entities: + - uid: 742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: SpawnMobSyndicateFootSoldier + entities: + - uid: 743 + components: + - type: Transform + pos: -14.5,16.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -3.5,14.5 + parent: 1 + - uid: 745 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - uid: 746 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 1145 + components: + - type: Transform + pos: -23.5,4.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: -28.5,13.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,8.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: -31.5,11.5 + parent: 1 +- proto: SpiderWeb + entities: + - uid: 1331 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,1.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,2.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,0.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,3.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 1 +- proto: StimpackMini + entities: + - uid: 747 + components: + - type: Transform + pos: -1.4972596,12.728551 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: -1.3097596,12.462926 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 749 + components: + - type: Transform + pos: -12.5,17.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: -27.5,13.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: -29.5,3.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: -17.5,8.5 + parent: 1 +- proto: SuitStorageEVASyndicate + entities: + - uid: 754 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: SuitStorageSyndie + entities: + - uid: 1144 + components: + - type: Transform + pos: -22.5,2.5 + parent: 1 +- proto: SyndicateIDCard + entities: + - uid: 755 + components: + - type: Transform + pos: -0.50090814,-1.4193234 + parent: 1 +- proto: SyndicateJawsOfLife + entities: + - uid: 756 + components: + - type: Transform + pos: -11.519238,15.677311 + parent: 1 +- proto: SyndicateMicrowave + entities: + - uid: 757 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 +- proto: TableFrame + entities: + - uid: 758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 761 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 1 + - uid: 763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - uid: 764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - uid: 766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 767 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: -21.5,5.5 + parent: 1 + - uid: 1137 + components: + - type: Transform + pos: -21.5,3.5 + parent: 1 + - uid: 1138 + components: + - type: Transform + pos: -21.5,4.5 + parent: 1 + - uid: 1139 + components: + - type: Transform + pos: -22.5,5.5 + parent: 1 + - uid: 1147 + components: + - type: Transform + pos: -21.5,16.5 + parent: 1 + - uid: 1148 + components: + - type: Transform + pos: -21.5,17.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,8.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,7.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,7.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + pos: -33.5,10.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: -33.5,9.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: -33.5,7.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: -32.5,7.5 + parent: 1 +- proto: TableWood + entities: + - uid: 770 + components: + - type: Transform + pos: -12.5,9.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: -12.5,5.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: -14.5,3.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: -14.5,4.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: -13.5,3.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: -12.5,3.5 + parent: 1 +- proto: Telecrystal1 + entities: + - uid: 1247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.268032,10.637069 + parent: 1 + - uid: 1248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.580532,10.558944 + parent: 1 + - uid: 1249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.393032,10.465194 + parent: 1 + - uid: 1250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.627407,7.6370687 + parent: 1 + - uid: 1251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.299282,7.6370687 + parent: 1 + - uid: 1252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.424282,7.4183187 + parent: 1 +- proto: Thruster + entities: + - uid: 776 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1 +- proto: ToySword + entities: + - uid: 1093 + components: + - type: Transform + pos: -19.487497,8.797785 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: -19.174997,8.672785 + parent: 1 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.947948,14.970061 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 +- proto: VendingMachineCigs + entities: + - uid: 779 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 +- proto: VendingMachineClothing + entities: + - uid: 780 + components: + - type: Transform + pos: -29.5,2.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 781 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 782 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 783 + components: + - type: Transform + pos: -29.5,1.5 + parent: 1 +- proto: VendingMachineVendomat + entities: + - uid: 784 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 785 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1 +- proto: WallPlastitanium + entities: + - uid: 668 + components: + - type: Transform + pos: -29.5,8.5 + parent: 1 + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 + - uid: 797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + - uid: 808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,2.5 + parent: 1 + - uid: 812 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - uid: 813 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 814 + components: + - type: Transform + pos: -7.5,0.5 + parent: 1 + - uid: 815 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 816 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 817 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 818 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - uid: 820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 1 + - uid: 821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 1 + - uid: 822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 1 + - uid: 823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,2.5 + parent: 1 + - uid: 824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 1 + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 1 + - uid: 826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,6.5 + parent: 1 + - uid: 827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 1 + - uid: 828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 1 + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 1 + - uid: 830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - uid: 831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 1 + - uid: 832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 1 + - uid: 833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - uid: 834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 1 + - uid: 835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - uid: 836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - uid: 838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 + - uid: 839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 1 + - uid: 840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,10.5 + parent: 1 + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 1 + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,7.5 + parent: 1 + - uid: 844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 1 + - uid: 845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 1 + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,10.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 1 + - uid: 849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,7.5 + parent: 1 + - uid: 850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 1 + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 1 + - uid: 852 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,5.5 + parent: 1 + - uid: 853 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 1 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,6.5 + parent: 1 + - uid: 855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 1 + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 1 + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 1 + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 1 + - uid: 860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 1 + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-6.5 + parent: 1 + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-6.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 1 + - uid: 870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,4.5 + parent: 1 + - uid: 871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 1 + - uid: 872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 1 + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 1 + - uid: 874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 1 + - uid: 875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 1 + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,10.5 + parent: 1 + - uid: 877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,10.5 + parent: 1 + - uid: 878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.5 + parent: 1 + - uid: 879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,10.5 + parent: 1 + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,10.5 + parent: 1 + - uid: 881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + - uid: 883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + - uid: 884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 1 + - uid: 885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + - uid: 886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 1 + - uid: 887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 1 + - uid: 888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 1 + - uid: 889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 1 + - uid: 890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 1 + - uid: 891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 1 + - uid: 892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 1 + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 1 + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,16.5 + parent: 1 + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 1 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 1 + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 1 + - uid: 898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,13.5 + parent: 1 + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,14.5 + parent: 1 + - uid: 900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,15.5 + parent: 1 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 1 + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 1 + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,13.5 + parent: 1 + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,13.5 + parent: 1 + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,13.5 + parent: 1 + - uid: 906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - uid: 907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 1 + - uid: 908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-0.5 + parent: 1 + - uid: 909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-0.5 + parent: 1 + - uid: 910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 1 + - uid: 911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-6.5 + parent: 1 + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-4.5 + parent: 1 + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 1 + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 1 + - uid: 915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-1.5 + parent: 1 + - uid: 916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-5.5 + parent: 1 + - uid: 917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 1 + - uid: 918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 1 + - uid: 919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 1 + - uid: 920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 1 + - uid: 921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-4.5 + parent: 1 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 1 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-3.5 + parent: 1 + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-3.5 + parent: 1 + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-2.5 + parent: 1 + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 1 + - uid: 927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-1.5 + parent: 1 + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 1 + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-0.5 + parent: 1 + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 1 + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 1 + - uid: 932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,14.5 + parent: 1 + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,14.5 + parent: 1 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,14.5 + parent: 1 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,14.5 + parent: 1 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 1 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 1 + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 1 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,19.5 + parent: 1 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 1 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 1 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,19.5 + parent: 1 + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,19.5 + parent: 1 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,19.5 + parent: 1 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 1 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,19.5 + parent: 1 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 1 + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 1 + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 1 + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,18.5 + parent: 1 + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 1 + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 1 + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 1 + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 1 + - uid: 955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,14.5 + parent: 1 + - uid: 956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,13.5 + parent: 1 + - uid: 957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,2.5 + parent: 1 + - uid: 958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 1 + - uid: 959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 1 + - uid: 960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,2.5 + parent: 1 + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,10.5 + parent: 1 + - uid: 962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,10.5 + parent: 1 + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,10.5 + parent: 1 + - uid: 964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,10.5 + parent: 1 + - uid: 965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,10.5 + parent: 1 + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,9.5 + parent: 1 + - uid: 967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,3.5 + parent: 1 + - uid: 968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,9.5 + parent: 1 + - uid: 969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,9.5 + parent: 1 + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,9.5 + parent: 1 + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 1 + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,8.5 + parent: 1 + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,7.5 + parent: 1 + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,5.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 + parent: 1 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,3.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 1 + - uid: 978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 1 + - uid: 979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,3.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 1 + - uid: 981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,4.5 + parent: 1 + - uid: 982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,8.5 + parent: 1 + - uid: 983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,9.5 + parent: 1 + - uid: 984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 1 + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,5.5 + parent: 1 + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 1 + - uid: 987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 1 + - uid: 988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,6.5 + parent: 1 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,6.5 + parent: 1 + - uid: 990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 1 + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,5.5 + parent: 1 + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,9.5 + parent: 1 + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,2.5 + parent: 1 + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 1 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,1.5 + parent: 1 + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 1 + - uid: 997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,1.5 + parent: 1 + - uid: 998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 1 + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,3.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,4.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-1.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-1.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-1.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-1.5 + parent: 1 + - uid: 1006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-1.5 + parent: 1 + - uid: 1008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-1.5 + parent: 1 + - uid: 1009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-0.5 + parent: 1 + - uid: 1010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-0.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,14.5 + parent: 1 + - uid: 1012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,14.5 + parent: 1 + - uid: 1013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,14.5 + parent: 1 + - uid: 1014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,14.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,14.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,14.5 + parent: 1 + - uid: 1017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,14.5 + parent: 1 + - uid: 1018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,15.5 + parent: 1 + - uid: 1019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,16.5 + parent: 1 + - uid: 1020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,17.5 + parent: 1 + - uid: 1021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,17.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,17.5 + parent: 1 + - uid: 1023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,18.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,18.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,18.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,18.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,18.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,18.5 + parent: 1 + - uid: 1029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,12.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,14.5 + parent: 1 + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,14.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,12.5 + parent: 1 + - uid: 1036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 1 + - uid: 1037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,12.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,12.5 + parent: 1 + - uid: 1039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 1 + - uid: 1042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,2.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,3.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,4.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,4.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,5.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,10.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,8.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,7.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,13.5 + parent: 1 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,13.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,3.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 1 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,12.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,4.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: -14.5,9.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: -14.5,5.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 1 + - uid: 1065 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: -19.5,1.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,16.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,15.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -29.5,7.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: -29.5,5.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: -28.5,5.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: -29.5,11.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: -29.5,10.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,11.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,11.5 + parent: 1 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 1068 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 +- proto: WaterTankHighCapacity + entities: + - uid: 1072 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 1 +- proto: WeaponBaguette + entities: + - uid: 1088 + components: + - type: Transform + pos: -17.378122,4.641535 + parent: 1 +- proto: WeaponCroissant + entities: + - uid: 1091 + components: + - type: Transform + pos: -17.518747,4.735285 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: -17.315622,4.516535 + parent: 1 +- proto: WeaponLaserGun + entities: + - uid: 1089 + components: + - type: Transform + pos: -18.534372,4.25091 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: -18.534372,4.62591 + parent: 1 +- proto: WeaponPistolCobra + entities: + - uid: 1142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.717068,5.1477213 + parent: 1 +- proto: WeaponPistolViper + entities: + - uid: 1074 + components: + - type: Transform + pos: -14.025785,16.218596 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: -4.8091383,12.370543 + parent: 1 +- proto: WeaponRevolverPython + entities: + - uid: 1087 + components: + - type: Transform + pos: -18.456247,8.53216 + parent: 1 +- proto: WeaponShotgunBulldog + entities: + - uid: 1146 + components: + - type: Transform + pos: -23.107693,4.1633463 + parent: 1 +- proto: WeaponSniperMosin + entities: + - uid: 1141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.592068,5.4914713 + parent: 1 + - uid: 1255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.408657,8.277694 + parent: 1 + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.533657,11.152694 + parent: 1 +- proto: WeaponTurretSyndicate + entities: + - uid: 1076 + components: + - type: Transform + pos: -16.5,13.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: -20.5,1.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,7.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,12.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,4.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,29.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 1 + - uid: 1694 + components: + - type: Transform + pos: -35.5,3.5 + parent: 1 + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 1 + - uid: 1742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 1 + - uid: 1743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,22.5 + parent: 1 + - uid: 1744 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 + - uid: 1745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 1 + - uid: 1746 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 1 +- proto: WeaponTurretSyndicateDisposable + entities: + - uid: 1077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,0.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 1 +... diff --git a/Resources/Maps/Ruins/corvax_ussp_asteroid.yml b/Resources/Maps/Ruins/corvax_ussp_asteroid.yml new file mode 100644 index 00000000000..0dc76ef3e21 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_ussp_asteroid.yml @@ -0,0 +1,14544 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 7: FloorAsteroidSand + 1: FloorAsteroidTile + 2: FloorGrayConcreteMono + 113: FloorSteelDirty + 4: FloorTechMaint3 + 3: Plating +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: "" + - type: Transform + pos: 1.8041825,-0.32618448 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: cQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-1: + ind: 4,-1 + tiles: BwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,-2: + ind: 4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#5712128A' + id: dot + decals: + 201: 16.97999,-11.883357 + 202: 16.695269,-11.945857 + 203: 16.47999,-11.945857 + 204: 16.334158,-11.938912 + 205: 18.327213,-12.300024 + 206: 18.313324,-12.293079 + 207: 18.257769,-12.265302 + 208: 18.271658,-12.216691 + 209: 18.382769,-12.327802 + 210: 18.36888,-12.369469 + 211: 18.22999,-12.369469 + 212: 18.174435,-12.355579 + 213: 18.299435,-12.404191 + 214: 18.341103,-12.397246 + 215: 18.30638,-12.306969 + 216: 18.24388,-12.237524 + 217: 18.278603,-12.216691 + 218: 18.41749,-12.334746 + 219: 18.47999,-12.390302 + 220: 18.507769,-12.404191 + 221: 18.514713,-12.425024 + 222: 18.348047,-12.293079 + 223: 18.22999,-12.223635 + 224: 18.05638,-12.147246 + 225: 17.97999,-12.181969 + 226: 17.952213,-12.300024 + 227: 18.271658,-12.355579 + 228: 18.285547,-12.369469 + 229: 18.424435,-12.452802 + 230: 18.466103,-12.466691 + 231: 18.382769,-12.272246 + 232: 18.29249,-12.188912 + 233: 18.22999,-12.161135 + 234: 18.375824,-12.286135 + 235: 18.459158,-12.348635 + 236: 18.528603,-12.390302 + 237: 18.598047,-12.411135 + 238: 18.271658,-12.161135 + 239: 18.153603,-12.070857 + 240: 18.500824,-12.306969 + - node: + cleanable: True + angle: -0.4363323129985824 rad + color: '#5712128A' + id: line + decals: + 191: 12.612871,-10.092506 + 192: 12.972246,-9.701881 + - node: + cleanable: True + color: '#5712128A' + id: line + decals: + 184: 11.581621,-12.717506 + 185: 11.769121,-11.920631 + 186: 11.628496,-12.108131 + 187: 11.722246,-13.186256 + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#5712128A' + id: line + decals: + 196: 19.021921,-13.561256 + 197: 19.006296,-13.951881 + 198: 18.975046,-12.764381 + 199: 18.662546,-12.561256 + 200: 18.881296,-12.748756 + - node: + cleanable: True + angle: 0.4363323129985824 rad + color: '#5712128A' + id: line + decals: + 188: 12.190996,-14.764381 + 189: 12.065996,-14.764381 + 190: 12.190996,-14.326881 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#5712128A' + id: line + decals: + 193: 16.053171,-11.967506 + 194: 16.740671,-12.139381 + 195: 16.412546,-12.076881 + - node: + cleanable: True + color: '#5712128A' + id: splatter + decals: + 95: 19.97552,-15.266568 + 96: 19.866144,-15.094693 + 97: 19.69427,-15.016568 + 98: 19.616144,-14.954068 + 99: 19.35052,-14.797818 + 100: 19.303644,-14.782193 + 101: 19.116144,-14.579068 + 102: 19.053644,-14.110318 + 103: 19.334894,-14.313443 + 104: 19.522394,-14.672818 + 105: 19.75677,-14.844693 + 106: 19.88177,-15.079068 + 114: 12.491144,-15.563443 + 115: 12.928644,-15.532193 + 116: 12.991144,-15.422818 + 117: 12.413019,-15.188443 + 118: 12.616144,-15.672818 + 119: 12.647394,-15.829068 + 120: 12.538019,-15.204068 + 121: 11.975519,-14.329068 + 122: 11.834894,-13.969693 + 123: 11.725519,-13.719693 + 124: 11.553644,-13.360318 + 125: 12.444269,-10.844693 + 126: 12.194269,-10.860318 + 127: 12.084894,-10.954068 + 128: 11.959894,-11.282193 + 129: 11.850519,-11.500943 + 130: 12.147394,-11.094693 + 131: 12.413019,-10.313443 + 132: 18.959894,-13.110318 + 133: 18.522394,-12.563443 + 134: 18.22552,-12.235318 + 135: 17.928644,-12.219693 + 136: 17.897394,-12.219693 + 137: 17.78802,-12.250943 + 138: 17.31927,-12.250943 + 139: 16.834894,-12.204068 + 140: 17.897394,-12.235318 + 141: 17.31927,-12.172818 + 142: 17.19427,-12.172818 + 143: 17.772394,-12.141568 + 144: 17.584894,-11.829068 + 145: 18.053644,-11.891568 + 146: 15.897394,-11.875943 + 147: 15.819269,-11.688443 + 148: 15.506769,-11.547818 + 149: 15.241144,-11.407193 + 150: 13.100519,-8.360318 + 151: 13.100519,-8.407193 + 152: 13.194269,-8.797818 + 153: 13.116144,-9.141568 + 154: 11.569269,-13.641568 + 155: 11.506769,-13.235318 + 156: 11.881769,-14.188443 + 157: 15.006769,-12.391568 + 158: 15.194269,-12.375943 + 159: 15.491144,-12.032193 + 160: 15.709894,-11.985318 + 161: 14.881769,-12.282193 + 162: 15.006769,-12.688443 + 163: 14.991144,-12.766568 + 164: 13.038019,-15.672818 + 165: 12.522394,-15.860318 + 166: 12.178644,-15.954068 + 167: 12.288019,-16.063442 + 168: 12.897394,-16.157192 + 169: 13.538019,-16.329067 + 170: 13.413019,-15.672818 + 171: 13.538019,-15.547818 + 172: 13.647394,-15.532193 + 173: 12.959894,-15.907193 + 174: 12.897394,-15.657193 + 175: 12.897394,-15.657193 + 176: 19.491144,-15.563443 + 177: 19.897394,-15.563443 + 178: 20.303644,-15.579068 + 179: 20.41302,-15.250943 + 180: 20.25677,-15.000943 + 181: 19.491144,-15.250943 + 182: 19.678644,-15.313443 + 183: 19.85052,-15.344693 + - node: + cleanable: True + angle: 0.3490658503988659 rad + color: '#571212FF' + id: splatter + decals: + 241: 12.952198,-16.105064 + 242: 12.584143,-16.167564 + 243: 13.264698,-15.931455 + 244: 13.424421,-15.771732 + 245: 19.52165,-15.285621 + 246: 20.185156,-15.36201 + 247: 19.84488,-15.466177 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,1: + 0: 30513 + -1,0: + 0: 50246 + -1,1: + 0: 35020 + 0,2: + 0: 206 + 1,2: + 0: 3313 + 2,2: + 0: 4352 + 2,3: + 0: 15 + 3,3: + 0: 50723 + 3,0: + 0: 110 + 3,2: + 0: 8192 + 3,-1: + 0: 17479 + 4,0: + 0: 3 + 4,3: + 0: 61440 + 1,-4: + 0: 2184 + 1,-3: + 0: 8 + 2,-4: + 0: 35771 + 2,-3: + 0: 15247 + 3,-4: + 0: 65535 + 3,-3: + 0: 4095 + 3,-2: + 0: 12287 + 3,-5: + 0: 12286 + 4,-4: + 0: 7645 + 4,-3: + 0: 52511 + 4,-1: + 0: 57344 + 5,0: + 0: 15 + 5,3: + 0: 4096 + 5,-1: + 0: 12288 + 5,4: + 0: 15 + 6,0: + 0: 241 + 6,4: + 0: 7 + 6,3: + 0: 60416 + 7,0: + 0: 12248 + 7,3: + 0: 65424 + 7,-1: + 0: 34952 + 8,0: + 0: 4972 + 8,1: + 0: 199 + 8,3: + 0: 254 + 4,-2: + 0: 238 + 5,-4: + 0: 819 + 5,-3: + 0: 30465 + 5,-2: + 0: 119 + 7,-3: + 0: 19584 + 7,-2: + 0: 51396 + 8,-3: + 0: 23 + 8,-2: + 0: 1992 + 4,-5: + 0: 272 + 6,-8: + 0: 34952 + 6,-7: + 0: 136 + 6,-9: + 0: 36044 + 7,-8: + 0: 4369 + 7,-7: + 0: 25395 + 7,-9: + 0: 4368 + 7,-6: + 0: 36044 + 8,-6: + 0: 4352 + 8,-5: + 0: 28467 + 8,2: + 0: 32768 + 9,0: + 0: 3 + 9,1: + 0: 33040 + 9,2: + 0: 65256 + 9,3: + 0: 31 + 10,1: + 0: 64640 + 10,2: + 0: 16383 + 11,0: + 0: 63488 + 11,1: + 0: 65535 + 11,2: + 0: 63 + 12,0: + 0: 65472 + 12,1: + 0: 13183 + 8,-4: + 0: 51406 + 9,-4: + 0: 62256 + 9,-2: + 0: 17 + 9,-5: + 0: 52224 + 9,-3: + 0: 136 + 10,-4: + 0: 4096 + 10,-3: + 0: 61713 + 10,-5: + 0: 8191 + 10,-2: + 0: 8 + 11,-2: + 0: 1 + -2,-2: + 0: 2176 + -1,-2: + 0: 4352 + -1,-1: + 0: 25393 + 10,-6: + 0: 65228 + 11,-6: + 0: 13311 + 11,-5: + 0: 307 + 11,-7: + 0: 64512 + 12,-7: + 0: 4915 + 12,-6: + 0: 1 + 13,0: + 0: 6143 + 13,1: + 0: 1 + 13,-1: + 0: 64652 + 13,-2: + 0: 34816 + 14,-2: + 0: 32728 + 14,-1: + 0: 279 + 15,-3: + 0: 65228 + 15,-2: + 0: 887 + 15,-4: + 0: 52352 + 16,-4: + 0: 4403 + 16,-3: + 0: 1 + 12,-8: + 0: 30436 + 12,-9: + 0: 52352 + 14,-8: + 0: 34952 + 14,-7: + 0: 136 + 14,-9: + 0: 35020 + 15,-8: + 0: 29491 + 15,-7: + 0: 52471 + 15,-9: + 0: 12560 + 16,-6: + 0: 3 + 16,-5: + 0: 1 + 13,-9: + 0: 19 + 13,-10: + 0: 16352 + 14,-10: + 0: 53104 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - uid: 270 + components: + - type: MetaData + name: solution - beaker + - type: Transform + parent: 269 + - type: Solution + solution: + maxVol: 200 + name: beaker + reagents: + - data: [] + ReagentId: Carbon + Quantity: 200 + - type: ContainedSolution + containerName: beaker + container: 269 + - uid: 272 + components: + - type: MetaData + name: solution - beaker + - type: Transform + parent: 271 + - type: Solution + solution: + maxVol: 200 + name: beaker + reagents: + - data: [] + ReagentId: Potassium + Quantity: 200 + - type: ContainedSolution + containerName: beaker + container: 271 + - uid: 274 + components: + - type: MetaData + name: solution - beaker + - type: Transform + parent: 273 + - type: Solution + solution: + maxVol: 200 + name: beaker + reagents: + - data: [] + ReagentId: Sulfur + Quantity: 200 + - type: ContainedSolution + containerName: beaker + container: 273 + - uid: 2567 + components: + - type: MetaData + name: solution - bucket + - type: Transform + parent: 2566 + - type: Solution + solution: + maxVol: 250 + name: bucket + reagents: + - data: [] + ReagentId: WeldingFuel + Quantity: 50 + - type: ContainedSolution + containerName: bucket + container: 2566 +- proto: ActionToggleLight + entities: + - uid: 347 + components: + - type: Transform + parent: 346 + - type: InstantAction + container: 346 + - uid: 349 + components: + - type: Transform + parent: 348 + - type: InstantAction + container: 348 + - uid: 354 + components: + - type: Transform + parent: 353 + - type: InstantAction + container: 353 + - uid: 356 + components: + - type: Transform + parent: 355 + - type: InstantAction + container: 355 +- proto: AirlockHatch + entities: + - uid: 134 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 +- proto: Ash + entities: + - uid: 265 + components: + - type: Transform + pos: 15.350088,-15.135598 + parent: 2 + - uid: 266 + components: + - type: Transform + pos: 15.334463,-15.291848 + parent: 2 +- proto: AsteroidRockArtifactFragment + entities: + - uid: 1384 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 +- proto: AsteroidRockBananium + entities: + - uid: 873 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 +- proto: AsteroidRockCoal + entities: + - uid: 420 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 2 + - uid: 429 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 + - uid: 430 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 25.5,-23.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 27.5,-17.5 + parent: 2 + - uid: 716 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 2028 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 2029 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 2034 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 2035 + components: + - type: Transform + pos: 20.5,-33.5 + parent: 2 + - uid: 2036 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: 19.5,-34.5 + parent: 2 + - uid: 2039 + components: + - type: Transform + pos: 18.5,-34.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 2 + - uid: 2096 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 2 + - uid: 2099 + components: + - type: Transform + pos: 13.5,-36.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 10.5,-34.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: 9.5,-33.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 2286 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 2 + - uid: 2300 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 2316 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 +- proto: AsteroidRockDiamond + entities: + - uid: 494 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 +- proto: AsteroidRockGold + entities: + - uid: 655 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 2422 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 2449 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 +- proto: AsteroidRockMining + entities: + - uid: 3 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 74 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 78 + components: + - type: Transform + pos: 42.5,-6.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 19.5,1.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: 10.5,-29.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 8.5,-2.5 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 + - uid: 380 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 381 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - uid: 382 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 2 + - uid: 389 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 391 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 392 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 2 + - uid: 393 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 394 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 412 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 + - uid: 416 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 419 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 2 + - uid: 423 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 424 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 425 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 428 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 431 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 2 + - uid: 432 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 2 + - uid: 444 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 2 + - uid: 445 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 451 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 2 + - uid: 452 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 453 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 455 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 + - uid: 456 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 2 + - uid: 459 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 2 + - uid: 461 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 + - uid: 463 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 + - uid: 469 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 473 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 476 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 477 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 8.5,-26.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 9.5,-23.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 10.5,-30.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 11.5,-22.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 18.5,-26.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 2 + - uid: 682 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 20.5,-29.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 21.5,-22.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 717 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 49.5,-21.5 + parent: 2 + - uid: 719 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 725 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 726 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: 22.5,-22.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 23.5,-22.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 24.5,-22.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: 24.5,-25.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: 25.5,-17.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: 25.5,-18.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 25.5,-20.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 25.5,-22.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 25.5,-25.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 26.5,-17.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 26.5,-18.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 26.5,-23.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 26.5,-25.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 25.5,-13.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: 27.5,-18.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: 30.5,-13.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: 31.5,-13.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 846 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: 24.5,-8.5 + parent: 2 + - uid: 849 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: 24.5,-6.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 + - uid: 852 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 855 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 859 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 860 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 + - uid: 863 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 870 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 877 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: 28.5,-4.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 29.5,-6.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 27.5,-20.5 + parent: 2 + - uid: 896 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: 27.5,-22.5 + parent: 2 + - uid: 903 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 904 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 905 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 27.5,-23.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 922 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 923 + components: + - type: Transform + pos: 33.5,-7.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: 4.5,-26.5 + parent: 2 + - uid: 926 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 927 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 931 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 932 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 933 + components: + - type: Transform + pos: 4.5,-27.5 + parent: 2 + - uid: 935 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 936 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 938 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 940 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 941 + components: + - type: Transform + pos: 4.5,-24.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 4.5,-23.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 944 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 948 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 949 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 951 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 952 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 953 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 956 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: 40.5,0.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 39.5,-2.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 39.5,-1.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: 39.5,0.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 996 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: 37.5,3.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 36.5,3.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 37.5,5.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 1037 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 1038 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 + - uid: 1039 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 1043 + components: + - type: Transform + pos: 42.5,5.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 1045 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 1046 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 1047 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 1048 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 1051 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 1052 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 1053 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 1054 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 1055 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 1057 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 1058 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 1060 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 1065 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 1071 + components: + - type: Transform + pos: 23.5,-28.5 + parent: 2 + - uid: 1072 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 1074 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: 29.5,1.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 1083 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 1102 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 1107 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 1118 + components: + - type: Transform + pos: 13.5,2.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 19.5,-2.5 + parent: 2 + - uid: 1122 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 1123 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 1128 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + pos: 16.5,1.5 + parent: 2 + - uid: 1136 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 17.5,1.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 1147 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 1149 + components: + - type: Transform + pos: 18.5,1.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 1151 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 1152 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 19.5,2.5 + parent: 2 + - uid: 1155 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 19.5,6.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 1186 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 23.5,-0.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 1196 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 1202 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 1206 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 1208 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 1209 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - uid: 1210 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 19.5,-4.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 23.5,1.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 39.5,-6.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 1228 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + pos: 14.5,2.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 22.5,2.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: 24.5,2.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: 29.5,6.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 28.5,6.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 6.5,-24.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 33.5,7.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 28.5,7.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 2.5,0.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 2.5,1.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: 4.5,0.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 4.5,1.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 4.5,4.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: 7.5,0.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 8.5,0.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 22.5,9.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 23.5,10.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 28.5,11.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 46.5,-8.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 1617 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 1619 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 1620 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 1621 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 1622 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 1625 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 1627 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 1628 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 1629 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 47.5,-9.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 44.5,-0.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + pos: 44.5,-1.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 44.5,-2.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: 44.5,-3.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 1643 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 1644 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + pos: 45.5,1.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: 45.5,0.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: 45.5,-0.5 + parent: 2 + - uid: 1652 + components: + - type: Transform + pos: 45.5,-1.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: 46.5,-1.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 48.5,-11.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 49.5,-11.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 45.5,-16.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 46.5,-11.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + pos: 47.5,-3.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + pos: 47.5,-4.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + pos: 47.5,-6.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: 64.5,-17.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 47.5,-12.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 47.5,-14.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 47.5,-15.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 1712 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 48.5,-1.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 48.5,-4.5 + parent: 2 + - uid: 1717 + components: + - type: Transform + pos: 48.5,-5.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 48.5,-6.5 + parent: 2 + - uid: 1719 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 1726 + components: + - type: Transform + pos: 62.5,-19.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 48.5,-15.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 48.5,-16.5 + parent: 2 + - uid: 1729 + components: + - type: Transform + pos: 48.5,-17.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 49.5,0.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 1733 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 49.5,-8.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 51.5,-15.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 49.5,-16.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + pos: 50.5,0.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + pos: 50.5,-1.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: 50.5,-2.5 + parent: 2 + - uid: 1755 + components: + - type: Transform + pos: 50.5,-3.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: 50.5,-4.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + pos: 50.5,-5.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + pos: 50.5,-7.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 50.5,-8.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + pos: 50.5,-9.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + pos: 52.5,-15.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 1771 + components: + - type: Transform + pos: 51.5,0.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 1774 + components: + - type: Transform + pos: 51.5,-2.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + pos: 51.5,-3.5 + parent: 2 + - uid: 1777 + components: + - type: Transform + pos: 51.5,-5.5 + parent: 2 + - uid: 1778 + components: + - type: Transform + pos: 51.5,-6.5 + parent: 2 + - uid: 1779 + components: + - type: Transform + pos: 51.5,-7.5 + parent: 2 + - uid: 1781 + components: + - type: Transform + pos: 51.5,-9.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 1783 + components: + - type: Transform + pos: 51.5,-11.5 + parent: 2 + - uid: 1784 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 1790 + components: + - type: Transform + pos: 50.5,-18.5 + parent: 2 + - uid: 1791 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 1792 + components: + - type: Transform + pos: 50.5,-20.5 + parent: 2 + - uid: 1793 + components: + - type: Transform + pos: 50.5,-21.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + pos: 50.5,-22.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: 50.5,-24.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + pos: 50.5,-25.5 + parent: 2 + - uid: 1798 + components: + - type: Transform + pos: 50.5,-26.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 50.5,-27.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: 51.5,-18.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: 51.5,-19.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + pos: 51.5,-21.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + pos: 51.5,-22.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 51.5,-26.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: 52.5,-1.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: 52.5,-2.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + pos: 52.5,-3.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: 52.5,-4.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + pos: 52.5,-5.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: 52.5,-6.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + pos: 52.5,-7.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: 52.5,-8.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: 52.5,-9.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: 52.5,-11.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: 52.5,-14.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: 52.5,-23.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: 52.5,-25.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: 52.5,-26.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 53.5,-1.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + pos: 53.5,-2.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + pos: 53.5,-3.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + pos: 53.5,-4.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: 53.5,-5.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + pos: 53.5,-6.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: 53.5,-7.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: 53.5,-8.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + pos: 53.5,-9.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: 53.5,-10.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 53.5,-11.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: 54.5,-17.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 54.5,-20.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: 53.5,-24.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: 53.5,-25.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: 53.5,-26.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: 54.5,-4.5 + parent: 2 + - uid: 1868 + components: + - type: Transform + pos: 54.5,-5.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + pos: 54.5,-6.5 + parent: 2 + - uid: 1870 + components: + - type: Transform + pos: 54.5,-7.5 + parent: 2 + - uid: 1871 + components: + - type: Transform + pos: 54.5,-8.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + pos: 54.5,-9.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + pos: 54.5,-14.5 + parent: 2 + - uid: 1878 + components: + - type: Transform + pos: 54.5,-15.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: 62.5,-17.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + pos: 62.5,-16.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + pos: 62.5,-21.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + pos: 62.5,-22.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + pos: 62.5,-20.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: 54.5,-27.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 55.5,-7.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: 55.5,-8.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 55.5,-9.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 55.5,-14.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 55.5,-15.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 55.5,-16.5 + parent: 2 + - uid: 1901 + components: + - type: Transform + pos: 55.5,-17.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 55.5,-18.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 62.5,-14.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 52.5,-31.5 + parent: 2 + - uid: 1905 + components: + - type: Transform + pos: 52.5,-32.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: 55.5,-24.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: 56.5,-7.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + pos: 56.5,-8.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + pos: 56.5,-9.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: 56.5,-11.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: 56.5,-15.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + pos: 56.5,-16.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: 56.5,-17.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + pos: 56.5,-18.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 56.5,-22.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + pos: 56.5,-23.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 + - uid: 1928 + components: + - type: Transform + pos: 56.5,-25.5 + parent: 2 + - uid: 1929 + components: + - type: Transform + pos: 57.5,-7.5 + parent: 2 + - uid: 1930 + components: + - type: Transform + pos: 57.5,-8.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + pos: 57.5,-11.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + pos: 57.5,-14.5 + parent: 2 + - uid: 1937 + components: + - type: Transform + pos: 57.5,-15.5 + parent: 2 + - uid: 1938 + components: + - type: Transform + pos: 57.5,-16.5 + parent: 2 + - uid: 1939 + components: + - type: Transform + pos: 57.5,-17.5 + parent: 2 + - uid: 1940 + components: + - type: Transform + pos: 57.5,-18.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + pos: 57.5,-19.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + pos: 57.5,-20.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 57.5,-21.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: 57.5,-22.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + pos: 57.5,-23.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + pos: 57.5,-24.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: 57.5,-25.5 + parent: 2 + - uid: 1948 + components: + - type: Transform + pos: 58.5,-7.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + pos: 58.5,-8.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + pos: 58.5,-9.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + pos: 58.5,-10.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: 58.5,-11.5 + parent: 2 + - uid: 1953 + components: + - type: Transform + pos: 58.5,-12.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + pos: 58.5,-13.5 + parent: 2 + - uid: 1955 + components: + - type: Transform + pos: 58.5,-14.5 + parent: 2 + - uid: 1956 + components: + - type: Transform + pos: 58.5,-15.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: 58.5,-16.5 + parent: 2 + - uid: 1958 + components: + - type: Transform + pos: 58.5,-17.5 + parent: 2 + - uid: 1959 + components: + - type: Transform + pos: 58.5,-18.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 58.5,-20.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: 58.5,-21.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: 58.5,-22.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: 58.5,-23.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: 58.5,-24.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + pos: 59.5,-8.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: 59.5,-9.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 59.5,-11.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + pos: 59.5,-13.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: 59.5,-14.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 59.5,-15.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: 59.5,-16.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: 59.5,-17.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 59.5,-18.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: 59.5,-19.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: 59.5,-20.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + pos: 59.5,-21.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: 59.5,-22.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + pos: 59.5,-23.5 + parent: 2 + - uid: 1984 + components: + - type: Transform + pos: 59.5,-24.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: 59.5,-25.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: 60.5,-9.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + pos: 60.5,-11.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - uid: 1992 + components: + - type: Transform + pos: 60.5,-13.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: 60.5,-14.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: 60.5,-15.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: 60.5,-16.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: 60.5,-17.5 + parent: 2 + - uid: 1997 + components: + - type: Transform + pos: 60.5,-18.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: 60.5,-19.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + pos: 60.5,-20.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: 60.5,-21.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: 60.5,-22.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: 60.5,-23.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: 60.5,-24.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: 60.5,-25.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: 61.5,-10.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 61.5,-11.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: 61.5,-13.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - uid: 2023 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: 52.5,-30.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + pos: 53.5,-29.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 53.5,-30.5 + parent: 2 + - uid: 2033 + components: + - type: Transform + pos: 53.5,-31.5 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: 54.5,-29.5 + parent: 2 + - uid: 2040 + components: + - type: Transform + pos: 54.5,-32.5 + parent: 2 + - uid: 2041 + components: + - type: Transform + pos: 54.5,-33.5 + parent: 2 + - uid: 2043 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - uid: 2045 + components: + - type: Transform + pos: 55.5,-29.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: 55.5,-31.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: 55.5,-33.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 2051 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - uid: 2053 + components: + - type: Transform + pos: 56.5,-29.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - uid: 2055 + components: + - type: Transform + pos: 56.5,-31.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: 56.5,-32.5 + parent: 2 + - uid: 2057 + components: + - type: Transform + pos: 56.5,-33.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: 57.5,-26.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: 57.5,-27.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 2 + - uid: 2061 + components: + - type: Transform + pos: 57.5,-29.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 57.5,-31.5 + parent: 2 + - uid: 2064 + components: + - type: Transform + pos: 57.5,-32.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: 57.5,-33.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 2067 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 2069 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 58.5,-31.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: 58.5,-32.5 + parent: 2 + - uid: 2073 + components: + - type: Transform + pos: 58.5,-33.5 + parent: 2 + - uid: 2074 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 2 + - uid: 2075 + components: + - type: Transform + pos: 54.5,-35.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: 54.5,-36.5 + parent: 2 + - uid: 2077 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - uid: 2078 + components: + - type: Transform + pos: 55.5,-35.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: 55.5,-36.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: 56.5,-34.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: 56.5,-35.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: 56.5,-36.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: 57.5,-34.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 57.5,-35.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 57.5,-36.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 49.5,-19.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: 49.5,-20.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: 49.5,-18.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 48.5,-21.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: 48.5,-20.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: 48.5,-19.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 47.5,-21.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: 47.5,-20.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: 44.5,-16.5 + parent: 2 + - uid: 2102 + components: + - type: Transform + pos: 44.5,-15.5 + parent: 2 + - uid: 2103 + components: + - type: Transform + pos: 44.5,-14.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 44.5,-12.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 2107 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 2109 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 43.5,-11.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: 42.5,-11.5 + parent: 2 + - uid: 2119 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: 41.5,-12.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 2125 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 2126 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 2129 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 2136 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 2137 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 2139 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 2140 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: 25.5,-33.5 + parent: 2 + - uid: 2142 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 2144 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 24.5,-33.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 2151 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 2153 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 2154 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 2156 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 2157 + components: + - type: Transform + pos: 23.5,-33.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 2159 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 2160 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 2162 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: 22.5,-33.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: 22.5,-31.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: 21.5,-33.5 + parent: 2 + - uid: 2172 + components: + - type: Transform + pos: 21.5,-31.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + pos: 20.5,-34.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + pos: 19.5,-33.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 18.5,-33.5 + parent: 2 + - uid: 2185 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 2187 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 2190 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 2192 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: 20.5,-37.5 + parent: 2 + - uid: 2194 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 + - uid: 2196 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + pos: 18.5,-37.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: 18.5,-36.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: 17.5,-37.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + pos: 17.5,-36.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 17.5,-34.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 16.5,-36.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 2226 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 10.5,-36.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 10.5,-33.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 9.5,-36.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 9.5,-34.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 2243 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 8.5,-35.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 8.5,-34.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 8.5,-33.5 + parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 2249 + components: + - type: Transform + pos: 8.5,-31.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 2251 + components: + - type: Transform + pos: 7.5,-35.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 7.5,-34.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: 7.5,-33.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 2256 + components: + - type: Transform + pos: 7.5,-30.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 6.5,-35.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 6.5,-34.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: 6.5,-33.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 6.5,-30.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: 5.5,-30.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 4.5,-34.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 2284 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 2285 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 2293 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 2304 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 + - uid: 2323 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 2324 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 2325 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 2326 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 2328 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 2329 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 2332 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 2333 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 2334 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 2340 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 2341 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 2342 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 2343 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + pos: 0.5,0.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + pos: 0.5,1.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + pos: -0.5,1.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + pos: 5.5,6.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 2437 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 2440 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 2443 + components: + - type: Transform + pos: 10.5,11.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 2446 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 64.5,-18.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 64.5,-20.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 18.5,13.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 2458 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 2459 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 22.5,14.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 + - uid: 2462 + components: + - type: Transform + pos: 24.5,14.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + pos: 33.5,9.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 33.5,10.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 2471 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + pos: 64.5,-21.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 2486 + components: + - type: Transform + pos: 63.5,-18.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + pos: 62.5,-18.5 + parent: 2 + - uid: 2489 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 2490 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 2493 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 2495 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + pos: 2.5,-34.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + pos: 6.5,-36.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + pos: 7.5,-36.5 + parent: 2 + - uid: 2504 + components: + - type: Transform + pos: 8.5,-36.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + pos: 8.5,-37.5 + parent: 2 + - uid: 2506 + components: + - type: Transform + pos: 8.5,-38.5 + parent: 2 + - uid: 2507 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 2508 + components: + - type: Transform + pos: 9.5,-38.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 2512 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 2 + - uid: 2513 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 65.5,-19.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 65.5,-18.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: 65.5,-17.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: 65.5,-16.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: 63.5,-15.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 62.5,-15.5 + parent: 2 + - uid: 2523 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 64.5,-16.5 + parent: 2 + - uid: 2525 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 + - uid: 2526 + components: + - type: Transform + pos: 63.5,-21.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + pos: 65.5,-22.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 65.5,-20.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 64.5,-22.5 + parent: 2 + - uid: 2532 + components: + - type: Transform + pos: 65.5,-21.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: 63.5,-20.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + pos: 62.5,-23.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + pos: 48.5,-22.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 49.5,-22.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: 49.5,-23.5 + parent: 2 + - uid: 2538 + components: + - type: Transform + pos: 49.5,-24.5 + parent: 2 + - uid: 2539 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 2 + - uid: 2540 + components: + - type: Transform + pos: 51.5,-29.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 51.5,-31.5 + parent: 2 +- proto: AsteroidRockQuartz + entities: + - uid: 528 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 7.5,-22.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 7.5,-23.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: 7.5,-24.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 11.5,-27.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 934 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 19.5,5.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 20.5,4.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 1174 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 18.5,7.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: 52.5,-18.5 + parent: 2 + - uid: 1768 + components: + - type: Transform + pos: 52.5,-19.5 + parent: 2 + - uid: 1770 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 1776 + components: + - type: Transform + pos: 52.5,-21.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: 53.5,-22.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: 53.5,-23.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: 54.5,-23.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 54.5,-25.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: 54.5,-26.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: 55.5,-19.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + pos: 55.5,-20.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + pos: 55.5,-22.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: 55.5,-23.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: 55.5,-25.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + pos: 56.5,-21.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 55.5,-26.5 + parent: 2 +- proto: AsteroidRockSalt + entities: + - uid: 527 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 9.5,-25.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 +- proto: AsteroidRockSilver + entities: + - uid: 537 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 5.5,3.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 +- proto: AsteroidRockTin + entities: + - uid: 1062 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 1156 + components: + - type: Transform + pos: 21.5,7.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: 21.5,11.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 22.5,12.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: 46.5,-9.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 1630 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 1631 + components: + - type: Transform + pos: 47.5,-8.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 47.5,-11.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + pos: 47.5,-16.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 48.5,-9.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 48.5,-14.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 49.5,-9.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + pos: 49.5,-14.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 49.5,-15.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: 50.5,-16.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 51.5,-4.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 51.5,-8.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 51.5,-14.5 + parent: 2 + - uid: 1747 + components: + - type: Transform + pos: 51.5,-16.5 + parent: 2 + - uid: 1750 + components: + - type: Transform + pos: 51.5,-17.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 52.5,-17.5 + parent: 2 + - uid: 1780 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 1785 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 1786 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 2 + - uid: 1787 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 53.5,-17.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: 53.5,-18.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + pos: 53.5,-19.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: 53.5,-21.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: 57.5,-6.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: 55.5,-6.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: 54.5,-11.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: 54.5,-18.5 + parent: 2 + - uid: 1851 + components: + - type: Transform + pos: 54.5,-19.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 54.5,-21.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 54.5,-22.5 + parent: 2 + - uid: 1866 + components: + - type: Transform + pos: 55.5,-21.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 58.5,-19.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 53.5,-32.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 53.5,-33.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + pos: 54.5,-31.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + pos: 55.5,-32.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + pos: 48.5,-18.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 47.5,-18.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - uid: 2327 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 2360 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 53.5,-34.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 1560 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 2 +- proto: BaseUplinkRadio + entities: + - uid: 1591 + components: + - type: MetaData + desc: Радиостанция, используемая для прослушивания различных частот. + - type: Transform + pos: 14.510969,-19.373701 + parent: 2 + missingComponents: + - ActivatableUI + - Contraband +- proto: Beaker + entities: + - uid: 263 + components: + - type: Transform + pos: 15.911615,-15.339215 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: 16.23974,-15.19859 + parent: 2 +- proto: BookPetr + entities: + - uid: 1601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.496054,-11.503673 + parent: 2 +- proto: BookUSSP + entities: + - uid: 145 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.639095,-15.452372 + parent: 2 +- proto: Bucket + entities: + - uid: 2566 + components: + - type: Transform + pos: 13.196016,-18.063358 + parent: 2 + - type: SolutionContainerManager + solutions: null + containers: + - bucket + - type: ContainerContainer + containers: + solution@bucket: !type:ContainerSlot + ent: 2567 +- proto: CableApcExtension + entities: + - uid: 21 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 40 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 90 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 92 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 93 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - uid: 111 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 112 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 2556 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 2563 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 276 + components: + - type: Transform + pos: 14.57781,-12.755797 + parent: 2 +- proto: CartridgeLightRifle + entities: + - uid: 20 + components: + - type: Transform + pos: 12.180164,-10.445873 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 180 + components: + - type: Transform + pos: 13.243027,-9.960977 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 181 + components: + - type: Transform + pos: 11.836414,-11.883373 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 182 + components: + - type: Transform + pos: 13.783884,-9.698249 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 184 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 185 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 186 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 187 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 188 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 189 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 190 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 191 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 192 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 193 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 194 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 195 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 196 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 197 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 198 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 199 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 200 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 201 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 202 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 203 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 204 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 205 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 206 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 207 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 208 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 209 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 210 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 211 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 212 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 213 + components: + - type: Transform + parent: 183 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 216 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 217 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 218 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 219 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 220 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 221 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 222 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 223 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 224 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 225 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 226 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 227 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 228 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 229 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 230 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 231 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 232 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 233 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 234 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 235 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 236 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 237 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 238 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 239 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 240 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 241 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 242 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 243 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 244 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 245 + components: + - type: Transform + parent: 215 + - type: CartridgeAmmo + spent: True + - type: Physics + canCollide: False + - uid: 246 + components: + - type: Transform + pos: 12.539539,-9.570873 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 247 + components: + - type: Transform + pos: 12.742664,-10.180248 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 248 + components: + - type: Transform + pos: 12.336414,-10.852123 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 249 + components: + - type: Transform + pos: 12.51129,-13.974972 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 250 + components: + - type: Transform + pos: 11.086414,-11.539623 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 251 + components: + - type: Transform + pos: 11.477039,-12.586498 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 252 + components: + - type: Transform + pos: 12.2617,-13.365557 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 253 + components: + - type: Transform + pos: 12.617664,-10.414623 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 254 + components: + - type: Transform + pos: 13.655968,-9.31034 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 255 + components: + - type: Transform + pos: 13.640343,-7.6567326 + parent: 2 + - type: CartridgeAmmo + spent: True + - uid: 256 + components: + - type: Transform + pos: 13.218468,-7.0942326 + parent: 2 + - type: CartridgeAmmo + spent: True +- proto: Catwalk + entities: + - uid: 53 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-18.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 +- proto: Cautery + entities: + - uid: 1555 + components: + - type: Transform + pos: 18.579432,-14.539792 + parent: 2 +- proto: ChairFolding + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.53861,-11.941237 + parent: 2 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.53861,-13.050612 + parent: 2 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.429235,-12.878737 + parent: 2 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.397985,-11.769362 + parent: 2 + - uid: 19 + components: + - type: Transform + pos: 15.97611,-14.488112 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 14.041351,-18.517628 + parent: 2 + - uid: 2451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.92901,-31.215471 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 68 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 +- proto: CigaretteSpent + entities: + - uid: 1582 + components: + - type: Transform + pos: 8.98,-9.621418 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 8.589375,-9.277668 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: 8.76125,-9.230793 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 8.839375,-9.730793 + parent: 2 +- proto: CigPackMixedMedical + entities: + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.3073287,-11.262043 + parent: 2 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 1544 + components: + - type: Transform + pos: 7.425899,-15.712741 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 1545 + components: + - type: Transform + pos: 9.643692,-14.603366 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 11.7837105,-9.341056 + parent: 2 +- proto: ClothingHeadHelmetAncient + entities: + - uid: 159 + components: + - type: Transform + parent: 158 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 1557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.768984,-14.557326 + parent: 2 +- proto: ClothingMaskNeckGaiterRed + entities: + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.987041,-15.539799 + parent: 2 +- proto: ClothingNeckHeadphones + entities: + - uid: 1594 + components: + - type: Transform + pos: 13.917219,-19.545576 + parent: 2 +- proto: ClothingNeckUSSPPin + entities: + - uid: 340 + components: + - type: MetaData + name: коммунистический значок + - type: Transform + pos: 13.945847,-12.35463 + parent: 2 + - uid: 343 + components: + - type: MetaData + name: коммунистический значок + - type: Transform + pos: 13.820847,-12.651505 + parent: 2 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 160 + components: + - type: Transform + parent: 158 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 163 + components: + - type: Transform + parent: 162 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorRed + entities: + - uid: 1553 + components: + - type: Transform + pos: 11.377094,-9.419181 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 11.3462105,-9.309806 + parent: 2 +- proto: ClothingShoesBootsSyndieFilled + entities: + - uid: 1589 + components: + - type: Transform + pos: 11.968241,-9.744035 + parent: 2 +- proto: CombatKnife + entities: + - uid: 1596 + components: + - type: Transform + pos: 14.086298,-11.383705 + parent: 2 +- proto: CrateBodyBags + entities: + - uid: 341 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 +- proto: CrateChemistrySecure + entities: + - uid: 268 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 273 + - 271 + - 269 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFoodMRE + entities: + - uid: 1324 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 333 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CratePermaEscapeDigging + entities: + - uid: 342 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 +- proto: CratePermaEscapeMats + entities: + - uid: 338 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 +- proto: CratePermaEscapeMerc + entities: + - uid: 332 + components: + - type: Transform + pos: 22.5,-8.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 339 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateSurgery + entities: + - uid: 119 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateTrashCartFilled + entities: + - uid: 1546 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: DrinkFlaskOld + entities: + - uid: 1529 + components: + - type: Transform + pos: 14.023659,-13.258705 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 2558 + components: + - type: Transform + pos: 15.925644,-9.206433 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 14.331894,-12.003308 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 14.271681,-9.137273 + parent: 2 +- proto: DrinkVacuumFlask + entities: + - uid: 1533 + components: + - type: Transform + pos: 14.995939,-9.412158 + parent: 2 +- proto: ExGrenade + entities: + - uid: 1547 + components: + - type: Transform + pos: 20.68465,-8.377126 + parent: 2 +- proto: FireBomb + entities: + - uid: 280 + components: + - type: Transform + pos: 13.501698,-12.045075 + parent: 2 +- proto: FireBombEmpty + entities: + - uid: 279 + components: + - type: Transform + pos: 13.423573,-12.5607 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 353 + components: + - type: Transform + pos: 20.683987,-9.314275 + parent: 2 + - type: HandheldLight + toggleActionEntity: 354 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 354 + - type: ActionsContainer + - uid: 355 + components: + - type: Transform + pos: 20.621487,-9.533025 + parent: 2 + - type: HandheldLight + toggleActionEntity: 356 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 356 + - type: ActionsContainer +- proto: Floodlight + entities: + - uid: 1526 + components: + - type: Transform + pos: 18.310715,-8.602652 + parent: 2 +- proto: FloodlightBroken + entities: + - uid: 1527 + components: + - type: Transform + pos: 18.713684,-8.406491 + parent: 2 +- proto: FloorDesertChasm + entities: + - uid: 1573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 +- proto: FoodBadRecipe + entities: + - uid: 1568 + components: + - type: MetaData + desc: Кто-то промахнулся + name: месиво + - type: Transform + pos: 8.9397335,-8.408732 + parent: 2 +- proto: FoodBreadMoldySlice + entities: + - uid: 259 + components: + - type: Transform + pos: 14.506056,-9.481023 + parent: 2 +- proto: FoodPelmeniBowl + entities: + - uid: 165 + components: + - type: Transform + pos: 14.570673,-11.571205 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 177 + components: + - type: Transform + pos: 14.579069,-9.253816 + parent: 2 +- proto: FoodSoupBeetRed + entities: + - uid: 257 + components: + - type: Transform + pos: 13.455791,-13.071049 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 1559 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1564 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 1579 + components: + - type: Transform + pos: 18.78504,-6.530959 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 11.311937,-12.797186 + parent: 2 +- proto: FoodTinMRE + entities: + - uid: 1562 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: FoodTinPeaches + entities: + - uid: 1558 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 +- proto: FoodTinPeachesTrash + entities: + - uid: 1581 + components: + - type: Transform + pos: 8.464375,-9.637043 + parent: 2 +- proto: GasCanisterBrokenBase + entities: + - uid: 337 + components: + - type: Transform + pos: 18.5,-9.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 2 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 +- proto: GasPipeBend + entities: + - uid: 291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 2 + - uid: 301 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-18.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 311 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 +- proto: GasPipeStraight + entities: + - uid: 292 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-11.5 + parent: 2 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 + parent: 2 + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - uid: 300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 303 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 304 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 305 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 +- proto: GasPipeTJunction + entities: + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 +- proto: GasPort + entities: + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 +- proto: GasPressurePump + entities: + - uid: 306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-19.5 + parent: 2 +- proto: GasValve + entities: + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 2 +- proto: GeigerCounter + entities: + - uid: 1599 + components: + - type: Transform + pos: 20.293362,-9.376775 + parent: 2 +- proto: GlowstickRed + entities: + - uid: 1592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.138252,-12.691173 + parent: 2 +- proto: GrenadeDummy + entities: + - uid: 1548 + components: + - type: Transform + pos: 20.325275,-8.330251 + parent: 2 +- proto: Igniter + entities: + - uid: 281 + components: + - type: Transform + pos: 13.954823,-11.920075 + parent: 2 +- proto: JugCarbon + entities: + - uid: 269 + components: + - type: MetaData + name: кувшин (углерод) + - type: Transform + parent: 268 + - type: Label + currentLabel: углерод + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: NameModifier + baseName: кувшин + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 270 + - type: InsideEntityStorage +- proto: JugPotassium + entities: + - uid: 271 + components: + - type: MetaData + name: кувшин (калий) + - type: Transform + parent: 268 + - type: Label + currentLabel: калий + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: NameModifier + baseName: кувшин + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 272 + - type: InsideEntityStorage +- proto: JugSulfur + entities: + - uid: 273 + components: + - type: MetaData + name: кувшин (сера) + - type: Transform + parent: 268 + - type: Label + currentLabel: сера + - type: SolutionContainerManager + solutions: null + containers: + - beaker + - type: Physics + canCollide: False + - type: NameModifier + baseName: кувшин + - type: ContainerContainer + containers: + solution@beaker: !type:ContainerSlot + ent: 274 + - type: InsideEntityStorage +- proto: KitchenMicrowave + entities: + - uid: 67 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 287 + components: + - type: Transform + pos: 9.418539,-9.64055 + parent: 2 +- proto: Lantern + entities: + - uid: 346 + components: + - type: Transform + pos: 12.635735,-5.392745 + parent: 2 + - type: HandheldLight + toggleActionEntity: 347 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 347 + - type: ActionsContainer + - uid: 348 + components: + - type: Transform + pos: 12.40136,-5.25212 + parent: 2 + - type: HandheldLight + toggleActionEntity: 349 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 349 + - type: ActionsContainer +- proto: LootSpawnerContrabandHigh + entities: + - uid: 1528 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 +- proto: LootSpawnerIndustrial + entities: + - uid: 137 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 56 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 +- proto: MagazineLightRifleEmpty + entities: + - uid: 183 + components: + - type: Transform + pos: 11.547438,-14.408712 + parent: 2 + - type: BallisticAmmoProvider + entities: + - 191 + - 193 + - 188 + - 187 + - 190 + - 189 + - 185 + - 186 + - 195 + - 192 + - 204 + - 198 + - 205 + - 197 + - 184 + - 211 + - 213 + - 202 + - 200 + - 196 + - 194 + - 199 + - 212 + - 201 + - 203 + - 207 + - 210 + - 209 + - 206 + - 208 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 191 + - 193 + - 188 + - 187 + - 190 + - 189 + - 185 + - 186 + - 195 + - 192 + - 204 + - 198 + - 205 + - 197 + - 184 + - 211 + - 213 + - 202 + - 200 + - 196 + - 194 + - 199 + - 212 + - 201 + - 203 + - 207 + - 210 + - 209 + - 206 + - 208 + - uid: 215 + components: + - type: Transform + parent: 214 + - type: BallisticAmmoProvider + entities: + - 223 + - 225 + - 220 + - 219 + - 222 + - 221 + - 217 + - 218 + - 227 + - 224 + - 236 + - 230 + - 237 + - 229 + - 216 + - 243 + - 245 + - 234 + - 232 + - 228 + - 226 + - 231 + - 244 + - 233 + - 235 + - 239 + - 242 + - 241 + - 238 + - 240 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 223 + - 225 + - 220 + - 219 + - 222 + - 221 + - 217 + - 218 + - 227 + - 224 + - 236 + - 230 + - 237 + - 229 + - 216 + - 243 + - 245 + - 234 + - 232 + - 228 + - 226 + - 231 + - 244 + - 233 + - 235 + - 239 + - 242 + - 241 + - 238 + - 240 + - type: Physics + canCollide: False +- proto: MaterialGunpowder + entities: + - uid: 275 + components: + - type: Transform + pos: 14.600088,-12.838723 + parent: 2 + - type: Stack + count: 6 +- proto: Mattress + entities: + - uid: 283 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 2 +- proto: MetalDoor + entities: + - uid: 36 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 80 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - type: Door + secondsUntilStateChange: -14372.478 + state: Opening + - uid: 151 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 +- proto: OperatingTable + entities: + - uid: 110 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 312 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 +- proto: Paper + entities: + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.490713,-15.588723 + parent: 2 +- proto: PaperRolling1 + entities: + - uid: 1542 + components: + - type: MetaData + desc: Тонкий лист бумаги, используемый для вытирания ж... + name: использованная бумага + - type: Transform + pos: 9.1870365,-9.252482 + parent: 2 + missingComponents: + - Stack + - uid: 1567 + components: + - type: MetaData + desc: Тонкий лист бумаги, используемый для вытирания ж... + name: использованная бумага + - type: Transform + pos: 9.8276615,-9.080607 + parent: 2 + missingComponents: + - Stack +- proto: PaperScrap + entities: + - uid: 1569 + components: + - type: Transform + pos: 8.26189,-8.267529 + parent: 2 + - uid: 1570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.294298,-8.489751 + parent: 2 +- proto: PinionAirlock + entities: + - uid: 144 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 +- proto: PipeBombGunpowder + entities: + - uid: 261 + components: + - type: Transform + pos: 14.700752,-12.284923 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 317 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 +- proto: PosterContrabandCommunistState + entities: + - uid: 149 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 147 + components: + - type: Transform + pos: 10.5,-14.5 + parent: 2 +- proto: PosterContrabandRevolt + entities: + - uid: 176 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 +- proto: PosterContrabandRise + entities: + - uid: 1602 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 61 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 2452 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 351 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 2 +- proto: PrintedDocumentApplicationAccess + entities: + - uid: 1572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.2495365,-9.361857 + parent: 2 +- proto: PrintedDocumentApplicationEmployment + entities: + - uid: 1571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.2495365,-9.611857 + parent: 2 +- proto: Rack + entities: + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - uid: 352 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 357 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 1588 + components: + - type: Transform + pos: 13.292219,-19.342451 + parent: 2 +- proto: RadioHandheldSecurity + entities: + - uid: 1593 + components: + - type: Transform + pos: 13.464094,-19.295576 + parent: 2 +- proto: Railing + entities: + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 2 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-14.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 2545 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 2543 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 + parent: 2 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 334 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 +- proto: SalvageSpawnerMobShark + entities: + - uid: 1530 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 1598 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 2 +- proto: Scalpel + entities: + - uid: 1556 + components: + - type: Transform + pos: 18.490345,-13.510451 + parent: 2 +- proto: ScrapCanister2 + entities: + - uid: 1595 + components: + - type: Transform + pos: 14.486942,-17.14741 + parent: 2 +- proto: ScrapGlass + entities: + - uid: 1474 + components: + - type: Transform + pos: 14.998474,-18.59147 + parent: 2 +- proto: ScrapIntercom + entities: + - uid: 262 + components: + - type: Transform + pos: 13.407143,-18.746077 + parent: 2 +- proto: ScrapMedkit + entities: + - uid: 1597 + components: + - type: Transform + pos: 21.469643,-14.574202 + parent: 2 +- proto: Screwdriver + entities: + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.566343,-13.440286 + parent: 2 +- proto: SinkEmpty + entities: + - uid: 289 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 327 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 +- proto: SpawnMobCarp + entities: + - uid: 1531 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 +- proto: SpeedLoaderLightRifle + entities: + - uid: 282 + components: + - type: Transform + pos: 11.439198,-15.4982 + parent: 2 +- proto: Spoon + entities: + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.414423,-13.46183 + parent: 2 +- proto: StorageCanister + entities: + - uid: 316 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 157 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 158 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 159 + - 160 + - uid: 161 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 162 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 163 +- proto: SyndicateWhistle + entities: + - uid: 1550 + components: + - type: Transform + parent: 1549 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Table + entities: + - uid: 5 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 14.5,-11.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 344 + components: + - type: Transform + pos: 15.361559,-11.243308 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 1587 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 150 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 7 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 13 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 24 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 2 + - uid: 27 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 32 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 + - uid: 38 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-18.5 + parent: 2 + - uid: 41 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 45 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 48 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 50 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 2 + - uid: 52 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-16.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-16.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-4.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-4.5 + parent: 2 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-2.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-5.5 + parent: 2 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 99 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 109 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 113 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 121 + components: + - type: Transform + pos: 20.5,-12.5 + parent: 2 + - uid: 122 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 22.5,-10.5 + parent: 2 + - uid: 124 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 128 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 129 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 166 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 2 + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 12.5,-19.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 +- proto: WardrobeBlack + entities: + - uid: 1549 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1550 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeBlackFilled + entities: + - uid: 156 + components: + - type: Transform + pos: 11.5,-10.5 + parent: 2 +- proto: WaterTankFull + entities: + - uid: 336 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 +- proto: WeaponRifleAk + entities: + - uid: 214 + components: + - type: Transform + pos: 13.4532795,-15.1989975 + parent: 2 + - type: Gun + lastFire: 6664.9600019 + currentAngle: 0.01745329251994332 rad + - type: ChamberMagazineAmmoProvider + boltClosed: True + - type: ContainerContainer + containers: + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: 215 + gun_chamber: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WeaponSniperMosin + entities: + - uid: 26 + components: + - type: Transform + pos: 11.438841,-15.480729 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 335 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 +... diff --git a/Resources/Maps/Ruins/corvax_ussp_debris.yml b/Resources/Maps/Ruins/corvax_ussp_debris.yml new file mode 100644 index 00000000000..14bdbe13740 --- /dev/null +++ b/Resources/Maps/Ruins/corvax_ussp_debris.yml @@ -0,0 +1,3153 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 60: FloorGrayConcreteOutsideMono + 74: FloorMetalDiamond + 113: FloorSteelDirty + 121: FloorTechMaint + 122: FloorTechMaint2 + 129: FloorWhiteMini + 156: Lattice + 157: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: "" + - type: Transform + pos: -3.4398937,-0.5 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: cQAAAAAAcQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASgAAAAAAeQAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAegAAAAAAegAAAAAAcQAAAAAAeQAAAAAASgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAcQAAAAAAcQAAAAAAeQAAAAAAcQAAAAAAegAAAAAAeQAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAnQAAAAAAnQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAnQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAeQAAAAAAegAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAcQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAcQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: 0.5585053606381855 rad + color: '#000000B2' + id: Damaged + decals: + 421: 6.1630964,1.8726134 + 422: 5.4598656,2.4976134 + 423: 5.1082506,3.3765197 + 424: 4.229212,3.552301 + 425: 3.6236525,5.036676 + 426: 3.350174,5.192926 + 427: 2.5297375,4.9390197 + 428: 3.7408571,3.4937072 + 429: 4.6784983,2.4780822 + 430: 4.951977,1.8335509 + 431: 3.2720366,4.7827697 + 432: 3.4478445,4.1382384 + - node: + color: '#FFFFFF99' + id: Dirt + decals: + 433: 4.6784983,2.0288634 + 434: 4.248746,2.6538634 + 435: 3.6431866,3.1226134 + 436: 3.4869127,3.3374572 + 437: 3.1939,3.864801 + 438: 2.7250795,4.587457 + 439: 2.432067,5.1733947 + 440: 2.0218487,5.192926 + 441: 2.4711351,4.489801 + 442: 3.1157637,4.1382384 + 443: 3.3892422,3.7280822 + 444: 3.5064468,3.552301 + 445: 4.0338697,2.7515197 + 446: 4.5222244,2.2046447 + 447: 3.7799253,1.9507384 + 448: 3.701789,2.2827697 + 449: 3.369708,2.7515197 + 450: 3.1157637,3.2202697 + 451: 2.6860113,3.8062072 + 452: 2.275793,4.6265197 + 453: 1.8851099,5.0952697 + 454: 0.81073,4.9194884 + 455: 0.96700287,4.021051 + 456: 2.1585884,3.5913634 + 457: 3.0571613,2.9468322 + 458: 3.1939,2.6343322 + 459: 2.1195202,4.3140197 + 460: 0.5958538,5.0952697 + 461: 0.3419094,4.333551 + 462: 0.08796501,3.1812072 + 463: 0.12703323,2.5757384 + 464: 0.009827614,2.2437072 + 465: 0.38097763,2.3608947 + 466: 0.92793465,3.396051 + 467: 1.4358234,4.118707 + 468: -0.029240608,2.927301 + 469: -0.6934037,1.9702697 + 470: -0.6934037,3.396051 + 471: -0.6152663,4.2944884 + 472: -0.08784294,4.509332 + 473: 1.0060711,5.056207 + 474: 1.709302,5.5640197 + 475: 2.8422852,4.899957 + 476: 2.7836819,3.3569884 + 477: 3.7799253,2.8687072 + 478: 3.1352978,4.4507384 + 479: 2.2367249,5.4858947 + 480: 2.1585884,4.6265197 + 481: 3.0571613,3.8452697 + 482: 4.229212,2.8101134 + 483: 4.795703,2.1655822 + 484: 4.971511,2.3608947 + 485: 4.5612936,3.0249572 + 486: 4.1510754,3.474176 + 487: 4.0143356,3.8257384 + 488: 3.8775969,4.3921447 + 489: 3.8189945,4.6851134 + 490: 3.545515,5.212457 + 491: 3.1352978,5.427301 + 492: 4.248746,4.899957 + 493: 4.444088,4.3140197 + 494: 4.463622,4.099176 + 495: 4.483156,4.040582 + 496: 4.5612936,3.942926 + 497: 4.776169,3.708551 + 498: 5.342661,3.2202697 + 499: 5.4403315,3.0249572 + 500: 5.752878,2.6343322 + 501: 6.1435623,2.1851134 + 502: 6.3193703,1.8726134 + 503: 6.2021646,1.7944884 + 504: 5.6161394,1.7554259 + 505: 4.834772,1.7163634 + 506: 4.63943,1.6773009 + 507: 4.112007,1.6382384 + 508: 3.897131,1.6187072 + 509: 3.545515,1.5991759 + 510: 3.2915707,1.5796447 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 103: 5.4992747,-3.3777366 + 104: 4.5095425,-2.8308616 + 105: 5.8248453,-2.2970076 + 106: 5.9160037,-1.2292992 + 107: 6.189483,-0.226695 + 108: 5.772754,0.3722633 + 112: 5.4081154,-0.083465815 + 113: 4.626748,-0.044403315 + 114: 3.871426,-1.0079451 + 115: 2.9598305,-1.2032576 + 116: 4.17095,-0.4480492 + 117: 4.49652,0.4894508 + 118: 3.1291268,-0.057424188 + 119: 2.9245906,-0.7735699 + 120: 2.9227805,-1.6980492 + 121: 2.4116518,-1.1381533 + 122: 3.5990534,-0.3959658 + 123: 2.5832758,0.17695081 + 124: 1.9451594,-0.3308617 + 125: 1.971205,-1.3985701 + 126: 1.476339,-1.8022158 + 127: -0.12546444,-1.9975283 + 128: 1.8670225,-1.8542992 + 129: 1.9842277,-1.2944033 + 130: 0.57776666,-0.6824242 + 131: 1.3200655,0.13788831 + 132: 1.1507692,0.9712218 + 133: 0.4475386,0.8149717 + 134: -0.11244106,-1.3204451 + 135: 0.42149305,-0.083465815 + 137: -0.9956753,-1.5548201 + 138: -1.2777529,-1.3725283 + 140: -1.7595963,-1.6069033 + 141: -2.1633024,-2.17982 + 142: -2.1112118,-2.505341 + 143: -2.4888725,-1.8330288 + 144: -2.5279408,-2.684546 + 145: -2.7493286,-2.814754 + 146: -2.6060777,-1.9753587 + 147: -2.2674851,-1.8191087 + 148: -2.684214,-0.23056704 + 149: -2.3846898,0.22516215 + 150: -2.8535104,0.12099552 + 151: -2.2284164,0.5871551 + 152: -2.9186249,0.31468678 + 153: -1.9679608,-1.3014615 + 154: -2.3586445,0.20895517 + 155: -1.8247099,0.9902053 + 156: -2.0460973,1.393851 + 157: -2.684214,2.253226 + 158: -2.2284164,2.3443718 + 159: -1.6423912,2.7089553 + 160: -2.5930548,3.2037468 + 161: -2.2544622,3.7636428 + 162: -1.9288926,4.2063513 + 163: -2.9316473,3.6334343 + 164: -1.2386847,3.6073928 + 165: -2.3586445,2.8261428 + 166: -2.8665333,2.8391635 + 167: -1.1605477,-0.16864899 + 168: -1.2429857,-0.72854483 + 169: -0.0453825,-1.6269825 + 170: 5.026601,-2.8400204 + 171: 5.065669,-3.816583 + 172: 4.375461,-3.191583 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 183: 1.2146158,1.8995287 + 184: 0.18581533,2.3812995 + 185: 2.0741198,2.6156745 + 186: 0.78486395,4.230258 + 187: 1.7745962,3.2536955 + 188: 1.6693838,1.695097 + 189: 1.9193892,1.976193 + 190: 0.26549482,2.5100472 + 191: 1.3854551,3.2652557 + 192: 0.5910647,4.515256 + 193: 1.8933439,4.2939014 + 194: -0.2944851,4.1376514 + 195: 1.1901133,3.0569222 + 196: 2.9742353,4.411089 + 198: 1.8542757,3.3433807 + 199: 4.081173,2.8095264 + 200: 3.117486,3.864214 + 202: 4.055127,3.1350472 + 203: 3.0914404,3.0699432 + 206: 2.3882098,3.2001514 + 207: 2.1407766,4.1376514 + 208: 0.7343154,4.58036 + 209: 0.018062115,3.0439014 + 210: 0.7864065,2.132443 + 211: 3.664443,1.976193 + 215: 1.7370703,5.439735 + 216: 1.124999,4.3850474 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 40: 6,-1 + 41: 4,0 + 42: 4,-1 + 43: 3,-1 + 44: 2,0 + 45: 1,0 + 46: -2,0 + 47: -2,-2 + 48: -2,-1 + 49: -2,1 + 50: -3,3 + 51: -3,3 + 52: -2,0 + 53: -2,-2 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 54: -1,-2 + 55: -2,-2 + 56: -2,-1 + 57: -3,3 + 58: 1,0 + 59: 4,0 + 60: 1,-1 + 61: 1,-1 + 62: 2,-1 + 63: 0,1 + 64: 1,1 + 65: 0,-1 + 66: 2,-1 + 68: 2,0 + 69: -2,0 + 70: 0,0 + 71: -3,3 + 72: -2,-1 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 73: -3,1 + 74: 1,0 + 75: 2,-1 + 76: 3,-2 + 77: 3,-1 + 79: 1,-1 + 80: 1,1 + 81: 2,0 + 82: 4,0 + 83: 4,0 + 85: 3,-1 + 86: 3,0 + 87: 4,0 + 88: 6,-1 + 89: 4,-1 + 90: 6,-2 + 91: 1,-2 + 92: -3,1 + 93: -3,0 + 94: -2,2 + 95: -2,4 + 96: -2,2 + 97: -2,-1 + 98: -3,-2 + 99: 0,-1 + 100: 3,0 + 102: 5,0 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineN + decals: + 174: 1,1 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 176: 5,-4 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: dot + decals: + 348: 1.4724668,2.1237316 + 349: 0.7171447,1.31644 + 350: 1.1729425,1.00394 + 351: 0.86039543,0.7956066 + 352: 0.95155525,0.457065 + 353: 0.6259856,0.20966911 + 354: 0.54784846,0.07946074 + 355: 0.05298233,-0.18095589 + 356: -0.4809518,-0.18095589 + 357: -1.340456,0.13154411 + 358: -1.4446383,0.24873161 + 359: -1.7050943,0.4961275 + 360: -2.0046186,0.769565 + 361: -2.108801,0.925815 + 362: -2.108801,0.9518566 + 363: 1.7198997,1.9674816 + 364: 1.4073526,1.8893566 + 365: 1.251079,2.240919 + 366: 1.3943298,2.2278984 + 367: 1.0427145,2.332065 + 368: 1.0817827,2.4362316 + 369: 0.7952819,3.0091484 + 370: 1.3422388,2.8919609 + 371: 1.6678085,3.0091484 + 372: 1.7850139,3.50394 + 373: 2.566381,2.56644 + 374: 1.4724668,3.0742526 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: line + decals: + 320: -1.8092766,0.5612316 + - node: + angle: 1.3089969389957472 rad + color: '#7A0000B2' + id: line + decals: + 319: -1.40557,0.20966911 + - node: + angle: 1.6231562043547265 rad + color: '#7A0000B2' + id: line + decals: + 318: -0.7414074,-0.011685014 + - node: + angle: 1.9722220547535925 rad + color: '#7A0000B2' + id: line + decals: + 316: -0.09026837,0.04039824 + - node: + cleanable: True + angle: 2.1467549799530254 rad + color: '#7A0000B2' + id: line + decals: + 311: 1.4594442,1.9935234 + - node: + angle: 2.303834612632515 rad + color: '#7A0000B2' + id: line + decals: + 315: 0.33948398,0.13154411 + - node: + cleanable: True + angle: 2.443460952792061 rad + color: '#7A0000B2' + id: line + decals: + 312: 0.9385326,1.4336275 + - node: + angle: 2.6878070480712677 rad + color: '#7A0000B2' + id: line + decals: + 314: 0.6259856,0.4310233 + - node: + cleanable: True + angle: 3.01941960595019 rad + color: '#7A0000B2' + id: line + decals: + 313: 0.7692363,0.7956066 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: smallbrush + decals: + 321: 1.6938541,2.5013359 + 322: 1.5375805,2.7617526 + 323: 2.27988,2.5403984 + 324: 1.8631504,1.9674816 + 325: 1.9803557,1.8502941 + 326: 2.019424,2.5794609 + 327: 2.0715148,2.5924816 + 328: 2.006401,2.162794 + 329: 1.7719913,3.0482109 + 330: 2.3580165,2.4492526 + 331: 2.331971,2.0325859 + - node: + cleanable: True + color: '#323232B9' + id: splatter + decals: + 264: 3.8988538,5.5439014 + 265: 4.3806973,5.3876514 + 266: 4.5499935,5.192339 + 267: 4.445811,4.645464 + 268: 4.3806973,4.2157764 + 269: 4.445811,3.812131 + 270: 4.6411524,3.4475472 + 271: 4.8104486,3.4996307 + 272: 5.2922926,3.4215057 + 273: 5.5397253,3.2522347 + 274: 5.5527477,2.9657764 + 275: 5.826227,2.4840055 + 276: 5.9825,2.1845264 + 277: 6.607594,1.7808805 + 278: 6.659685,1.6116097 + 279: 6.750845,1.585568 + 280: 6.464343,1.6246305 + 281: 6.190865,1.5725472 + 282: 5.8001814,1.5334847 + 283: 5.109973,1.5595264 + 284: 4.6411524,1.5465055 + 285: 3.5732837,1.7157764 + 286: 5.8913403,1.7027555 + 287: 5.5397253,2.054318 + 288: 5.565771,2.7183805 + 289: 5.2271786,3.2782764 + 290: 4.341628,3.8251514 + 291: 4.185355,4.6064014 + 292: 3.8467627,5.5569224 + 293: 4.0030355,4.6845264 + 294: 4.029082,3.9032764 + 295: 4.2765145,3.5647345 + 296: 4.563016,3.2522347 + 297: 5.1229963,3.004839 + 298: 5.201133,2.679318 + 299: 5.3574057,2.2756722 + 300: 5.5006566,1.7678597 + 301: 5.396475,2.4058805 + 302: 4.432788,3.838172 + 303: 4.055127,4.7105684 + 304: 3.6253748,5.426714 + 305: 4.029082,5.0100474 + 306: 4.1332636,5.4006724 + 307: 3.664443,5.296506 + 308: 3.1565542,5.5439014 + 309: 3.6904893,5.0100474 + 310: 3.8597856,4.593381 + - node: + cleanable: True + color: '#323232FF' + id: splatter + decals: + 261: 5.6178617,3.082964 + - node: + color: '#515151C8' + id: splatter + decals: + 177: 2.2437177,1.5868068 + - node: + color: '#5B7A35BA' + id: splatter + decals: + 178: 3.5735812,-1.5379314 + 179: 3.4954443,-1.9545982 + 180: 3.5084667,-1.498869 + 181: 0.6088066,0.121494114 + 182: 0.73903465,0.29076493 + - node: + angle: 0.5585053606381855 rad + color: '#7A0000B2' + id: splatter + decals: + 332: 2.006401,2.2799816 + 333: 2.0845382,2.7357109 + 334: 1.8110595,2.8919609 + 335: 2.1105838,2.8398776 + 336: 2.0845382,2.2669609 + 337: 1.7068768,2.6185234 + 338: 1.563626,2.25394 + 339: 1.3161933,1.8242526 + 340: 1.1338743,1.5247734 + 341: 0.8473728,1.0169609 + 342: 0.6259856,0.4961275 + 343: 0.24832416,0.07946074 + 344: -0.16840482,0.066439986 + 345: -1.1190691,0.17060661 + 346: -1.7832308,0.69144 + 347: -0.78047633,0.07946074 + 375: 1.381307,2.41019 + 376: 1.7589684,1.9935234 + 377: 1.4594442,2.319044 + 378: 1.4854896,1.8633151 + 379: 1.1599199,1.6159191 + 380: 0.95155525,1.2122734 + 381: 0.7952819,0.769565 + 382: 0.41762114,0.300815 + 383: -0.16840482,0.18362749 + 384: -1.4316158,0.3138358 + 385: -1.692071,0.6002941 + 386: -1.952528,0.84769 + 387: -2.082756,0.89977336 + 388: -2.1608925,0.9909191 + 389: -2.0436869,1.238315 + 390: -1.7962542,1.3424816 + 391: -1.7962542,1.0169609 + 392: -1.8483448,0.9648775 + 393: -2.1348467,1.1341484 + 394: -2.1999607,1.2773775 + 395: -1.9264822,1.3815441 + 396: -1.7311392,1.082065 + 397: -1.822299,0.9648775 + 398: -2.147869,0.925815 + 399: -2.1869373,0.925815 + 400: -2.2520514,1.00394 + 401: -2.3822794,1.16019 + 402: -2.499485,1.2513359 + 403: -2.5385532,1.3294609 + 404: -2.5776215,1.4466484 + 405: -2.499485,1.6289401 + 406: -2.434371,1.7851901 + 407: -2.2129831,1.9544609 + 408: -1.9134588,1.9674816 + 409: -1.6790485,1.7982109 + 410: -1.6139345,1.4857109 + 411: -1.6139345,1.4466484 + 412: -1.887413,1.8242526 + 413: -2.173915,1.7331066 + 414: -2.2520514,1.5898776 + 415: -2.4083252,1.31644 + 416: -2.434371,1.0950859 + 417: -2.4083252,0.89977336 + 418: -2.1869373,0.8086275 + 419: -1.692071,1.394565 + 420: -1.8483448,1.6549816 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65327 + 0,-1: + 0: 65280 + 1: 2 + -1,0: + 0: 26222 + 0,1: + 0: 239 + 1: 12288 + 0,2: + 1: 15 + -1,2: + 1: 15 + 1,0: + 0: 14087 + 1: 34816 + 1,1: + 0: 17 + 1: 13448 + 1,2: + 1: 15 + 1,-1: + 0: 29218 + 1: 8 + 2,0: + 1: 12834 + 2,2: + 1: 1 + 2,1: + 1: 12834 + 2,-1: + 1: 12835 + 0,-2: + 1: 28928 + -1,-2: + 1: 12032 + 1,-2: + 1: 28672 + -2,-2: + 1: 27648 + -2,-1: + 1: 8738 + -2,0: + 1: 8750 + -1,-1: + 0: 18016 + -2,1: + 1: 25314 + -2,2: + 1: 12 + -1,1: + 0: 6 + 1: 8704 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirCanister + entities: + - uid: 2 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 +- proto: APCElectronics + entities: + - uid: 7 + components: + - type: Transform + pos: 4.5032835,2.7000911 + parent: 1 +- proto: Ash + entities: + - uid: 8 + components: + - type: Transform + pos: 2.6361296,2.3076563 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 4.669772,-0.611199 + parent: 1 + - uid: 10 + components: + - type: Transform + pos: 2.452991,-0.723173 + parent: 1 + - uid: 11 + components: + - type: Transform + pos: -2.6389203,1.6466186 + parent: 1 + - uid: 12 + components: + - type: Transform + pos: -2.3545895,1.8158895 + parent: 1 +- proto: AsteroidRockMining + entities: + - uid: 13 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: 7.5,4.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 +- proto: BarricadeBlock + entities: + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: BarricadeDirectional + entities: + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 +- proto: Bed + entities: + - uid: 31 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: BedsheetBlack + entities: + - uid: 32 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 +- proto: Blunt + entities: + - uid: 33 + components: + - type: Transform + pos: 1.6800191,-1.5044086 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: 1.7776897,-1.3481586 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 35 + components: + - type: Transform + rot: 4.642575810304916 rad + pos: 1.330194,0.82198584 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 1.2042771838760873 rad + pos: 3.893465,-0.7341547 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 37 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 42 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 +- proto: CableMV + entities: + - uid: 63 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 71 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: ChairOfficeDark + entities: + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.7449977,5.0093203 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.401647,4.8791122 + parent: 1 +- proto: CheapLighter + entities: + - uid: 84 + components: + - type: Transform + rot: 24.20771672516135 rad + pos: 1.1932144,-1.4721935 + parent: 1 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 85 + components: + - type: Transform + pos: 5.9402523,2.5925646 + parent: 1 +- proto: ChemistryEmptyBottle02 + entities: + - uid: 86 + components: + - type: Transform + pos: 1.9616665,5.8537683 + parent: 1 +- proto: ChemistryEmptyBottle04 + entities: + - uid: 87 + components: + - type: Transform + pos: 6.087844,2.8095784 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 88 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 89 + components: + - type: Transform + pos: 2.1183896,-0.80812955 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: 5.3100595,0.26119685 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -1.9545794,0.76700485 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.827167,2.069479 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5776408,0.40862203 + parent: 1 +- proto: CigarSpent + entities: + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.805426,2.099323 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 2.6621752,2.255573 + parent: 1 +- proto: ClothingBeltBandolier + entities: + - uid: 96 + components: + - type: Transform + pos: -2.7488399,1.670884 + parent: 1 + - type: BallisticAmmoProvider + entities: + - 97 + - 98 + - 99 + - 100 + - 101 + - 102 + - 103 + - 104 + - 105 + - 106 + - 107 + - 108 + - 109 + - 110 + - type: ContainerContainer + containers: + ballistic-ammo: !type:Container + showEnts: False + occludes: True + ents: + - 97 + - 98 + - 99 + - 100 + - 101 + - 102 + - 103 + - 104 + - 105 + - 106 + - 107 + - 108 + - 109 + - 110 +- proto: ClothingHeadHatCowboyBrown + entities: + - uid: 112 + components: + - type: MetaData + name: коричневая шляпа Дик Маленна + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingNeckHorrific + entities: + - uid: 113 + components: + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatLabOpened + entities: + - uid: 117 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False + - uid: 118 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False +- proto: ClothingOuterDiscoAssBlazer + entities: + - uid: 114 + components: + - type: MetaData + name: стильный диско-блейзер ягера + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingShoesBootsWork + entities: + - uid: 119 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False + - uid: 120 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 115 + components: + - type: Transform + parent: 111 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitOperative + entities: + - uid: 121 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False + - uid: 122 + components: + - type: Transform + parent: 116 + - type: Physics + canCollide: False +- proto: CrateFreezer + entities: + - uid: 123 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 +- proto: Crowbar + entities: + - uid: 124 + components: + - type: Transform + pos: -1.5839062,-1.6197791 + parent: 1 +- proto: DiagnosisReportPaper + entities: + - uid: 125 + components: + - type: Transform + rot: 22.56710722828668 rad + pos: 3.548812,3.3231666 + parent: 1 + - uid: 126 + components: + - type: Transform + rot: 1631455.2100413744 rad + pos: 4.4734297,4.104417 + parent: 1 + - uid: 127 + components: + - type: Transform + rot: 60907.732291227236 rad + pos: 1.8167803,4.247646 + parent: 1 +- proto: Dresser + entities: + - uid: 116 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - type: Storage + storedItems: + 121: + position: 0,0 + _rotation: South + 122: + position: 2,0 + _rotation: South + 120: + position: 2,2 + _rotation: South + 119: + position: 0,2 + _rotation: South + 117: + position: 4,0 + _rotation: South + 118: + position: 4,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 121 + - 122 + - 119 + - 118 + - 117 + - 120 +- proto: DrinkBeerBottleFull + entities: + - uid: 129 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False + - uid: 130 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False +- proto: DrinkBeerCan + entities: + - uid: 131 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False + - uid: 132 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False +- proto: DrinkBottleWhiskey + entities: + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4452057,4.8175335 + parent: 1 +- proto: DrinkTequilaBottleFull + entities: + - uid: 133 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 134 + components: + - type: Transform + parent: 128 + - type: Physics + canCollide: False + - uid: 135 + components: + - type: Transform + parent: 128 + - type: Sealable + sealed: False + - type: Openable + opened: True + - type: Physics + canCollide: False +- proto: ExtinguisherCabinetOpen + entities: + - uid: 137 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: FireAxeCabinetOpen + entities: + - uid: 138 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 +- proto: FireBombEmpty + entities: + - uid: 139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5409765,2.5624886 + parent: 1 +- proto: FirelockElectronics + entities: + - uid: 140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.4708157,2.4782007 + parent: 1 +- proto: FloraGreyStalagmite2 + entities: + - uid: 141 + components: + - type: Transform + pos: 4.053198,3.8774834 + parent: 1 +- proto: FloraGreyStalagmite6 + entities: + - uid: 142 + components: + - type: Transform + pos: 5.69407,3.2134209 + parent: 1 +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 143 + components: + - type: Transform + pos: 3.4866977,2.7990737 + parent: 1 +- proto: GasCanisterBrokenBase + entities: + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 145 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - type: GasPressurePump + targetPressure: 4500 +- proto: Gauze1 + entities: + - uid: 148 + components: + - type: Transform + pos: -2.6687942,2.1933446 + parent: 1 +- proto: GenericTank + entities: + - uid: 149 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 +- proto: Grille + entities: + - uid: 150 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 155 + components: + - type: Transform + anchored: False + pos: 5.5,8.5 + parent: 1 + - uid: 156 + components: + - type: Transform + anchored: False + pos: 0.5,8.5 + parent: 1 + - uid: 157 + components: + - type: Transform + anchored: False + pos: -0.5,8.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 161 + components: + - type: Transform + pos: -6.5,1.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 165 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 171 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1 + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1 +- proto: GrilleBroken + entities: + - uid: 176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 1 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 + parent: 1 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,3.5 + parent: 1 + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -6.5,2.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,8.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 1 +- proto: InflatableDoor + entities: + - uid: 206 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 +- proto: InflatableWall + entities: + - uid: 207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 +- proto: Joint + entities: + - uid: 211 + components: + - type: Transform + rot: 0.15707963267948966 rad + pos: -2.4462023,1.4126525 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 212 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 +- proto: MachineCentrifuge + entities: + - uid: 213 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 +- proto: MachineFrameDestroyed + entities: + - uid: 214 + components: + - type: Transform + anchored: False + pos: 5,3.8 + parent: 1 + - type: Physics + bodyType: Dynamic +- proto: Mannequin + entities: + - uid: 111 + components: + - type: MetaData + name: Текила Сансет + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 115 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 114 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 113 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 112 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: ReplacementAccent + accent: cowboy +- proto: Paper + entities: + - uid: 215 + components: + - type: Transform + pos: -2.569386,0.53651655 + parent: 1 + - type: Paper + content: >+ + - Жизнь отшельника довольно тяжела... Понимать что ты один одишёшенек на весь космос... Никому не нужный.. + + + + - Сегодня нашел странное яйцо на обшивке, по всей видимости в яйце было нечто неизвестное науке. + + + + + - Это "нечто" имеет способности к созданию магнитных полей, тоесть оно работает как комуникатор. В дальнейшем буду называть обьект "симбиот" + + + + - Я изучил всё что мог, и просто выбросил плод в космос, мое оборудование не способно к дальнейшим изучениям, плод не омжет быть чем-то ценным, но изза него у меня дико болит голова. + + + + - К моей хижине летит странный обломок, но не думаю что это важно, обычно они пролетают мимо, а осколки спокойно останавливает защита. + + +- proto: PartRodMetal1 + entities: + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.0858188,5.544298 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: 3.8281176,5.518256 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5546393,5.6484647 + parent: 1 +- proto: Pen + entities: + - uid: 30 + components: + - type: Transform + pos: -2.3790708,0.8433417 + parent: 1 +- proto: Pill + entities: + - uid: 219 + components: + - type: MetaData + name: таблетка амбузола плюс + - type: Transform + pos: 6.7044783,2.506638 + parent: 1 + - type: Pill + pillType: 2 +- proto: PipeBomb + entities: + - uid: 220 + components: + - type: Transform + pos: 3.9608643,2.6374404 + parent: 1 +- proto: PortableGeneratorJrPacman + entities: + - uid: 221 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 +- proto: PosterContrabandCommunistState + entities: + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 +- proto: PosterLegitHighClassMartini + entities: + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 1 +- proto: PosterLegitScience + entities: + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 +- proto: PowerCellHyperPrinted + entities: + - uid: 228 + components: + - type: Transform + rot: 6.178465552059927 rad + pos: 4.631891,5.6235 + parent: 1 +- proto: PowerCellRecharger + entities: + - uid: 229 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 230 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 +- proto: Railing + entities: + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 +- proto: ScrapAirlock1 + entities: + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5466769,0.6870057 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 2.1642082724729685 rad + pos: 0.27455688,-0.39176452 + parent: 1 +- proto: ScrapAirlock2 + entities: + - uid: 239 + components: + - type: Transform + pos: 5.510503,-1.1010869 + parent: 1 + - uid: 240 + components: + - type: Transform + pos: -0.3301115,0.38467616 + parent: 1 +- proto: ScrapBucket + entities: + - uid: 241 + components: + - type: Transform + pos: 1.2557225,-0.0014241934 + parent: 1 +- proto: ScrapCanister2 + entities: + - uid: 242 + components: + - type: Transform + pos: 6.290276,0.16332203 + parent: 1 +- proto: ScrapCloset + entities: + - uid: 243 + components: + - type: Transform + pos: 3.5049932,-1.6088994 + parent: 1 +- proto: ScrapFaxMachine + entities: + - uid: 244 + components: + - type: Transform + rot: -0.9250245035569946 rad + pos: 3.486802,4.356388 + parent: 1 +- proto: ScrapFireExtinguisher + entities: + - uid: 245 + components: + - type: Transform + pos: 5.542177,0.9421544 + parent: 1 +- proto: ScrapFirelock1 + entities: + - uid: 246 + components: + - type: Transform + pos: 5.5231876,-1.2573369 + parent: 1 +- proto: ScrapFirelock2 + entities: + - uid: 247 + components: + - type: Transform + pos: 5.4841194,-1.7000451 + parent: 1 +- proto: ScrapFirelock3 + entities: + - uid: 248 + components: + - type: Transform + pos: 1.3286049,1.6579106 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.135658,2.5172632 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.2624507,2.5693467 + parent: 1 +- proto: ScrapIntercom + entities: + - uid: 251 + components: + - type: Transform + pos: 1.7070642,-0.69124377 + parent: 1 +- proto: ScrapJetpack + entities: + - uid: 252 + components: + - type: Transform + pos: 6.470984,-0.46114743 + parent: 1 +- proto: ScrapMedkit + entities: + - uid: 253 + components: + - type: Transform + pos: -2.588142,2.6920896 + parent: 1 +- proto: ScrapMopBucket + entities: + - uid: 254 + components: + - type: Transform + pos: 3.7172325,-1.6324682 + parent: 1 +- proto: ScrapSteel + entities: + - uid: 255 + components: + - type: Transform + pos: 5.5839233,-1.5114582 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: 3.740813,0.6301204 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 3.4872546,5.38213 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: 3.4919705,-1.4917119 + parent: 1 +- proto: ScrapTube + entities: + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.0895996,5.5412536 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 2.8623399732707004 rad + pos: 2.5844655,4.161045 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 5.7462296,2.6231356 + parent: 1 +- proto: Screwdriver + entities: + - uid: 262 + components: + - type: Transform + rot: 156.8527398767304 rad + pos: 2.7424226,2.8456998 + parent: 1 +- proto: ShardCrystalRed + entities: + - uid: 263 + components: + - type: MetaData + name: окровавленный осколок. + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5693874,2.26426 + parent: 1 +- proto: ShardGlass + entities: + - uid: 264 + components: + - type: Transform + pos: 1.8718715,2.7990737 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.7266173,3.6844902 + parent: 1 +- proto: ShardGlassReinforced + entities: + - uid: 266 + components: + - type: Transform + pos: 3.2811606,5.609402 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5937076,5.440131 + parent: 1 +- proto: ShelfBar + entities: + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: Storage + storedItems: + 133: + position: 0,0 + _rotation: South + 134: + position: 2,0 + _rotation: South + 135: + position: 4,0 + _rotation: South + 129: + position: 0,3 + _rotation: South + 130: + position: 1,4 + _rotation: East + 131: + position: 3,4 + _rotation: East + 132: + position: 4,3 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 133 + - 135 + - 131 + - 132 + - 130 + - 129 + - 134 +- proto: ShelfMetal + entities: + - uid: 268 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: Storage + storedItems: + 269: + position: 0,0 + _rotation: South + 270: + position: 2,0 + _rotation: South + 271: + position: 1,0 + _rotation: South + 272: + position: 3,0 + _rotation: South + 273: + position: 0,3 + _rotation: South + 274: + position: 1,3 + _rotation: South + 275: + position: 2,3 + _rotation: South + 276: + position: 3,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 269 + - 270 + - 271 + - 272 + - 273 + - 274 + - 275 + - 276 +- proto: ShellShotgun + entities: + - uid: 97 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 98 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 99 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 100 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 101 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 102 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 103 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 104 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 105 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 106 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 107 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 108 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 109 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False + - uid: 110 + components: + - type: Transform + parent: 96 + - type: Physics + canCollide: False +- proto: SinkWide + entities: + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: SpaceTickSpawner + entities: + - uid: 278 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 +- proto: SpawnMobCobraSalvage + entities: + - uid: 279 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 +- proto: SpawnMobMouse + entities: + - uid: 280 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 281 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 +- proto: StrangePill + entities: + - uid: 282 + components: + - type: Transform + rot: 3.4557519189487724 rad + pos: -2.3279738,2.836079 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 1.2740903539558606 rad + pos: -2.762124,3.1699073 + parent: 1 + - uid: 284 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: -2.3540764,2.4407406 + parent: 1 +- proto: SubstationBasicEmpty + entities: + - uid: 285 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: SuitStorageBase + entities: + - uid: 286 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: SyringeIpecac + entities: + - uid: 287 + components: + - type: MetaData + name: шприц ромерола + - type: Transform + pos: 6.481953,2.7327712 + parent: 1 +- proto: TableReinforcedGlass + entities: + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 +- proto: TableStone + entities: + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 +- proto: TableWood + entities: + - uid: 297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 +- proto: TechnologyDisk + entities: + - uid: 300 + components: + - type: Transform + rot: 0.13962634015954636 rad + pos: 4.831558,0.39876032 + parent: 1 +- proto: TreasureCDDrive + entities: + - uid: 301 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 2.9293222,3.8990533 + parent: 1 +- proto: TreasureDatadiskEncrypted + entities: + - uid: 269 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 270 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 271 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 272 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 273 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 274 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 275 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False + - uid: 276 + components: + - type: Transform + parent: 268 + - type: Physics + canCollide: False +- proto: TreasureHardDiskDrive + entities: + - uid: 302 + components: + - type: Transform + rot: 602.7494571762417 rad + pos: 2.4096804,0.04821062 + parent: 1 + - uid: 303 + components: + - type: Transform + rot: -0.5934119456780721 rad + pos: 2.0698175,3.3000948 + parent: 1 +- proto: WallReinforced + entities: + - uid: 304 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - uid: 311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: WallReinforcedRust + entities: + - uid: 320 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - uid: 334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1 + - uid: 340 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 +- proto: WarpPoint + entities: + - uid: 351 + components: + - type: MetaData + name: Дом отшельника + - type: Transform + pos: -2.5,6.5 + parent: 1 +- proto: WaterTank + entities: + - uid: 352 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: WeaponMakeshiftLaser + entities: + - uid: 353 + components: + - type: Transform + rot: 0.2792526803190927 rad + pos: 5.362331,2.6227639 + parent: 1 +- proto: WeaponShotgunSawnEmpty + entities: + - uid: 354 + components: + - type: Transform + pos: -2.6085157,4.5205574 + parent: 1 +- proto: WeaponSniperMosin + entities: + - uid: 355 + components: + - type: Transform + rot: -0.5759586531581288 rad + pos: 0.65219474,-1.3794775 + parent: 1 +- proto: WindowDirectional + entities: + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 +- proto: Wrench + entities: + - uid: 358 + components: + - type: Transform + rot: 3.717551306747922 rad + pos: 1.3663311,3.7201161 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/arrivals_corvaxsilly.yml b/Resources/Maps/Shuttles/arrivals_corvaxsilly.yml deleted file mode 100644 index c42f09754a4..00000000000 --- a/Resources/Maps/Shuttles/arrivals_corvaxsilly.yml +++ /dev/null @@ -1,2681 +0,0 @@ -meta: - format: 6 - postmapinit: false -tilemap: - 0: Space - 12: FloorAstroGrass - 47: FloorGlass - 123: FloorWoodLarge - 132: TrainLattice -entities: -- proto: "" - entities: - - uid: 1 - components: - - type: MetaData - name: map 102 - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - uid: 292 - components: - - type: MetaData - name: NT-Arrivals 1101 - - type: Transform - parent: 1 - - type: MapGrid - chunks: - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAhAAAAAAAhAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAA - version: 6 - 0,0: - ind: 0,0 - tiles: ewAAAAAAewAAAAAAewAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALwAAAAAAewAAAAAAewAAAAAAewAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhAAAAAAAhAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - - type: Broadphase - - type: Physics - bodyStatus: InAir - angularDamping: 0.05 - linearDamping: 0.05 - fixedRotation: False - bodyType: Dynamic - - type: Fixtures - fixtures: {} - - type: BecomesStation - id: Empty - - type: OccluderTree - - type: Shuttle - - type: DeviceNetwork - configurators: [] - deviceLists: [] - transmitFrequencyId: ArrivalsShuttleTimer - - type: Gravity - gravityShakeSound: !type:SoundPathSpecifier - path: /Audio/Effects/alert.ogg - - type: DecalGrid - chunkCollection: - version: 2 - nodes: - - node: - color: '#FFFFFFFF' - id: BushCThree - decals: - 9: -1,-1 - - node: - color: '#FFFFFFFF' - id: Bushe3 - decals: - 11: -1,1 - - node: - color: '#FFFFFFFF' - id: Bushi3 - decals: - 10: -1,0 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 6: -1,1 - - node: - color: '#FFFFFFFF' - id: Flowerspv3 - decals: - 7: -1,-1 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 4: -1,2 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 5: -1,0 - - node: - color: '#FFFFFFFF' - id: Grassb5 - decals: - 8: -1,2 - - node: - color: '#FFFFFFFF' - id: Grassd3 - decals: - 3: -1,2 - - node: - color: '#FFFFFFFF' - id: Grasse1 - decals: - 2: -1,1 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 1: -1,0 - - node: - color: '#FFFFFFFF' - id: Grasse3 - decals: - 0: -1,-1 - - type: GridAtmosphere - version: 2 - data: - tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 - -2,-2: - 0: 34816 - -2,-1: - 0: 34952 - -1,-2: - 0: 65520 - 0,0: - 0: 65535 - 0,1: - 0: 32767 - 0,2: - 0: 307 - -2,0: - 0: 34952 - -2,1: - 0: 2184 - -1,1: - 0: 65535 - -1,2: - 0: 3310 - 0,-2: - 0: 65392 - 0,-1: - 0: 65535 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: SpreaderGrid - - type: GridPathfinding -- proto: AirCanister - entities: - - uid: 62 - components: - - type: Transform - pos: -2.5,7.5 - parent: 292 - - type: AtmosDevice - joinedGrid: 292 - - uid: 214 - components: - - type: Transform - pos: -1.5,7.5 - parent: 292 - - type: AtmosDevice - joinedGrid: 292 -- proto: AirlockCommandGlassLocked - entities: - - uid: 278 - components: - - type: MetaData - name: Cockpit - - type: Transform - pos: -0.5,6.5 - parent: 292 -- proto: AirlockGlassShuttle - entities: - - uid: 177 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-2.5 - parent: 292 - - uid: 178 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 292 - - uid: 179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 292 - - uid: 180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 292 -- proto: AnomalyFloraBulb - entities: - - uid: 280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,0.5 - parent: 292 -- proto: APCBasic - entities: - - uid: 116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 292 -- proto: ArrivalsShuttleTimer - entities: - - uid: 294 - components: - - type: Transform - pos: -4.5,3.5 - parent: 292 - - uid: 295 - components: - - type: Transform - pos: 3.5,3.5 - parent: 292 -- proto: AtmosDeviceFanTiny - entities: - - uid: 164 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 292 - - uid: 165 - components: - - type: Transform - pos: 3.5,4.5 - parent: 292 - - uid: 166 - components: - - type: Transform - pos: -4.5,4.5 - parent: 292 - - uid: 167 - components: - - type: Transform - pos: -4.5,-2.5 - parent: 292 -- proto: BeachBall - entities: - - uid: 401 - components: - - type: Transform - pos: -1.465811,-1.2405775 - parent: 292 -- proto: BlockGameArcade - entities: - - uid: 58 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,5.5 - parent: 292 - - uid: 225 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 292 -- proto: CableApcExtension - entities: - - uid: 123 - components: - - type: Transform - pos: -0.5,3.5 - parent: 292 - - uid: 124 - components: - - type: Transform - pos: -0.5,4.5 - parent: 292 - - uid: 125 - components: - - type: Transform - pos: -1.5,4.5 - parent: 292 - - uid: 126 - components: - - type: Transform - pos: -2.5,4.5 - parent: 292 - - uid: 127 - components: - - type: Transform - pos: -2.5,3.5 - parent: 292 - - uid: 128 - components: - - type: Transform - pos: -2.5,2.5 - parent: 292 - - uid: 129 - components: - - type: Transform - pos: -2.5,1.5 - parent: 292 - - uid: 130 - components: - - type: Transform - pos: -2.5,0.5 - parent: 292 - - uid: 131 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 292 - - uid: 132 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 292 - - uid: 133 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 292 - - uid: 134 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 292 - - uid: 135 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 292 - - uid: 136 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 292 - - uid: 137 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 292 - - uid: 138 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 292 - - uid: 139 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 292 - - uid: 140 - components: - - type: Transform - pos: 1.5,0.5 - parent: 292 - - uid: 141 - components: - - type: Transform - pos: 1.5,1.5 - parent: 292 - - uid: 142 - components: - - type: Transform - pos: 1.5,2.5 - parent: 292 - - uid: 143 - components: - - type: Transform - pos: 1.5,3.5 - parent: 292 - - uid: 144 - components: - - type: Transform - pos: 1.5,4.5 - parent: 292 - - uid: 145 - components: - - type: Transform - pos: 0.5,4.5 - parent: 292 - - uid: 146 - components: - - type: Transform - pos: -0.5,5.5 - parent: 292 - - uid: 147 - components: - - type: Transform - pos: -0.5,6.5 - parent: 292 - - uid: 148 - components: - - type: Transform - pos: -0.5,7.5 - parent: 292 - - uid: 149 - components: - - type: Transform - pos: -0.5,8.5 - parent: 292 - - uid: 150 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 292 - - uid: 151 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 292 - - uid: 152 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 292 - - uid: 153 - components: - - type: Transform - pos: 1.5,-4.5 - parent: 292 - - uid: 154 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 292 - - uid: 155 - components: - - type: Transform - pos: -2.5,-4.5 - parent: 292 - - uid: 156 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 292 - - uid: 157 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 292 - - uid: 158 - components: - - type: Transform - pos: -1.5,8.5 - parent: 292 - - uid: 159 - components: - - type: Transform - pos: 0.5,8.5 - parent: 292 - - uid: 160 - components: - - type: Transform - pos: -3.5,4.5 - parent: 292 - - uid: 161 - components: - - type: Transform - pos: 2.5,4.5 - parent: 292 - - uid: 162 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 292 - - uid: 163 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 292 -- proto: CableHV - entities: - - uid: 79 - components: - - type: Transform - pos: 0.5,7.5 - parent: 292 - - uid: 80 - components: - - type: Transform - pos: 1.5,7.5 - parent: 292 - - uid: 81 - components: - - type: Transform - pos: 1.5,6.5 - parent: 292 - - uid: 82 - components: - - type: Transform - pos: -0.5,7.5 - parent: 292 - - uid: 83 - components: - - type: Transform - pos: -0.5,6.5 - parent: 292 - - uid: 85 - components: - - type: Transform - pos: -0.5,5.5 - parent: 292 - - uid: 86 - components: - - type: Transform - pos: -0.5,4.5 - parent: 292 - - uid: 87 - components: - - type: Transform - pos: -1.5,4.5 - parent: 292 - - uid: 88 - components: - - type: Transform - pos: -2.5,4.5 - parent: 292 - - uid: 89 - components: - - type: Transform - pos: -2.5,3.5 - parent: 292 - - uid: 90 - components: - - type: Transform - pos: -2.5,2.5 - parent: 292 - - uid: 91 - components: - - type: Transform - pos: -2.5,1.5 - parent: 292 - - uid: 92 - components: - - type: Transform - pos: -2.5,0.5 - parent: 292 - - uid: 93 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 292 - - uid: 94 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 292 - - uid: 95 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 292 - - uid: 96 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 292 - - uid: 97 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 292 - - uid: 98 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 292 - - uid: 99 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 292 - - uid: 100 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 292 - - uid: 101 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 292 - - uid: 102 - components: - - type: Transform - pos: 1.5,0.5 - parent: 292 - - uid: 103 - components: - - type: Transform - pos: 1.5,1.5 - parent: 292 - - uid: 104 - components: - - type: Transform - pos: 1.5,2.5 - parent: 292 - - uid: 105 - components: - - type: Transform - pos: 1.5,3.5 - parent: 292 - - uid: 106 - components: - - type: Transform - pos: 1.5,4.5 - parent: 292 - - uid: 107 - components: - - type: Transform - pos: 0.5,4.5 - parent: 292 - - uid: 108 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 292 - - uid: 109 - components: - - type: Transform - pos: -1.5,-4.5 - parent: 292 - - uid: 110 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 292 - - uid: 111 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 292 - - uid: 112 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 292 - - uid: 113 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 292 -- proto: CableMV - entities: - - uid: 117 - components: - - type: Transform - pos: 1.5,6.5 - parent: 292 - - uid: 118 - components: - - type: Transform - pos: 1.5,5.5 - parent: 292 - - uid: 119 - components: - - type: Transform - pos: 1.5,4.5 - parent: 292 - - uid: 120 - components: - - type: Transform - pos: 0.5,4.5 - parent: 292 - - uid: 121 - components: - - type: Transform - pos: -0.5,4.5 - parent: 292 - - uid: 122 - components: - - type: Transform - pos: -0.5,3.5 - parent: 292 -- proto: CableTerminal - entities: - - uid: 222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,7.5 - parent: 292 -- proto: CannonBall - entities: - - uid: 374 - components: - - type: Transform - pos: 0.5289762,-1.5210779 - parent: 292 -- proto: Carpet - entities: - - uid: 229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-0.5 - parent: 292 - - uid: 232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 292 - - uid: 349 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-2.5 - parent: 292 - - uid: 351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-1.5 - parent: 292 - - uid: 352 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 292 - - uid: 353 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,2.5 - parent: 292 - - uid: 354 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 292 - - uid: 356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 292 - - uid: 357 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 292 - - uid: 358 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 292 - - uid: 359 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,2.5 - parent: 292 - - uid: 360 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 292 - - uid: 362 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 292 - - uid: 363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 292 - - uid: 364 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 292 - - uid: 365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 292 - - uid: 366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 292 - - uid: 367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 292 - - uid: 368 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 292 - - uid: 369 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 292 - - uid: 370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 292 - - uid: 371 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,4.5 - parent: 292 - - uid: 373 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 292 - - uid: 375 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 292 - - uid: 376 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 292 - - uid: 377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 292 - - uid: 378 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 292 - - uid: 384 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 - parent: 292 - - uid: 385 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 292 - - uid: 386 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 292 - - uid: 387 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 - parent: 292 - - uid: 388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 292 - - uid: 389 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 292 - - uid: 390 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 292 - - uid: 391 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,4.5 - parent: 292 - - uid: 392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 292 - - uid: 393 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 292 - - uid: 394 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 - parent: 292 - - uid: 395 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 292 - - uid: 396 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 292 - - uid: 397 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 292 - - uid: 398 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 292 - - uid: 399 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 292 - - uid: 400 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 292 - - uid: 405 - components: - - type: Transform - pos: -3.5,5.5 - parent: 292 - - uid: 406 - components: - - type: Transform - pos: 2.5,5.5 - parent: 292 -- proto: CarpetBlack - entities: - - uid: 331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 292 - - uid: 332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 - parent: 292 - - uid: 333 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,8.5 - parent: 292 - - uid: 334 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 292 - - uid: 335 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 292 - - uid: 336 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 292 - - uid: 337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 292 - - uid: 338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 292 - - uid: 339 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 292 -- proto: ChairPilotSeat - entities: - - uid: 3 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,9.5 - parent: 292 -- proto: ChairWood - entities: - - uid: 8 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 292 - - uid: 9 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,0.5 - parent: 292 - - uid: 10 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 - parent: 292 - - uid: 11 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 292 - - uid: 16 - components: - - type: Transform - pos: 2.5,3.5 - parent: 292 - - uid: 17 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 292 - - uid: 18 - components: - - type: Transform - pos: 2.5,0.5 - parent: 292 - - uid: 19 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 292 - - uid: 20 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 292 - - uid: 21 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,1.5 - parent: 292 - - uid: 23 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 292 - - uid: 25 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 292 - - uid: 26 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,5.5 - parent: 292 - - uid: 226 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,8.5 - parent: 292 - - uid: 231 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,5.5 - parent: 292 - - uid: 279 - components: - - type: Transform - pos: -3.5,3.5 - parent: 292 - - uid: 328 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,9.5 - parent: 292 - - uid: 329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 292 - - uid: 330 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 292 - - uid: 343 - components: - - type: Transform - pos: -3.5,0.5 - parent: 292 - - uid: 344 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 292 - - uid: 345 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 292 -- proto: ClockworkGrille - entities: - - uid: 29 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 - parent: 292 - - uid: 30 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 292 - - uid: 32 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 292 - - uid: 41 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 292 - - uid: 42 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 292 - - uid: 63 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 292 - - uid: 64 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 292 - - uid: 66 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 - parent: 292 - - uid: 75 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 292 - - uid: 76 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 292 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 292 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 289 - components: - - type: Transform - pos: -3.5,6.5 - parent: 292 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 286 - components: - - type: Transform - pos: 2.5,6.5 - parent: 292 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 292 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14963 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingMaskBreath - entities: - - uid: 272 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 292 - - uid: 273 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 292 -- proto: ComputerShuttle - entities: - - uid: 312 - components: - - type: Transform - pos: -0.5,10.5 - parent: 292 -- proto: CrowbarRed - entities: - - uid: 274 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 292 -- proto: EmergencyOxygenTankFilled - entities: - - uid: 270 - components: - - type: Transform - pos: 2.5708976,-3.5851696 - parent: 292 - - uid: 271 - components: - - type: Transform - pos: -3.4291024,-3.5851696 - parent: 292 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 277 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 292 -- proto: FloraTree02 - entities: - - uid: 281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.46053362,1.7186725 - parent: 292 -- proto: FloraTree04 - entities: - - uid: 282 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.37720025,-0.1657126 - parent: 292 -- proto: GasPassiveGate - entities: - - uid: 184 - components: - - type: Transform - pos: -0.5,7.5 - parent: 292 - - type: AtmosDevice - joinedGrid: 292 -- proto: GasPipeBend - entities: - - uid: 182 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,8.5 - parent: 292 - - uid: 183 - components: - - type: Transform - pos: -0.5,8.5 - parent: 292 - - uid: 187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,5.5 - parent: 292 - - uid: 188 - components: - - type: Transform - pos: 1.5,5.5 - parent: 292 - - uid: 189 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 292 - - uid: 190 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 292 -- proto: GasPipeFourway - entities: - - uid: 186 - components: - - type: Transform - pos: -0.5,5.5 - parent: 292 -- proto: GasPipeStraight - entities: - - uid: 185 - components: - - type: Transform - pos: -0.5,6.5 - parent: 292 - - uid: 192 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 292 - - uid: 193 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 292 - - uid: 194 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 292 - - uid: 195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 292 - - uid: 196 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 292 - - uid: 197 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 292 - - uid: 198 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 292 - - uid: 199 - components: - - type: Transform - pos: 1.5,0.5 - parent: 292 - - uid: 200 - components: - - type: Transform - pos: 1.5,1.5 - parent: 292 - - uid: 201 - components: - - type: Transform - pos: 1.5,2.5 - parent: 292 - - uid: 202 - components: - - type: Transform - pos: 1.5,3.5 - parent: 292 - - uid: 203 - components: - - type: Transform - pos: 1.5,4.5 - parent: 292 - - uid: 204 - components: - - type: Transform - pos: -2.5,-2.5 - parent: 292 - - uid: 205 - components: - - type: Transform - pos: -2.5,-1.5 - parent: 292 - - uid: 206 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 292 - - uid: 207 - components: - - type: Transform - pos: -2.5,0.5 - parent: 292 - - uid: 208 - components: - - type: Transform - pos: -2.5,1.5 - parent: 292 - - uid: 209 - components: - - type: Transform - pos: -2.5,2.5 - parent: 292 - - uid: 210 - components: - - type: Transform - pos: -2.5,3.5 - parent: 292 - - uid: 211 - components: - - type: Transform - pos: -2.5,4.5 - parent: 292 -- proto: GasPipeTJunction - entities: - - uid: 191 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 292 -- proto: GasPort - entities: - - uid: 181 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 292 - - type: AtmosDevice - joinedGrid: 292 -- proto: GasVentPump - entities: - - uid: 212 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 292 - - type: AtmosDevice - joinedGrid: 292 - - uid: 213 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 292 - - type: AtmosDevice - joinedGrid: 292 -- proto: GeneratorBasic15kW - entities: - - uid: 114 - components: - - type: Transform - pos: -1.5,-5.5 - parent: 292 - - uid: 115 - components: - - type: Transform - pos: 0.5,-5.5 - parent: 292 -- proto: GlassBoxLaser - entities: - - uid: 403 - components: - - type: Transform - pos: 0.5,7.5 - parent: 292 -- proto: GravityGeneratorMini - entities: - - uid: 291 - components: - - type: Transform - pos: -2.5,-5.5 - parent: 292 -- proto: Gyroscope - entities: - - uid: 168 - components: - - type: Transform - pos: 1.5,-5.5 - parent: 292 -- proto: IngotGold1 - entities: - - uid: 402 - components: - - type: Transform - pos: 0.4196012,-1.3023279 - parent: 292 -- proto: IntercomCommon - entities: - - uid: 264 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 292 -- proto: MedkitFilled - entities: - - uid: 266 - components: - - type: Transform - pos: -0.5,-3.5 - parent: 292 -- proto: NitrogenTankFilled - entities: - - uid: 268 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 292 - - uid: 269 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 292 -- proto: PlushieCarp - entities: - - uid: 57 - components: - - type: Transform - pos: 0.5085374,7.4752336 - parent: 292 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 59 - components: - - type: Transform - pos: -4.5,-1.5 - parent: 292 -- proto: PosterContrabandEAT - entities: - - uid: 407 - components: - - type: Transform - pos: 3.5,-1.5 - parent: 292 -- proto: PosterContrabandSunkist - entities: - - uid: 408 - components: - - type: Transform - pos: -4.5,5.5 - parent: 292 -- proto: PosterLegitNanotrasenLogo - entities: - - uid: 290 - components: - - type: Transform - pos: -2.5,6.5 - parent: 292 -- proto: PosterLegitVacation - entities: - - uid: 409 - components: - - type: Transform - pos: 3.5,5.5 - parent: 292 -- proto: PottedPlant11 - entities: - - uid: 53 - components: - - type: Transform - pos: -1.5,3.5 - parent: 292 -- proto: PottedPlant15 - entities: - - uid: 404 - components: - - type: Transform - pos: 0.5,3.5 - parent: 292 -- proto: PottedPlantRandom - entities: - - uid: 56 - components: - - type: Transform - pos: 0.5,5.5 - parent: 292 - - uid: 340 - components: - - type: Transform - pos: 0.5,10.5 - parent: 292 - - uid: 341 - components: - - type: Transform - pos: -1.5,10.5 - parent: 292 - - uid: 342 - components: - - type: Transform - pos: -1.5,5.5 - parent: 292 -- proto: PowerCellRecharger - entities: - - uid: 265 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 292 -- proto: PoweredlightOrange - entities: - - uid: 22 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-1.5 - parent: 292 - - uid: 60 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 292 - - uid: 61 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 - parent: 292 - - uid: 355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 292 - - uid: 361 - components: - - type: Transform - pos: -0.5,10.5 - parent: 292 -- proto: Rack - entities: - - uid: 262 - components: - - type: Transform - pos: 2.5,-3.5 - parent: 292 - - uid: 263 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 292 -- proto: Railing - entities: - - uid: 12 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 292 - - uid: 13 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 292 - - uid: 14 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 292 - - uid: 15 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 292 - - uid: 28 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 292 - - uid: 31 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 292 - - uid: 33 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 292 - - uid: 34 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 292 - - uid: 35 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 292 - - uid: 36 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 292 - - uid: 37 - components: - - type: Transform - pos: -1.5,6.5 - parent: 292 - - uid: 38 - components: - - type: Transform - pos: 0.5,6.5 - parent: 292 - - uid: 49 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 292 - - uid: 50 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 292 - - uid: 51 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 292 - - uid: 65 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 292 - - uid: 67 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 292 - - uid: 68 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 292 - - uid: 69 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 292 - - uid: 70 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 292 - - uid: 71 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 292 - - uid: 72 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 292 - - uid: 220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 292 - - uid: 221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 292 - - uid: 233 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 292 - - uid: 249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 292 - - uid: 283 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 292 - - uid: 284 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 - parent: 292 - - uid: 285 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 - parent: 292 - - uid: 293 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 292 - - uid: 307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,7.5 - parent: 292 - - uid: 308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,8.5 - parent: 292 - - uid: 309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 292 - - uid: 310 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 292 - - uid: 381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 292 -- proto: RailingCorner - entities: - - uid: 303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 292 - - uid: 304 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,10.5 - parent: 292 - - uid: 305 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 292 - - uid: 306 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,9.5 - parent: 292 -- proto: RailingCornerSmall - entities: - - uid: 4 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 - parent: 292 - - uid: 5 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 292 - - uid: 6 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 292 - - uid: 7 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 292 - - uid: 219 - components: - - type: Transform - pos: -1.5,9.5 - parent: 292 - - uid: 311 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 292 -- proto: RandomFoodMeal - entities: - - uid: 55 - components: - - type: Transform - pos: -3.5,2.5 - parent: 292 - - uid: 379 - components: - - type: Transform - pos: 2.5,-0.5 - parent: 292 -- proto: RandomFoodSingle - entities: - - uid: 52 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 292 - - uid: 54 - components: - - type: Transform - pos: 2.5,2.5 - parent: 292 -- proto: SMESBasic - entities: - - uid: 325 - components: - - type: Transform - pos: 1.5,7.5 - parent: 292 -- proto: SubstationWallBasic - entities: - - uid: 77 - components: - - type: Transform - pos: 1.5,6.5 - parent: 292 -- proto: TableBrass - entities: - - uid: 2 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 292 - - uid: 223 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 292 - - uid: 230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 - parent: 292 - - uid: 372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 292 -- proto: TableFancyOrange - entities: - - uid: 346 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 - parent: 292 - - uid: 347 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 292 - - uid: 348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 292 - - uid: 383 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-0.5 - parent: 292 -- proto: TableReinforced - entities: - - uid: 326 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 292 - - uid: 327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 292 -- proto: TableWood - entities: - - uid: 224 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 292 - - uid: 227 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 292 - - uid: 228 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 292 -- proto: Thruster - entities: - - uid: 169 - components: - - type: Transform - pos: 2.5,7.5 - parent: 292 - - uid: 170 - components: - - type: Transform - pos: -3.5,7.5 - parent: 292 - - uid: 171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 292 - - uid: 172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 - parent: 292 - - uid: 173 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 292 - - uid: 174 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 292 - - uid: 175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 - parent: 292 - - uid: 176 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-6.5 - parent: 292 -- proto: ToolboxEmergencyFilled - entities: - - uid: 267 - components: - - type: Transform - pos: -1.5,-3.5 - parent: 292 - - uid: 382 - components: - - type: Transform - pos: -1.293936,-3.2718275 - parent: 292 -- proto: VendingMachineClothing - entities: - - uid: 261 - components: - - type: Transform - pos: 1.5,-3.5 - parent: 292 -- proto: VendingMachineTheater - entities: - - uid: 24 - components: - - type: Transform - pos: -2.5,-3.5 - parent: 292 -- proto: WallWood - entities: - - uid: 39 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-4.5 - parent: 292 - - uid: 40 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 292 - - uid: 73 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 - parent: 292 - - uid: 74 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-4.5 - parent: 292 - - uid: 234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 292 - - uid: 235 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 292 - - uid: 236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-3.5 - parent: 292 - - uid: 237 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-1.5 - parent: 292 - - uid: 238 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 292 - - uid: 239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 292 - - uid: 240 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 - parent: 292 - - uid: 241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 292 - - uid: 242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 292 - - uid: 243 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,6.5 - parent: 292 - - uid: 244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 292 - - uid: 245 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 292 - - uid: 246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,6.5 - parent: 292 - - uid: 248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 292 - - uid: 250 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-4.5 - parent: 292 - - uid: 251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 - parent: 292 - - uid: 252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-4.5 - parent: 292 - - uid: 253 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-4.5 - parent: 292 - - uid: 254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 - parent: 292 - - uid: 255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-5.5 - parent: 292 - - uid: 256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 292 - - uid: 257 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-5.5 - parent: 292 - - uid: 258 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-5.5 - parent: 292 - - uid: 259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-6.5 - parent: 292 - - uid: 260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-5.5 - parent: 292 - - uid: 275 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 292 - - uid: 276 - components: - - type: Transform - pos: -0.5,3.5 - parent: 292 -- proto: WindowReinforcedDirectional - entities: - - uid: 27 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 292 - - uid: 43 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 292 - - uid: 44 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,1.5 - parent: 292 - - uid: 45 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 292 - - uid: 46 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 292 - - uid: 47 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,0.5 - parent: 292 - - uid: 48 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 292 - - uid: 78 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 292 - - uid: 84 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 292 - - uid: 215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,0.5 - parent: 292 - - uid: 216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 292 - - uid: 217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 - parent: 292 - - uid: 218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 - parent: 292 - - uid: 247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 292 - - uid: 296 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 292 - - uid: 297 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 292 - - uid: 298 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 292 - - uid: 299 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 292 - - uid: 300 - components: - - type: Transform - pos: -1.5,6.5 - parent: 292 - - uid: 301 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 292 - - uid: 302 - components: - - type: Transform - pos: 0.5,6.5 - parent: 292 - - uid: 313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 292 - - uid: 314 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 292 - - uid: 315 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,9.5 - parent: 292 - - uid: 316 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 292 - - uid: 317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 292 - - uid: 318 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 292 - - uid: 319 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,10.5 - parent: 292 - - uid: 320 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,10.5 - parent: 292 - - uid: 321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 292 - - uid: 322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 292 - - uid: 323 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,8.5 - parent: 292 - - uid: 324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,7.5 - parent: 292 - - uid: 350 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,5.5 - parent: 292 - - uid: 380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,5.5 - parent: 292 -... diff --git a/Resources/Maps/Shuttles/corvax_emergency.yml b/Resources/Maps/Shuttles/corvax_emergency.yml index fa5fc1a3c40..c69bcf0efba 100644 --- a/Resources/Maps/Shuttles/corvax_emergency.yml +++ b/Resources/Maps/Shuttles/corvax_emergency.yml @@ -361,8 +361,6 @@ entities: - type: DeviceList devices: - 22 - - type: AtmosDevice - joinedGrid: 1 - proto: AirCanister entities: - uid: 3 @@ -391,8 +389,6 @@ entities: - 0 - 0 - 0 - - type: AtmosDevice - joinedGrid: 1 - uid: 4 components: - type: MetaData @@ -419,8 +415,6 @@ entities: - 0 - 0 - 0 - - type: AtmosDevice - joinedGrid: 1 - proto: AirlockCommandGlassLocked entities: - uid: 5 @@ -432,60 +426,58 @@ entities: entities: - uid: 6 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,0.5 parent: 1 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 7 + - uid: 9 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,6.5 + rot: 1.5707963267948966 rad + pos: 4.5,6.5 parent: 1 - - uid: 8 + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 parent: 1 - - uid: 9 + - uid: 12 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-1.5 + rot: -1.5707963267948966 rad + pos: -9.5,6.5 parent: 1 - - uid: 10 + - uid: 27 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,0.5 + pos: 4.5,8.5 parent: 1 - - uid: 11 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,8.5 + pos: 4.5,0.5 parent: 1 - - uid: 12 + - uid: 29 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,8.5 parent: 1 - - uid: 13 + - uid: 32 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 parent: 1 - - uid: 14 + - uid: 511 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-1.5 + pos: -9.5,0.5 parent: 1 - proto: AirlockGlass entities: @@ -537,65 +529,68 @@ entities: parent: 1 - proto: APCHyperCapacity entities: - - uid: 23 + - uid: 14 components: - type: Transform - pos: -1.5,8.5 + rot: 3.141592653589793 rad + pos: -3.5,0.5 parent: 1 - uid: 24 components: - type: Transform - pos: -3.5,0.5 + rot: 3.141592653589793 rad + pos: -1.5,8.5 parent: 1 -- proto: APCSuperCapacity +- proto: AtmosDeviceFanDirectional entities: - - uid: 25 + - uid: 7 components: - type: Transform - pos: -1.5,0.5 + rot: -1.5707963267948966 rad + pos: -9.5,-1.5 parent: 1 -- proto: AtmosDeviceFanTiny - entities: - - uid: 26 + - uid: 8 components: - type: Transform - pos: -9.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 parent: 1 - - uid: 27 + - uid: 11 components: - type: Transform - pos: -9.5,-1.5 + rot: -1.5707963267948966 rad + pos: -9.5,6.5 parent: 1 - - uid: 28 + - uid: 13 components: - type: Transform - pos: 4.5,-1.5 + rot: 1.5707963267948966 rad + pos: 4.5,8.5 parent: 1 - - uid: 29 + - uid: 25 components: - type: Transform - pos: 4.5,0.5 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 parent: 1 - - uid: 30 + - uid: 26 components: - type: Transform - pos: 4.5,8.5 + rot: 1.5707963267948966 rad + pos: 4.5,6.5 parent: 1 - - uid: 31 + - uid: 30 components: - type: Transform - pos: -9.5,6.5 + rot: -1.5707963267948966 rad + pos: -9.5,0.5 parent: 1 - - uid: 32 + - uid: 31 components: - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,8.5 parent: 1 - - uid: 33 - components: - - type: Transform - pos: 4.5,6.5 - parent: 1 - proto: BedsheetMedical entities: - uid: 34 @@ -646,26 +641,11 @@ entities: parent: 1 - proto: CableApcExtension entities: - - uid: 42 - components: - - type: Transform - pos: 3.5,-2.5 - parent: 1 - - uid: 43 - components: - - type: Transform - pos: -7.5,6.5 - parent: 1 - uid: 44 components: - type: Transform pos: 1.5,5.5 parent: 1 - - uid: 45 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1 - uid: 46 components: - type: Transform @@ -679,7 +659,7 @@ entities: - uid: 48 components: - type: Transform - pos: 2.5,-0.5 + pos: -8.5,7.5 parent: 1 - uid: 49 components: @@ -709,7 +689,7 @@ entities: - uid: 54 components: - type: Transform - pos: 3.5,7.5 + pos: 2.5,3.5 parent: 1 - uid: 55 components: @@ -724,7 +704,7 @@ entities: - uid: 57 components: - type: Transform - pos: 2.5,3.5 + pos: 2.5,-0.5 parent: 1 - uid: 58 components: @@ -744,18 +724,13 @@ entities: - uid: 61 components: - type: Transform - pos: 1.5,3.5 + pos: -7.5,3.5 parent: 1 - uid: 62 components: - type: Transform pos: -6.5,5.5 parent: 1 - - uid: 63 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1 - uid: 64 components: - type: Transform @@ -801,51 +776,26 @@ entities: - type: Transform pos: -2.5,14.5 parent: 1 - - uid: 73 - components: - - type: Transform - pos: -7.5,-1.5 - parent: 1 - - uid: 74 - components: - - type: Transform - pos: -8.5,6.5 - parent: 1 - - uid: 75 - components: - - type: Transform - pos: -8.5,4.5 - parent: 1 - uid: 76 components: - type: Transform - pos: -7.5,0.5 + pos: -8.5,-0.5 parent: 1 - uid: 77 components: - type: Transform - pos: 2.5,9.5 + pos: -8.5,3.5 parent: 1 - uid: 78 components: - type: Transform - pos: 3.5,5.5 - parent: 1 - - uid: 79 - components: - - type: Transform - pos: 3.5,3.5 + pos: 1.5,3.5 parent: 1 - uid: 80 components: - type: Transform pos: 1.5,8.5 parent: 1 - - uid: 81 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - uid: 82 components: - type: Transform @@ -876,11 +826,6 @@ entities: - type: Transform pos: -5.5,-4.5 parent: 1 - - uid: 88 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1 - uid: 89 components: - type: Transform @@ -921,11 +866,6 @@ entities: - type: Transform pos: -2.5,5.5 parent: 1 - - uid: 97 - components: - - type: Transform - pos: -2.5,3.5 - parent: 1 - uid: 98 components: - type: Transform @@ -946,11 +886,6 @@ entities: - type: Transform pos: 1.5,2.5 parent: 1 - - uid: 102 - components: - - type: Transform - pos: 3.5,-0.5 - parent: 1 - uid: 103 components: - type: Transform @@ -984,37 +919,12 @@ entities: - uid: 109 components: - type: Transform - pos: -8.5,0.5 + pos: -7.5,7.5 parent: 1 - uid: 110 components: - type: Transform - pos: 2.5,7.5 - parent: 1 - - uid: 111 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - - uid: 112 - components: - - type: Transform - pos: -7.5,9.5 - parent: 1 - - uid: 113 - components: - - type: Transform - pos: -8.5,2.5 - parent: 1 - - uid: 114 - components: - - type: Transform - pos: -7.5,2.5 - parent: 1 - - uid: 115 - components: - - type: Transform - pos: -8.5,-1.5 + pos: -7.5,-0.5 parent: 1 - uid: 116 components: @@ -1056,11 +966,6 @@ entities: - type: Transform pos: -0.5,1.5 parent: 1 - - uid: 124 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1 - uid: 125 components: - type: Transform @@ -1101,11 +1006,6 @@ entities: - type: Transform pos: -1.5,17.5 parent: 1 - - uid: 133 - components: - - type: Transform - pos: -7.5,4.5 - parent: 1 - uid: 134 components: - type: Transform @@ -1161,11 +1061,6 @@ entities: - type: Transform pos: -1.5,-4.5 parent: 1 - - uid: 145 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - uid: 146 components: - type: Transform @@ -1191,16 +1086,6 @@ entities: - type: Transform pos: -3.5,9.5 parent: 1 - - uid: 151 - components: - - type: Transform - pos: -4.5,9.5 - parent: 1 - - uid: 152 - components: - - type: Transform - pos: -5.5,9.5 - parent: 1 - uid: 153 components: - type: Transform @@ -1226,15 +1111,30 @@ entities: - type: Transform pos: -2.5,10.5 parent: 1 - - uid: 158 + - uid: 311 components: - type: Transform - pos: 2.5,-2.5 + pos: 2.5,7.5 parent: 1 - - uid: 159 + - uid: 312 components: - type: Transform - pos: -2.5,2.5 + pos: 3.5,-0.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: 3.5,3.5 parent: 1 - proto: CableHV entities: @@ -1300,16 +1200,6 @@ entities: - type: Transform pos: -3.5,1.5 parent: 1 - - uid: 172 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1 - - uid: 173 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1 - uid: 174 components: - type: Transform @@ -2093,16 +1983,6 @@ entities: - type: Transform pos: -0.47754467,16.63452 parent: 1 -- proto: GasDualPortVentPump - entities: - - uid: 303 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,11.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: GasMixer entities: - uid: 304 @@ -2113,8 +1993,8 @@ entities: parent: 1 - type: GasMixer targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPassiveVent entities: - uid: 305 @@ -2123,16 +2003,20 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - uid: 306 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-4.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - uid: 617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeBend entities: - uid: 307 @@ -2154,369 +2038,774 @@ entities: parent: 1 - proto: GasPipeFourway entities: - - uid: 310 + - uid: 88 components: - type: Transform - pos: -2.5,2.5 + pos: -1.5,12.5 parent: 1 - - uid: 311 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 330 components: - type: Transform - pos: -2.5,12.5 + pos: -1.5,7.5 parent: 1 - - uid: 312 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 342 components: - type: Transform - pos: -2.5,1.5 + pos: -3.5,13.5 parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeStraight entities: - - uid: 313 + - uid: 23 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,5.5 + pos: -1.5,1.5 parent: 1 - - uid: 314 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 42 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,0.5 + pos: -3.5,7.5 parent: 1 - - uid: 315 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 73 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,0.5 + pos: -3.5,6.5 parent: 1 - - uid: 316 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 74 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 + rot: 3.141592653589793 rad + pos: -3.5,11.5 parent: 1 - - uid: 317 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 81 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,1.5 + pos: -3.5,5.5 parent: 1 - - uid: 318 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 97 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,2.5 + rot: -1.5707963267948966 rad + pos: -6.5,7.5 parent: 1 - - uid: 319 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 + rot: -1.5707963267948966 rad + pos: 0.5,7.5 parent: 1 - - uid: 320 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 111 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,4.5 + pos: -3.5,9.5 parent: 1 - - uid: 321 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 112 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,3.5 + pos: -3.5,10.5 parent: 1 - - uid: 322 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 113 components: - type: Transform - pos: -2.5,-2.5 + rot: 3.141592653589793 rad + pos: -3.5,12.5 parent: 1 - - uid: 323 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 124 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,5.5 + pos: -3.5,8.5 parent: 1 - - uid: 324 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-4.5 + rot: -1.5707963267948966 rad + pos: -4.5,7.5 parent: 1 - - uid: 325 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 152 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,14.5 + pos: -1.5,4.5 parent: 1 - - uid: 326 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 158 components: - type: Transform - pos: -2.5,4.5 + rot: 3.141592653589793 rad + pos: -1.5,3.5 parent: 1 - - uid: 327 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 159 components: - type: Transform - pos: -2.5,-0.5 + rot: 3.141592653589793 rad + pos: -1.5,2.5 parent: 1 - - uid: 328 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 172 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-0.5 + pos: -5.5,0.5 parent: 1 - - uid: 329 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,1.5 + rot: 3.141592653589793 rad + pos: -1.5,5.5 parent: 1 - - uid: 330 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 303 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,3.5 + pos: -5.5,2.5 parent: 1 - - uid: 331 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 315 components: - type: Transform - pos: -2.5,0.5 + pos: -3.5,14.5 parent: 1 - - uid: 332 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 319 components: - type: Transform - pos: -2.5,3.5 + rot: 1.5707963267948966 rad + pos: -1.5,13.5 parent: 1 - - uid: 333 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 320 components: - type: Transform - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: -2.5,12.5 parent: 1 - - uid: 334 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 322 components: - type: Transform - pos: -2.5,7.5 + pos: -2.5,-2.5 parent: 1 - - uid: 335 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 324 components: - type: Transform - pos: -2.5,8.5 + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 parent: 1 - - uid: 336 + - uid: 326 components: - type: Transform - pos: -2.5,9.5 + rot: 3.141592653589793 rad + pos: -1.5,14.5 parent: 1 - - uid: 337 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 327 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 331 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 332 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,1.5 + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,1.5 + pos: -1.5,10.5 parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 + pos: -1.5,9.5 parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 340 components: - type: Transform rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,1.5 + rot: 3.141592653589793 rad + pos: -3.5,2.5 parent: 1 - - uid: 342 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,1.5 + rot: 3.141592653589793 rad + pos: -5.5,4.5 parent: 1 - - uid: 343 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 345 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,15.5 + pos: -5.5,6.5 parent: 1 - - uid: 344 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 348 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 349 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,13.5 + pos: -1.5,13.5 parent: 1 - - uid: 345 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,12.5 + rot: 3.141592653589793 rad + pos: 0.5,0.5 parent: 1 - - uid: 346 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 353 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 357 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,12.5 + pos: -2.5,13.5 parent: 1 - - uid: 347 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 359 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: -3.5,12.5 parent: 1 - - uid: 348 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 360 components: - type: Transform - pos: -2.5,-1.5 + rot: 3.141592653589793 rad + pos: 0.5,5.5 parent: 1 - - uid: 349 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 361 + components: + - type: Transform + pos: -3.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 366 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 449 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 513 components: - type: Transform rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 607 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 1 - - uid: 350 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,2.5 + pos: -0.5,-0.5 parent: 1 - - uid: 351 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 609 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,4.5 + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 parent: 1 - - uid: 352 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 610 components: - type: Transform - pos: -2.5,10.5 + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 parent: 1 - - uid: 353 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 611 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,12.5 + pos: -5.5,-0.5 parent: 1 - - uid: 354 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,1.5 + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 parent: 1 - - uid: 355 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,1.5 + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 615 + components: + - type: Transform + pos: 2.5,-2.5 parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 616 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeTJunction entities: - - uid: 356 + - uid: 314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 316 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,2.5 + pos: -1.5,6.5 parent: 1 - - uid: 357 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 343 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,6.5 + pos: 0.5,1.5 parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 358 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: -5.5,1.5 parent: 1 -- proto: GasVentPump - entities: - - uid: 359 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 450 components: - type: Transform - pos: 0.5,6.5 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 360 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,12.5 + pos: 2.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 361 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVentPump + entities: + - uid: 317 components: - type: Transform - pos: -5.5,6.5 + rot: -1.5707963267948966 rad + pos: -0.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 362 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 336 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,6.5 + pos: -4.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 363 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 347 + components: + - type: Transform + pos: -3.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 431 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-1.5 + pos: -5.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 364 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 433 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 438 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 443 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-1.5 + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasVentScrubber + entities: + - uid: 310 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 365 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 366 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,1.5 + pos: -8.5,-0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 367 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 362 components: - type: Transform - pos: -2.5,16.5 + rot: 1.5707963267948966 rad + pos: -4.5,12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 368 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 + rot: 1.5707963267948966 rad + pos: -8.5,7.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GeneratorBasic15kW entities: - uid: 369 @@ -2844,8 +3133,6 @@ entities: - type: Transform pos: -3.5,-3.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: PlasmaReinforcedWindowDirectional entities: - uid: 425 @@ -2880,49 +3167,32 @@ entities: parent: 1 - proto: Poweredlight entities: - - uid: 430 + - uid: 367 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 431 + - uid: 368 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,4.5 + pos: -3.5,7.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 432 + - uid: 430 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,3.5 + pos: 2.5,14.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 433 + - uid: 432 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 0.5,14.5 + rot: 1.5707963267948966 rad + pos: 0.5,3.5 parent: 1 - type: ApcPowerReceiver powerLoad: 0 - uid: 434 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -3.5,1.5 @@ -2931,66 +3201,31 @@ entities: powerLoad: 0 - uid: 435 components: - - type: MetaData - flags: PvsPriority - - type: Transform - pos: -1.5,7.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 436 - components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,16.5 + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 437 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,9.5 parent: 1 - type: ApcPowerReceiver powerLoad: 0 - - uid: 438 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 439 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,3.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 440 components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 + rot: 1.5707963267948966 rad + pos: -8.5,7.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 441 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-0.5 parent: 1 @@ -2998,37 +3233,17 @@ entities: powerLoad: 0 - uid: 442 components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 443 - components: - - type: MetaData - flags: PvsPriority - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + pos: -7.5,14.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 444 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -6.5,14.5 + rot: 3.141592653589793 rad + pos: -0.5,16.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 445 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: -0.5,11.5 @@ -3037,52 +3252,22 @@ entities: powerLoad: 0 - uid: 446 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: -8.5,9.5 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 447 components: - - type: MetaData - flags: PvsPriority - type: Transform - pos: 3.5,9.5 + rot: -1.5707963267948966 rad + pos: 3.5,7.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 448 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 449 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 450 - components: - - type: MetaData - flags: PvsPriority - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 + pos: -4.5,16.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 0 - proto: RandomVendingDrinks entities: - uid: 205 @@ -3097,6 +3282,26 @@ entities: - type: Transform pos: -5.5,2.5 parent: 1 +- proto: Screen + entities: + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 - proto: ShuttleWindow entities: - uid: 451 @@ -3445,24 +3650,12 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,13.5 parent: 1 - - uid: 511 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-4.5 - parent: 1 - uid: 512 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 1 - - uid: 513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 1 - proto: ToolboxElectricalFilled entities: - uid: 514 @@ -3476,8 +3669,6 @@ entities: entities: - uid: 515 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 1.5,14.5 parent: 1 @@ -3485,8 +3676,6 @@ entities: entities: - uid: 516 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: -1.5,7.5 parent: 1 @@ -3494,8 +3683,6 @@ entities: entities: - uid: 517 components: - - type: MetaData - flags: SessionSpecific - type: Transform pos: 2.5,14.5 parent: 1 @@ -3503,556 +3690,402 @@ entities: entities: - uid: 518 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,15.5 parent: 1 - uid: 519 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,15.5 parent: 1 - uid: 520 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,15.5 parent: 1 - uid: 521 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -8.5,14.5 parent: 1 - uid: 522 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,16.5 parent: 1 - uid: 523 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,10.5 parent: 1 - uid: 524 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,10.5 parent: 1 - uid: 525 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -3.5,2.5 parent: 1 - uid: 526 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,-3.5 parent: 1 - uid: 527 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,15.5 parent: 1 - uid: 528 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 1 - uid: 529 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,0.5 parent: 1 - uid: 530 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-3.5 parent: 1 - uid: 531 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -9.5,7.5 parent: 1 - uid: 532 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,10.5 parent: 1 - uid: 533 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 1 - uid: 534 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-3.5 parent: 1 - uid: 535 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-1.5 parent: 1 - uid: 536 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,0.5 parent: 1 - uid: 537 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,-4.5 parent: 1 - uid: 538 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-4.5 parent: 1 - uid: 539 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 1 - uid: 540 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 1 - uid: 541 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 1 - uid: 542 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -8.5,-3.5 parent: 1 - uid: 543 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-3.5 parent: 1 - uid: 544 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,15.5 parent: 1 - uid: 545 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-0.5 parent: 1 - uid: 546 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,10.5 parent: 1 - uid: 547 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-2.5 parent: 1 - uid: 548 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,-3.5 parent: 1 - uid: 549 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,10.5 parent: 1 - uid: 550 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,-3.5 parent: 1 - uid: 551 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-0.5 parent: 1 - uid: 552 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-3.5 parent: 1 - uid: 553 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,-3.5 parent: 1 - uid: 554 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: -4.5,3.5 parent: 1 - uid: 555 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,10.5 parent: 1 - uid: 556 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-5.5 parent: 1 - uid: 557 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,4.5 parent: 1 - uid: 558 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-2.5 parent: 1 - uid: 559 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-0.5 parent: 1 - uid: 560 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-1.5 parent: 1 - uid: 561 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,10.5 parent: 1 - uid: 562 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -7.5,-3.5 parent: 1 - uid: 563 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 4.5,7.5 parent: 1 - uid: 564 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,11.5 parent: 1 - uid: 565 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -6.5,15.5 parent: 1 - uid: 566 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,15.5 parent: 1 - uid: 567 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 1.5,15.5 parent: 1 - uid: 568 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,15.5 parent: 1 - uid: 569 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -5.5,16.5 parent: 1 - uid: 570 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,10.5 parent: 1 - uid: 571 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,10.5 parent: 1 - uid: 572 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,15.5 parent: 1 - uid: 573 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,10.5 parent: 1 - uid: 574 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-2.5 parent: 1 - uid: 575 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 0.5,10.5 parent: 1 - uid: 576 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,4.5 parent: 1 - uid: 577 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,10.5 parent: 1 - uid: 578 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -5.5,10.5 parent: 1 - uid: 579 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,10.5 parent: 1 - uid: 580 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,8.5 parent: 1 - uid: 581 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,-5.5 parent: 1 - uid: 582 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,8.5 parent: 1 - uid: 583 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,-2.5 parent: 1 - uid: 584 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -0.5,0.5 parent: 1 - uid: 585 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,-5.5 parent: 1 - uid: 586 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -2.5,-5.5 parent: 1 - uid: 587 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,-5.5 parent: 1 - uid: 588 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -1.5,0.5 parent: 1 - uid: 589 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -9.5,-0.5 parent: 1 - uid: 590 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -4.5,8.5 parent: 1 - uid: 591 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: -3.5,8.5 parent: 1 - uid: 592 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: -8.5,11.5 parent: 1 - uid: 593 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 3.5,-3.5 parent: 1 - uid: 594 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,-3.5 parent: 1 diff --git a/Resources/Maps/Shuttles/corvax_mining.yml b/Resources/Maps/Shuttles/corvax_mining.yml index 67bcbcaa94f..1b2aadfd572 100644 --- a/Resources/Maps/Shuttles/corvax_mining.yml +++ b/Resources/Maps/Shuttles/corvax_mining.yml @@ -3,37 +3,37 @@ meta: postmapinit: false tilemap: 0: Space - 51: FloorGrayConcrete - 104: FloorTechMaint - 120: Lattice - 121: Plating + 77: FloorMining + 79: FloorMiningLight + 157: Lattice + 158: Plating entities: - proto: "" entities: - uid: 1 components: - type: MetaData - name: Tara NT-KA + name: NT-SAL "Блоха" - type: Transform - pos: -0.64062524,-0.22296286 + pos: -0.52229434,-0.43310228 parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: MwAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAMwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAMwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ngAAAAAATwAAAAAATQAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAATwAAAAAATQAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAngAAAAAAngAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAngAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMwAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAATQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAATQAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAngAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAAngAAAAAAngAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAngAAAAAATwAAAAAAngAAAAAAnQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAngAAAAAAngAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnQAAAAAAngAAAAAATwAAAAAA version: 6 - type: Broadphase - type: Physics @@ -44,7 +44,6 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} - - type: SalvageShuttle - type: OccluderTree - type: SpreaderGrid - type: Shuttle @@ -56,2792 +55,579 @@ entities: chunkCollection: version: 2 nodes: - - node: - color: '#FFFFFFFF' - id: Box - decals: - 61: -2,-2 - - node: - color: '#FFFFFFFF' - id: BoxGreyscale - decals: - 59: 2,-2 - 60: 2,-3 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 112: -3,4 - - node: - cleanable: True - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Caution - decals: - 113: 3,4 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Delivery - decals: - 114: -1,0 - - node: - cleanable: True - color: '#835432FF' - id: Dirt - decals: - 115: 4,4 - 116: 4,3 - 117: 3,4 - 118: 4,4 - 122: 4,3 - 123: 4,5 - 124: 0,4 - 125: 0,3 - 126: 0,0 - 127: -2,0 - 128: -3,3 - 129: -4,5 - 130: -4,3 - 131: -4,4 - 132: 0,7 - 133: -2,8 - 134: -1,10 - 135: 0,11 - 136: 0,12 - 137: 1,10 - 138: 0,10 - 139: 0,10 - 140: 0,9 - 141: -1,-2 - 142: -2,0 - 143: 0,2 - 144: 3,5 - 145: 3,2 - 153: -1,-2 - 154: 2,-3 - 158: 2,7 - 159: 3,8 - 160: 3,7 - 161: 2,8 - 162: 2,7 - node: cleanable: True - color: '#FFFFFFFF' - id: Dirt - decals: - 6: 2,6 - 7: 2,6 - 36: 0,4 - 37: 3,4 - 38: -3,4 - 39: -3,4 - 40: 3,3 - 41: -1,7 - 42: 2,8 - 43: 2,8 - 44: 3,7 - 45: 0,10 - 46: 0,10 - 100: -1,2 - 101: 0,1 - 102: -1,-2 - 103: 2,3 - - node: - cleanable: True - color: '#835432FF' - id: DirtHeavy - decals: - 146: -1,3 - 148: 0,5 - 149: 0,8 - 151: 2,7 - 152: -3,8 - - node: - cleanable: True - color: '#FFFFFFFF' + color: '#000000FF' id: DirtHeavy decals: - 47: 3,3 - 48: 0,4 - 49: 2,8 + 0: 0,-2 + 2: 1,0 - node: cleanable: True - color: '#835432FF' + color: '#000000FF' id: DirtHeavyMonotile decals: - 119: 4,3 - 120: 4,4 - 121: 4,3 - 155: 2,-2 + 4: 0,0 + 5: 1,-1 + 6: 0,2 + 29: 2,1 - node: cleanable: True - color: '#FFFFFFFF' + zIndex: 1 + color: '#000000FF' id: DirtHeavyMonotile decals: - 50: -2,1 - 51: -1,1 - 52: 0,3 - 53: -3,3 - 104: 1,3 - 105: 1,1 - 106: -1,-3 + 32: -1,0 - node: cleanable: True - color: '#FFFFFFFF' + color: '#000000FF' id: DirtLight decals: - 54: 2,3 - 55: 3,4 - 56: 2,8 - 57: 2,8 - 107: 0,7 - 108: -2,4 + 8: -1,-1 + 9: 0,0 + 10: 0,1 + 28: -2,0 + 30: -2,0 - node: cleanable: True - color: '#835432FF' + color: '#000000FF' id: DirtMedium decals: - 147: 0,4 - 150: 0,8 - 156: 3,2 - 157: 3,8 + 13: 0,3 - node: cleanable: True - color: '#FFFFFFFF' + zIndex: 1 + color: '#000000FF' id: DirtMedium decals: - 8: 2,6 - 58: -3,4 - - node: - cleanable: True - color: '#52B4E9CC' - id: GrayConcreteTrimInnerNw - decals: - 111: 2,6 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimCornerNe - decals: - 77: 1,11 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimCornerNw - decals: - 76: -1,11 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimCornerSe - decals: - 67: 2,0 - 70: 3,2 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimCornerSe - decals: - 5: 1,9 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimCornerSw - decals: - 68: -2,0 - 69: -3,2 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimEndE - decals: - 75: 2,10 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimEndN - decals: - 62: 0,8 - 73: 0,12 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimEndN - decals: - 2: 3,8 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimEndS - decals: - 63: 0,7 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimEndW - decals: - 74: -2,10 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimInnerNe - decals: - 78: 0,11 - 82: 1,10 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimInnerNw - decals: - 79: 0,11 - 83: -1,10 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimInnerNw - decals: - 3: 3,7 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimInnerSe - decals: - 81: 1,10 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimInnerSw - decals: - 80: -1,10 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineE - decals: - 0: 3,6 - 1: 3,7 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimLineN - decals: - 71: 3,5 - 72: -3,5 - 84: 0,5 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineN - decals: - 4: 1,7 - - node: - color: '#E8A3FFCC' - id: OldConcreteTrimLineS - decals: - 64: 0,0 - 65: -1,0 - 66: 1,0 - - node: - color: '#FFFFFFFF' - id: OldConcreteTrimLineS - decals: - 35: 0,10 - - node: - cleanable: True - color: '#52B4E9CC' - id: OldConcreteTrimLineW - decals: - 109: 2,8 - 110: 2,7 - - node: - cleanable: True - color: '#80C71F83' - id: Rock01 - decals: - 167: -1.3882275,1.4606048 - - node: - cleanable: True - color: '#A7232387' - id: Rock03 - decals: - 184: 0.04319811,6.691124 - - node: - cleanable: True - color: '#FFFFFF7F' - id: Rust - decals: - 87: 0,2 - 88: 3,5 - 89: -1,10 - 90: 0,0 - 91: -3,3 - 92: -1,5 - 93: 2,4 - 94: 0,1 - 95: -1,-3 - 96: 2,-2 - 97: -1,0 - 98: -2,8 - 99: 0,11 - - node: - color: '#FFFFFFFF' - id: WarnCornerNE - decals: - 17: -1,5 - 18: 2,2 - 19: -1,2 - 24: 2,5 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 20: -2,5 - 21: 1,5 - 22: 1,2 - 23: -2,2 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 13: 2,1 - 14: -1,1 - 15: -1,4 - 16: 2,4 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 9: 1,4 - 10: -2,4 - 11: -2,1 - 12: 1,1 - - node: - color: '#FFFFFFFF' - id: WarnFull - decals: - 29: 4,5 - 30: 4,4 - 31: 4,3 - 32: -4,5 - 33: -4,4 - 34: -4,3 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 27: 3,3 - 28: 3,4 - 85: 3,5 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 25: -3,4 - 26: -3,3 - 86: -3,5 - - node: - cleanable: True - color: '#A7232387' - id: brush - decals: - 192: 0.16218781,5.0070925 - - node: - cleanable: True - color: '#80C71F83' - id: bushsnowa2 - decals: - 180: 0.83070946,3.003913 - - node: - cleanable: True - color: '#A7232387' - id: footprint - decals: - 198: 0.1297741,3.2838202 - 199: -0.22095609,7.456591 - 200: -0.06020546,4.4520802 - 201: 0.7132914,3.7530742 - 202: 0.6256094,4.2934823 - - node: - cleanable: True - color: '#80C71F83' - id: grasssnow03 - decals: - 179: 1.444489,2.361264 - - node: - cleanable: True - color: '#80C71F83' - id: grasssnow05 - decals: - 170: -1.0847812,1.9935191 - 178: 1.556845,3.0283506 - - node: - cleanable: True - color: '#A7232387' - id: grasssnow06 - decals: - 196: 0.19141603,4.919459 - - node: - cleanable: True - color: '#80C71F83' - id: grasssnow07 - decals: - 169: -1.0470554,1.0516464 - 171: -2.0213237,0.09458542 - - node: - cleanable: True - color: '#80C71F83' - id: grasssnow08 - decals: - 177: 0.72330904,2.9991395 - - node: - cleanable: True - color: '#A7232387' - id: grasssnow08 - decals: - 189: -0.2628801,5.574161 - 190: -0.20442486,5.1359916 - 194: -0.05701852,4.525106 - - node: - cleanable: True - color: '#80C71F83' - id: grasssnow10 - decals: - 176: 0.51895523,2.8697019 - - node: - cleanable: True - color: '#80C71F83' - id: grasssnow11 - decals: - 172: -1.4700725,0.5289426 - 173: -2.0836105,0.2076186 - 174: -2.2726452,1.6266642 - - node: - cleanable: True - color: '#A7232387' - id: grasssnow11 - decals: - 197: 0.4365859,3.6594229 + 31: -1,1 + 33: 1,1 + 34: 0,2 - node: cleanable: True - color: '#A7232387' - id: grasssnow12 + color: '#00000033' + id: Grassb4 decals: - 191: -0.56850076,5.413499 - 195: -0.14470077,3.9993029 + 14: 0.44463694,0.6452848 - node: cleanable: True - color: '#80C71F83' - id: grasssnow13 + color: '#00000033' + id: Grassb5 decals: - 168: -2.0687969,2.0594358 + 15: -0.8780801,-0.9602648 - node: - cleanable: True - color: '#80C71F83' - id: grasssnowc3 - decals: - 175: 0.62125134,2.446138 - - node: - cleanable: True - color: '#A7232387' - id: line - decals: - 193: 0.33755326,4.247598 - - node: - cleanable: True - color: '#80C71F83' - id: smallbrush - decals: - 166: -1.6439453,1.6066613 - - node: - cleanable: True - color: '#A7232387' - id: smallbrush - decals: - 183: 0.12680864,6.693183 - 186: -0.16058326,6.019264 - 187: 0.102464914,5.785574 - 188: 0.058623314,5.449644 - - node: - cleanable: True - color: '#80C71F83' - id: splatter + zIndex: -1 + color: '#37373CFF' + id: WoodTrimThinLineEWhite decals: - 163: -1.4247388,1.0224353 - 164: -1.950834,1.3291541 - 165: -1.4393517,1.9279852 + 23: 1,-1 + 24: 1,0 + 25: 1,1 - node: - cleanable: True - color: '#A7232387' - id: splatter + zIndex: -1 + color: '#37373CFF' + id: WoodTrimThinLineWWhite decals: - 181: 0.18526387,6.9706903 - 182: -0.004715681,6.5763373 - 185: 0.117078304,6.282166 + 20: -1,-1 + 21: -1,0 + 22: -1,1 - type: GridAtmosphere version: 2 data: - tiles: - 0,0: - 0: 65399 - 0,-1: - 0: 6001 - 1: 8 - -1,0: - 0: 61132 - 1: 17 - 0,1: - 0: 54751 - 2: 32 - -1,1: - 0: 17646 - 2: 8192 - 0,2: - 0: 14105 - 2: 4 - 1: 32768 - -1,2: - 0: 35854 - 1: 8208 - 0,3: - 0: 1 - 1: 36 - -1,3: - 1: 132 - 1,0: - 1: 17 - 1,2: - 1: 18 - 1,1: - 1: 512 - -2,1: - 1: 2048 - -2,2: - 1: 8 - 0,-2: - 0: 4096 - 1: 8192 - -1,-2: - 1: 32768 - -1,-1: - 0: 3264 - 1: 19 - 1,-1: - 1: 273 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - immutable: True - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 23.57087 - - 88.67137 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance -- proto: ActionToggleLight - entities: - - uid: 3 - components: - - type: Transform - parent: 2 - - type: InstantAction - container: 2 -- proto: AirAlarm + - type: SalvageShuttle +- proto: AirlockShuttleSyndicate entities: - - uid: 4 + - uid: 33 components: - type: Transform - pos: 1.5,6.5 + pos: 0.5,-2.5 parent: 1 - - type: DeviceList - devices: - - 160 - - 12 - - 158 - - 116 - - 118 - - 117 - - uid: 5 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 1 - - type: DeviceList - devices: - - 115 - - 161 - - 11 - - 159 -- proto: AirlockCargoGlassLocked + - type: ContainerFill + containers: + board: [ DoorElectronicsSalvage ] +- proto: APCBasic entities: - uid: 6 components: - type: Transform - pos: 0.5,6.5 - parent: 1 - - uid: 7 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 -- proto: AirlockEngineering - entities: - - uid: 8 - components: - - type: Transform - pos: -1.5,6.5 - parent: 1 -- proto: AirlockMedicalGlass - entities: - - uid: 9 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 1 -- proto: AirlockShuttleAssembly - entities: - - uid: 10 - components: - - type: Transform - pos: 0.5,-4.5 - parent: 1 -- proto: AirSensor - entities: - - uid: 11 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 1 - - uid: 12 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 -- proto: APCHighCapacity - entities: - - uid: 13 - components: - - type: Transform - pos: -0.5,6.5 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 parent: 1 -- proto: Ash +- proto: BodyBagFolded entities: - - uid: 14 + - uid: 74 components: - type: Transform - pos: -0.5896323,3.806967 + pos: 1.6377051,-0.2919068 parent: 1 -- proto: AsteroidRock +- proto: CableApcExtension entities: - - uid: 15 - components: - - type: Transform - pos: -3.5,-2.5 - parent: 1 - - uid: 16 + - uid: 54 components: - type: Transform - pos: -2.5,-3.5 + pos: -1.5,-0.5 parent: 1 - - uid: 17 + - uid: 55 components: - type: Transform - pos: 4.5,8.5 + pos: -1.5,0.5 parent: 1 - - uid: 18 + - uid: 56 components: - type: Transform - pos: 5.5,7.5 + pos: -0.5,0.5 parent: 1 - - uid: 19 + - uid: 57 components: - type: Transform - pos: -2.5,-2.5 + pos: 0.5,0.5 parent: 1 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 20 + - uid: 58 components: - type: Transform - pos: 0.5,6.5 + pos: 0.5,1.5 parent: 1 -- proto: Barricade - entities: - - uid: 21 + - uid: 60 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-0.5 parent: 1 -- proto: BlastDoor - entities: - - uid: 22 - components: - - type: Transform - pos: -3.5,3.5 - parent: 1 - - uid: 23 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1 - - uid: 24 - components: - - type: Transform - pos: 4.5,5.5 - parent: 1 -- proto: BlastDoorFrame - entities: - - uid: 25 - components: - - type: Transform - anchored: True - pos: 4.5,3.5 - parent: 1 - - uid: 26 - components: - - type: Transform - anchored: True - pos: 4.5,4.5 - parent: 1 - - uid: 27 - components: - - type: Transform - anchored: True - pos: -3.5,5.5 - parent: 1 -- proto: BoxMRE - entities: - - uid: 28 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.37141323,0.56247854 - parent: 1 -- proto: BrokenBottle - entities: - - uid: 29 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.18702447,10.361353 - parent: 1 -- proto: CableApcExtension - entities: - - uid: 30 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 1 - - uid: 31 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 1 - - uid: 32 - components: - - type: Transform - pos: 0.5,-3.5 - parent: 1 - - uid: 33 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1 - - uid: 34 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1 - - uid: 35 - components: - - type: Transform - pos: 2.5,7.5 - parent: 1 - - uid: 36 - components: - - type: Transform - pos: 2.5,6.5 - parent: 1 - - uid: 37 - components: - - type: Transform - pos: 1.5,6.5 - parent: 1 - - uid: 38 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - - uid: 39 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1 - - uid: 40 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1 - - uid: 41 - components: - - type: Transform - pos: 0.5,5.5 - parent: 1 - - uid: 42 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 43 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1 - - uid: 44 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1 - - uid: 45 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1 - - uid: 46 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 - - uid: 48 - components: - - type: Transform - pos: -0.5,3.5 - parent: 1 - - uid: 49 - components: - - type: Transform - pos: -1.5,3.5 - parent: 1 - - uid: 50 - components: - - type: Transform - pos: -2.5,3.5 - parent: 1 - - uid: 51 - components: - - type: Transform - pos: 1.5,3.5 - parent: 1 - - uid: 52 - components: - - type: Transform - pos: 2.5,3.5 - parent: 1 - - uid: 53 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1 - - uid: 54 - components: - - type: Transform - pos: -1.5,6.5 - parent: 1 - - uid: 55 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 - - uid: 56 - components: - - type: Transform - pos: -2.5,7.5 - parent: 1 - - uid: 57 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - - uid: 58 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1 - - uid: 59 - components: - - type: Transform - pos: 0.5,11.5 - parent: 1 - - uid: 60 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1 - - uid: 61 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1 - - uid: 62 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1 - - uid: 63 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1 - - uid: 64 - components: - - type: Transform - pos: 1.5,-2.5 - parent: 1 - - uid: 65 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 1 - - uid: 66 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 1 - - uid: 67 - components: - - type: Transform - pos: 2.5,-2.5 - parent: 1 - - uid: 68 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1 - proto: CableHV - entities: - - uid: 69 - components: - - type: Transform - pos: -1.5,-1.5 - parent: 1 - - uid: 70 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 1 -- proto: CableMV - entities: - - uid: 71 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1 - - uid: 72 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1 - - uid: 73 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 1 - - uid: 74 - components: - - type: Transform - pos: 0.5,-2.5 - parent: 1 - - uid: 75 - components: - - type: Transform - pos: 0.5,-1.5 - parent: 1 - - uid: 76 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 1 - - uid: 77 - components: - - type: Transform - pos: 0.5,5.5 - parent: 1 - - uid: 78 - components: - - type: Transform - pos: 0.5,0.5 - parent: 1 - - uid: 79 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 80 - components: - - type: Transform - pos: 0.5,-0.5 - parent: 1 - - uid: 81 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1 - - uid: 82 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1 - - uid: 83 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 -- proto: Catwalk - entities: - - uid: 84 - components: - - type: Transform - pos: -1.5,6.5 - parent: 1 - - uid: 85 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1 - - uid: 86 - components: - - type: Transform - pos: 1.5,2.5 - parent: 1 - - uid: 87 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - uid: 88 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - - uid: 89 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,4.5 - parent: 1 - - uid: 90 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,5.5 - parent: 1 - - uid: 91 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,4.5 - parent: 1 - - uid: 92 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 1 - - uid: 93 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 1 - - uid: 94 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 1 - - uid: 95 - components: - - type: Transform - pos: -2.5,7.5 - parent: 1 - - uid: 96 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 - - uid: 97 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - - uid: 98 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 1 - - uid: 99 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 1 -- proto: ChairPilotSeat - entities: - - uid: 100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 1 - - uid: 101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,11.5 - parent: 1 - - uid: 102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - - uid: 103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 - parent: 1 -- proto: ClosetWallBlack - entities: - - uid: 104 - components: - - type: Transform - pos: -1.5,11.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True -- proto: ClosetWallGrey - entities: - - uid: 105 - components: - - type: Transform - pos: 2.5,9.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True -- proto: ClosetWallYellow - entities: - - uid: 106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True -- proto: ClothingHeadHatWeldingMaskFlame - entities: - - uid: 107 - components: - - type: Transform - pos: -2.468464,7.596216 - parent: 1 -- proto: ComputerBroken - entities: - - uid: 108 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1 - - uid: 109 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1 -- proto: CrateGenericSteel - entities: - - uid: 110 - components: - - type: Transform - pos: 1.5,5.5 - parent: 1 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: CrystalGreen - entities: - - uid: 111 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1 -- proto: EncryptionKeyCargo - entities: - - uid: 113 - components: - - type: Transform - parent: 112 - - type: Physics - canCollide: False -- proto: FireAlarm - entities: - - uid: 114 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 - - type: DeviceList - devices: - - 118 - - 116 - - 117 -- proto: Firelock - entities: - - uid: 115 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - - uid: 116 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1 - - uid: 117 - components: - - type: Transform - pos: -1.5,6.5 - parent: 1 - - uid: 118 - components: - - type: Transform - pos: 2.5,6.5 - parent: 1 -- proto: FlashlightLantern - entities: - - uid: 2 - components: - - type: Transform - pos: 2.4599285,0.55610615 - parent: 1 - - type: HandheldLight - toggleActionEntity: 3 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 3 - - type: ActionsContainer -- proto: FloorTileItemOldConcrete - entities: - - uid: 119 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.2213733,3.5717697 - parent: 1 - - uid: 120 - components: - - type: Transform - pos: -2.0569353,3.0776138 - parent: 1 - - uid: 121 - components: - - type: Transform - pos: 1.0368147,1.8588638 - parent: 1 -- proto: FoodMeatXeno - entities: - - uid: 122 - components: - - type: Transform - pos: 0.58856153,2.956387 - parent: 1 - - uid: 123 - components: - - type: Transform - pos: 1.4507747,2.5912461 - parent: 1 -- proto: FoodTinBeansTrash - entities: - - uid: 124 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.0191097,3.8215728 - parent: 1 -- proto: GasCanisterBrokenBase - entities: - - uid: 125 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 1 -- proto: GasPassiveVent - entities: - - uid: 126 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeBend - entities: - - uid: 127 - components: - - type: Transform - pos: 3.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 130 - components: - - type: Transform - pos: 2.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 131 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 1 -- proto: GasPipeStraight - entities: - - uid: 133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 134 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 135 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 136 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 137 - components: - - type: Transform - pos: 3.5,1.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 138 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 139 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 141 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 144 - components: - - type: Transform - pos: 2.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 145 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 147 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 149 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 150 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 151 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeTJunction - entities: - - uid: 152 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 154 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 155 - components: - - type: Transform - pos: 1.5,-1.5 - parent: 1 -- proto: GasPort - entities: - - uid: 156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 1 - - uid: 157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 1 -- proto: GasVentPump - entities: - - uid: 158 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 159 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 160 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 161 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 162 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: Girder - entities: - - uid: 163 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 1 - - uid: 164 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,11.5 - parent: 1 - - uid: 165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,7.5 - parent: 1 - - uid: 166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 - parent: 1 -- proto: GravityGeneratorMini - entities: - - uid: 181 - components: - - type: Transform - pos: -2.5,8.5 - parent: 1 -- proto: Grille - entities: - - uid: 168 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 -- proto: GrilleBroken - entities: - - uid: 169 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,13.5 - parent: 1 - - uid: 170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - - uid: 171 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 1 - - uid: 172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 1 - - uid: 173 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1 - - uid: 174 - components: - - type: Transform - pos: 0.5,13.5 - parent: 1 - - uid: 175 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-3.5 - parent: 1 - - uid: 176 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 1 -- proto: GrilleDiagonal - entities: - - uid: 177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1 - - uid: 178 - components: - - type: Transform - pos: -1.5,12.5 - parent: 1 - - uid: 179 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 180 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 1 -- proto: InflatableWall - entities: - - uid: 182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 1 - - uid: 183 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 - - uid: 184 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 - parent: 1 - - uid: 185 - components: - - type: Transform - pos: 2.5,5.5 - parent: 1 -- proto: LightBulbBroken - entities: - - uid: 186 - components: - - type: Transform - pos: 2.5291662,7.5681953 - parent: 1 -- proto: LightTubeBroken - entities: - - uid: 187 - components: - - type: Transform - pos: -1.5898373,2.6349227 - parent: 1 -- proto: MachineFrame - entities: - - uid: 188 - components: - - type: Transform - pos: -1.5,-2.5 - parent: 1 - - uid: 189 - components: - - type: Transform - pos: 4.5,-3.5 - parent: 1 - - uid: 190 - components: - - type: Transform - pos: 5.5,8.5 - parent: 1 -- proto: MachineFrameDestroyed - entities: - - uid: 167 - components: - - type: Transform - pos: -1.5,8.5 - parent: 1 - - uid: 191 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1 - - uid: 192 - components: - - type: Transform - pos: -3.5,-3.5 - parent: 1 -- proto: Mattress - entities: - - uid: 193 - components: - - type: Transform - pos: 3.5,7.5 - parent: 1 -- proto: MiningWindow - entities: - - uid: 194 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - - uid: 195 - components: - - type: Transform - pos: 0.5,13.5 - parent: 1 -- proto: MiningWindowDiagonal - entities: - - uid: 196 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 197 - components: - - type: Transform - pos: -1.5,12.5 - parent: 1 - - uid: 198 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 1 -- proto: PaperScrap - entities: - - uid: 199 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.052336574,0.93239975 - parent: 1 - - uid: 200 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.047335,7.561444 - parent: 1 - - uid: 201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.21071094,1.2245126 - parent: 1 - - uid: 202 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6441438,0.59335303 - parent: 1 - - uid: 203 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.7705777,8.408798 - parent: 1 - - uid: 204 - components: - - type: Transform - pos: 3.5597222,8.350376 - parent: 1 -- proto: PartRodMetal1 - entities: - - uid: 205 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.4407916,-2.689581 - parent: 1 - - uid: 206 - components: - - type: Transform - pos: 1.3176188,-1.5503408 - parent: 1 - - uid: 207 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.4381268,2.6804874 - parent: 1 - - uid: 208 - components: - - type: Transform - pos: -0.5931232,2.3992374 - parent: 1 - - uid: 209 - components: - - type: Transform - pos: -0.7181232,2.4304874 - parent: 1 - - uid: 210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.92420244,5.548822 - parent: 1 - - uid: 211 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.3148274,4.126947 - parent: 1 - - uid: 212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.0648274,4.189447 - parent: 1 - - uid: 213 - components: - - type: Transform - pos: -2.0804524,4.236322 - parent: 1 - - uid: 214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.1801233,4.6493077 - parent: 1 - - uid: 215 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.28004026,-2.645764 - parent: 1 -- proto: PortableGeneratorJrPacman - entities: - - uid: 216 - components: - - type: Transform - anchored: True - pos: -1.5,-1.5 - parent: 1 - - type: Physics - bodyType: Static -- proto: PosterBroken - entities: - - uid: 217 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 1 -- proto: Poweredlight - entities: - - uid: 218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,1.5 - parent: 1 - - uid: 219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 1 -- proto: PoweredlightEmpty - entities: - - uid: 220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,1.5 - parent: 1 -- proto: PoweredSmallLight - entities: - - uid: 221 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - - uid: 222 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 1 -- proto: PoweredSmallLightEmpty - entities: - - uid: 223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 -- proto: PuddleVomit - entities: - - uid: 224 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1 -- proto: Rack - entities: - - uid: 225 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,0.5 - parent: 1 - - uid: 226 - components: - - type: Transform - pos: -2.5,7.5 - parent: 1 -- proto: RandomCargoCorpseSpawner - entities: - - uid: 227 - components: - - type: Transform - pos: 0.5,7.5 - parent: 1 -- proto: RandomPosterAny - entities: - - uid: 228 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 229 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - uid: 230 - components: - - type: Transform - pos: 1.5,7.5 - parent: 1 - - uid: 231 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1 -- proto: RandomSpawner - entities: - - uid: 232 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 - parent: 1 - - uid: 233 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1 - - uid: 234 - components: - - type: Transform - pos: -2.5,5.5 - parent: 1 -- proto: RandomSpawner100 - entities: - - uid: 235 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - uid: 236 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 1 - - uid: 237 - components: - - type: Transform - pos: 0.5,10.5 - parent: 1 -- proto: ScrapAirlock1 - entities: - - uid: 238 - components: - - type: Transform - pos: 0.3458058,-0.6496592 - parent: 1 -- proto: ScrapCanister1 - entities: - - uid: 239 - components: - - type: Transform - pos: 1.7127296,-1.5983542 - parent: 1 -- proto: ScrapCanister2 - entities: - - uid: 240 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.1028507,-2.1310747 - parent: 1 -- proto: ScrapFireExtinguisher - entities: - - uid: 241 - components: - - type: Transform - pos: -1.5810804,7.64327 - parent: 1 - - uid: 242 - components: - - type: Transform - pos: -1.5578551,-3.0641735 - parent: 1 -- proto: ScrapFirelock3 - entities: - - uid: 243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.6279428,-0.28154254 - parent: 1 -- proto: ScrapGlass - entities: - - uid: 244 - components: - - type: Transform - pos: 1.690835,11.313707 - parent: 1 - - uid: 245 - components: - - type: Transform - pos: -1.4256504,10.602234 - parent: 1 -- proto: ScrapIntercom - entities: - - uid: 246 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.6098764,10.642771 - parent: 1 - - uid: 247 - components: - - type: Transform - pos: 2.3134284,10.507761 - parent: 1 -- proto: ScrapMedkit - entities: - - uid: 248 - components: - - type: Transform - pos: 3.3003068,8.608303 - parent: 1 -- proto: ScrapSteel - entities: - - uid: 249 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.51688135,-1.620088 - parent: 1 - - uid: 250 - components: - - type: Transform - pos: 1.5002892,11.591215 - parent: 1 - - uid: 251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.447634,-3.6045825 - parent: 1 -- proto: ScrapTube - entities: - - uid: 252 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.106695,8.087474 - parent: 1 -- proto: ShardGlass - entities: - - uid: 253 - components: - - type: Transform - pos: 1.3410268,12.584703 - parent: 1 - - uid: 254 + entities: + - uid: 42 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.6479167,12.497068 + pos: -1.5,2.5 parent: 1 - - uid: 255 + - uid: 49 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.755634,12.57316 + pos: -0.5,2.5 parent: 1 - - uid: 256 +- proto: CableMV + entities: + - uid: 50 components: - type: Transform - pos: 1.1546474,10.906738 + pos: -1.5,2.5 parent: 1 - - uid: 257 + - uid: 51 components: - type: Transform - pos: 0.66843605,7.910858 + pos: -1.5,1.5 parent: 1 -- proto: SheetSteel1 - entities: - - uid: 258 + - uid: 52 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.6639365,10.795435 + pos: -1.5,0.5 parent: 1 - - uid: 259 + - uid: 53 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.4481461,7.691433 + pos: -1.5,-0.5 parent: 1 -- proto: SignalButtonDirectional +- proto: Catwalk entities: - - uid: 260 + - uid: 62 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,2.5 + pos: 0.5,-1.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 22: - - Pressed: Toggle - 23: - - Pressed: Toggle - - uid: 261 + - uid: 77 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 + pos: 0.5,0.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 24: - - Pressed: Toggle -- proto: SignNTMine - entities: - - uid: 262 + - uid: 78 components: - type: Transform - pos: 1.5,-0.5 + pos: 3.5,-1.5 parent: 1 - - uid: 263 + - uid: 79 components: - type: Transform - pos: -2.5,6.5 + pos: -2.5,-1.5 parent: 1 -- proto: SpaceTickSpawner - entities: - - uid: 264 + - uid: 80 components: - type: Transform - pos: 0.5,7.5 + pos: 0.5,1.5 parent: 1 - - uid: 265 + - uid: 81 components: - type: Transform - pos: -1.5,3.5 + pos: 0.5,-0.5 parent: 1 -- proto: SubstationMachineCircuitboard +- proto: ChairPilotSeat entities: - - uid: 266 + - uid: 18 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.7417412,-2.4539018 + rot: 3.141592653589793 rad + pos: 0.5,2.5 parent: 1 -- proto: Table - entities: - - uid: 267 + - uid: 34 components: - type: Transform - pos: 2.5,0.5 + rot: -1.5707963267948966 rad + pos: 1.5,1.5 parent: 1 - - uid: 268 + - uid: 35 components: - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 1 -- proto: TableReinforced +- proto: ComputerShuttleSalvage entities: - - uid: 269 + - uid: 16 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 + pos: 0.5,3.5 parent: 1 - - uid: 270 +- proto: GeneratorWallmountAPU + entities: + - uid: 40 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,10.5 + pos: -0.5,2.5 parent: 1 -- proto: TelecomServer +- proto: GravityGeneratorMini entities: - - uid: 112 + - uid: 39 components: - type: Transform - pos: -3.5,7.5 + pos: 2.5,1.5 parent: 1 - - type: ContainerContainer - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 113 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - type: Visibility - layer: 10 -- proto: Thruster +- proto: Grille entities: - - uid: 271 + - uid: 8 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 + pos: -0.5,3.5 parent: 1 - - uid: 272 + - uid: 20 components: - type: Transform - pos: -4.5,8.5 + pos: -2.5,0.5 parent: 1 - - uid: 273 + - uid: 21 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,0.5 + pos: 0.5,4.5 parent: 1 -- proto: WallMining - entities: - - uid: 274 + - uid: 23 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-2.5 + pos: 3.5,0.5 parent: 1 - - uid: 275 + - uid: 28 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 + pos: -2.5,1.5 parent: 1 - - uid: 276 + - uid: 29 components: - type: Transform - pos: -2.5,6.5 + pos: 1.5,3.5 parent: 1 - - uid: 277 + - uid: 45 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 1 - - uid: 278 +- proto: GrilleDiagonal + entities: + - uid: 22 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,0.5 + pos: 1.5,4.5 parent: 1 - - uid: 279 + - uid: 41 components: - type: Transform - pos: 2.5,-0.5 + pos: -0.5,4.5 parent: 1 - - uid: 280 +- proto: Gyroscope + entities: + - uid: 43 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 + pos: 2.5,0.5 parent: 1 - - uid: 281 + - type: Thruster + thrust: 150 +- proto: MiningWindow + entities: + - uid: 64 components: - type: Transform - pos: -2.5,9.5 + pos: -2.5,0.5 parent: 1 - - uid: 282 + - uid: 65 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,7.5 + pos: -2.5,1.5 parent: 1 - - uid: 283 + - uid: 66 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,7.5 + pos: 3.5,1.5 parent: 1 - - uid: 284 + - uid: 67 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,7.5 + pos: 3.5,0.5 parent: 1 - - uid: 285 + - uid: 68 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 + pos: -0.5,3.5 parent: 1 - - uid: 286 + - uid: 69 components: - type: Transform - pos: 1.5,-0.5 + pos: 0.5,4.5 parent: 1 - - uid: 287 + - uid: 70 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 + pos: 1.5,3.5 parent: 1 - - uid: 288 +- proto: MiningWindowDiagonal + entities: + - uid: 71 components: - type: Transform - pos: -1.5,9.5 + pos: -0.5,4.5 parent: 1 - - uid: 289 + - uid: 72 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,8.5 + pos: 1.5,4.5 parent: 1 - - uid: 290 +- proto: PortableGeneratorJrPacman + entities: + - uid: 36 components: - type: Transform - pos: -2.5,-0.5 + anchored: True + pos: -1.5,0.5 parent: 1 - - uid: 291 + - type: Physics + bodyType: Static +- proto: PoweredSmallLight + entities: + - uid: 4 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,9.5 + pos: -1.5,-2.5 parent: 1 - - uid: 292 + - uid: 17 components: - type: Transform - pos: -0.5,-0.5 + rot: 3.141592653589793 rad + pos: 2.5,3.5 parent: 1 - - uid: 293 + - uid: 32 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,6.5 + pos: 2.5,-2.5 parent: 1 - - uid: 294 + - uid: 37 components: - type: Transform - pos: -3.5,6.5 + rot: 3.141592653589793 rad + pos: -1.5,3.5 parent: 1 - - uid: 295 + - uid: 75 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 + rot: 3.141592653589793 rad + pos: 1.5,-0.5 parent: 1 - - uid: 296 + - uid: 76 components: - type: Transform - pos: 4.5,2.5 + pos: 1.5,1.5 parent: 1 - - uid: 297 +- proto: RailingCorner + entities: + - uid: 2 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,6.5 + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 parent: 1 - - uid: 298 + - uid: 63 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 + pos: 3.5,-1.5 parent: 1 - - uid: 299 +- proto: ScrapBucket + entities: + - uid: 61 components: - type: Transform - pos: -1.5,11.5 + pos: -0.52174073,0.5175779 parent: 1 - - uid: 300 +- proto: SignNTMine + entities: + - uid: 73 components: - type: Transform - pos: -1.5,-0.5 + pos: 2.5,2.5 parent: 1 - - uid: 301 +- proto: SubstationWallBasic + entities: + - uid: 47 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,10.5 + pos: -1.5,2.5 parent: 1 - - uid: 302 +- proto: Table + entities: + - uid: 3 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,0.5 + rot: 3.141592653589793 rad + pos: 1.5,-0.5 parent: 1 - - uid: 303 +- proto: Thruster + entities: + - uid: 7 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,6.5 + pos: -1.5,3.5 parent: 1 - - uid: 304 + - uid: 19 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + rot: -1.5707963267948966 rad + pos: 2.5,3.5 parent: 1 - - uid: 305 + - uid: 31 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-3.5 + pos: -1.5,-2.5 parent: 1 - - uid: 306 + - uid: 44 components: - type: Transform - pos: -0.5,9.5 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 parent: 1 - - uid: 307 +- proto: WallMining + entities: + - uid: 5 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,1.5 + pos: 1.5,-2.5 parent: 1 - - uid: 308 + - uid: 9 components: - type: Transform - pos: -0.5,7.5 + pos: -0.5,-1.5 parent: 1 - - uid: 309 + - uid: 10 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,8.5 + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 parent: 1 - - uid: 310 + - uid: 11 components: - type: Transform - pos: -0.5,6.5 + pos: 1.5,-1.5 parent: 1 - - uid: 311 + - uid: 13 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-1.5 + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 parent: 1 -- proto: WallMiningDiagonal - entities: - - uid: 312 + - uid: 14 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: 2.5,-1.5 parent: 1 - - uid: 313 + - uid: 24 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 + pos: -1.5,2.5 parent: 1 - - uid: 314 + - uid: 25 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: 2.5,2.5 parent: 1 - - uid: 315 + - uid: 26 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,1.5 + pos: -0.5,2.5 parent: 1 - - uid: 316 + - uid: 27 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,2.5 parent: 1 - - uid: 317 + - uid: 30 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 parent: 1 - - uid: 318 + - uid: 46 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 parent: 1 - - uid: 319 + - uid: 48 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,11.5 - parent: 1 - - uid: 320 - components: - - type: Transform - pos: -3.5,9.5 + pos: 2.5,-0.5 parent: 1 - - uid: 321 + - uid: 82 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + pos: -1.5,-1.5 parent: 1 - - uid: 322 +- proto: WallMiningDiagonal + entities: + - uid: 12 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 parent: 1 - - uid: 323 + - uid: 15 components: - type: Transform - pos: -2.5,11.5 + pos: -2.5,2.5 parent: 1 -- proto: WeaponTurretXeno +- proto: WeldingFuelTankFull entities: - - uid: 324 + - uid: 38 components: - type: Transform - pos: 1.5,3.5 + pos: -1.5,1.5 parent: 1 -- proto: XenoWardingTower +- proto: Wrench entities: - - uid: 325 + - uid: 59 components: - type: Transform - pos: -1.5,1.5 + pos: 1.3692007,-0.23244199 parent: 1 ... diff --git a/Resources/Maps/Shuttles/emergency_corvaxavrite.yml b/Resources/Maps/Shuttles/emergency_corvaxavrite.yml index f52ef220e8d..2266916c456 100644 --- a/Resources/Maps/Shuttles/emergency_corvaxavrite.yml +++ b/Resources/Maps/Shuttles/emergency_corvaxavrite.yml @@ -26,12 +26,13 @@ entities: entities: - uid: 656 components: - - name: NT Evac EntZero 673 - type: MetaData - - pos: 0.52083397,0.5416665 + - type: MetaData + name: NT Evac EntZero 673 + - type: Transform + pos: 0.52083397,0.5416665 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: -1,-1: ind: -1,-1 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAcAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAbAAAAAAAbAAAAAAA @@ -56,22 +57,22 @@ entities: ind: 0,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbAAAAAAAbAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures + - type: Fixtures + fixtures: {} - type: OccluderTree - type: Shuttle - - gravityShakeSound: !type:SoundPathSpecifier + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: @@ -691,8 +692,8 @@ entities: id: MiniTileWhiteLineW decals: 70: -2,12 - type: DecalGrid - - version: 2 + - type: GridAtmosphere + version: 2 data: tiles: -2,-1: @@ -836,10 +837,9 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: RadiationGridResistance - - shakeTimes: 10 - type: GravityShake + - type: GravityShake + shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding @@ -847,21 +847,18 @@ entities: entities: - uid: 273 components: - - pos: 12.5450535,5.5876265 + - type: Transform + pos: 12.5450535,5.5876265 parent: 656 - type: Transform - proto: AirAlarm entities: - uid: 697 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 716 - - 715 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 255 - 688 - 681 @@ -879,2842 +876,2820 @@ entities: - 713 - 735 - 733 - type: DeviceList - proto: AirCanister entities: - uid: 292 components: - - pos: -0.5,-14.5 + - type: Transform + pos: -0.5,-14.5 parent: 656 - type: Transform - proto: AirlockAtmosphericsLocked entities: - uid: 377 components: - - pos: 0.5,-10.5 + - type: Transform + pos: 0.5,-10.5 parent: 656 - type: Transform - uid: 486 components: - - pos: 2.5,-12.5 + - type: Transform + pos: 2.5,-12.5 parent: 656 - type: Transform - proto: AirlockCargoLocked entities: - uid: 429 components: - - pos: 8.5,-6.5 + - type: Transform + pos: 8.5,-6.5 parent: 656 - type: Transform - proto: AirlockCommandGlassLocked entities: - uid: 38 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 656 - type: Transform - uid: 79 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 656 - type: Transform - uid: 147 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,7.5 parent: 656 - type: Transform - uid: 338 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 656 - type: Transform - proto: AirlockEngineeringLocked entities: - uid: 159 components: - - pos: 6.5,-10.5 + - type: Transform + pos: 6.5,-10.5 parent: 656 - type: Transform - proto: AirlockGlassShuttle entities: - uid: 233 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 656 - type: Transform - uid: 454 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-3.5 parent: 656 - type: Transform - uid: 465 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-5.5 parent: 656 - type: Transform - uid: 467 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,4.5 parent: 656 - type: Transform - proto: AirlockMedicalGlassLocked entities: - uid: 34 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 656 - type: Transform - proto: AirlockScienceLocked entities: - uid: 548 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 656 - type: Transform - proto: AirlockSecurityGlassLocked entities: - uid: 75 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 656 - type: Transform - proto: AirlockSecurityLocked entities: - uid: 154 components: - - pos: -1.5,-6.5 + - type: Transform + pos: -1.5,-6.5 parent: 656 - type: Transform - proto: AirlockServiceGlassLocked entities: - uid: 517 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-1.5 parent: 656 - type: Transform - proto: AirSensor entities: - uid: 690 components: - - pos: -3.5,-6.5 + - type: Transform + pos: -3.5,-6.5 parent: 656 - type: Transform - uid: 733 components: - - pos: 3.5,5.5 + - type: Transform + pos: 3.5,5.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1306 - type: DeviceNetwork - uid: 735 components: - - pos: 3.5,-3.5 + - type: Transform + pos: 3.5,-3.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1332 - - 1309 - - 1314 - - 1331 - type: DeviceNetwork - uid: 1323 components: - - pos: 11.5,-9.5 + - type: Transform + pos: 11.5,-9.5 parent: 656 - type: Transform - uid: 1324 components: - - pos: 12.5,-6.5 + - type: Transform + pos: 12.5,-6.5 parent: 656 - type: Transform - uid: 1325 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1308 - - 1307 - - 1309 - - 1332 - type: DeviceNetwork - uid: 1326 components: - - pos: -3.5,1.5 + - type: Transform + pos: -3.5,1.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1314 - - 1331 - type: DeviceNetwork - uid: 1327 components: - - pos: 6.5,1.5 + - type: Transform + pos: 6.5,1.5 parent: 656 - type: Transform - uid: 1328 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 656 - type: Transform - uid: 1329 components: - - pos: 3.5,12.5 + - type: Transform + pos: 3.5,12.5 parent: 656 - type: Transform - uid: 1330 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1310 - type: DeviceNetwork - proto: APCBasic entities: - uid: 761 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-16.5 parent: 656 - type: Transform - uid: 769 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-6.5 parent: 656 - type: Transform - uid: 982 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 656 - type: Transform - proto: APCSuperCapacity entities: - uid: 752 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-17.5 parent: 656 - type: Transform - uid: 981 components: - - pos: 0.5,10.5 + - type: Transform + pos: 0.5,10.5 parent: 656 - type: Transform - proto: Ash entities: - uid: 521 components: - - pos: 8.561708,0.60197306 + - type: Transform + pos: 8.561708,0.60197306 parent: 656 - type: Transform - uid: 1252 components: - - pos: 0.30706644,11.631578 + - type: Transform + pos: 0.30706644,11.631578 parent: 656 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 1311 components: - - pos: -6.5,2.5 + - type: Transform + pos: -6.5,2.5 parent: 656 - type: Transform - uid: 1312 components: - - pos: -6.5,4.5 + - type: Transform + pos: -6.5,4.5 parent: 656 - type: Transform - uid: 1313 components: - - pos: -6.5,-3.5 + - type: Transform + pos: -6.5,-3.5 parent: 656 - type: Transform - uid: 1317 components: - - pos: -6.5,-5.5 + - type: Transform + pos: -6.5,-5.5 parent: 656 - type: Transform - proto: BedsheetMedical entities: - uid: 267 components: - - pos: 0.5,3.5 + - type: Transform + pos: 0.5,3.5 parent: 656 - type: Transform - uid: 268 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 656 - type: Transform - uid: 610 components: - - pos: -1.5,3.5 + - type: Transform + pos: -1.5,3.5 parent: 656 - type: Transform - proto: BedsheetOrange entities: - uid: 491 components: - - pos: -2.5,-16.5 + - type: Transform + pos: -2.5,-16.5 parent: 656 - type: Transform - proto: BookshelfFilled entities: - uid: 132 components: - - pos: -3.5,10.5 + - type: Transform + pos: -3.5,10.5 parent: 656 - type: Transform - uid: 164 components: - - pos: -4.5,8.5 + - type: Transform + pos: -4.5,8.5 parent: 656 - type: Transform - uid: 175 components: - - pos: -3.5,8.5 + - type: Transform + pos: -3.5,8.5 parent: 656 - type: Transform - uid: 472 components: - - pos: -4.5,10.5 + - type: Transform + pos: -4.5,10.5 parent: 656 - type: Transform - proto: BoozeDispenser entities: - uid: 536 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 656 - type: Transform - proto: BoxBodyBag entities: - uid: 490 components: - - pos: -1.6978244,0.4336574 + - type: Transform + pos: -1.6978244,0.4336574 parent: 656 - type: Transform - uid: 568 components: - - pos: -1.2759494,0.7305324 + - type: Transform + pos: -1.2759494,0.7305324 parent: 656 - type: Transform - proto: BoxSyringe entities: - uid: 516 components: - - pos: -1.2915744,0.3399074 + - type: Transform + pos: -1.2915744,0.3399074 parent: 656 - type: Transform - proto: CableApcExtension entities: - uid: 450 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 656 - type: Transform - uid: 747 components: - - pos: 13.5,-15.5 + - type: Transform + pos: 13.5,-15.5 parent: 656 - type: Transform - uid: 790 components: - - pos: 12.5,-15.5 + - type: Transform + pos: 12.5,-15.5 parent: 656 - type: Transform - uid: 846 components: - - pos: 11.5,-16.5 + - type: Transform + pos: 11.5,-16.5 parent: 656 - type: Transform - uid: 848 components: - - pos: 11.5,-15.5 + - type: Transform + pos: 11.5,-15.5 parent: 656 - type: Transform - uid: 863 components: - - pos: 5.5,-12.5 + - type: Transform + pos: 5.5,-12.5 parent: 656 - type: Transform - uid: 872 components: - - pos: 11.5,-14.5 + - type: Transform + pos: 11.5,-14.5 parent: 656 - type: Transform - uid: 873 components: - - pos: 11.5,-13.5 + - type: Transform + pos: 11.5,-13.5 parent: 656 - type: Transform - uid: 874 components: - - pos: 11.5,-12.5 + - type: Transform + pos: 11.5,-12.5 parent: 656 - type: Transform - uid: 875 components: - - pos: 11.5,-11.5 + - type: Transform + pos: 11.5,-11.5 parent: 656 - type: Transform - uid: 876 components: - - pos: 11.5,-10.5 + - type: Transform + pos: 11.5,-10.5 parent: 656 - type: Transform - uid: 877 components: - - pos: 13.5,-16.5 + - type: Transform + pos: 13.5,-16.5 parent: 656 - type: Transform - uid: 879 components: - - pos: 10.5,-15.5 + - type: Transform + pos: 10.5,-15.5 parent: 656 - type: Transform - uid: 880 components: - - pos: 9.5,-15.5 + - type: Transform + pos: 9.5,-15.5 parent: 656 - type: Transform - uid: 881 components: - - pos: 9.5,-16.5 + - type: Transform + pos: 9.5,-16.5 parent: 656 - type: Transform - uid: 882 components: - - pos: 9.5,-17.5 + - type: Transform + pos: 9.5,-17.5 parent: 656 - type: Transform - uid: 884 components: - - pos: 9.5,-18.5 + - type: Transform + pos: 9.5,-18.5 parent: 656 - type: Transform - uid: 885 components: - - pos: 8.5,-18.5 + - type: Transform + pos: 8.5,-18.5 parent: 656 - type: Transform - uid: 892 components: - - pos: 5.5,-17.5 + - type: Transform + pos: 5.5,-17.5 parent: 656 - type: Transform - uid: 893 components: - - pos: 4.5,-17.5 + - type: Transform + pos: 4.5,-17.5 parent: 656 - type: Transform - uid: 894 components: - - pos: 4.5,-18.5 + - type: Transform + pos: 4.5,-18.5 parent: 656 - type: Transform - uid: 895 components: - - pos: 4.5,-19.5 + - type: Transform + pos: 4.5,-19.5 parent: 656 - type: Transform - uid: 896 components: - - pos: 3.5,-19.5 + - type: Transform + pos: 3.5,-19.5 parent: 656 - type: Transform - uid: 897 components: - - pos: 2.5,-19.5 + - type: Transform + pos: 2.5,-19.5 parent: 656 - type: Transform - uid: 898 components: - - pos: 6.5,-15.5 + - type: Transform + pos: 6.5,-15.5 parent: 656 - type: Transform - uid: 899 components: - - pos: 4.5,-15.5 + - type: Transform + pos: 4.5,-15.5 parent: 656 - type: Transform - uid: 900 components: - - pos: 5.5,-16.5 + - type: Transform + pos: 5.5,-16.5 parent: 656 - type: Transform - uid: 901 components: - - pos: 5.5,-15.5 + - type: Transform + pos: 5.5,-15.5 parent: 656 - type: Transform - uid: 902 components: - - pos: 6.5,-14.5 + - type: Transform + pos: 6.5,-14.5 parent: 656 - type: Transform - uid: 903 components: - - pos: 6.5,-13.5 + - type: Transform + pos: 6.5,-13.5 parent: 656 - type: Transform - uid: 904 components: - - pos: 6.5,-12.5 + - type: Transform + pos: 6.5,-12.5 parent: 656 - type: Transform - uid: 905 components: - - pos: 4.5,-12.5 + - type: Transform + pos: 4.5,-12.5 parent: 656 - type: Transform - uid: 907 components: - - pos: 3.5,-12.5 + - type: Transform + pos: 3.5,-12.5 parent: 656 - type: Transform - uid: 908 components: - - pos: 2.5,-12.5 + - type: Transform + pos: 2.5,-12.5 parent: 656 - type: Transform - uid: 909 components: - - pos: 1.5,-12.5 + - type: Transform + pos: 1.5,-12.5 parent: 656 - type: Transform - uid: 910 components: - - pos: 0.5,-12.5 + - type: Transform + pos: 0.5,-12.5 parent: 656 - type: Transform - uid: 911 components: - - pos: 0.5,-13.5 + - type: Transform + pos: 0.5,-13.5 parent: 656 - type: Transform - uid: 913 components: - - pos: 0.5,-14.5 + - type: Transform + pos: 0.5,-14.5 parent: 656 - type: Transform - uid: 914 components: - - pos: -0.5,-12.5 + - type: Transform + pos: -0.5,-12.5 parent: 656 - type: Transform - uid: 915 components: - - pos: 0.5,-15.5 + - type: Transform + pos: 0.5,-15.5 parent: 656 - type: Transform - uid: 916 components: - - pos: 0.5,-11.5 + - type: Transform + pos: 0.5,-11.5 parent: 656 - type: Transform - uid: 917 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 656 - type: Transform - uid: 918 components: - - pos: 10.5,-10.5 + - type: Transform + pos: 10.5,-10.5 parent: 656 - type: Transform - uid: 922 components: - - pos: 0.5,10.5 + - type: Transform + pos: 0.5,10.5 parent: 656 - type: Transform - uid: 923 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 656 - type: Transform - uid: 924 components: - - pos: 0.5,8.5 + - type: Transform + pos: 0.5,8.5 parent: 656 - type: Transform - uid: 930 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 656 - type: Transform - uid: 931 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 656 - type: Transform - uid: 932 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 656 - type: Transform - uid: 933 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 656 - type: Transform - uid: 934 components: - - pos: 5.5,8.5 + - type: Transform + pos: 5.5,8.5 parent: 656 - type: Transform - uid: 935 components: - - pos: 6.5,8.5 + - type: Transform + pos: 6.5,8.5 parent: 656 - type: Transform - uid: 936 components: - - pos: 7.5,8.5 + - type: Transform + pos: 7.5,8.5 parent: 656 - type: Transform - uid: 937 components: - - pos: 8.5,8.5 + - type: Transform + pos: 8.5,8.5 parent: 656 - type: Transform - uid: 938 components: - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 656 - type: Transform - uid: 939 components: - - pos: 10.5,8.5 + - type: Transform + pos: 10.5,8.5 parent: 656 - type: Transform - uid: 940 components: - - pos: 11.5,8.5 + - type: Transform + pos: 11.5,8.5 parent: 656 - type: Transform - uid: 941 components: - - pos: 11.5,9.5 + - type: Transform + pos: 11.5,9.5 parent: 656 - type: Transform - uid: 942 components: - - pos: 11.5,10.5 + - type: Transform + pos: 11.5,10.5 parent: 656 - type: Transform - uid: 943 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 656 - type: Transform - uid: 944 components: - - pos: 11.5,12.5 + - type: Transform + pos: 11.5,12.5 parent: 656 - type: Transform - uid: 948 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 656 - type: Transform - uid: 949 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 656 - type: Transform - uid: 950 components: - - pos: -2.5,8.5 + - type: Transform + pos: -2.5,8.5 parent: 656 - type: Transform - uid: 951 components: - - pos: -3.5,8.5 + - type: Transform + pos: -3.5,8.5 parent: 656 - type: Transform - uid: 952 components: - - pos: -4.5,8.5 + - type: Transform + pos: -4.5,8.5 parent: 656 - type: Transform - uid: 953 components: - - pos: -4.5,9.5 + - type: Transform + pos: -4.5,9.5 parent: 656 - type: Transform - uid: 954 components: - - pos: -4.5,10.5 + - type: Transform + pos: -4.5,10.5 parent: 656 - type: Transform - uid: 955 components: - - pos: -4.5,11.5 + - type: Transform + pos: -4.5,11.5 parent: 656 - type: Transform - uid: 956 components: - - pos: -4.5,12.5 + - type: Transform + pos: -4.5,12.5 parent: 656 - type: Transform - uid: 958 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 656 - type: Transform - uid: 959 components: - - pos: 0.5,12.5 + - type: Transform + pos: 0.5,12.5 parent: 656 - type: Transform - uid: 961 components: - - pos: 1.5,12.5 + - type: Transform + pos: 1.5,12.5 parent: 656 - type: Transform - uid: 962 components: - - pos: 2.5,12.5 + - type: Transform + pos: 2.5,12.5 parent: 656 - type: Transform - uid: 963 components: - - pos: 3.5,12.5 + - type: Transform + pos: 3.5,12.5 parent: 656 - type: Transform - uid: 965 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 656 - type: Transform - uid: 966 components: - - pos: 5.5,12.5 + - type: Transform + pos: 5.5,12.5 parent: 656 - type: Transform - uid: 1019 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 656 - type: Transform - uid: 1020 components: - - pos: -6.5,-6.5 + - type: Transform + pos: -6.5,-6.5 parent: 656 - type: Transform - uid: 1021 components: - - pos: -5.5,-6.5 + - type: Transform + pos: -5.5,-6.5 parent: 656 - type: Transform - uid: 1022 components: - - pos: -4.5,-6.5 + - type: Transform + pos: -4.5,-6.5 parent: 656 - type: Transform - uid: 1023 components: - - pos: -3.5,-6.5 + - type: Transform + pos: -3.5,-6.5 parent: 656 - type: Transform - uid: 1024 components: - - pos: -4.5,-7.5 + - type: Transform + pos: -4.5,-7.5 parent: 656 - type: Transform - uid: 1025 components: - - pos: -4.5,-8.5 + - type: Transform + pos: -4.5,-8.5 parent: 656 - type: Transform - uid: 1026 components: - - pos: -4.5,-9.5 + - type: Transform + pos: -4.5,-9.5 parent: 656 - type: Transform - uid: 1027 components: - - pos: -4.5,-10.5 + - type: Transform + pos: -4.5,-10.5 parent: 656 - type: Transform - uid: 1028 components: - - pos: -4.5,-11.5 + - type: Transform + pos: -4.5,-11.5 parent: 656 - type: Transform - uid: 1029 components: - - pos: -4.5,-12.5 + - type: Transform + pos: -4.5,-12.5 parent: 656 - type: Transform - uid: 1030 components: - - pos: -4.5,-13.5 + - type: Transform + pos: -4.5,-13.5 parent: 656 - type: Transform - uid: 1031 components: - - pos: -4.5,-14.5 + - type: Transform + pos: -4.5,-14.5 parent: 656 - type: Transform - uid: 1032 components: - - pos: -4.5,-15.5 + - type: Transform + pos: -4.5,-15.5 parent: 656 - type: Transform - uid: 1033 components: - - pos: -5.5,-15.5 + - type: Transform + pos: -5.5,-15.5 parent: 656 - type: Transform - uid: 1034 components: - - pos: -6.5,-15.5 + - type: Transform + pos: -6.5,-15.5 parent: 656 - type: Transform - uid: 1035 components: - - pos: -6.5,-16.5 + - type: Transform + pos: -6.5,-16.5 parent: 656 - type: Transform - uid: 1036 components: - - pos: -3.5,-15.5 + - type: Transform + pos: -3.5,-15.5 parent: 656 - type: Transform - uid: 1037 components: - - pos: -2.5,-15.5 + - type: Transform + pos: -2.5,-15.5 parent: 656 - type: Transform - uid: 1038 components: - - pos: -2.5,-16.5 + - type: Transform + pos: -2.5,-16.5 parent: 656 - type: Transform - uid: 1039 components: - - pos: -2.5,-17.5 + - type: Transform + pos: -2.5,-17.5 parent: 656 - type: Transform - uid: 1040 components: - - pos: -2.5,-18.5 + - type: Transform + pos: -2.5,-18.5 parent: 656 - type: Transform - uid: 1041 components: - - pos: -1.5,-18.5 + - type: Transform + pos: -1.5,-18.5 parent: 656 - type: Transform - uid: 1042 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 656 - type: Transform - uid: 1043 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 656 - type: Transform - uid: 1044 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 656 - type: Transform - uid: 1045 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 656 - type: Transform - uid: 1046 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 656 - type: Transform - uid: 1047 components: - - pos: 1.5,1.5 + - type: Transform + pos: 1.5,1.5 parent: 656 - type: Transform - uid: 1048 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 656 - type: Transform - uid: 1049 components: - - pos: 11.5,4.5 + - type: Transform + pos: 11.5,4.5 parent: 656 - type: Transform - uid: 1050 components: - - pos: 4.5,-1.5 + - type: Transform + pos: 4.5,-1.5 parent: 656 - type: Transform - uid: 1051 components: - - pos: 4.5,-0.5 + - type: Transform + pos: 4.5,-0.5 parent: 656 - type: Transform - uid: 1052 components: - - pos: 4.5,0.5 + - type: Transform + pos: 4.5,0.5 parent: 656 - type: Transform - uid: 1053 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 656 - type: Transform - uid: 1054 components: - - pos: 5.5,1.5 + - type: Transform + pos: 5.5,1.5 parent: 656 - type: Transform - uid: 1055 components: - - pos: 6.5,1.5 + - type: Transform + pos: 6.5,1.5 parent: 656 - type: Transform - uid: 1056 components: - - pos: 7.5,1.5 + - type: Transform + pos: 7.5,1.5 parent: 656 - type: Transform - uid: 1057 components: - - pos: 3.5,-3.5 + - type: Transform + pos: 3.5,-3.5 parent: 656 - type: Transform - uid: 1058 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 656 - type: Transform - uid: 1059 components: - - pos: 5.5,-3.5 + - type: Transform + pos: 5.5,-3.5 parent: 656 - type: Transform - uid: 1060 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 656 - type: Transform - uid: 1061 components: - - pos: 7.5,-3.5 + - type: Transform + pos: 7.5,-3.5 parent: 656 - type: Transform - uid: 1062 components: - - pos: 8.5,-3.5 + - type: Transform + pos: 8.5,-3.5 parent: 656 - type: Transform - uid: 1063 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 656 - type: Transform - uid: 1064 components: - - pos: 10.5,-3.5 + - type: Transform + pos: 10.5,-3.5 parent: 656 - type: Transform - uid: 1065 components: - - pos: 11.5,-3.5 + - type: Transform + pos: 11.5,-3.5 parent: 656 - type: Transform - uid: 1066 components: - - pos: 11.5,-2.5 + - type: Transform + pos: 11.5,-2.5 parent: 656 - type: Transform - uid: 1067 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 656 - type: Transform - uid: 1068 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 656 - type: Transform - uid: 1069 components: - - pos: 11.5,0.5 + - type: Transform + pos: 11.5,0.5 parent: 656 - type: Transform - uid: 1070 components: - - pos: 11.5,1.5 + - type: Transform + pos: 11.5,1.5 parent: 656 - type: Transform - uid: 1071 components: - - pos: 11.5,2.5 + - type: Transform + pos: 11.5,2.5 parent: 656 - type: Transform - uid: 1072 components: - - pos: 11.5,3.5 + - type: Transform + pos: 11.5,3.5 parent: 656 - type: Transform - uid: 1073 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 656 - type: Transform - uid: 1074 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 656 - type: Transform - uid: 1075 components: - - pos: 0.5,-3.5 + - type: Transform + pos: 0.5,-3.5 parent: 656 - type: Transform - uid: 1076 components: - - pos: -0.5,-3.5 + - type: Transform + pos: -0.5,-3.5 parent: 656 - type: Transform - uid: 1077 components: - - pos: -1.5,-3.5 + - type: Transform + pos: -1.5,-3.5 parent: 656 - type: Transform - uid: 1078 components: - - pos: -2.5,-3.5 + - type: Transform + pos: -2.5,-3.5 parent: 656 - type: Transform - uid: 1079 components: - - pos: -3.5,-3.5 + - type: Transform + pos: -3.5,-3.5 parent: 656 - type: Transform - uid: 1080 components: - - pos: -4.5,-3.5 + - type: Transform + pos: -4.5,-3.5 parent: 656 - type: Transform - uid: 1081 components: - - pos: -4.5,-2.5 + - type: Transform + pos: -4.5,-2.5 parent: 656 - type: Transform - uid: 1082 components: - - pos: -4.5,-1.5 + - type: Transform + pos: -4.5,-1.5 parent: 656 - type: Transform - uid: 1083 components: - - pos: -4.5,-0.5 + - type: Transform + pos: -4.5,-0.5 parent: 656 - type: Transform - uid: 1084 components: - - pos: -4.5,0.5 + - type: Transform + pos: -4.5,0.5 parent: 656 - type: Transform - uid: 1085 components: - - pos: -4.5,1.5 + - type: Transform + pos: -4.5,1.5 parent: 656 - type: Transform - uid: 1086 components: - - pos: -4.5,2.5 + - type: Transform + pos: -4.5,2.5 parent: 656 - type: Transform - uid: 1087 components: - - pos: -4.5,3.5 + - type: Transform + pos: -4.5,3.5 parent: 656 - type: Transform - uid: 1088 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 parent: 656 - type: Transform - uid: 1089 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 656 - type: Transform - uid: 1090 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 656 - type: Transform - uid: 1091 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 656 - type: Transform - uid: 1092 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 656 - type: Transform - uid: 1093 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 656 - type: Transform - uid: 1094 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 656 - type: Transform - uid: 1095 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 656 - type: Transform - uid: 1096 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 656 - type: Transform - uid: 1097 components: - - pos: 2.5,4.5 + - type: Transform + pos: 2.5,4.5 parent: 656 - type: Transform - uid: 1098 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 656 - type: Transform - uid: 1099 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 656 - type: Transform - uid: 1100 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 656 - type: Transform - uid: 1101 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 656 - type: Transform - uid: 1102 components: - - pos: -2.5,4.5 + - type: Transform + pos: -2.5,4.5 parent: 656 - type: Transform - uid: 1103 components: - - pos: -3.5,4.5 + - type: Transform + pos: -3.5,4.5 parent: 656 - type: Transform - uid: 1104 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 656 - type: Transform - uid: 1105 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 656 - type: Transform - uid: 1106 components: - - pos: 0.5,-4.5 + - type: Transform + pos: 0.5,-4.5 parent: 656 - type: Transform - uid: 1107 components: - - pos: 0.5,-5.5 + - type: Transform + pos: 0.5,-5.5 parent: 656 - type: Transform - uid: 1108 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 656 - type: Transform - uid: 1109 components: - - pos: 0.5,-7.5 + - type: Transform + pos: 0.5,-7.5 parent: 656 - type: Transform - uid: 1110 components: - - pos: 0.5,-8.5 + - type: Transform + pos: 0.5,-8.5 parent: 656 - type: Transform - uid: 1111 components: - - pos: 6.5,-8.5 + - type: Transform + pos: 6.5,-8.5 parent: 656 - type: Transform - uid: 1112 components: - - pos: 6.5,-7.5 + - type: Transform + pos: 6.5,-7.5 parent: 656 - type: Transform - uid: 1113 components: - - pos: 6.5,-6.5 + - type: Transform + pos: 6.5,-6.5 parent: 656 - type: Transform - uid: 1114 components: - - pos: 6.5,-5.5 + - type: Transform + pos: 6.5,-5.5 parent: 656 - type: Transform - uid: 1115 components: - - pos: 6.5,-4.5 + - type: Transform + pos: 6.5,-4.5 parent: 656 - type: Transform - uid: 1116 components: - - pos: 11.5,-7.5 + - type: Transform + pos: 11.5,-7.5 parent: 656 - type: Transform - uid: 1117 components: - - pos: 7.5,-6.5 + - type: Transform + pos: 7.5,-6.5 parent: 656 - type: Transform - uid: 1118 components: - - pos: 9.5,-6.5 + - type: Transform + pos: 9.5,-6.5 parent: 656 - type: Transform - uid: 1119 components: - - pos: 10.5,-6.5 + - type: Transform + pos: 10.5,-6.5 parent: 656 - type: Transform - uid: 1120 components: - - pos: 11.5,-6.5 + - type: Transform + pos: 11.5,-6.5 parent: 656 - type: Transform - uid: 1121 components: - - pos: -0.5,-6.5 + - type: Transform + pos: -0.5,-6.5 parent: 656 - type: Transform - uid: 1122 components: - - pos: 11.5,-8.5 + - type: Transform + pos: 11.5,-8.5 parent: 656 - type: Transform - uid: 1123 components: - - pos: 11.5,-9.5 + - type: Transform + pos: 11.5,-9.5 parent: 656 - type: Transform - uid: 1124 components: - - pos: 12.5,-6.5 + - type: Transform + pos: 12.5,-6.5 parent: 656 - type: Transform - uid: 1132 components: - - pos: -5.5,-3.5 + - type: Transform + pos: -5.5,-3.5 parent: 656 - type: Transform - uid: 1137 components: - - pos: -5.5,3.5 + - type: Transform + pos: -5.5,3.5 parent: 656 - type: Transform - uid: 1140 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 656 - type: Transform - uid: 1143 components: - - pos: 12.5,-3.5 + - type: Transform + pos: 12.5,-3.5 parent: 656 - type: Transform - uid: 1305 components: - - pos: 7.5,-14.5 + - type: Transform + pos: 7.5,-14.5 parent: 656 - type: Transform - proto: CableHV entities: - uid: 121 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 656 - type: Transform - uid: 385 components: - - pos: 1.5,-2.5 + - type: Transform + pos: 1.5,-2.5 parent: 656 - type: Transform - uid: 726 components: - - pos: 3.5,-16.5 + - type: Transform + pos: 3.5,-16.5 parent: 656 - type: Transform - uid: 737 components: - - pos: 3.5,-15.5 + - type: Transform + pos: 3.5,-15.5 parent: 656 - type: Transform - uid: 738 components: - - pos: 3.5,-14.5 + - type: Transform + pos: 3.5,-14.5 parent: 656 - type: Transform - uid: 739 components: - - pos: 4.5,-16.5 + - type: Transform + pos: 4.5,-16.5 parent: 656 - type: Transform - uid: 740 components: - - pos: 5.5,-16.5 + - type: Transform + pos: 5.5,-16.5 parent: 656 - type: Transform - uid: 741 components: - - pos: 6.5,-16.5 + - type: Transform + pos: 6.5,-16.5 parent: 656 - type: Transform - uid: 742 components: - - pos: 7.5,-16.5 + - type: Transform + pos: 7.5,-16.5 parent: 656 - type: Transform - uid: 743 components: - - pos: 7.5,-15.5 + - type: Transform + pos: 7.5,-15.5 parent: 656 - type: Transform - uid: 1255 components: - - pos: -2.5,-2.5 + - type: Transform + pos: -2.5,-2.5 parent: 656 - type: Transform - uid: 1258 components: - - pos: -1.5,-2.5 + - type: Transform + pos: -1.5,-2.5 parent: 656 - type: Transform - uid: 1259 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 656 - type: Transform - uid: 1260 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 656 - type: Transform - uid: 1262 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 656 - type: Transform - uid: 1263 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 656 - type: Transform - uid: 1264 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 656 - type: Transform - uid: 1265 components: - - pos: -0.5,9.5 + - type: Transform + pos: -0.5,9.5 parent: 656 - type: Transform - uid: 1266 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 656 - type: Transform - uid: 1267 components: - - pos: 0.5,8.5 + - type: Transform + pos: 0.5,8.5 parent: 656 - type: Transform - uid: 1268 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 656 - type: Transform - uid: 1269 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 656 - type: Transform - uid: 1270 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 656 - type: Transform - uid: 1271 components: - - pos: 2.5,7.5 + - type: Transform + pos: 2.5,7.5 parent: 656 - type: Transform - uid: 1272 components: - - pos: 2.5,6.5 + - type: Transform + pos: 2.5,6.5 parent: 656 - type: Transform - uid: 1273 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 656 - type: Transform - uid: 1274 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 656 - type: Transform - uid: 1275 components: - - pos: 0.5,5.5 + - type: Transform + pos: 0.5,5.5 parent: 656 - type: Transform - uid: 1276 components: - - pos: -0.5,5.5 + - type: Transform + pos: -0.5,5.5 parent: 656 - type: Transform - uid: 1277 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 656 - type: Transform - uid: 1278 components: - - pos: -2.5,5.5 + - type: Transform + pos: -2.5,5.5 parent: 656 - type: Transform - uid: 1279 components: - - pos: -3.5,5.5 + - type: Transform + pos: -3.5,5.5 parent: 656 - type: Transform - uid: 1280 components: - - pos: -3.5,4.5 + - type: Transform + pos: -3.5,4.5 parent: 656 - type: Transform - uid: 1281 components: - - pos: -3.5,3.5 + - type: Transform + pos: -3.5,3.5 parent: 656 - type: Transform - uid: 1282 components: - - pos: -3.5,2.5 + - type: Transform + pos: -3.5,2.5 parent: 656 - type: Transform - uid: 1283 components: - - pos: -3.5,1.5 + - type: Transform + pos: -3.5,1.5 parent: 656 - type: Transform - uid: 1284 components: - - pos: -3.5,0.5 + - type: Transform + pos: -3.5,0.5 parent: 656 - type: Transform - uid: 1285 components: - - pos: -3.5,-0.5 + - type: Transform + pos: -3.5,-0.5 parent: 656 - type: Transform - uid: 1286 components: - - pos: -3.5,-1.5 + - type: Transform + pos: -3.5,-1.5 parent: 656 - type: Transform - uid: 1287 components: - - pos: -3.5,-2.5 + - type: Transform + pos: -3.5,-2.5 parent: 656 - type: Transform - uid: 1288 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 656 - type: Transform - uid: 1289 components: - - pos: 4.5,-2.5 + - type: Transform + pos: 4.5,-2.5 parent: 656 - type: Transform - uid: 1290 components: - - pos: 5.5,-2.5 + - type: Transform + pos: 5.5,-2.5 parent: 656 - type: Transform - uid: 1291 components: - - pos: 6.5,-2.5 + - type: Transform + pos: 6.5,-2.5 parent: 656 - type: Transform - uid: 1292 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 656 - type: Transform - uid: 1293 components: - - pos: 6.5,-4.5 + - type: Transform + pos: 6.5,-4.5 parent: 656 - type: Transform - uid: 1294 components: - - pos: 6.5,-5.5 + - type: Transform + pos: 6.5,-5.5 parent: 656 - type: Transform - uid: 1295 components: - - pos: 6.5,-6.5 + - type: Transform + pos: 6.5,-6.5 parent: 656 - type: Transform - uid: 1296 components: - - pos: 6.5,-7.5 + - type: Transform + pos: 6.5,-7.5 parent: 656 - type: Transform - uid: 1297 components: - - pos: 6.5,-8.5 + - type: Transform + pos: 6.5,-8.5 parent: 656 - type: Transform - uid: 1298 components: - - pos: 6.5,-9.5 + - type: Transform + pos: 6.5,-9.5 parent: 656 - type: Transform - uid: 1299 components: - - pos: 6.5,-10.5 + - type: Transform + pos: 6.5,-10.5 parent: 656 - type: Transform - uid: 1300 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 656 - type: Transform - uid: 1301 components: - - pos: 6.5,-12.5 + - type: Transform + pos: 6.5,-12.5 parent: 656 - type: Transform - uid: 1302 components: - - pos: 6.5,-13.5 + - type: Transform + pos: 6.5,-13.5 parent: 656 - type: Transform - uid: 1303 components: - - pos: 6.5,-14.5 + - type: Transform + pos: 6.5,-14.5 parent: 656 - type: Transform - uid: 1304 components: - - pos: 7.5,-14.5 + - type: Transform + pos: 7.5,-14.5 parent: 656 - type: Transform - proto: CableMV entities: - uid: 748 components: - - pos: 7.5,-15.5 + - type: Transform + pos: 7.5,-15.5 parent: 656 - type: Transform - uid: 749 components: - - pos: 6.5,-15.5 + - type: Transform + pos: 6.5,-15.5 parent: 656 - type: Transform - uid: 750 components: - - pos: 5.5,-15.5 + - type: Transform + pos: 5.5,-15.5 parent: 656 - type: Transform - uid: 753 components: - - pos: 5.5,-17.5 + - type: Transform + pos: 5.5,-17.5 parent: 656 - type: Transform - uid: 754 components: - - pos: 5.5,-16.5 + - type: Transform + pos: 5.5,-16.5 parent: 656 - type: Transform - uid: 777 components: - - pos: 7.5,-14.5 + - type: Transform + pos: 7.5,-14.5 parent: 656 - type: Transform - uid: 778 components: - - pos: 6.5,-13.5 + - type: Transform + pos: 6.5,-13.5 parent: 656 - type: Transform - uid: 779 components: - - pos: 6.5,-14.5 + - type: Transform + pos: 6.5,-14.5 parent: 656 - type: Transform - uid: 783 components: - - pos: 6.5,-12.5 + - type: Transform + pos: 6.5,-12.5 parent: 656 - type: Transform - uid: 796 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 656 - type: Transform - uid: 797 components: - - pos: 6.5,-10.5 + - type: Transform + pos: 6.5,-10.5 parent: 656 - type: Transform - uid: 798 components: - - pos: 6.5,-9.5 + - type: Transform + pos: 6.5,-9.5 parent: 656 - type: Transform - uid: 799 components: - - pos: 7.5,-9.5 + - type: Transform + pos: 7.5,-9.5 parent: 656 - type: Transform - uid: 800 components: - - pos: 8.5,-9.5 + - type: Transform + pos: 8.5,-9.5 parent: 656 - type: Transform - uid: 801 components: - - pos: 9.5,-9.5 + - type: Transform + pos: 9.5,-9.5 parent: 656 - type: Transform - uid: 802 components: - - pos: 10.5,-9.5 + - type: Transform + pos: 10.5,-9.5 parent: 656 - type: Transform - uid: 803 components: - - pos: 11.5,-9.5 + - type: Transform + pos: 11.5,-9.5 parent: 656 - type: Transform - uid: 804 components: - - pos: 11.5,-10.5 + - type: Transform + pos: 11.5,-10.5 parent: 656 - type: Transform - uid: 805 components: - - pos: 11.5,-11.5 + - type: Transform + pos: 11.5,-11.5 parent: 656 - type: Transform - uid: 806 components: - - pos: 11.5,-12.5 + - type: Transform + pos: 11.5,-12.5 parent: 656 - type: Transform - uid: 807 components: - - pos: 11.5,-13.5 + - type: Transform + pos: 11.5,-13.5 parent: 656 - type: Transform - uid: 808 components: - - pos: 11.5,-14.5 + - type: Transform + pos: 11.5,-14.5 parent: 656 - type: Transform - uid: 809 components: - - pos: 11.5,-15.5 + - type: Transform + pos: 11.5,-15.5 parent: 656 - type: Transform - uid: 810 components: - - pos: 11.5,-16.5 + - type: Transform + pos: 11.5,-16.5 parent: 656 - type: Transform - uid: 813 components: - - pos: 5.5,-9.5 + - type: Transform + pos: 5.5,-9.5 parent: 656 - type: Transform - uid: 814 components: - - pos: 4.5,-9.5 + - type: Transform + pos: 4.5,-9.5 parent: 656 - type: Transform - uid: 815 components: - - pos: 3.5,-9.5 + - type: Transform + pos: 3.5,-9.5 parent: 656 - type: Transform - uid: 816 components: - - pos: 2.5,-9.5 + - type: Transform + pos: 2.5,-9.5 parent: 656 - type: Transform - uid: 817 components: - - pos: 1.5,-9.5 + - type: Transform + pos: 1.5,-9.5 parent: 656 - type: Transform - uid: 818 components: - - pos: 0.5,-9.5 + - type: Transform + pos: 0.5,-9.5 parent: 656 - type: Transform - uid: 819 components: - - pos: 0.5,-7.5 + - type: Transform + pos: 0.5,-7.5 parent: 656 - type: Transform - uid: 820 components: - - pos: 0.5,-8.5 + - type: Transform + pos: 0.5,-8.5 parent: 656 - type: Transform - uid: 821 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 656 - type: Transform - uid: 827 components: - - pos: -0.5,-6.5 + - type: Transform + pos: -0.5,-6.5 parent: 656 - type: Transform - uid: 830 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 656 - type: Transform - uid: 831 components: - - pos: -1.5,-6.5 + - type: Transform + pos: -1.5,-6.5 parent: 656 - type: Transform - uid: 832 components: - - pos: -2.5,-6.5 + - type: Transform + pos: -2.5,-6.5 parent: 656 - type: Transform - uid: 833 components: - - pos: -3.5,-6.5 + - type: Transform + pos: -3.5,-6.5 parent: 656 - type: Transform - uid: 834 components: - - pos: -4.5,-6.5 + - type: Transform + pos: -4.5,-6.5 parent: 656 - type: Transform - uid: 835 components: - - pos: -5.5,-6.5 + - type: Transform + pos: -5.5,-6.5 parent: 656 - type: Transform - uid: 836 components: - - pos: -6.5,-6.5 + - type: Transform + pos: -6.5,-6.5 parent: 656 - type: Transform - uid: 839 components: - - pos: 1.5,-6.5 + - type: Transform + pos: 1.5,-6.5 parent: 656 - type: Transform - uid: 840 components: - - pos: 2.5,-6.5 + - type: Transform + pos: 2.5,-6.5 parent: 656 - type: Transform - uid: 841 components: - - pos: 3.5,-6.5 + - type: Transform + pos: 3.5,-6.5 parent: 656 - type: Transform - uid: 842 components: - - pos: 4.5,-6.5 + - type: Transform + pos: 4.5,-6.5 parent: 656 - type: Transform - uid: 843 components: - - pos: 5.5,-6.5 + - type: Transform + pos: 5.5,-6.5 parent: 656 - type: Transform - uid: 844 components: - - pos: 6.5,-6.5 + - type: Transform + pos: 6.5,-6.5 parent: 656 - type: Transform - uid: 845 components: - - pos: 7.5,-6.5 + - type: Transform + pos: 7.5,-6.5 parent: 656 - type: Transform - uid: 983 components: - - pos: 3.5,-5.5 + - type: Transform + pos: 3.5,-5.5 parent: 656 - type: Transform - uid: 984 components: - - pos: 3.5,-4.5 + - type: Transform + pos: 3.5,-4.5 parent: 656 - type: Transform - uid: 985 components: - - pos: 3.5,-3.5 + - type: Transform + pos: 3.5,-3.5 parent: 656 - type: Transform - uid: 986 components: - - pos: 3.5,-2.5 + - type: Transform + pos: 3.5,-2.5 parent: 656 - type: Transform - uid: 987 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 656 - type: Transform - uid: 988 components: - - pos: 4.5,-3.5 + - type: Transform + pos: 4.5,-3.5 parent: 656 - type: Transform - uid: 989 components: - - pos: 5.5,-3.5 + - type: Transform + pos: 5.5,-3.5 parent: 656 - type: Transform - uid: 990 components: - - pos: 6.5,-3.5 + - type: Transform + pos: 6.5,-3.5 parent: 656 - type: Transform - uid: 991 components: - - pos: 7.5,-3.5 + - type: Transform + pos: 7.5,-3.5 parent: 656 - type: Transform - uid: 992 components: - - pos: 8.5,-3.5 + - type: Transform + pos: 8.5,-3.5 parent: 656 - type: Transform - uid: 993 components: - - pos: 9.5,-3.5 + - type: Transform + pos: 9.5,-3.5 parent: 656 - type: Transform - uid: 994 components: - - pos: 10.5,-3.5 + - type: Transform + pos: 10.5,-3.5 parent: 656 - type: Transform - uid: 995 components: - - pos: 10.5,-2.5 + - type: Transform + pos: 10.5,-2.5 parent: 656 - type: Transform - uid: 996 components: - - pos: 10.5,-1.5 + - type: Transform + pos: 10.5,-1.5 parent: 656 - type: Transform - uid: 997 components: - - pos: 10.5,-0.5 + - type: Transform + pos: 10.5,-0.5 parent: 656 - type: Transform - uid: 998 components: - - pos: 10.5,0.5 + - type: Transform + pos: 10.5,0.5 parent: 656 - type: Transform - uid: 999 components: - - pos: 10.5,1.5 + - type: Transform + pos: 10.5,1.5 parent: 656 - type: Transform - uid: 1000 components: - - pos: 10.5,2.5 + - type: Transform + pos: 10.5,2.5 parent: 656 - type: Transform - uid: 1001 components: - - pos: 10.5,3.5 + - type: Transform + pos: 10.5,3.5 parent: 656 - type: Transform - uid: 1002 components: - - pos: 10.5,4.5 + - type: Transform + pos: 10.5,4.5 parent: 656 - type: Transform - uid: 1003 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 656 - type: Transform - uid: 1004 components: - - pos: 9.5,5.5 + - type: Transform + pos: 9.5,5.5 parent: 656 - type: Transform - uid: 1005 components: - - pos: 8.5,5.5 + - type: Transform + pos: 8.5,5.5 parent: 656 - type: Transform - uid: 1006 components: - - pos: 7.5,5.5 + - type: Transform + pos: 7.5,5.5 parent: 656 - type: Transform - uid: 1007 components: - - pos: 6.5,5.5 + - type: Transform + pos: 6.5,5.5 parent: 656 - type: Transform - uid: 1008 components: - - pos: 5.5,5.5 + - type: Transform + pos: 5.5,5.5 parent: 656 - type: Transform - uid: 1009 components: - - pos: 4.5,5.5 + - type: Transform + pos: 4.5,5.5 parent: 656 - type: Transform - uid: 1010 components: - - pos: 4.5,6.5 + - type: Transform + pos: 4.5,6.5 parent: 656 - type: Transform - uid: 1011 components: - - pos: 4.5,7.5 + - type: Transform + pos: 4.5,7.5 parent: 656 - type: Transform - uid: 1012 components: - - pos: 4.5,8.5 + - type: Transform + pos: 4.5,8.5 parent: 656 - type: Transform - uid: 1013 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 656 - type: Transform - uid: 1014 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 656 - type: Transform - uid: 1015 components: - - pos: 1.5,8.5 + - type: Transform + pos: 1.5,8.5 parent: 656 - type: Transform - uid: 1016 components: - - pos: 0.5,8.5 + - type: Transform + pos: 0.5,8.5 parent: 656 - type: Transform - uid: 1017 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 656 - type: Transform - uid: 1018 components: - - pos: 0.5,10.5 + - type: Transform + pos: 0.5,10.5 parent: 656 - type: Transform - proto: CableTerminal entities: - uid: 746 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-16.5 parent: 656 - type: Transform - proto: Catwalk entities: - uid: 14 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 656 - type: Transform - uid: 247 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,8.5 parent: 656 - type: Transform - uid: 608 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 656 - type: Transform - uid: 1133 components: - - pos: 3.5,-12.5 + - type: Transform + pos: 3.5,-12.5 parent: 656 - type: Transform - uid: 1134 components: - - pos: 4.5,-12.5 + - type: Transform + pos: 4.5,-12.5 parent: 656 - type: Transform - uid: 1135 components: - - pos: 5.5,-12.5 + - type: Transform + pos: 5.5,-12.5 parent: 656 - type: Transform - uid: 1136 components: - - pos: 6.5,-12.5 + - type: Transform + pos: 6.5,-12.5 parent: 656 - type: Transform - uid: 1138 components: - - pos: 6.5,-13.5 + - type: Transform + pos: 6.5,-13.5 parent: 656 - type: Transform - uid: 1139 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 656 - type: Transform - uid: 1141 components: - - pos: 6.5,-14.5 + - type: Transform + pos: 6.5,-14.5 parent: 656 - type: Transform - uid: 1142 components: - - pos: 6.5,-15.5 + - type: Transform + pos: 6.5,-15.5 parent: 656 - type: Transform - uid: 1144 components: - - pos: 2.5,-12.5 + - type: Transform + pos: 2.5,-12.5 parent: 656 - type: Transform - uid: 1145 components: - - pos: 1.5,-12.5 + - type: Transform + pos: 1.5,-12.5 parent: 656 - type: Transform - uid: 1146 components: - - pos: 0.5,-12.5 + - type: Transform + pos: 0.5,-12.5 parent: 656 - type: Transform - uid: 1147 components: - - pos: 0.5,-13.5 + - type: Transform + pos: 0.5,-13.5 parent: 656 - type: Transform - uid: 1148 components: - - pos: 0.5,-11.5 + - type: Transform + pos: 0.5,-11.5 parent: 656 - type: Transform - proto: Chair entities: - uid: 235 components: - - pos: 11.5,-0.5 + - type: Transform + pos: 11.5,-0.5 parent: 656 - type: Transform - uid: 443 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 656 - type: Transform - uid: 446 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-2.5 parent: 656 - type: Transform - uid: 524 components: - - pos: 12.5,4.5 + - type: Transform + pos: 12.5,4.5 parent: 656 - type: Transform - uid: 542 components: - - pos: 11.5,4.5 + - type: Transform + pos: 11.5,4.5 parent: 656 - type: Transform - uid: 614 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,2.5 parent: 656 - type: Transform - uid: 623 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,2.5 parent: 656 - type: Transform - uid: 661 components: - - pos: 12.5,-0.5 + - type: Transform + pos: 12.5,-0.5 parent: 656 - type: Transform - proto: ChairOfficeDark entities: - uid: 160 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 656 - type: Transform - uid: 423 components: - - pos: 11.5,5.5 + - type: Transform + pos: 11.5,5.5 parent: 656 - type: Transform - uid: 437 components: - - pos: 5.5,12.5 + - type: Transform + pos: 5.5,12.5 parent: 656 - type: Transform - uid: 632 components: - - pos: 1.5,12.5 + - type: Transform + pos: 1.5,12.5 parent: 656 - type: Transform - proto: ChairOfficeLight entities: - uid: 7 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,0.5 parent: 656 - type: Transform - uid: 25 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,2.5 parent: 656 - type: Transform - uid: 52 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 656 - type: Transform - uid: 254 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 656 - type: Transform - uid: 398 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 656 - type: Transform - uid: 487 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 656 - type: Transform - uid: 500 components: - - pos: 2.5,12.5 + - type: Transform + pos: 2.5,12.5 parent: 656 - type: Transform - uid: 570 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,6.5 parent: 656 - type: Transform - uid: 599 components: - - pos: 4.5,12.5 + - type: Transform + pos: 4.5,12.5 parent: 656 - type: Transform - uid: 1164 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-0.5 parent: 656 - type: Transform - proto: ChairPilotSeat entities: - uid: 4 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-13.5 parent: 656 - type: Transform - uid: 6 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-5.5 parent: 656 - type: Transform - uid: 8 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-7.5 parent: 656 - type: Transform - uid: 9 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-7.5 parent: 656 - type: Transform - uid: 17 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-15.5 parent: 656 - type: Transform - uid: 26 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 656 - type: Transform - uid: 27 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-8.5 parent: 656 - type: Transform - uid: 28 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-7.5 parent: 656 - type: Transform - uid: 156 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-10.5 parent: 656 - type: Transform - uid: 202 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-13.5 parent: 656 - type: Transform - uid: 204 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-13.5 parent: 656 - type: Transform - uid: 206 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-7.5 parent: 656 - type: Transform - uid: 227 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-13.5 parent: 656 - type: Transform - uid: 228 components: - - pos: 7.5,-11.5 + - type: Transform + pos: 7.5,-11.5 parent: 656 - type: Transform - uid: 229 components: - - pos: 3.5,-11.5 + - type: Transform + pos: 3.5,-11.5 parent: 656 - type: Transform - uid: 230 components: - - pos: 4.5,-11.5 + - type: Transform + pos: 4.5,-11.5 parent: 656 - type: Transform - uid: 244 components: - - pos: 12.5,-5.5 + - type: Transform + pos: 12.5,-5.5 parent: 656 - type: Transform - uid: 246 components: - - pos: 11.5,-5.5 + - type: Transform + pos: 11.5,-5.5 parent: 656 - type: Transform - uid: 248 components: - - pos: 3.5,12.5 + - type: Transform + pos: 3.5,12.5 parent: 656 - type: Transform - uid: 258 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-5.5 parent: 656 - type: Transform - uid: 259 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-8.5 parent: 656 - type: Transform - uid: 266 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-11.5 parent: 656 - type: Transform - uid: 275 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 656 - type: Transform - uid: 301 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-11.5 parent: 656 - type: Transform - uid: 358 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-8.5 parent: 656 - type: Transform - uid: 364 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-4.5 parent: 656 - type: Transform - uid: 365 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 656 - type: Transform - uid: 381 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-13.5 parent: 656 - type: Transform - uid: 391 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-7.5 parent: 656 - type: Transform - uid: 407 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-7.5 parent: 656 - type: Transform - uid: 421 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-4.5 parent: 656 - type: Transform - uid: 422 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-5.5 parent: 656 - type: Transform - uid: 433 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-8.5 parent: 656 - type: Transform - uid: 435 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-4.5 parent: 656 - type: Transform - uid: 447 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-11.5 parent: 656 - type: Transform - uid: 449 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-12.5 parent: 656 - type: Transform - uid: 463 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-11.5 parent: 656 - type: Transform - uid: 484 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-5.5 parent: 656 - type: Transform - uid: 485 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,12.5 parent: 656 - type: Transform - uid: 488 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 656 - type: Transform - uid: 489 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-4.5 parent: 656 - type: Transform - uid: 496 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 656 - type: Transform - uid: 497 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 656 - type: Transform - uid: 512 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-7.5 parent: 656 - type: Transform - uid: 513 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-8.5 parent: 656 - type: Transform - uid: 520 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-7.5 parent: 656 - type: Transform - uid: 534 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 656 - type: Transform - uid: 558 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-11.5 parent: 656 - type: Transform - uid: 571 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-5.5 parent: 656 - type: Transform - uid: 573 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 656 - type: Transform - uid: 579 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-9.5 parent: 656 - type: Transform - uid: 580 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-11.5 parent: 656 - type: Transform - uid: 587 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-10.5 parent: 656 - type: Transform - uid: 598 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-9.5 parent: 656 - type: Transform - uid: 603 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-14.5 parent: 656 - type: Transform - uid: 604 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-15.5 parent: 656 - type: Transform - uid: 605 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-14.5 parent: 656 - type: Transform - uid: 606 components: - - pos: 5.5,-11.5 + - type: Transform + pos: 5.5,-11.5 parent: 656 - type: Transform - uid: 621 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-7.5 parent: 656 - type: Transform - uid: 633 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-12.5 parent: 656 - type: Transform - uid: 634 components: - - pos: 10.5,-5.5 + - type: Transform + pos: 10.5,-5.5 parent: 656 - type: Transform - uid: 635 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-13.5 parent: 656 - type: Transform - uid: 636 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-13.5 parent: 656 - type: Transform - uid: 639 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,-7.5 parent: 656 - type: Transform - uid: 657 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-8.5 parent: 656 - type: Transform - uid: 1166 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 656 - type: Transform - uid: 1167 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 656 - type: Transform - uid: 1169 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,0.5 parent: 656 - type: Transform - uid: 1170 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 656 - type: Transform - uid: 1171 components: - - pos: -5.5,6.5 + - type: Transform + pos: -5.5,6.5 parent: 656 - type: Transform - uid: 1172 components: - - pos: -4.5,6.5 + - type: Transform + pos: -4.5,6.5 parent: 656 - type: Transform - uid: 1173 components: - - pos: 7.5,6.5 + - type: Transform + pos: 7.5,6.5 parent: 656 - type: Transform - uid: 1174 components: - - pos: -2.5,6.5 + - type: Transform + pos: -2.5,6.5 parent: 656 - type: Transform - uid: 1175 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 656 - type: Transform - uid: 1177 components: - - pos: 0.5,6.5 + - type: Transform + pos: 0.5,6.5 parent: 656 - type: Transform - uid: 1178 components: - - pos: 8.5,6.5 + - type: Transform + pos: 8.5,6.5 parent: 656 - type: Transform - uid: 1179 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,4.5 parent: 656 - type: Transform - uid: 1180 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,4.5 parent: 656 - type: Transform - uid: 1181 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 656 - type: Transform - uid: 1182 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 656 - type: Transform - uid: 1183 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,4.5 parent: 656 - type: Transform - uid: 1184 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,4.5 parent: 656 - type: Transform - uid: 1185 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-0.5 parent: 656 - type: Transform - uid: 1186 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 656 - type: Transform - uid: 1187 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,2.5 parent: 656 - type: Transform - uid: 1188 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 656 - type: Transform - uid: 1389 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,4.5 parent: 656 - type: Transform - uid: 1390 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,4.5 parent: 656 - type: Transform - uid: 1391 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 656 - type: Transform - uid: 1392 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 656 - type: Transform - proto: CigaretteSpent entities: - uid: 1243 components: - - pos: 0.58024573,5.5107303 + - type: Transform + pos: 0.58024573,5.5107303 parent: 656 - type: Transform - uid: 1244 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.7964115,5.4290824 parent: 656 - type: Transform - uid: 1245 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.272406,-1.7344122 parent: 656 - type: Transform - uid: 1246 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.9312315,-4.8934674 parent: 656 - type: Transform - uid: 1247 components: - - pos: -0.42638212,-5.198744 + - type: Transform + pos: -0.42638212,-5.198744 parent: 656 - type: Transform - uid: 1248 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.9355683,2.3695393 parent: 656 - type: Transform - proto: CigarGoldCase entities: - uid: 1315 components: - - pos: 1.5270863,9.560013 + - type: Transform + pos: 1.5270863,9.560013 parent: 656 - type: Transform - uid: 1316 components: - - pos: 6.360442,12.303375 + - type: Transform + pos: 6.360442,12.303375 parent: 656 - type: Transform - uid: 1333 components: - - pos: 0.32433808,12.185381 + - type: Transform + pos: 0.32433808,12.185381 parent: 656 - type: Transform - proto: CigarGoldSpent entities: - uid: 1242 components: - - pos: 11.559349,9.745106 + - type: Transform + pos: 11.559349,9.745106 parent: 656 - type: Transform - uid: 1253 components: - - pos: 0.46331644,11.600328 + - type: Transform + pos: 0.46331644,11.600328 parent: 656 - type: Transform - uid: 1254 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.22894144,11.584703 parent: 656 - type: Transform - proto: CigarSpent entities: - uid: 260 components: - - pos: 8.401125,0.6311847 + - type: Transform + pos: 8.401125,0.6311847 parent: 656 - type: Transform - uid: 1251 components: - - pos: 0.38641524,11.678453 + - type: Transform + pos: 0.38641524,11.678453 parent: 656 - type: Transform - proto: ClosetMaintenance entities: - uid: 29 components: - - pos: -3.5,-16.5 + - type: Transform + pos: -3.5,-16.5 parent: 656 - type: Transform - proto: ClosetWallAtmospherics entities: - uid: 1318 components: - - pos: 1.5,-10.5 + - type: Transform + pos: 1.5,-10.5 parent: 656 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3731,8 +3706,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3741,116 +3716,116 @@ entities: - 1320 - 1321 - 1322 - type: ContainerContainer - proto: ClosetWallEmergencyFilledRandom entities: - uid: 1126 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-4.5 parent: 656 - type: Transform - uid: 1127 components: - - pos: -2.5,7.5 + - type: Transform + pos: -2.5,7.5 parent: 656 - type: Transform - uid: 1129 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,3.5 parent: 656 - type: Transform - uid: 1130 components: - - pos: 9.5,7.5 + - type: Transform + pos: 9.5,7.5 parent: 656 - type: Transform - uid: 1149 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 656 - type: Transform - uid: 1153 components: - - pos: 7.5,-1.5 + - type: Transform + pos: 7.5,-1.5 parent: 656 - type: Transform - uid: 1155 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-11.5 parent: 656 - type: Transform - uid: 1157 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-10.5 parent: 656 - type: Transform - uid: 1158 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 656 - type: Transform - proto: ClosetWallFireFilledRandom entities: - uid: 1128 components: - - pos: -0.5,-1.5 + - type: Transform + pos: -0.5,-1.5 parent: 656 - type: Transform - uid: 1131 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-4.5 parent: 656 - type: Transform - uid: 1150 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 656 - type: Transform - uid: 1151 components: - - pos: 8.5,7.5 + - type: Transform + pos: 8.5,7.5 parent: 656 - type: Transform - uid: 1152 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 656 - type: Transform - uid: 1154 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-11.5 parent: 656 - type: Transform - uid: 1156 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-10.5 parent: 656 - type: Transform - uid: 1159 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,12.5 parent: 656 - type: Transform - proto: ClosetWallOrange entities: - uid: 1368 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-15.5 parent: 656 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3867,8 +3842,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3879,15 +3854,15 @@ entities: - 1372 - 1373 - 1374 - type: ContainerContainer - proto: ClosetWallYellow entities: - uid: 1361 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 656 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3904,8 +3879,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3916,284 +3891,252 @@ entities: - 1365 - 1366 - 1367 - type: ContainerContainer - proto: ClothingBeltUtilityEngineering entities: - uid: 1322 components: - - flags: InContainer - type: MetaData - - parent: 1318 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1318 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1365 components: - - flags: InContainer - type: MetaData - - parent: 1361 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1361 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingEyesGlassesMeson entities: - uid: 1319 components: - - flags: InContainer - type: MetaData - - parent: 1318 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1318 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1364 components: - - flags: InContainer - type: MetaData - - parent: 1361 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1361 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingHandsGlovesColorYellow entities: - uid: 1363 components: - - flags: InContainer - type: MetaData - - parent: 1361 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1361 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatHardhatYellow entities: - uid: 1362 components: - - flags: InContainer - type: MetaData - - parent: 1361 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1361 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHatOrangesoftFlipped entities: - uid: 641 components: - - pos: -2.4952655,-16.59072 + - type: Transform + pos: -2.4952655,-16.59072 parent: 656 - type: Transform - proto: ClothingShoesBootsWork entities: - uid: 1367 components: - - flags: InContainer - type: MetaData - - parent: 1361 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1361 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorBlack entities: - uid: 1369 components: - - flags: InContainer - type: MetaData - - parent: 1368 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1368 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1374 components: - - flags: InContainer - type: MetaData - - parent: 1368 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1368 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorWhite entities: - uid: 1320 components: - - flags: InContainer - type: MetaData - - parent: 1318 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1318 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 1371 components: - - flags: InContainer - type: MetaData - - parent: 1368 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1368 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1373 components: - - flags: InContainer - type: MetaData - - parent: 1368 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1368 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitAtmos entities: - uid: 1321 components: - - flags: InContainer - type: MetaData - - parent: 1318 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1318 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitEngineering entities: - uid: 1366 components: - - flags: InContainer - type: MetaData - - parent: 1361 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1361 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 1370 components: - - flags: InContainer - type: MetaData - - parent: 1368 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1368 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1372 components: - - flags: InContainer - type: MetaData - - parent: 1368 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1368 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ComfyChair entities: - uid: 48 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,9.5 parent: 656 - type: Transform - uid: 140 components: - - pos: 11.5,10.5 + - type: Transform + pos: 11.5,10.5 parent: 656 - type: Transform - uid: 203 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,8.5 parent: 656 - type: Transform - uid: 234 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 656 - type: Transform - uid: 457 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,9.5 parent: 656 - type: Transform - uid: 533 components: - - pos: 6.5,9.5 + - type: Transform + pos: 6.5,9.5 parent: 656 - type: Transform - proto: ComputerComms entities: - uid: 251 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 656 - type: Transform - proto: ComputerEmergencyShuttle entities: - uid: 307 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 656 - type: Transform - proto: ComputerId entities: - uid: 1261 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,11.5 parent: 656 - type: Transform - proto: ComputerPowerMonitoring entities: - uid: 314 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,11.5 parent: 656 - type: Transform - proto: ComputerRadar entities: - uid: 49 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,11.5 parent: 656 - type: Transform - proto: CrateArtifactContainer entities: - uid: 392 components: - - pos: 9.5,-10.5 + - type: Transform + pos: 9.5,-10.5 parent: 656 - type: Transform - proto: CrateScience entities: - uid: 375 components: - - pos: 10.5,-16.5 + - type: Transform + pos: 10.5,-16.5 parent: 656 - type: Transform - proto: CrateScienceSecure entities: - uid: 109 components: - - pos: 9.5,-16.5 + - type: Transform + pos: 9.5,-16.5 parent: 656 - type: Transform - proto: CrateToyBox entities: - uid: 419 components: - - pos: -2.5,-13.5 + - type: Transform + pos: -2.5,-13.5 parent: 656 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -4210,8 +4153,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -4221,146 +4164,137 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: DefibrillatorCabinetFilled entities: - uid: 480 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,0.5 parent: 656 - type: Transform - proto: DrinkBeerBottleFull entities: - uid: 5 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.3860588,-5.2952967 parent: 656 - type: Transform - uid: 53 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5891838,-5.545557 parent: 656 - type: Transform - uid: 241 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.4798088,-5.7332525 parent: 656 - type: Transform - uid: 245 components: - - pos: 9.154561,-5.486017 + - type: Transform + pos: 9.154561,-5.486017 parent: 656 - type: Transform - uid: 410 components: - - pos: 9.482686,-7.409897 + - type: Transform + pos: 9.482686,-7.409897 parent: 656 - type: Transform - uid: 455 components: - - pos: 9.779561,-5.4234524 + - type: Transform + pos: 9.779561,-5.4234524 parent: 656 - type: Transform - uid: 518 components: - - pos: 9.404561,-5.1731915 + - type: Transform + pos: 9.404561,-5.1731915 parent: 656 - type: Transform - uid: 530 components: - - pos: 9.810811,-7.4411793 + - type: Transform + pos: 9.810811,-7.4411793 parent: 656 - type: Transform - uid: 582 components: - - pos: 9.201436,-7.5975924 + - type: Transform + pos: 9.201436,-7.5975924 parent: 656 - type: Transform - proto: DrinkBottleWhiskey entities: - uid: 1241 components: - - pos: 3.5039206,9.713856 + - type: Transform + pos: 3.5039206,9.713856 parent: 656 - type: Transform - proto: DrinkGlass entities: - uid: 278 components: - - pos: 8.357328,1.3760724 + - type: Transform + pos: 8.357328,1.3760724 parent: 656 - type: Transform - proto: DrinkRootBeerGlass entities: - uid: 622 components: - - pos: 7.5982046,3.727582 + - type: Transform + pos: 7.5982046,3.727582 parent: 656 - type: Transform - proto: DrinkVodkaGlass entities: - uid: 655 components: - - pos: 8.605504,2.880454 + - type: Transform + pos: 8.605504,2.880454 parent: 656 - type: Transform - proto: DrinkWaterBottleFull entities: - uid: 1229 components: - - pos: 0.8007953,12.07888 + - type: Transform + pos: 0.8007953,12.07888 parent: 656 - type: Transform - uid: 1240 components: - - pos: 6.7539206,12.657005 + - type: Transform + pos: 6.7539206,12.657005 parent: 656 - type: Transform - proto: EmergencyMedipen entities: - uid: 1376 components: - - pos: 1.7398462,-0.32216096 + - type: Transform + pos: 1.7398462,-0.32216096 parent: 656 - type: Transform - uid: 1377 components: - - pos: 1.6929712,-0.49403596 + - type: Transform + pos: 1.6929712,-0.49403596 parent: 656 - type: Transform - proto: EmergencyRollerBedSpawnFolded entities: - uid: 396 components: - - pos: -1.4790744,1.6367824 + - type: Transform + pos: -1.4790744,1.6367824 parent: 656 - type: Transform - uid: 559 components: - - pos: -1.6353244,1.3555324 + - type: Transform + pos: -1.6353244,1.3555324 parent: 656 - type: Transform - proto: FireAlarm entities: - uid: 1306 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1202 - - 1203 - - 1204 - - 1199 - - 1200 - - 1201 - - 733 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1202 - 1203 - 1204 @@ -4368,14 +4302,14 @@ entities: - 1200 - 1201 - 733 - type: DeviceList - uid: 1307 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,2.5 parent: 656 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 13 - 596 - 709 @@ -4383,2770 +4317,2631 @@ entities: - 711 - 708 - 1325 - type: DeviceNetwork - - devices: - - 13 - - 596 - - 709 - - 710 - - 711 - - 708 - - 1325 - type: DeviceList - uid: 1308 components: - - pos: 11.5,7.5 + - type: Transform + pos: 11.5,7.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 716 - - 715 - - 714 - - 712 - - 713 - - 1325 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 716 - 715 - 714 - 712 - 713 - 1325 - type: DeviceList - uid: 1309 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-4.5 parent: 656 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 1197 - 1189 - 1325 - 735 - type: DeviceNetwork - - devices: - - 1197 - - 1189 - - 1325 - - 735 - type: DeviceList - uid: 1310 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 656 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 1330 - 734 - 545 - 434 - 736 - type: DeviceNetwork - - devices: - - 1330 - - 734 - - 545 - - 434 - - 736 - type: DeviceList - uid: 1314 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-4.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1193 - - 1192 - - 1326 - - 735 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1193 - 1192 - 1326 - 735 - type: DeviceList - uid: 1331 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-4.5 parent: 656 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 1193 - 1192 - 1326 - 735 - type: DeviceNetwork - - devices: - - 1193 - - 1192 - - 1326 - - 735 - type: DeviceList - uid: 1332 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,-4.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1197 - - 1189 - - 1325 - - 735 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1197 - 1189 - 1325 - 735 - type: DeviceList - proto: FireAxeCabinetFilled entities: - uid: 1165 components: - - pos: 3.5,10.5 + - type: Transform + pos: 3.5,10.5 parent: 656 - type: Transform - proto: Firelock entities: - uid: 595 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-12.5 parent: 656 - type: Transform - uid: 681 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-10.5 parent: 656 - type: Transform - uid: 688 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 656 - type: Transform - uid: 689 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 656 - type: Transform - proto: FirelockEdge entities: - uid: 712 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,4.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1308 - type: DeviceNetwork - uid: 713 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,4.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1308 - type: DeviceNetwork - uid: 714 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,4.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1308 - type: DeviceNetwork - uid: 715 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,5.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 697 - - 1308 - type: DeviceNetwork - uid: 716 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 697 - - 1308 - type: DeviceNetwork - uid: 1189 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1332 - - 1309 - type: DeviceNetwork - uid: 1192 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1331 - - 1314 - type: DeviceNetwork - uid: 1193 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-2.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1331 - - 1314 - type: DeviceNetwork - uid: 1197 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1332 - - 1309 - type: DeviceNetwork - uid: 1199 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,6.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1306 - type: DeviceNetwork - uid: 1200 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,5.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1306 - type: DeviceNetwork - uid: 1201 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,4.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1306 - type: DeviceNetwork - uid: 1202 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,6.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1306 - type: DeviceNetwork - uid: 1203 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,5.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1306 - type: DeviceNetwork - uid: 1204 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,4.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1306 - type: DeviceNetwork - proto: FirelockGlass entities: - uid: 13 components: - - pos: 7.5,3.5 + - type: Transform + pos: 7.5,3.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1307 - type: DeviceNetwork - uid: 255 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 656 - type: Transform - uid: 434 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,7.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1310 - type: DeviceNetwork - uid: 540 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-6.5 parent: 656 - type: Transform - uid: 545 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,7.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1310 - type: DeviceNetwork - uid: 596 components: - - pos: 8.5,3.5 + - type: Transform + pos: 8.5,3.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1307 - type: DeviceNetwork - uid: 707 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 656 - type: Transform - uid: 708 components: - - pos: 4.5,-1.5 + - type: Transform + pos: 4.5,-1.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1307 - type: DeviceNetwork - uid: 709 components: - - pos: 8.5,2.5 + - type: Transform + pos: 8.5,2.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1307 - type: DeviceNetwork - uid: 710 components: - - pos: 8.5,1.5 + - type: Transform + pos: 8.5,1.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1307 - type: DeviceNetwork - uid: 711 components: - - pos: 8.5,0.5 + - type: Transform + pos: 8.5,0.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1307 - type: DeviceNetwork - uid: 734 components: - - pos: 7.5,10.5 + - type: Transform + pos: 7.5,10.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1310 - type: DeviceNetwork - uid: 736 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 656 - type: Transform - - ShutdownSubscribers: - - 1310 - type: DeviceNetwork - proto: FoodBreadBanana entities: - uid: 70 components: - - flags: InContainer - type: MetaData - - parent: 67 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 67 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: FoodBreadCorn entities: - uid: 69 components: - - flags: InContainer - type: MetaData - - parent: 67 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 67 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: FoodBreadCreamcheese entities: - uid: 73 components: - - flags: InContainer - type: MetaData - - parent: 67 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 67 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: FoodBreadPlain entities: - uid: 71 components: - - flags: InContainer + - type: MetaData name: хвебушек - type: MetaData - - parent: 67 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 67 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: FoodBreadTofu entities: - uid: 68 components: - - flags: InContainer - type: MetaData - - parent: 67 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 67 + - type: Physics + canCollide: False - type: InsideEntityStorage -- proto: FoodMeatLizardtailKebab +- proto: FoodKebabSkewer entities: - uid: 72 components: - - flags: InContainer + - type: MetaData desc: Чей-то зверски отрезанный хвост, из которого сделали шашлык. "Деликатес" name: шашлык из хвоста белой ящерицы - type: MetaData - - parent: 67 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 67 + - type: Physics + canCollide: False - type: InsideEntityStorage -- proto: FoodMeatRatdoubleKebab - entities: - uid: 567 components: - - pos: -5.510681,-14.711578 + - type: Transform + pos: -5.510681,-14.711578 parent: 656 - type: Transform -- proto: FoodMeatRatKebab - entities: - uid: 574 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.604431,-14.38311 parent: 656 - type: Transform - proto: GasAnalyzer entities: - uid: 535 components: - - pos: 1.6526065,-16.464167 + - type: Transform + pos: 1.6526065,-16.464167 parent: 656 - type: Transform - proto: GasMixerFlipped entities: - uid: 584 components: - - pos: 0.5,-15.5 + - type: Transform + pos: 0.5,-15.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - proto: GasPassiveVent entities: - uid: 408 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-18.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeBend entities: - uid: 287 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 320 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 424 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 504 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-18.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 556 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-16.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 658 components: - - pos: 9.5,4.5 + - type: Transform + pos: 9.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 767 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 811 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 812 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 851 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 859 components: - - pos: 11.5,5.5 + - type: Transform + pos: 11.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeFourway entities: - uid: 21 components: - - pos: 2.5,9.5 + - type: Transform + pos: 2.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 249 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 426 components: - - pos: 3.5,-6.5 + - type: Transform + pos: 3.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 616 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 676 components: - - pos: 3.5,8.5 + - type: Transform + pos: 3.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 723 components: - - pos: 1.5,-7.5 + - type: Transform + pos: 1.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 883 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 10 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-13.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 11 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 12 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-7.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 22 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-10.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 23 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 24 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 31 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 32 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 33 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 35 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 250 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 256 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 257 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 270 components: - - pos: -3.5,-7.5 + - type: Transform + pos: -3.5,-7.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 272 components: - - pos: 1.5,-16.5 + - type: Transform + pos: 1.5,-16.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 284 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 285 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 286 components: - - pos: 6.5,-0.5 + - type: Transform + pos: 6.5,-0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 288 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 289 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 290 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 319 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 399 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-18.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 403 components: - - pos: 1.5,-15.5 + - type: Transform + pos: 1.5,-15.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 405 components: - - pos: 1.5,-17.5 + - type: Transform + pos: 1.5,-17.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 425 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 436 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 439 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 440 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 441 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 442 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 445 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 448 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 477 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 479 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 499 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 505 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 514 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-18.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 522 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 523 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 525 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,5.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 526 components: - - pos: 6.5,-8.5 + - type: Transform + pos: 6.5,-8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 527 components: - - pos: -3.5,-8.5 + - type: Transform + pos: -3.5,-8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 538 components: - - pos: -3.5,-11.5 + - type: Transform + pos: -3.5,-11.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 539 components: - - pos: -3.5,-9.5 + - type: Transform + pos: -3.5,-9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 543 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 544 components: - - pos: 6.5,-7.5 + - type: Transform + pos: 6.5,-7.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 546 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 562 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 563 components: - - pos: 9.5,-0.5 + - type: Transform + pos: 9.5,-0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 564 components: - - pos: 0.5,-5.5 + - type: Transform + pos: 0.5,-5.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 569 components: - - pos: 9.5,-1.5 + - type: Transform + pos: 9.5,-1.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 585 components: - - pos: 6.5,-10.5 + - type: Transform + pos: 6.5,-10.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 611 components: - - pos: 0.5,-3.5 + - type: Transform + pos: 0.5,-3.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 613 components: - - pos: 6.5,-11.5 + - type: Transform + pos: 6.5,-11.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 615 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 624 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 625 components: - - pos: -3.5,-10.5 + - type: Transform + pos: -3.5,-10.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 626 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 628 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 629 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 642 components: - - pos: -3.5,-12.5 + - type: Transform + pos: -3.5,-12.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 643 components: - - pos: -3.5,-13.5 + - type: Transform + pos: -3.5,-13.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 647 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 654 components: - - pos: 0.5,-4.5 + - type: Transform + pos: 0.5,-4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 662 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 663 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,1.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 664 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 667 components: - - pos: 9.5,0.5 + - type: Transform + pos: 9.5,0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 668 components: - - pos: 9.5,1.5 + - type: Transform + pos: 9.5,1.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 669 components: - - pos: 9.5,2.5 + - type: Transform + pos: 9.5,2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 671 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 672 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 673 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 674 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 675 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 677 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 678 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 679 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 680 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,12.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 682 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 683 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 684 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 685 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 686 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 687 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 717 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-13.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 718 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 719 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-11.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 720 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-10.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 721 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 724 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-6.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 725 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 727 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 728 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 729 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 731 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 732 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-8.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 745 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-4.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 751 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 755 components: - - pos: -2.5,-8.5 + - type: Transform + pos: -2.5,-8.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 756 components: - - pos: -2.5,-9.5 + - type: Transform + pos: -2.5,-9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 757 components: - - pos: -2.5,-10.5 + - type: Transform + pos: -2.5,-10.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 758 components: - - pos: -2.5,-11.5 + - type: Transform + pos: -2.5,-11.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 759 components: - - pos: -2.5,-12.5 + - type: Transform + pos: -2.5,-12.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 760 components: - - pos: -2.5,-13.5 + - type: Transform + pos: -2.5,-13.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 762 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 763 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 764 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 765 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 766 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 770 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 771 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 772 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 773 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-8.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 774 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 775 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 776 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-11.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 781 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-10.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 782 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-10.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 784 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 785 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 786 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 787 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 788 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 789 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 791 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 792 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 793 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 794 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 795 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 822 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 823 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-1.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 824 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 825 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 826 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 828 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 829 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,4.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 847 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 849 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 850 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 852 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 853 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-1.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 854 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 855 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 856 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 857 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 858 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,4.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 860 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 861 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 862 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 864 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 865 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 866 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 867 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 868 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 869 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 870 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 871 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 886 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 887 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 888 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 889 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 890 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-1.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 891 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 912 components: - - pos: 2.5,6.5 + - type: Transform + pos: 2.5,6.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 919 components: - - pos: 2.5,7.5 + - type: Transform + pos: 2.5,7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 920 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 921 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 925 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 926 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 927 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 928 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 929 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 945 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,10.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 946 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,11.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 947 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,12.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 960 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,13.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 964 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeTJunction entities: - uid: 1 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 478 components: - - pos: 6.5,-6.5 + - type: Transform + pos: 6.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 498 components: - - pos: -3.5,-6.5 + - type: Transform + pos: -3.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 541 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,-9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 561 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-12.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 665 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 666 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 9.5,3.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 670 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,4.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 722 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-8.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 730 components: - - pos: -2.5,-7.5 + - type: Transform + pos: -2.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 744 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-4.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 768 components: - - pos: 7.5,-7.5 + - type: Transform + pos: 7.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 780 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 7.5,-10.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 837 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 838 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 878 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-3.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 906 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,5.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 957 components: - - pos: 2.5,13.5 + - type: Transform + pos: 2.5,13.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPort entities: - uid: 271 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-16.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 577 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-15.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - proto: GasPressurePump entities: - uid: 291 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-14.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - proto: GasVentPump entities: - uid: 691 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 692 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,8.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 693 components: - - pos: 3.5,13.5 + - type: Transform + pos: 3.5,13.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 694 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -3.5,3.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 695 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,3.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 696 components: - - pos: 6.5,0.5 + - type: Transform + pos: 6.5,0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 698 components: - - pos: 0.5,0.5 + - type: Transform + anchored: False + pos: 0.5,0.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' + - type: Physics + canCollide: True + bodyType: Dynamic - uid: 699 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 700 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-14.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 701 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-12.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 702 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-12.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 703 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 704 components: - - pos: 3.5,-5.5 + - type: Transform + pos: 3.5,-5.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 705 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-6.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 706 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-9.5 parent: 656 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - proto: GasVentScrubber entities: - uid: 240 components: - - pos: 11.5,-6.5 + - type: Transform + pos: 11.5,-6.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 967 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 968 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,13.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 969 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 970 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,9.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 971 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 972 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,2.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 973 components: - - pos: 5.5,0.5 + - type: Transform + pos: 5.5,0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 974 components: - - pos: 1.5,0.5 + - type: Transform + pos: 1.5,0.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 975 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,-7.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 976 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-14.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 977 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-12.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 978 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 979 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-8.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 980 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,-4.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasVolumePump entities: - uid: 588 components: - - pos: 1.5,-14.5 + - type: Transform + pos: 1.5,-14.5 parent: 656 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GeneratorBasic15kW entities: - uid: 50 components: - - pos: 3.5,-15.5 + - type: Transform + pos: 3.5,-15.5 parent: 656 - type: Transform - uid: 51 components: - - pos: 3.5,-16.5 + - type: Transform + pos: 3.5,-16.5 parent: 656 - type: Transform - uid: 231 components: - - pos: 3.5,-14.5 + - type: Transform + pos: 3.5,-14.5 parent: 656 - type: Transform - proto: GravityGeneratorMini entities: - uid: 356 components: - - pos: 7.5,-14.5 + - type: Transform + pos: 7.5,-14.5 parent: 656 - type: Transform - proto: Grille entities: - uid: 62 components: - - pos: 1.5,7.5 + - type: Transform + pos: 1.5,7.5 parent: 656 - type: Transform - uid: 81 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,14.5 parent: 656 - type: Transform - uid: 82 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,14.5 parent: 656 - type: Transform - uid: 86 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,14.5 parent: 656 - type: Transform - uid: 98 components: - - pos: -6.5,-14.5 + - type: Transform + pos: -6.5,-14.5 parent: 656 - type: Transform - uid: 103 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,14.5 parent: 656 - type: Transform - uid: 104 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 656 - type: Transform - uid: 105 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,14.5 parent: 656 - type: Transform - uid: 108 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 656 - type: Transform - uid: 111 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 656 - type: Transform - uid: 136 components: - - pos: 13.5,10.5 + - type: Transform + pos: 13.5,10.5 parent: 656 - type: Transform - uid: 151 components: - - pos: -6.5,10.5 + - type: Transform + pos: -6.5,10.5 parent: 656 - type: Transform - uid: 152 components: - - pos: -6.5,8.5 + - type: Transform + pos: -6.5,8.5 parent: 656 - type: Transform - uid: 168 components: - - pos: 13.5,-0.5 + - type: Transform + pos: 13.5,-0.5 parent: 656 - type: Transform - uid: 174 components: - - pos: -3.5,-12.5 + - type: Transform + pos: -3.5,-12.5 parent: 656 - type: Transform - uid: 187 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 656 - type: Transform - uid: 218 components: - - pos: -6.5,9.5 + - type: Transform + pos: -6.5,9.5 parent: 656 - type: Transform - uid: 277 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,14.5 parent: 656 - type: Transform - uid: 282 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 656 - type: Transform - uid: 293 components: - - pos: 13.5,8.5 + - type: Transform + pos: 13.5,8.5 parent: 656 - type: Transform - uid: 302 components: - - pos: -6.5,3.5 + - type: Transform + pos: -6.5,3.5 parent: 656 - type: Transform - uid: 304 components: - - pos: 13.5,3.5 + - type: Transform + pos: 13.5,3.5 parent: 656 - type: Transform - uid: 306 components: - - pos: 13.5,-1.5 + - type: Transform + pos: 13.5,-1.5 parent: 656 - type: Transform - uid: 322 components: - - pos: -6.5,-1.5 + - type: Transform + pos: -6.5,-1.5 parent: 656 - type: Transform - uid: 323 components: - - pos: 13.5,9.5 + - type: Transform + pos: 13.5,9.5 parent: 656 - type: Transform - uid: 331 components: - - pos: 13.5,2.5 + - type: Transform + pos: 13.5,2.5 parent: 656 - type: Transform - uid: 372 components: - - pos: -2.5,-12.5 + - type: Transform + pos: -2.5,-12.5 parent: 656 - type: Transform - uid: 374 components: - - pos: 13.5,4.5 + - type: Transform + pos: 13.5,4.5 parent: 656 - type: Transform - uid: 380 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,14.5 parent: 656 - type: Transform - uid: 382 components: - - pos: 13.5,-14.5 + - type: Transform + pos: 13.5,-14.5 parent: 656 - type: Transform - uid: 383 components: - - pos: -6.5,-0.5 + - type: Transform + pos: -6.5,-0.5 parent: 656 - type: Transform - uid: 462 components: - - pos: 13.5,0.5 + - type: Transform + pos: 13.5,0.5 parent: 656 - type: Transform - proto: Gyroscope entities: - uid: 460 components: - - pos: 4.5,-17.5 + - type: Transform + pos: 4.5,-17.5 parent: 656 - type: Transform - proto: Handcuffs entities: - uid: 263 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5917232,-5.284407 parent: 656 - type: Transform - proto: HospitalCurtains entities: - uid: 106 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,8.5 parent: 656 - type: Transform - uid: 318 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,10.5 parent: 656 - type: Transform - uid: 321 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,9.5 parent: 656 - type: Transform - proto: HospitalCurtainsOpen entities: - uid: 130 components: - - pos: 9.5,8.5 + - type: Transform + pos: 9.5,8.5 parent: 656 - type: Transform - uid: 170 components: - - pos: 9.5,10.5 + - type: Transform + pos: 9.5,10.5 parent: 656 - type: Transform - uid: 297 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,11.5 parent: 656 - type: Transform - uid: 332 components: - - pos: 9.5,9.5 + - type: Transform + pos: 9.5,9.5 parent: 656 - type: Transform - uid: 537 components: - - pos: -1.5,3.5 + - type: Transform + pos: -1.5,3.5 parent: 656 - type: Transform - uid: 650 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 656 - type: Transform - proto: KitchenMicrowave entities: - uid: 74 components: - - pos: 6.5,3.5 + - type: Transform + pos: 6.5,3.5 parent: 656 - type: Transform - proto: KitchenReagentGrinder entities: - uid: 459 components: - - pos: 5.5,3.5 + - type: Transform + pos: 5.5,3.5 parent: 656 - type: Transform - proto: LampGold entities: - uid: 294 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.68949,8.965332 parent: 656 - type: Transform - proto: LockerEvidence entities: - uid: 1195 components: - - pos: -3.5,-11.5 + - type: Transform + pos: -3.5,-11.5 parent: 656 - type: Transform - proto: LockerFreezerBase entities: - uid: 67 components: - - pos: 4.5,3.5 + - type: Transform + pos: 4.5,3.5 parent: 656 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -7163,8 +6958,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -7179,2539 +6974,2580 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: Mattress entities: - uid: 223 components: - - pos: -2.5,-16.5 + - type: Transform + pos: -2.5,-16.5 parent: 656 - type: Transform - proto: MedicalBed entities: - uid: 3 components: - - pos: -1.5,3.5 + - type: Transform + pos: -1.5,3.5 parent: 656 - type: Transform - uid: 395 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 656 - type: Transform - uid: 515 components: - - pos: 0.5,3.5 + - type: Transform + pos: 0.5,3.5 parent: 656 - type: Transform - proto: MedkitBruteFilled entities: - uid: 236 components: - - pos: -1.200089,-0.3659892 + - type: Transform + pos: -1.200089,-0.3659892 parent: 656 - type: Transform - uid: 397 components: - - pos: -1.481339,-0.6472392 + - type: Transform + pos: -1.481339,-0.6472392 parent: 656 - type: Transform - proto: MedkitBurnFilled entities: - uid: 30 components: - - pos: 1.2446278,-0.3562429 + - type: Transform + pos: 1.2446278,-0.3562429 parent: 656 - type: Transform - uid: 237 components: - - pos: 1.1570361,-0.6191442 + - type: Transform + pos: 1.1570361,-0.6191442 parent: 656 - type: Transform - proto: MedkitOxygenFilled entities: - uid: 501 components: - - pos: 0.018350124,-0.32703125 + - type: Transform + pos: 0.018350124,-0.32703125 parent: 656 - type: Transform - uid: 553 components: - - pos: -0.098438144,-0.6337501 + - type: Transform + pos: -0.098438144,-0.6337501 parent: 656 - type: Transform - proto: MedkitRadiationFilled entities: - uid: 242 components: - - pos: 0.558496,-0.6337501 + - type: Transform + pos: 0.558496,-0.6337501 parent: 656 - type: Transform - uid: 607 components: - - pos: 0.63148904,-0.34163713 + - type: Transform + pos: 0.63148904,-0.34163713 parent: 656 - type: Transform - proto: MedkitToxinFilled entities: - uid: 252 components: - - pos: -0.71157706,-0.6337501 + - type: Transform + pos: -0.71157706,-0.6337501 parent: 656 - type: Transform - uid: 451 components: - - pos: -0.5947887,-0.32703125 + - type: Transform + pos: -0.5947887,-0.32703125 parent: 656 - type: Transform - proto: NitrogenCanister entities: - uid: 502 components: - - pos: -0.5,-15.5 + - type: Transform + pos: -0.5,-15.5 parent: 656 - type: Transform - proto: NitrousOxideTankFilled entities: - uid: 1176 components: - - flags: InContainer - type: MetaData - - parent: 419 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 419 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: OxygenCanister entities: - uid: 506 components: - - pos: -0.5,-16.5 + - type: Transform + pos: -0.5,-16.5 parent: 656 - type: Transform - proto: Paper entities: - uid: 88 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.65824,9.496582 parent: 656 - type: Transform - proto: PaperBin10 entities: - uid: 134 components: - - pos: -5.5,10.5 + - type: Transform + pos: -5.5,10.5 parent: 656 - type: Transform - uid: 1237 components: - - pos: 6.5,11.5 + - type: Transform + pos: 6.5,11.5 parent: 656 - type: Transform - proto: Pen entities: - uid: 133 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.31449,9.902832 parent: 656 - type: Transform - proto: PenCentcom entities: - uid: 1238 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.9414206,11.722441 parent: 656 - type: Transform - proto: PhoneInstrument entities: - uid: 1235 components: - - pos: 0.5195453,12.597441 + - type: Transform + pos: 0.5195453,12.597441 parent: 656 - type: Transform - proto: PianoInstrument entities: - uid: 279 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,6.5 parent: 656 - type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - uid: 428 components: - - pos: 7.5,-13.5 + - type: Transform + pos: 7.5,-13.5 parent: 656 - type: Transform - uid: 551 components: - - pos: 3.5,-13.5 + - type: Transform + pos: 3.5,-13.5 parent: 656 - type: Transform - uid: 557 components: - - pos: 5.5,-13.5 + - type: Transform + pos: 5.5,-13.5 parent: 656 - type: Transform - uid: 581 components: - - pos: -0.5,-13.5 + - type: Transform + pos: -0.5,-13.5 parent: 656 - type: Transform - uid: 631 components: - - pos: 1.5,-13.5 + - type: Transform + pos: 1.5,-13.5 parent: 656 - type: Transform - uid: 660 components: - - pos: 4.5,-13.5 + - type: Transform + pos: 4.5,-13.5 parent: 656 - type: Transform - proto: PlushieAtmosian entities: - uid: 1223 components: - - pos: -0.41951895,-12.320103 + - type: Transform + pos: -0.41951895,-12.320103 parent: 656 - type: Transform - proto: PlushieCarp entities: - uid: 1228 components: - - desc: Маленький и плюшевый карпик) + - type: MetaData + desc: Маленький и плюшевый карпик) name: карпик - type: MetaData - - pos: 12.398773,-11.539434 + - type: Transform + pos: 12.398773,-11.539434 parent: 656 - type: Transform - proto: PosterContrabandBorgFancy entities: - uid: 1226 components: - - pos: 13.5,1.5 + - type: Transform + pos: 13.5,1.5 parent: 656 - type: Transform - proto: PosterContrabandDonutCorp entities: - uid: 1239 components: - - pos: 10.5,-4.5 + - type: Transform + pos: 10.5,-4.5 parent: 656 - type: Transform - proto: PosterContrabandHackingGuide entities: - uid: 1232 components: - - pos: 7.5,7.5 + - type: Transform + pos: 7.5,7.5 parent: 656 - type: Transform - proto: PosterContrabandHighEffectEngineering entities: - uid: 1220 components: - - pos: 4.5,-10.5 + - type: Transform + pos: 4.5,-10.5 parent: 656 - type: Transform - proto: PosterContrabandMissingGloves entities: - uid: 1230 components: - - pos: 8.5,-12.5 + - type: Transform + pos: 8.5,-12.5 parent: 656 - type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - uid: 1231 components: - - pos: -0.5,7.5 + - type: Transform + pos: -0.5,7.5 parent: 656 - type: Transform - proto: PosterContrabandSpaceCola entities: - uid: 1227 components: - - pos: -6.5,1.5 + - type: Transform + pos: -6.5,1.5 parent: 656 - type: Transform - proto: PosterLegitCarpMount entities: - uid: 1358 components: - - pos: 6.5,10.5 + - type: Transform + pos: 6.5,10.5 parent: 656 - type: Transform - proto: PosterLegitEnlist entities: - uid: 1222 components: - - pos: -6.5,-9.5 + - type: Transform + pos: -6.5,-9.5 parent: 656 - type: Transform - proto: PosterLegitHelpOthers entities: - uid: 1225 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 656 - type: Transform - proto: PosterLegitNanotrasenLogo entities: - uid: 1233 components: - - pos: 1.5,10.5 + - type: Transform + pos: 1.5,10.5 parent: 656 - type: Transform - uid: 1234 components: - - pos: 5.5,10.5 + - type: Transform + pos: 5.5,10.5 parent: 656 - type: Transform - proto: PosterLegitNTTGC entities: - uid: 1236 components: - - pos: 11.5,11.5 + - type: Transform + pos: 11.5,11.5 parent: 656 - type: Transform - proto: PosterLegitSafetyEyeProtection entities: - uid: 1224 components: - - pos: 6.5,-17.5 + - type: Transform + pos: 6.5,-17.5 parent: 656 - type: Transform - proto: PosterLegitSafetyInternals entities: - uid: 1194 components: - - pos: 0.5,-17.5 + - type: Transform + pos: 0.5,-17.5 parent: 656 - type: Transform - proto: PosterLegitSafetyReport entities: - uid: 1221 components: - - pos: -1.5,-8.5 + - type: Transform + pos: -1.5,-8.5 parent: 656 - type: Transform - proto: PosterLegitScience entities: - uid: 1219 components: - - pos: 13.5,-12.5 + - type: Transform + pos: 13.5,-12.5 parent: 656 - type: Transform - proto: PosterLegitSpaceCops entities: - uid: 1218 components: - - pos: -3.5,-4.5 + - type: Transform + pos: -3.5,-4.5 parent: 656 - type: Transform - proto: PottedPlantRandom entities: - uid: 1125 components: - - pos: -0.5,-9.5 + - type: Transform + pos: -0.5,-9.5 parent: 656 - type: Transform - uid: 1380 components: - - pos: 3.5,-6.5 + - type: Transform + pos: 3.5,-6.5 parent: 656 - type: Transform - uid: 1381 components: - - pos: 11.5,-15.5 + - type: Transform + pos: 11.5,-15.5 parent: 656 - type: Transform - uid: 1382 components: - - pos: 4.5,1.5 + - type: Transform + pos: 4.5,1.5 parent: 656 - type: Transform - uid: 1383 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 656 - type: Transform - uid: 1384 components: - - pos: 12.5,8.5 + - type: Transform + pos: 12.5,8.5 parent: 656 - type: Transform - uid: 1385 components: - - pos: 12.5,10.5 + - type: Transform + pos: 12.5,10.5 parent: 656 - type: Transform - uid: 1386 components: - - pos: 12.5,1.5 + - type: Transform + pos: 12.5,1.5 parent: 656 - type: Transform - uid: 1387 components: - - pos: 12.5,0.5 + - type: Transform + pos: 12.5,0.5 parent: 656 - type: Transform - uid: 1388 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 656 - type: Transform - proto: PottedPlantRandomPlastic entities: - uid: 16 components: - - pos: 0.5,-16.5 + - type: Transform + pos: 0.5,-16.5 parent: 656 - type: Transform - proto: Poweredlight entities: - uid: 101 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,12.5 parent: 656 - type: Transform - uid: 113 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,12.5 parent: 656 - type: Transform - uid: 469 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-6.5 parent: 656 - type: Transform - uid: 503 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,8.5 parent: 656 - type: Transform - uid: 507 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-8.5 parent: 656 - type: Transform - uid: 555 components: - - pos: 11.5,-9.5 + - type: Transform + pos: 11.5,-9.5 parent: 656 - type: Transform - uid: 590 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-8.5 parent: 656 - type: Transform - uid: 592 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-15.5 parent: 656 - type: Transform - uid: 602 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 656 - type: Transform - uid: 630 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,8.5 parent: 656 - type: Transform - uid: 637 components: - - pos: 3.5,9.5 + - type: Transform + pos: 3.5,9.5 parent: 656 - type: Transform - uid: 1205 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 656 - type: Transform - uid: 1206 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 656 - type: Transform - uid: 1207 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-4.5 parent: 656 - type: Transform - uid: 1208 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-4.5 parent: 656 - type: Transform - uid: 1209 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-9.5 parent: 656 - type: Transform - uid: 1210 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,-2.5 parent: 656 - type: Transform - uid: 1211 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,1.5 parent: 656 - type: Transform - uid: 1212 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 12.5,5.5 parent: 656 - type: Transform - uid: 1213 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,5.5 parent: 656 - type: Transform - uid: 1214 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,1.5 parent: 656 - type: Transform - uid: 1215 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 656 - type: Transform - uid: 1216 components: - - pos: 0.5,6.5 + - type: Transform + pos: 0.5,6.5 parent: 656 - type: Transform - uid: 1217 components: - - pos: 6.5,6.5 + - type: Transform + pos: 6.5,6.5 parent: 656 - type: Transform - uid: 1359 components: - - pos: -4.5,10.5 + - type: Transform + pos: -4.5,10.5 parent: 656 - type: Transform - uid: 1360 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 656 - type: Transform - proto: PoweredSmallLight entities: - uid: 239 components: - - pos: 11.5,10.5 + - type: Transform + pos: 11.5,10.5 parent: 656 - type: Transform - uid: 413 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 3.5,-15.5 parent: 656 - type: Transform - uid: 417 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-12.5 parent: 656 - type: Transform - uid: 483 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-14.5 parent: 656 - type: Transform - uid: 532 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-15.5 parent: 656 - type: Transform - uid: 560 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,-12.5 parent: 656 - type: Transform - proto: Rack entities: - uid: 409 components: - - pos: -1.5,1.5 + - type: Transform + pos: -1.5,1.5 parent: 656 - type: Transform - proto: Railing entities: - uid: 283 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,4.5 parent: 656 - type: Transform - uid: 401 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,4.5 parent: 656 - type: Transform - uid: 412 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,4.5 parent: 656 - type: Transform - uid: 1256 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-16.5 parent: 656 - type: Transform - uid: 1257 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-14.5 parent: 656 - type: Transform - proto: RailingCornerSmall entities: - uid: 649 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,4.5 parent: 656 - type: Transform - proto: RandomDrinkBottle entities: - uid: 1249 components: - - pos: 8.5,2.5 + - type: Transform + pos: 8.5,2.5 parent: 656 - type: Transform - proto: RandomDrinkGlass entities: - uid: 1348 components: - - pos: 11.5,3.5 + - type: Transform + pos: 11.5,3.5 parent: 656 - type: Transform - uid: 1349 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 656 - type: Transform - uid: 1350 components: - - pos: 8.5,3.5 + - type: Transform + pos: 8.5,3.5 parent: 656 - type: Transform - uid: 1351 components: - - pos: 8.5,0.5 + - type: Transform + pos: 8.5,0.5 parent: 656 - type: Transform - proto: RandomFoodMeal entities: - uid: 1352 components: - - pos: 8.5,1.5 + - type: Transform + pos: 8.5,1.5 parent: 656 - type: Transform - uid: 1353 components: - - pos: 12.5,-1.5 + - type: Transform + pos: 12.5,-1.5 parent: 656 - type: Transform - uid: 1354 components: - - pos: 11.5,3.5 + - type: Transform + pos: 11.5,3.5 parent: 656 - type: Transform - proto: RandomFoodSingle entities: - uid: 1355 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 656 - type: Transform - uid: 1356 components: - - pos: 12.5,-1.5 + - type: Transform + pos: 12.5,-1.5 parent: 656 - type: Transform - proto: RandomSpawner entities: - uid: 1250 components: - - pos: -4.5,-3.5 + - type: Transform + pos: -4.5,-3.5 parent: 656 - type: Transform - uid: 1334 components: - - pos: 4.5,-4.5 + - type: Transform + pos: 4.5,-4.5 parent: 656 - type: Transform - uid: 1335 components: - - pos: 1.5,-7.5 + - type: Transform + pos: 1.5,-7.5 parent: 656 - type: Transform - uid: 1336 components: - - pos: -4.5,-9.5 + - type: Transform + pos: -4.5,-9.5 parent: 656 - type: Transform - uid: 1337 components: - - pos: -2.5,-11.5 + - type: Transform + pos: -2.5,-11.5 parent: 656 - type: Transform - uid: 1338 components: - - pos: -3.5,-15.5 + - type: Transform + pos: -3.5,-15.5 parent: 656 - type: Transform - uid: 1339 components: - - pos: 1.5,-14.5 + - type: Transform + pos: 1.5,-14.5 parent: 656 - type: Transform - uid: 1340 components: - - pos: 7.5,-12.5 + - type: Transform + pos: 7.5,-12.5 parent: 656 - type: Transform - uid: 1341 components: - - pos: 10.5,-11.5 + - type: Transform + pos: 10.5,-11.5 parent: 656 - type: Transform - uid: 1342 components: - - pos: 12.5,-14.5 + - type: Transform + pos: 12.5,-14.5 parent: 656 - type: Transform - uid: 1343 components: - - pos: 12.5,-6.5 + - type: Transform + pos: 12.5,-6.5 parent: 656 - type: Transform - uid: 1344 components: - - pos: 10.5,10.5 + - type: Transform + pos: 10.5,10.5 parent: 656 - type: Transform - uid: 1345 components: - - pos: 1.5,5.5 + - type: Transform + pos: 1.5,5.5 parent: 656 - type: Transform - uid: 1346 components: - - pos: 6.5,1.5 + - type: Transform + pos: 6.5,1.5 parent: 656 - type: Transform - uid: 1347 components: - - pos: -4.5,2.5 + - type: Transform + pos: -4.5,2.5 parent: 656 - type: Transform - proto: RandomVending entities: - uid: 1190 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 656 - type: Transform - proto: RandomVendingDrinks entities: - uid: 1168 components: - - pos: -5.5,-0.5 + - type: Transform + pos: -5.5,-0.5 parent: 656 - type: Transform - proto: RandomVendingSnacks entities: - uid: 1191 components: - - pos: -3.5,6.5 + - type: Transform + pos: -3.5,6.5 parent: 656 - type: Transform - uid: 1198 components: - - pos: 12.5,-3.5 + - type: Transform + pos: 12.5,-3.5 + parent: 656 +- proto: Screen + entities: + - uid: 1393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 656 + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 656 + - uid: 1395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 656 + - uid: 1396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,5.5 + parent: 656 + - uid: 1397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 656 + - uid: 1398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 656 + - uid: 1399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 parent: 656 - type: Transform - proto: SheetSteel entities: - uid: 1379 components: - - pos: 5.4610205,-16.378902 + - type: Transform + pos: 5.4610205,-16.378902 parent: 656 - type: Transform - proto: SheetSteel10 entities: - uid: 1375 components: - - pos: 1.4281847,-14.566402 + - type: Transform + pos: 1.4281847,-14.566402 parent: 656 - type: Transform - proto: ShuttleWindow entities: - uid: 46 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 656 - type: Transform - uid: 58 components: - - pos: 3.5,14.5 + - type: Transform + pos: 3.5,14.5 parent: 656 - type: Transform - uid: 83 components: - - pos: 6.5,14.5 + - type: Transform + pos: 6.5,14.5 parent: 656 - type: Transform - uid: 85 components: - - pos: 2.5,14.5 + - type: Transform + pos: 2.5,14.5 parent: 656 - type: Transform - uid: 89 components: - - pos: 0.5,14.5 + - type: Transform + pos: 0.5,14.5 parent: 656 - type: Transform - uid: 91 components: - - pos: 1.5,14.5 + - type: Transform + pos: 1.5,14.5 parent: 656 - type: Transform - uid: 92 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,14.5 parent: 656 - type: Transform - uid: 94 components: - - pos: 5.5,14.5 + - type: Transform + pos: 5.5,14.5 parent: 656 - type: Transform - uid: 96 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 656 - type: Transform - uid: 99 components: - - pos: 7.5,14.5 + - type: Transform + pos: 7.5,14.5 parent: 656 - type: Transform - uid: 123 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,7.5 parent: 656 - type: Transform - uid: 141 components: - - pos: 13.5,-1.5 + - type: Transform + pos: 13.5,-1.5 parent: 656 - type: Transform - uid: 142 components: - - pos: 1.5,7.5 + - type: Transform + pos: 1.5,7.5 parent: 656 - type: Transform - uid: 161 components: - - pos: -6.5,-14.5 + - type: Transform + pos: -6.5,-14.5 parent: 656 - type: Transform - uid: 163 components: - - pos: 13.5,0.5 + - type: Transform + pos: 13.5,0.5 parent: 656 - type: Transform - uid: 166 components: - - pos: 4.5,14.5 + - type: Transform + pos: 4.5,14.5 parent: 656 - type: Transform - uid: 186 components: - - pos: 13.5,8.5 + - type: Transform + pos: 13.5,8.5 parent: 656 - type: Transform - uid: 189 components: - - pos: 13.5,9.5 + - type: Transform + pos: 13.5,9.5 parent: 656 - type: Transform - uid: 215 components: - - pos: 13.5,2.5 + - type: Transform + pos: 13.5,2.5 parent: 656 - type: Transform - uid: 298 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 656 - type: Transform - uid: 300 components: - - pos: -6.5,-1.5 + - type: Transform + pos: -6.5,-1.5 parent: 656 - type: Transform - uid: 315 components: - - pos: 13.5,-0.5 + - type: Transform + pos: 13.5,-0.5 parent: 656 - type: Transform - uid: 328 components: - - pos: 13.5,-14.5 + - type: Transform + pos: 13.5,-14.5 parent: 656 - type: Transform - uid: 333 components: - - pos: -3.5,-12.5 + - type: Transform + pos: -3.5,-12.5 parent: 656 - type: Transform - uid: 334 components: - - pos: -2.5,-12.5 + - type: Transform + pos: -2.5,-12.5 parent: 656 - type: Transform - uid: 340 components: - - pos: 13.5,3.5 + - type: Transform + pos: 13.5,3.5 parent: 656 - type: Transform - uid: 343 components: - - pos: 13.5,4.5 + - type: Transform + pos: 13.5,4.5 parent: 656 - type: Transform - uid: 368 components: - - pos: 13.5,10.5 + - type: Transform + pos: 13.5,10.5 parent: 656 - type: Transform - uid: 370 components: - - pos: -6.5,3.5 + - type: Transform + pos: -6.5,3.5 parent: 656 - type: Transform - uid: 453 components: - - pos: -6.5,-0.5 + - type: Transform + pos: -6.5,-0.5 parent: 656 - type: Transform - uid: 466 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 656 - type: Transform - uid: 468 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,8.5 parent: 656 - type: Transform - proto: SignBar entities: - uid: 509 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,-1.5 parent: 656 - type: Transform - proto: SignBridge entities: - uid: 188 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,7.5 parent: 656 - type: Transform - proto: SignMedical entities: - uid: 510 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-1.5 parent: 656 - type: Transform - proto: SMESBasic entities: - uid: 225 components: - - pos: 7.5,-16.5 + - type: Transform + pos: 7.5,-16.5 parent: 656 - type: Transform -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 619 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 656 - type: Transform - proto: Stairs entities: - uid: 264 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,6.5 parent: 656 - type: Transform - uid: 265 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 10.5,5.5 parent: 656 - type: Transform - proto: StasisBed entities: - uid: 638 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 656 - type: Transform - proto: Stool entities: - uid: 627 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-15.5 parent: 656 - type: Transform - uid: 646 components: - - pos: -5.5,-13.5 + - type: Transform + pos: -5.5,-13.5 parent: 656 - type: Transform - proto: StoolBar entities: - uid: 2 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,3.5 parent: 656 - type: Transform - uid: 243 components: - - pos: 7.5,4.5 + - type: Transform + pos: 7.5,4.5 parent: 656 - type: Transform - uid: 411 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,1.5 parent: 656 - type: Transform - uid: 589 components: - - pos: 8.5,4.5 + - type: Transform + pos: 8.5,4.5 parent: 656 - type: Transform - uid: 612 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,2.5 parent: 656 - type: Transform - uid: 620 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,0.5 parent: 656 - type: Transform - proto: Stunbaton entities: - uid: 309 components: - - pos: -2.7479422,-5.4579988 + - type: Transform + pos: -2.7479422,-5.4579988 parent: 656 - type: Transform - proto: SubstationBasic entities: - uid: 552 components: - - pos: 7.5,-15.5 + - type: Transform + pos: 7.5,-15.5 parent: 656 - type: Transform - proto: Table entities: - uid: 495 components: - - pos: 1.5,3.5 + - type: Transform + pos: 1.5,3.5 parent: 656 - type: Transform - uid: 519 components: - - pos: 9.5,-7.5 + - type: Transform + pos: 9.5,-7.5 parent: 656 - type: Transform - uid: 549 components: - - pos: 9.5,-5.5 + - type: Transform + pos: 9.5,-5.5 parent: 656 - type: Transform - uid: 1160 components: - - pos: 12.5,-1.5 + - type: Transform + pos: 12.5,-1.5 parent: 656 - type: Transform - uid: 1161 components: - - pos: 11.5,-1.5 + - type: Transform + pos: 11.5,-1.5 parent: 656 - type: Transform - uid: 1162 components: - - pos: 12.5,3.5 + - type: Transform + pos: 12.5,3.5 parent: 656 - type: Transform - uid: 1163 components: - - pos: 11.5,3.5 + - type: Transform + pos: 11.5,3.5 parent: 656 - type: Transform - proto: TableCarpet entities: - uid: 139 components: - - pos: 11.5,9.5 + - type: Transform + pos: 11.5,9.5 parent: 656 - type: Transform - proto: TableCounterWood entities: - uid: 280 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 656 - type: Transform - uid: 415 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,3.5 parent: 656 - type: Transform - uid: 416 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,1.5 parent: 656 - type: Transform - uid: 493 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 656 - type: Transform - uid: 494 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 656 - type: Transform - proto: TableGlass entities: - uid: 226 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,12.5 parent: 656 - type: Transform - uid: 303 components: - - pos: -5.5,9.5 + - type: Transform + pos: -5.5,9.5 parent: 656 - type: Transform - uid: 311 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,12.5 parent: 656 - type: Transform - uid: 344 components: - - pos: -5.5,8.5 + - type: Transform + pos: -5.5,8.5 parent: 656 - type: Transform - uid: 345 components: - - pos: -5.5,10.5 + - type: Transform + pos: -5.5,10.5 parent: 656 - type: Transform - uid: 366 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,11.5 parent: 656 - type: Transform - uid: 390 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,11.5 parent: 656 - type: Transform - proto: TableReinforced entities: - uid: 65 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 656 - type: Transform - uid: 122 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-0.5 parent: 656 - type: Transform - uid: 238 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-0.5 parent: 656 - type: Transform - uid: 308 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 656 - type: Transform - uid: 394 components: - - pos: 3.5,9.5 + - type: Transform + pos: 3.5,9.5 parent: 656 - type: Transform - uid: 406 components: - - pos: 1.5,-16.5 + - type: Transform + pos: 1.5,-16.5 parent: 656 - type: Transform - uid: 482 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 656 - type: Transform - uid: 511 components: - - pos: -0.5,-12.5 + - type: Transform + pos: -0.5,-12.5 parent: 656 - type: Transform - uid: 565 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 656 - type: Transform - uid: 566 components: - - pos: 1.5,9.5 + - type: Transform + pos: 1.5,9.5 parent: 656 - type: Transform - uid: 583 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-0.5 parent: 656 - type: Transform - uid: 601 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-0.5 parent: 656 - type: Transform - uid: 640 components: - - pos: 5.5,9.5 + - type: Transform + pos: 5.5,9.5 parent: 656 - type: Transform - uid: 659 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 656 - type: Transform - uid: 1378 components: - - pos: 5.5,-16.5 + - type: Transform + pos: 5.5,-16.5 parent: 656 - type: Transform - proto: TableStone entities: - uid: 276 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 656 - type: Transform - uid: 355 components: - - pos: -3.5,-5.5 + - type: Transform + pos: -3.5,-5.5 parent: 656 - type: Transform - proto: TableWood entities: - uid: 444 components: - - pos: -5.5,-14.5 + - type: Transform + pos: -5.5,-14.5 parent: 656 - type: Transform - uid: 597 components: - - pos: 12.5,5.5 + - type: Transform + pos: 12.5,5.5 parent: 656 - type: Transform - proto: Thruster entities: - uid: 66 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-18.5 parent: 656 - type: Transform - uid: 115 components: - - pos: -6.5,12.5 + - type: Transform + pos: -6.5,12.5 parent: 656 - type: Transform - uid: 116 components: - - pos: -5.5,12.5 + - type: Transform + pos: -5.5,12.5 parent: 656 - type: Transform - uid: 117 components: - - pos: 12.5,12.5 + - type: Transform + pos: 12.5,12.5 parent: 656 - type: Transform - uid: 137 components: - - pos: -3.5,13.5 + - type: Transform + pos: -3.5,13.5 parent: 656 - type: Transform - uid: 169 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,-19.5 parent: 656 - type: Transform - uid: 177 components: - - pos: 11.5,13.5 + - type: Transform + pos: 11.5,13.5 parent: 656 - type: Transform - uid: 185 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 5.5,-19.5 parent: 656 - type: Transform - uid: 190 components: - - pos: 13.5,12.5 + - type: Transform + pos: 13.5,12.5 parent: 656 - type: Transform - uid: 216 components: - - pos: -4.5,13.5 + - type: Transform + pos: -4.5,13.5 parent: 656 - type: Transform - uid: 269 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 656 - type: Transform - uid: 274 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-19.5 parent: 656 - type: Transform - uid: 400 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-18.5 parent: 656 - type: Transform - uid: 402 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-18.5 parent: 656 - type: Transform - uid: 528 components: - - pos: 10.5,13.5 + - type: Transform + pos: 10.5,13.5 parent: 656 - type: Transform - uid: 531 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,-18.5 parent: 656 - type: Transform - uid: 547 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-17.5 parent: 656 - type: Transform - uid: 576 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-19.5 parent: 656 - type: Transform - uid: 594 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,-19.5 parent: 656 - type: Transform - uid: 644 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-17.5 parent: 656 - type: Transform - uid: 652 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 656 - type: Transform - proto: VendingMachineBooze entities: - uid: 347 components: - - pos: 2.5,9.5 + - type: Transform + pos: 2.5,9.5 parent: 656 - type: Transform - uid: 572 components: - - pos: 5.5,-0.5 + - type: Transform + pos: 5.5,-0.5 parent: 656 - type: Transform - proto: VendingMachineCigs entities: - uid: 600 components: - - pos: 4.5,9.5 + - type: Transform + pos: 4.5,9.5 parent: 656 - type: Transform - proto: VendingMachineCola entities: - uid: 1357 components: - - pos: 6.5,6.5 + - type: Transform + pos: 6.5,6.5 parent: 656 - type: Transform - proto: VendingMachineGames entities: - uid: 143 components: - - pos: 10.5,11.5 + - type: Transform + pos: 10.5,11.5 parent: 656 - type: Transform - proto: VendingMachineSec entities: - uid: 1196 components: - - pos: -5.5,-6.5 + - type: Transform + pos: -5.5,-6.5 parent: 656 - type: Transform - proto: VendingMachineWallMedical entities: - uid: 653 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 656 - type: Transform - proto: WallShuttle entities: - uid: 18 components: - - pos: -6.5,-4.5 + - type: Transform + pos: -6.5,-4.5 parent: 656 - type: Transform - uid: 19 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,11.5 parent: 656 - type: Transform - uid: 20 components: - - pos: -6.5,1.5 + - type: Transform + pos: -6.5,1.5 parent: 656 - type: Transform - uid: 39 components: - - pos: 3.5,-17.5 + - type: Transform + pos: 3.5,-17.5 parent: 656 - type: Transform - uid: 41 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-13.5 parent: 656 - type: Transform - uid: 42 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,7.5 parent: 656 - type: Transform - uid: 43 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,12.5 parent: 656 - type: Transform - uid: 44 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,7.5 parent: 656 - type: Transform - uid: 45 components: - - pos: -2.5,-17.5 + - type: Transform + pos: -2.5,-17.5 parent: 656 - type: Transform - uid: 54 components: - - pos: 3.5,-1.5 + - type: Transform + pos: 3.5,-1.5 parent: 656 - type: Transform - uid: 55 components: - - pos: -0.5,-1.5 + - type: Transform + pos: -0.5,-1.5 parent: 656 - type: Transform - uid: 57 components: - - pos: 5.5,-1.5 + - type: Transform + pos: 5.5,-1.5 parent: 656 - type: Transform - uid: 59 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,6.5 parent: 656 - type: Transform - uid: 60 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,7.5 parent: 656 - type: Transform - uid: 61 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-10.5 parent: 656 - type: Transform - uid: 63 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,12.5 parent: 656 - type: Transform - uid: 64 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-12.5 parent: 656 - type: Transform - uid: 76 components: - - pos: 13.5,-3.5 + - type: Transform + pos: 13.5,-3.5 parent: 656 - type: Transform - uid: 77 components: - - pos: -0.5,-17.5 + - type: Transform + pos: -0.5,-17.5 parent: 656 - type: Transform - uid: 78 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-10.5 parent: 656 - type: Transform - uid: 80 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 3.5,10.5 parent: 656 - type: Transform - uid: 84 components: - - pos: -1.5,-17.5 + - type: Transform + pos: -1.5,-17.5 parent: 656 - type: Transform - uid: 87 components: - - pos: 2.5,-16.5 + - type: Transform + pos: 2.5,-16.5 parent: 656 - type: Transform - uid: 90 components: - - pos: 2.5,-17.5 + - type: Transform + pos: 2.5,-17.5 parent: 656 - type: Transform - uid: 93 components: - - pos: 4.5,-10.5 + - type: Transform + pos: 4.5,-10.5 parent: 656 - type: Transform - uid: 95 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 4.5,10.5 parent: 656 - type: Transform - uid: 97 components: - - pos: -1.5,-12.5 + - type: Transform + pos: -1.5,-12.5 parent: 656 - type: Transform - uid: 100 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 656 - type: Transform - uid: 102 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,10.5 parent: 656 - type: Transform - uid: 110 components: - - pos: -1.5,-16.5 + - type: Transform + pos: -1.5,-16.5 parent: 656 - type: Transform - uid: 112 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 656 - type: Transform - uid: 118 components: - - pos: 2.5,-13.5 + - type: Transform + pos: 2.5,-13.5 parent: 656 - type: Transform - uid: 119 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,11.5 parent: 656 - type: Transform - uid: 120 components: - - pos: 2.5,-11.5 + - type: Transform + pos: 2.5,-11.5 parent: 656 - type: Transform - uid: 124 components: - - pos: -1.5,-5.5 + - type: Transform + pos: -1.5,-5.5 parent: 656 - type: Transform - uid: 125 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,11.5 parent: 656 - type: Transform - uid: 126 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 656 - type: Transform - uid: 127 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 656 - type: Transform - uid: 128 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 9.5,7.5 parent: 656 - type: Transform - uid: 129 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,7.5 parent: 656 - type: Transform - uid: 131 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,7.5 parent: 656 - type: Transform - uid: 135 components: - - pos: 13.5,5.5 + - type: Transform + pos: 13.5,5.5 parent: 656 - type: Transform - uid: 138 components: - - pos: 8.5,-15.5 + - type: Transform + pos: 8.5,-15.5 parent: 656 - type: Transform - uid: 144 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,7.5 parent: 656 - type: Transform - uid: 145 components: - - pos: 13.5,-15.5 + - type: Transform + pos: 13.5,-15.5 parent: 656 - type: Transform - uid: 146 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,7.5 parent: 656 - type: Transform - uid: 148 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,7.5 parent: 656 - type: Transform - uid: 149 components: - - pos: 13.5,7.5 + - type: Transform + pos: 13.5,7.5 parent: 656 - type: Transform - uid: 150 components: - - pos: 10.5,-17.5 + - type: Transform + pos: 10.5,-17.5 parent: 656 - type: Transform - uid: 153 components: - - pos: -3.5,-17.5 + - type: Transform + pos: -3.5,-17.5 parent: 656 - type: Transform - uid: 155 components: - - pos: 13.5,-8.5 + - type: Transform + pos: 13.5,-8.5 parent: 656 - type: Transform - uid: 158 components: - - pos: 8.5,-17.5 + - type: Transform + pos: 8.5,-17.5 parent: 656 - type: Transform - uid: 162 components: - - pos: 7.5,-1.5 + - type: Transform + pos: 7.5,-1.5 parent: 656 - type: Transform - uid: 165 components: - - pos: 8.5,-5.5 + - type: Transform + pos: 8.5,-5.5 parent: 656 - type: Transform - uid: 167 components: - - pos: 13.5,-7.5 + - type: Transform + pos: 13.5,-7.5 parent: 656 - type: Transform - uid: 171 components: - - pos: 7.5,-10.5 + - type: Transform + pos: 7.5,-10.5 parent: 656 - type: Transform - uid: 172 components: - - pos: -1.5,-13.5 + - type: Transform + pos: -1.5,-13.5 parent: 656 - type: Transform - uid: 173 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,10.5 parent: 656 - type: Transform - uid: 176 components: - - pos: 12.5,-8.5 + - type: Transform + pos: 12.5,-8.5 parent: 656 - type: Transform - uid: 178 components: - - pos: 9.5,-17.5 + - type: Transform + pos: 9.5,-17.5 parent: 656 - type: Transform - uid: 179 components: - - pos: 8.5,-16.5 + - type: Transform + pos: 8.5,-16.5 parent: 656 - type: Transform - uid: 180 components: - - pos: 10.5,-4.5 + - type: Transform + pos: 10.5,-4.5 parent: 656 - type: Transform - uid: 181 components: - - pos: 9.5,-8.5 + - type: Transform + pos: 9.5,-8.5 parent: 656 - type: Transform - uid: 182 components: - - pos: 13.5,-9.5 + - type: Transform + pos: 13.5,-9.5 parent: 656 - type: Transform - uid: 183 components: - - pos: 13.5,-5.5 + - type: Transform + pos: 13.5,-5.5 parent: 656 - type: Transform - uid: 184 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 12.5,11.5 parent: 656 - type: Transform - uid: 191 components: - - pos: 13.5,-10.5 + - type: Transform + pos: 13.5,-10.5 parent: 656 - type: Transform - uid: 192 components: - - pos: 11.5,-4.5 + - type: Transform + pos: 11.5,-4.5 parent: 656 - type: Transform - uid: 193 components: - - pos: 10.5,-8.5 + - type: Transform + pos: 10.5,-8.5 parent: 656 - type: Transform - uid: 194 components: - - pos: 8.5,-8.5 + - type: Transform + pos: 8.5,-8.5 parent: 656 - type: Transform - uid: 195 components: - - pos: 11.5,-8.5 + - type: Transform + pos: 11.5,-8.5 parent: 656 - type: Transform - uid: 196 components: - - pos: 8.5,-11.5 + - type: Transform + pos: 8.5,-11.5 parent: 656 - type: Transform - uid: 197 components: - - pos: 8.5,-12.5 + - type: Transform + pos: 8.5,-12.5 parent: 656 - type: Transform - uid: 198 components: - - pos: 8.5,-10.5 + - type: Transform + pos: 8.5,-10.5 parent: 656 - type: Transform - uid: 199 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,12.5 parent: 656 - type: Transform - uid: 200 components: - - pos: 5.5,-17.5 + - type: Transform + pos: 5.5,-17.5 parent: 656 - type: Transform - uid: 201 components: - - pos: 9.5,-4.5 + - type: Transform + pos: 9.5,-4.5 parent: 656 - type: Transform - uid: 205 components: - - pos: -1.5,-15.5 + - type: Transform + pos: -1.5,-15.5 parent: 656 - type: Transform - uid: 207 components: - - pos: 13.5,-4.5 + - type: Transform + pos: 13.5,-4.5 parent: 656 - type: Transform - uid: 208 components: - - pos: 7.5,-17.5 + - type: Transform + pos: 7.5,-17.5 parent: 656 - type: Transform - uid: 209 components: - - pos: 13.5,-13.5 + - type: Transform + pos: 13.5,-13.5 parent: 656 - type: Transform - uid: 210 components: - - pos: 6.5,-17.5 + - type: Transform + pos: 6.5,-17.5 parent: 656 - type: Transform - uid: 211 components: - - pos: 2.5,-10.5 + - type: Transform + pos: 2.5,-10.5 parent: 656 - type: Transform - uid: 212 components: - - pos: 3.5,-10.5 + - type: Transform + pos: 3.5,-10.5 parent: 656 - type: Transform - uid: 213 components: - - pos: 13.5,6.5 + - type: Transform + pos: 13.5,6.5 parent: 656 - type: Transform - uid: 217 components: - - pos: 13.5,-6.5 + - type: Transform + pos: 13.5,-6.5 parent: 656 - type: Transform - uid: 219 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,10.5 parent: 656 - type: Transform - uid: 220 components: - - pos: 3.5,-0.5 + - type: Transform + pos: 3.5,-0.5 parent: 656 - type: Transform - uid: 221 components: - - pos: 3.5,1.5 + - type: Transform + pos: 3.5,1.5 parent: 656 - type: Transform - uid: 222 components: - - pos: 3.5,0.5 + - type: Transform + pos: 3.5,0.5 parent: 656 - type: Transform - uid: 232 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-11.5 parent: 656 - type: Transform - uid: 281 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 656 - type: Transform - uid: 295 components: - - pos: -6.5,5.5 + - type: Transform + pos: -6.5,5.5 parent: 656 - type: Transform - uid: 296 components: - - pos: -6.5,-6.5 + - type: Transform + pos: -6.5,-6.5 parent: 656 - type: Transform - uid: 299 components: - - pos: -6.5,-2.5 + - type: Transform + pos: -6.5,-2.5 parent: 656 - type: Transform - uid: 305 components: - - pos: 0.5,-17.5 + - type: Transform + pos: 0.5,-17.5 parent: 656 - type: Transform - uid: 312 components: - - pos: -1.5,-9.5 + - type: Transform + pos: -1.5,-9.5 parent: 656 - type: Transform - uid: 317 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 656 - type: Transform - uid: 324 components: - - pos: 2.5,-15.5 + - type: Transform + pos: 2.5,-15.5 parent: 656 - type: Transform - uid: 325 components: - - pos: 1.5,-17.5 + - type: Transform + pos: 1.5,-17.5 parent: 656 - type: Transform - uid: 326 components: - - pos: -6.5,-15.5 + - type: Transform + pos: -6.5,-15.5 parent: 656 - type: Transform - uid: 327 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-7.5 parent: 656 - type: Transform - uid: 329 components: - - pos: 11.5,-16.5 + - type: Transform + pos: 11.5,-16.5 parent: 656 - type: Transform - uid: 330 components: - - pos: 12.5,-4.5 + - type: Transform + pos: 12.5,-4.5 parent: 656 - type: Transform - uid: 335 components: - - pos: 13.5,-12.5 + - type: Transform + pos: 13.5,-12.5 parent: 656 - type: Transform - uid: 336 components: - - pos: -1.5,-10.5 + - type: Transform + pos: -1.5,-10.5 parent: 656 - type: Transform - uid: 337 components: - - pos: 3.5,2.5 + - type: Transform + pos: 3.5,2.5 parent: 656 - type: Transform - uid: 339 components: - - pos: 6.5,-1.5 + - type: Transform + pos: 6.5,-1.5 parent: 656 - type: Transform - uid: 341 components: - - pos: 13.5,1.5 + - type: Transform + pos: 13.5,1.5 parent: 656 - type: Transform - uid: 346 components: - - pos: -5.5,-16.5 + - type: Transform + pos: -5.5,-16.5 parent: 656 - type: Transform - uid: 348 components: - - pos: -1.5,-14.5 + - type: Transform + pos: -1.5,-14.5 parent: 656 - type: Transform - uid: 350 components: - - pos: -4.5,-16.5 + - type: Transform + pos: -4.5,-16.5 parent: 656 - type: Transform - uid: 352 components: - - pos: -1.5,-7.5 + - type: Transform + pos: -1.5,-7.5 parent: 656 - type: Transform - uid: 353 components: - - pos: 1.5,-10.5 + - type: Transform + pos: 1.5,-10.5 parent: 656 - type: Transform - uid: 354 components: - - pos: -1.5,-8.5 + - type: Transform + pos: -1.5,-8.5 parent: 656 - type: Transform - uid: 357 components: - - pos: 1.5,-1.5 + - type: Transform + pos: 1.5,-1.5 parent: 656 - type: Transform - uid: 359 components: - - pos: -5.5,-12.5 + - type: Transform + pos: -5.5,-12.5 parent: 656 - type: Transform - uid: 360 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,7.5 parent: 656 - type: Transform - uid: 361 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,7.5 parent: 656 - type: Transform - uid: 362 components: - - pos: 8.5,-4.5 + - type: Transform + pos: 8.5,-4.5 parent: 656 - type: Transform - uid: 363 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-8.5 parent: 656 - type: Transform - uid: 367 components: - - pos: 8.5,-13.5 + - type: Transform + pos: 8.5,-13.5 parent: 656 - type: Transform - uid: 369 components: - - pos: 8.5,-14.5 + - type: Transform + pos: 8.5,-14.5 parent: 656 - type: Transform - uid: 371 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 656 - type: Transform - uid: 373 components: - - pos: 8.5,-7.5 + - type: Transform + pos: 8.5,-7.5 parent: 656 - type: Transform - uid: 376 components: - - pos: 13.5,-11.5 + - type: Transform + pos: 13.5,-11.5 parent: 656 - type: Transform - uid: 378 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 656 - type: Transform - uid: 379 components: - - pos: 2.5,-14.5 + - type: Transform + pos: 2.5,-14.5 parent: 656 - type: Transform - uid: 384 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,12.5 parent: 656 - type: Transform - uid: 386 components: - - pos: 5.5,10.5 + - type: Transform + pos: 5.5,10.5 parent: 656 - type: Transform - uid: 388 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-9.5 parent: 656 - type: Transform - uid: 389 components: - - pos: 13.5,-2.5 + - type: Transform + pos: 13.5,-2.5 parent: 656 - type: Transform - uid: 427 components: - - pos: 5.5,-10.5 + - type: Transform + pos: 5.5,-10.5 parent: 656 - type: Transform - uid: 430 components: - - pos: 3.5,3.5 + - type: Transform + pos: 3.5,3.5 parent: 656 - type: Transform - uid: 452 components: - - pos: 12.5,-16.5 + - type: Transform + pos: 12.5,-16.5 parent: 656 - type: Transform - uid: 456 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-4.5 parent: 656 - type: Transform - uid: 458 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-4.5 parent: 656 - type: Transform - uid: 461 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-4.5 parent: 656 - type: Transform - uid: 471 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-4.5 parent: 656 - type: Transform - uid: 473 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,7.5 parent: 656 - type: Transform - uid: 474 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,11.5 parent: 656 - type: Transform - uid: 475 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-4.5 parent: 656 - type: Transform - uid: 476 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-11.5 parent: 656 - type: Transform - uid: 578 components: - - pos: 1.5,-18.5 + - type: Transform + pos: 1.5,-18.5 parent: 656 - type: Transform - uid: 586 components: - - pos: 5.5,-18.5 + - type: Transform + pos: 5.5,-18.5 parent: 656 - type: Transform - uid: 617 components: - - pos: 2.5,-18.5 + - type: Transform + pos: 2.5,-18.5 parent: 656 - type: Transform - uid: 618 components: - - pos: 4.5,-18.5 + - type: Transform + pos: 4.5,-18.5 parent: 656 - type: Transform - uid: 651 components: - - pos: 3.5,-18.5 + - type: Transform + pos: 3.5,-18.5 parent: 656 - type: Transform - proto: WallShuttleDiagonal entities: - uid: 37 components: - - pos: -2.5,13.5 + - type: Transform + pos: -2.5,13.5 parent: 656 - type: Transform - uid: 40 components: - - pos: -6.5,11.5 + - type: Transform + pos: -6.5,11.5 parent: 656 - type: Transform - uid: 47 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,-17.5 parent: 656 - type: Transform - uid: 56 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,11.5 parent: 656 - type: Transform - uid: 107 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 656 - type: Transform - uid: 114 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 656 - type: Transform - uid: 157 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-16.5 parent: 656 - type: Transform - uid: 214 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 11.5,-17.5 parent: 656 - type: Transform - uid: 224 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,10.5 parent: 656 - type: Transform - uid: 310 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 8.5,-1.5 parent: 656 - type: Transform - uid: 313 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 13.5,11.5 parent: 656 - type: Transform - uid: 316 components: - - pos: 8.5,11.5 + - type: Transform + pos: 8.5,11.5 parent: 656 - type: Transform - uid: 349 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 13.5,-16.5 parent: 656 - type: Transform - uid: 387 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 11.5,12.5 parent: 656 - type: Transform - uid: 464 components: - - pos: -1.5,14.5 + - type: Transform + pos: -1.5,14.5 parent: 656 - type: Transform - uid: 470 components: - - pos: -4.5,12.5 + - type: Transform + pos: -4.5,12.5 parent: 656 - type: Transform - uid: 529 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 8.5,14.5 parent: 656 - type: Transform - uid: 550 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 656 - type: Transform - uid: 554 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,13.5 parent: 656 - type: Transform - uid: 575 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-18.5 parent: 656 - type: Transform - uid: 593 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 656 - type: Transform - uid: 648 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 8.5,13.5 parent: 656 - type: Transform - proto: WeaponDisabler entities: - uid: 36 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5291922,-5.6144114 parent: 656 - type: Transform - proto: WindoorSecureAtmosphericsLocked entities: - uid: 15 components: - - pos: 0.5,-13.5 + - type: Transform + pos: 0.5,-13.5 parent: 656 - type: Transform - proto: WindoorSecureBrigLocked entities: - uid: 351 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-13.5 parent: 656 - type: Transform - proto: WindoorSecureEngineeringLocked entities: - uid: 253 components: - - pos: 6.5,-13.5 + - type: Transform + pos: 6.5,-13.5 parent: 656 - type: Transform - proto: WindowFrostedDirectional entities: - uid: 393 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,2.5 parent: 656 - type: Transform - uid: 418 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,3.5 parent: 656 - type: Transform - uid: 420 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 656 - type: Transform - uid: 431 components: - - pos: 1.5,4.5 + - type: Transform + pos: 1.5,4.5 parent: 656 - type: Transform - uid: 432 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 656 - type: Transform - uid: 481 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 656 - type: Transform - uid: 609 components: - - pos: 2.5,4.5 + - type: Transform + pos: 2.5,4.5 parent: 656 - type: Transform - proto: WindowReinforcedDirectional entities: - uid: 261 components: - - pos: 6.5,4.5 + - type: Transform + pos: 6.5,4.5 parent: 656 - type: Transform - uid: 262 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 7.5,3.5 parent: 656 - type: Transform - uid: 342 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 656 - type: Transform - uid: 414 components: - - pos: 3.5,4.5 + - type: Transform + pos: 3.5,4.5 parent: 656 - type: Transform - uid: 438 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 656 - type: Transform - uid: 492 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,1.5 parent: 656 - type: Transform - uid: 508 components: - - pos: 4.5,4.5 + - type: Transform + pos: 4.5,4.5 parent: 656 - type: Transform - uid: 591 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 656 - type: Transform - uid: 645 components: - - pos: 5.5,4.5 + - type: Transform + pos: 5.5,4.5 parent: 656 - type: Transform - proto: Wrench entities: - uid: 404 components: - - pos: 1.3869815,-16.307917 + - type: Transform + pos: 1.3869815,-16.307917 parent: 656 - type: Transform ... diff --git a/Resources/Maps/Shuttles/emergency_corvaxdelta.yml b/Resources/Maps/Shuttles/emergency_corvaxdelta.yml index 7209113a0e2..61efa07f290 100644 --- a/Resources/Maps/Shuttles/emergency_corvaxdelta.yml +++ b/Resources/Maps/Shuttles/emergency_corvaxdelta.yml @@ -20,12 +20,13 @@ entities: entities: - uid: 410 components: - - name: NT Evac Gamma 591 - type: MetaData - - pos: 2.2710133,-2.4148211 + - type: MetaData + name: NT Evac Gamma 591 + - type: Transform + pos: 2.2710133,-2.4148211 parent: invalid - type: Transform - - chunks: + - type: MapGrid + chunks: -1,0: ind: -1,0 tiles: TAAAAAAATwAAAAAATAAAAAAATwAAAAAATAAAAAAATAAAAAAATwAAAAAATwAAAAAATAAAAAAATwAAAAAATwAAAAAATAAAAAAATAAAAAAATwAAAAAATAAAAAAATwAAAAAATAAAAAAATwAAAAAATAAAAAAATwAAAAAATAAAAAAATAAAAAAATwAAAAAATwAAAAAATAAAAAAATwAAAAAATwAAAAAATAAAAAAATAAAAAAATwAAAAAATAAAAAAATwAAAAAATAAAAAAATwAAAAAAcAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAATwAAAAAATAAAAAAATwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATAAAAAAATwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAATwAAAAAATAAAAAAATwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATAAAAAAATwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAATwAAAAAATAAAAAAATwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATAAAAAAATwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAATwAAAAAATAAAAAAATwAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAATwAAAAAATAAAAAAATwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcAAAAAAATwAAAAAATAAAAAAATwAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAATwAAAAAATAAAAAAATwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAcAAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATAAAAAAATwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAATwAAAAAAWgAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAZwAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAZwAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAZwAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAZwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAcAAAAAAAbwAAAAAA @@ -54,20 +55,20 @@ entities: ind: -1,1 tiles: AAAAAAAAAAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: MapGrid - type: Broadphase - - bodyStatus: InAir + - type: Physics + bodyStatus: InAir angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Physics - - fixtures: {} - type: Fixtures - - gravityShakeSound: !type:SoundPathSpecifier + - type: Fixtures + fixtures: {} + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier path: /Audio/Effects/alert.ogg - type: Gravity - - chunkCollection: + - type: DecalGrid + chunkCollection: version: 2 nodes: - node: @@ -748,8 +749,8 @@ entities: 67: -5,3 68: -4,3 69: -3,3 - type: DecalGrid - - version: 2 + - type: GridAtmosphere + version: 2 data: tiles: -2,-1: @@ -927,12 +928,11 @@ entities: - 0 - 0 chunkSize: 4 - type: GridAtmosphere - type: OccluderTree - type: Shuttle - type: RadiationGridResistance - - shakeTimes: 10 - type: GravityShake + - type: GravityShake + shakeTimes: 10 - type: GasTileOverlay - type: SpreaderGrid - type: GridPathfinding @@ -940,11 +940,12 @@ entities: entities: - uid: 551 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-8.5 parent: 410 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 1032 - 1033 - 1135 @@ -952,55 +953,24 @@ entities: - 1038 - 736 - 565 - type: DeviceNetwork - - devices: - - 1032 - - 1033 - - 1135 - - 735 - - 1038 - - 736 - - 565 - type: DeviceList - uid: 1099 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1027 - - 1026 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1027 - 1026 - type: DeviceList - uid: 1108 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1022 - - 1023 - - 1030 - - 1029 - - 901 - - 1115 - - 1148 - - 649 - - 1149 - - 602 - - 1150 - - 752 - - 743 - - 583 - - 749 - - 884 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 901 - 1115 - 1148 @@ -1017,20 +987,14 @@ entities: - 583 - 749 - 884 - type: DeviceList - uid: 1109 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1025 - - 1024 - - 1028 - - 1031 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 668 - 902 - 667 @@ -1048,32 +1012,14 @@ entities: - 601 - 996 - 648 - type: DeviceList - uid: 1131 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1032 - - 616 - - 614 - - 1062 - - 1057 - - 1137 - - 1136 - - 1087 - - 1086 - - 682 - - 681 - - 1026 - - 1024 - - 1025 - - 1022 - - 1023 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1032 - 616 - 614 @@ -1090,2433 +1036,2392 @@ entities: - 1025 - 1022 - 1023 - type: DeviceList - uid: 1144 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1027 - - 1145 - - 1049 - - 1125 - - 1124 - - 1048 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1048 - 1124 - 1125 - 1049 - 1145 - 1027 - type: DeviceList - proto: AirCanister entities: - uid: 544 components: - - pos: -8.5,-11.5 + - type: Transform + pos: -8.5,-11.5 parent: 410 - type: Transform - uid: 545 components: - - pos: -8.5,-9.5 + - type: Transform + pos: -8.5,-9.5 parent: 410 - type: Transform - proto: AirlockAtmosphericsLocked entities: - uid: 165 components: - - pos: -7.5,-8.5 + - type: Transform + pos: -7.5,-8.5 parent: 410 - type: Transform - proto: AirlockCargoLocked entities: - uid: 154 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,9.5 parent: 410 - type: Transform - proto: AirlockCommandGlassLocked entities: - uid: 166 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 410 - type: Transform - uid: 379 components: - - pos: -7.5,12.5 + - type: Transform + pos: -7.5,12.5 parent: 410 - type: Transform - proto: AirlockEngineeringLocked entities: - uid: 169 components: - - pos: -7.5,-4.5 + - type: Transform + pos: -7.5,-4.5 parent: 410 - type: Transform - proto: AirlockGlass entities: - uid: 481 components: - - pos: -13.5,1.5 + - type: Transform + pos: -13.5,1.5 parent: 410 - type: Transform - uid: 482 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 410 - type: Transform - uid: 484 components: - - pos: -1.5,1.5 + - type: Transform + pos: -1.5,1.5 parent: 410 - type: Transform - uid: 485 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 410 - type: Transform - proto: AirlockGlassShuttle entities: - uid: 71 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,7.5 parent: 410 - type: Transform - uid: 81 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-2.5 parent: 410 - type: Transform - uid: 130 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-0.5 parent: 410 - type: Transform - uid: 179 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,7.5 parent: 410 - type: Transform - uid: 269 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,5.5 parent: 410 - type: Transform - uid: 280 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,5.5 parent: 410 - type: Transform - uid: 284 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-0.5 parent: 410 - type: Transform - uid: 339 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 2.5,-2.5 parent: 410 - type: Transform - proto: AirlockMedicalLocked entities: - uid: 167 components: - - pos: -15.5,-1.5 + - type: Transform + pos: -15.5,-1.5 parent: 410 - type: Transform - proto: AirlockScienceLocked entities: - uid: 168 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 410 - type: Transform - proto: AirlockSecurityLocked entities: - uid: 270 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 410 - type: Transform - proto: AirSensor entities: - uid: 1135 components: - - pos: -5.5,-10.5 + - type: Transform + pos: -5.5,-10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 551 - type: DeviceNetwork - uid: 1136 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,0.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - uid: 1137 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,7.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - uid: 1145 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,14.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1144 - type: DeviceNetwork - uid: 1146 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 410 - type: Transform - uid: 1147 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 410 - type: Transform - uid: 1148 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - uid: 1149 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,3.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - uid: 1150 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-7.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - uid: 1151 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 410 - type: Transform - proto: AirTankFilled entities: - uid: 1222 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: APCBasic entities: - uid: 747 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-8.5 parent: 410 - type: Transform - uid: 751 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 410 - type: Transform - proto: APCSuperCapacity entities: - uid: 371 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,-11.5 parent: 410 - type: Transform - uid: 885 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-11.5 parent: 410 - type: Transform - proto: AtmosDeviceFanTiny entities: - uid: 26 components: - - pos: 2.5,-2.5 + - type: Transform + pos: 2.5,-2.5 parent: 410 - type: Transform - uid: 144 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,5.5 parent: 410 - type: Transform - uid: 177 components: - - pos: 2.5,7.5 + - type: Transform + pos: 2.5,7.5 parent: 410 - type: Transform - uid: 281 components: - - pos: 2.5,5.5 + - type: Transform + pos: 2.5,5.5 parent: 410 - type: Transform - uid: 288 components: - - pos: 2.5,-0.5 + - type: Transform + pos: 2.5,-0.5 parent: 410 - type: Transform - uid: 500 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,7.5 parent: 410 - type: Transform - uid: 509 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 410 - type: Transform - uid: 514 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,-0.5 parent: 410 - type: Transform - proto: BedsheetMedical entities: - uid: 401 components: - - pos: -12.5,-10.5 + - type: Transform + pos: -12.5,-10.5 parent: 410 - type: Transform - uid: 497 components: - - pos: -14.5,-4.5 + - type: Transform + pos: -14.5,-4.5 parent: 410 - type: Transform - uid: 498 components: - - pos: -14.5,-3.5 + - type: Transform + pos: -14.5,-3.5 parent: 410 - type: Transform - uid: 504 components: - - pos: -16.5,-4.5 + - type: Transform + pos: -16.5,-4.5 parent: 410 - type: Transform - uid: 505 components: - - pos: -16.5,-3.5 + - type: Transform + pos: -16.5,-3.5 parent: 410 - type: Transform - proto: BigBox entities: - uid: 524 components: - - pos: -2.5155487,3.690342 + - type: Transform + pos: -2.5155487,3.690342 parent: 410 - type: Transform - proto: BlastDoorExterior3Open entities: - uid: 1154 components: - - pos: -7.5,12.5 + - type: Transform + pos: -7.5,12.5 parent: 410 - type: Transform - uid: 1155 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 410 - type: Transform - proto: BoozeDispenser entities: - uid: 253 components: - - pos: -11.5,10.5 + - type: Transform + pos: -11.5,10.5 parent: 410 - type: Transform - proto: BoxBodyBag entities: - uid: 468 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 472 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: BoxHandcuff entities: - uid: 446 components: - - pos: 1.6437995,-4.2144647 + - type: Transform + pos: 1.6437995,-4.2144647 parent: 410 - type: Transform - proto: CableApcExtension entities: - uid: 758 components: - - pos: -7.5,10.5 + - type: Transform + pos: -7.5,10.5 parent: 410 - type: Transform - uid: 835 components: - - pos: -6.5,11.5 + - type: Transform + pos: -6.5,11.5 parent: 410 - type: Transform - uid: 836 components: - - pos: -7.5,11.5 + - type: Transform + pos: -7.5,11.5 parent: 410 - type: Transform - uid: 837 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 410 - type: Transform - uid: 838 components: - - pos: -7.5,8.5 + - type: Transform + pos: -7.5,8.5 parent: 410 - type: Transform - uid: 839 components: - - pos: -7.5,7.5 + - type: Transform + pos: -7.5,7.5 parent: 410 - type: Transform - uid: 840 components: - - pos: -6.5,7.5 + - type: Transform + pos: -6.5,7.5 parent: 410 - type: Transform - uid: 841 components: - - pos: -5.5,7.5 + - type: Transform + pos: -5.5,7.5 parent: 410 - type: Transform - uid: 842 components: - - pos: -4.5,7.5 + - type: Transform + pos: -4.5,7.5 parent: 410 - type: Transform - uid: 843 components: - - pos: -3.5,7.5 + - type: Transform + pos: -3.5,7.5 parent: 410 - type: Transform - uid: 845 components: - - pos: -4.5,8.5 + - type: Transform + pos: -4.5,8.5 parent: 410 - type: Transform - uid: 846 components: - - pos: -4.5,9.5 + - type: Transform + pos: -4.5,9.5 parent: 410 - type: Transform - uid: 847 components: - - pos: -8.5,7.5 + - type: Transform + pos: -8.5,7.5 parent: 410 - type: Transform - uid: 848 components: - - pos: -9.5,7.5 + - type: Transform + pos: -9.5,7.5 parent: 410 - type: Transform - uid: 849 components: - - pos: -10.5,7.5 + - type: Transform + pos: -10.5,7.5 parent: 410 - type: Transform - uid: 850 components: - - pos: -11.5,7.5 + - type: Transform + pos: -11.5,7.5 parent: 410 - type: Transform - uid: 851 components: - - pos: -10.5,8.5 + - type: Transform + pos: -10.5,8.5 parent: 410 - type: Transform - uid: 852 components: - - pos: -10.5,9.5 + - type: Transform + pos: -10.5,9.5 parent: 410 - type: Transform - uid: 857 components: - - pos: -7.5,6.5 + - type: Transform + pos: -7.5,6.5 parent: 410 - type: Transform - uid: 858 components: - - pos: -7.5,5.5 + - type: Transform + pos: -7.5,5.5 parent: 410 - type: Transform - uid: 859 components: - - pos: -7.5,4.5 + - type: Transform + pos: -7.5,4.5 parent: 410 - type: Transform - uid: 860 components: - - pos: -7.5,3.5 + - type: Transform + pos: -7.5,3.5 parent: 410 - type: Transform - uid: 861 components: - - pos: -7.5,2.5 + - type: Transform + pos: -7.5,2.5 parent: 410 - type: Transform - uid: 862 components: - - pos: -7.5,1.5 + - type: Transform + pos: -7.5,1.5 parent: 410 - type: Transform - uid: 863 components: - - pos: -7.5,0.5 + - type: Transform + pos: -7.5,0.5 parent: 410 - type: Transform - uid: 864 components: - - pos: -7.5,-0.5 + - type: Transform + pos: -7.5,-0.5 parent: 410 - type: Transform - uid: 865 components: - - pos: -7.5,-1.5 + - type: Transform + pos: -7.5,-1.5 parent: 410 - type: Transform - uid: 866 components: - - pos: -7.5,-2.5 + - type: Transform + pos: -7.5,-2.5 parent: 410 - type: Transform - uid: 867 components: - - pos: -6.5,-2.5 + - type: Transform + pos: -6.5,-2.5 parent: 410 - type: Transform - uid: 868 components: - - pos: -5.5,-2.5 + - type: Transform + pos: -5.5,-2.5 parent: 410 - type: Transform - uid: 869 components: - - pos: -4.5,-2.5 + - type: Transform + pos: -4.5,-2.5 parent: 410 - type: Transform - uid: 870 components: - - pos: -3.5,-2.5 + - type: Transform + pos: -3.5,-2.5 parent: 410 - type: Transform - uid: 871 components: - - pos: -7.5,-3.5 + - type: Transform + pos: -7.5,-3.5 parent: 410 - type: Transform - uid: 872 components: - - pos: -8.5,-2.5 + - type: Transform + pos: -8.5,-2.5 parent: 410 - type: Transform - uid: 873 components: - - pos: -9.5,-2.5 + - type: Transform + pos: -9.5,-2.5 parent: 410 - type: Transform - uid: 874 components: - - pos: -10.5,-2.5 + - type: Transform + pos: -10.5,-2.5 parent: 410 - type: Transform - uid: 875 components: - - pos: -11.5,-2.5 + - type: Transform + pos: -11.5,-2.5 parent: 410 - type: Transform - uid: 876 components: - - pos: -11.5,0.5 + - type: Transform + pos: -11.5,0.5 parent: 410 - type: Transform - uid: 877 components: - - pos: -10.5,0.5 + - type: Transform + pos: -10.5,0.5 parent: 410 - type: Transform - uid: 878 components: - - pos: -9.5,0.5 + - type: Transform + pos: -9.5,0.5 parent: 410 - type: Transform - uid: 879 components: - - pos: -8.5,0.5 + - type: Transform + pos: -8.5,0.5 parent: 410 - type: Transform - uid: 880 components: - - pos: -3.5,0.5 + - type: Transform + pos: -3.5,0.5 parent: 410 - type: Transform - uid: 881 components: - - pos: -4.5,0.5 + - type: Transform + pos: -4.5,0.5 parent: 410 - type: Transform - uid: 882 components: - - pos: -5.5,0.5 + - type: Transform + pos: -5.5,0.5 parent: 410 - type: Transform - uid: 883 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 410 - type: Transform - uid: 887 components: - - pos: -7.5,12.5 + - type: Transform + pos: -7.5,12.5 parent: 410 - type: Transform - uid: 888 components: - - pos: -7.5,13.5 + - type: Transform + pos: -7.5,13.5 parent: 410 - type: Transform - uid: 889 components: - - pos: -7.5,14.5 + - type: Transform + pos: -7.5,14.5 parent: 410 - type: Transform - uid: 890 components: - - pos: -6.5,14.5 + - type: Transform + pos: -6.5,14.5 parent: 410 - type: Transform - uid: 891 components: - - pos: -5.5,14.5 + - type: Transform + pos: -5.5,14.5 parent: 410 - type: Transform - uid: 892 components: - - pos: -4.5,14.5 + - type: Transform + pos: -4.5,14.5 parent: 410 - type: Transform - uid: 893 components: - - pos: -3.5,14.5 + - type: Transform + pos: -3.5,14.5 parent: 410 - type: Transform - uid: 894 components: - - pos: -8.5,14.5 + - type: Transform + pos: -8.5,14.5 parent: 410 - type: Transform - uid: 895 components: - - pos: -9.5,14.5 + - type: Transform + pos: -9.5,14.5 parent: 410 - type: Transform - uid: 896 components: - - pos: -10.5,14.5 + - type: Transform + pos: -10.5,14.5 parent: 410 - type: Transform - uid: 897 components: - - pos: -11.5,14.5 + - type: Transform + pos: -11.5,14.5 parent: 410 - type: Transform - uid: 898 components: - - pos: -10.5,13.5 + - type: Transform + pos: -10.5,13.5 parent: 410 - type: Transform - uid: 899 components: - - pos: -4.5,13.5 + - type: Transform + pos: -4.5,13.5 parent: 410 - type: Transform - uid: 900 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 410 - type: Transform - uid: 903 components: - - pos: 0.5,-11.5 + - type: Transform + pos: 0.5,-11.5 parent: 410 - type: Transform - uid: 904 components: - - pos: 0.5,-10.5 + - type: Transform + pos: 0.5,-10.5 parent: 410 - type: Transform - uid: 905 components: - - pos: 0.5,-9.5 + - type: Transform + pos: 0.5,-9.5 parent: 410 - type: Transform - uid: 906 components: - - pos: 0.5,-8.5 + - type: Transform + pos: 0.5,-8.5 parent: 410 - type: Transform - uid: 907 components: - - pos: 0.5,-7.5 + - type: Transform + pos: 0.5,-7.5 parent: 410 - type: Transform - uid: 908 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 410 - type: Transform - uid: 909 components: - - pos: 0.5,-5.5 + - type: Transform + pos: 0.5,-5.5 parent: 410 - type: Transform - uid: 910 components: - - pos: 0.5,-4.5 + - type: Transform + pos: 0.5,-4.5 parent: 410 - type: Transform - uid: 911 components: - - pos: 0.5,-3.5 + - type: Transform + pos: 0.5,-3.5 parent: 410 - type: Transform - uid: 912 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 410 - type: Transform - uid: 913 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 410 - type: Transform - uid: 914 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 410 - type: Transform - uid: 915 components: - - pos: 0.5,12.5 + - type: Transform + pos: 0.5,12.5 parent: 410 - type: Transform - uid: 916 components: - - pos: 0.5,13.5 + - type: Transform + pos: 0.5,13.5 parent: 410 - type: Transform - uid: 917 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 410 - type: Transform - uid: 918 components: - - pos: 0.5,1.5 + - type: Transform + pos: 0.5,1.5 parent: 410 - type: Transform - uid: 919 components: - - pos: 0.5,2.5 + - type: Transform + pos: 0.5,2.5 parent: 410 - type: Transform - uid: 920 components: - - pos: 0.5,3.5 + - type: Transform + pos: 0.5,3.5 parent: 410 - type: Transform - uid: 921 components: - - pos: 0.5,4.5 + - type: Transform + pos: 0.5,4.5 parent: 410 - type: Transform - uid: 922 components: - - pos: 0.5,5.5 + - type: Transform + pos: 0.5,5.5 parent: 410 - type: Transform - uid: 923 components: - - pos: 0.5,6.5 + - type: Transform + pos: 0.5,6.5 parent: 410 - type: Transform - uid: 924 components: - - pos: 0.5,7.5 + - type: Transform + pos: 0.5,7.5 parent: 410 - type: Transform - uid: 925 components: - - pos: 0.5,8.5 + - type: Transform + pos: 0.5,8.5 parent: 410 - type: Transform - uid: 926 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 410 - type: Transform - uid: 927 components: - - pos: 0.5,10.5 + - type: Transform + pos: 0.5,10.5 parent: 410 - type: Transform - uid: 928 components: - - pos: 0.5,11.5 + - type: Transform + pos: 0.5,11.5 parent: 410 - type: Transform - uid: 929 components: - - pos: 1.5,0.5 + - type: Transform + pos: 1.5,0.5 parent: 410 - type: Transform - uid: 930 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 410 - type: Transform - uid: 931 components: - - pos: -0.5,0.5 + - type: Transform + pos: -0.5,0.5 parent: 410 - type: Transform - uid: 932 components: - - pos: -0.5,-6.5 + - type: Transform + pos: -0.5,-6.5 parent: 410 - type: Transform - uid: 933 components: - - pos: -1.5,-6.5 + - type: Transform + pos: -1.5,-6.5 parent: 410 - type: Transform - uid: 934 components: - - pos: -1.5,-9.5 + - type: Transform + pos: -1.5,-9.5 parent: 410 - type: Transform - uid: 935 components: - - pos: -0.5,-9.5 + - type: Transform + pos: -0.5,-9.5 parent: 410 - type: Transform - uid: 937 components: - - pos: -5.5,-8.5 + - type: Transform + pos: -5.5,-8.5 parent: 410 - type: Transform - uid: 938 components: - - pos: -5.5,-7.5 + - type: Transform + pos: -5.5,-7.5 parent: 410 - type: Transform - uid: 939 components: - - pos: -5.5,-6.5 + - type: Transform + pos: -5.5,-6.5 parent: 410 - type: Transform - uid: 941 components: - - pos: -4.5,-6.5 + - type: Transform + pos: -4.5,-6.5 parent: 410 - type: Transform - uid: 942 components: - - pos: -6.5,-6.5 + - type: Transform + pos: -6.5,-6.5 parent: 410 - type: Transform - uid: 943 components: - - pos: -7.5,-6.5 + - type: Transform + pos: -7.5,-6.5 parent: 410 - type: Transform - uid: 944 components: - - pos: -7.5,-5.5 + - type: Transform + pos: -7.5,-5.5 parent: 410 - type: Transform - uid: 945 components: - - pos: -8.5,-6.5 + - type: Transform + pos: -8.5,-6.5 parent: 410 - type: Transform - uid: 953 components: - - pos: -7.5,-7.5 + - type: Transform + pos: -7.5,-7.5 parent: 410 - type: Transform - uid: 954 components: - - pos: -7.5,-8.5 + - type: Transform + pos: -7.5,-8.5 parent: 410 - type: Transform - uid: 955 components: - - pos: -7.5,-9.5 + - type: Transform + pos: -7.5,-9.5 parent: 410 - type: Transform - uid: 956 components: - - pos: -7.5,-10.5 + - type: Transform + pos: -7.5,-10.5 parent: 410 - type: Transform - uid: 957 components: - - pos: -6.5,-10.5 + - type: Transform + pos: -6.5,-10.5 parent: 410 - type: Transform - uid: 958 components: - - pos: -5.5,-10.5 + - type: Transform + pos: -5.5,-10.5 parent: 410 - type: Transform - uid: 959 components: - - pos: -8.5,-10.5 + - type: Transform + pos: -8.5,-10.5 parent: 410 - type: Transform - uid: 960 components: - - pos: -9.5,-10.5 + - type: Transform + pos: -9.5,-10.5 parent: 410 - type: Transform - uid: 961 components: - - pos: -15.5,-11.5 + - type: Transform + pos: -15.5,-11.5 parent: 410 - type: Transform - uid: 962 components: - - pos: -15.5,-10.5 + - type: Transform + pos: -15.5,-10.5 parent: 410 - type: Transform - uid: 963 components: - - pos: -15.5,-9.5 + - type: Transform + pos: -15.5,-9.5 parent: 410 - type: Transform - uid: 964 components: - - pos: -15.5,-8.5 + - type: Transform + pos: -15.5,-8.5 parent: 410 - type: Transform - uid: 965 components: - - pos: -15.5,-7.5 + - type: Transform + pos: -15.5,-7.5 parent: 410 - type: Transform - uid: 966 components: - - pos: -15.5,-6.5 + - type: Transform + pos: -15.5,-6.5 parent: 410 - type: Transform - uid: 967 components: - - pos: -15.5,-5.5 + - type: Transform + pos: -15.5,-5.5 parent: 410 - type: Transform - uid: 968 components: - - pos: -15.5,-4.5 + - type: Transform + pos: -15.5,-4.5 parent: 410 - type: Transform - uid: 969 components: - - pos: -15.5,-3.5 + - type: Transform + pos: -15.5,-3.5 parent: 410 - type: Transform - uid: 970 components: - - pos: -15.5,-2.5 + - type: Transform + pos: -15.5,-2.5 parent: 410 - type: Transform - uid: 971 components: - - pos: -15.5,-1.5 + - type: Transform + pos: -15.5,-1.5 parent: 410 - type: Transform - uid: 972 components: - - pos: -15.5,-0.5 + - type: Transform + pos: -15.5,-0.5 parent: 410 - type: Transform - uid: 973 components: - - pos: -15.5,0.5 + - type: Transform + pos: -15.5,0.5 parent: 410 - type: Transform - uid: 974 components: - - pos: -15.5,1.5 + - type: Transform + pos: -15.5,1.5 parent: 410 - type: Transform - uid: 975 components: - - pos: -15.5,2.5 + - type: Transform + pos: -15.5,2.5 parent: 410 - type: Transform - uid: 976 components: - - pos: -15.5,3.5 + - type: Transform + pos: -15.5,3.5 parent: 410 - type: Transform - uid: 977 components: - - pos: -15.5,4.5 + - type: Transform + pos: -15.5,4.5 parent: 410 - type: Transform - uid: 978 components: - - pos: -15.5,5.5 + - type: Transform + pos: -15.5,5.5 parent: 410 - type: Transform - uid: 979 components: - - pos: -15.5,6.5 + - type: Transform + pos: -15.5,6.5 parent: 410 - type: Transform - uid: 980 components: - - pos: -15.5,7.5 + - type: Transform + pos: -15.5,7.5 parent: 410 - type: Transform - uid: 981 components: - - pos: -15.5,8.5 + - type: Transform + pos: -15.5,8.5 parent: 410 - type: Transform - uid: 982 components: - - pos: -15.5,9.5 + - type: Transform + pos: -15.5,9.5 parent: 410 - type: Transform - uid: 983 components: - - pos: -15.5,10.5 + - type: Transform + pos: -15.5,10.5 parent: 410 - type: Transform - uid: 984 components: - - pos: -15.5,11.5 + - type: Transform + pos: -15.5,11.5 parent: 410 - type: Transform - uid: 985 components: - - pos: -15.5,12.5 + - type: Transform + pos: -15.5,12.5 parent: 410 - type: Transform - uid: 986 components: - - pos: -15.5,13.5 + - type: Transform + pos: -15.5,13.5 parent: 410 - type: Transform - uid: 987 components: - - pos: -16.5,6.5 + - type: Transform + pos: -16.5,6.5 parent: 410 - type: Transform - uid: 988 components: - - pos: -14.5,-6.5 + - type: Transform + pos: -14.5,-6.5 parent: 410 - type: Transform - uid: 989 components: - - pos: -16.5,0.5 + - type: Transform + pos: -16.5,0.5 parent: 410 - type: Transform - uid: 990 components: - - pos: -16.5,-3.5 + - type: Transform + pos: -16.5,-3.5 parent: 410 - type: Transform - uid: 991 components: - - pos: -13.5,-6.5 + - type: Transform + pos: -13.5,-6.5 parent: 410 - type: Transform - uid: 992 components: - - pos: -14.5,-9.5 + - type: Transform + pos: -14.5,-9.5 parent: 410 - type: Transform - uid: 993 components: - - pos: -13.5,-9.5 + - type: Transform + pos: -13.5,-9.5 parent: 410 - type: Transform - uid: 995 components: - - pos: -0.5,-11.5 + - type: Transform + pos: -0.5,-11.5 parent: 410 - type: Transform - uid: 997 components: - - pos: -14.5,-11.5 + - type: Transform + pos: -14.5,-11.5 parent: 410 - type: Transform - uid: 1058 components: - - pos: -6.5,4.5 + - type: Transform + pos: -6.5,4.5 parent: 410 - type: Transform - uid: 1059 components: - - pos: -5.5,4.5 + - type: Transform + pos: -5.5,4.5 parent: 410 - type: Transform - uid: 1060 components: - - pos: -4.5,4.5 + - type: Transform + pos: -4.5,4.5 parent: 410 - type: Transform - uid: 1061 components: - - pos: -3.5,4.5 + - type: Transform + pos: -3.5,4.5 parent: 410 - type: Transform - uid: 1063 components: - - pos: -8.5,4.5 + - type: Transform + pos: -8.5,4.5 parent: 410 - type: Transform - uid: 1064 components: - - pos: -9.5,4.5 + - type: Transform + pos: -9.5,4.5 parent: 410 - type: Transform - uid: 1065 components: - - pos: -10.5,4.5 + - type: Transform + pos: -10.5,4.5 parent: 410 - type: Transform - uid: 1066 components: - - pos: -11.5,4.5 + - type: Transform + pos: -11.5,4.5 parent: 410 - type: Transform - proto: CableApcStack entities: - uid: 1240 components: - - flags: InContainer - type: MetaData - - parent: 1233 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1233 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: CableHV entities: - uid: 566 components: - - pos: -7.5,-6.5 + - type: Transform + pos: -7.5,-6.5 parent: 410 - type: Transform - uid: 721 components: - - pos: -10.5,-5.5 + - type: Transform + pos: -10.5,-5.5 parent: 410 - type: Transform - uid: 722 components: - - pos: -9.5,-5.5 + - type: Transform + pos: -9.5,-5.5 parent: 410 - type: Transform - uid: 723 components: - - pos: -9.5,-6.5 + - type: Transform + pos: -9.5,-6.5 parent: 410 - type: Transform - uid: 724 components: - - pos: -9.5,-7.5 + - type: Transform + pos: -9.5,-7.5 parent: 410 - type: Transform - uid: 725 components: - - pos: -10.5,-7.5 + - type: Transform + pos: -10.5,-7.5 parent: 410 - type: Transform - uid: 1156 components: - - pos: -7.5,-5.5 + - type: Transform + pos: -7.5,-5.5 parent: 410 - type: Transform - uid: 1157 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 410 - type: Transform - uid: 1158 components: - - pos: -7.5,10.5 + - type: Transform + pos: -7.5,10.5 parent: 410 - type: Transform - uid: 1159 components: - - pos: -7.5,11.5 + - type: Transform + pos: -7.5,11.5 parent: 410 - type: Transform - uid: 1160 components: - - pos: -7.5,12.5 + - type: Transform + pos: -7.5,12.5 parent: 410 - type: Transform - uid: 1161 components: - - pos: -7.5,13.5 + - type: Transform + pos: -7.5,13.5 parent: 410 - type: Transform - uid: 1162 components: - - pos: -7.5,14.5 + - type: Transform + pos: -7.5,14.5 parent: 410 - type: Transform - uid: 1163 components: - - pos: -7.5,-4.5 + - type: Transform + pos: -7.5,-4.5 parent: 410 - type: Transform - uid: 1164 components: - - pos: -7.5,-3.5 + - type: Transform + pos: -7.5,-3.5 parent: 410 - type: Transform - uid: 1165 components: - - pos: -7.5,-2.5 + - type: Transform + pos: -7.5,-2.5 parent: 410 - type: Transform - uid: 1166 components: - - pos: -7.5,-1.5 + - type: Transform + pos: -7.5,-1.5 parent: 410 - type: Transform - uid: 1167 components: - - pos: -7.5,-0.5 + - type: Transform + pos: -7.5,-0.5 parent: 410 - type: Transform - uid: 1168 components: - - pos: -7.5,0.5 + - type: Transform + pos: -7.5,0.5 parent: 410 - type: Transform - uid: 1169 components: - - pos: -7.5,1.5 + - type: Transform + pos: -7.5,1.5 parent: 410 - type: Transform - uid: 1170 components: - - pos: -7.5,2.5 + - type: Transform + pos: -7.5,2.5 parent: 410 - type: Transform - uid: 1171 components: - - pos: -7.5,3.5 + - type: Transform + pos: -7.5,3.5 parent: 410 - type: Transform - uid: 1172 components: - - pos: -7.5,4.5 + - type: Transform + pos: -7.5,4.5 parent: 410 - type: Transform - uid: 1173 components: - - pos: -7.5,5.5 + - type: Transform + pos: -7.5,5.5 parent: 410 - type: Transform - uid: 1174 components: - - pos: -7.5,6.5 + - type: Transform + pos: -7.5,6.5 parent: 410 - type: Transform - uid: 1175 components: - - pos: -7.5,7.5 + - type: Transform + pos: -7.5,7.5 parent: 410 - type: Transform - uid: 1176 components: - - pos: -7.5,8.5 + - type: Transform + pos: -7.5,8.5 parent: 410 - type: Transform - uid: 1177 components: - - pos: -6.5,14.5 + - type: Transform + pos: -6.5,14.5 parent: 410 - type: Transform - uid: 1178 components: - - pos: -5.5,14.5 + - type: Transform + pos: -5.5,14.5 parent: 410 - type: Transform - uid: 1179 components: - - pos: -4.5,14.5 + - type: Transform + pos: -4.5,14.5 parent: 410 - type: Transform - uid: 1180 components: - - pos: -4.5,15.5 + - type: Transform + pos: -4.5,15.5 parent: 410 - type: Transform - uid: 1181 components: - - pos: -7.5,-7.5 + - type: Transform + pos: -7.5,-7.5 parent: 410 - type: Transform - uid: 1182 components: - - pos: -8.5,-7.5 + - type: Transform + pos: -8.5,-7.5 parent: 410 - type: Transform - proto: CableHVStack entities: - uid: 1234 components: - - flags: InContainer - type: MetaData - - parent: 1233 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1233 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: CableMV entities: - uid: 733 components: - - pos: -10.5,-7.5 + - type: Transform + pos: -10.5,-7.5 parent: 410 - type: Transform - uid: 734 components: - - pos: -10.5,-6.5 + - type: Transform + pos: -10.5,-6.5 parent: 410 - type: Transform - uid: 737 components: - - pos: -9.5,-6.5 + - type: Transform + pos: -9.5,-6.5 parent: 410 - type: Transform - uid: 738 components: - - pos: -8.5,-6.5 + - type: Transform + pos: -8.5,-6.5 parent: 410 - type: Transform - uid: 739 components: - - pos: -7.5,-6.5 + - type: Transform + pos: -7.5,-6.5 parent: 410 - type: Transform - uid: 740 components: - - pos: -5.5,-6.5 + - type: Transform + pos: -5.5,-6.5 parent: 410 - type: Transform - uid: 741 components: - - pos: -6.5,-6.5 + - type: Transform + pos: -6.5,-6.5 parent: 410 - type: Transform - uid: 742 components: - - pos: -5.5,-8.5 + - type: Transform + pos: -5.5,-8.5 parent: 410 - type: Transform - uid: 745 components: - - pos: -5.5,-7.5 + - type: Transform + pos: -5.5,-7.5 parent: 410 - type: Transform - uid: 759 components: - - pos: 0.5,-11.5 + - type: Transform + pos: 0.5,-11.5 parent: 410 - type: Transform - uid: 760 components: - - pos: 0.5,-10.5 + - type: Transform + pos: 0.5,-10.5 parent: 410 - type: Transform - uid: 761 components: - - pos: 0.5,-9.5 + - type: Transform + pos: 0.5,-9.5 parent: 410 - type: Transform - uid: 762 components: - - pos: 0.5,-8.5 + - type: Transform + pos: 0.5,-8.5 parent: 410 - type: Transform - uid: 763 components: - - pos: 0.5,-7.5 + - type: Transform + pos: 0.5,-7.5 parent: 410 - type: Transform - uid: 764 components: - - pos: 0.5,-6.5 + - type: Transform + pos: 0.5,-6.5 parent: 410 - type: Transform - uid: 765 components: - - pos: 0.5,-5.5 + - type: Transform + pos: 0.5,-5.5 parent: 410 - type: Transform - uid: 766 components: - - pos: 0.5,-4.5 + - type: Transform + pos: 0.5,-4.5 parent: 410 - type: Transform - uid: 767 components: - - pos: 0.5,-3.5 + - type: Transform + pos: 0.5,-3.5 parent: 410 - type: Transform - uid: 768 components: - - pos: 0.5,-2.5 + - type: Transform + pos: 0.5,-2.5 parent: 410 - type: Transform - uid: 769 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 410 - type: Transform - uid: 770 components: - - pos: 0.5,-0.5 + - type: Transform + pos: 0.5,-0.5 parent: 410 - type: Transform - uid: 771 components: - - pos: 0.5,0.5 + - type: Transform + pos: 0.5,0.5 parent: 410 - type: Transform - uid: 772 components: - - pos: -0.5,0.5 + - type: Transform + pos: -0.5,0.5 parent: 410 - type: Transform - uid: 773 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 410 - type: Transform - uid: 774 components: - - pos: -2.5,0.5 + - type: Transform + pos: -2.5,0.5 parent: 410 - type: Transform - uid: 775 components: - - pos: -3.5,0.5 + - type: Transform + pos: -3.5,0.5 parent: 410 - type: Transform - uid: 776 components: - - pos: -4.5,0.5 + - type: Transform + pos: -4.5,0.5 parent: 410 - type: Transform - uid: 777 components: - - pos: -5.5,0.5 + - type: Transform + pos: -5.5,0.5 parent: 410 - type: Transform - uid: 778 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 410 - type: Transform - uid: 779 components: - - pos: -7.5,0.5 + - type: Transform + pos: -7.5,0.5 parent: 410 - type: Transform - uid: 780 components: - - pos: -7.5,-0.5 + - type: Transform + pos: -7.5,-0.5 parent: 410 - type: Transform - uid: 781 components: - - pos: -7.5,-1.5 + - type: Transform + pos: -7.5,-1.5 parent: 410 - type: Transform - uid: 782 components: - - pos: -7.5,-2.5 + - type: Transform + pos: -7.5,-2.5 parent: 410 - type: Transform - uid: 783 components: - - pos: -7.5,-3.5 + - type: Transform + pos: -7.5,-3.5 parent: 410 - type: Transform - uid: 784 components: - - pos: -7.5,-4.5 + - type: Transform + pos: -7.5,-4.5 parent: 410 - type: Transform - uid: 785 components: - - pos: -7.5,-5.5 + - type: Transform + pos: -7.5,-5.5 parent: 410 - type: Transform - uid: 786 components: - - pos: -8.5,0.5 + - type: Transform + pos: -8.5,0.5 parent: 410 - type: Transform - uid: 787 components: - - pos: -9.5,0.5 + - type: Transform + pos: -9.5,0.5 parent: 410 - type: Transform - uid: 788 components: - - pos: -10.5,0.5 + - type: Transform + pos: -10.5,0.5 parent: 410 - type: Transform - uid: 789 components: - - pos: -11.5,0.5 + - type: Transform + pos: -11.5,0.5 parent: 410 - type: Transform - uid: 790 components: - - pos: -12.5,0.5 + - type: Transform + pos: -12.5,0.5 parent: 410 - type: Transform - uid: 791 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 410 - type: Transform - uid: 792 components: - - pos: -14.5,0.5 + - type: Transform + pos: -14.5,0.5 parent: 410 - type: Transform - uid: 793 components: - - pos: -15.5,0.5 + - type: Transform + pos: -15.5,0.5 parent: 410 - type: Transform - uid: 794 components: - - pos: -15.5,-0.5 + - type: Transform + pos: -15.5,-0.5 parent: 410 - type: Transform - uid: 795 components: - - pos: -15.5,-1.5 + - type: Transform + pos: -15.5,-1.5 parent: 410 - type: Transform - uid: 796 components: - - pos: -15.5,-2.5 + - type: Transform + pos: -15.5,-2.5 parent: 410 - type: Transform - uid: 797 components: - - pos: -15.5,-3.5 + - type: Transform + pos: -15.5,-3.5 parent: 410 - type: Transform - uid: 798 components: - - pos: -15.5,-4.5 + - type: Transform + pos: -15.5,-4.5 parent: 410 - type: Transform - uid: 799 components: - - pos: -15.5,-5.5 + - type: Transform + pos: -15.5,-5.5 parent: 410 - type: Transform - uid: 800 components: - - pos: -15.5,-6.5 + - type: Transform + pos: -15.5,-6.5 parent: 410 - type: Transform - uid: 801 components: - - pos: -15.5,-7.5 + - type: Transform + pos: -15.5,-7.5 parent: 410 - type: Transform - uid: 802 components: - - pos: -15.5,-8.5 + - type: Transform + pos: -15.5,-8.5 parent: 410 - type: Transform - uid: 803 components: - - pos: -15.5,-9.5 + - type: Transform + pos: -15.5,-9.5 parent: 410 - type: Transform - uid: 804 components: - - pos: -15.5,-10.5 + - type: Transform + pos: -15.5,-10.5 parent: 410 - type: Transform - uid: 805 components: - - pos: -15.5,-11.5 + - type: Transform + pos: -15.5,-11.5 parent: 410 - type: Transform - uid: 823 components: - - pos: -7.5,1.5 + - type: Transform + pos: -7.5,1.5 parent: 410 - type: Transform - uid: 824 components: - - pos: -7.5,2.5 + - type: Transform + pos: -7.5,2.5 parent: 410 - type: Transform - uid: 825 components: - - pos: -7.5,3.5 + - type: Transform + pos: -7.5,3.5 parent: 410 - type: Transform - uid: 826 components: - - pos: -7.5,4.5 + - type: Transform + pos: -7.5,4.5 parent: 410 - type: Transform - uid: 827 components: - - pos: -7.5,5.5 + - type: Transform + pos: -7.5,5.5 parent: 410 - type: Transform - uid: 828 components: - - pos: -7.5,6.5 + - type: Transform + pos: -7.5,6.5 parent: 410 - type: Transform - uid: 829 components: - - pos: -7.5,7.5 + - type: Transform + pos: -7.5,7.5 parent: 410 - type: Transform - uid: 830 components: - - pos: -7.5,8.5 + - type: Transform + pos: -7.5,8.5 parent: 410 - type: Transform - uid: 831 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 410 - type: Transform - uid: 832 components: - - pos: -7.5,10.5 + - type: Transform + pos: -7.5,10.5 parent: 410 - type: Transform - uid: 833 components: - - pos: -7.5,11.5 + - type: Transform + pos: -7.5,11.5 parent: 410 - type: Transform - uid: 834 components: - - pos: -6.5,11.5 + - type: Transform + pos: -6.5,11.5 parent: 410 - type: Transform - proto: CableMVStack entities: - uid: 1238 components: - - flags: InContainer - type: MetaData - - parent: 1233 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1233 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: CableTerminal entities: - uid: 727 components: - - pos: -9.5,-6.5 + - type: Transform + pos: -9.5,-6.5 parent: 410 - type: Transform - proto: Chair entities: - uid: 377 components: - - pos: -1.5,-5.5 + - type: Transform + pos: -1.5,-5.5 parent: 410 - type: Transform - uid: 400 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-7.5 parent: 410 - type: Transform - uid: 402 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 410 - type: Transform - uid: 403 components: - - pos: -2.5,-5.5 + - type: Transform + pos: -2.5,-5.5 parent: 410 - type: Transform - uid: 405 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-7.5 parent: 410 - type: Transform - uid: 437 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 410 - type: Transform - uid: 455 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-6.5 parent: 410 - type: Transform - uid: 512 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-7.5 parent: 410 - type: Transform - uid: 1118 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-8.5 parent: 410 - type: Transform - proto: ChairOfficeDark entities: - uid: 19 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,9.5 parent: 410 - type: Transform - uid: 293 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,14.5 parent: 410 - type: Transform - uid: 296 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,14.5 parent: 410 - type: Transform - uid: 459 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,4.5 parent: 410 - type: Transform - proto: ChairOfficeLight entities: - uid: 246 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,14.5 parent: 410 - type: Transform - uid: 292 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,14.5 parent: 410 - type: Transform - uid: 312 components: - - pos: -11.5,9.5 + - type: Transform + pos: -11.5,9.5 parent: 410 - type: Transform - uid: 378 components: - - pos: -4.5,9.5 + - type: Transform + pos: -4.5,9.5 parent: 410 - type: Transform - uid: 386 components: - - pos: -10.5,9.5 + - type: Transform + pos: -10.5,9.5 parent: 410 - type: Transform - uid: 460 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,5.5 parent: 410 - type: Transform - uid: 461 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,3.5 parent: 410 - type: Transform - uid: 515 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-5.5 parent: 410 - type: Transform - uid: 517 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-10.5 parent: 410 - type: Transform - proto: ChairPilotSeat entities: - uid: 3 components: - - pos: -11.5,2.5 + - type: Transform + pos: -11.5,2.5 parent: 410 - type: Transform - uid: 13 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,2.5 parent: 410 - type: Transform - uid: 14 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,6.5 parent: 410 - type: Transform - uid: 20 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,8.5 parent: 410 - type: Transform - uid: 60 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,11.5 parent: 410 - type: Transform - uid: 63 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,13.5 parent: 410 - type: Transform - uid: 72 components: - - pos: -4.5,-9.5 + - type: Transform + pos: -4.5,-9.5 parent: 410 - type: Transform - uid: 90 components: - - pos: -5.5,-9.5 + - type: Transform + pos: -5.5,-9.5 parent: 410 - type: Transform - uid: 115 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-11.5 parent: 410 - type: Transform - uid: 136 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,10.5 parent: 410 - type: Transform - uid: 137 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,3.5 parent: 410 - type: Transform - uid: 139 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-3.5 parent: 410 - type: Transform - uid: 145 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,2.5 parent: 410 - type: Transform - uid: 147 components: - - pos: -3.5,-1.5 + - type: Transform + pos: -3.5,-1.5 parent: 410 - type: Transform - uid: 148 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 410 - type: Transform - uid: 149 components: - - pos: -4.5,-1.5 + - type: Transform + pos: -4.5,-1.5 parent: 410 - type: Transform - uid: 155 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,2.5 parent: 410 - type: Transform - uid: 156 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,12.5 parent: 410 - type: Transform - uid: 157 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,13.5 parent: 410 - type: Transform - uid: 158 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,11.5 parent: 410 - type: Transform - uid: 159 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,12.5 parent: 410 - type: Transform - uid: 160 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,4.5 parent: 410 - type: Transform - uid: 161 components: - - pos: -12.5,-1.5 + - type: Transform + pos: -12.5,-1.5 parent: 410 - type: Transform - uid: 162 components: - - pos: -12.5,2.5 + - type: Transform + pos: -12.5,2.5 parent: 410 - type: Transform - uid: 163 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,4.5 parent: 410 - type: Transform - uid: 164 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 410 - type: Transform - uid: 173 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,3.5 parent: 410 - type: Transform - uid: 174 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-0.5 parent: 410 - type: Transform - uid: 175 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,3.5 parent: 410 - type: Transform - uid: 240 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,8.5 parent: 410 - type: Transform - uid: 241 components: - - pos: -5.5,-1.5 + - type: Transform + pos: -5.5,-1.5 parent: 410 - type: Transform - uid: 242 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 410 - type: Transform - uid: 243 components: - - pos: -10.5,-1.5 + - type: Transform + pos: -10.5,-1.5 parent: 410 - type: Transform - uid: 245 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-0.5 parent: 410 - type: Transform - uid: 249 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,15.5 parent: 410 - type: Transform - uid: 252 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,15.5 parent: 410 - type: Transform - uid: 255 components: - - pos: -3.5,2.5 + - type: Transform + pos: -3.5,2.5 parent: 410 - type: Transform - uid: 256 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,10.5 parent: 410 - type: Transform - uid: 261 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 410 - type: Transform - uid: 263 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-5.5 parent: 410 - type: Transform - uid: 265 components: - - pos: -5.5,-5.5 + - type: Transform + pos: -5.5,-5.5 parent: 410 - type: Transform - uid: 267 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 410 - type: Transform - uid: 290 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,8.5 parent: 410 - type: Transform - uid: 297 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,15.5 parent: 410 - type: Transform - uid: 300 components: - - pos: -9.5,-1.5 + - type: Transform + pos: -9.5,-1.5 parent: 410 - type: Transform - uid: 304 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,2.5 parent: 410 - type: Transform - uid: 305 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,13.5 parent: 410 - type: Transform - uid: 308 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,4.5 parent: 410 - type: Transform - uid: 310 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 410 - type: Transform - uid: 311 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-11.5 parent: 410 - type: Transform - uid: 315 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-8.5 parent: 410 - type: Transform - uid: 322 components: - - pos: -2.5,-1.5 + - type: Transform + pos: -2.5,-1.5 parent: 410 - type: Transform - uid: 325 components: - - pos: -4.5,2.5 + - type: Transform + pos: -4.5,2.5 parent: 410 - type: Transform - uid: 326 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 410 - type: Transform - uid: 327 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-0.5 parent: 410 - type: Transform - uid: 328 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 410 - type: Transform - uid: 330 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-10.5 parent: 410 - type: Transform - uid: 331 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 410 - type: Transform - uid: 332 components: - - pos: -11.5,-1.5 + - type: Transform + pos: -11.5,-1.5 parent: 410 - type: Transform - uid: 333 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-3.5 parent: 410 - type: Transform - uid: 340 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-3.5 parent: 410 - type: Transform - uid: 346 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 410 - type: Transform - uid: 349 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 410 - type: Transform - uid: 350 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-3.5 parent: 410 - type: Transform - uid: 351 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-3.5 parent: 410 - type: Transform - uid: 352 components: - - pos: -9.5,2.5 + - type: Transform + pos: -9.5,2.5 parent: 410 - type: Transform - uid: 353 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,-3.5 parent: 410 - type: Transform - uid: 354 components: - - pos: -2.5,2.5 + - type: Transform + pos: -2.5,2.5 parent: 410 - type: Transform - uid: 358 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,6.5 parent: 410 - type: Transform - uid: 361 components: - - pos: -10.5,2.5 + - type: Transform + pos: -10.5,2.5 parent: 410 - type: Transform - uid: 368 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-7.5 parent: 410 - type: Transform - uid: 370 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,8.5 parent: 410 - type: Transform - uid: 372 components: - - pos: -4.5,-5.5 + - type: Transform + pos: -4.5,-5.5 parent: 410 - type: Transform - uid: 373 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,13.5 parent: 410 - type: Transform - uid: 380 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 410 - type: Transform - uid: 381 components: - - pos: -6.5,-5.5 + - type: Transform + pos: -6.5,-5.5 parent: 410 - type: Transform - uid: 387 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-7.5 parent: 410 - type: Transform - uid: 391 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,-3.5 parent: 410 - type: Transform - uid: 396 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-7.5 parent: 410 - type: Transform - uid: 398 components: - - pos: -5.5,2.5 + - type: Transform + pos: -5.5,2.5 parent: 410 - type: Transform - uid: 417 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,7.5 parent: 410 - type: Transform - uid: 430 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,11.5 parent: 410 - type: Transform - uid: 431 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,12.5 parent: 410 - type: Transform - uid: 433 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-2.5 parent: 410 - type: Transform - uid: 434 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 410 - type: Transform - uid: 435 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-4.5 parent: 410 - type: Transform - uid: 436 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-7.5 parent: 410 - type: Transform - uid: 1127 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-5.5 parent: 410 - type: Transform - uid: 1185 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,-7.5 parent: 410 - type: Transform - proto: CheapRollerBed entities: - uid: 1213 components: - - pos: -14.508179,-2.489017 + - type: Transform + pos: -14.508179,-2.489017 parent: 410 - type: Transform - proto: ChessBoard entities: - uid: 237 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.544314,13.574686 parent: 410 - type: Transform - proto: CigarGoldCase entities: - uid: 463 components: - - pos: -10.348192,12.628815 + - type: Transform + pos: -10.348192,12.628815 parent: 410 - type: Transform - proto: ClosetEmergencyFilledRandom entities: - uid: 462 components: - - pos: -12.5,12.5 + - type: Transform + pos: -12.5,12.5 parent: 410 - type: Transform - uid: 1188 components: - - pos: -8.5,-3.5 + - type: Transform + pos: -8.5,-3.5 parent: 410 - type: Transform - uid: 1190 components: - - pos: 1.5,6.5 + - type: Transform + pos: 1.5,6.5 parent: 410 - type: Transform - uid: 1191 components: - - pos: -16.5,6.5 + - type: Transform + pos: -16.5,6.5 parent: 410 - type: Transform - proto: ClosetFireFilled entities: - uid: 477 components: - - pos: -2.5,12.5 + - type: Transform + pos: -2.5,12.5 parent: 410 - type: Transform - uid: 1189 components: - - pos: -6.5,-3.5 + - type: Transform + pos: -6.5,-3.5 parent: 410 - type: Transform - proto: ClosetL3VirologyFilled entities: - uid: 486 components: - - pos: -12.5,-5.5 + - type: Transform + pos: -12.5,-5.5 parent: 410 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3533,8 +3438,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3544,16 +3449,16 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: ClosetWallAtmospherics entities: - uid: 1218 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-12.5 parent: 410 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3570,8 +3475,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3584,14 +3489,14 @@ entities: - 1220 - 1219 - 1134 - type: ContainerContainer - uid: 1233 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 410 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3608,8 +3513,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3621,98 +3526,98 @@ entities: - 1235 - 1234 - 1239 - type: ContainerContainer - proto: ClosetWallEmergencyFilledRandom entities: - uid: 1186 components: - - pos: -15.5,14.5 + - type: Transform + pos: -15.5,14.5 parent: 410 - type: Transform - uid: 1193 components: - - pos: 0.5,14.5 + - type: Transform + pos: 0.5,14.5 parent: 410 - type: Transform - uid: 1208 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,6.5 parent: 410 - type: Transform - uid: 1209 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,6.5 parent: 410 - type: Transform - uid: 1210 components: - - pos: -0.5,-1.5 + - type: Transform + pos: -0.5,-1.5 parent: 410 - type: Transform - uid: 1211 components: - - pos: -14.5,-1.5 + - type: Transform + pos: -14.5,-1.5 parent: 410 - type: Transform - uid: 1226 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-2.5 parent: 410 - type: Transform - uid: 1229 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 410 - type: Transform - proto: ClosetWallFireFilledRandom entities: - uid: 886 components: - - pos: -16.5,9.5 + - type: Transform + pos: -16.5,9.5 parent: 410 - type: Transform - uid: 1212 components: - - pos: 1.5,9.5 + - type: Transform + pos: 1.5,9.5 parent: 410 - type: Transform - uid: 1230 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 410 - type: Transform - uid: 1231 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 410 - type: Transform - uid: 1242 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-4.5 parent: 410 - type: Transform - uid: 1243 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,7.5 parent: 410 - type: Transform - proto: ClosetWallMaintenanceFilledRandom entities: - uid: 1224 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-1.5 parent: 410 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3729,14 +3634,14 @@ entities: - 0 - 0 - 0 - type: EntityStorage - uid: 1244 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-1.5 parent: 410 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3753,15 +3658,15 @@ entities: - 0 - 0 - 0 - type: EntityStorage - proto: ClosetWallOrange entities: - uid: 1194 components: - - pos: -2.5,-8.5 + - type: Transform + pos: -2.5,-8.5 parent: 410 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3778,8 +3683,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3790,13 +3695,13 @@ entities: - 1198 - 1199 - 1200 - type: ContainerContainer - uid: 1201 components: - - pos: -2.5,-4.5 + - type: Transform + pos: -2.5,-4.5 parent: 410 - type: Transform - - air: + - type: EntityStorage + air: volume: 200 immutable: False temperature: 293.1496 @@ -3813,8 +3718,8 @@ entities: - 0 - 0 - 0 - type: EntityStorage - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -3826,3079 +3731,2887 @@ entities: - 1205 - 1207 - 1206 - type: ContainerContainer - proto: ClothingBeltUtilityEngineering entities: - uid: 1235 components: - - flags: InContainer - type: MetaData - - parent: 1233 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1233 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingHeadHelmetAtmosFire entities: - uid: 1219 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingMaskGasAtmos entities: - uid: 1133 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1134 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingOuterSuitAtmosFire entities: - uid: 1220 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingShoesColorBlack entities: - uid: 1199 components: - - flags: InContainer - type: MetaData - - parent: 1194 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1194 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1200 components: - - flags: InContainer - type: MetaData - - parent: 1194 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1194 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1205 components: - - flags: InContainer - type: MetaData - - parent: 1201 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1201 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1207 components: - - flags: InContainer - type: MetaData - - parent: 1201 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1201 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 1195 components: - - flags: InContainer - type: MetaData - - parent: 1194 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1194 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1196 components: - - flags: InContainer - type: MetaData - - parent: 1194 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1194 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1203 components: - - flags: InContainer - type: MetaData - - parent: 1201 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1201 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1206 components: - - flags: InContainer - type: MetaData - - parent: 1201 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1201 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ClothingUniformJumpsuitPrisoner entities: - uid: 1197 components: - - flags: InContainer - type: MetaData - - parent: 1194 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1194 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1198 components: - - flags: InContainer - type: MetaData - - parent: 1194 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1194 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1202 components: - - flags: InContainer - type: MetaData - - parent: 1201 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1201 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 1204 components: - - flags: InContainer - type: MetaData - - parent: 1201 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1201 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ComputerAlert entities: - uid: 142 components: - - pos: -10.5,15.5 + - type: Transform + pos: -10.5,15.5 parent: 410 - type: Transform - proto: ComputerComms entities: - uid: 188 components: - - pos: -8.5,16.5 + - type: Transform + pos: -8.5,16.5 parent: 410 - type: Transform - proto: ComputerCriminalRecords entities: - uid: 182 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-8.5 parent: 410 - type: Transform - proto: ComputerEmergencyShuttle entities: - uid: 119 components: - - pos: -7.5,16.5 + - type: Transform + pos: -7.5,16.5 parent: 410 - type: Transform - proto: ComputerId entities: - uid: 375 components: - - pos: -6.5,16.5 + - type: Transform + pos: -6.5,16.5 parent: 410 - type: Transform - proto: ComputerPowerMonitoring entities: - uid: 85 components: - - pos: -11.5,15.5 + - type: Transform + pos: -11.5,15.5 parent: 410 - type: Transform - uid: 443 components: - - pos: -4.5,15.5 + - type: Transform + pos: -4.5,15.5 parent: 410 - type: Transform - proto: ComputerRadar entities: - uid: 444 components: - - pos: -3.5,15.5 + - type: Transform + pos: -3.5,15.5 parent: 410 - type: Transform - proto: ContrabassInstrument entities: - uid: 458 components: - - pos: -12.5,3.5 + - type: Transform + pos: -12.5,3.5 parent: 410 - type: Transform - proto: CrowbarRed entities: - uid: 1236 components: - - flags: InContainer - type: MetaData - - parent: 1233 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1233 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: DefibrillatorCabinetFilled entities: - uid: 502 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-8.5 parent: 410 - type: Transform - proto: DrinkColaBottleFull entities: - uid: 1245 components: - - pos: -6.766127,-11.267033 + - type: Transform + pos: -6.766127,-11.267033 parent: 410 - type: Transform - proto: DrinkGlass entities: - uid: 537 components: - - pos: -5.519762,15.707392 + - type: Transform + pos: -5.519762,15.707392 parent: 410 - type: Transform - uid: 538 components: - - pos: -5.347887,15.582392 + - type: Transform + pos: -5.347887,15.582392 parent: 410 - type: Transform - uid: 539 components: - - pos: -5.676012,15.598017 + - type: Transform + pos: -5.676012,15.598017 parent: 410 - type: Transform - proto: DrinkMugBlue entities: - uid: 1184 components: - - pos: -6.281752,-11.204533 + - type: Transform + pos: -6.281752,-11.204533 parent: 410 - type: Transform - uid: 1241 components: - - pos: -6.500502,-11.204533 + - type: Transform + pos: -6.500502,-11.204533 parent: 410 - type: Transform - uid: 1246 components: - - pos: -6.078627,-11.235783 + - type: Transform + pos: -6.078627,-11.235783 parent: 410 - type: Transform - uid: 1248 components: - - pos: -6.750502,-11.173283 + - type: Transform + pos: -6.750502,-11.173283 parent: 410 - type: Transform - proto: DrinkWineBottleFull entities: - uid: 535 components: - - pos: -2.310926,15.676142 + - type: Transform + pos: -2.310926,15.676142 parent: 410 - type: Transform - uid: 536 components: - - pos: -2.560926,15.738642 + - type: Transform + pos: -2.560926,15.738642 parent: 410 - type: Transform - proto: ExtinguisherCabinetFilled entities: - uid: 1128 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-8.5 parent: 410 - type: Transform - uid: 1217 components: - - pos: -8.5,10.5 + - type: Transform + pos: -8.5,10.5 parent: 410 - type: Transform - uid: 1227 components: - - pos: -14.5,9.5 + - type: Transform + pos: -14.5,9.5 parent: 410 - type: Transform - uid: 1232 components: - - pos: -0.5,9.5 + - type: Transform + pos: -0.5,9.5 parent: 410 - type: Transform - proto: FireAlarm entities: - uid: 1073 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,11.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1027 - - 1026 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1027 - 1026 - type: DeviceList - uid: 1088 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,2.5 parent: 410 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 1024 - 1025 - type: DeviceNetwork - - devices: - - 1024 - - 1025 - type: DeviceList - uid: 1089 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,2.5 parent: 410 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 1024 - 1025 - type: DeviceNetwork - - devices: - - 1024 - - 1025 - type: DeviceList - uid: 1094 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,2.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1022 - - 1023 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1022 - 1023 - type: DeviceList - uid: 1095 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,2.5 parent: 410 - type: Transform - - ShutdownSubscribers: + - type: DeviceList + devices: - 1022 - 1023 - type: DeviceNetwork - - devices: - - 1022 - - 1023 - type: DeviceList - uid: 1152 components: - - pos: -8.5,-4.5 + - type: Transform + pos: -8.5,-4.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1032 - - 1033 - type: DeviceNetwork - - devices: + - type: DeviceList + devices: - 1032 - 1033 - type: DeviceList - proto: FirelockEdge entities: - uid: 1036 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-9.5 parent: 410 - type: Transform - uid: 1037 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 410 - type: Transform - uid: 1039 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 410 - type: Transform - uid: 1040 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-9.5 parent: 410 - type: Transform - proto: FirelockGlass entities: - uid: 1022 components: - - pos: -13.5,1.5 + - type: Transform + pos: -13.5,1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - - 1094 - - 1095 - - 1108 - type: DeviceNetwork - uid: 1023 components: - - pos: -13.5,0.5 + - type: Transform + pos: -13.5,0.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - - 1094 - - 1095 - - 1108 - type: DeviceNetwork - uid: 1024 components: - - pos: -1.5,1.5 + - type: Transform + pos: -1.5,1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - - 1088 - - 1089 - - 1109 - type: DeviceNetwork - uid: 1025 components: - - pos: -1.5,0.5 + - type: Transform + pos: -1.5,0.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - - 1088 - - 1089 - - 1109 - type: DeviceNetwork - uid: 1026 components: - - pos: -7.5,9.5 + - type: Transform + pos: -7.5,9.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - - 1073 - - 1099 - type: DeviceNetwork - uid: 1027 components: - - pos: -7.5,12.5 + - type: Transform + pos: -7.5,12.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1073 - - 1099 - - 1144 - type: DeviceNetwork - uid: 1028 components: - - pos: 0.5,9.5 + - type: Transform + pos: 0.5,9.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1109 - type: DeviceNetwork - uid: 1029 components: - - pos: -15.5,9.5 + - type: Transform + pos: -15.5,9.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - uid: 1030 components: - - pos: -15.5,-1.5 + - type: Transform + pos: -15.5,-1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - uid: 1031 components: - - pos: 0.5,-1.5 + - type: Transform + pos: 0.5,-1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1109 - type: DeviceNetwork - uid: 1032 components: - - pos: -7.5,-4.5 + - type: Transform + pos: -7.5,-4.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 551 - - 1131 - - 1152 - type: DeviceNetwork - uid: 1033 components: - - pos: -7.5,-8.5 + - type: Transform + pos: -7.5,-8.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 551 - - 1152 - type: DeviceNetwork - proto: FoodBoxDonut entities: - uid: 442 components: - - pos: 1.5969245,-4.4644647 + - type: Transform + pos: 1.5969245,-4.4644647 parent: 410 - type: Transform - proto: FoodBoxPizzaFilled entities: - uid: 530 components: - - pos: -9.49798,15.788399 + - type: Transform + pos: -9.49798,15.788399 parent: 410 - type: Transform - uid: 1187 components: - - pos: -6.5093994,-11.353857 + - type: Transform + pos: -6.5093994,-11.353857 parent: 410 - type: Transform - proto: GasAnalyzer entities: - uid: 1132 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: GasMixer entities: - uid: 528 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-10.5 parent: 410 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - proto: GasPassiveVent entities: - uid: 713 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeBend entities: - uid: 534 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-10.5 parent: 410 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 552 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -7.5,-11.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 580 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 586 components: - - pos: -13.5,-9.5 + - type: Transform + pos: -13.5,-9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 603 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 706 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 719 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 746 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 750 components: - - pos: -13.5,-5.5 + - type: Transform + pos: -13.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 754 components: - - pos: -12.5,-8.5 + - type: Transform + pos: -12.5,-8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1041 components: - - pos: 1.5,13.5 + - type: Transform + pos: 1.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeFourway entities: - uid: 556 components: - - pos: -7.5,-6.5 + - type: Transform + pos: -7.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 613 components: - - pos: -9.5,-3.5 + - type: Transform + pos: -9.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 678 components: - - pos: -9.5,8.5 + - type: Transform + pos: -9.5,8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1056 components: - - pos: -6.5,-1.5 + - type: Transform + pos: -6.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1085 components: - - pos: -6.5,10.5 + - type: Transform + pos: -6.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPipeStraight entities: - uid: 448 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 501 components: - - pos: -7.5,-8.5 + - type: Transform + pos: -7.5,-8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 548 components: - - pos: -7.5,-7.5 + - type: Transform + pos: -7.5,-7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 550 components: - - pos: -7.5,-9.5 + - type: Transform + pos: -7.5,-9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 555 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 557 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 558 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 559 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 560 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 563 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 564 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 567 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 568 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 569 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 570 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 571 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 581 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,-9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 587 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 588 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 595 components: - - pos: -9.5,-2.5 + - type: Transform + pos: -9.5,-2.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 597 components: - - pos: -2.5,-8.5 + - type: Transform + pos: -2.5,-8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 598 components: - - pos: -2.5,-9.5 + - type: Transform + pos: -2.5,-9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 599 components: - - pos: -9.5,-1.5 + - type: Transform + pos: -9.5,-1.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 611 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-5.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 612 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-4.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 618 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 619 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 620 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 621 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 622 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 623 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 630 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-5.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 631 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,-4.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 632 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 633 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-2.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 634 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-1.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 635 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-0.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 636 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,0.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 637 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,1.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 638 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,2.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 639 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 640 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,4.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 641 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,5.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 642 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 644 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 645 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 646 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,10.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 650 components: - - pos: -0.5,-5.5 + - type: Transform + pos: -0.5,-5.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 651 components: - - pos: -0.5,-4.5 + - type: Transform + pos: -0.5,-4.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 653 components: - - pos: -0.5,-2.5 + - type: Transform + pos: -0.5,-2.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 654 components: - - pos: -0.5,-1.5 + - type: Transform + pos: -0.5,-1.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 655 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 656 components: - - pos: -0.5,0.5 + - type: Transform + pos: -0.5,0.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 657 components: - - pos: -0.5,1.5 + - type: Transform + pos: -0.5,1.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 658 components: - - pos: -0.5,2.5 + - type: Transform + pos: -0.5,2.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 659 components: - - pos: -0.5,3.5 + - type: Transform + pos: -0.5,3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 660 components: - - pos: -0.5,4.5 + - type: Transform + pos: -0.5,4.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 661 components: - - pos: -0.5,5.5 + - type: Transform + pos: -0.5,5.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 662 components: - - pos: -0.5,6.5 + - type: Transform + pos: -0.5,6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 664 components: - - pos: -0.5,8.5 + - type: Transform + pos: -0.5,8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 665 components: - - pos: -0.5,9.5 + - type: Transform + pos: -0.5,9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 666 components: - - pos: -0.5,10.5 + - type: Transform + pos: -0.5,10.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 671 components: - - pos: -9.5,-0.5 + - type: Transform + pos: -9.5,-0.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 672 components: - - pos: -9.5,0.5 + - type: Transform + pos: -9.5,0.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 673 components: - - pos: -9.5,1.5 + - type: Transform + pos: -9.5,1.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 674 components: - - pos: -9.5,2.5 + - type: Transform + pos: -9.5,2.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 675 components: - - pos: -9.5,3.5 + - type: Transform + pos: -9.5,3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 676 components: - - pos: -9.5,4.5 + - type: Transform + pos: -9.5,4.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 677 components: - - pos: -9.5,5.5 + - type: Transform + pos: -9.5,5.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 679 components: - - pos: -9.5,6.5 + - type: Transform + pos: -9.5,6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 680 components: - - pos: -9.5,7.5 + - type: Transform + pos: -9.5,7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 683 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 684 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 685 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,8.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 686 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,9.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 687 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,10.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 688 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 689 components: - - pos: -9.5,13.5 + - type: Transform + pos: -9.5,13.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 690 components: - - pos: -9.5,14.5 + - type: Transform + pos: -9.5,14.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 692 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 693 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 694 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -6.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 696 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 697 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 698 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 699 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 700 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 701 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 702 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 703 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 704 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 708 components: - - pos: -0.5,11.5 + - type: Transform + pos: -0.5,11.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 709 components: - - pos: -16.5,11.5 + - type: Transform + pos: -16.5,11.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 714 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 716 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 717 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 726 components: - - pos: -6.5,-11.5 + - type: Transform + pos: -6.5,-11.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 731 components: - - pos: -6.5,-8.5 + - type: Transform + pos: -6.5,-8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 755 components: - - pos: -12.5,-9.5 + - type: Transform + pos: -12.5,-9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 756 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 757 components: - - pos: -13.5,-6.5 + - type: Transform + pos: -13.5,-6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 806 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-4.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 807 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-3.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 808 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-2.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 809 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 810 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 811 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 812 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 813 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,2.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 814 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,3.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 815 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,4.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 816 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 817 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 818 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,7.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 819 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 820 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 821 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 822 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,11.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 853 components: - - pos: -14.5,-6.5 + - type: Transform + pos: -14.5,-6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 854 components: - - pos: -14.5,-7.5 + - type: Transform + pos: -14.5,-7.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 856 components: - - pos: -14.5,-9.5 + - type: Transform + pos: -14.5,-9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 940 components: - - pos: -6.5,-6.5 + - type: Transform + pos: -6.5,-6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 946 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 947 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 948 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 949 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 951 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 952 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 998 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 999 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-7.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1000 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1001 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,-9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1002 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1004 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-4.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1005 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1006 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-2.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1007 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1008 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-0.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1009 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-11.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1010 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1011 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,2.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1012 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1013 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1014 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1015 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1016 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,7.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1017 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1018 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1020 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,11.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1021 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1042 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1043 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1044 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1050 components: - - pos: -12.5,14.5 + - type: Transform + pos: -12.5,14.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1051 components: - - pos: -2.5,14.5 + - type: Transform + pos: -2.5,14.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1052 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1053 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-4.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1054 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-3.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1055 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,-2.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1067 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1068 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1069 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1070 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1071 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1072 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,-1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1074 components: - - pos: -6.5,-0.5 + - type: Transform + pos: -6.5,-0.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1075 components: - - pos: -6.5,0.5 + - type: Transform + pos: -6.5,0.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1076 components: - - pos: -6.5,1.5 + - type: Transform + pos: -6.5,1.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1077 components: - - pos: -6.5,2.5 + - type: Transform + pos: -6.5,2.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1078 components: - - pos: -6.5,3.5 + - type: Transform + pos: -6.5,3.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1079 components: - - pos: -6.5,4.5 + - type: Transform + pos: -6.5,4.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1080 components: - - pos: -6.5,5.5 + - type: Transform + pos: -6.5,5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1081 components: - - pos: -6.5,6.5 + - type: Transform + pos: -6.5,6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1082 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,7.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1083 components: - - pos: -6.5,8.5 + - type: Transform + pos: -6.5,8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1084 components: - - pos: -6.5,9.5 + - type: Transform + pos: -6.5,9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1090 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1091 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1092 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1093 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1097 components: - - pos: -6.5,11.5 + - type: Transform + pos: -6.5,11.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1098 components: - - pos: -6.5,12.5 + - type: Transform + pos: -6.5,12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1100 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1101 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1102 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1103 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1104 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1105 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1106 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1107 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1116 components: - - pos: -14.5,12.5 + - type: Transform + pos: -14.5,12.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1122 components: - - pos: -5.5,14.5 + - type: Transform + pos: -5.5,14.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1123 components: - - pos: -5.5,13.5 + - type: Transform + pos: -5.5,13.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasPipeTJunction entities: - uid: 554 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 561 components: - - pos: -2.5,-6.5 + - type: Transform + pos: -2.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 572 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -7.5,-10.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 575 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-6.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 594 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 643 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 652 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 663 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -0.5,7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 691 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 695 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 705 components: - - pos: -15.5,12.5 + - type: Transform + pos: -15.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 707 components: - - pos: -0.5,12.5 + - type: Transform + pos: -0.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 730 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 732 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-7.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 744 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 753 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-4.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 844 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 855 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -14.5,-8.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 936 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 950 components: - - pos: -1.5,-5.5 + - type: Transform + pos: -1.5,-5.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 994 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1019 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1034 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,0.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1035 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1045 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1046 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1096 components: - - pos: -6.5,13.5 + - type: Transform + pos: -6.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1112 components: - - pos: -14.5,13.5 + - type: Transform + pos: -14.5,13.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasPort entities: - uid: 532 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,-11.5 parent: 410 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - uid: 533 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,-11.5 parent: 410 - type: Transform - - color: '#17E8E2FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#17E8E2FF' - proto: GasPressurePump entities: - uid: 553 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-10.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasVentPump entities: - uid: 565 components: - - pos: -7.5,-5.5 + - type: Transform + pos: -7.5,-5.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 551 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 583 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 600 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -1.5,-7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 601 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-10.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 614 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 616 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-3.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 648 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-3.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 649 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -15.5,7.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 667 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,7.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 668 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 410 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 681 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 682 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,8.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 752 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-4.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 901 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,11.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1038 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-11.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 551 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1124 components: - - pos: -5.5,15.5 + - type: Transform + pos: -5.5,15.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1144 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 1125 components: - - pos: -9.5,15.5 + - type: Transform + pos: -9.5,15.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1144 - type: DeviceNetwork - - color: '#0000FFFF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#0000FFFF' - proto: GasVentScrubber entities: - uid: 602 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,0.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 735 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-9.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 551 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 736 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,-7.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 551 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 743 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-7.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 748 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-6.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 749 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 884 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 902 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 996 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1003 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1048 components: - - pos: -2.5,15.5 + - type: Transform + pos: -2.5,15.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1144 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1049 components: - - pos: -12.5,15.5 + - type: Transform + pos: -12.5,15.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1144 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1057 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,-1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1062 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -11.5,-1.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1086 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1087 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,10.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1131 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1115 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,13.5 parent: 410 - type: Transform - - ShutdownSubscribers: - - 1108 - type: DeviceNetwork - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 1126 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 0.5,0.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GasVolumePump entities: - uid: 729 components: - - pos: -6.5,-10.5 + - type: Transform + pos: -6.5,-10.5 parent: 410 - type: Transform - - color: '#FF0000FF' - type: AtmosPipeColor + - type: AtmosPipeColor + color: '#FF0000FF' - proto: GeneratorBasic15kW entities: - uid: 710 components: - - pos: -10.5,-5.5 + - type: Transform + pos: -10.5,-5.5 parent: 410 - type: Transform - - supplyRate: 30000 - type: PowerSupplier + - type: PowerSupplier + supplyRate: 30000 - uid: 711 components: - - pos: -9.5,-5.5 + - type: Transform + pos: -9.5,-5.5 parent: 410 - type: Transform - - supplyRate: 30000 - type: PowerSupplier + - type: PowerSupplier + supplyRate: 30000 - proto: GravityGeneratorMini entities: - uid: 345 components: - - pos: -10.5,-6.5 + - type: Transform + pos: -10.5,-6.5 parent: 410 - type: Transform - proto: Grille entities: - uid: 8 components: - - pos: -2.5,16.5 + - type: Transform + pos: -2.5,16.5 parent: 410 - type: Transform - uid: 10 components: - - pos: -5.5,17.5 + - type: Transform + pos: -5.5,17.5 parent: 410 - type: Transform - uid: 11 components: - - pos: -7.5,17.5 + - type: Transform + pos: -7.5,17.5 parent: 410 - type: Transform - uid: 12 components: - - pos: -11.5,16.5 + - type: Transform + pos: -11.5,16.5 parent: 410 - type: Transform - uid: 22 components: - - pos: -10.5,16.5 + - type: Transform + pos: -10.5,16.5 parent: 410 - type: Transform - uid: 25 components: - - pos: -17.5,3.5 + - type: Transform + pos: -17.5,3.5 parent: 410 - type: Transform - uid: 78 components: - - pos: -17.5,12.5 + - type: Transform + pos: -17.5,12.5 parent: 410 - type: Transform - uid: 86 components: - - pos: -17.5,2.5 + - type: Transform + pos: -17.5,2.5 parent: 410 - type: Transform - uid: 93 components: - - pos: -17.5,1.5 + - type: Transform + pos: -17.5,1.5 parent: 410 - type: Transform - uid: 176 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 410 - type: Transform - uid: 180 components: - - pos: -12.5,16.5 + - type: Transform + pos: -12.5,16.5 parent: 410 - type: Transform - uid: 219 components: - - pos: -13.5,16.5 + - type: Transform + pos: -13.5,16.5 parent: 410 - type: Transform - uid: 259 components: - - pos: -5.5,16.5 + - type: Transform + pos: -5.5,16.5 parent: 410 - type: Transform - uid: 273 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 410 - type: Transform - uid: 274 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 410 - type: Transform - uid: 276 components: - - pos: -9.5,17.5 + - type: Transform + pos: -9.5,17.5 parent: 410 - type: Transform - uid: 278 components: - - pos: 2.5,12.5 + - type: Transform + pos: 2.5,12.5 parent: 410 - type: Transform - uid: 313 components: - - pos: -3.5,16.5 + - type: Transform + pos: -3.5,16.5 parent: 410 - type: Transform - uid: 314 components: - - pos: -4.5,16.5 + - type: Transform + pos: -4.5,16.5 parent: 410 - type: Transform - uid: 317 components: - - pos: -9.5,16.5 + - type: Transform + pos: -9.5,16.5 parent: 410 - type: Transform - uid: 342 components: - - pos: -8.5,17.5 + - type: Transform + pos: -8.5,17.5 parent: 410 - type: Transform - uid: 344 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 410 - type: Transform - uid: 369 components: - - pos: -6.5,17.5 + - type: Transform + pos: -6.5,17.5 parent: 410 - type: Transform - uid: 389 components: - - pos: -1.5,16.5 + - type: Transform + pos: -1.5,16.5 parent: 410 - type: Transform - uid: 413 components: - - pos: -17.5,11.5 + - type: Transform + pos: -17.5,11.5 parent: 410 - type: Transform - uid: 449 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-12.5 parent: 410 - type: Transform - uid: 450 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 410 - type: Transform - uid: 451 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-12.5 parent: 410 - type: Transform - uid: 452 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-12.5 parent: 410 - type: Transform - uid: 453 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-12.5 parent: 410 - type: Transform - proto: KitchenKnife entities: - uid: 518 components: - - pos: -3.7547207,10.702074 + - type: Transform + pos: -3.7547207,10.702074 parent: 410 - type: Transform - proto: KitchenMicrowave entities: - uid: 360 components: - - pos: -5.5,10.5 + - type: Transform + pos: -5.5,10.5 parent: 410 - type: Transform - proto: KitchenReagentGrinder entities: - uid: 146 components: - - pos: -4.5,10.5 + - type: Transform + pos: -4.5,10.5 parent: 410 - type: Transform - uid: 302 components: - - pos: -10.5,10.5 + - type: Transform + pos: -10.5,10.5 parent: 410 - type: Transform - proto: KnifePlastic entities: - uid: 542 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.437837,15.826666 parent: 410 - type: Transform - uid: 543 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.547212,15.670416 parent: 410 - type: Transform - proto: LockerEvidence entities: - uid: 99 components: - - pos: -0.5,-7.5 + - type: Transform + pos: -0.5,-7.5 parent: 410 - type: Transform - uid: 439 components: - - pos: -0.5,-5.5 + - type: Transform + pos: -0.5,-5.5 parent: 410 - type: Transform - uid: 440 components: - - pos: -0.5,-10.5 + - type: Transform + pos: -0.5,-10.5 parent: 410 - type: Transform - proto: LockerMedicine entities: - uid: 465 components: - - pos: -12.5,-7.5 + - type: Transform + pos: -12.5,-7.5 parent: 410 - type: Transform - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -6915,13 +6628,13 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - uid: 490 components: - - pos: -13.5,-7.5 + - type: Transform + pos: -13.5,-7.5 parent: 410 - type: Transform - - containers: + - type: ContainerContainer + containers: entity_storage: !type:Container showEnts: False occludes: True @@ -6936,2499 +6649,2514 @@ entities: showEnts: False occludes: True ent: null - type: ContainerContainer - proto: LockerMedicineFilled entities: - uid: 489 components: - - pos: -13.5,-5.5 + - type: Transform + pos: -13.5,-5.5 parent: 410 - type: Transform - proto: MedicalBed entities: - uid: 309 components: - - pos: -14.5,-4.5 + - type: Transform + pos: -14.5,-4.5 parent: 410 - type: Transform - uid: 335 components: - - pos: -14.5,-3.5 + - type: Transform + pos: -14.5,-3.5 parent: 410 - type: Transform - uid: 429 components: - - pos: -16.5,-3.5 + - type: Transform + pos: -16.5,-3.5 parent: 410 - type: Transform - uid: 432 components: - - pos: -12.5,-10.5 + - type: Transform + pos: -12.5,-10.5 parent: 410 - type: Transform - uid: 499 components: - - pos: -16.5,-4.5 + - type: Transform + pos: -16.5,-4.5 parent: 410 - type: Transform - proto: MedkitAdvancedFilled entities: - uid: 466 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 473 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: MedkitBruteFilled entities: - uid: 491 components: - - flags: InContainer - type: MetaData - - parent: 490 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 490 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 495 components: - - flags: InContainer - type: MetaData - - parent: 490 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 490 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: MedkitBurnFilled entities: - uid: 494 components: - - flags: InContainer - type: MetaData - - parent: 490 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 490 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 496 components: - - flags: InContainer - type: MetaData - - parent: 490 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 490 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: MedkitFilled entities: - uid: 1119 components: - - pos: -16.405499,-9.3799515 + - type: Transform + pos: -16.405499,-9.3799515 parent: 410 - type: Transform - uid: 1120 components: - - pos: -16.577374,-9.6612015 + - type: Transform + pos: -16.577374,-9.6612015 parent: 410 - type: Transform - proto: MedkitOxygenFilled entities: - uid: 492 components: - - flags: InContainer - type: MetaData - - parent: 490 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 490 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 493 components: - - flags: InContainer - type: MetaData - - parent: 490 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 490 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: MedkitRadiationFilled entities: - uid: 467 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 470 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: MedkitToxinFilled entities: - uid: 469 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - uid: 471 components: - - flags: InContainer - type: MetaData - - parent: 465 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 465 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: NitrogenCanister entities: - uid: 527 components: - - pos: -10.5,-9.5 + - type: Transform + pos: -10.5,-9.5 parent: 410 - type: Transform - uid: 531 components: - - pos: -10.5,-11.5 + - type: Transform + pos: -10.5,-11.5 parent: 410 - type: Transform - proto: NitrogenTankFilled entities: - uid: 1223 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: OxygenCanister entities: - uid: 540 components: - - pos: -9.5,-11.5 + - type: Transform + pos: -9.5,-11.5 parent: 410 - type: Transform - uid: 541 components: - - pos: -9.5,-9.5 + - type: Transform + pos: -9.5,-9.5 parent: 410 - type: Transform - proto: OxygenTankFilled entities: - uid: 1221 components: - - flags: InContainer - type: MetaData - - parent: 1218 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1218 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: PaperBin10 entities: - uid: 526 components: - - pos: -11.5,12.5 + - type: Transform + pos: -11.5,12.5 parent: 410 - type: Transform - proto: Pen entities: - uid: 520 components: - - pos: -10.910692,12.70694 + - type: Transform + pos: -10.910692,12.70694 parent: 410 - type: Transform - uid: 521 components: - - pos: -11.113817,12.48819 + - type: Transform + pos: -11.113817,12.48819 parent: 410 - type: Transform - uid: 522 components: - - pos: -11.035692,12.597565 + - type: Transform + pos: -11.035692,12.597565 parent: 410 - type: Transform - proto: PianoInstrument entities: - uid: 16 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,4.5 parent: 410 - type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - uid: 546 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-9.5 parent: 410 - type: Transform - uid: 547 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 410 - type: Transform - uid: 712 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-5.5 parent: 410 - type: Transform - uid: 715 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-7.5 parent: 410 - type: Transform - proto: PlushieAtmosian entities: - uid: 1275 components: - - name: TiFeRi - type: MetaData - - pos: -5.507266,-9.468946 + - type: MetaData + name: TiFeRi + - type: Transform + pos: -5.507266,-9.468946 parent: 410 - type: Transform - proto: PlushieCarp entities: - uid: 1 components: - - flags: InContainer + - type: MetaData name: SyndiCarp - type: MetaData - - parent: 1201 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1201 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: PlushieNar entities: - uid: 1274 components: - - flags: InContainer + - type: MetaData name: kyltust - type: MetaData - - parent: 486 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 486 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: PosterContrabandBorgFancyv2 entities: - uid: 1265 components: - - pos: -13.5,4.5 + - type: Transform + pos: -13.5,4.5 parent: 410 - type: Transform - proto: PosterContrabandClown entities: - uid: 1249 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 410 - type: Transform - proto: PosterContrabandDonk entities: - uid: 1264 components: - - pos: -5.5,11.5 + - type: Transform + pos: -5.5,11.5 parent: 410 - type: Transform - proto: PosterContrabandEAT entities: - uid: 1255 components: - - pos: -1.5,9.5 + - type: Transform + pos: -1.5,9.5 parent: 410 - type: Transform - proto: PosterContrabandRedRum entities: - uid: 1263 components: - - pos: -9.5,11.5 + - type: Transform + pos: -9.5,11.5 parent: 410 - type: Transform - proto: PosterContrabandSpaceCola entities: - uid: 1259 components: - - pos: -13.5,9.5 + - type: Transform + pos: -13.5,9.5 parent: 410 - type: Transform - proto: PosterLegitAnatomyPoster entities: - uid: 1257 components: - - pos: -12.5,-8.5 + - type: Transform + pos: -12.5,-8.5 parent: 410 - type: Transform - proto: PosterLegitBuild entities: - uid: 1251 components: - - pos: -10.5,-4.5 + - type: Transform + pos: -10.5,-4.5 parent: 410 - type: Transform - proto: PosterLegitCarbonDioxide entities: - uid: 1254 components: - - pos: -9.5,-8.5 + - type: Transform + pos: -9.5,-8.5 parent: 410 - type: Transform - proto: PosterLegitCleanliness entities: - uid: 1262 components: - - pos: -2.5,11.5 + - type: Transform + pos: -2.5,11.5 parent: 410 - type: Transform - proto: PosterLegitEnlist entities: - uid: 1258 components: - - pos: 2.5,-7.5 + - type: Transform + pos: 2.5,-7.5 parent: 410 - type: Transform - proto: PosterLegitGetYourLEGS entities: - uid: 1225 components: - - pos: -6.5,9.5 + - type: Transform + pos: -6.5,9.5 parent: 410 - type: Transform - proto: PosterLegitHelpOthers entities: - uid: 1256 components: - - pos: -17.5,-7.5 + - type: Transform + pos: -17.5,-7.5 parent: 410 - type: Transform - proto: PosterLegitJustAWeekAway entities: - uid: 1250 components: - - pos: -8.5,9.5 + - type: Transform + pos: -8.5,9.5 parent: 410 - type: Transform - proto: PosterLegitNanomichiAd entities: - uid: 1247 components: - - pos: -1.5,14.5 + - type: Transform + pos: -1.5,14.5 parent: 410 - type: Transform - proto: PosterLegitNanotrasenLogo entities: - uid: 1261 components: - - pos: -13.5,14.5 + - type: Transform + pos: -13.5,14.5 parent: 410 - type: Transform - proto: PosterLegitSafetyInternals entities: - uid: 1260 components: - - pos: -4.5,-4.5 + - type: Transform + pos: -4.5,-4.5 parent: 410 - type: Transform - proto: PosterLegitSecWatch entities: - uid: 1253 components: - - pos: -1.5,-8.5 + - type: Transform + pos: -1.5,-8.5 parent: 410 - type: Transform - proto: PosterLegitWalk entities: - uid: 1216 components: - - pos: -12.5,11.5 + - type: Transform + pos: -12.5,11.5 parent: 410 - type: Transform - proto: PosterLegitWorkForAFuture entities: - uid: 1252 components: - - pos: -13.5,-4.5 + - type: Transform + pos: -13.5,-4.5 parent: 410 - type: Transform - proto: PottedPlantRandom entities: - uid: 138 components: - - pos: -0.5,-0.5 + - type: Transform + pos: -0.5,-0.5 parent: 410 - type: Transform - uid: 272 components: - - pos: -14.5,-0.5 + - type: Transform + pos: -14.5,-0.5 parent: 410 - type: Transform - proto: PowerCellMedium entities: - uid: 1121 components: - - pos: -16.405499,-10.014292 + - type: Transform + pos: -16.405499,-10.014292 parent: 410 - type: Transform - proto: PowerCellRecharger entities: - uid: 503 components: - - pos: -16.5,-10.5 + - type: Transform + pos: -16.5,-10.5 parent: 410 - type: Transform - proto: Poweredlight entities: - uid: 573 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,4.5 parent: 410 - type: Transform - uid: 574 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,4.5 parent: 410 - type: Transform - uid: 576 components: - - pos: -3.5,10.5 + - type: Transform + pos: -3.5,10.5 parent: 410 - type: Transform - uid: 577 components: - - pos: -11.5,10.5 + - type: Transform + pos: -11.5,10.5 parent: 410 - type: Transform - uid: 578 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,14.5 parent: 410 - type: Transform - uid: 579 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,14.5 parent: 410 - type: Transform - uid: 584 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -6.5,13.5 parent: 410 - type: Transform - uid: 585 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -8.5,13.5 parent: 410 - type: Transform - uid: 589 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -12.5,-2.5 parent: 410 - type: Transform - uid: 590 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 410 - type: Transform - uid: 591 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,0.5 parent: 410 - type: Transform - uid: 592 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,6.5 parent: 410 - type: Transform - uid: 593 components: - - pos: 0.5,13.5 + - type: Transform + pos: 0.5,13.5 parent: 410 - type: Transform - uid: 596 components: - - pos: -15.5,13.5 + - type: Transform + pos: -15.5,13.5 parent: 410 - type: Transform - uid: 606 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-6.5 parent: 410 - type: Transform - uid: 607 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -14.5,-3.5 parent: 410 - type: Transform - uid: 608 components: - - pos: -12.5,-9.5 + - type: Transform + pos: -12.5,-9.5 parent: 410 - type: Transform - uid: 609 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -16.5,-3.5 parent: 410 - type: Transform - uid: 610 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,-10.5 parent: 410 - type: Transform - uid: 624 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-9.5 parent: 410 - type: Transform - uid: 625 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,-4.5 parent: 410 - type: Transform - uid: 626 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,15.5 parent: 410 - type: Transform - uid: 627 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,15.5 parent: 410 - type: Transform - uid: 628 components: - - pos: -0.5,-12.5 + - type: Transform + pos: -0.5,-12.5 parent: 410 - type: Transform - uid: 629 components: - - pos: -14.5,-12.5 + - type: Transform + pos: -14.5,-12.5 parent: 410 - type: Transform - uid: 669 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,0.5 parent: 410 - type: Transform - uid: 670 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 1.5,6.5 parent: 410 - type: Transform - proto: PoweredSmallLight entities: - uid: 562 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-10.5 parent: 410 - type: Transform - uid: 582 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,11.5 parent: 410 - type: Transform - uid: 604 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,-6.5 parent: 410 - type: Transform - uid: 605 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-10.5 parent: 410 - type: Transform - uid: 615 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-6.5 parent: 410 - type: Transform - uid: 617 components: - - pos: -2.5,-9.5 + - type: Transform + pos: -2.5,-9.5 parent: 410 - type: Transform - uid: 647 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,-6.5 parent: 410 - type: Transform - proto: Railing entities: - uid: 2 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,5.5 parent: 410 - type: Transform - uid: 303 components: - - pos: -4.5,3.5 + - type: Transform + pos: -4.5,3.5 parent: 410 - type: Transform - uid: 334 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,5.5 parent: 410 - type: Transform - uid: 411 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 410 - type: Transform - uid: 412 components: - - pos: -9.5,3.5 + - type: Transform + pos: -9.5,3.5 parent: 410 - type: Transform - uid: 414 components: - - pos: -2.5,3.5 + - type: Transform + pos: -2.5,3.5 parent: 410 - type: Transform - uid: 415 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,5.5 parent: 410 - type: Transform - uid: 416 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,5.5 parent: 410 - type: Transform - uid: 418 components: - - pos: -12.5,3.5 + - type: Transform + pos: -12.5,3.5 parent: 410 - type: Transform - uid: 420 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,5.5 parent: 410 - type: Transform - uid: 422 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,5.5 parent: 410 - type: Transform - uid: 423 components: - - pos: -11.5,3.5 + - type: Transform + pos: -11.5,3.5 parent: 410 - type: Transform - uid: 424 components: - - pos: -10.5,3.5 + - type: Transform + pos: -10.5,3.5 parent: 410 - type: Transform - uid: 426 components: - - pos: -3.5,3.5 + - type: Transform + pos: -3.5,3.5 parent: 410 - type: Transform - uid: 427 components: - - pos: -5.5,3.5 + - type: Transform + pos: -5.5,3.5 parent: 410 - type: Transform - uid: 428 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,5.5 parent: 410 - type: Transform - proto: RandomDrinkBottle entities: - uid: 487 components: - - pos: -11.5,8.5 + - type: Transform + pos: -11.5,8.5 parent: 410 - type: Transform - proto: RandomDrinkGlass entities: - uid: 392 components: - - pos: -10.5,8.5 + - type: Transform + pos: -10.5,8.5 parent: 410 - type: Transform - uid: 393 components: - - pos: -9.5,8.5 + - type: Transform + pos: -9.5,8.5 parent: 410 - type: Transform - proto: RandomFoodBakedSingle entities: - uid: 507 components: - - pos: -3.5,8.5 + - type: Transform + pos: -3.5,8.5 parent: 410 - type: Transform - uid: 513 components: - - pos: -5.5,8.5 + - type: Transform + pos: -5.5,8.5 parent: 410 - type: Transform - proto: RandomFoodMeal entities: - uid: 508 components: - - pos: -4.5,8.5 + - type: Transform + pos: -4.5,8.5 parent: 410 - type: Transform - proto: RandomSpawner entities: - uid: 1138 components: - - pos: -10.5,0.5 + - type: Transform + pos: -10.5,0.5 parent: 410 - type: Transform - uid: 1139 components: - - pos: 0.5,-4.5 + - type: Transform + pos: 0.5,-4.5 parent: 410 - type: Transform - uid: 1140 components: - - pos: 1.5,11.5 + - type: Transform + pos: 1.5,11.5 parent: 410 - type: Transform - uid: 1141 components: - - pos: -14.5,4.5 + - type: Transform + pos: -14.5,4.5 parent: 410 - type: Transform - uid: 1142 components: - - pos: -16.5,-0.5 + - type: Transform + pos: -16.5,-0.5 parent: 410 - type: Transform - uid: 1143 components: - - pos: -12.5,15.5 + - type: Transform + pos: -12.5,15.5 parent: 410 - type: Transform - proto: RandomVending entities: - uid: 474 components: - - pos: -5.5,12.5 + - type: Transform + pos: -5.5,12.5 parent: 410 - type: Transform - proto: RandomVendingDrinks entities: - uid: 1111 components: - - pos: -0.5,5.5 + - type: Transform + pos: -0.5,5.5 parent: 410 - type: Transform - uid: 1114 components: - - pos: -14.5,5.5 + - type: Transform + pos: -14.5,5.5 parent: 410 - type: Transform - proto: RandomVendingSnacks entities: - uid: 66 components: - - pos: -14.5,10.5 + - type: Transform + pos: -14.5,10.5 parent: 410 - type: Transform - uid: 1110 components: - - pos: 1.5,1.5 + - type: Transform + pos: 1.5,1.5 parent: 410 - type: Transform - uid: 1113 components: - - pos: -16.5,1.5 + - type: Transform + pos: -16.5,1.5 parent: 410 - type: Transform - proto: SaxophoneInstrument entities: - uid: 456 components: - - pos: -12.477243,5.507531 + - type: Transform + pos: -12.477243,5.507531 + parent: 410 +- proto: Screen + entities: + - uid: 1276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 410 + - uid: 1277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,6.5 + parent: 410 + - uid: 1278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 410 + - uid: 1279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 410 + - uid: 1280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,11.5 + parent: 410 + - uid: 1281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 410 + - uid: 1282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 410 + - uid: 1283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 parent: 410 - type: Transform - proto: ShuttleWindow entities: - uid: 7 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,-12.5 parent: 410 - type: Transform - uid: 21 components: - - pos: -10.5,16.5 + - type: Transform + pos: -10.5,16.5 parent: 410 - type: Transform - uid: 33 components: - - pos: -17.5,11.5 + - type: Transform + pos: -17.5,11.5 parent: 410 - type: Transform - uid: 35 components: - - pos: -9.5,16.5 + - type: Transform + pos: -9.5,16.5 parent: 410 - type: Transform - uid: 36 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -7.5,-12.5 parent: 410 - type: Transform - uid: 48 components: - - pos: -17.5,1.5 + - type: Transform + pos: -17.5,1.5 parent: 410 - type: Transform - uid: 57 components: - - pos: 2.5,1.5 + - type: Transform + pos: 2.5,1.5 parent: 410 - type: Transform - uid: 68 components: - - pos: -2.5,16.5 + - type: Transform + pos: -2.5,16.5 parent: 410 - type: Transform - uid: 69 components: - - pos: -8.5,17.5 + - type: Transform + pos: -8.5,17.5 parent: 410 - type: Transform - uid: 77 components: - - pos: -7.5,17.5 + - type: Transform + pos: -7.5,17.5 parent: 410 - type: Transform - uid: 79 components: - - pos: -17.5,3.5 + - type: Transform + pos: -17.5,3.5 parent: 410 - type: Transform - uid: 89 components: - - pos: -5.5,17.5 + - type: Transform + pos: -5.5,17.5 parent: 410 - type: Transform - uid: 94 components: - - pos: -5.5,16.5 + - type: Transform + pos: -5.5,16.5 parent: 410 - type: Transform - uid: 96 components: - - pos: -11.5,16.5 + - type: Transform + pos: -11.5,16.5 parent: 410 - type: Transform - uid: 101 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,-12.5 parent: 410 - type: Transform - uid: 105 components: - - pos: 2.5,11.5 + - type: Transform + pos: 2.5,11.5 parent: 410 - type: Transform - uid: 110 components: - - pos: -6.5,17.5 + - type: Transform + pos: -6.5,17.5 parent: 410 - type: Transform - uid: 121 components: - - pos: -3.5,16.5 + - type: Transform + pos: -3.5,16.5 parent: 410 - type: Transform - uid: 126 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-12.5 parent: 410 - type: Transform - uid: 128 components: - - pos: 2.5,12.5 + - type: Transform + pos: 2.5,12.5 parent: 410 - type: Transform - uid: 131 components: - - pos: -17.5,2.5 + - type: Transform + pos: -17.5,2.5 parent: 410 - type: Transform - uid: 178 components: - - pos: 2.5,2.5 + - type: Transform + pos: 2.5,2.5 parent: 410 - type: Transform - uid: 218 components: - - pos: -1.5,16.5 + - type: Transform + pos: -1.5,16.5 parent: 410 - type: Transform - uid: 231 components: - - pos: -4.5,16.5 + - type: Transform + pos: -4.5,16.5 parent: 410 - type: Transform - uid: 257 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,-12.5 parent: 410 - type: Transform - uid: 268 components: - - pos: -13.5,16.5 + - type: Transform + pos: -13.5,16.5 parent: 410 - type: Transform - uid: 283 components: - - pos: 2.5,3.5 + - type: Transform + pos: 2.5,3.5 parent: 410 - type: Transform - uid: 287 components: - - pos: -12.5,16.5 + - type: Transform + pos: -12.5,16.5 parent: 410 - type: Transform - uid: 319 components: - - pos: -9.5,17.5 + - type: Transform + pos: -9.5,17.5 parent: 410 - type: Transform - uid: 321 components: - - pos: -17.5,12.5 + - type: Transform + pos: -17.5,12.5 parent: 410 - type: Transform - proto: SignalButtonExt3 entities: - uid: 1153 components: - - pos: -5.5,15.5 + - type: Transform + pos: -5.5,15.5 parent: 410 - type: Transform - proto: SignDirectionalMed entities: - uid: 1215 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.474474,-0.46047974 parent: 410 - type: Transform - proto: SignDirectionalSci entities: - uid: 1214 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.4405086,-0.1906414 parent: 410 - type: Transform - proto: SignDirectionalSec entities: - uid: 1192 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.4632642,-0.44221187 parent: 410 - type: Transform - proto: SignDirectionalSupply entities: - uid: 1228 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.483132,-0.19608068 parent: 410 - type: Transform - proto: SinkWide entities: - uid: 523 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 410 - type: Transform - proto: SMESBasic entities: - uid: 720 components: - - pos: -9.5,-7.5 + - type: Transform + pos: -9.5,-7.5 parent: 410 - type: Transform -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 324 components: - - pos: -9.5,10.5 + - type: Transform + pos: -9.5,10.5 parent: 410 - type: Transform - proto: Stairs entities: - uid: 135 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,3.5 parent: 410 - type: Transform - uid: 254 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,3.5 parent: 410 - type: Transform - uid: 291 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,4.5 parent: 410 - type: Transform - uid: 419 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -9.5,5.5 parent: 410 - type: Transform - uid: 421 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 410 - type: Transform - uid: 425 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -5.5,4.5 parent: 410 - type: Transform - proto: StasisBed entities: - uid: 516 components: - - pos: -14.5,-10.5 + - type: Transform + pos: -14.5,-10.5 parent: 410 - type: Transform - proto: SteelBench entities: - uid: 1266 components: - - pos: -2.5,6.5 + - type: Transform + pos: -2.5,6.5 parent: 410 - type: Transform - uid: 1267 components: - - pos: -3.5,6.5 + - type: Transform + pos: -3.5,6.5 parent: 410 - type: Transform - uid: 1268 components: - - pos: -4.5,6.5 + - type: Transform + pos: -4.5,6.5 parent: 410 - type: Transform - uid: 1269 components: - - pos: -5.5,6.5 + - type: Transform + pos: -5.5,6.5 parent: 410 - type: Transform - uid: 1270 components: - - pos: -9.5,6.5 + - type: Transform + pos: -9.5,6.5 parent: 410 - type: Transform - uid: 1271 components: - - pos: -10.5,6.5 + - type: Transform + pos: -10.5,6.5 parent: 410 - type: Transform - uid: 1272 components: - - pos: -11.5,6.5 + - type: Transform + pos: -11.5,6.5 parent: 410 - type: Transform - uid: 1273 components: - - pos: -12.5,6.5 + - type: Transform + pos: -12.5,6.5 parent: 410 - type: Transform - proto: StoolBar entities: - uid: 260 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -3.5,7.5 parent: 410 - type: Transform - uid: 271 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 410 - type: Transform - uid: 306 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -4.5,7.5 parent: 410 - type: Transform - uid: 307 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -10.5,7.5 parent: 410 - type: Transform - uid: 318 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -5.5,7.5 parent: 410 - type: Transform - uid: 356 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -11.5,7.5 parent: 410 - type: Transform - proto: SubstationBasic entities: - uid: 718 components: - - pos: -10.5,-7.5 + - type: Transform + pos: -10.5,-7.5 parent: 410 - type: Transform - proto: Table entities: - uid: 238 components: - - pos: -5.5,10.5 + - type: Transform + pos: -5.5,10.5 parent: 410 - type: Transform - uid: 239 components: - - pos: -16.5,-10.5 + - type: Transform + pos: -16.5,-10.5 parent: 410 - type: Transform - uid: 294 components: - - pos: -5.5,8.5 + - type: Transform + pos: -5.5,8.5 parent: 410 - type: Transform - uid: 355 components: - - pos: -3.5,10.5 + - type: Transform + pos: -3.5,10.5 parent: 410 - type: Transform - uid: 357 components: - - pos: -4.5,8.5 + - type: Transform + pos: -4.5,8.5 parent: 410 - type: Transform - uid: 364 components: - - pos: -4.5,10.5 + - type: Transform + pos: -4.5,10.5 parent: 410 - type: Transform - uid: 366 components: - - pos: -3.5,8.5 + - type: Transform + pos: -3.5,8.5 parent: 410 - type: Transform - uid: 510 components: - - pos: -13.5,-10.5 + - type: Transform + pos: -13.5,-10.5 parent: 410 - type: Transform - uid: 1117 components: - - pos: -16.5,-9.5 + - type: Transform + pos: -16.5,-9.5 parent: 410 - type: Transform - uid: 1130 components: - - pos: -6.5,-11.5 + - type: Transform + pos: -6.5,-11.5 parent: 410 - type: Transform - proto: TableReinforced entities: - uid: 151 components: - - pos: -9.5,15.5 + - type: Transform + pos: -9.5,15.5 parent: 410 - type: Transform - uid: 447 components: - - pos: -5.5,15.5 + - type: Transform + pos: -5.5,15.5 parent: 410 - type: Transform - uid: 464 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -11.5,12.5 parent: 410 - type: Transform - uid: 475 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -4.5,12.5 parent: 410 - type: Transform - uid: 476 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 410 - type: Transform - uid: 483 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,12.5 parent: 410 - type: Transform - uid: 525 components: - - pos: -12.5,15.5 + - type: Transform + pos: -12.5,15.5 parent: 410 - type: Transform - uid: 529 components: - - pos: -2.5,15.5 + - type: Transform + pos: -2.5,15.5 parent: 410 - type: Transform - proto: TableReinforcedGlass entities: - uid: 441 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-4.5 parent: 410 - type: Transform - proto: TableWood entities: - uid: 244 components: - - pos: -10.5,8.5 + - type: Transform + pos: -10.5,8.5 parent: 410 - type: Transform - uid: 251 components: - - pos: -10.5,10.5 + - type: Transform + pos: -10.5,10.5 parent: 410 - type: Transform - uid: 298 components: - - pos: -11.5,8.5 + - type: Transform + pos: -11.5,8.5 parent: 410 - type: Transform - uid: 299 components: - - pos: -9.5,10.5 + - type: Transform + pos: -9.5,10.5 parent: 410 - type: Transform - uid: 301 components: - - pos: -11.5,10.5 + - type: Transform + pos: -11.5,10.5 parent: 410 - type: Transform - uid: 323 components: - - pos: -9.5,8.5 + - type: Transform + pos: -9.5,8.5 parent: 410 - type: Transform - uid: 362 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -15.5,13.5 parent: 410 - type: Transform - uid: 457 components: - - pos: -12.5,5.5 + - type: Transform + pos: -12.5,5.5 parent: 410 - type: Transform - proto: Thruster entities: - uid: 18 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -2.5,-12.5 parent: 410 - type: Transform - uid: 49 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 0.5,-12.5 parent: 410 - type: Transform - uid: 84 components: - - pos: -15.5,15.5 + - type: Transform + pos: -15.5,15.5 parent: 410 - type: Transform - uid: 191 components: - - pos: -16.5,15.5 + - type: Transform + pos: -16.5,15.5 parent: 410 - type: Transform - uid: 194 components: - - pos: 1.5,15.5 + - type: Transform + pos: 1.5,15.5 parent: 410 - type: Transform - uid: 223 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -1.5,-12.5 parent: 410 - type: Transform - uid: 236 components: - - pos: 0.5,15.5 + - type: Transform + pos: 0.5,15.5 parent: 410 - type: Transform - uid: 329 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 1.5,-12.5 parent: 410 - type: Transform - uid: 341 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -12.5,-12.5 parent: 410 - type: Transform - uid: 343 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -0.5,-12.5 parent: 410 - type: Transform - uid: 347 components: - - pos: -0.5,15.5 + - type: Transform + pos: -0.5,15.5 parent: 410 - type: Transform - uid: 359 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -13.5,-12.5 parent: 410 - type: Transform - uid: 382 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -15.5,-12.5 parent: 410 - type: Transform - uid: 384 components: - - pos: -14.5,15.5 + - type: Transform + pos: -14.5,15.5 parent: 410 - type: Transform - uid: 388 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -14.5,-12.5 parent: 410 - type: Transform - uid: 395 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: -16.5,-12.5 parent: 410 - type: Transform - proto: ToolboxElectricalFilled entities: - uid: 479 components: - - pos: -4.48464,12.529802 + - type: Transform + pos: -4.48464,12.529802 parent: 410 - type: Transform - uid: 1239 components: - - flags: InContainer - type: MetaData - - parent: 1233 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1233 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: ToolboxEmergencyFilled entities: - uid: 478 components: - - pos: -3.5940151,12.576677 + - type: Transform + pos: -3.5940151,12.576677 parent: 410 - type: Transform - proto: ToolboxMechanicalFilled entities: - uid: 480 components: - - pos: -4.0496745,12.722507 + - type: Transform + pos: -4.0496745,12.722507 parent: 410 - type: Transform - proto: TrashBananaPeel entities: - uid: 1047 components: - - pos: -3.9120097,4.903885 + - type: Transform + pos: -3.9120097,4.903885 parent: 410 - type: Transform - proto: VendingMachineBooze entities: - uid: 247 components: - - pos: -12.5,10.5 + - type: Transform + pos: -12.5,10.5 parent: 410 - type: Transform - proto: VendingMachineChefvend entities: - uid: 385 components: - - pos: -2.5,10.5 + - type: Transform + pos: -2.5,10.5 parent: 410 - type: Transform - proto: VendingMachineCigs entities: - uid: 488 components: - - pos: -9.5,12.5 + - type: Transform + pos: -9.5,12.5 parent: 410 - type: Transform - proto: VendingMachineDonut entities: - uid: 445 components: - - pos: 1.5,-3.5 + - type: Transform + pos: 1.5,-3.5 parent: 410 - type: Transform - proto: VendingMachineMedical entities: - uid: 506 components: - - pos: -16.5,-5.5 + - type: Transform + pos: -16.5,-5.5 parent: 410 - type: Transform - proto: VendingMachineTankDispenserEVA entities: - uid: 1129 components: - - pos: -6.5,-9.5 + - type: Transform + pos: -6.5,-9.5 parent: 410 - type: Transform - proto: VendingMachineTheater entities: - uid: 519 components: - - pos: -2.5,5.5 + - type: Transform + pos: -2.5,5.5 parent: 410 - type: Transform - proto: WallShuttle entities: - uid: 4 components: - - pos: -0.5,9.5 + - type: Transform + pos: -0.5,9.5 parent: 410 - type: Transform - uid: 5 components: - - pos: -8.5,-4.5 + - type: Transform + pos: -8.5,-4.5 parent: 410 - type: Transform - uid: 6 components: - - pos: -15.5,14.5 + - type: Transform + pos: -15.5,14.5 parent: 410 - type: Transform - uid: 9 components: - - pos: -17.5,13.5 + - type: Transform + pos: -17.5,13.5 parent: 410 - type: Transform - uid: 15 components: - - pos: -13.5,6.5 + - type: Transform + pos: -13.5,6.5 parent: 410 - type: Transform - uid: 17 components: - - pos: 2.5,13.5 + - type: Transform + pos: 2.5,13.5 parent: 410 - type: Transform - uid: 23 components: - - pos: -0.5,14.5 + - type: Transform + pos: -0.5,14.5 parent: 410 - type: Transform - uid: 24 components: - - pos: -12.5,-8.5 + - type: Transform + pos: -12.5,-8.5 parent: 410 - type: Transform - uid: 27 components: - - pos: -10.5,-4.5 + - type: Transform + pos: -10.5,-4.5 parent: 410 - type: Transform - uid: 28 components: - - pos: -1.5,4.5 + - type: Transform + pos: -1.5,4.5 parent: 410 - type: Transform - uid: 29 components: - - pos: -5.5,-4.5 + - type: Transform + pos: -5.5,-4.5 parent: 410 - type: Transform - uid: 30 components: - - pos: -17.5,14.5 + - type: Transform + pos: -17.5,14.5 parent: 410 - type: Transform - uid: 31 components: - - pos: -11.5,-11.5 + - type: Transform + pos: -11.5,-11.5 parent: 410 - type: Transform - uid: 32 components: - - pos: -13.5,-4.5 + - type: Transform + pos: -13.5,-4.5 parent: 410 - type: Transform - uid: 34 components: - - pos: -3.5,-10.5 + - type: Transform + pos: -3.5,-10.5 parent: 410 - type: Transform - uid: 37 components: - - pos: -1.5,12.5 + - type: Transform + pos: -1.5,12.5 parent: 410 - type: Transform - uid: 38 components: - - pos: -16.5,-11.5 + - type: Transform + pos: -16.5,-11.5 parent: 410 - type: Transform - uid: 39 components: - - pos: -13.5,7.5 + - type: Transform + pos: -13.5,7.5 parent: 410 - type: Transform - uid: 40 components: - - pos: -17.5,-11.5 + - type: Transform + pos: -17.5,-11.5 parent: 410 - type: Transform - uid: 41 components: - - pos: 2.5,-8.5 + - type: Transform + pos: 2.5,-8.5 parent: 410 - type: Transform - uid: 42 components: - - pos: -3.5,-5.5 + - type: Transform + pos: -3.5,-5.5 parent: 410 - type: Transform - uid: 43 components: - - pos: -13.5,8.5 + - type: Transform + pos: -13.5,8.5 parent: 410 - type: Transform - uid: 44 components: - - pos: -3.5,-8.5 + - type: Transform + pos: -3.5,-8.5 parent: 410 - type: Transform - uid: 45 components: - - pos: -13.5,-11.5 + - type: Transform + pos: -13.5,-11.5 parent: 410 - type: Transform - uid: 46 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -17.5,-7.5 parent: 410 - type: Transform - uid: 47 components: - - pos: 0.5,-11.5 + - type: Transform + pos: 0.5,-11.5 parent: 410 - type: Transform - uid: 50 components: - - pos: -17.5,9.5 + - type: Transform + pos: -17.5,9.5 parent: 410 - type: Transform - uid: 51 components: - - pos: -8.5,11.5 + - type: Transform + pos: -8.5,11.5 parent: 410 - type: Transform - uid: 52 components: - - pos: -17.5,-9.5 + - type: Transform + pos: -17.5,-9.5 parent: 410 - type: Transform - uid: 53 components: - - pos: 2.5,-7.5 + - type: Transform + pos: 2.5,-7.5 parent: 410 - type: Transform - uid: 54 components: - - pos: -17.5,10.5 + - type: Transform + pos: -17.5,10.5 parent: 410 - type: Transform - uid: 55 components: - - pos: -1.5,-8.5 + - type: Transform + pos: -1.5,-8.5 parent: 410 - type: Transform - uid: 56 components: - - pos: -3.5,-4.5 + - type: Transform + pos: -3.5,-4.5 parent: 410 - type: Transform - uid: 58 components: - - pos: -13.5,10.5 + - type: Transform + pos: -13.5,10.5 parent: 410 - type: Transform - uid: 59 components: - - pos: -11.5,-8.5 + - type: Transform + pos: -11.5,-8.5 parent: 410 - type: Transform - uid: 61 components: - - pos: -6.5,-8.5 + - type: Transform + pos: -6.5,-8.5 parent: 410 - type: Transform - uid: 62 components: - - pos: 0.5,14.5 + - type: Transform + pos: 0.5,14.5 parent: 410 - type: Transform - uid: 64 components: - - pos: -1.5,15.5 + - type: Transform + pos: -1.5,15.5 parent: 410 - type: Transform - uid: 65 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,9.5 parent: 410 - type: Transform - uid: 67 components: - - pos: -13.5,13.5 + - type: Transform + pos: -13.5,13.5 parent: 410 - type: Transform - uid: 70 components: - - pos: -6.5,-4.5 + - type: Transform + pos: -6.5,-4.5 parent: 410 - type: Transform - uid: 73 components: - - pos: -9.5,-8.5 + - type: Transform + pos: -9.5,-8.5 parent: 410 - type: Transform - uid: 74 components: - - pos: -17.5,6.5 + - type: Transform + pos: -17.5,6.5 parent: 410 - type: Transform - uid: 75 components: - - pos: -1.5,-1.5 + - type: Transform + pos: -1.5,-1.5 parent: 410 - type: Transform - uid: 80 components: - - pos: -17.5,-1.5 + - type: Transform + pos: -17.5,-1.5 parent: 410 - type: Transform - uid: 82 components: - - pos: -17.5,-4.5 + - type: Transform + pos: -17.5,-4.5 parent: 410 - type: Transform - uid: 83 components: - - pos: -17.5,-5.5 + - type: Transform + pos: -17.5,-5.5 parent: 410 - type: Transform - uid: 87 components: - - pos: -10.5,-12.5 + - type: Transform + pos: -10.5,-12.5 parent: 410 - type: Transform - uid: 88 components: - - pos: -13.5,-8.5 + - type: Transform + pos: -13.5,-8.5 parent: 410 - type: Transform - uid: 91 components: - - pos: -2.5,-4.5 + - type: Transform + pos: -2.5,-4.5 parent: 410 - type: Transform - uid: 92 components: - - pos: -11.5,-10.5 + - type: Transform + pos: -11.5,-10.5 parent: 410 - type: Transform - uid: 95 components: - - pos: -4.5,-4.5 + - type: Transform + pos: -4.5,-4.5 parent: 410 - type: Transform - uid: 97 components: - - pos: -14.5,-1.5 + - type: Transform + pos: -14.5,-1.5 parent: 410 - type: Transform - uid: 98 components: - - pos: -17.5,-8.5 + - type: Transform + pos: -17.5,-8.5 parent: 410 - type: Transform - uid: 100 components: - - pos: -8.5,-8.5 + - type: Transform + pos: -8.5,-8.5 parent: 410 - type: Transform - uid: 102 components: - - pos: -5.5,-8.5 + - type: Transform + pos: -5.5,-8.5 parent: 410 - type: Transform - uid: 103 components: - - pos: -13.5,15.5 + - type: Transform + pos: -13.5,15.5 parent: 410 - type: Transform - uid: 104 components: - - pos: -1.5,-3.5 + - type: Transform + pos: -1.5,-3.5 parent: 410 - type: Transform - uid: 106 components: - - pos: -10.5,-8.5 + - type: Transform + pos: -10.5,-8.5 parent: 410 - type: Transform - uid: 107 components: - - pos: -11.5,-6.5 + - type: Transform + pos: -11.5,-6.5 parent: 410 - type: Transform - uid: 108 components: - - pos: -13.5,9.5 + - type: Transform + pos: -13.5,9.5 parent: 410 - type: Transform - uid: 109 components: - - pos: 1.5,14.5 + - type: Transform + pos: 1.5,14.5 parent: 410 - type: Transform - uid: 111 components: - - pos: 2.5,14.5 + - type: Transform + pos: 2.5,14.5 parent: 410 - type: Transform - uid: 112 components: - - pos: -3.5,-11.5 + - type: Transform + pos: -3.5,-11.5 parent: 410 - type: Transform - uid: 113 components: - - pos: -1.5,-2.5 + - type: Transform + pos: -1.5,-2.5 parent: 410 - type: Transform - uid: 114 components: - - pos: -1.5,10.5 + - type: Transform + pos: -1.5,10.5 parent: 410 - type: Transform - uid: 116 components: - - pos: 2.5,-10.5 + - type: Transform + pos: 2.5,-10.5 parent: 410 - type: Transform - uid: 117 components: - - pos: -17.5,8.5 + - type: Transform + pos: -17.5,8.5 parent: 410 - type: Transform - uid: 118 components: - - pos: -3.5,-7.5 + - type: Transform + pos: -3.5,-7.5 parent: 410 - type: Transform - uid: 120 components: - - pos: -11.5,-4.5 + - type: Transform + pos: -11.5,-4.5 parent: 410 - type: Transform - uid: 122 components: - - pos: -8.5,12.5 + - type: Transform + pos: -8.5,12.5 parent: 410 - type: Transform - uid: 123 components: - - pos: -2.5,-8.5 + - type: Transform + pos: -2.5,-8.5 parent: 410 - type: Transform - uid: 124 components: - - pos: -1.5,8.5 + - type: Transform + pos: -1.5,8.5 parent: 410 - type: Transform - uid: 125 components: - - pos: -1.5,-0.5 + - type: Transform + pos: -1.5,-0.5 parent: 410 - type: Transform - uid: 127 components: - - pos: 2.5,-9.5 + - type: Transform + pos: 2.5,-9.5 parent: 410 - type: Transform - uid: 129 components: - - pos: -1.5,6.5 + - type: Transform + pos: -1.5,6.5 parent: 410 - type: Transform - uid: 132 components: - - pos: 2.5,-1.5 + - type: Transform + pos: 2.5,-1.5 parent: 410 - type: Transform - uid: 133 components: - - pos: 1.5,-1.5 + - type: Transform + pos: 1.5,-1.5 parent: 410 - type: Transform - uid: 134 components: - - pos: -1.5,2.5 + - type: Transform + pos: -1.5,2.5 parent: 410 - type: Transform - uid: 140 components: - - pos: -5.5,11.5 + - type: Transform + pos: -5.5,11.5 parent: 410 - type: Transform - uid: 141 components: - - pos: -4.5,11.5 + - type: Transform + pos: -4.5,11.5 parent: 410 - type: Transform - uid: 143 components: - - pos: 1.5,9.5 + - type: Transform + pos: 1.5,9.5 parent: 410 - type: Transform - uid: 150 components: - - pos: -16.5,9.5 + - type: Transform + pos: -16.5,9.5 parent: 410 - type: Transform - uid: 152 components: - - pos: -8.5,10.5 + - type: Transform + pos: -8.5,10.5 parent: 410 - type: Transform - uid: 153 components: - - pos: -6.5,10.5 + - type: Transform + pos: -6.5,10.5 parent: 410 - type: Transform - uid: 170 components: - - pos: -13.5,3.5 + - type: Transform + pos: -13.5,3.5 parent: 410 - type: Transform - uid: 171 components: - - pos: -1.5,7.5 + - type: Transform + pos: -1.5,7.5 parent: 410 - type: Transform - uid: 172 components: - - pos: 2.5,0.5 + - type: Transform + pos: 2.5,0.5 parent: 410 - type: Transform - uid: 181 components: - - pos: -1.5,14.5 + - type: Transform + pos: -1.5,14.5 parent: 410 - type: Transform - uid: 183 components: - - pos: -4.5,-8.5 + - type: Transform + pos: -4.5,-8.5 parent: 410 - type: Transform - uid: 184 components: - - pos: 2.5,-3.5 + - type: Transform + pos: 2.5,-3.5 parent: 410 - type: Transform - uid: 185 components: - - pos: 2.5,-6.5 + - type: Transform + pos: 2.5,-6.5 parent: 410 - type: Transform - uid: 186 components: - - pos: -1.5,5.5 + - type: Transform + pos: -1.5,5.5 parent: 410 - type: Transform - uid: 187 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,10.5 parent: 410 - type: Transform - uid: 189 components: - - pos: -14.5,14.5 + - type: Transform + pos: -14.5,14.5 parent: 410 - type: Transform - uid: 190 components: - - pos: -17.5,-3.5 + - type: Transform + pos: -17.5,-3.5 parent: 410 - type: Transform - uid: 192 components: - - pos: -13.5,-3.5 + - type: Transform + pos: -13.5,-3.5 parent: 410 - type: Transform - uid: 193 components: - - pos: 2.5,-5.5 + - type: Transform + pos: 2.5,-5.5 parent: 410 - type: Transform - uid: 195 components: - - pos: 2.5,-4.5 + - type: Transform + pos: 2.5,-4.5 parent: 410 - type: Transform - uid: 196 components: - - pos: -3.5,-9.5 + - type: Transform + pos: -3.5,-9.5 parent: 410 - type: Transform - uid: 197 components: - - pos: -1.5,9.5 + - type: Transform + pos: -1.5,9.5 parent: 410 - type: Transform - uid: 200 components: - - pos: -13.5,-2.5 + - type: Transform + pos: -13.5,-2.5 parent: 410 - type: Transform - uid: 201 components: - - pos: -1.5,11.5 + - type: Transform + pos: -1.5,11.5 parent: 410 - type: Transform - uid: 202 components: - - pos: 1.5,-11.5 + - type: Transform + pos: 1.5,-11.5 parent: 410 - type: Transform - uid: 203 components: - - pos: -12.5,-11.5 + - type: Transform + pos: -12.5,-11.5 parent: 410 - type: Transform - uid: 204 components: - - pos: -11.5,-9.5 + - type: Transform + pos: -11.5,-9.5 parent: 410 - type: Transform - uid: 205 components: - - pos: -13.5,14.5 + - type: Transform + pos: -13.5,14.5 parent: 410 - type: Transform - uid: 206 components: - - pos: -13.5,5.5 + - type: Transform + pos: -13.5,5.5 parent: 410 - type: Transform - uid: 207 components: - - pos: -11.5,-7.5 + - type: Transform + pos: -11.5,-7.5 parent: 410 - type: Transform - uid: 208 components: - - pos: -17.5,4.5 + - type: Transform + pos: -17.5,4.5 parent: 410 - type: Transform - uid: 209 components: - - pos: -11.5,-5.5 + - type: Transform + pos: -11.5,-5.5 parent: 410 - type: Transform - uid: 210 components: - - pos: -17.5,-10.5 + - type: Transform + pos: -17.5,-10.5 parent: 410 - type: Transform - uid: 211 components: - - pos: -16.5,-1.5 + - type: Transform + pos: -16.5,-1.5 parent: 410 - type: Transform - uid: 212 components: - - pos: -3.5,-6.5 + - type: Transform + pos: -3.5,-6.5 parent: 410 - type: Transform - uid: 213 components: - - pos: -0.5,-1.5 + - type: Transform + pos: -0.5,-1.5 parent: 410 - type: Transform - uid: 214 components: - - pos: -14.5,-11.5 + - type: Transform + pos: -14.5,-11.5 parent: 410 - type: Transform - uid: 215 components: - - pos: -3.5,-12.5 + - type: Transform + pos: -3.5,-12.5 parent: 410 - type: Transform - uid: 216 components: - - pos: -1.5,-11.5 + - type: Transform + pos: -1.5,-11.5 parent: 410 - type: Transform - uid: 217 components: - - pos: 2.5,-11.5 + - type: Transform + pos: 2.5,-11.5 parent: 410 - type: Transform - uid: 220 components: - - pos: -17.5,0.5 + - type: Transform + pos: -17.5,0.5 parent: 410 - type: Transform - uid: 221 components: - - pos: -12.5,-4.5 + - type: Transform + pos: -12.5,-4.5 parent: 410 - type: Transform - uid: 222 components: - - pos: -1.5,13.5 + - type: Transform + pos: -1.5,13.5 parent: 410 - type: Transform - uid: 224 components: - - pos: -13.5,11.5 + - type: Transform + pos: -13.5,11.5 parent: 410 - type: Transform - uid: 225 components: - - pos: -13.5,-0.5 + - type: Transform + pos: -13.5,-0.5 parent: 410 - type: Transform - uid: 226 components: - - pos: -2.5,-11.5 + - type: Transform + pos: -2.5,-11.5 parent: 410 - type: Transform - uid: 227 components: - - pos: -1.5,3.5 + - type: Transform + pos: -1.5,3.5 parent: 410 - type: Transform - uid: 228 components: - - pos: -13.5,12.5 + - type: Transform + pos: -13.5,12.5 parent: 410 - type: Transform - uid: 229 components: - - pos: -0.5,-11.5 + - type: Transform + pos: -0.5,-11.5 parent: 410 - type: Transform - uid: 230 components: - - pos: -15.5,-11.5 + - type: Transform + pos: -15.5,-11.5 parent: 410 - type: Transform - uid: 232 components: - - pos: -13.5,-1.5 + - type: Transform + pos: -13.5,-1.5 parent: 410 - type: Transform - uid: 233 components: - - pos: -16.5,14.5 + - type: Transform + pos: -16.5,14.5 parent: 410 - type: Transform - uid: 235 components: - - pos: -6.5,12.5 + - type: Transform + pos: -6.5,12.5 parent: 410 - type: Transform - uid: 258 components: - - pos: -11.5,-12.5 + - type: Transform + pos: -11.5,-12.5 parent: 410 - type: Transform - uid: 275 components: - - pos: -2.5,11.5 + - type: Transform + pos: -2.5,11.5 parent: 410 - type: Transform - uid: 279 components: - - pos: -17.5,-6.5 + - type: Transform + pos: -17.5,-6.5 parent: 410 - type: Transform - uid: 282 components: - - pos: 2.5,4.5 + - type: Transform + pos: 2.5,4.5 parent: 410 - type: Transform - uid: 285 components: - - pos: -1.5,-4.5 + - type: Transform + pos: -1.5,-4.5 parent: 410 - type: Transform - uid: 286 components: - - pos: -13.5,4.5 + - type: Transform + pos: -13.5,4.5 parent: 410 - type: Transform - uid: 289 components: - - pos: -6.5,11.5 + - type: Transform + pos: -6.5,11.5 parent: 410 - type: Transform - uid: 320 components: - - pos: -6.5,9.5 + - type: Transform + pos: -6.5,9.5 parent: 410 - type: Transform - uid: 337 components: - - pos: 2.5,6.5 + - type: Transform + pos: 2.5,6.5 parent: 410 - type: Transform - uid: 338 components: - - pos: -13.5,2.5 + - type: Transform + pos: -13.5,2.5 parent: 410 - type: Transform - uid: 348 components: - - pos: -9.5,-4.5 + - type: Transform + pos: -9.5,-4.5 parent: 410 - type: Transform - uid: 365 components: - - pos: -14.5,9.5 + - type: Transform + pos: -14.5,9.5 parent: 410 - type: Transform - uid: 374 components: - - pos: -11.5,11.5 + - type: Transform + pos: -11.5,11.5 parent: 410 - type: Transform - uid: 376 components: - - pos: -9.5,11.5 + - type: Transform + pos: -9.5,11.5 parent: 410 - type: Transform - uid: 383 components: - - pos: -3.5,11.5 + - type: Transform + pos: -3.5,11.5 parent: 410 - type: Transform - uid: 390 components: - - pos: -8.5,9.5 + - type: Transform + pos: -8.5,9.5 parent: 410 - type: Transform - uid: 399 components: - - pos: 2.5,8.5 + - type: Transform + pos: 2.5,8.5 parent: 410 - type: Transform - uid: 406 components: - - pos: -10.5,11.5 + - type: Transform + pos: -10.5,11.5 parent: 410 - type: Transform - uid: 407 components: - - pos: -12.5,11.5 + - type: Transform + pos: -12.5,11.5 parent: 410 - type: Transform - uid: 454 components: - - pos: -4.5,-12.5 + - type: Transform + pos: -4.5,-12.5 parent: 410 - type: Transform - proto: WallShuttleDiagonal entities: - uid: 76 components: - - pos: -17.5,15.5 + - type: Transform + pos: -17.5,15.5 parent: 410 - type: Transform - uid: 199 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,15.5 parent: 410 - type: Transform - uid: 264 components: - - rot: 3.141592653589793 rad + - type: Transform + rot: 3.141592653589793 rad pos: 2.5,-12.5 parent: 410 - type: Transform - uid: 404 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -17.5,-12.5 parent: 410 - type: Transform - proto: WeaponDisabler entities: - uid: 438 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.2687995,-4.4488397 parent: 410 - type: Transform - proto: WelderIndustrial entities: - uid: 1237 components: - - flags: InContainer - type: MetaData - - parent: 1233 - type: Transform - - canCollide: False - type: Physics + - type: Transform + parent: 1233 + - type: Physics + canCollide: False - type: InsideEntityStorage - proto: WindoorBarLocked entities: - uid: 295 components: - - pos: -12.5,8.5 + - type: Transform + pos: -12.5,8.5 parent: 410 - type: Transform - proto: WindoorKitchenLocked entities: - uid: 394 components: - - pos: -2.5,8.5 + - type: Transform + pos: -2.5,8.5 parent: 410 - type: Transform - proto: WindoorSecureAtmosphericsLocked entities: - uid: 549 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,-10.5 parent: 410 - type: Transform - proto: WindoorSecureEngineeringLocked entities: - uid: 728 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,-6.5 parent: 410 - type: Transform - proto: WindoorSecureMedicalLocked entities: - uid: 234 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-9.5 parent: 410 - type: Transform - uid: 277 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-6.5 parent: 410 - type: Transform - uid: 363 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,-2.5 parent: 410 - type: Transform - proto: WindoorSecureSecurityLocked entities: - uid: 198 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: 1.5,-2.5 parent: 410 - type: Transform - uid: 262 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-6.5 parent: 410 - type: Transform - uid: 409 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-9.5 parent: 410 - type: Transform - proto: WindowDirectional entities: - uid: 248 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -6.5,8.5 parent: 410 - type: Transform - uid: 250 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -8.5,8.5 parent: 410 - type: Transform - proto: WindowReinforcedDirectional entities: - uid: 266 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-7.5 parent: 410 - type: Transform - uid: 316 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-10.5 parent: 410 - type: Transform - uid: 336 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-10.5 parent: 410 - type: Transform - uid: 367 components: - - rot: -1.5707963267948966 rad + - type: Transform + rot: -1.5707963267948966 rad pos: -13.5,-5.5 parent: 410 - type: Transform - uid: 397 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-7.5 parent: 410 - type: Transform - uid: 408 components: - - rot: 1.5707963267948966 rad + - type: Transform + rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 410 - type: Transform - proto: Wrench entities: - uid: 1183 components: - - pos: -10.37314,-10.625336 + - type: Transform + pos: -10.37314,-10.625336 parent: 410 - type: Transform - proto: Zipties entities: - uid: 511 components: - - pos: -13.416461,-10.371719 + - type: Transform + pos: -13.416461,-10.371719 parent: 410 - type: Transform ... diff --git a/Resources/Maps/Shuttles/emergency_corvaxpaper.yml b/Resources/Maps/Shuttles/emergency_corvaxpaper.yml index 7c2fb9468e3..fba36dfdcba 100644 --- a/Resources/Maps/Shuttles/emergency_corvaxpaper.yml +++ b/Resources/Maps/Shuttles/emergency_corvaxpaper.yml @@ -24,6 +24,7 @@ entities: ind: 0,0 tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + - type: Broadphase - type: Physics bodyStatus: InAir angularDamping: 0.05 @@ -32,7 +33,6 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} - - type: Broadphase - type: OccluderTree - type: SpreaderGrid - type: Shuttle @@ -144,8 +144,6 @@ entities: entities: - uid: 60 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,11.5 parent: 1 @@ -153,8 +151,6 @@ entities: entities: - uid: 120 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 4.5,2.5 @@ -177,8 +173,6 @@ entities: entities: - uid: 58 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 2.5,11.5 parent: 1 @@ -1116,82 +1110,76 @@ entities: entities: - uid: 2 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,10.5 parent: 1 - uid: 174 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,13.5 parent: 1 - uid: 175 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,6.5 parent: 1 - uid: 176 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,2.5 parent: 1 - uid: 177 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,8.5 parent: 1 - uid: 178 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 1 - uid: 179 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 1.5707963267948966 rad pos: 5.5,13.5 parent: 1 - uid: 180 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 1 - uid: 181 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,4.5 parent: 1 - uid: 182 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 1 +- proto: Screen + entities: + - uid: 282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 - proto: ShuttleWindow entities: - uid: 5 @@ -1328,7 +1316,7 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,2.5 parent: 1 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 86 components: @@ -1477,291 +1465,215 @@ entities: entities: - uid: 11 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,6.5 parent: 1 - uid: 12 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,2.5 parent: 1 - uid: 13 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 1 - uid: 14 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,8.5 parent: 1 - uid: 17 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,11.5 parent: 1 - uid: 18 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 1 - uid: 19 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,13.5 parent: 1 - uid: 20 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,14.5 parent: 1 - uid: 21 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 0.5,15.5 parent: 1 - uid: 25 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,15.5 parent: 1 - uid: 30 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,15.5 parent: 1 - uid: 31 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,14.5 parent: 1 - uid: 32 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,13.5 parent: 1 - uid: 33 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,12.5 parent: 1 - uid: 34 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 1 - uid: 35 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,10.5 parent: 1 - uid: 36 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,9.5 parent: 1 - uid: 37 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,8.5 parent: 1 - uid: 38 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,8.5 parent: 1 - uid: 40 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 9.5,5.5 parent: 1 - uid: 43 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 9.5,4.5 parent: 1 - uid: 46 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 8.5,0.5 parent: 1 - uid: 50 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,0.5 parent: 1 - uid: 54 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 5.5,5.5 parent: 1 - uid: 55 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,3.5 parent: 1 - uid: 56 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,1.5 parent: 1 - uid: 57 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,4.5 parent: 1 - uid: 59 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,1.5 parent: 1 - uid: 67 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,3.5 parent: 1 - uid: 69 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,4.5 parent: 1 - uid: 71 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 7.5,5.5 parent: 1 - uid: 72 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 4.5,5.5 parent: 1 - uid: 73 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 6.5,5.5 parent: 1 - uid: 74 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,5.5 parent: 1 - uid: 77 components: - - type: MetaData - flags: PvsPriority - type: Transform pos: 8.5,2.5 parent: 1 - uid: 87 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,7.5 parent: 1 - uid: 88 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 10.5,6.5 parent: 1 - uid: 89 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: 3.141592653589793 rad pos: 9.5,6.5 @@ -1770,56 +1682,42 @@ entities: entities: - uid: 62 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 7.5,11.5 parent: 1 - uid: 63 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 5.5,11.5 parent: 1 - uid: 64 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 6.5,11.5 parent: 1 - uid: 65 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,13.5 parent: 1 - uid: 66 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,11.5 parent: 1 - uid: 68 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 1 - uid: 70 components: - - type: MetaData - flags: PvsPriority - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 diff --git a/Resources/Maps/Shuttles/emergency_corvaxsilly.yml b/Resources/Maps/Shuttles/emergency_corvaxsilly.yml index bc87d0e9bd3..438d82c0311 100644 --- a/Resources/Maps/Shuttles/emergency_corvaxsilly.yml +++ b/Resources/Maps/Shuttles/emergency_corvaxsilly.yml @@ -17,7 +17,7 @@ entities: name: Crappy PR-148 - type: Transform pos: -3.7901773,-19.785557 - parent: 6 + parent: invalid - type: MapGrid chunks: 0,0: @@ -238,18 +238,6 @@ entities: - type: RadiationGridResistance - type: PreventPilot - type: ProtectedGrid - - uid: 6 - components: - - type: MetaData - name: map 100 - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - proto: AirlockBarGlassLocked entities: - uid: 26 @@ -1162,7 +1150,15 @@ entities: - type: Transform pos: -3.5,-2.5 parent: 1 -- proto: soda_dispenser +- proto: Screen + entities: + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 +- proto: SodaDispenser entities: - uid: 155 components: diff --git a/Resources/Maps/Shuttles/emergency_maus.yml b/Resources/Maps/Shuttles/emergency_maus.yml index e95be4c5858..22a2bb6f9c0 100644 --- a/Resources/Maps/Shuttles/emergency_maus.yml +++ b/Resources/Maps/Shuttles/emergency_maus.yml @@ -5921,324 +5921,288 @@ entities: parent: 1 - proto: WindowFrostedDirectional entities: - - uid: 12 + - uid: 336 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,9.5 + pos: 9.5,1.5 parent: 1 - - uid: 122 + - uid: 337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,11.5 + pos: 9.5,2.5 parent: 1 - - uid: 129 + - uid: 338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,10.5 + rot: 3.141592653589793 rad + pos: 9.5,2.5 parent: 1 - - uid: 131 + - uid: 339 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,9.5 + pos: 9.5,2.5 parent: 1 - - uid: 137 + - uid: 340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,17.5 + pos: 9.5,1.5 parent: 1 - - uid: 141 + - uid: 341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 parent: 1 - - uid: 143 + - uid: 342 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,18.5 + pos: 11.5,2.5 parent: 1 - - uid: 144 + - uid: 343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,18.5 + rot: 3.141592653589793 rad + pos: 11.5,2.5 parent: 1 - - uid: 152 + - uid: 344 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,18.5 + pos: 11.5,2.5 parent: 1 - - uid: 160 + - uid: 345 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,10.5 + pos: 11.5,1.5 parent: 1 - - uid: 169 +- proto: WindowReinforcedDirectional + entities: + - uid: 12 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,10.5 + rot: 1.5707963267948966 rad + pos: 9.5,11.5 parent: 1 - - uid: 225 + - uid: 122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,9.5 parent: 1 - - uid: 229 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,18.5 + pos: 1.5,17.5 parent: 1 - - uid: 230 + - uid: 131 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,18.5 + pos: 3.5,18.5 parent: 1 - - uid: 260 + - uid: 137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,11.5 + pos: 1.5,18.5 parent: 1 - - uid: 284 + - uid: 141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 + rot: 1.5707963267948966 rad + pos: 5.5,18.5 parent: 1 - - uid: 286 + - uid: 143 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,9.5 + pos: 9.5,18.5 parent: 1 - - uid: 291 + - uid: 144 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,11.5 + pos: 11.5,10.5 parent: 1 - - uid: 292 + - uid: 152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: 9.5,10.5 parent: 1 - - uid: 312 + - uid: 160 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - - uid: 317 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 + pos: 8.5,18.5 parent: 1 - - uid: 319 + - uid: 169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,11.5 + pos: 8.5,18.5 parent: 1 - - uid: 336 + - uid: 225 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,1.5 + pos: 11.5,11.5 parent: 1 - - uid: 337 + - uid: 229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 + rot: 1.5707963267948966 rad + pos: 4.5,18.5 parent: 1 - - uid: 338 + - uid: 230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,2.5 + rot: -1.5707963267948966 rad + pos: 9.5,10.5 parent: 1 - - uid: 339 + - uid: 244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 + pos: 5.5,29.5 parent: 1 - - uid: 340 + - uid: 260 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,1.5 + pos: 3.5,9.5 parent: 1 - - uid: 341 + - uid: 284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,1.5 + pos: 3.5,11.5 parent: 1 - - uid: 342 + - uid: 286 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,2.5 + pos: 3.5,10.5 parent: 1 - - uid: 343 + - uid: 291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,9.5 parent: 1 - - uid: 344 + - uid: 292 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,2.5 + pos: 1.5,10.5 parent: 1 - - uid: 345 + - uid: 312 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,1.5 + pos: 1.5,9.5 parent: 1 - - uid: 386 + - uid: 317 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - - uid: 437 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,11.5 + pos: 1.5,11.5 parent: 1 - - uid: 438 + - uid: 319 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,18.5 + pos: 9.5,9.5 parent: 1 - - uid: 456 + - uid: 323 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,17.5 + pos: 5.5,24.5 parent: 1 - - uid: 458 + - uid: 324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,19.5 + pos: 7.5,24.5 parent: 1 - - uid: 673 + - uid: 325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,18.5 + rot: 1.5707963267948966 rad + pos: 8.5,21.5 parent: 1 - - uid: 674 + - uid: 326 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,9.5 + pos: 4.5,21.5 parent: 1 - - uid: 676 + - uid: 386 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,11.5 + pos: 11.5,18.5 parent: 1 - - uid: 677 + - uid: 437 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,9.5 - parent: 1 - - uid: 683 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 1 - - uid: 695 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - - uid: 703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,10.5 + pos: 11.5,19.5 parent: 1 - - uid: 704 + - uid: 438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,11.5 + pos: 1.5,19.5 parent: 1 - - uid: 706 + - uid: 456 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,11.5 + pos: 9.5,9.5 parent: 1 - - uid: 709 + - uid: 458 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,19.5 + pos: 9.5,11.5 parent: 1 - - uid: 714 + - uid: 673 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,18.5 - parent: 1 -- proto: WindowReinforcedDirectional - entities: - - uid: 244 - components: - - type: Transform - pos: 5.5,29.5 + pos: 4.5,18.5 parent: 1 - - uid: 323 + - uid: 674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,24.5 + rot: 1.5707963267948966 rad + pos: 3.5,10.5 parent: 1 - - uid: 324 + - uid: 676 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,24.5 + pos: 3.5,11.5 parent: 1 - - uid: 325 + - uid: 677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,21.5 + rot: -1.5707963267948966 rad + pos: 11.5,17.5 parent: 1 - - uid: 326 + - uid: 683 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,21.5 + pos: 7.5,18.5 parent: 1 - uid: 730 components: diff --git a/Resources/Maps/Shuttles/emergency_pilgrim.yml b/Resources/Maps/Shuttles/emergency_pilgrim.yml index c4b311cd718..a2450a93717 100644 --- a/Resources/Maps/Shuttles/emergency_pilgrim.yml +++ b/Resources/Maps/Shuttles/emergency_pilgrim.yml @@ -1000,8 +1000,6 @@ entities: - type: Transform pos: 3.5,5.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: AirCanister entities: - uid: 580 @@ -1009,8 +1007,6 @@ entities: - type: Transform pos: -2.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - proto: AirlockCommandGlassLocked entities: - uid: 413 @@ -4487,7 +4483,7 @@ entities: rot: 1.5707963267948966 rad pos: 3.311915,-8.600292 parent: 1 -- proto: FoodMeatKebab +- proto: FoodKebabSkewer entities: - uid: 597 components: @@ -4980,8 +4976,6 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-12.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000FFFF' - proto: GasVentPump @@ -4992,8 +4986,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 513 @@ -5001,8 +4993,6 @@ entities: - type: Transform pos: -7.5,6.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 514 @@ -5010,8 +5000,6 @@ entities: - type: Transform pos: 0.5,13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 515 @@ -5020,8 +5008,6 @@ entities: rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000FFFF' - uid: 516 @@ -5030,8 +5016,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-13.5 parent: 1 - - type: AtmosDevice - joinedGrid: 1 - type: AtmosPipeColor color: '#0000FFFF' - proto: GravityGeneratorMini @@ -5645,6 +5629,50 @@ entities: - type: Transform pos: -3.5,10.5 parent: 1 +- proto: Screen + entities: + - uid: 861 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 1 + - uid: 862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-7.5 + parent: 1 + - uid: 863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 + - uid: 866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 - proto: ShuttleWindow entities: - uid: 71 @@ -5783,7 +5811,7 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,18.5 parent: 1 -- proto: soda_dispenser +- proto: SodaDispenser entities: - uid: 427 components: diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml index 75511b17604..e535f9e0114 100644 --- a/Resources/Maps/Test/dev_map.yml +++ b/Resources/Maps/Test/dev_map.yml @@ -36,11 +36,11 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,0: ind: -2,0 @@ -68,12 +68,16 @@ entities: version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-2: ind: -1,-2 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 + 1,-2: + ind: 1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -100,247 +104,301 @@ entities: data: tiles: -4,0: + 0: 65532 + -4,-1: 0: 65535 -4,1: - 0: 65535 + 0: 15 + 1: 65280 + -5,1: + 1: 52292 + -4,2: + 1: 8959 + -5,2: + 1: 204 + -4,3: + 1: 8738 + -4,4: + 1: 230 -3,0: - 0: 65535 + 0: 65524 -3,1: - 0: 65535 + 0: 3823 + -3,2: + 1: 35071 + -3,-1: + 0: 56797 -2,0: - 0: 65535 + 0: 65534 -2,1: - 0: 65535 + 0: 61167 + -3,3: + 1: 8 + -2,3: + 1: 15 -2,2: - 0: 65535 + 0: 3822 + -2,-1: + 0: 61166 -1,0: 0: 65535 -1,1: 0: 65535 -1,2: + 0: 53247 + -1,3: + 1: 1 + -1,-1: 0: 65535 - -4,-3: - 0: 61440 - -4,-2: + 0,0: 0: 65535 - -4,-1: + 0,1: 0: 65535 - -3,-3: - 0: 61440 - -3,-2: + 0,2: 0: 65535 - -3,-1: + -4,-2: 0: 65535 + -3,-2: + 0: 56829 + -2,-2: + 0: 3838 -2,-4: - 0: 65520 + 0: 60928 -2,-3: - 0: 65535 - -2,-2: - 0: 65535 - -2,-1: - 0: 65535 + 0: 61166 -1,-4: - 0: 65535 + 0: 65350 -1,-3: 0: 65535 -1,-2: + 0: 4095 + -1,-5: + 0: 16384 + 0,-4: + 0: 65299 + 0,-3: 0: 65535 - -1,-1: + 0,-2: + 0: 53247 + 0,-1: 0: 65535 0,4: - 0: 61183 + 1: 17 + 0: 3276 + 0,3: + 1: 4368 + 0: 52428 + -1,4: + 1: 240 0,5: - 0: 61166 + 0: 52428 0,6: 0: 14 1,4: + 0: 17759 + 1,3: 0: 65535 1,5: - 0: 65535 + 0: 58990 1,6: - 0: 65535 + 0: 26350 1,7: - 0: 15 + 0: 4 2,4: - 0: 65535 + 0: 65419 2,5: - 0: 65535 + 0: 45311 2,6: - 0: 4095 + 0: 187 + 2,3: + 0: 16383 3,4: - 0: 65535 + 0: 46011 3,5: - 0: 65535 + 0: 47295 3,6: - 0: 53247 - 3,7: - 0: 12 - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 + 0: 35007 + 3,3: + 0: 8191 + 4,4: + 0: 12595 + 4,5: + 0: 13107 + 4,6: + 0: 13107 1,0: 0: 65535 - 1,1: - 0: 65535 1,2: + 0: 65520 + 1,-1: 0: 65535 - 1,3: - 0: 65535 + 1,1: + 0: 61166 + 2,2: + 0: 7632 2,0: - 0: 4369 1: 8738 - 2,2: - 0: 65535 - 2,3: - 0: 65535 - 3,0: - 0: 65535 + 2,1: + 1: 2 3,2: - 0: 65535 - 3,3: - 0: 65535 + 0: 36828 + 3,0: + 0: 36590 3,1: - 0: 61166 - 0,-4: - 0: 65527 - 0,-3: - 0: 65535 - 0,-2: + 0: 52428 + 3,-1: + 0: 35771 + 4,0: + 0: 8191 + 4,1: 0: 65535 - 0,-1: + 4,2: 0: 65535 + 4,3: + 0: 8191 + 0,-5: + 0: 4096 1,-4: - 0: 30576 + 0: 48008 1,-3: - 0: 65399 + 0: 65467 1,-2: - 0: 63359 - 1,-1: + 0: 3003 + 1,-5: + 0: 34952 + 2,-4: + 0: 45875 + 1: 1092 + 2: 2056 + 2,-3: 0: 65535 2,-2: - 0: 4096 - 1: 8738 + 0: 61439 + 2,-5: + 0: 65535 2,-1: - 0: 4369 - 1: 8738 - 3,-1: - 0: 65262 + 0: 3822 + 3,-4: + 0: 65535 + 3,-3: + 0: 65535 3,-2: - 0: 61152 + 0: 48063 + 3,-5: + 0: 65535 + 4,-4: + 0: 65535 + 4,-3: + 0: 65535 4,-2: - 0: 65520 + 0: 65311 4,-1: + 0: 8191 + 4,-5: 0: 65535 + 5,-4: + 0: 62451 + 2: 3084 + 5,-3: + 0: 62451 + 3: 12 + 4: 3072 5,-2: - 0: 65520 + 0: 65283 + 5: 12 5,-1: - 0: 65535 + 0: 36863 + 5,-5: + 0: 62451 + 2: 3084 + 5,0: + 0: 40959 + 6,-4: + 2: 257 + 0: 4112 + 1: 17476 + 6,-3: + 3: 1 + 0: 4112 + 4: 256 + 1: 17476 6,-2: - 0: 65520 + 5: 1 + 0: 47872 + 1: 4 6,-1: + 0: 7103 + 6,-5: + 0: 4112 + 1: 17476 + 2: 257 + 6,0: 0: 65535 7,-2: - 0: 65520 + 0: 65280 7,-1: - 0: 65535 + 0: 8191 + 7,0: + 0: 13107 + 8,-2: + 0: 13056 + 8,-1: + 0: 819 -5,0: - 0: 52428 - -5,-3: - 0: 32768 - -5,-2: - 0: 51336 + 1: 17476 -5,-1: - 0: 52428 - 4,0: - 0: 65535 - 4,1: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,0: - 0: 65535 + 1: 17476 + -5,-2: + 1: 16384 5,1: - 0: 65535 + 0: 48051 5,2: - 0: 65535 + 0: 7103 5,3: - 0: 65535 - 6,0: - 0: 65535 + 0: 4095 6,1: - 0: 65535 + 0: 65525 6,2: - 0: 65535 + 0: 4095 6,3: - 0: 63351 - 7,0: - 0: 30583 - 7,1: - 0: 4375 - 7,2: - 0: 4369 - 7,3: - 0: 4096 - 8,-2: - 0: 30576 - 8,-1: - 0: 30583 - 4,4: - 0: 30583 - 4,5: - 0: 30583 - 4,6: - 0: 30583 - 4,7: - 0: 7 - -4,2: - 0: 26367 - -1,3: - 0: 15 - 2,1: - 0: 4369 - 1: 2 - -5,1: - 0: 52428 - -4,3: - 0: 26222 - -3,3: - 0: 15 - -2,3: - 0: 15 - -4,4: - 0: 238 + 0: 626 -3,4: - 0: 255 + 1: 240 -2,4: - 0: 255 - -1,4: - 0: 255 - -5,2: - 0: 204 - -3,2: - 0: 35071 - 0,-5: - 0: 28672 - -1,-5: + 1: 240 + 1,-7: + 1: 192 + 0: 32768 + 1,-6: + 0: 34952 + 2,-7: + 1: 240 0: 61440 - 2,-3: - 1: 12834 - 2,-4: - 1: 61166 - 3,-4: - 1: 13107 - 2,-5: - 1: 57344 - 3,-5: - 1: 12288 + 2,-6: + 0: 65535 + 3,-7: + 1: 240 + 0: 61440 + 3,-6: + 0: 65535 + 4,-7: + 1: 240 + 0: 62976 + 4,-6: + 0: 65535 + 5,-7: + 1: 240 + 0: 61440 + 5,-6: + 0: 62451 + 2: 3084 + 6,-7: + 1: 17520 + 0: 4096 + 6,-6: + 2: 257 + 0: 4112 + 1: 17476 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -357,6 +415,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -372,45 +445,102 @@ entities: - 0 - 0 - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: BecomesStation - id: Dev - - type: SpreaderGrid - - type: GridPathfinding - - type: NavMap - - uid: 962 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap -- proto: AirAlarm - entities: - - uid: 800 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-4.5 - parent: 179 - - type: DeviceList - devices: - - 801 -- proto: AirCanister - entities: - - uid: 458 - components: - - type: Transform - pos: 7.5,-0.5 - parent: 179 -- proto: Airlock - entities: - - uid: 48 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: BecomesStation + id: Dev + - type: SpreaderGrid + - type: GridPathfinding + - type: NavMap + - uid: 962 + components: + - type: MetaData + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap +- proto: AirAlarm + entities: + - uid: 800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 179 + - type: DeviceList + devices: + - 801 + - uid: 1556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-12.5 + parent: 179 +- proto: AirCanister + entities: + - uid: 1281 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 179 + - uid: 1284 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 179 +- proto: Airlock + entities: + - uid: 48 components: - type: Transform pos: 7.5,20.5 @@ -435,6 +565,32 @@ entities: - type: Transform pos: 6.5,28.5 parent: 179 +- proto: AirlockAtmospherics + entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 179 + - uid: 678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 179 + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 179 + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-6.5 + parent: 179 - proto: AirlockCargo entities: - uid: 87 @@ -481,16 +637,6 @@ entities: - type: Transform pos: 0.5,-14.5 parent: 179 - - uid: 255 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 179 - - uid: 256 - components: - - type: Transform - pos: 5.5,-8.5 - parent: 179 - uid: 318 components: - type: Transform @@ -741,6 +887,23 @@ entities: rot: 3.141592653589793 rad pos: -0.5,-13.5 parent: 179 +- proto: AmmoniaCanister + entities: + - uid: 250 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 179 + - uid: 251 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 179 + - uid: 1317 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 179 - proto: AnomalyLocator entities: - uid: 1086 @@ -795,3157 +958,2622 @@ entities: - type: Transform pos: 0.5,-16.5 parent: 179 -- proto: Autolathe - entities: - - uid: 1 + - uid: 1184 components: - type: Transform - pos: 12.5,21.5 + pos: 22.5,-16.5 parent: 179 - - uid: 94 + - uid: 1187 components: - type: Transform - pos: -4.5,-5.5 + pos: 22.5,-14.5 parent: 179 - - uid: 446 + - uid: 1200 components: - type: Transform - pos: -6.5,5.5 + pos: 22.5,-10.5 parent: 179 - - uid: 528 + - uid: 1201 components: - type: Transform - pos: -12.5,-7.5 + pos: 22.5,-12.5 parent: 179 - - uid: 531 + - uid: 1207 components: - type: Transform - pos: -13.5,-7.5 + pos: 22.5,-18.5 parent: 179 - - uid: 532 + - uid: 1220 components: - type: Transform - pos: -14.5,-7.5 + pos: 22.5,-8.5 parent: 179 -- proto: BaseUplinkRadioDebug - entities: - - uid: 732 + - uid: 1235 components: - type: Transform - pos: 0.6038008,7.5209107 + pos: 22.5,-20.5 parent: 179 -- proto: Basketball - entities: - - uid: 951 + - uid: 1238 components: - type: Transform - pos: -9.702013,9.68404 + pos: 22.5,-22.5 parent: 179 - - uid: 952 + - uid: 1260 components: - type: Transform - pos: -10.879096,9.579802 + rot: 3.141592653589793 rad + pos: 22.5,-24.5 parent: 179 -- proto: Beaker - entities: - - uid: 174 + - uid: 1335 components: - type: Transform - pos: 25.291822,10.667244 + rot: 3.141592653589793 rad + pos: 18.5,-25.5 parent: 179 - - uid: 175 + - uid: 1336 components: - type: Transform - pos: 24.541822,10.635994 + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 parent: 179 - - uid: 176 + - uid: 1489 components: - type: Transform - pos: 26.416822,10.651619 + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 parent: 179 - - uid: 324 + - uid: 1493 components: - type: Transform - pos: 4.718221,9.39097 + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 parent: 179 - - uid: 735 + - uid: 1500 components: - type: Transform - pos: 4.739054,9.807927 + rot: -1.5707963267948966 rad + pos: 13.5,-16.5 parent: 179 - - uid: 920 + - uid: 1507 components: - type: Transform - pos: -4.293744,10.966518 + pos: 7.5,-19.5 parent: 179 - - uid: 950 + - uid: 1508 components: - type: Transform - pos: -4.293744,10.966518 + pos: 8.5,-19.5 parent: 179 -- proto: BikeHorn - entities: - - uid: 672 + - uid: 1509 components: - type: Transform - pos: 1.1246341,7.500063 + pos: 9.5,-19.5 parent: 179 -- proto: BlastDoor - entities: - - uid: 202 + - uid: 1510 components: - type: Transform - pos: -2.5,-14.5 + pos: 10.5,-19.5 parent: 179 - - uid: 697 + - uid: 1511 components: - type: Transform - pos: 1.5,-14.5 + pos: 11.5,-19.5 parent: 179 - - uid: 698 + - uid: 1512 components: - type: Transform - pos: 1.5,-16.5 + pos: 12.5,-19.5 parent: 179 - - uid: 984 + - uid: 1513 components: - type: Transform - pos: -2.5,-16.5 + pos: 13.5,-19.5 parent: 179 -- proto: BoozeDispenser - entities: - - uid: 752 + - uid: 1514 components: - type: Transform - pos: 7.5,12.5 + pos: 14.5,-19.5 parent: 179 -- proto: BoxBeaker - entities: - - uid: 280 + - uid: 1515 components: - type: Transform - pos: 5.163024,9.63072 + pos: 14.5,-20.5 parent: 179 -- proto: Brutepack - entities: - - uid: 150 + - uid: 1516 components: - type: Transform - pos: 18.601385,5.512907 + pos: 14.5,-21.5 parent: 179 - - uid: 151 + - uid: 1517 components: - type: Transform - pos: 18.476385,4.841032 + pos: 14.5,-22.5 parent: 179 -- proto: Bucket - entities: - - uid: 691 + - uid: 1518 components: - type: Transform - pos: 7.1447573,15.900927 + pos: 14.5,-23.5 parent: 179 -- proto: CableApcExtension - entities: - - uid: 15 + - uid: 1519 components: - type: Transform - pos: 5.5,15.5 + pos: 14.5,-24.5 parent: 179 - - uid: 23 +- proto: AtmosFixBlockerMarker + entities: + - uid: 1582 components: - type: Transform - pos: 3.5,15.5 + pos: 23.5,-13.5 parent: 179 - - uid: 58 + - uid: 1583 components: - type: Transform - pos: 8.5,15.5 + pos: 23.5,-15.5 parent: 179 - - uid: 90 + - uid: 1584 components: - type: Transform - pos: 4.5,15.5 + pos: 23.5,-17.5 parent: 179 - - uid: 281 + - uid: 1585 components: - type: Transform - pos: -13.5,4.5 + pos: 23.5,-19.5 parent: 179 - - uid: 389 + - uid: 1586 components: - type: Transform - pos: 7.5,15.5 + pos: 23.5,-21.5 parent: 179 - - uid: 453 + - uid: 1587 components: - type: Transform - pos: 6.5,15.5 + pos: 23.5,-23.5 parent: 179 - - uid: 736 + - uid: 1588 components: - type: Transform - pos: -2.5,9.5 + pos: 10.5,-14.5 parent: 179 - - uid: 760 + - uid: 1589 components: - type: Transform - pos: -2.5,10.5 + pos: 22.5,-13.5 parent: 179 - - uid: 761 + - uid: 1590 components: - type: Transform - pos: -15.5,5.5 + pos: 24.5,-13.5 parent: 179 - - uid: 763 + - uid: 1591 components: - type: Transform - pos: -2.5,11.5 + pos: 24.5,-15.5 parent: 179 - - uid: 764 + - uid: 1592 components: - type: Transform - pos: -1.5,11.5 + pos: 22.5,-15.5 parent: 179 - - uid: 765 + - uid: 1593 components: - type: Transform - pos: -7.5,0.5 + pos: 22.5,-17.5 parent: 179 - - uid: 766 + - uid: 1594 components: - type: Transform - pos: -0.5,11.5 + pos: 24.5,-17.5 parent: 179 - - uid: 767 + - uid: 1595 components: - type: Transform - pos: -3.5,10.5 + pos: 24.5,-19.5 parent: 179 - - uid: 768 + - uid: 1596 components: - type: Transform - pos: -4.5,10.5 + pos: 22.5,-19.5 parent: 179 - - uid: 769 + - uid: 1597 components: - type: Transform - pos: -5.5,10.5 + pos: 22.5,-21.5 parent: 179 - - uid: 770 + - uid: 1598 components: - type: Transform - pos: -6.5,10.5 + pos: 22.5,-23.5 parent: 179 - - uid: 771 + - uid: 1599 components: - type: Transform - pos: -2.5,8.5 + pos: 24.5,-23.5 parent: 179 - - uid: 772 + - uid: 1600 components: - type: Transform - pos: -2.5,7.5 + pos: 24.5,-21.5 parent: 179 - - uid: 773 + - uid: 1607 components: - type: Transform - pos: -2.5,6.5 + pos: 10.5,-15.5 parent: 179 - - uid: 774 + - uid: 1608 components: - type: Transform - pos: -2.5,5.5 + pos: 10.5,-13.5 parent: 179 - - uid: 775 + - uid: 1609 components: - type: Transform - pos: -3.5,5.5 + pos: 11.5,-13.5 parent: 179 - - uid: 776 + - uid: 1610 components: - type: Transform - pos: -4.5,5.5 + pos: 11.5,-15.5 parent: 179 - - uid: 777 +- proto: AtmosFixInstantPlasmaFireMarker + entities: + - uid: 1611 components: - type: Transform - pos: -5.5,5.5 + pos: 12.5,-15.5 parent: 179 - - uid: 778 + - uid: 1612 components: - type: Transform - pos: -6.5,5.5 + pos: 13.5,-15.5 parent: 179 - - uid: 779 + - uid: 1613 components: - type: Transform - pos: -6.5,4.5 + pos: 14.5,-15.5 parent: 179 - - uid: 780 + - uid: 1614 components: - type: Transform - pos: -7.5,4.5 + pos: 14.5,-14.5 parent: 179 - - uid: 781 + - uid: 1615 components: - type: Transform - pos: -8.5,4.5 + pos: 13.5,-14.5 parent: 179 - - uid: 782 + - uid: 1616 components: - type: Transform - pos: -9.5,4.5 + pos: 12.5,-14.5 parent: 179 - - uid: 783 + - uid: 1617 components: - type: Transform - pos: -10.5,4.5 + pos: 12.5,-13.5 parent: 179 - - uid: 784 + - uid: 1618 components: - type: Transform - pos: -11.5,4.5 + pos: 13.5,-13.5 parent: 179 - - uid: 785 + - uid: 1619 components: - type: Transform - pos: -12.5,4.5 + pos: 14.5,-13.5 parent: 179 - - uid: 786 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 1579 components: - type: Transform - pos: -12.5,3.5 + pos: 23.5,-9.5 parent: 179 - - uid: 787 + - uid: 1603 components: - type: Transform - pos: -12.5,2.5 + pos: 22.5,-9.5 parent: 179 - - uid: 788 + - uid: 1604 components: - type: Transform - pos: -12.5,1.5 + pos: 24.5,-9.5 parent: 179 - - uid: 789 +- proto: AtmosFixOxygenMarker + entities: + - uid: 1580 components: - type: Transform - pos: -12.5,0.5 + pos: 23.5,-7.5 parent: 179 - - uid: 790 + - uid: 1605 components: - type: Transform - pos: -12.5,-0.5 + pos: 22.5,-7.5 parent: 179 - - uid: 791 + - uid: 1606 components: - type: Transform - pos: -2.5,4.5 + pos: 24.5,-7.5 parent: 179 - - uid: 792 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 1581 components: - type: Transform - pos: -2.5,2.5 + pos: 23.5,-11.5 parent: 179 - - uid: 793 + - uid: 1601 components: - type: Transform - pos: -2.5,1.5 + pos: 22.5,-11.5 parent: 179 - - uid: 794 + - uid: 1602 components: - type: Transform - pos: -2.5,0.5 + pos: 24.5,-11.5 parent: 179 - - uid: 795 +- proto: Autolathe + entities: + - uid: 1 components: - type: Transform - pos: -2.5,3.5 + pos: 12.5,21.5 parent: 179 - - uid: 796 + - uid: 94 components: - type: Transform - pos: -2.5,-0.5 + pos: -4.5,-5.5 parent: 179 - - uid: 797 + - uid: 446 components: - type: Transform - pos: -2.5,-1.5 + pos: -6.5,5.5 parent: 179 - - uid: 798 + - uid: 528 components: - type: Transform - pos: -2.5,-2.5 + pos: -12.5,-7.5 parent: 179 - - uid: 799 + - uid: 531 components: - type: Transform - pos: -2.5,-3.5 + pos: -13.5,-7.5 parent: 179 - - uid: 802 + - uid: 532 components: - type: Transform - pos: -8.5,0.5 + pos: -14.5,-7.5 parent: 179 - - uid: 803 +- proto: BaseUplinkRadioDebug + entities: + - uid: 732 components: - type: Transform - pos: 2.5,-2.5 + pos: 0.6038008,7.5209107 parent: 179 - - uid: 804 +- proto: Basketball + entities: + - uid: 951 components: - type: Transform - pos: 2.5,-3.5 + pos: -9.702013,9.68404 parent: 179 - - uid: 805 + - uid: 952 components: - type: Transform - pos: -9.5,0.5 + pos: -10.879096,9.579802 parent: 179 - - uid: 806 +- proto: Beaker + entities: + - uid: 174 components: - type: Transform - pos: -10.5,0.5 + pos: 25.291822,10.667244 parent: 179 - - uid: 807 + - uid: 175 components: - type: Transform - pos: -14.5,0.5 + pos: 24.541822,10.635994 parent: 179 - - uid: 808 + - uid: 176 components: - type: Transform - pos: -11.5,0.5 + pos: 26.416822,10.651619 parent: 179 - - uid: 809 + - uid: 324 components: - type: Transform - pos: -15.5,0.5 + pos: 4.718221,9.39097 parent: 179 - - uid: 810 + - uid: 735 components: - type: Transform - pos: -15.5,0.5 + pos: 4.739054,9.807927 parent: 179 - - uid: 811 + - uid: 920 components: - type: Transform - pos: -16.5,0.5 + pos: -4.293744,10.966518 parent: 179 - - uid: 812 + - uid: 950 components: - type: Transform - pos: -16.5,5.5 + pos: -4.293744,10.966518 parent: 179 - - uid: 813 +- proto: BikeHorn + entities: + - uid: 672 components: - type: Transform - pos: -16.5,4.5 + pos: 1.1246341,7.500063 parent: 179 - - uid: 814 +- proto: BlastDoor + entities: + - uid: 202 components: - type: Transform - pos: -16.5,3.5 + pos: -2.5,-14.5 parent: 179 - - uid: 815 + - uid: 697 components: - type: Transform - pos: -16.5,2.5 + pos: 1.5,-14.5 parent: 179 - - uid: 816 + - uid: 698 components: - type: Transform - pos: -16.5,1.5 + pos: 1.5,-16.5 parent: 179 - - uid: 817 + - uid: 984 components: - type: Transform - pos: 7.5,5.5 + pos: -2.5,-16.5 parent: 179 - - uid: 818 + - uid: 1230 components: - type: Transform - pos: 7.5,7.5 + pos: 6.5,-20.5 parent: 179 - - uid: 819 + - uid: 1232 components: - type: Transform - pos: 7.5,8.5 + pos: 6.5,-17.5 parent: 179 - - uid: 820 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 1233 components: - type: Transform - pos: 7.5,9.5 + pos: 6.5,-16.5 parent: 179 - - uid: 821 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 1234 components: - type: Transform - pos: 8.5,9.5 + pos: 6.5,-15.5 parent: 179 - - uid: 822 + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 1385 components: - type: Transform - pos: 6.5,9.5 + pos: 11.5,-14.5 parent: 179 - - uid: 823 +- proto: BoozeDispenser + entities: + - uid: 752 components: - type: Transform - pos: 5.5,9.5 + pos: 7.5,12.5 parent: 179 - - uid: 824 +- proto: BoxBeaker + entities: + - uid: 280 components: - type: Transform - pos: 4.5,9.5 + pos: 5.163024,9.63072 parent: 179 - - uid: 825 +- proto: Brutepack + entities: + - uid: 150 components: - type: Transform - pos: 8.5,10.5 + pos: 18.601385,5.512907 parent: 179 - - uid: 826 + - uid: 151 components: - type: Transform - pos: 8.5,11.5 + pos: 18.476385,4.841032 parent: 179 - - uid: 827 +- proto: Bucket + entities: + - uid: 691 components: - type: Transform - pos: 8.5,12.5 + pos: 7.1447573,15.900927 parent: 179 - - uid: 828 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 1488 components: - type: Transform - pos: 7.5,12.5 + rot: 3.141592653589793 rad + pos: 14.5,-12.5 parent: 179 - - uid: 829 +- proto: CableApcExtension + entities: + - uid: 15 components: - type: Transform - pos: 7.5,11.5 + pos: 5.5,15.5 parent: 179 - - uid: 830 + - uid: 23 components: - type: Transform - pos: 2.5,-5.5 + pos: 3.5,15.5 parent: 179 - - uid: 831 + - uid: 58 components: - type: Transform - pos: 2.5,-4.5 + pos: 8.5,15.5 parent: 179 - - uid: 832 + - uid: 90 components: - type: Transform - pos: 1.5,-5.5 + pos: 4.5,15.5 parent: 179 - - uid: 833 + - uid: 281 components: - type: Transform - pos: 0.5,-5.5 + pos: -13.5,4.5 parent: 179 - - uid: 834 + - uid: 389 components: - type: Transform - pos: -0.5,-5.5 + pos: 7.5,15.5 parent: 179 - - uid: 835 + - uid: 453 components: - type: Transform - pos: -1.5,-5.5 + pos: 6.5,15.5 parent: 179 - - uid: 836 + - uid: 736 components: - type: Transform - pos: -2.5,-5.5 + pos: -2.5,9.5 parent: 179 - - uid: 837 + - uid: 760 components: - type: Transform - pos: -3.5,-5.5 + pos: -2.5,10.5 parent: 179 - - uid: 838 + - uid: 761 components: - type: Transform - pos: -4.5,-5.5 + pos: -15.5,5.5 parent: 179 - - uid: 839 + - uid: 763 components: - type: Transform - pos: 1.5,11.5 + pos: -2.5,11.5 parent: 179 - - uid: 840 + - uid: 764 components: - type: Transform - pos: 2.5,11.5 + pos: -1.5,11.5 parent: 179 - - uid: 841 + - uid: 765 components: - type: Transform - pos: 0.5,11.5 + pos: -7.5,0.5 parent: 179 - - uid: 842 + - uid: 766 components: - type: Transform - pos: 2.5,12.5 + pos: -0.5,11.5 parent: 179 - - uid: 843 + - uid: 767 components: - type: Transform - pos: 2.5,13.5 + pos: -3.5,10.5 parent: 179 - - uid: 844 + - uid: 768 components: - type: Transform - pos: 2.5,14.5 + pos: -4.5,10.5 parent: 179 - - uid: 845 + - uid: 769 components: - type: Transform - pos: 2.5,15.5 + pos: -5.5,10.5 parent: 179 - - uid: 853 + - uid: 770 components: - type: Transform - pos: -3.5,-3.5 + pos: -6.5,10.5 parent: 179 - - uid: 854 + - uid: 771 components: - type: Transform - pos: -4.5,-3.5 + pos: -2.5,8.5 parent: 179 - - uid: 855 + - uid: 772 components: - type: Transform - pos: -5.5,-3.5 + pos: -2.5,7.5 parent: 179 - - uid: 856 + - uid: 773 components: - type: Transform - pos: -6.5,-3.5 + pos: -2.5,6.5 parent: 179 - - uid: 857 + - uid: 774 components: - type: Transform - pos: -6.5,-2.5 + pos: -2.5,5.5 parent: 179 - - uid: 858 + - uid: 775 components: - type: Transform - pos: -6.5,-1.5 + pos: -3.5,5.5 parent: 179 - - uid: 859 + - uid: 776 components: - type: Transform - pos: -6.5,-0.5 + pos: -4.5,5.5 parent: 179 - - uid: 860 + - uid: 777 components: - type: Transform - pos: -6.5,0.5 + pos: -5.5,5.5 parent: 179 - - uid: 861 + - uid: 778 components: - type: Transform - pos: -6.5,1.5 + pos: -6.5,5.5 parent: 179 - - uid: 862 + - uid: 779 components: - type: Transform - pos: -6.5,2.5 + pos: -6.5,4.5 parent: 179 - - uid: 872 + - uid: 780 components: - type: Transform - pos: 7.5,6.5 + pos: -7.5,4.5 parent: 179 - - uid: 873 + - uid: 781 components: - type: Transform - pos: 8.5,21.5 + pos: -8.5,4.5 parent: 179 - - uid: 877 + - uid: 782 components: - type: Transform - pos: -6.5,3.5 + pos: -9.5,4.5 parent: 179 - - uid: 878 + - uid: 783 components: - type: Transform - pos: -2.5,-4.5 + pos: -10.5,4.5 parent: 179 - - uid: 879 + - uid: 784 components: - type: Transform - pos: -1.5,-4.5 + pos: -11.5,4.5 parent: 179 - - uid: 880 + - uid: 785 components: - type: Transform - pos: -0.5,-4.5 + pos: -12.5,4.5 parent: 179 - - uid: 881 + - uid: 786 components: - type: Transform - pos: 0.5,-4.5 + pos: -12.5,3.5 parent: 179 - - uid: 882 + - uid: 787 components: - type: Transform - pos: 1.5,-4.5 + pos: -12.5,2.5 parent: 179 - - uid: 883 + - uid: 788 components: - type: Transform - pos: 2.5,-4.5 + pos: -12.5,1.5 parent: 179 - - uid: 884 + - uid: 789 components: - type: Transform - pos: 3.5,-4.5 + pos: -12.5,0.5 parent: 179 - - uid: 885 + - uid: 790 components: - type: Transform - pos: 4.5,-4.5 + pos: -12.5,-0.5 parent: 179 - - uid: 886 + - uid: 791 components: - type: Transform - pos: 5.5,-4.5 + pos: -2.5,4.5 parent: 179 - - uid: 887 + - uid: 792 components: - type: Transform - pos: 6.5,-4.5 + pos: -2.5,2.5 parent: 179 - - uid: 888 + - uid: 793 components: - type: Transform - pos: 7.5,-4.5 + pos: -2.5,1.5 parent: 179 - - uid: 889 + - uid: 794 components: - type: Transform - pos: 8.5,-4.5 + pos: -2.5,0.5 parent: 179 - - uid: 890 + - uid: 795 components: - type: Transform - pos: 8.5,-3.5 + pos: -2.5,3.5 parent: 179 - - uid: 891 + - uid: 796 components: - type: Transform - pos: 8.5,-2.5 + pos: -2.5,-0.5 parent: 179 - - uid: 892 + - uid: 797 components: - type: Transform - pos: 8.5,-1.5 + pos: -2.5,-1.5 parent: 179 - - uid: 893 + - uid: 798 components: - type: Transform - pos: 8.5,-0.5 + pos: -2.5,-2.5 parent: 179 - - uid: 894 + - uid: 799 components: - type: Transform - pos: 8.5,0.5 + pos: -2.5,-3.5 parent: 179 - - uid: 895 + - uid: 802 components: - type: Transform - pos: 8.5,1.5 + pos: -8.5,0.5 parent: 179 - - uid: 896 + - uid: 803 components: - type: Transform - pos: 8.5,2.5 + pos: 2.5,-2.5 parent: 179 - - uid: 897 + - uid: 804 components: - type: Transform - pos: 8.5,3.5 + pos: 2.5,-3.5 parent: 179 - - uid: 898 + - uid: 805 components: - type: Transform - pos: 8.5,4.5 + pos: -9.5,0.5 parent: 179 - - uid: 899 + - uid: 806 components: - type: Transform - pos: 8.5,5.5 + pos: -10.5,0.5 parent: 179 - - uid: 900 + - uid: 807 components: - type: Transform - pos: -14.5,5.5 + pos: -14.5,0.5 parent: 179 - - uid: 905 + - uid: 808 components: - type: Transform - pos: -12.5,5.5 + pos: -11.5,0.5 parent: 179 - - uid: 906 + - uid: 809 components: - type: Transform - pos: -14.5,4.5 + pos: -15.5,0.5 parent: 179 - - uid: 908 + - uid: 810 components: - type: Transform - pos: -15.5,4.5 + pos: -15.5,0.5 parent: 179 - - uid: 909 + - uid: 811 components: - type: Transform - pos: 8.5,20.5 + pos: -16.5,0.5 parent: 179 - - uid: 970 + - uid: 812 components: - type: Transform - pos: 9.5,12.5 + pos: -16.5,5.5 parent: 179 - - uid: 971 + - uid: 813 components: - type: Transform - pos: 10.5,12.5 + pos: -16.5,4.5 parent: 179 - - uid: 972 + - uid: 814 components: - type: Transform - pos: 11.5,12.5 + pos: -16.5,3.5 parent: 179 - - uid: 973 + - uid: 815 components: - type: Transform - pos: 12.5,12.5 + pos: -16.5,2.5 parent: 179 - - uid: 974 + - uid: 816 components: - type: Transform - pos: 13.5,12.5 + pos: -16.5,1.5 parent: 179 - - uid: 1026 + - uid: 817 components: - type: Transform - pos: -5.5,-14.5 + pos: 7.5,5.5 parent: 179 - - uid: 1027 + - uid: 818 components: - type: Transform - pos: -5.5,-13.5 + pos: 7.5,7.5 parent: 179 - - uid: 1028 + - uid: 819 components: - type: Transform - pos: -5.5,-12.5 + pos: 7.5,8.5 parent: 179 - - uid: 1029 + - uid: 820 components: - type: Transform - pos: -4.5,-12.5 + pos: 7.5,9.5 parent: 179 - - uid: 1030 + - uid: 821 components: - type: Transform - pos: -3.5,-12.5 + pos: 8.5,9.5 parent: 179 - - uid: 1031 + - uid: 822 components: - type: Transform - pos: -2.5,-12.5 + pos: 6.5,9.5 parent: 179 - - uid: 1032 + - uid: 823 components: - type: Transform - pos: -1.5,-12.5 + pos: 5.5,9.5 parent: 179 - - uid: 1033 + - uid: 824 components: - type: Transform - pos: -0.5,-12.5 + pos: 4.5,9.5 parent: 179 - - uid: 1034 + - uid: 825 components: - type: Transform - pos: 0.5,-12.5 + pos: 8.5,10.5 parent: 179 - - uid: 1035 + - uid: 826 components: - type: Transform - pos: 1.5,-12.5 + pos: 8.5,11.5 parent: 179 - - uid: 1036 + - uid: 827 components: - type: Transform - pos: 2.5,-12.5 + pos: 8.5,12.5 parent: 179 - - uid: 1037 + - uid: 828 components: - type: Transform - pos: 3.5,-12.5 + pos: 7.5,12.5 parent: 179 - - uid: 1038 + - uid: 829 components: - type: Transform - pos: 0.5,-13.5 + pos: 7.5,11.5 parent: 179 - - uid: 1039 + - uid: 830 components: - type: Transform - pos: 0.5,-14.5 + pos: 2.5,-5.5 parent: 179 - - uid: 1040 + - uid: 831 components: - type: Transform - pos: 0.5,-15.5 + pos: 2.5,-4.5 parent: 179 - - uid: 1041 + - uid: 832 components: - type: Transform - pos: -1.5,-13.5 + pos: 1.5,-5.5 parent: 179 - - uid: 1042 + - uid: 833 components: - type: Transform - pos: -1.5,-14.5 + pos: 0.5,-5.5 parent: 179 - - uid: 1043 + - uid: 834 components: - type: Transform - pos: -1.5,-15.5 + pos: -0.5,-5.5 parent: 179 - - uid: 1044 + - uid: 835 components: - type: Transform - pos: 4.5,-12.5 + pos: -1.5,-5.5 parent: 179 - - uid: 1045 + - uid: 836 components: - type: Transform - pos: 4.5,-13.5 + pos: -2.5,-5.5 parent: 179 - - uid: 1051 + - uid: 837 components: - type: Transform - pos: 9.5,15.5 + pos: -3.5,-5.5 parent: 179 - - uid: 1052 + - uid: 838 components: - type: Transform - pos: 9.5,16.5 + pos: -4.5,-5.5 parent: 179 - - uid: 1053 + - uid: 839 components: - type: Transform - pos: 9.5,17.5 + pos: 1.5,11.5 parent: 179 - - uid: 1054 + - uid: 840 components: - type: Transform - pos: 9.5,18.5 + pos: 2.5,11.5 parent: 179 - - uid: 1055 + - uid: 841 components: - type: Transform - pos: 9.5,19.5 + pos: 0.5,11.5 parent: 179 - - uid: 1056 + - uid: 842 components: - type: Transform - pos: 9.5,20.5 + pos: 2.5,12.5 parent: 179 - - uid: 1057 + - uid: 843 components: - type: Transform - pos: 10.5,20.5 + pos: 2.5,13.5 parent: 179 - - uid: 1058 + - uid: 844 components: - type: Transform - pos: 11.5,20.5 + pos: 2.5,14.5 parent: 179 - - uid: 1059 + - uid: 845 components: - type: Transform - pos: 12.5,20.5 + pos: 2.5,15.5 parent: 179 - - uid: 1060 + - uid: 853 components: - type: Transform - pos: 13.5,20.5 + pos: -3.5,-3.5 parent: 179 - - uid: 1061 + - uid: 854 components: - type: Transform - pos: 14.5,20.5 + pos: -4.5,-3.5 parent: 179 - - uid: 1062 + - uid: 855 components: - type: Transform - pos: 15.5,20.5 + pos: -5.5,-3.5 parent: 179 - - uid: 1063 + - uid: 856 components: - type: Transform - pos: 16.5,20.5 + pos: -6.5,-3.5 parent: 179 - - uid: 1064 + - uid: 857 components: - type: Transform - pos: 16.5,21.5 + pos: -6.5,-2.5 parent: 179 - - uid: 1065 + - uid: 858 components: - type: Transform - pos: 16.5,22.5 + pos: -6.5,-1.5 parent: 179 - - uid: 1066 + - uid: 859 components: - type: Transform - pos: 16.5,23.5 + pos: -6.5,-0.5 parent: 179 - - uid: 1067 + - uid: 860 components: - type: Transform - pos: 16.5,24.5 + pos: -6.5,0.5 parent: 179 - - uid: 1068 + - uid: 861 components: - type: Transform - pos: 16.5,25.5 + pos: -6.5,1.5 parent: 179 - - uid: 1069 + - uid: 862 components: - type: Transform - pos: 16.5,26.5 + pos: -6.5,2.5 parent: 179 - - uid: 1070 + - uid: 872 components: - type: Transform - pos: 16.5,27.5 + pos: 7.5,6.5 parent: 179 - - uid: 1079 + - uid: 873 components: - type: Transform - pos: 15.5,24.5 + pos: 8.5,21.5 parent: 179 - - uid: 1080 + - uid: 877 components: - type: Transform - pos: 14.5,24.5 + pos: -6.5,3.5 parent: 179 - - uid: 1081 + - uid: 878 components: - type: Transform - pos: 13.5,24.5 + pos: -2.5,-4.5 parent: 179 - - uid: 1082 + - uid: 879 components: - type: Transform - pos: 12.5,24.5 + pos: -1.5,-4.5 parent: 179 - - uid: 1097 + - uid: 880 components: - type: Transform - pos: 8.5,14.5 + pos: -0.5,-4.5 parent: 179 - - uid: 1098 + - uid: 881 components: - type: Transform - pos: 8.5,13.5 + pos: 0.5,-4.5 parent: 179 - - uid: 1099 + - uid: 882 components: - type: Transform - pos: 9.5,13.5 + pos: 1.5,-4.5 parent: 179 - - uid: 1100 + - uid: 883 components: - type: Transform - pos: 10.5,13.5 + pos: 2.5,-4.5 parent: 179 - - uid: 1101 + - uid: 884 components: - type: Transform - pos: 11.5,13.5 + pos: 3.5,-4.5 parent: 179 - - uid: 1102 + - uid: 885 components: - type: Transform - pos: 12.5,13.5 + pos: 4.5,-4.5 parent: 179 - - uid: 1103 + - uid: 886 components: - type: Transform - pos: 13.5,13.5 + pos: 5.5,-4.5 parent: 179 - - uid: 1104 + - uid: 887 components: - type: Transform - pos: 14.5,13.5 + pos: 6.5,-4.5 parent: 179 - - uid: 1105 + - uid: 888 components: - type: Transform - pos: 15.5,13.5 + pos: 7.5,-4.5 parent: 179 - - uid: 1106 + - uid: 889 components: - type: Transform - pos: 16.5,13.5 + pos: 8.5,-4.5 parent: 179 - - uid: 1107 + - uid: 890 components: - type: Transform - pos: 17.5,13.5 + pos: 8.5,-3.5 parent: 179 - - uid: 1108 + - uid: 891 components: - type: Transform - pos: 18.5,13.5 + pos: 8.5,-2.5 parent: 179 - - uid: 1109 + - uid: 892 components: - type: Transform - pos: 19.5,13.5 + pos: 8.5,-1.5 parent: 179 - - uid: 1110 + - uid: 893 components: - type: Transform - pos: 20.5,13.5 + pos: 8.5,-0.5 parent: 179 - - uid: 1111 + - uid: 894 components: - type: Transform - pos: 21.5,13.5 + pos: 8.5,0.5 parent: 179 - - uid: 1112 + - uid: 895 components: - type: Transform - pos: 22.5,13.5 + pos: 8.5,1.5 parent: 179 - - uid: 1113 + - uid: 896 components: - type: Transform - pos: 23.5,13.5 + pos: 8.5,2.5 parent: 179 - - uid: 1114 + - uid: 897 components: - type: Transform - pos: 24.5,13.5 + pos: 8.5,3.5 parent: 179 - - uid: 1115 + - uid: 898 components: - type: Transform - pos: 25.5,13.5 + pos: 8.5,4.5 parent: 179 - - uid: 1116 + - uid: 899 components: - type: Transform - pos: 16.5,12.5 + pos: 8.5,5.5 parent: 179 - - uid: 1117 + - uid: 900 components: - type: Transform - pos: 16.5,11.5 + pos: -14.5,5.5 parent: 179 - - uid: 1118 + - uid: 905 components: - type: Transform - pos: 16.5,10.5 + pos: -12.5,5.5 parent: 179 - - uid: 1119 + - uid: 906 components: - type: Transform - pos: 16.5,9.5 + pos: -14.5,4.5 parent: 179 - - uid: 1120 + - uid: 908 components: - type: Transform - pos: 16.5,8.5 + pos: -15.5,4.5 parent: 179 - - uid: 1121 + - uid: 909 components: - type: Transform - pos: 16.5,7.5 + pos: 8.5,20.5 parent: 179 - - uid: 1122 + - uid: 970 components: - type: Transform - pos: 16.5,6.5 + pos: 9.5,12.5 parent: 179 - - uid: 1123 + - uid: 971 components: - type: Transform - pos: 16.5,5.5 + pos: 10.5,12.5 parent: 179 - - uid: 1124 + - uid: 972 components: - type: Transform - pos: 16.5,4.5 + pos: 11.5,12.5 parent: 179 - - uid: 1125 + - uid: 973 components: - type: Transform - pos: 16.5,3.5 + pos: 12.5,12.5 parent: 179 - - uid: 1126 + - uid: 974 components: - type: Transform - pos: 16.5,2.5 + pos: 13.5,12.5 parent: 179 - - uid: 1127 + - uid: 1026 components: - type: Transform - pos: 16.5,1.5 + pos: -5.5,-14.5 parent: 179 - - uid: 1128 + - uid: 1027 components: - type: Transform - pos: 16.5,0.5 + pos: -5.5,-13.5 parent: 179 - - uid: 1129 + - uid: 1028 components: - type: Transform - pos: 16.5,-0.5 + pos: -5.5,-12.5 parent: 179 - - uid: 1130 + - uid: 1029 components: - type: Transform - pos: 16.5,-1.5 + pos: -4.5,-12.5 parent: 179 - - uid: 1131 + - uid: 1030 components: - type: Transform - pos: 16.5,-2.5 + pos: -3.5,-12.5 parent: 179 - - uid: 1132 + - uid: 1031 components: - type: Transform - pos: 16.5,-3.5 + pos: -2.5,-12.5 parent: 179 - - uid: 1133 + - uid: 1032 components: - type: Transform - pos: 17.5,-3.5 + pos: -1.5,-12.5 parent: 179 - - uid: 1134 + - uid: 1033 components: - type: Transform - pos: 18.5,-3.5 + pos: -0.5,-12.5 parent: 179 - - uid: 1135 + - uid: 1034 components: - type: Transform - pos: 19.5,-3.5 + pos: 0.5,-12.5 parent: 179 - - uid: 1136 + - uid: 1035 components: - type: Transform - pos: 20.5,-3.5 + pos: 1.5,-12.5 parent: 179 - - uid: 1137 + - uid: 1036 components: - type: Transform - pos: 21.5,-3.5 + pos: 2.5,-12.5 parent: 179 - - uid: 1138 + - uid: 1037 components: - type: Transform - pos: 22.5,-3.5 + pos: 3.5,-12.5 parent: 179 - - uid: 1139 + - uid: 1038 components: - type: Transform - pos: 23.5,-3.5 + pos: 0.5,-13.5 parent: 179 - - uid: 1140 + - uid: 1039 components: - type: Transform - pos: 24.5,-3.5 + pos: 0.5,-14.5 parent: 179 - - uid: 1141 + - uid: 1040 components: - type: Transform - pos: 25.5,-3.5 + pos: 0.5,-15.5 parent: 179 - - uid: 1142 + - uid: 1041 components: - type: Transform - pos: 26.5,-3.5 + pos: -1.5,-13.5 parent: 179 - - uid: 1143 + - uid: 1042 components: - type: Transform - pos: 27.5,-3.5 + pos: -1.5,-14.5 parent: 179 - - uid: 1144 + - uid: 1043 components: - type: Transform - pos: 28.5,-3.5 + pos: -1.5,-15.5 parent: 179 - - uid: 1145 + - uid: 1044 components: - type: Transform - pos: 17.5,2.5 + pos: 4.5,-12.5 parent: 179 - - uid: 1146 + - uid: 1045 components: - type: Transform - pos: 18.5,2.5 + pos: 4.5,-13.5 parent: 179 - - uid: 1147 + - uid: 1051 components: - type: Transform - pos: 19.5,2.5 + pos: 9.5,15.5 parent: 179 - - uid: 1148 + - uid: 1052 components: - type: Transform - pos: 20.5,2.5 + pos: 9.5,16.5 parent: 179 - - uid: 1149 + - uid: 1053 components: - type: Transform - pos: 21.5,2.5 + pos: 9.5,17.5 parent: 179 - - uid: 1150 + - uid: 1054 components: - type: Transform - pos: 22.5,2.5 + pos: 9.5,18.5 parent: 179 - - uid: 1151 + - uid: 1055 components: - type: Transform - pos: 23.5,2.5 + pos: 9.5,19.5 parent: 179 - - uid: 1152 + - uid: 1056 components: - type: Transform - pos: 24.5,2.5 + pos: 9.5,20.5 parent: 179 - - uid: 1153 + - uid: 1057 components: - type: Transform - pos: 25.5,2.5 + pos: 10.5,20.5 parent: 179 - - uid: 1154 + - uid: 1058 components: - type: Transform - pos: 26.5,2.5 + pos: 11.5,20.5 parent: 179 - - uid: 1155 + - uid: 1059 components: - type: Transform - pos: 27.5,2.5 + pos: 12.5,20.5 parent: 179 - - uid: 1156 + - uid: 1060 components: - type: Transform - pos: 28.5,2.5 + pos: 13.5,20.5 parent: 179 - - uid: 1157 + - uid: 1061 components: - type: Transform - pos: 26.5,3.5 + pos: 14.5,20.5 parent: 179 - - uid: 1158 + - uid: 1062 components: - type: Transform - pos: 26.5,4.5 + pos: 15.5,20.5 parent: 179 - - uid: 1159 + - uid: 1063 components: - type: Transform - pos: 26.5,5.5 + pos: 16.5,20.5 parent: 179 - - uid: 1160 + - uid: 1064 components: - type: Transform - pos: 26.5,6.5 + pos: 16.5,21.5 parent: 179 - - uid: 1161 + - uid: 1065 components: - type: Transform - pos: 26.5,7.5 + pos: 16.5,22.5 parent: 179 - - uid: 1162 + - uid: 1066 components: - type: Transform - pos: 26.5,8.5 + pos: 16.5,23.5 parent: 179 - - uid: 1163 + - uid: 1067 components: - type: Transform - pos: 26.5,9.5 + pos: 16.5,24.5 parent: 179 - - uid: 1164 + - uid: 1068 components: - type: Transform - pos: 25.5,9.5 + pos: 16.5,25.5 parent: 179 - - uid: 1165 + - uid: 1069 components: - type: Transform - pos: 24.5,9.5 + pos: 16.5,26.5 parent: 179 - - uid: 1166 + - uid: 1070 components: - type: Transform - pos: 16.5,19.5 + pos: 16.5,27.5 parent: 179 - - uid: 1167 + - uid: 1079 components: - type: Transform - pos: 16.5,18.5 + pos: 15.5,24.5 parent: 179 - - uid: 1168 + - uid: 1080 components: - type: Transform - pos: 16.5,17.5 + pos: 14.5,24.5 parent: 179 - - uid: 1169 + - uid: 1081 components: - type: Transform - pos: 16.5,16.5 + pos: 13.5,24.5 parent: 179 - - uid: 1170 + - uid: 1082 components: - type: Transform - pos: 16.5,15.5 + pos: 12.5,24.5 parent: 179 - - uid: 1171 + - uid: 1097 components: - type: Transform - pos: 16.5,14.5 + pos: 8.5,14.5 parent: 179 - - uid: 1177 + - uid: 1098 components: - type: Transform - pos: 8.5,22.5 + pos: 8.5,13.5 parent: 179 - - uid: 1178 + - uid: 1099 components: - type: Transform - pos: 8.5,23.5 + pos: 9.5,13.5 parent: 179 - - uid: 1179 + - uid: 1100 components: - type: Transform - pos: 8.5,24.5 + pos: 10.5,13.5 parent: 179 - - uid: 1180 + - uid: 1101 components: - type: Transform - pos: 8.5,25.5 + pos: 11.5,13.5 parent: 179 -- proto: CableApcStack - entities: - - uid: 70 + - uid: 1102 components: - type: Transform - pos: 10.577456,21.424059 + pos: 12.5,13.5 parent: 179 - - uid: 183 + - uid: 1103 components: - type: Transform - pos: -6.6863613,7.351646 + pos: 13.5,13.5 parent: 179 - - uid: 351 + - uid: 1104 components: - type: Transform - pos: 10.561831,21.767809 + pos: 14.5,13.5 parent: 179 - - uid: 537 + - uid: 1105 components: - type: Transform - pos: -15.5,-0.5 + pos: 15.5,13.5 parent: 179 - - uid: 538 + - uid: 1106 components: - type: Transform - pos: -15.5,-0.5 + pos: 16.5,13.5 parent: 179 -- proto: CableHV - entities: - - uid: 1019 + - uid: 1107 components: - type: Transform - pos: -6.5,-13.5 + pos: 17.5,13.5 parent: 179 - - uid: 1020 + - uid: 1108 components: - type: Transform - pos: -6.5,-12.5 + pos: 18.5,13.5 parent: 179 - - uid: 1021 + - uid: 1109 components: - type: Transform - pos: -6.5,-11.5 + pos: 19.5,13.5 parent: 179 -- proto: CableHVStack - entities: - - uid: 184 + - uid: 1110 components: - type: Transform - pos: -6.665528,7.840053 + pos: 20.5,13.5 parent: 179 -- proto: CableMV - entities: - - uid: 1023 + - uid: 1111 components: - type: Transform - pos: -6.5,-13.5 + pos: 21.5,13.5 parent: 179 - - uid: 1024 + - uid: 1112 components: - type: Transform - pos: -5.5,-13.5 + pos: 22.5,13.5 parent: 179 - - uid: 1025 + - uid: 1113 components: - type: Transform - pos: -5.5,-14.5 + pos: 23.5,13.5 parent: 179 -- proto: CableMVStack - entities: - - uid: 325 + - uid: 1114 components: - type: Transform - pos: -6.665528,7.5601244 + pos: 24.5,13.5 parent: 179 -- proto: CableTerminal - entities: - - uid: 1022 + - uid: 1115 components: - type: Transform - pos: -6.5,-11.5 + pos: 25.5,13.5 parent: 179 -- proto: CapacitorStockPart - entities: - - uid: 296 + - uid: 1116 components: - type: Transform - pos: -4.3012447,8.817795 + pos: 16.5,12.5 parent: 179 - - uid: 700 + - uid: 1117 components: - type: Transform - pos: -3.8324947,8.786524 + pos: 16.5,11.5 parent: 179 - - uid: 701 + - uid: 1118 components: - type: Transform - pos: -3.2804112,8.786524 + pos: 16.5,10.5 parent: 179 - - uid: 704 + - uid: 1119 components: - type: Transform - pos: -4.8741612,8.817795 + pos: 16.5,9.5 parent: 179 -- proto: CaptainIDCard - entities: - - uid: 726 + - uid: 1120 components: - type: Transform - pos: 1.0820513,8.752605 + pos: 16.5,8.5 parent: 179 -- proto: CaptainSabre - entities: - - uid: 381 + - uid: 1121 components: - type: Transform - pos: -3.277628,-2.15838 + pos: 16.5,7.5 parent: 179 -- proto: Catwalk - entities: - - uid: 2 + - uid: 1122 components: - type: Transform - pos: 13.5,24.5 + pos: 16.5,6.5 parent: 179 - - uid: 7 + - uid: 1123 components: - type: Transform - pos: 6.5,24.5 + pos: 16.5,5.5 parent: 179 - - uid: 20 + - uid: 1124 components: - type: Transform - pos: 6.5,20.5 + pos: 16.5,4.5 parent: 179 - - uid: 120 + - uid: 1125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,18.5 + pos: 16.5,3.5 parent: 179 - - uid: 246 + - uid: 1126 components: - type: Transform - pos: -6.5,-6.5 + pos: 16.5,2.5 parent: 179 - - uid: 247 + - uid: 1127 components: - type: Transform - pos: -8.5,-6.5 + pos: 16.5,1.5 parent: 179 - - uid: 252 + - uid: 1128 components: - type: Transform - pos: 4.5,-8.5 + pos: 16.5,0.5 parent: 179 - - uid: 269 + - uid: 1129 components: - type: Transform - pos: 12.5,10.5 + pos: 16.5,-0.5 parent: 179 - - uid: 286 + - uid: 1130 components: - type: Transform - pos: 2.5,-11.5 + pos: 16.5,-1.5 parent: 179 - - uid: 287 + - uid: 1131 components: - type: Transform - pos: -4.5,-11.5 + pos: 16.5,-2.5 parent: 179 - - uid: 308 + - uid: 1132 components: - type: Transform - pos: -2.5,-12.5 + pos: 16.5,-3.5 parent: 179 - - uid: 309 + - uid: 1133 components: - type: Transform - pos: 1.5,-12.5 + pos: 17.5,-3.5 parent: 179 - - uid: 333 + - uid: 1134 components: - type: Transform - pos: 4.5,-13.5 + pos: 18.5,-3.5 parent: 179 - - uid: 334 + - uid: 1135 components: - type: Transform - pos: -5.5,-13.5 + pos: 19.5,-3.5 parent: 179 - - uid: 345 + - uid: 1136 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,0.5 + pos: 20.5,-3.5 parent: 179 - - uid: 346 + - uid: 1137 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,1.5 + pos: 21.5,-3.5 parent: 179 - - uid: 347 + - uid: 1138 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,2.5 + pos: 22.5,-3.5 parent: 179 - - uid: 348 + - uid: 1139 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,3.5 + pos: 23.5,-3.5 parent: 179 - - uid: 349 + - uid: 1140 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,4.5 + pos: 24.5,-3.5 parent: 179 - - uid: 403 + - uid: 1141 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-0.5 + pos: 25.5,-3.5 parent: 179 - - uid: 404 + - uid: 1142 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-1.5 + pos: 26.5,-3.5 parent: 179 - - uid: 405 + - uid: 1143 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-2.5 + pos: 27.5,-3.5 parent: 179 - - uid: 406 + - uid: 1144 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-3.5 + pos: 28.5,-3.5 parent: 179 - - uid: 407 + - uid: 1145 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-4.5 + pos: 17.5,2.5 parent: 179 - - uid: 408 + - uid: 1146 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-5.5 + pos: 18.5,2.5 parent: 179 - - uid: 409 + - uid: 1147 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-6.5 + pos: 19.5,2.5 parent: 179 - - uid: 410 + - uid: 1148 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-7.5 + pos: 20.5,2.5 parent: 179 - - uid: 411 + - uid: 1149 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-8.5 + pos: 21.5,2.5 parent: 179 - - uid: 412 + - uid: 1150 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-9.5 + pos: 22.5,2.5 parent: 179 - - uid: 413 + - uid: 1151 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-10.5 + pos: 23.5,2.5 parent: 179 - - uid: 414 + - uid: 1152 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 9.5,-11.5 + pos: 24.5,2.5 parent: 179 - - uid: 415 + - uid: 1153 components: - type: Transform - anchored: False - rot: -1.5707963267949 rad - pos: 8.5,-8.5 + pos: 25.5,2.5 parent: 179 - - uid: 438 + - uid: 1154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-0.5 + pos: 26.5,2.5 parent: 179 - - uid: 442 + - uid: 1155 components: - type: Transform - pos: -9.5,8.5 + pos: 27.5,2.5 parent: 179 - - uid: 514 + - uid: 1156 components: - type: Transform - pos: -10.5,8.5 + pos: 28.5,2.5 parent: 179 - - uid: 541 + - uid: 1157 components: - type: Transform - pos: -11.5,-6.5 + pos: 26.5,3.5 parent: 179 - - uid: 542 + - uid: 1158 components: - type: Transform - pos: -9.5,-6.5 + pos: 26.5,4.5 parent: 179 - - uid: 695 + - uid: 1159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,8.5 + pos: 26.5,5.5 parent: 179 -- proto: Chair - entities: - - uid: 580 + - uid: 1160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,6.5 + pos: 26.5,6.5 parent: 179 - - uid: 581 + - uid: 1161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,8.5 + pos: 26.5,7.5 parent: 179 - - uid: 582 + - uid: 1162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,7.5 + pos: 26.5,8.5 parent: 179 -- proto: ChairOfficeDark - entities: - - uid: 380 + - uid: 1163 components: - type: Transform - rot: 3.1415926535897967 rad - pos: 0.5,-6.5 + pos: 26.5,9.5 parent: 179 -- proto: ChairOfficeLight - entities: - - uid: 576 + - uid: 1164 components: - type: Transform - rot: 4.71238898038469 rad - pos: 19.5,4.5 + pos: 25.5,9.5 parent: 179 - - uid: 577 + - uid: 1165 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,5.5 + pos: 24.5,9.5 parent: 179 - - uid: 578 + - uid: 1166 components: - type: Transform - rot: 4.71238898038469 rad - pos: 23.5,8.5 + pos: 16.5,19.5 parent: 179 - - uid: 579 + - uid: 1167 components: - type: Transform - pos: 24.5,5.5 + pos: 16.5,18.5 parent: 179 -- proto: ChemDispenser - entities: - - uid: 583 + - uid: 1168 components: - type: Transform - pos: 23.5,9.5 + pos: 16.5,17.5 parent: 179 - - type: ContainerContainer - containers: - 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: 750 + - uid: 1169 components: - type: Transform - pos: 7.5,11.5 + pos: 16.5,16.5 parent: 179 -- proto: ChemicalPayload - entities: - - uid: 432 + - uid: 1170 components: - type: Transform - pos: 6.4651074,9.828774 + pos: 16.5,15.5 parent: 179 -- proto: ChemMaster - entities: - - uid: 311 + - uid: 1171 components: - type: Transform - pos: 8.5,11.5 + pos: 16.5,14.5 parent: 179 -- proto: ChemMasterMachineCircuitboard - entities: - - uid: 718 + - uid: 1177 components: - type: Transform - pos: -4.5458,10.514079 + pos: 8.5,22.5 parent: 179 -- proto: CircuitImprinter - entities: - - uid: 332 + - uid: 1178 components: - type: Transform - pos: -6.5,4.5 + pos: 8.5,23.5 parent: 179 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 319 + - uid: 1179 components: - type: Transform - pos: 1.5,-10.5 + pos: 8.5,24.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 322 + - uid: 1180 components: - type: Transform - pos: 0.5,-10.5 + pos: 8.5,25.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetToolFilled - entities: - - uid: 524 + - uid: 1277 components: - type: Transform - pos: -11.5,-5.5 + pos: 4.5,-10.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 525 + - uid: 1282 components: - type: Transform - pos: -11.5,-4.5 + pos: 4.5,-11.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 526 + - uid: 1289 components: - type: Transform - pos: -11.5,-3.5 + pos: 5.5,-9.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 527 + - uid: 1292 components: - type: Transform - pos: -11.5,-2.5 + pos: 4.5,-9.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 427 + - uid: 1348 components: - type: Transform - pos: -1.895102,-10.33495 + pos: 6.5,-9.5 parent: 179 - - uid: 428 + - uid: 1349 components: - type: Transform - pos: -1.770102,-10.63182 + pos: 7.5,-9.5 parent: 179 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 454 + - uid: 1350 components: - type: Transform - pos: -0.78741443,4.322194 + pos: 9.5,-9.5 parent: 179 -- proto: ClothingHeadHatWelding - entities: - - uid: 344 + - uid: 1351 components: - type: Transform - pos: 0.7198646,4.374314 + pos: 10.5,-9.5 parent: 179 -- proto: ClothingMaskBreath - entities: - - uid: 955 + - uid: 1352 components: - type: Transform - pos: -10.595239,6.1907988 + pos: 11.5,-9.5 parent: 179 -- proto: ClothingMaskGas - entities: - - uid: 425 + - uid: 1353 components: - type: Transform - pos: -0.2880585,-10.69432 + pos: 12.5,-9.5 parent: 179 -- proto: ClothingOuterHardsuitAtmos - entities: - - uid: 270 + - uid: 1354 components: - type: Transform - pos: -10.5426235,5.472399 + pos: 13.5,-9.5 parent: 179 -- proto: ClothingOuterVest - entities: - - uid: 426 + - uid: 1355 components: - type: Transform - pos: -0.9130585,-10.66307 + pos: 14.5,-9.5 parent: 179 -- proto: ClothingShoesBootsMag - entities: - - uid: 725 + - uid: 1356 components: - type: Transform - pos: 0.47880077,8.073378 + pos: 15.5,-9.5 parent: 179 -- proto: ClothingUniformJumpsuitEngineering - entities: - - uid: 424 + - uid: 1357 components: - type: Transform - pos: -0.6474335,-10.27245 + pos: 16.5,-9.5 parent: 179 -- proto: ClownPDA - entities: - - uid: 91 + - uid: 1358 components: - type: Transform - pos: -15.5,2.5 + pos: 17.5,-9.5 parent: 179 - - uid: 762 + - uid: 1359 components: - type: Transform - pos: -14.5,1.5 + pos: 18.5,-9.5 parent: 179 - - uid: 864 + - uid: 1360 components: - type: Transform - pos: -14.5,2.5 + pos: 19.5,-9.5 parent: 179 - - uid: 912 + - uid: 1361 components: - type: Transform - pos: -15.5,1.5 + pos: 20.5,-9.5 parent: 179 -- proto: ComputerAnalysisConsole - entities: - - uid: 1083 + - uid: 1362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,23.5 + pos: 21.5,-9.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 1078: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerCargoOrders - entities: - - uid: 326 + - uid: 1363 components: - type: Transform - pos: 0.5,-5.5 + pos: 8.5,-9.5 parent: 179 - - uid: 996 + - uid: 1364 components: - type: Transform - pos: -1.5,-11.5 + pos: 11.5,-8.5 parent: 179 -- proto: ComputerCargoShuttle - entities: - - uid: 995 + - uid: 1365 components: - type: Transform - pos: 0.5,-11.5 + pos: 11.5,-7.5 parent: 179 -- proto: ComputerMedicalRecords - entities: - - uid: 152 + - uid: 1366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-5.5 + pos: 11.5,-5.5 parent: 179 - - uid: 591 + - uid: 1367 components: - type: Transform - pos: 21.5,5.5 + pos: 11.5,-4.5 parent: 179 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 88 + - uid: 1368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,19.5 + pos: 11.5,-6.5 parent: 179 -- proto: ComputerShuttleCargo - entities: - - uid: 994 + - uid: 1369 components: - type: Transform - pos: -0.5,-11.5 + pos: 11.5,-3.5 parent: 179 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 1185 + - uid: 1370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 + pos: 9.5,-16.5 parent: 179 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 1088 + - uid: 1371 components: - type: Transform - pos: 13.5,16.5 + pos: 9.5,-22.5 parent: 179 -- proto: ConveyorBelt - entities: - - uid: 195 + - uid: 1372 components: - type: Transform - pos: -2.5,-15.5 + pos: 9.5,-21.5 parent: 179 - - uid: 259 + - uid: 1373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 + pos: 9.5,-10.5 parent: 179 - - uid: 463 + - uid: 1374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-16.5 + pos: 9.5,-20.5 parent: 179 - - uid: 677 + - uid: 1375 components: - type: Transform - pos: -2.5,-14.5 + pos: 9.5,-19.5 parent: 179 - - uid: 716 + - uid: 1376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 + pos: 9.5,-18.5 parent: 179 - - uid: 720 + - uid: 1377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 + pos: 9.5,-17.5 parent: 179 - - uid: 721 + - uid: 1378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 + pos: 9.5,-15.5 parent: 179 - - uid: 985 + - uid: 1379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-13.5 + pos: 9.5,-11.5 parent: 179 - - uid: 989 + - uid: 1380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-15.5 + pos: 9.5,-14.5 parent: 179 - - uid: 990 + - uid: 1381 components: - type: Transform - pos: -2.5,-13.5 + pos: 9.5,-13.5 parent: 179 - - uid: 991 + - uid: 1382 components: - type: Transform - pos: -2.5,-16.5 + pos: 9.5,-12.5 parent: 179 -- proto: CrateEngineeringToolbox - entities: - - uid: 692 + - uid: 1383 components: - type: Transform - pos: -0.5,3.5 + pos: 10.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateGeneric - entities: - - uid: 266 + - uid: 1384 components: - type: Transform - pos: 5.5,-6.5 + pos: 11.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsSeeds - entities: - - uid: 754 + - uid: 1389 components: - type: Transform - pos: 2.5,12.5 + pos: 16.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateHydroponicsTools - entities: - - uid: 755 + - uid: 1390 components: - type: Transform - pos: 2.5,13.5 + pos: 17.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMedical - entities: - - uid: 131 + - uid: 1391 components: - type: Transform - pos: 31.5,-1.5 + pos: 19.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 132 + - uid: 1392 components: - type: Transform - pos: 32.5,-1.5 + pos: 20.5,-14.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 1183 + - uid: 1393 components: - type: Transform - pos: 9.5,25.5 + pos: 21.5,-14.5 parent: 179 -- proto: Crowbar - entities: - - uid: 147 + - uid: 1394 components: - type: Transform - pos: -2.172831,4.5306726 + pos: 22.5,-14.5 parent: 179 - - uid: 423 + - uid: 1395 components: - type: Transform - pos: -2.861032,-5.524786 + pos: 18.5,-14.5 parent: 179 -- proto: DebugBatteryDischarger - entities: - - uid: 711 + - uid: 1396 components: - type: Transform - pos: 0.5,-3.5 + pos: 22.5,-9.5 parent: 179 -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 1198 + - uid: 1397 components: - type: Transform - pos: 11.5,-14.5 + pos: 10.5,-19.5 parent: 179 -- proto: DefaultStationBeaconBotany - entities: - - uid: 1193 + - uid: 1398 components: - type: Transform - pos: 3.5,15.5 + pos: 11.5,-19.5 parent: 179 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 1195 + - uid: 1399 components: - type: Transform - pos: 7.5,10.5 + pos: 12.5,-19.5 parent: 179 -- proto: DefaultStationBeaconCommand - entities: - - uid: 1196 + - uid: 1400 components: - type: Transform - pos: 0.5,8.5 + pos: 13.5,-19.5 parent: 179 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 1172 + - uid: 1401 components: - type: Transform - pos: 6.5,5.5 + pos: 14.5,-19.5 parent: 179 -- proto: DefaultStationBeaconMedical - entities: - - uid: 1173 + - uid: 1402 components: - type: Transform - pos: 19.5,5.5 + pos: 15.5,-19.5 parent: 179 -- proto: DefaultStationBeaconScience - entities: - - uid: 1194 + - uid: 1403 components: - type: Transform - pos: 12.5,20.5 + pos: 17.5,-19.5 parent: 179 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 1197 + - uid: 1404 components: - type: Transform - pos: -14.5,17.5 + pos: 18.5,-19.5 parent: 179 -- proto: DefaultStationBeaconSupply - entities: - - uid: 1175 + - uid: 1405 components: - type: Transform - pos: -0.5,-11.5 + pos: 19.5,-19.5 parent: 179 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 1174 + - uid: 1406 components: - type: Transform - pos: -1.5,4.5 + pos: 20.5,-19.5 parent: 179 -- proto: DisposalPipe - entities: - - uid: 717 + - uid: 1407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 + pos: 21.5,-19.5 parent: 179 -- proto: DisposalTrunk - entities: - - uid: 285 + - uid: 1408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 + pos: 22.5,-19.5 parent: 179 - - uid: 715 + - uid: 1409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 + pos: 16.5,-19.5 parent: 179 -- proto: DisposalUnit - entities: - - uid: 719 + - uid: 1410 components: - type: Transform - pos: -1.5,10.5 + pos: 9.5,-23.5 parent: 179 -- proto: DrinkBeerglass - entities: - - uid: 688 + - uid: 1411 components: - type: Transform - pos: 3.1981986,5.733985 + pos: 9.5,-24.5 parent: 179 -- proto: DrinkColaCan - entities: - - uid: 690 + - uid: 1412 components: - type: Transform - pos: 3.8231986,6.150942 + pos: 10.5,-24.5 parent: 179 -- proto: Dropper - entities: - - uid: 730 + - uid: 1413 components: - type: Transform - pos: 5.892191,9.4118185 + pos: 11.5,-24.5 parent: 179 -- proto: EmergencyOxygenTankFilled - entities: - - uid: 956 + - uid: 1414 components: - type: Transform - pos: -10.505015,6.711994 + pos: 12.5,-24.5 parent: 179 -- proto: ExGrenade - entities: - - uid: 433 + - uid: 1415 components: - type: Transform - pos: -3.7704864,-1.6163371 + pos: 13.5,-24.5 parent: 179 -- proto: ExplosivePayload - entities: - - uid: 668 + - uid: 1416 components: - type: Transform - pos: 6.829691,9.4118185 + pos: 14.5,-24.5 parent: 179 -- proto: FaxMachineCaptain - entities: - - uid: 967 + - uid: 1417 components: - type: Transform - pos: 9.5,12.5 + pos: 15.5,-24.5 parent: 179 -- proto: FaxMachineCentcom - entities: - - uid: 968 + - uid: 1418 components: - type: Transform - pos: 11.5,12.5 + pos: 16.5,-24.5 parent: 179 -- proto: FaxMachineSyndie - entities: - - uid: 969 + - uid: 1419 components: - type: Transform - pos: 13.5,12.5 + pos: 17.5,-24.5 parent: 179 -- proto: FireExtinguisher - entities: - - uid: 323 + - uid: 1420 components: - type: Transform - pos: -1.297692,-5.396082 + pos: 18.5,-24.5 parent: 179 - - uid: 868 + - uid: 1421 components: - type: Transform - pos: -14.5,-1.5 + pos: 19.5,-24.5 parent: 179 -- proto: FlashlightLantern - entities: - - uid: 421 + - uid: 1422 components: - type: Transform - pos: -1.934832,-5.154238 + pos: 20.5,-24.5 parent: 179 - - uid: 422 + - uid: 1423 components: - type: Transform - pos: 1.1350493,8.198464 + pos: 21.5,-24.5 parent: 179 -- proto: FloorLavaEntity - entities: - - uid: 134 + - uid: 1424 components: - type: Transform - pos: -13.5,-3.5 + pos: 22.5,-24.5 parent: 179 - - uid: 135 + - uid: 1502 components: - type: Transform - pos: -14.5,-3.5 + pos: 13.5,-14.5 parent: 179 - - uid: 141 + - uid: 1503 components: - type: Transform - pos: -13.5,-2.5 + pos: 12.5,-14.5 parent: 179 - - uid: 469 + - uid: 1504 components: - type: Transform - pos: -14.5,-2.5 + pos: 14.5,-14.5 parent: 179 -- proto: FloorWaterEntity - entities: - - uid: 136 + - uid: 1554 components: - type: Transform - pos: -12.5,-2.5 + pos: 15.5,-14.5 parent: 179 - - uid: 137 +- proto: CableApcStack + entities: + - uid: 70 components: - type: Transform - pos: -12.5,-3.5 + pos: 10.577456,21.424059 parent: 179 -- proto: FoodApple - entities: - - uid: 16 + - uid: 183 components: - type: Transform - pos: 3.9853282,16.430082 + pos: -6.6863613,7.351646 parent: 179 - - uid: 849 + - uid: 351 components: - type: Transform - pos: 3.7249117,16.242453 + pos: 10.561831,21.767809 parent: 179 - - uid: 866 + - uid: 537 components: - type: Transform - pos: 3.651995,16.55517 + pos: -15.5,-0.5 parent: 179 -- proto: FoodBurgerBacon - entities: - - uid: 689 + - uid: 538 components: - type: Transform - pos: 3.3844857,6.0702233 + pos: -15.5,-0.5 parent: 179 -- proto: FoodCarrot +- proto: CableHV entities: - - uid: 850 + - uid: 1019 components: - type: Transform - pos: 3.6023045,15.67151 + pos: -6.5,-13.5 parent: 179 - - uid: 851 + - uid: 1020 components: - type: Transform - pos: 3.620745,15.015423 + pos: -6.5,-12.5 parent: 179 - - uid: 863 + - uid: 1021 components: - type: Transform - pos: 3.620745,14.389988 + pos: -6.5,-11.5 parent: 179 -- proto: FoodPizzaPineapple +- proto: CableHVStack entities: - - uid: 687 + - uid: 184 components: - type: Transform - pos: 3.5215416,6.799056 + pos: -6.665528,7.840053 parent: 179 -- proto: GasAnalyzer +- proto: CableMV entities: - - uid: 876 + - uid: 1023 components: - type: Transform - pos: 4.4732866,-0.48882532 + pos: -6.5,-13.5 parent: 179 -- proto: GasFilter - entities: - - uid: 480 + - uid: 1024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-3.5 + pos: -5.5,-13.5 parent: 179 -- proto: GasMixer - entities: - - uid: 747 + - uid: 1025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + pos: -5.5,-14.5 parent: 179 -- proto: GasOutletInjector +- proto: CableMVStack entities: - - uid: 429 + - uid: 325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-1.5 + pos: -6.665528,7.5601244 parent: 179 -- proto: GasPipeBend +- proto: CableTerminal entities: - - uid: 727 + - uid: 1022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: -6.5,-11.5 parent: 179 -- proto: GasPipeFourway +- proto: CapacitorStockPart entities: - - uid: 728 + - uid: 296 components: - type: Transform - pos: 5.5,-1.5 + pos: -4.3012447,8.817795 parent: 179 -- proto: GasPipeStraight - entities: - - uid: 749 + - uid: 700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 + pos: -3.8324947,8.786524 parent: 179 -- proto: GasPipeTJunction - entities: - - uid: 748 + - uid: 701 components: - type: Transform - pos: 5.5,-2.5 + pos: -3.2804112,8.786524 parent: 179 -- proto: GasPort - entities: - - uid: 457 + - uid: 704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: -4.8741612,8.817795 parent: 179 -- proto: GasPressurePump +- proto: CaptainIDCard entities: - - uid: 171 + - uid: 726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-3.5 + pos: 1.0820513,8.752605 parent: 179 -- proto: GasValve +- proto: CaptainSabre entities: - - uid: 168 + - uid: 381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: -3.277628,-2.15838 parent: 179 -- proto: GasVentPump +- proto: CarbonDioxideCanister entities: - - uid: 729 + - uid: 748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 + pos: 13.5,-4.5 parent: 179 -- proto: GasVentScrubber - entities: - - uid: 452 + - uid: 749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + pos: 12.5,-4.5 parent: 179 -- proto: GasVolumePump - entities: - - uid: 160 + - uid: 1316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 24.5,-21.5 parent: 179 -- proto: GeigerCounter +- proto: Catwalk entities: - - uid: 759 + - uid: 2 components: - type: Transform - pos: 1.760596,4.5697265 + pos: 13.5,24.5 parent: 179 -- proto: GravityGenerator - entities: - - uid: 744 + - uid: 7 components: - type: Transform - pos: 6.5,6.5 + pos: 6.5,24.5 parent: 179 -- proto: Grille - entities: - - uid: 108 + - uid: 20 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 + pos: 6.5,20.5 parent: 179 - - uid: 986 + - uid: 120 components: - type: Transform - pos: -0.5,-16.5 + rot: -1.5707963267948966 rad + pos: 6.5,18.5 parent: 179 - - uid: 987 + - uid: 246 components: - type: Transform - pos: -0.5,-15.5 + pos: -6.5,-6.5 parent: 179 - - uid: 988 + - uid: 247 components: - type: Transform - pos: -0.5,-14.5 + pos: -8.5,-6.5 parent: 179 - - uid: 1007 + - uid: 252 components: - type: Transform - pos: -3.5,-16.5 + pos: 4.5,-8.5 parent: 179 - - uid: 1008 + - uid: 269 components: - type: Transform - pos: -3.5,-15.5 + pos: 12.5,10.5 parent: 179 - - uid: 1009 + - uid: 286 components: - type: Transform - pos: -3.5,-14.5 + pos: 2.5,-11.5 parent: 179 - - uid: 1010 + - uid: 287 components: - type: Transform - pos: 2.5,-16.5 + pos: -4.5,-11.5 parent: 179 - - uid: 1011 + - uid: 308 components: - type: Transform - pos: 2.5,-15.5 + pos: -2.5,-12.5 parent: 179 - - uid: 1012 + - uid: 309 components: - type: Transform - pos: 2.5,-14.5 + pos: 1.5,-12.5 parent: 179 - - uid: 1089 + - uid: 333 components: - type: Transform - pos: 8.5,17.5 + pos: 4.5,-13.5 parent: 179 - - uid: 1090 + - uid: 334 components: - type: Transform - pos: 9.5,17.5 + pos: -5.5,-13.5 parent: 179 - - uid: 1091 + - uid: 438 components: - type: Transform - pos: 10.5,17.5 + rot: 3.141592653589793 rad + pos: -9.5,-0.5 parent: 179 - - uid: 1092 + - uid: 442 components: - type: Transform - pos: 10.5,16.5 + pos: -9.5,8.5 parent: 179 -- proto: Handcuffs - entities: - - uid: 331 + - uid: 514 components: - type: Transform - pos: -3.5805476,0.74100244 + pos: -10.5,8.5 parent: 179 -- proto: HandheldHealthAnalyzer - entities: - - uid: 513 + - uid: 541 components: - type: Transform - pos: -5.9808183,-3.6614444 + pos: -11.5,-6.5 parent: 179 -- proto: HoloFan - entities: - - uid: 142 + - uid: 542 components: - type: Transform - pos: -8.5,7.5 + pos: -9.5,-6.5 parent: 179 - missingComponents: - - TimedDespawn - - uid: 901 + - uid: 695 components: - type: Transform - pos: -10.5,7.5 + rot: 3.141592653589793 rad + pos: -8.5,8.5 parent: 179 - missingComponents: - - TimedDespawn - - uid: 902 +- proto: Chair + entities: + - uid: 580 components: - type: Transform - pos: -9.5,7.5 + rot: 1.5707963267948966 rad + pos: 14.5,6.5 parent: 179 - missingComponents: - - TimedDespawn -- proto: HolosignWetFloor - entities: - - uid: 848 + - uid: 581 components: - type: Transform - pos: -13.5,2.5 + rot: 1.5707963267948966 rad + pos: 14.5,8.5 parent: 179 - - type: Fixtures - fixtures: {} - missingComponents: - - TimedDespawn - - uid: 911 + - uid: 582 components: - type: Transform - pos: -13.5,1.5 + rot: 1.5707963267948966 rad + pos: 14.5,7.5 parent: 179 - - type: Fixtures - fixtures: {} - missingComponents: - - TimedDespawn -- proto: hydroponicsTray +- proto: ChairOfficeDark entities: - - uid: 756 + - uid: 380 components: - type: Transform - pos: 2.5,14.5 + rot: 3.1415926535897967 rad + pos: 0.5,-6.5 parent: 179 - - uid: 757 +- proto: ChairOfficeLight + entities: + - uid: 576 components: - type: Transform - pos: 2.5,15.5 + rot: 4.71238898038469 rad + pos: 19.5,4.5 parent: 179 -- proto: KitchenReagentGrinder - entities: - - uid: 731 + - uid: 577 components: - type: Transform - pos: 8.5,9.5 + rot: 3.141592653589793 rad + pos: 20.5,5.5 parent: 179 -- proto: LargeBeaker - entities: - - uid: 210 + - uid: 578 components: - type: Transform - pos: 4.3272614,9.338851 + rot: 4.71238898038469 rad + pos: 23.5,8.5 parent: 179 - - uid: 253 + - uid: 579 components: - type: Transform - pos: 23.494947,7.0422435 + pos: 24.5,5.5 parent: 179 - - uid: 402 +- proto: ChemDispenser + entities: + - uid: 583 components: - type: Transform - pos: 23.510572,7.7141185 + pos: 23.5,9.5 parent: 179 - - uid: 737 + - type: ContainerContainer + containers: + 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: 750 components: - type: Transform - pos: 4.2969,9.828774 + pos: 7.5,11.5 parent: 179 -- proto: LedLightTube +- proto: ChemicalPayload entities: - - uid: 481 + - uid: 432 components: - type: Transform - pos: -3.511025,-10.35149 + pos: 6.4651074,9.828774 parent: 179 -- proto: LockerBotanistFilled +- proto: ChemMaster entities: - - uid: 869 + - uid: 311 components: - type: Transform - pos: 2.5,16.5 + pos: 8.5,11.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChemistry +- proto: ChemMasterMachineCircuitboard entities: - - uid: 127 + - uid: 718 components: - type: Transform - pos: 27.5,6.5 + pos: -4.5458,10.514079 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChemistryFilled +- proto: CircuitImprinter entities: - - uid: 297 + - uid: 332 components: - type: Transform - pos: 7.5,9.5 + pos: -6.5,4.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerChiefEngineerFilled +- proto: ClosetEmergencyFilledRandom entities: - - uid: 447 + - uid: 349 components: - type: Transform - pos: 7.5,2.5 + pos: 1.5,-10.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 444 + - uid: 403 components: - type: Transform - pos: 7.5,3.5 + pos: 0.5,-10.5 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerEngineerFilled +- proto: ClosetToolFilled entities: - - uid: 490 + - uid: 524 components: - type: Transform - pos: 7.5,4.5 + pos: -11.5,-5.5 parent: 179 - type: EntityStorage air: @@ -3965,12 +3593,10 @@ entities: - 0 - 0 - 0 -- proto: LockerMedical - entities: - - uid: 128 + - uid: 525 components: - type: Transform - pos: 27.5,5.5 + pos: -11.5,-4.5 parent: 179 - type: EntityStorage air: @@ -3990,10 +3616,10 @@ entities: - 0 - 0 - 0 - - uid: 129 + - uid: 526 components: - type: Transform - pos: 29.5,-1.5 + pos: -11.5,-3.5 parent: 179 - type: EntityStorage air: @@ -4013,10 +3639,10 @@ entities: - 0 - 0 - 0 - - uid: 130 + - uid: 527 components: - type: Transform - pos: 30.5,-1.5 + pos: -11.5,-2.5 parent: 179 - type: EntityStorage air: @@ -4036,70 +3662,253 @@ entities: - 0 - 0 - 0 -- proto: LockerMedicalFilled +- proto: ClothingBeltChiefEngineerFilled entities: - - uid: 865 + - uid: 1573 components: - type: Transform - pos: -6.5,-3.5 + pos: 1.3037996,-5.2961445 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerMedicineFilled +- proto: ClothingBeltUtilityFilled entities: - - uid: 562 + - uid: 427 components: - type: Transform - pos: -5.5,-3.5 + pos: -1.895102,-10.33495 parent: 179 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 2.9923203 - - 11.2568245 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerSalvageSpecialistFilled + - uid: 428 + components: + - type: Transform + pos: -1.770102,-10.63182 + parent: 179 +- proto: ClothingHandsGlovesColorYellow entities: - - uid: 493 + - uid: 454 components: - type: Transform - pos: -10.5,4.5 + pos: -0.78741443,4.322194 parent: 179 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 +- proto: ClothingHeadHatWelding + entities: + - uid: 344 + components: + - type: Transform + pos: 0.7198646,4.374314 + parent: 179 +- proto: ClothingMaskBreath + entities: + - uid: 955 + components: + - type: Transform + pos: -10.595239,6.1907988 + parent: 179 +- proto: ClothingMaskGas + entities: + - uid: 425 + components: + - type: Transform + pos: -0.2880585,-10.69432 + parent: 179 +- proto: ClothingOuterHardsuitAtmos + entities: + - uid: 270 + components: + - type: Transform + pos: -10.5426235,5.472399 + parent: 179 +- proto: ClothingOuterVest + entities: + - uid: 426 + components: + - type: Transform + pos: -0.9130585,-10.66307 + parent: 179 +- proto: ClothingShoesBootsMag + entities: + - uid: 725 + components: + - type: Transform + pos: 0.47880077,8.073378 + parent: 179 +- proto: ClothingUniformJumpsuitEngineering + entities: + - uid: 424 + components: + - type: Transform + pos: -0.6474335,-10.27245 + parent: 179 +- proto: ClownPDA + entities: + - uid: 91 + components: + - type: Transform + pos: -15.5,2.5 + parent: 179 + - uid: 762 + components: + - type: Transform + pos: -14.5,1.5 + parent: 179 + - uid: 864 + components: + - type: Transform + pos: -14.5,2.5 + parent: 179 + - uid: 912 + components: + - type: Transform + pos: -15.5,1.5 + parent: 179 +- proto: ComputerAnalysisConsole + entities: + - uid: 1083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,23.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 1078: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerCargoOrders + entities: + - uid: 326 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 179 + - uid: 996 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 179 +- proto: ComputerCargoShuttle + entities: + - uid: 404 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 179 +- proto: ComputerMedicalRecords + entities: + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-5.5 + parent: 179 + - uid: 591 + components: + - type: Transform + pos: 21.5,5.5 + parent: 179 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,19.5 + parent: 179 +- proto: ComputerShuttleCargo + entities: + - uid: 994 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 179 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 179 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 1088 + components: + - type: Transform + pos: 13.5,16.5 + parent: 179 +- proto: ConveyorBelt + entities: + - uid: 195 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 179 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 179 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 179 + - uid: 677 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 179 + - uid: 716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,11.5 + parent: 179 + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 179 + - uid: 721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 179 + - uid: 985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 179 + - uid: 989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 179 + - uid: 990 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 179 + - uid: 991 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 179 +- proto: CrateEngineeringToolbox + entities: + - uid: 692 + components: + - type: Transform + pos: -0.5,3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 moles: - 2.9923203 - 11.2568245 @@ -4113,12 +3922,12 @@ entities: - 0 - 0 - 0 -- proto: LockerWeldingSuppliesFilled +- proto: CrateHydroponicsSeeds entities: - - uid: 871 + - uid: 754 components: - type: Transform - pos: 7.5,1.5 + pos: 2.5,12.5 parent: 179 - type: EntityStorage air: @@ -4138,3490 +3947,6113 @@ entities: - 0 - 0 - 0 -- proto: MachineAnomalyGenerator +- proto: CrateHydroponicsTools + entities: + - uid: 755 + components: + - type: Transform + pos: 2.5,13.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateMaterialSteel + entities: + - uid: 1258 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 179 + - uid: 1293 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 179 +- proto: CrateMedical + entities: + - uid: 131 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 132 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 1183 + components: + - type: Transform + pos: 9.5,25.5 + parent: 179 +- proto: Crowbar + entities: + - uid: 147 + components: + - type: Transform + pos: -2.172831,4.5306726 + parent: 179 + - uid: 423 + components: + - type: Transform + pos: -2.861032,-5.524786 + parent: 179 +- proto: DebugBatteryDischarger + entities: + - uid: 711 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 179 +- proto: DebugGenerator + entities: + - uid: 490 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 179 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 1198 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 179 +- proto: DefaultStationBeaconBotany + entities: + - uid: 1193 + components: + - type: Transform + pos: 3.5,15.5 + parent: 179 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 1195 + components: + - type: Transform + pos: 7.5,10.5 + parent: 179 +- proto: DefaultStationBeaconCommand + entities: + - uid: 1196 + components: + - type: Transform + pos: 0.5,8.5 + parent: 179 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 1172 + components: + - type: Transform + pos: 6.5,5.5 + parent: 179 +- proto: DefaultStationBeaconMedical + entities: + - uid: 1173 + components: + - type: Transform + pos: 19.5,5.5 + parent: 179 +- proto: DefaultStationBeaconScience + entities: + - uid: 1194 + components: + - type: Transform + pos: 12.5,20.5 + parent: 179 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 1197 + components: + - type: Transform + pos: -14.5,17.5 + parent: 179 +- proto: DefaultStationBeaconSupply + entities: + - uid: 1175 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 179 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 1174 + components: + - type: Transform + pos: -1.5,4.5 + parent: 179 +- proto: DisposalPipe + entities: + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 179 +- proto: DisposalTrunk + entities: + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 179 + - uid: 715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 179 +- proto: DisposalUnit + entities: + - uid: 719 + components: + - type: Transform + pos: -1.5,10.5 + parent: 179 +- proto: DrinkBeerglass + entities: + - uid: 688 + components: + - type: Transform + pos: 3.1981986,5.733985 + parent: 179 +- proto: DrinkColaCan + entities: + - uid: 690 + components: + - type: Transform + pos: 3.8231986,6.150942 + parent: 179 +- proto: Dropper + entities: + - uid: 730 + components: + - type: Transform + pos: 5.892191,9.4118185 + parent: 179 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 956 + components: + - type: Transform + pos: -10.505015,6.711994 + parent: 179 +- proto: ExGrenade + entities: + - uid: 433 + components: + - type: Transform + pos: -3.7704864,-1.6163371 + parent: 179 +- proto: ExplosivePayload + entities: + - uid: 668 + components: + - type: Transform + pos: 6.829691,9.4118185 + parent: 179 +- proto: FaxMachineCaptain + entities: + - uid: 967 + components: + - type: Transform + pos: 9.5,12.5 + parent: 179 +- proto: FaxMachineCentcom + entities: + - uid: 968 + components: + - type: Transform + pos: 11.5,12.5 + parent: 179 +- proto: FaxMachineSyndie + entities: + - uid: 969 + components: + - type: Transform + pos: 13.5,12.5 + parent: 179 +- proto: FireAxeCabinetFilled + entities: + - uid: 1574 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 179 +- proto: FireExtinguisher + entities: + - uid: 323 + components: + - type: Transform + pos: -1.297692,-5.396082 + parent: 179 + - uid: 868 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 179 +- proto: FlashlightLantern + entities: + - uid: 421 + components: + - type: Transform + pos: -1.934832,-5.154238 + parent: 179 + - uid: 422 + components: + - type: Transform + pos: 1.1350493,8.198464 + parent: 179 +- proto: FloorLavaEntity + entities: + - uid: 134 + components: + - type: Transform + pos: -13.5,-3.5 + parent: 179 + - uid: 135 + components: + - type: Transform + pos: -14.5,-3.5 + parent: 179 + - uid: 141 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 179 + - uid: 469 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 179 +- proto: FloorWaterEntity + entities: + - uid: 136 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 179 + - uid: 137 + components: + - type: Transform + pos: -12.5,-3.5 + parent: 179 +- proto: FoodApple + entities: + - uid: 16 + components: + - type: Transform + pos: 3.9853282,16.430082 + parent: 179 + - uid: 849 + components: + - type: Transform + pos: 3.7249117,16.242453 + parent: 179 + - uid: 866 + components: + - type: Transform + pos: 3.651995,16.55517 + parent: 179 +- proto: FoodBurgerBacon + entities: + - uid: 689 + components: + - type: Transform + pos: 3.3844857,6.0702233 + parent: 179 +- proto: FoodCarrot + entities: + - uid: 850 + components: + - type: Transform + pos: 3.6023045,15.67151 + parent: 179 + - uid: 851 + components: + - type: Transform + pos: 3.620745,15.015423 + parent: 179 + - uid: 863 + components: + - type: Transform + pos: 3.620745,14.389988 + parent: 179 +- proto: FoodPizzaPineapple + entities: + - uid: 687 + components: + - type: Transform + pos: 3.5215416,6.799056 + parent: 179 +- proto: FrezonCanister + entities: + - uid: 1308 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 179 + - uid: 1309 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 179 + - uid: 1318 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 179 +- proto: GasAnalyzer + entities: + - uid: 1571 + components: + - type: Transform + pos: 7.3675013,-6.725376 + parent: 179 +- proto: GasMinerAmmonia + entities: + - uid: 1204 + components: + - type: Transform + pos: 23.5,-19.5 + parent: 179 +- proto: GasMinerCarbonDioxide + entities: + - uid: 1205 + components: + - type: Transform + pos: 23.5,-21.5 + parent: 179 +- proto: GasMinerFrezon + entities: + - uid: 1223 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 179 +- proto: GasMinerNitrogenStation + entities: + - uid: 1222 + components: + - type: Transform + pos: 23.5,-9.5 + parent: 179 +- proto: GasMinerNitrousOxide + entities: + - uid: 1225 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 179 +- proto: GasMinerOxygenStation + entities: + - uid: 1199 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 179 +- proto: GasMinerPlasma + entities: + - uid: 1221 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 179 +- proto: GasMinerTritium + entities: + - uid: 1224 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 179 +- proto: GasMinerWaterVapor + entities: + - uid: 1202 + components: + - type: Transform + pos: 23.5,-23.5 + parent: 179 +- proto: GasMixer + entities: + - uid: 1480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 179 + - type: GasMixer + inletTwoConcentration: 0.20999998 + inletOneConcentration: 0.79 +- proto: GasOutletInjector + entities: + - uid: 406 + components: + - type: Transform + pos: 24.5,-21.5 + parent: 179 + - uid: 409 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 179 + - uid: 410 + components: + - type: Transform + pos: 24.5,-23.5 + parent: 179 + - uid: 411 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 179 + - uid: 413 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 179 + - uid: 414 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 179 + - uid: 429 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 179 + - uid: 444 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 179 + - uid: 447 + components: + - type: Transform + pos: 24.5,-13.5 + parent: 179 +- proto: GasPassiveVent + entities: + - uid: 1319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 179 + - uid: 1320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-21.5 + parent: 179 + - uid: 1321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 179 + - uid: 1322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-15.5 + parent: 179 + - uid: 1323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 179 + - uid: 1324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 179 + - uid: 1325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 179 + - uid: 1326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 179 + - uid: 1327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 179 + - uid: 1544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-26.5 + parent: 179 +- proto: GasPipeBend + entities: + - uid: 407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 179 + - uid: 408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 179 + - uid: 412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-8.5 + parent: 179 + - uid: 415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 179 + - uid: 418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 179 + - uid: 1439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 179 + - uid: 1440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-20.5 + parent: 179 + - uid: 1441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 179 + - uid: 1442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 179 + - uid: 1482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-7.5 + parent: 179 + - uid: 1542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 179 +- proto: GasPipeStraight + entities: + - uid: 1443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 179 + - uid: 1444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 179 + - uid: 1445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 + parent: 179 + - uid: 1446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 179 + - uid: 1447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-20.5 + parent: 179 + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 179 + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 179 + - uid: 1450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 179 + - uid: 1451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 179 + - uid: 1452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 179 + - uid: 1453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 179 + - uid: 1454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 + parent: 179 + - uid: 1455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 179 + - uid: 1456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-10.5 + parent: 179 + - uid: 1457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-12.5 + parent: 179 + - uid: 1458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-14.5 + parent: 179 + - uid: 1460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 179 + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 179 + - uid: 1483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 179 + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-8.5 + parent: 179 + - uid: 1485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-8.5 + parent: 179 + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-9.5 + parent: 179 + - uid: 1487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 179 + - uid: 1522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-21.5 + parent: 179 + - uid: 1523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 179 + - uid: 1524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 179 + - uid: 1525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 179 + - uid: 1526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-17.5 + parent: 179 + - uid: 1527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 179 + - uid: 1528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 179 + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-14.5 + parent: 179 + - uid: 1530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-12.5 + parent: 179 + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-13.5 + parent: 179 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-10.5 + parent: 179 + - uid: 1533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-11.5 + parent: 179 + - uid: 1534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 179 + - uid: 1535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 179 + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 179 + - uid: 1537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 179 + - uid: 1538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 179 + - uid: 1539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 179 + - uid: 1540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 179 + - uid: 1541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 179 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-25.5 + parent: 179 + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 179 + - uid: 1548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-22.5 + parent: 179 + - uid: 1549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-22.5 + parent: 179 + - uid: 1550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-22.5 + parent: 179 + - uid: 1551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 179 + - uid: 1552 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 179 +- proto: GasPipeTJunction + entities: + - uid: 1479 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 179 + - uid: 1481 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 179 + - uid: 1553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 179 +- proto: GasPressurePump + entities: + - uid: 1459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-7.5 + parent: 179 + - uid: 1462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 179 + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 179 + - uid: 1464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 179 + - uid: 1465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 179 + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 179 + - uid: 1467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-19.5 + parent: 179 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 179 + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 179 + - uid: 1470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 179 + - uid: 1471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 179 + - uid: 1472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-20.5 + parent: 179 + - uid: 1473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 179 + - uid: 1474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 179 + - uid: 1475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 179 + - uid: 1476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 179 + - uid: 1477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 179 + - uid: 1478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 179 +- proto: GasThermoMachineFreezer + entities: + - uid: 480 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 179 + - uid: 616 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 179 +- proto: GasThermoMachineHeater + entities: + - uid: 483 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 179 + - uid: 1568 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 179 +- proto: GasValve + entities: + - uid: 1545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-24.5 + parent: 179 +- proto: GasVentPump + entities: + - uid: 1521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 179 +- proto: GasVentScrubber + entities: + - uid: 1543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 179 +- proto: GeigerCounter + entities: + - uid: 759 + components: + - type: Transform + pos: 1.760596,4.5697265 + parent: 179 +- proto: GravityGenerator + entities: + - uid: 744 + components: + - type: Transform + pos: 6.5,6.5 + parent: 179 +- proto: Grille + entities: + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + - uid: 986 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 179 + - uid: 987 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 179 + - uid: 988 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 179 + - uid: 1007 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 179 + - uid: 1008 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 179 + - uid: 1009 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 179 + - uid: 1010 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 179 + - uid: 1011 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 179 + - uid: 1012 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 179 + - uid: 1089 + components: + - type: Transform + pos: 8.5,17.5 + parent: 179 + - uid: 1090 + components: + - type: Transform + pos: 9.5,17.5 + parent: 179 + - uid: 1091 + components: + - type: Transform + pos: 10.5,17.5 + parent: 179 + - uid: 1092 + components: + - type: Transform + pos: 10.5,16.5 + parent: 179 +- proto: Handcuffs + entities: + - uid: 331 + components: + - type: Transform + pos: -3.5805476,0.74100244 + parent: 179 +- proto: HandheldHealthAnalyzer + entities: + - uid: 513 + components: + - type: Transform + pos: -5.9808183,-3.6614444 + parent: 179 +- proto: HoloFan + entities: + - uid: 142 + components: + - type: Transform + pos: -8.5,7.5 + parent: 179 + - type: Fixtures + fixtures: {} + - type: Airtight + noAirWhenFullyAirBlocked: True + missingComponents: + - TimedDespawn + - uid: 901 + components: + - type: Transform + pos: -10.5,7.5 + parent: 179 + - type: Fixtures + fixtures: {} + - type: Airtight + noAirWhenFullyAirBlocked: True + missingComponents: + - TimedDespawn + - uid: 902 + components: + - type: Transform + pos: -9.5,7.5 + parent: 179 + - type: Fixtures + fixtures: {} + - type: Airtight + noAirWhenFullyAirBlocked: True + missingComponents: + - TimedDespawn +- proto: HolofanProjectorEmpty + entities: + - uid: 1569 + components: + - type: Transform + pos: 7.2439203,-7.545966 + parent: 179 +- proto: HolosignWetFloor + entities: + - uid: 848 + components: + - type: Transform + pos: -13.5,2.5 + parent: 179 + - type: Fixtures + fixtures: {} + missingComponents: + - TimedDespawn + - uid: 911 + components: + - type: Transform + pos: -13.5,1.5 + parent: 179 + - type: Fixtures + fixtures: {} + missingComponents: + - TimedDespawn +- proto: hydroponicsTray + entities: + - uid: 756 + components: + - type: Transform + pos: 2.5,14.5 + parent: 179 + - uid: 757 + components: + - type: Transform + pos: 2.5,15.5 + parent: 179 +- proto: Igniter + entities: + - uid: 728 + components: + - type: Transform + pos: 13.546334,-14.688479 + parent: 179 +- proto: KitchenReagentGrinder + entities: + - uid: 731 + components: + - type: Transform + pos: 8.5,9.5 + parent: 179 +- proto: LargeBeaker + entities: + - uid: 210 + components: + - type: Transform + pos: 4.3272614,9.338851 + parent: 179 + - uid: 253 + components: + - type: Transform + pos: 23.494947,7.0422435 + parent: 179 + - uid: 402 + components: + - type: Transform + pos: 23.510572,7.7141185 + parent: 179 + - uid: 737 + components: + - type: Transform + pos: 4.2969,9.828774 + parent: 179 +- proto: LedLightTube + entities: + - uid: 481 + components: + - type: Transform + pos: -3.511025,-10.35149 + parent: 179 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 1278 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 179 +- proto: LockerBotanistFilled + entities: + - uid: 869 + components: + - type: Transform + pos: 2.5,16.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChemistry + entities: + - uid: 127 + components: + - type: Transform + pos: 27.5,6.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChemistryFilled + entities: + - uid: 297 + components: + - type: Transform + pos: 7.5,9.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerChiefEngineerFilledHardsuit + entities: + - uid: 1564 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 179 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 405 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 179 +- proto: LockerEngineerFilledHardsuit + entities: + - uid: 458 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 179 +- proto: LockerMedical + entities: + - uid: 128 + components: + - type: Transform + pos: 27.5,5.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 129 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 130 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedicalFilled + entities: + - uid: 865 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerMedicineFilled + entities: + - uid: 562 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 179 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 493 + components: + - type: Transform + pos: -10.5,4.5 + parent: 179 + - type: Lock + locked: False + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 2.9923203 + - 11.2568245 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 457 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 179 +- proto: MachineAnomalyGenerator + entities: + - uid: 1071 + components: + - type: Transform + pos: 16.5,25.5 + parent: 179 +- proto: MachineAnomalyVessel + entities: + - uid: 1087 + components: + - type: Transform + pos: 15.5,19.5 + parent: 179 +- proto: MachineArtifactAnalyzer + entities: + - uid: 1078 + components: + - type: Transform + pos: 12.5,24.5 + parent: 179 +- proto: MachineFrame + entities: + - uid: 533 + components: + - type: Transform + pos: -5.5,10.5 + parent: 179 +- proto: MedicalScanner + entities: + - uid: 592 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 179 + - type: ContainerContainer + containers: + MedicalScanner-bodyContainer: !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: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 593 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 179 + - type: ContainerContainer + containers: + MedicalScanner-bodyContainer: !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: [] + scanner-bodyContainer: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: MedkitFilled + entities: + - uid: 153 + components: + - type: Transform + pos: 13.632214,1.5673001 + parent: 179 + - uid: 154 + components: + - type: Transform + pos: 13.460339,0.6141751 + parent: 179 + - uid: 321 + components: + - type: Transform + pos: 3.8440318,4.425983 + parent: 179 +- proto: MicroManipulatorStockPart + entities: + - uid: 455 + components: + - type: Transform + pos: -6.337244,8.838643 + parent: 179 + - uid: 456 + components: + - type: Transform + pos: -5.920577,8.817795 + parent: 179 + - uid: 484 + components: + - type: Transform + pos: -5.5039105,8.838643 + parent: 179 + - uid: 712 + components: + - type: Transform + pos: -6.7434506,8.817795 + parent: 179 + - uid: 959 + components: + - type: Transform + pos: -4.752078,10.904018 + parent: 179 +- proto: ModularGrenade + entities: + - uid: 435 + components: + - type: Transform + pos: 6.829691,9.860046 + parent: 179 +- proto: MopBucket + entities: + - uid: 696 + components: + - type: Transform + pos: 7.5,16.5 + parent: 179 +- proto: MopItem + entities: + - uid: 328 + components: + - type: Transform + pos: 7.6382103,16.08618 + parent: 179 + - type: SolutionContainerManager + solutions: + absorbed: + temperature: 293.15 + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: Water + Quantity: 25 +- proto: Multitool + entities: + - uid: 307 + components: + - type: Transform + pos: -1.249865,-10.43489 + parent: 179 + - uid: 430 + components: + - type: Transform + pos: -0.6298993,4.7431083 + parent: 179 + - type: NetworkConfigurator + devices: + 'UID: 31739': 801 +- proto: NitrogenCanister + entities: + - uid: 871 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 179 + - uid: 876 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 179 + - uid: 1315 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 179 +- proto: NitrousOxideCanister + entities: + - uid: 617 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 179 + - uid: 1302 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 179 + - uid: 1314 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 179 +- proto: Ointment + entities: + - uid: 148 + components: + - type: Transform + pos: 18.77326,6.653532 + parent: 179 + - uid: 149 + components: + - type: Transform + pos: 18.49201,6.059782 + parent: 179 +- proto: OxygenCanister + entities: + - uid: 747 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 179 + - uid: 875 + components: + - type: Transform + pos: 12.5,-3.5 + parent: 179 + - uid: 1310 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 179 +- proto: PaperBin10 + entities: + - uid: 977 + components: + - type: Transform + pos: 10.5,12.5 + parent: 179 +- proto: PartRodMetal + entities: + - uid: 133 + components: + - type: Transform + pos: -3.4717777,7.672426 + parent: 179 +- proto: Pen + entities: + - uid: 978 + components: + - type: Transform + pos: 10.893699,12.7794075 + parent: 179 + - uid: 979 + components: + - type: Transform + pos: 10.862433,12.602201 + parent: 179 +- proto: PlasmaCanister + entities: + - uid: 255 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 179 + - uid: 256 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 179 + - uid: 1311 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 179 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 997 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 179 + - uid: 998 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 179 + - uid: 999 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 179 + - uid: 1000 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 179 +- proto: PlayerStationAi + entities: + - uid: 14 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 179 +- proto: PowerCellAntiqueProto + entities: + - uid: 1570 + components: + - type: Transform + pos: 7.5772533,-7.233466 + parent: 179 +- proto: PowerCellHigh + entities: + - uid: 567 + components: + - type: Transform + pos: -4.76583,8.265328 + parent: 179 +- proto: PowerCellHyper + entities: + - uid: 703 + components: + - type: Transform + pos: -4.3179135,8.275752 + parent: 179 +- proto: PowerCellMedium + entities: + - uid: 186 + components: + - type: Transform + pos: -2.67511,-10.351 + parent: 179 + - uid: 187 + components: + - type: Transform + pos: -2.55011,-10.6635 + parent: 179 + - uid: 360 + components: + - type: Transform + pos: -3.7970803,8.275752 + parent: 179 +- proto: PowerCellRecharger + entities: + - uid: 709 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 179 +- proto: PowerCellSmall + entities: + - uid: 705 + components: + - type: Transform + pos: -3.3182633,8.234056 + parent: 179 +- proto: Poweredlight + entities: + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 179 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-5.5 + parent: 179 + - uid: 660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 663 + components: + - type: Transform + pos: 22.5,2.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 682 + components: + - type: Transform + pos: 13.5,2.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 1075 + components: + - type: Transform + pos: 16.5,27.5 + parent: 179 + - uid: 1076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,22.5 + parent: 179 + - uid: 1425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 179 + - uid: 1426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 179 + - uid: 1427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 179 + - uid: 1428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 179 + - uid: 1429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-18.5 + parent: 179 + - uid: 1430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 179 + - uid: 1431 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 179 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 179 + - uid: 1433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 179 + - uid: 1434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-15.5 + parent: 179 + - uid: 1435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 179 + - uid: 1436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-7.5 + parent: 179 + - uid: 1437 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 179 +- proto: PoweredlightExterior + entities: + - uid: 1557 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 179 +- proto: PoweredLightPostSmall + entities: + - uid: 1438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 179 +- proto: PoweredSmallLight + entities: + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,26.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,24.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 388 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 417 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 179 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 179 +- proto: Protolathe + entities: + - uid: 12 + components: + - type: Transform + pos: 13.5,21.5 + parent: 179 + - uid: 384 + components: + - type: Transform + pos: -6.5,6.5 + parent: 179 +- proto: Railing + entities: + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,9.5 + parent: 179 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 179 + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,11.5 + parent: 179 + - uid: 929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,12.5 + parent: 179 + - uid: 930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,13.5 + parent: 179 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,14.5 + parent: 179 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,15.5 + parent: 179 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 179 + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 179 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 179 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 179 + - uid: 937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 179 + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 179 + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 179 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 179 + - uid: 941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 179 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 179 + - uid: 943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 179 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 179 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,17.5 + parent: 179 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 179 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,17.5 + parent: 179 + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 179 +- proto: RailingCornerSmall + entities: + - uid: 919 + components: + - type: Transform + pos: -14.5,9.5 + parent: 179 +- proto: RCDExperimental + entities: + - uid: 1575 + components: + - type: Transform + pos: 1.6787996,-5.6922684 + parent: 179 +- proto: ReinforcedWindow + entities: + - uid: 1084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,23.5 + parent: 179 + - uid: 1093 + components: + - type: Transform + pos: 8.5,17.5 + parent: 179 + - uid: 1094 + components: + - type: Transform + pos: 9.5,17.5 + parent: 179 + - uid: 1095 + components: + - type: Transform + pos: 10.5,17.5 + parent: 179 + - uid: 1096 + components: + - type: Transform + pos: 10.5,16.5 + parent: 179 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 17 + components: + - type: Transform + pos: 8.5,18.5 + parent: 179 +- proto: ResearchDiskDebug + entities: + - uid: 54 + components: + - type: Transform + pos: 9.532393,18.446417 + parent: 179 +- proto: RubberStampCaptain + entities: + - uid: 982 + components: + - type: Transform + pos: 12.800895,12.664745 + parent: 179 +- proto: RubberStampCentcom + entities: + - uid: 980 + components: + - type: Transform + pos: 12.186007,12.716865 + parent: 179 +- proto: RubberStampSyndicate + entities: + - uid: 981 + components: + - type: Transform + pos: 12.436131,12.550082 + parent: 179 +- proto: Screen + entities: + - uid: 1192 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 179 +- proto: Screwdriver + entities: + - uid: 431 + components: + - type: Transform + pos: -1.235331,4.739151 + parent: 179 +- proto: SeedExtractor + entities: + - uid: 65 + components: + - type: Transform + pos: 2.5,17.5 + parent: 179 +- proto: SheetGlass + entities: + - uid: 354 + components: + - type: Transform + pos: 8.57603,21.566113 + parent: 179 + - uid: 479 + components: + - type: Transform + pos: -5.13758,7.5586076 + parent: 179 + - uid: 529 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 179 + - uid: 564 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 179 + - uid: 565 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 179 + - uid: 566 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 179 +- proto: SheetGlass1 + entities: + - uid: 960 + components: + - type: Transform + pos: -3.981244,10.799851 + parent: 179 +- proto: SheetPGlass + entities: + - uid: 416 + components: + - type: Transform + pos: -0.5,8.5 + parent: 179 +- proto: SheetPlasma + entities: + - uid: 1077 + components: + - type: Transform + pos: 17.485096,24.503635 + parent: 179 +- proto: SheetPlasteel + entities: + - uid: 478 + components: + - type: Transform + pos: -4.0129576,7.6107273 + parent: 179 +- proto: SheetPlastic + entities: + - uid: 79 + components: + - type: Transform + pos: 8.951309,21.511908 + parent: 179 + - uid: 181 + components: + - type: Transform + pos: -4.54383,7.579455 + parent: 179 +- proto: SheetRPGlass + entities: + - uid: 182 + components: + - type: Transform + pos: -0.5,7.5 + parent: 179 +- proto: SheetSteel + entities: + - uid: 205 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 179 + - uid: 305 + components: + - type: Transform + pos: 9.435405,21.503613 + parent: 179 + - uid: 382 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 179 + - uid: 473 + components: + - type: Transform + pos: -5.6834707,7.529523 + parent: 179 + - uid: 543 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 179 + - uid: 544 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 179 +- proto: SignalButton + entities: + - uid: 1013 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 202: + - Pressed: Toggle + 984: + - Pressed: Toggle + - uid: 1014 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 697: + - Pressed: Toggle + 698: + - Pressed: Toggle + - uid: 1560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-12.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 728: + - Pressed: Trigger +- proto: SignAtmos + entities: + - uid: 1301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 179 + - uid: 1558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-6.5 + parent: 179 +- proto: SignCargoDock + entities: + - uid: 1046 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 179 +- proto: SignCryogenics + entities: + - uid: 1298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 179 +- proto: SignDanger entities: - - uid: 1071 + - uid: 1203 components: - type: Transform - pos: 16.5,25.5 + rot: -1.5707963267948966 rad + pos: 25.5,-19.5 parent: 179 -- proto: MachineAnomalyVessel +- proto: SignFlammable entities: - - uid: 1087 + - uid: 1297 components: - type: Transform - pos: 15.5,19.5 + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 parent: 179 -- proto: MachineArtifactAnalyzer - entities: - - uid: 1078 + - uid: 1299 components: - type: Transform - pos: 12.5,24.5 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 parent: 179 -- proto: MachineFrame +- proto: SignSpace entities: - - uid: 533 + - uid: 1291 components: - type: Transform - pos: -5.5,10.5 + pos: 6.5,-19.5 parent: 179 -- proto: MedicalScanner + - uid: 1555 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 179 + - uid: 1563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-25.5 + parent: 179 +- proto: SmallLight entities: - - uid: 592 + - uid: 1048 components: - type: Transform - pos: 18.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 179 - - type: ContainerContainer - containers: - MedicalScanner-bodyContainer: !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: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 593 + - uid: 1049 components: - type: Transform - pos: 18.5,-5.5 + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 parent: 179 - - type: ContainerContainer - containers: - MedicalScanner-bodyContainer: !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: [] - scanner-bodyContainer: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: MedkitFilled +- proto: SMESBasic entities: - - uid: 153 + - uid: 1017 components: - type: Transform - pos: 13.632214,1.5673001 + pos: -6.5,-12.5 parent: 179 - - uid: 154 +- proto: SodaDispenser + entities: + - uid: 751 components: - type: Transform - pos: 13.460339,0.6141751 + pos: 8.5,12.5 parent: 179 - - uid: 321 +- proto: SpawnMobCorgiMouse + entities: + - uid: 1050 components: - type: Transform - pos: 3.8440318,4.425983 + pos: 3.5,8.5 parent: 179 -- proto: MicroManipulatorStockPart +- proto: SpawnMobCrabAtmos entities: - - uid: 455 + - uid: 729 components: - type: Transform - pos: -6.337244,8.838643 + pos: 15.5,-10.5 parent: 179 - - uid: 456 +- proto: SpawnMobHuman + entities: + - uid: 138 components: - type: Transform - pos: -5.920577,8.817795 + pos: -6.5,-0.5 parent: 179 - - uid: 484 + - uid: 139 components: - type: Transform - pos: -5.5039105,8.838643 + pos: -6.5,0.5 parent: 179 - - uid: 712 + - uid: 140 components: - type: Transform - pos: -6.7434506,8.817795 + pos: 3.5,7.5 parent: 179 - - uid: 959 +- proto: SpawnPointCaptain + entities: + - uid: 954 components: - type: Transform - pos: -4.752078,10.904018 + pos: -4.5,4.5 parent: 179 -- proto: ModularGrenade +- proto: SpawnPointLatejoin entities: - - uid: 435 + - uid: 961 components: - type: Transform - pos: 6.829691,9.860046 + pos: -3.5,3.5 parent: 179 -- proto: MopBucket +- proto: SpawnPointObserver entities: - - uid: 696 + - uid: 679 components: - type: Transform - pos: 7.5,16.5 + pos: -3.5,4.5 parent: 179 -- proto: MopItem +- proto: Spear entities: - - uid: 328 + - uid: 185 components: - type: Transform - pos: 7.6382103,16.08618 + pos: -3.4579864,-1.9811735 parent: 179 - - type: SolutionContainerManager - solutions: - absorbed: - temperature: 293.15 - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: Water - Quantity: 25 -- proto: Multitool +- proto: SprayBottleWater entities: - - uid: 307 + - uid: 903 components: - type: Transform - pos: -1.249865,-10.43489 + pos: 6.985283,16.424004 parent: 179 - - uid: 430 +- proto: SprayPainter + entities: + - uid: 1572 components: - type: Transform - pos: -0.6298993,4.7431083 + pos: 7.5948057,-5.356733 parent: 179 - - type: NetworkConfigurator - devices: - 'UID: 31739': 801 -- proto: NitrogenCanister +- proto: Stimpack entities: - - uid: 459 + - uid: 462 components: - type: Transform - pos: 7.5,-1.5 + pos: 3.6877818,5.312015 parent: 179 -- proto: Ointment +- proto: Stool entities: - - uid: 148 + - uid: 383 components: - type: Transform - pos: 18.77326,6.653532 + pos: -1.5,-9.5 parent: 179 - - uid: 149 + - uid: 387 components: - type: Transform - pos: 18.49201,6.059782 + rot: 3.141592653589793 rad + pos: -2.5,-6.5 parent: 179 -- proto: OxygenCanister +- proto: StorageCanister entities: - - uid: 340 + - uid: 1285 components: - type: Transform - pos: 7.5,-3.5 + pos: 10.5,-6.5 parent: 179 -- proto: PaperBin10 + - uid: 1286 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 179 + - uid: 1287 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 179 + - uid: 1288 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 179 +- proto: Stunbaton entities: - - uid: 977 + - uid: 434 components: - type: Transform - pos: 10.5,12.5 + pos: -3.1734612,-2.6066077 parent: 179 -- proto: PartRodMetal +- proto: SubstationBasic entities: - - uid: 133 + - uid: 1018 components: - type: Transform - pos: -3.4717777,7.672426 + pos: -6.5,-13.5 parent: 179 -- proto: Pen +- proto: SurveillanceCameraGeneral entities: - - uid: 978 + - uid: 1186 components: - type: Transform - pos: 10.893699,12.7794075 + rot: 3.141592653589793 rad + pos: -2.5,10.5 parent: 179 - - uid: 979 + - uid: 1188 components: - type: Transform - pos: 10.862433,12.602201 + rot: -1.5707963267948966 rad + pos: 15.5,21.5 parent: 179 -- proto: PlasmaCanister + - uid: 1190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 179 +- proto: SurveillanceCameraRouterGeneral entities: - - uid: 461 + - uid: 1189 components: - type: Transform - pos: 7.5,-2.5 + pos: 9.5,24.5 parent: 179 -- proto: PlasticFlapsAirtightClear +- proto: Syringe entities: - - uid: 997 + - uid: 460 components: - type: Transform - pos: -2.5,-16.5 + pos: 3.2502818,4.5823417 parent: 179 - - uid: 998 + - uid: 738 components: - type: Transform - pos: -2.5,-14.5 + pos: 5.767191,9.787079 parent: 179 - - uid: 999 +- proto: Table + entities: + - uid: 63 components: - type: Transform - pos: 1.5,-16.5 + pos: 9.5,21.5 parent: 179 - - uid: 1000 + - uid: 64 components: - type: Transform - pos: 1.5,-14.5 + pos: 10.5,21.5 parent: 179 -- proto: PlayerStationAi - entities: - - uid: 14 + - uid: 67 components: - type: Transform - pos: -5.5,-5.5 + pos: 8.5,21.5 parent: 179 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 1016 + - uid: 76 components: - type: Transform - pos: -6.5,-11.5 + pos: 7.5,-7.5 parent: 179 -- proto: PowerCellHigh - entities: - - uid: 567 + - uid: 92 components: - type: Transform - pos: -4.76583,8.265328 + pos: 11.5,21.5 parent: 179 -- proto: PowerCellHyper - entities: - - uid: 703 + - uid: 143 components: - type: Transform - pos: -4.3179135,8.275752 + pos: 33.5,-3.5 parent: 179 -- proto: PowerCellMedium - entities: - - uid: 186 + - uid: 144 components: - type: Transform - pos: -2.67511,-10.351 + pos: 33.5,-2.5 parent: 179 - - uid: 187 + - uid: 145 components: - type: Transform - pos: -2.55011,-10.6635 + pos: 33.5,-1.5 parent: 179 - - uid: 360 + - uid: 161 components: - type: Transform - pos: -3.7970803,8.275752 + pos: 24.5,-5.5 parent: 179 -- proto: PowerCellRecharger - entities: - - uid: 709 + - uid: 162 components: - type: Transform - pos: -1.5,-3.5 + pos: 23.5,-5.5 parent: 179 -- proto: PowerCellSmall - entities: - - uid: 705 + - uid: 172 components: - type: Transform - pos: -3.3182633,8.234056 + rot: -1.5707963267948966 rad + pos: 4.5,9.5 parent: 179 -- proto: Poweredlight - entities: - - uid: 93 + - uid: 180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-5.5 + pos: -4.5,10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 536 + - uid: 262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 + pos: -3.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 660 + - uid: 263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,1.5 + pos: -2.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 661 + - uid: 264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,7.5 + pos: -1.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 663 + - uid: 265 components: - type: Transform - pos: 22.5,2.5 + pos: -0.5,-5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 666 + - uid: 267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 + pos: 23.5,5.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 670 + - uid: 268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,18.5 + pos: 23.5,6.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 673 + - uid: 298 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-5.5 + pos: 6.5,9.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 674 + - uid: 299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-5.5 + rot: -1.5707963267948966 rad + pos: 5.5,9.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 675 + - uid: 300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 + rot: -1.5707963267948966 rad + pos: 8.5,9.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 676 + - uid: 312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 + pos: -3.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 678 + - uid: 313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 + pos: -2.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 680 + - uid: 314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-5.5 + pos: -1.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 681 + - uid: 315 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-5.5 + pos: -0.5,-10.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 682 + - uid: 355 components: - type: Transform - pos: 13.5,2.5 + pos: -6.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 683 + - uid: 356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,4.5 + pos: -5.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1075 + - uid: 357 components: - type: Transform - pos: 16.5,27.5 + pos: -4.5,7.5 parent: 179 - - uid: 1076 + - uid: 358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,22.5 + pos: -3.5,7.5 parent: 179 -- proto: PoweredSmallLight - entities: - - uid: 163 + - uid: 361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,26.5 + pos: -0.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 166 + - uid: 362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,24.5 + pos: 0.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 167 + - uid: 363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 + pos: 1.5,7.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 388 + - uid: 366 components: - type: Transform - pos: 0.5,-5.5 + pos: -2.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 417 + - uid: 367 components: - type: Transform - pos: -4.5,-5.5 + pos: -1.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 483 + - uid: 368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 + pos: -0.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 534 + - uid: 371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-5.5 + pos: 1.5,4.5 parent: 179 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: Protolathe - entities: - - uid: 12 + - uid: 385 components: - type: Transform - pos: 13.5,21.5 + pos: -3.5,-2.5 parent: 179 - - uid: 384 + - uid: 386 components: - type: Transform - pos: -6.5,6.5 + pos: -3.5,-1.5 parent: 179 -- proto: Railing - entities: - - uid: 665 + - uid: 440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 + pos: 0.5,4.5 parent: 179 - - uid: 927 + - uid: 445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 + pos: -3.5,-0.5 parent: 179 - - uid: 928 + - uid: 448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 + pos: 3.5,5.5 parent: 179 - - uid: 929 + - uid: 452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,12.5 + pos: 1.5,-5.5 parent: 179 - - uid: 930 + - uid: 461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,13.5 + pos: 7.5,-6.5 parent: 179 - - uid: 931 + - uid: 465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,14.5 + pos: 1.5,8.5 parent: 179 - - uid: 932 + - uid: 466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,15.5 + pos: 0.5,8.5 parent: 179 - - uid: 933 + - uid: 467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,16.5 + pos: -3.5,8.5 parent: 179 - - uid: 934 + - uid: 468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,17.5 + pos: -0.5,8.5 parent: 179 - - uid: 935 + - uid: 470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 + pos: -6.5,8.5 parent: 179 - - uid: 936 + - uid: 471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,17.5 + pos: -5.5,8.5 parent: 179 - - uid: 937 + - uid: 472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,17.5 + pos: -4.5,8.5 parent: 179 - - uid: 938 + - uid: 515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,17.5 + pos: -15.5,-5.5 parent: 179 - - uid: 939 + - uid: 516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 + pos: -15.5,-1.5 parent: 179 - - uid: 940 + - uid: 520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 + pos: -15.5,-0.5 parent: 179 - - uid: 941 + - uid: 559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,17.5 + pos: -15.5,-4.5 parent: 179 - - uid: 942 + - uid: 560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 + pos: -15.5,-3.5 parent: 179 - - uid: 943 + - uid: 568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 + pos: 18.5,4.5 parent: 179 - - uid: 944 + - uid: 569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,17.5 + pos: 21.5,6.5 parent: 179 - - uid: 945 + - uid: 570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,17.5 + pos: 20.5,6.5 parent: 179 - - uid: 946 + - uid: 571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 + pos: 18.5,6.5 parent: 179 - - uid: 947 + - uid: 572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,17.5 + pos: 19.5,6.5 parent: 179 - - uid: 948 + - uid: 573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 + pos: 18.5,5.5 parent: 179 -- proto: RailingCornerSmall - entities: - - uid: 919 + - uid: 574 components: - type: Transform - pos: -14.5,9.5 + pos: 22.5,8.5 parent: 179 -- proto: ReinforcedWindow - entities: - - uid: 1084 + - uid: 575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,23.5 + pos: 24.5,4.5 parent: 179 - - uid: 1093 + - uid: 584 components: - type: Transform - pos: 8.5,17.5 + pos: 23.5,7.5 parent: 179 - - uid: 1094 + - uid: 586 components: - type: Transform - pos: 9.5,17.5 + pos: 25.5,10.5 parent: 179 - - uid: 1095 + - uid: 587 components: - type: Transform - pos: 10.5,17.5 + pos: 23.5,10.5 parent: 179 - - uid: 1096 + - uid: 588 components: - type: Transform - pos: 10.5,16.5 + pos: 24.5,10.5 parent: 179 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 17 + - uid: 589 components: - type: Transform - pos: 8.5,18.5 + pos: 26.5,10.5 parent: 179 -- proto: ResearchDiskDebug - entities: - - uid: 54 + - uid: 590 components: - type: Transform - pos: 9.532393,18.446417 + pos: 27.5,10.5 parent: 179 -- proto: RubberStampCaptain - entities: - - uid: 982 + - uid: 594 components: - type: Transform - pos: 12.800895,12.664745 + pos: 13.5,2.5 parent: 179 -- proto: RubberStampCentcom - entities: - - uid: 980 + - uid: 595 components: - type: Transform - pos: 12.186007,12.716865 + pos: 13.5,0.5 parent: 179 -- proto: RubberStampSyndicate - entities: - - uid: 981 + - uid: 596 components: - type: Transform - pos: 12.436131,12.550082 + pos: 13.5,1.5 parent: 179 -- proto: Screen - entities: - - uid: 1192 + - uid: 684 components: - type: Transform - pos: 4.5,-14.5 + pos: -3.5,0.5 parent: 179 -- proto: Screwdriver - entities: - - uid: 431 + - uid: 685 components: - type: Transform - pos: -1.235331,4.739151 + pos: 3.5,4.5 parent: 179 -- proto: SeedExtractor - entities: - - uid: 65 + - uid: 686 components: - type: Transform - pos: 2.5,17.5 + pos: 3.5,6.5 parent: 179 -- proto: SheetGlass - entities: - - uid: 354 + - uid: 706 components: - type: Transform - pos: 8.57603,21.566113 + pos: -1.5,-3.5 parent: 179 - - uid: 479 + - uid: 707 components: - type: Transform - pos: -5.13758,7.5586076 + pos: -0.5,-3.5 parent: 179 - - uid: 529 + - uid: 710 components: - type: Transform - pos: -15.5,-3.5 + pos: 0.5,-3.5 parent: 179 - - uid: 564 + - uid: 1561 components: - type: Transform - pos: -15.5,-1.5 + pos: 7.5,-5.5 parent: 179 - - uid: 565 +- proto: TableGlass + entities: + - uid: 964 components: - type: Transform - pos: -15.5,-1.5 + pos: 9.5,12.5 parent: 179 - - uid: 566 + - uid: 965 components: - type: Transform - pos: -15.5,-3.5 + pos: 11.5,12.5 parent: 179 -- proto: SheetGlass1 - entities: - - uid: 960 + - uid: 966 components: - type: Transform - pos: -3.981244,10.799851 + pos: 13.5,12.5 parent: 179 -- proto: SheetPGlass - entities: - - uid: 416 + - uid: 975 components: - type: Transform - pos: -0.5,8.5 + pos: 10.5,12.5 parent: 179 -- proto: SheetPlasma - entities: - - uid: 1077 + - uid: 976 components: - type: Transform - pos: 17.485096,24.503635 + pos: 12.5,12.5 parent: 179 -- proto: SheetPlasteel +- proto: TargetClown entities: - - uid: 478 + - uid: 459 components: - type: Transform - pos: -4.0129576,7.6107273 + pos: 7.5,-0.5 parent: 179 -- proto: SheetPlastic +- proto: TargetHuman entities: - - uid: 79 + - uid: 159 components: - type: Transform - pos: 8.951309,21.511908 + pos: -6.5,-1.5 parent: 179 - - uid: 181 + - uid: 248 components: - type: Transform - pos: -4.54383,7.579455 + pos: 7.5,1.5 parent: 179 -- proto: SheetRPGlass +- proto: TargetSyndicate entities: - - uid: 182 + - uid: 613 components: - type: Transform - pos: -0.5,7.5 + pos: 7.5,-2.5 parent: 179 -- proto: SheetSteel +- proto: TegCenter entities: - - uid: 205 + - uid: 1576 components: - type: Transform - pos: -15.5,-5.5 + rot: 1.5707963267948966 rad + pos: 13.5,-18.5 parent: 179 - - uid: 305 +- proto: TegCirculator + entities: + - uid: 1577 components: - type: Transform - pos: 9.435405,21.503613 + pos: 14.5,-18.5 parent: 179 - - uid: 382 + - type: PointLight + color: '#FF3300FF' + - uid: 1578 components: - type: Transform - pos: -15.5,-5.5 + rot: 3.141592653589793 rad + pos: 12.5,-18.5 parent: 179 - - uid: 473 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerFilled + entities: + - uid: 963 components: - type: Transform - pos: -5.6834707,7.529523 + pos: -3.5,10.5 parent: 179 - - uid: 543 +- proto: TimerTrigger + entities: + - uid: 482 components: - type: Transform - pos: -15.5,-4.5 + pos: 6.413024,9.39097 parent: 179 - - uid: 544 +- proto: ToolboxElectricalFilled + entities: + - uid: 365 components: - type: Transform - pos: -15.5,-4.5 + pos: 0.4993378,3.429311 parent: 179 -- proto: SignalButton - entities: - - uid: 1013 + - uid: 419 components: - type: Transform - pos: -4.5,-14.5 + pos: -0.8099712,-5.21454 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 202: - - Pressed: Toggle - 984: - - Pressed: Toggle - - uid: 1014 + - uid: 420 components: - type: Transform - pos: 3.5,-14.5 + pos: -0.5597038,-5.679647 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 697: - - Pressed: Toggle - 698: - - Pressed: Toggle -- proto: SignCargoDock +- proto: ToolboxMechanicalFilled entities: - - uid: 1046 + - uid: 364 components: - type: Transform - pos: 4.5,-4.5 + pos: 1.452203,3.4605832 parent: 179 -- proto: SmallLight +- proto: ToyRubberDuck entities: - - uid: 1048 + - uid: 723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 + pos: -1.6653601,11.616664 parent: 179 - - uid: 1049 +- proto: trayScanner + entities: + - uid: 758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: 1.354346,4.548879 parent: 179 -- proto: SMESBasic +- proto: TritiumCanister entities: - - uid: 1017 + - uid: 254 components: - type: Transform - pos: -6.5,-12.5 + pos: 13.5,-2.5 parent: 179 -- proto: SodaDispenser - entities: - - uid: 751 + - uid: 619 components: - type: Transform - pos: 8.5,12.5 + pos: 12.5,-2.5 parent: 179 -- proto: SpawnMobHuman - entities: - - uid: 138 + - uid: 1312 components: - type: Transform - pos: -6.5,-0.5 + pos: 24.5,-13.5 parent: 179 - - uid: 139 +- proto: TwoWayLever + entities: + - uid: 699 components: - type: Transform - pos: -6.5,0.5 + pos: -3.5,-13.5 parent: 179 - - uid: 140 + - type: DeviceLinkSource + linkedPorts: + 990: + - Left: Forward + - Right: Reverse + - Middle: Off + 195: + - Left: Forward + - Right: Reverse + - Middle: Off + 991: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 722 components: - type: Transform - pos: 3.5,7.5 + pos: 1.5,11.5 parent: 179 -- proto: SpawnMobCorgiMouse - entities: - - uid: 1050 + - type: DeviceLinkSource + linkedPorts: + 721: + - Left: Forward + - Right: Reverse + - Middle: Off + 720: + - Left: Forward + - Right: Reverse + - Middle: Off + 716: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 983 components: - type: Transform - pos: 3.5,8.5 + pos: 2.5,-13.5 parent: 179 -- proto: SpawnPointCaptain - entities: - - uid: 954 + - type: DeviceLinkSource + linkedPorts: + 985: + - Left: Forward + - Right: Reverse + - Middle: Off + 259: + - Left: Forward + - Right: Reverse + - Middle: Off + 989: + - Left: Forward + - Right: Reverse + - Middle: Off + 463: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 1290 components: - type: Transform - pos: -4.5,4.5 + pos: 7.5,-14.5 parent: 179 -- proto: SpawnPointLatejoin - entities: - - uid: 961 + - type: TwoWayLever + nextSignalLeft: True + - type: DeviceLinkSource + linkedPorts: + 1234: + - Left: Open + - Right: Open + - Middle: Close + 1233: + - Left: Open + - Right: Open + - Middle: Close + 1232: + - Left: Open + - Right: Open + - Middle: Close + 728: + - Left: Trigger + - Right: Trigger + - Middle: Trigger + - uid: 1499 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 179 + - type: DeviceLinkSource + linkedPorts: + 1385: + - Left: Open + - Right: Open + - Middle: Close + - uid: 1520 components: - type: Transform - pos: -3.5,3.5 + pos: 7.5,-18.5 parent: 179 -- proto: SpawnPointObserver + - type: DeviceLinkSource + linkedPorts: + 1230: + - Left: Open + - Right: Open + - Middle: Close +- proto: UnfinishedMachineFrame entities: - - uid: 679 + - uid: 522 components: - type: Transform - pos: -3.5,4.5 + pos: -6.5,10.5 parent: 179 -- proto: Spear +- proto: UniformPrinter entities: - - uid: 185 + - uid: 443 components: - type: Transform - pos: -3.4579864,-1.9811735 + pos: -7.5,4.5 parent: 179 -- proto: SprayBottleWater +- proto: VendingMachineCigs entities: - - uid: 903 + - uid: 870 components: - type: Transform - pos: 6.985283,16.424004 + pos: -14.5,4.5 parent: 179 -- proto: Stimpack +- proto: VendingMachineEngivend entities: - - uid: 462 + - uid: 441 components: - type: Transform - pos: 3.6877818,5.312015 + pos: -11.5,4.5 parent: 179 -- proto: Stool - entities: - - uid: 383 + - uid: 523 components: - type: Transform - pos: -1.5,-9.5 + pos: -11.5,-1.5 parent: 179 - - uid: 387 + - uid: 1567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-6.5 + pos: 5.5,-11.5 parent: 179 -- proto: Stunbaton + - type: ActionGrant + actions: + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow +- proto: VendingMachineMedical entities: - - uid: 434 + - uid: 156 components: - type: Transform - pos: -3.1734612,-2.6066077 + pos: 25.5,-5.5 parent: 179 -- proto: SubstationBasic - entities: - - uid: 1018 + - uid: 157 components: - type: Transform - pos: -6.5,-13.5 + pos: 27.5,-5.5 parent: 179 -- proto: SurveillanceCameraGeneral - entities: - - uid: 1186 + - uid: 158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,10.5 + pos: 29.5,3.5 parent: 179 - - uid: 1188 + - uid: 521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,21.5 + pos: -12.5,4.5 parent: 179 - - uid: 1190 +- proto: VendingMachineSalvage + entities: + - uid: 485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,10.5 + pos: -15.5,4.5 parent: 179 -- proto: SurveillanceCameraRouterGeneral +- proto: VendingMachineSec entities: - - uid: 1189 + - uid: 874 components: - type: Transform - pos: 9.5,24.5 + pos: -13.5,4.5 parent: 179 -- proto: Syringe +- proto: VendingMachineTankDispenserEngineering entities: - - uid: 460 + - uid: 615 components: - type: Transform - pos: 3.2502818,4.5823417 + pos: 17.5,-7.5 parent: 179 - - uid: 738 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 614 components: - type: Transform - pos: 5.767191,9.787079 + pos: 14.5,-7.5 parent: 179 -- proto: Table +- proto: VendingMachineVendomat entities: - - uid: 63 + - uid: 1565 components: - type: Transform - pos: 9.5,21.5 + pos: 5.5,-12.5 parent: 179 - - uid: 64 +- proto: VendingMachineYouTool + entities: + - uid: 350 components: - type: Transform - pos: 10.5,21.5 + pos: -11.5,-0.5 parent: 179 - - uid: 67 + - uid: 1566 components: - type: Transform - pos: 8.5,21.5 + pos: 5.5,-10.5 parent: 179 - - uid: 92 + - type: ActionGrant + actions: + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow + - ActionVendingThrow +- proto: WallSolid + entities: + - uid: 3 components: - type: Transform - pos: 11.5,21.5 + pos: 1.5,18.5 parent: 179 - - uid: 143 + - uid: 4 components: - type: Transform - pos: 33.5,-3.5 + pos: 11.5,26.5 parent: 179 - - uid: 144 + - uid: 5 components: - type: Transform - pos: 33.5,-2.5 + pos: 18.5,24.5 parent: 179 - - uid: 145 + - uid: 6 components: - type: Transform - pos: 33.5,-1.5 + pos: 20.5,15.5 parent: 179 - - uid: 161 + - uid: 8 components: - type: Transform - pos: 24.5,-5.5 + pos: 14.5,19.5 parent: 179 - - uid: 162 + - uid: 9 components: - type: Transform - pos: 23.5,-5.5 + pos: 1.5,19.5 parent: 179 - - uid: 172 + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 + pos: 18.5,26.5 parent: 179 - - uid: 180 + - uid: 11 components: - type: Transform - pos: -4.5,10.5 + pos: 13.5,26.5 parent: 179 - - uid: 262 + - uid: 13 components: - type: Transform - pos: -3.5,-5.5 + pos: 25.5,15.5 parent: 179 - - uid: 263 + - uid: 18 components: - type: Transform - pos: -2.5,-5.5 + pos: 4.5,26.5 parent: 179 - - uid: 264 + - uid: 19 components: - type: Transform - pos: -1.5,-5.5 + pos: 18.5,25.5 parent: 179 - - uid: 265 + - uid: 21 components: - type: Transform - pos: -0.5,-5.5 + pos: 10.5,26.5 parent: 179 - - uid: 267 + - uid: 22 components: - type: Transform - pos: 23.5,5.5 + pos: 26.5,15.5 parent: 179 - - uid: 268 + - uid: 25 components: - type: Transform - pos: 23.5,6.5 + pos: 1.5,21.5 parent: 179 - - uid: 298 + - uid: 27 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,9.5 + pos: 8.5,-0.5 parent: 179 - - uid: 299 + - uid: 28 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 + pos: 18.5,18.5 parent: 179 - - uid: 300 + - uid: 29 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 + pos: 18.5,21.5 parent: 179 - - uid: 312 + - uid: 30 components: - type: Transform - pos: -3.5,-10.5 + pos: 1.5,22.5 parent: 179 - - uid: 313 + - uid: 31 components: - type: Transform - pos: -2.5,-10.5 + pos: 1.5,20.5 parent: 179 - - uid: 314 + - uid: 32 components: - type: Transform - pos: -1.5,-10.5 + pos: 18.5,19.5 parent: 179 - - uid: 315 + - uid: 33 components: - type: Transform - pos: -0.5,-10.5 + pos: 23.5,15.5 parent: 179 - - uid: 355 + - uid: 34 components: - type: Transform - pos: -6.5,7.5 + pos: 12.5,22.5 parent: 179 - - uid: 356 + - uid: 35 components: - type: Transform - pos: -5.5,7.5 + pos: 27.5,15.5 parent: 179 - - uid: 357 + - uid: 36 components: - type: Transform - pos: -4.5,7.5 + pos: 7.5,22.5 parent: 179 - - uid: 358 + - uid: 37 components: - type: Transform - pos: -3.5,7.5 + pos: 14.5,22.5 parent: 179 - - uid: 361 + - uid: 38 components: - type: Transform - pos: -0.5,7.5 + pos: 10.5,23.5 parent: 179 - - uid: 362 + - uid: 39 components: - type: Transform - pos: 0.5,7.5 + pos: 10.5,24.5 parent: 179 - - uid: 363 + - uid: 40 components: - type: Transform - pos: 1.5,7.5 + pos: 8.5,26.5 parent: 179 - - uid: 366 + - uid: 41 components: - type: Transform - pos: -2.5,4.5 + pos: 10.5,25.5 parent: 179 - - uid: 367 + - uid: 42 components: - type: Transform - pos: -1.5,4.5 + pos: 18.5,22.5 parent: 179 - - uid: 368 + - uid: 43 components: - type: Transform - pos: -0.5,4.5 + pos: 14.5,27.5 parent: 179 - - uid: 371 + - uid: 44 components: - type: Transform - pos: 1.5,4.5 + pos: 14.5,26.5 parent: 179 - - uid: 385 + - uid: 45 components: - type: Transform - pos: -3.5,-2.5 + pos: 1.5,16.5 parent: 179 - - uid: 386 + - uid: 46 components: - type: Transform - pos: -3.5,-1.5 + pos: 18.5,27.5 parent: 179 - - uid: 440 + - uid: 49 components: - type: Transform - pos: 0.5,4.5 + pos: 7.5,28.5 parent: 179 - - uid: 445 + - uid: 50 components: - type: Transform - pos: -3.5,-0.5 + pos: 13.5,22.5 parent: 179 - - uid: 448 + - uid: 51 components: - type: Transform - pos: 3.5,5.5 + pos: 12.5,26.5 parent: 179 - - uid: 465 + - uid: 52 components: - type: Transform - pos: 1.5,8.5 + pos: 1.5,15.5 parent: 179 - - uid: 466 + - uid: 53 components: - type: Transform - pos: 0.5,8.5 + pos: 9.5,26.5 parent: 179 - - uid: 467 + - uid: 55 components: - type: Transform - pos: -3.5,8.5 + pos: 24.5,15.5 parent: 179 - - uid: 468 + - uid: 56 components: - type: Transform - pos: -0.5,8.5 + pos: 14.5,25.5 parent: 179 - - uid: 470 + - uid: 57 components: - type: Transform - pos: -6.5,8.5 + pos: 14.5,21.5 parent: 179 - - uid: 471 + - uid: 60 components: - type: Transform - pos: -5.5,8.5 + pos: 7.5,21.5 parent: 179 - - uid: 472 + - uid: 61 components: - type: Transform - pos: -4.5,8.5 + pos: 18.5,20.5 parent: 179 - - uid: 515 + - uid: 62 components: - type: Transform - pos: -15.5,-5.5 + pos: 18.5,23.5 parent: 179 - - uid: 516 + - uid: 66 components: - type: Transform - pos: -15.5,-1.5 + pos: 18.5,17.5 parent: 179 - - uid: 520 + - uid: 68 components: - type: Transform - pos: -15.5,-0.5 + pos: 18.5,28.5 parent: 179 - - uid: 559 + - uid: 69 components: - type: Transform - pos: -15.5,-4.5 + pos: 28.5,15.5 parent: 179 - - uid: 560 + - uid: 71 components: - type: Transform - pos: -15.5,-3.5 + pos: 11.5,22.5 parent: 179 - - uid: 568 + - uid: 72 components: - type: Transform - pos: 18.5,4.5 + pos: 1.5,17.5 parent: 179 - - uid: 569 + - uid: 73 components: - type: Transform - pos: 21.5,6.5 + pos: 14.5,28.5 parent: 179 - - uid: 570 + - uid: 74 components: - type: Transform - pos: 20.5,6.5 + pos: 10.5,22.5 parent: 179 - - uid: 571 + - uid: 75 components: - type: Transform - pos: 18.5,6.5 + pos: 9.5,22.5 parent: 179 - - uid: 572 + - uid: 78 components: - type: Transform - pos: 19.5,6.5 + pos: 21.5,15.5 parent: 179 - - uid: 573 + - uid: 80 components: - type: Transform - pos: 18.5,5.5 + pos: 18.5,16.5 parent: 179 - - uid: 574 + - uid: 81 components: - type: Transform - pos: 22.5,8.5 + pos: 18.5,15.5 parent: 179 - - uid: 575 + - uid: 82 components: - type: Transform - pos: 24.5,4.5 + pos: 14.5,18.5 parent: 179 - - uid: 584 + - uid: 83 components: - type: Transform - pos: 23.5,7.5 + pos: 4.5,28.5 parent: 179 - - uid: 586 + - uid: 84 components: - type: Transform - pos: 25.5,10.5 + pos: 7.5,26.5 parent: 179 - - uid: 587 + - uid: 85 components: - type: Transform - pos: 23.5,10.5 + pos: 1.5,23.5 parent: 179 - - uid: 588 + - uid: 86 components: - type: Transform - pos: 24.5,10.5 + pos: 17.5,15.5 parent: 179 - - uid: 589 + - uid: 89 components: - type: Transform - pos: 26.5,10.5 + pos: 22.5,15.5 parent: 179 - - uid: 590 + - uid: 95 components: - type: Transform - pos: 27.5,10.5 + pos: 8.5,22.5 parent: 179 - - uid: 594 + - uid: 96 components: - type: Transform - pos: 13.5,2.5 + pos: 7.5,27.5 parent: 179 - - uid: 595 + - uid: 98 components: - type: Transform - pos: 13.5,0.5 + pos: 4.5,25.5 parent: 179 - - uid: 596 + - uid: 99 components: - type: Transform - pos: 13.5,1.5 + pos: 17.5,18.5 parent: 179 - - uid: 684 + - uid: 100 components: - type: Transform - pos: -3.5,0.5 + pos: 19.5,15.5 parent: 179 - - uid: 685 + - uid: 101 components: - type: Transform - pos: 3.5,4.5 + pos: 4.5,27.5 parent: 179 - - uid: 686 + - uid: 103 components: - type: Transform - pos: 3.5,6.5 + pos: 14.5,17.5 parent: 179 - - uid: 706 + - uid: 104 components: - type: Transform - pos: -1.5,-3.5 + pos: 14.5,16.5 parent: 179 - - uid: 707 + - uid: 105 components: - type: Transform - pos: -0.5,-3.5 + pos: 15.5,15.5 parent: 179 - - uid: 710 + - uid: 106 components: - type: Transform - pos: 0.5,-3.5 + pos: 14.5,15.5 parent: 179 -- proto: TableGlass - entities: - - uid: 964 + - uid: 107 components: - type: Transform - pos: 9.5,12.5 + pos: 13.5,15.5 parent: 179 - - uid: 965 + - uid: 109 components: - type: Transform - pos: 11.5,12.5 + pos: 11.5,15.5 parent: 179 - - uid: 966 + - uid: 110 components: - type: Transform - pos: 13.5,12.5 + pos: 10.5,15.5 parent: 179 - - uid: 975 + - uid: 112 components: - type: Transform - pos: 10.5,12.5 + pos: 7.5,19.5 parent: 179 - - uid: 976 + - uid: 113 components: - type: Transform - pos: 12.5,12.5 + pos: 7.5,18.5 parent: 179 -- proto: TargetHuman - entities: - - uid: 159 + - uid: 114 components: - type: Transform - pos: -6.5,-1.5 + pos: 7.5,17.5 parent: 179 -- proto: TelecomServerFilled - entities: - - uid: 963 + - uid: 117 components: - type: Transform - pos: -3.5,10.5 + pos: 5.5,18.5 parent: 179 -- proto: TimerTrigger - entities: - - uid: 482 + - uid: 118 components: - type: Transform - pos: 6.413024,9.39097 + pos: 5.5,19.5 parent: 179 -- proto: ToolboxElectricalFilled - entities: - - uid: 365 + - uid: 121 components: - type: Transform - pos: 0.4993378,3.429311 + pos: 4.5,19.5 parent: 179 - - uid: 419 + - uid: 122 components: - type: Transform - pos: -0.8099712,-5.21454 + pos: 4.5,20.5 parent: 179 - - uid: 420 + - uid: 123 components: - type: Transform - pos: -0.5597038,-5.679647 + pos: 4.5,21.5 parent: 179 -- proto: ToolboxMechanicalFilled - entities: - - uid: 364 + - uid: 124 components: - type: Transform - pos: 1.452203,3.4605832 + pos: 4.5,22.5 parent: 179 -- proto: ToyRubberDuck - entities: - - uid: 723 + - uid: 125 components: - type: Transform - pos: -1.6653601,11.616664 + pos: 4.5,23.5 parent: 179 -- proto: trayScanner - entities: - - uid: 758 + - uid: 126 components: - type: Transform - pos: 1.354346,4.548879 + pos: 4.5,24.5 parent: 179 -- proto: TwoWayLever - entities: - - uid: 699 + - uid: 160 components: - type: Transform - pos: -3.5,-13.5 + rot: -1.5707963267948966 rad + pos: 11.5,-0.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 990: - - Left: Forward - - Right: Reverse - - Middle: Off - 195: - - Left: Forward - - Right: Reverse - - Middle: Off - 991: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 722 + - uid: 164 components: - type: Transform - pos: 1.5,11.5 + rot: 1.5707963267948966 rad + pos: 22.5,9.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 721: - - Left: Forward - - Right: Reverse - - Middle: Off - 720: - - Left: Forward - - Right: Reverse - - Middle: Off - 716: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 983 + - uid: 165 components: - type: Transform - pos: 2.5,-13.5 + pos: 8.5,2.5 parent: 179 - - type: DeviceLinkSource - linkedPorts: - 985: - - Left: Forward - - Right: Reverse - - Middle: Off - 259: - - Left: Forward - - Right: Reverse - - Middle: Off - 989: - - Left: Forward - - Right: Reverse - - Middle: Off - 463: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UnfinishedMachineFrame - entities: - - uid: 522 + - uid: 168 components: - type: Transform - pos: -6.5,10.5 + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 179 -- proto: UniformPrinter - entities: - - uid: 443 + - uid: 169 components: - type: Transform - pos: -7.5,4.5 + pos: 8.5,0.5 parent: 179 -- proto: VendingMachineCigs - entities: - - uid: 870 + - uid: 171 components: - type: Transform - pos: -14.5,4.5 + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 parent: 179 -- proto: VendingMachineEngivend - entities: - - uid: 441 + - uid: 173 components: - type: Transform - pos: -11.5,4.5 + pos: 8.5,1.5 parent: 179 - - uid: 523 + - uid: 189 components: - type: Transform - pos: -11.5,-1.5 + pos: -7.5,0.5 parent: 179 -- proto: VendingMachineMedical - entities: - - uid: 156 + - uid: 190 components: - type: Transform - pos: 25.5,-5.5 + pos: -7.5,-0.5 parent: 179 - - uid: 157 + - uid: 191 components: - type: Transform - pos: 27.5,-5.5 + pos: -7.5,-1.5 parent: 179 - - uid: 158 + - uid: 192 components: - type: Transform - pos: 29.5,3.5 + pos: -7.5,-2.5 parent: 179 - - uid: 521 + - uid: 193 components: - type: Transform - pos: -12.5,4.5 + pos: -7.5,-3.5 parent: 179 -- proto: VendingMachineSalvage - entities: - - uid: 485 + - uid: 196 components: - type: Transform - pos: -15.5,4.5 + pos: 3.5,-14.5 parent: 179 -- proto: VendingMachineSec - entities: - - uid: 874 + - uid: 197 components: - type: Transform - pos: -13.5,4.5 + pos: 4.5,-14.5 parent: 179 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 875 + - uid: 198 components: - type: Transform - pos: 7.5,0.5 + pos: -7.5,-10.5 parent: 179 -- proto: VendingMachineYouTool - entities: - - uid: 350 + - uid: 199 components: - type: Transform - pos: -11.5,-0.5 + pos: -7.5,-11.5 parent: 179 -- proto: WallSolid - entities: - - uid: 3 + - uid: 200 components: - type: Transform - pos: 1.5,18.5 + pos: -7.5,-12.5 parent: 179 - - uid: 4 + - uid: 201 components: - type: Transform - pos: 11.5,26.5 + pos: -7.5,-13.5 parent: 179 - - uid: 5 + - uid: 208 components: - type: Transform - pos: 18.5,24.5 + pos: -7.5,-9.5 parent: 179 - - uid: 6 + - uid: 209 components: - type: Transform - pos: 20.5,15.5 + pos: -10.5,-7.5 parent: 179 - - uid: 8 + - uid: 211 components: - type: Transform - pos: 14.5,19.5 + pos: -10.5,-5.5 parent: 179 - - uid: 9 + - uid: 212 components: - type: Transform - pos: 1.5,19.5 + pos: -10.5,-4.5 parent: 179 - - uid: 10 + - uid: 213 components: - type: Transform - pos: 18.5,26.5 + pos: -10.5,-3.5 parent: 179 - - uid: 11 + - uid: 214 components: - type: Transform - pos: 13.5,26.5 + pos: -10.5,-2.5 parent: 179 - - uid: 13 + - uid: 215 components: - type: Transform - pos: 25.5,15.5 + pos: -10.5,-1.5 parent: 179 - - uid: 18 + - uid: 217 components: - type: Transform - pos: 4.5,26.5 + pos: 1.5,-4.5 parent: 179 - - uid: 19 + - uid: 218 components: - type: Transform - pos: 18.5,25.5 + pos: 0.5,-4.5 parent: 179 - - uid: 21 + - uid: 219 components: - type: Transform - pos: 10.5,26.5 + pos: -0.5,-4.5 parent: 179 - - uid: 22 + - uid: 220 components: - type: Transform - pos: 26.5,15.5 + pos: -1.5,-4.5 parent: 179 - - uid: 25 + - uid: 221 components: - type: Transform - pos: 1.5,21.5 + pos: -2.5,-4.5 parent: 179 - - uid: 27 + - uid: 222 components: - type: Transform - pos: 8.5,-0.5 + pos: -3.5,-4.5 parent: 179 - - uid: 28 + - uid: 223 components: - type: Transform - pos: 18.5,18.5 + pos: -4.5,-4.5 parent: 179 - - uid: 29 + - uid: 224 components: - type: Transform - pos: 18.5,21.5 + pos: -5.5,-4.5 parent: 179 - - uid: 30 + - uid: 225 components: - type: Transform - pos: 1.5,22.5 + pos: -6.5,-4.5 parent: 179 - - uid: 31 + - uid: 226 components: - type: Transform - pos: 1.5,20.5 + pos: 4.5,-4.5 parent: 179 - - uid: 32 + - uid: 227 components: - type: Transform - pos: 18.5,19.5 + pos: 5.5,-4.5 parent: 179 - - uid: 33 + - uid: 228 components: - type: Transform - pos: 23.5,15.5 + pos: 6.5,-4.5 parent: 179 - - uid: 34 + - uid: 229 components: - type: Transform - pos: 12.5,22.5 + pos: -7.5,-14.5 parent: 179 - - uid: 35 + - uid: 231 components: - type: Transform - pos: 27.5,15.5 + pos: -6.5,-14.5 parent: 179 - - uid: 36 + - uid: 232 components: - type: Transform - pos: 7.5,22.5 + pos: -5.5,-14.5 parent: 179 - - uid: 37 + - uid: 233 components: - type: Transform - pos: 14.5,22.5 + pos: -4.5,-14.5 parent: 179 - - uid: 38 + - uid: 234 components: - type: Transform - pos: 10.5,23.5 + pos: 6.5,-10.5 parent: 179 - - uid: 39 + - uid: 235 components: - type: Transform - pos: 10.5,24.5 + pos: 6.5,-11.5 parent: 179 - - uid: 40 + - uid: 236 components: - type: Transform - pos: 8.5,26.5 + pos: 6.5,-12.5 parent: 179 - - uid: 41 + - uid: 237 components: - type: Transform - pos: 10.5,25.5 + pos: 6.5,-13.5 parent: 179 - - uid: 42 + - uid: 238 components: - type: Transform - pos: 18.5,22.5 + pos: 6.5,-14.5 parent: 179 - - uid: 43 + - uid: 239 components: - type: Transform - pos: 14.5,27.5 + pos: 5.5,-14.5 parent: 179 - - uid: 44 + - uid: 240 components: - type: Transform - pos: 14.5,26.5 + pos: -7.5,-8.5 parent: 179 - - uid: 45 + - uid: 241 components: - type: Transform - pos: 1.5,16.5 + pos: -7.5,-7.5 parent: 179 - - uid: 46 + - uid: 242 components: - type: Transform - pos: 18.5,27.5 + pos: -8.5,-8.5 parent: 179 - - uid: 49 + - uid: 243 components: - type: Transform - pos: 7.5,28.5 + pos: -9.5,-8.5 parent: 179 - - uid: 50 + - uid: 244 components: - type: Transform - pos: 13.5,22.5 + pos: -10.5,-8.5 parent: 179 - - uid: 51 + - uid: 245 components: - type: Transform - pos: 12.5,26.5 + pos: -7.5,-5.5 parent: 179 - - uid: 52 + - uid: 260 components: - type: Transform - pos: 1.5,15.5 + pos: 6.5,-6.5 parent: 179 - - uid: 53 + - uid: 261 components: - type: Transform - pos: 9.5,26.5 + pos: 6.5,-5.5 parent: 179 - - uid: 55 + - uid: 266 components: - type: Transform - pos: 24.5,15.5 + pos: 8.5,-3.5 parent: 179 - - uid: 56 + - uid: 271 components: - type: Transform - pos: 14.5,25.5 + pos: 1.5,14.5 parent: 179 - - uid: 57 + - uid: 272 components: - type: Transform - pos: 14.5,21.5 + pos: 1.5,13.5 parent: 179 - - uid: 60 + - uid: 273 components: - type: Transform - pos: 7.5,21.5 + pos: 1.5,12.5 parent: 179 - - uid: 61 + - uid: 274 components: - type: Transform - pos: 18.5,20.5 + pos: -7.5,11.5 parent: 179 - - uid: 62 + - uid: 275 components: - type: Transform - pos: 18.5,23.5 + pos: -6.5,11.5 parent: 179 - - uid: 66 + - uid: 276 components: - type: Transform - pos: 18.5,17.5 + pos: -5.5,11.5 parent: 179 - - uid: 68 + - uid: 277 components: - type: Transform - pos: 18.5,28.5 + pos: -4.5,11.5 parent: 179 - - uid: 69 + - uid: 278 components: - type: Transform - pos: 28.5,15.5 + pos: -3.5,11.5 parent: 179 - - uid: 71 + - uid: 279 components: - type: Transform - pos: 11.5,22.5 + pos: -2.5,11.5 parent: 179 - - uid: 72 + - uid: 282 components: - type: Transform - pos: 1.5,17.5 + pos: -1.5,12.5 parent: 179 - - uid: 73 + - uid: 283 components: - type: Transform - pos: 14.5,28.5 + pos: -0.5,12.5 parent: 179 - - uid: 74 + - uid: 284 components: - type: Transform - pos: 10.5,22.5 + pos: 0.5,12.5 parent: 179 - - uid: 75 + - uid: 288 components: - type: Transform - pos: 9.5,22.5 + pos: 12.5,8.5 parent: 179 - - uid: 76 + - uid: 289 components: - type: Transform - pos: 8.5,-1.5 + pos: 11.5,8.5 parent: 179 - - uid: 77 + - uid: 290 components: - type: Transform - pos: 8.5,-2.5 + pos: 10.5,8.5 parent: 179 - - uid: 78 + - uid: 291 components: - type: Transform - pos: 21.5,15.5 + pos: 9.5,8.5 parent: 179 - - uid: 80 + - uid: 292 components: - type: Transform - pos: 18.5,16.5 + pos: 8.5,8.5 parent: 179 - - uid: 81 + - uid: 293 components: - type: Transform - pos: 18.5,15.5 + pos: 7.5,8.5 parent: 179 - - uid: 82 + - uid: 294 components: - type: Transform - pos: 14.5,18.5 + pos: 6.5,8.5 parent: 179 - - uid: 83 + - uid: 295 components: - type: Transform - pos: 4.5,28.5 + pos: 5.5,8.5 parent: 179 - - uid: 84 + - uid: 301 components: - type: Transform - pos: 7.5,26.5 + pos: 9.5,11.5 parent: 179 - - uid: 85 + - uid: 302 components: - type: Transform - pos: 1.5,23.5 + pos: 10.5,11.5 parent: 179 - - uid: 86 + - uid: 303 components: - type: Transform - pos: 17.5,15.5 + pos: 11.5,11.5 parent: 179 - - uid: 89 + - uid: 304 components: - type: Transform - pos: 22.5,15.5 + pos: 12.5,11.5 parent: 179 - - uid: 95 + - uid: 310 components: - type: Transform - pos: 8.5,22.5 + pos: 9.5,9.5 parent: 179 - - uid: 96 + - uid: 316 components: - type: Transform - pos: 7.5,27.5 + pos: -7.5,-4.5 parent: 179 - - uid: 97 + - uid: 317 components: - type: Transform - pos: 8.5,-3.5 + pos: 26.5,14.5 parent: 179 - - uid: 98 + - uid: 320 components: - type: Transform - pos: 4.5,25.5 + pos: 24.5,14.5 parent: 179 - - uid: 99 + - uid: 322 components: - type: Transform - pos: 17.5,18.5 + rot: -1.5707963267948966 rad + pos: 25.5,-11.5 parent: 179 - - uid: 100 + - uid: 329 components: - type: Transform - pos: 19.5,15.5 + pos: -11.5,5.5 parent: 179 - - uid: 101 + - uid: 335 components: - type: Transform - pos: 4.5,27.5 + pos: 13.5,11.5 parent: 179 - - uid: 103 + - uid: 336 components: - type: Transform - pos: 14.5,17.5 + pos: 14.5,11.5 parent: 179 - - uid: 104 + - uid: 337 components: - type: Transform - pos: 14.5,16.5 + pos: 13.5,9.5 parent: 179 - - uid: 105 + - uid: 338 components: - type: Transform - pos: 15.5,15.5 + pos: 13.5,8.5 parent: 179 - - uid: 106 + - uid: 339 components: - type: Transform - pos: 14.5,15.5 + pos: 13.5,7.5 parent: 179 - - uid: 107 + - uid: 341 components: - type: Transform - pos: 13.5,15.5 + pos: 24.5,12.5 parent: 179 - - uid: 109 + - uid: 342 components: - type: Transform - pos: 11.5,15.5 + pos: 26.5,12.5 parent: 179 - - uid: 110 + - uid: 346 components: - type: Transform - pos: 10.5,15.5 + rot: -1.5707963267948966 rad + pos: 25.5,-7.5 parent: 179 - - uid: 112 + - uid: 352 components: - type: Transform - pos: 7.5,19.5 + pos: 13.5,6.5 parent: 179 - - uid: 113 + - uid: 353 components: - type: Transform - pos: 7.5,18.5 + pos: 13.5,5.5 parent: 179 - - uid: 114 + - uid: 372 components: - type: Transform - pos: 7.5,17.5 + pos: 13.5,4.5 parent: 179 - - uid: 117 + - uid: 373 components: - type: Transform - pos: 5.5,18.5 + pos: 25.5,4.5 parent: 179 - - uid: 118 + - uid: 374 components: - type: Transform - pos: 5.5,19.5 + pos: 23.5,4.5 parent: 179 - - uid: 121 + - uid: 375 components: - type: Transform - pos: 4.5,19.5 + pos: 17.5,3.5 parent: 179 - - uid: 122 + - uid: 376 components: - type: Transform - pos: 4.5,20.5 + pos: -10.5,-0.5 parent: 179 - - uid: 123 + - uid: 377 components: - type: Transform - pos: 4.5,21.5 + pos: -10.5,0.5 parent: 179 - - uid: 124 + - uid: 379 components: - type: Transform - pos: 4.5,22.5 + pos: -8.5,0.5 parent: 179 - - uid: 125 + - uid: 390 components: - type: Transform - pos: 4.5,23.5 + pos: 18.5,3.5 parent: 179 - - uid: 126 + - uid: 391 components: - type: Transform - pos: 4.5,24.5 + pos: 19.5,3.5 parent: 179 - - uid: 164 + - uid: 392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,9.5 + pos: 21.5,3.5 parent: 179 - - uid: 165 + - uid: 393 components: - type: Transform - pos: 8.5,2.5 + pos: 22.5,3.5 parent: 179 - - uid: 169 + - uid: 394 components: - type: Transform - pos: 8.5,0.5 + pos: 22.5,4.5 parent: 179 - - uid: 173 + - uid: 395 components: - type: Transform - pos: 8.5,1.5 + pos: 22.5,5.5 parent: 179 - - uid: 189 + - uid: 396 components: - type: Transform - pos: -7.5,0.5 + pos: 22.5,6.5 parent: 179 - - uid: 190 + - uid: 397 components: - type: Transform - pos: -7.5,-0.5 + pos: 22.5,7.5 parent: 179 - - uid: 191 + - uid: 399 components: - type: Transform - pos: -7.5,-1.5 + pos: 22.5,10.5 parent: 179 - - uid: 192 + - uid: 400 components: - type: Transform - pos: -7.5,-2.5 + pos: 21.5,11.5 parent: 179 - - uid: 193 + - uid: 401 components: - type: Transform - pos: -7.5,-3.5 + pos: 22.5,11.5 parent: 179 - - uid: 196 + - uid: 439 components: - type: Transform - pos: 3.5,-14.5 + pos: -13.5,5.5 parent: 179 - - uid: 197 + - uid: 449 components: - type: Transform - pos: 4.5,-14.5 + pos: -16.5,2.5 parent: 179 - - uid: 198 + - uid: 450 components: - type: Transform - pos: -7.5,-10.5 + pos: -16.5,3.5 parent: 179 - - uid: 199 + - uid: 464 components: - type: Transform - pos: -7.5,-11.5 + pos: 4.5,8.5 parent: 179 - - uid: 200 + - uid: 474 components: - type: Transform - pos: -7.5,-12.5 + pos: -7.5,8.5 parent: 179 - - uid: 201 + - uid: 475 components: - type: Transform - pos: -7.5,-13.5 + pos: -7.5,7.5 parent: 179 - - uid: 208 + - uid: 476 components: - type: Transform - pos: -7.5,-9.5 + pos: -7.5,6.5 parent: 179 - - uid: 209 + - uid: 477 components: - type: Transform - pos: -10.5,-7.5 + pos: -7.5,5.5 parent: 179 - - uid: 211 + - uid: 486 components: - type: Transform - pos: -10.5,-5.5 + pos: -15.5,5.5 parent: 179 - - uid: 212 + - uid: 487 components: - type: Transform - pos: -10.5,-4.5 + pos: -16.5,4.5 parent: 179 - - uid: 213 + - uid: 488 components: - type: Transform - pos: -10.5,-3.5 + pos: 5.5,17.5 parent: 179 - - uid: 214 + - uid: 489 components: - type: Transform - pos: -10.5,-2.5 + pos: -11.5,0.5 parent: 179 - - uid: 215 + - uid: 491 components: - type: Transform - pos: -10.5,-1.5 + pos: -16.5,5.5 parent: 179 - - uid: 217 + - uid: 492 components: - type: Transform - pos: 1.5,-4.5 + pos: -14.5,5.5 parent: 179 - - uid: 218 + - uid: 494 components: - type: Transform - pos: 0.5,-4.5 + rot: -1.5707963267948966 rad + pos: -11.5,7.5 parent: 179 - - uid: 219 + - uid: 495 components: - type: Transform - pos: -0.5,-4.5 + pos: -12.5,5.5 parent: 179 - - uid: 220 + - uid: 496 components: - type: Transform - pos: -1.5,-4.5 + pos: -16.5,1.5 parent: 179 - - uid: 221 + - uid: 497 components: - type: Transform - pos: -2.5,-4.5 + pos: -16.5,0.5 parent: 179 - - uid: 222 + - uid: 498 components: - type: Transform - pos: -3.5,-4.5 + pos: -16.5,-0.5 parent: 179 - - uid: 223 + - uid: 499 components: - type: Transform - pos: -4.5,-4.5 + pos: -16.5,-1.5 parent: 179 - - uid: 224 + - uid: 500 components: - type: Transform - pos: -5.5,-4.5 + pos: -16.5,-2.5 parent: 179 - - uid: 225 + - uid: 501 components: - type: Transform - pos: -6.5,-4.5 + pos: -16.5,-3.5 parent: 179 - - uid: 226 + - uid: 502 components: - type: Transform - pos: 4.5,-4.5 + pos: -16.5,-4.5 parent: 179 - - uid: 227 + - uid: 503 components: - type: Transform - pos: 5.5,-4.5 + pos: -16.5,-5.5 parent: 179 - - uid: 228 + - uid: 504 components: - type: Transform - pos: 6.5,-4.5 + pos: -16.5,-6.5 parent: 179 - - uid: 229 + - uid: 505 components: - type: Transform - pos: -7.5,-14.5 + pos: -16.5,-7.5 parent: 179 - - uid: 231 + - uid: 506 components: - type: Transform - pos: -6.5,-14.5 + pos: -16.5,-8.5 parent: 179 - - uid: 232 + - uid: 507 components: - type: Transform - pos: -5.5,-14.5 + pos: -15.5,-8.5 parent: 179 - - uid: 233 + - uid: 508 components: - type: Transform - pos: -4.5,-14.5 + pos: -14.5,-8.5 parent: 179 - - uid: 234 + - uid: 509 components: - type: Transform - pos: 6.5,-10.5 + pos: -13.5,-8.5 parent: 179 - - uid: 235 + - uid: 510 components: - type: Transform - pos: 6.5,-11.5 + pos: -12.5,-8.5 parent: 179 - - uid: 236 + - uid: 511 components: - type: Transform - pos: 6.5,-12.5 + pos: -11.5,-8.5 parent: 179 - - uid: 237 + - uid: 517 components: - type: Transform - pos: 6.5,-13.5 + pos: 23.5,11.5 parent: 179 - - uid: 238 + - uid: 518 components: - type: Transform - pos: 6.5,-14.5 + pos: 24.5,11.5 parent: 179 - - uid: 239 + - uid: 519 components: - type: Transform - pos: 5.5,-14.5 + pos: 25.5,11.5 parent: 179 - - uid: 240 + - uid: 535 components: - type: Transform - pos: -7.5,-8.5 + pos: -15.5,0.5 parent: 179 - - uid: 241 + - uid: 539 components: - type: Transform - pos: -7.5,-7.5 + pos: 26.5,11.5 parent: 179 - - uid: 242 + - uid: 540 components: - type: Transform - pos: -8.5,-8.5 + pos: 27.5,11.5 parent: 179 - - uid: 243 + - uid: 545 components: - type: Transform - pos: -9.5,-8.5 + pos: 7.5,-4.5 parent: 179 - - uid: 244 + - uid: 547 components: - type: Transform - pos: -10.5,-8.5 + pos: 28.5,11.5 parent: 179 - - uid: 245 + - uid: 548 components: - type: Transform - pos: -7.5,-5.5 + pos: 28.5,10.5 parent: 179 - - uid: 248 + - uid: 549 components: - type: Transform - pos: 5.5,-7.5 + pos: 28.5,9.5 parent: 179 - - uid: 249 + - uid: 550 components: - type: Transform - pos: 5.5,-9.5 + pos: 28.5,8.5 parent: 179 - - uid: 250 + - uid: 551 components: - type: Transform - pos: 6.5,-9.5 + pos: 28.5,7.5 parent: 179 - - uid: 251 + - uid: 552 components: - type: Transform - pos: 6.5,-7.5 + pos: 28.5,6.5 parent: 179 - - uid: 254 + - uid: 553 components: - type: Transform - pos: 7.5,-9.5 + pos: 28.5,5.5 parent: 179 - - uid: 260 + - uid: 554 components: - type: Transform - pos: 6.5,-6.5 + pos: 26.5,-2.5 parent: 179 - - uid: 261 + - uid: 555 components: - type: Transform - pos: 6.5,-5.5 + pos: 26.5,-1.5 parent: 179 - - uid: 271 + - uid: 556 components: - type: Transform - pos: 1.5,14.5 + pos: 25.5,-0.5 parent: 179 - - uid: 272 + - uid: 557 components: - type: Transform - pos: 1.5,13.5 + pos: 26.5,-0.5 parent: 179 - - uid: 273 + - uid: 558 components: - type: Transform - pos: 1.5,12.5 + pos: 27.5,-0.5 parent: 179 - - uid: 274 + - uid: 561 components: - type: Transform - pos: -7.5,11.5 + pos: -14.5,0.5 parent: 179 - - uid: 275 + - uid: 585 components: - type: Transform - pos: -6.5,11.5 + pos: 9.5,10.5 parent: 179 - - uid: 276 + - uid: 597 components: - type: Transform - pos: -5.5,11.5 + pos: 22.5,-0.5 parent: 179 - - uid: 277 + - uid: 598 components: - type: Transform - pos: -4.5,11.5 + pos: 17.5,-0.5 parent: 179 - - uid: 278 + - uid: 599 components: - type: Transform - pos: -3.5,11.5 + pos: 18.5,-0.5 parent: 179 - - uid: 279 + - uid: 600 components: - type: Transform - pos: -2.5,11.5 + pos: 20.5,-0.5 parent: 179 - - uid: 282 + - uid: 601 components: - type: Transform - pos: -1.5,12.5 + pos: 21.5,-0.5 parent: 179 - - uid: 283 + - uid: 602 components: - type: Transform - pos: -0.5,12.5 + pos: 19.5,-0.5 parent: 179 - - uid: 284 + - uid: 603 components: - type: Transform - pos: 0.5,12.5 + pos: 14.5,3.5 parent: 179 - - uid: 288 + - uid: 604 components: - type: Transform - pos: 12.5,8.5 + pos: 13.5,3.5 parent: 179 - - uid: 289 + - uid: 605 components: - type: Transform - pos: 11.5,8.5 + pos: 12.5,3.5 parent: 179 - - uid: 290 + - uid: 606 components: - type: Transform - pos: 10.5,8.5 + pos: 12.5,2.5 parent: 179 - - uid: 291 + - uid: 607 components: - type: Transform - pos: 9.5,8.5 + pos: 12.5,1.5 parent: 179 - - uid: 292 + - uid: 608 components: - type: Transform - pos: 8.5,8.5 + pos: 12.5,0.5 parent: 179 - - uid: 293 + - uid: 609 components: - type: Transform - pos: 7.5,8.5 + pos: 12.5,-0.5 parent: 179 - - uid: 294 + - uid: 610 components: - type: Transform - pos: 6.5,8.5 + pos: 13.5,-0.5 parent: 179 - - uid: 295 + - uid: 611 components: - type: Transform - pos: 5.5,8.5 + pos: 14.5,-0.5 parent: 179 - - uid: 301 + - uid: 612 components: - type: Transform - pos: 9.5,11.5 + pos: 8.5,-2.5 parent: 179 - - uid: 302 + - uid: 618 components: - type: Transform - pos: 10.5,11.5 + pos: 14.5,-6.5 parent: 179 - - uid: 303 + - uid: 620 components: - type: Transform - pos: 11.5,11.5 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 parent: 179 - - uid: 304 + - uid: 621 components: - type: Transform - pos: 12.5,11.5 + pos: 17.5,-6.5 parent: 179 - - uid: 310 + - uid: 622 components: - type: Transform - pos: 9.5,9.5 + pos: 18.5,-6.5 parent: 179 - - uid: 316 + - uid: 623 components: - type: Transform - pos: -7.5,-4.5 + pos: 19.5,-6.5 parent: 179 - - uid: 317 + - uid: 624 components: - type: Transform - pos: 26.5,14.5 + pos: 20.5,-6.5 parent: 179 - - uid: 320 + - uid: 625 components: - type: Transform - pos: 24.5,14.5 + pos: 21.5,-6.5 parent: 179 - - uid: 329 + - uid: 626 components: - type: Transform - pos: -11.5,5.5 + pos: 22.5,-6.5 parent: 179 - - uid: 335 + - uid: 627 components: - type: Transform - pos: 13.5,11.5 + pos: 23.5,-6.5 parent: 179 - - uid: 336 + - uid: 628 components: - type: Transform - pos: 14.5,11.5 + pos: 24.5,-6.5 parent: 179 - - uid: 337 + - uid: 629 components: - type: Transform - pos: 13.5,9.5 + pos: 25.5,-6.5 parent: 179 - - uid: 338 + - uid: 630 components: - type: Transform - pos: 13.5,8.5 + pos: 26.5,-6.5 parent: 179 - - uid: 339 + - uid: 631 components: - type: Transform - pos: 13.5,7.5 + pos: 26.5,-5.5 parent: 179 - - uid: 341 + - uid: 632 components: - type: Transform - pos: 24.5,12.5 + pos: 26.5,-4.5 parent: 179 - - uid: 342 + - uid: 633 components: - type: Transform - pos: 26.5,12.5 + pos: 27.5,-6.5 parent: 179 - - uid: 352 + - uid: 634 components: - type: Transform - pos: 13.5,6.5 + pos: 28.5,-6.5 parent: 179 - - uid: 353 + - uid: 635 components: - type: Transform - pos: 13.5,5.5 + pos: 29.5,-6.5 parent: 179 - - uid: 372 + - uid: 636 components: - type: Transform - pos: 13.5,4.5 + pos: 30.5,-6.5 parent: 179 - - uid: 373 + - uid: 637 components: - type: Transform - pos: 25.5,4.5 + pos: 31.5,-6.5 parent: 179 - - uid: 374 + - uid: 638 components: - type: Transform - pos: 23.5,4.5 + pos: 32.5,-6.5 parent: 179 - - uid: 375 + - uid: 639 components: - type: Transform - pos: 17.5,3.5 + pos: 33.5,-6.5 parent: 179 - - uid: 376 + - uid: 640 components: - type: Transform - pos: -10.5,-0.5 + pos: 34.5,-6.5 parent: 179 - - uid: 377 + - uid: 641 components: - type: Transform - pos: -10.5,0.5 + pos: 34.5,-5.5 parent: 179 - - uid: 379 + - uid: 642 components: - type: Transform - pos: -8.5,0.5 + pos: 34.5,-4.5 parent: 179 - - uid: 390 + - uid: 643 components: - type: Transform - pos: 18.5,3.5 + pos: 34.5,-3.5 parent: 179 - - uid: 391 + - uid: 644 components: - type: Transform - pos: 19.5,3.5 + pos: 34.5,-2.5 parent: 179 - - uid: 392 + - uid: 645 components: - type: Transform - pos: 21.5,3.5 + pos: 34.5,-1.5 parent: 179 - - uid: 393 + - uid: 646 components: - type: Transform - pos: 22.5,3.5 + pos: 34.5,-0.5 parent: 179 - - uid: 394 + - uid: 647 components: - type: Transform - pos: 22.5,4.5 + pos: 33.5,-0.5 parent: 179 - - uid: 395 + - uid: 648 components: - type: Transform - pos: 22.5,5.5 + pos: 32.5,-0.5 parent: 179 - - uid: 396 + - uid: 649 components: - type: Transform - pos: 22.5,6.5 + pos: 31.5,-0.5 parent: 179 - - uid: 397 + - uid: 650 components: - type: Transform - pos: 22.5,7.5 + pos: 30.5,-0.5 parent: 179 - - uid: 399 + - uid: 651 components: - type: Transform - pos: 22.5,10.5 + pos: 29.5,-0.5 parent: 179 - - uid: 400 + - uid: 652 components: - type: Transform - pos: 21.5,11.5 + pos: 30.5,0.5 parent: 179 - - uid: 401 + - uid: 653 components: - type: Transform - pos: 22.5,11.5 + pos: 30.5,1.5 parent: 179 - - uid: 418 + - uid: 654 components: - type: Transform - pos: 7.5,-7.5 + pos: 30.5,2.5 parent: 179 - - uid: 439 + - uid: 655 components: - type: Transform - pos: -13.5,5.5 + pos: 30.5,3.5 parent: 179 - - uid: 449 + - uid: 656 components: - type: Transform - pos: -16.5,2.5 + pos: 30.5,4.5 parent: 179 - - uid: 450 + - uid: 657 components: - type: Transform - pos: -16.5,3.5 + pos: 29.5,4.5 parent: 179 - - uid: 464 + - uid: 658 components: - type: Transform - pos: 4.5,8.5 + pos: 28.5,4.5 parent: 179 - - uid: 474 + - uid: 659 components: - type: Transform - pos: -7.5,8.5 + pos: 27.5,4.5 parent: 179 - - uid: 475 + - uid: 680 components: - type: Transform - pos: -7.5,7.5 + pos: 8.5,-1.5 parent: 179 - - uid: 476 + - uid: 702 components: - type: Transform - pos: -7.5,6.5 + rot: -1.5707963267948966 rad + pos: -11.5,6.5 parent: 179 - - uid: 477 + - uid: 713 components: - type: Transform - pos: -7.5,5.5 + pos: -7.5,9.5 parent: 179 - - uid: 486 + - uid: 714 components: - type: Transform - pos: -15.5,5.5 + pos: -7.5,10.5 parent: 179 - - uid: 487 + - uid: 724 components: - type: Transform - pos: -16.5,4.5 + pos: -2.5,12.5 parent: 179 - - uid: 488 + - uid: 733 components: - type: Transform - pos: 5.5,17.5 + pos: 4.5,5.5 parent: 179 - - uid: 489 + - uid: 734 components: - type: Transform - pos: -11.5,0.5 + pos: 4.5,4.5 parent: 179 - - uid: 491 + - uid: 739 components: - type: Transform - pos: -16.5,5.5 + pos: 8.5,7.5 parent: 179 - - uid: 492 + - uid: 740 components: - type: Transform - pos: -14.5,5.5 + pos: 8.5,6.5 parent: 179 - - uid: 494 + - uid: 741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,7.5 + pos: 8.5,5.5 parent: 179 - - uid: 495 + - uid: 742 components: - type: Transform - pos: -12.5,5.5 + pos: 8.5,4.5 parent: 179 - - uid: 496 + - uid: 743 components: - type: Transform - pos: -16.5,1.5 + pos: 8.5,3.5 parent: 179 - - uid: 497 + - uid: 745 components: - type: Transform - pos: -16.5,0.5 + pos: 4.5,7.5 parent: 179 - - uid: 498 + - uid: 746 components: - type: Transform - pos: -16.5,-0.5 + pos: 4.5,6.5 parent: 179 - - uid: 499 + - uid: 846 components: - type: Transform - pos: -16.5,-1.5 + pos: 2.5,19.5 parent: 179 - - uid: 500 + - uid: 847 components: - type: Transform - pos: -16.5,-2.5 + pos: 3.5,19.5 parent: 179 - - uid: 501 + - uid: 925 components: - type: Transform - pos: -16.5,-3.5 + rot: -1.5707963267948966 rad + pos: -14.5,17.5 parent: 179 - - uid: 502 + - uid: 958 components: - type: Transform - pos: -16.5,-4.5 + rot: 3.141592653589793 rad + pos: 15.5,18.5 parent: 179 - - uid: 503 + - uid: 1016 components: - type: Transform - pos: -16.5,-5.5 + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 parent: 179 - - uid: 504 + - uid: 1072 components: - type: Transform - pos: -16.5,-6.5 + pos: 15.5,28.5 parent: 179 - - uid: 505 + - uid: 1073 components: - type: Transform - pos: -16.5,-7.5 + pos: 16.5,28.5 parent: 179 - - uid: 506 + - uid: 1074 components: - type: Transform - pos: -16.5,-8.5 + pos: 17.5,28.5 parent: 179 - - uid: 507 + - uid: 1176 components: - type: Transform - pos: -15.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 parent: 179 - - uid: 508 + - uid: 1181 components: - type: Transform - pos: -14.5,-8.5 + pos: 5.5,28.5 parent: 179 - - uid: 509 + - uid: 1206 components: - type: Transform - pos: -13.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-12.5 parent: 179 - - uid: 510 + - uid: 1209 components: - type: Transform - pos: -12.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 parent: 179 - - uid: 511 + - uid: 1210 components: - type: Transform - pos: -11.5,-8.5 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 parent: 179 - - uid: 517 + - uid: 1211 components: - type: Transform - pos: 23.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 parent: 179 - - uid: 518 + - uid: 1212 components: - type: Transform - pos: 24.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-19.5 parent: 179 - - uid: 519 + - uid: 1213 components: - type: Transform - pos: 25.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-18.5 parent: 179 - - uid: 535 + - uid: 1214 components: - type: Transform - pos: -15.5,0.5 + rot: -1.5707963267948966 rad + pos: 25.5,-22.5 parent: 179 - - uid: 539 + - uid: 1215 components: - type: Transform - pos: 26.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-20.5 parent: 179 - - uid: 540 + - uid: 1216 components: - type: Transform - pos: 27.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-21.5 parent: 179 - - uid: 545 + - uid: 1217 components: - type: Transform - pos: 7.5,-4.5 + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 parent: 179 - - uid: 546 + - uid: 1218 components: - type: Transform - pos: 8.5,-4.5 + rot: -1.5707963267948966 rad + pos: 25.5,-14.5 parent: 179 - - uid: 547 + - uid: 1219 components: - type: Transform - pos: 28.5,11.5 + rot: -1.5707963267948966 rad + pos: 25.5,-16.5 parent: 179 - - uid: 548 + - uid: 1226 components: - type: Transform - pos: 28.5,10.5 + pos: 6.5,-22.5 parent: 179 - - uid: 549 + - uid: 1228 components: - type: Transform - pos: 28.5,9.5 + pos: 6.5,-21.5 parent: 179 - - uid: 550 + - uid: 1229 components: - type: Transform - pos: 28.5,8.5 + rot: -1.5707963267948966 rad + pos: 6.5,-19.5 parent: 179 - - uid: 551 + - uid: 1231 components: - type: Transform - pos: 28.5,7.5 + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 parent: 179 - - uid: 552 + - uid: 1263 components: - type: Transform - pos: 28.5,6.5 + pos: 6.5,-23.5 parent: 179 - - uid: 553 + - uid: 1272 components: - type: Transform - pos: 28.5,5.5 + pos: 6.5,-24.5 parent: 179 - - uid: 554 + - uid: 1294 components: - type: Transform - pos: 26.5,-2.5 + pos: 25.5,-24.5 parent: 179 - - uid: 555 + - uid: 1295 components: - type: Transform - pos: 26.5,-1.5 + pos: 25.5,-23.5 parent: 179 - - uid: 556 + - uid: 1303 components: - type: Transform - pos: 25.5,-0.5 + rot: 3.141592653589793 rad + pos: 14.5,-1.5 parent: 179 - - uid: 557 + - uid: 1304 components: - type: Transform - pos: 26.5,-0.5 + rot: 3.141592653589793 rad + pos: 14.5,-2.5 parent: 179 - - uid: 558 + - uid: 1305 components: - type: Transform - pos: 27.5,-0.5 + rot: 3.141592653589793 rad + pos: 14.5,-3.5 parent: 179 - - uid: 561 + - uid: 1306 components: - type: Transform - pos: -14.5,0.5 + rot: 3.141592653589793 rad + pos: 14.5,-4.5 parent: 179 - - uid: 585 + - uid: 1307 components: - type: Transform - pos: 9.5,10.5 + rot: 3.141592653589793 rad + pos: 14.5,-5.5 parent: 179 - - uid: 597 + - uid: 1328 components: - type: Transform - pos: 22.5,-0.5 + pos: 25.5,-25.5 parent: 179 - - uid: 598 + - uid: 1329 components: - type: Transform - pos: 17.5,-0.5 + pos: 24.5,-25.5 parent: 179 - - uid: 599 + - uid: 1330 components: - type: Transform - pos: 18.5,-0.5 + pos: 23.5,-25.5 parent: 179 - - uid: 600 + - uid: 1331 components: - type: Transform - pos: 20.5,-0.5 + pos: 22.5,-25.5 parent: 179 - - uid: 601 + - uid: 1332 components: - type: Transform - pos: 21.5,-0.5 + pos: 21.5,-25.5 parent: 179 - - uid: 602 + - uid: 1333 components: - type: Transform - pos: 19.5,-0.5 + pos: 20.5,-25.5 parent: 179 - - uid: 603 + - uid: 1334 components: - type: Transform - pos: 14.5,3.5 + pos: 19.5,-25.5 parent: 179 - - uid: 604 + - uid: 1337 components: - type: Transform - pos: 13.5,3.5 + pos: 16.5,-25.5 parent: 179 - - uid: 605 + - uid: 1338 components: - type: Transform - pos: 12.5,3.5 + pos: 15.5,-25.5 parent: 179 - - uid: 606 + - uid: 1339 components: - type: Transform - pos: 12.5,2.5 + pos: 14.5,-25.5 parent: 179 - - uid: 607 + - uid: 1340 components: - type: Transform - pos: 12.5,1.5 + pos: 12.5,-25.5 parent: 179 - - uid: 608 + - uid: 1341 components: - type: Transform - pos: 12.5,0.5 + pos: 11.5,-25.5 parent: 179 - - uid: 609 + - uid: 1342 components: - type: Transform - pos: 12.5,-0.5 + pos: 10.5,-25.5 parent: 179 - - uid: 610 + - uid: 1343 components: - type: Transform - pos: 13.5,-0.5 + pos: 9.5,-25.5 parent: 179 - - uid: 611 + - uid: 1344 components: - type: Transform - pos: 14.5,-0.5 + pos: 8.5,-25.5 parent: 179 - - uid: 612 + - uid: 1345 components: - type: Transform - pos: 13.5,-1.5 + pos: 7.5,-25.5 parent: 179 - - uid: 613 + - uid: 1346 components: - type: Transform - pos: 13.5,-6.5 + pos: 6.5,-25.5 parent: 179 - - uid: 614 + - uid: 1347 components: - type: Transform - pos: 13.5,-5.5 + pos: 13.5,-25.5 parent: 179 - - uid: 615 + - uid: 1506 components: - type: Transform - pos: 13.5,-4.5 + pos: 10.5,-12.5 parent: 179 - - uid: 616 + - uid: 1559 components: - type: Transform - pos: 13.5,-3.5 + pos: 8.5,-4.5 parent: 179 - - uid: 617 +- proto: WarningCO2 + entities: + - uid: 1300 components: - type: Transform - pos: 13.5,-2.5 + rot: -1.5707963267948966 rad + pos: 25.5,-21.5 parent: 179 - - uid: 618 +- proto: WarningN2 + entities: + - uid: 1208 components: - type: Transform - pos: 14.5,-6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 parent: 179 - - uid: 619 +- proto: WarningN2O + entities: + - uid: 1296 components: - type: Transform - pos: 15.5,-6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 parent: 179 - - uid: 620 +- proto: WarningO2 + entities: + - uid: 1227 components: - type: Transform - pos: 16.5,-6.5 + rot: -1.5707963267948966 rad + pos: 25.5,-7.5 parent: 179 - - uid: 621 +- proto: WaterTankFull + entities: + - uid: 115 components: - type: Transform - pos: 17.5,-6.5 + pos: 4.5,18.5 parent: 179 - - uid: 622 + - uid: 694 components: - type: Transform - pos: 18.5,-6.5 + pos: -2.5,3.5 parent: 179 - - uid: 623 +- proto: WaterVaporCanister + entities: + - uid: 97 components: - type: Transform - pos: 19.5,-6.5 + pos: 12.5,-1.5 parent: 179 - - uid: 624 + - uid: 319 components: - type: Transform - pos: 20.5,-6.5 + pos: 13.5,-1.5 parent: 179 - - uid: 625 + - uid: 1313 components: - type: Transform - pos: 21.5,-6.5 + pos: 24.5,-23.5 parent: 179 - - uid: 626 +- proto: WeaponCapacitorRecharger + entities: + - uid: 708 components: - type: Transform - pos: 22.5,-6.5 + pos: -0.5,-3.5 parent: 179 - - uid: 627 +- proto: WeaponLaserCarbine + entities: + - uid: 188 components: - type: Transform - pos: 23.5,-6.5 + pos: -3.5226438,-0.45543313 parent: 179 - - uid: 628 +- proto: WeaponLauncherMultipleRocket + entities: + - uid: 671 components: - type: Transform - pos: 24.5,-6.5 + pos: -13.195735,9.730438 parent: 179 - - uid: 629 +- proto: WeaponLauncherRocket + entities: + - uid: 436 components: - type: Transform - pos: 25.5,-6.5 + pos: -3.478273,-1.1611286 parent: 179 - - uid: 630 +- proto: WeaponRifleAk + entities: + - uid: 437 components: - type: Transform - pos: 26.5,-6.5 + pos: -3.5018106,0.24183923 parent: 179 - - uid: 631 + - uid: 949 components: - type: Transform - pos: 26.5,-5.5 + pos: -12.238617,9.081488 parent: 179 - - uid: 632 +- proto: WelderExperimental + entities: + - uid: 343 components: - type: Transform - pos: 26.5,-4.5 + pos: 0.6895334,4.7183027 parent: 179 - - uid: 633 +- proto: WeldingFuelTankFull + entities: + - uid: 693 components: - type: Transform - pos: 27.5,-6.5 + pos: -1.5,3.5 parent: 179 - - uid: 634 +- proto: Window + entities: + - uid: 111 components: - type: Transform - pos: 28.5,-6.5 + pos: -0.5,-15.5 parent: 179 - - uid: 635 + - uid: 194 components: - type: Transform - pos: 29.5,-6.5 + pos: -0.5,-16.5 parent: 179 - - uid: 636 + - uid: 230 components: - type: Transform - pos: 30.5,-6.5 + pos: -0.5,-14.5 parent: 179 - - uid: 637 + - uid: 1001 components: - type: Transform - pos: 31.5,-6.5 + pos: -3.5,-16.5 parent: 179 - - uid: 638 + - uid: 1002 components: - type: Transform - pos: 32.5,-6.5 + pos: -3.5,-15.5 parent: 179 - - uid: 639 + - uid: 1003 components: - type: Transform - pos: 33.5,-6.5 + pos: -3.5,-14.5 parent: 179 - - uid: 640 + - uid: 1004 components: - type: Transform - pos: 34.5,-6.5 + pos: 2.5,-16.5 parent: 179 - - uid: 641 + - uid: 1005 components: - type: Transform - pos: 34.5,-5.5 + pos: 2.5,-15.5 parent: 179 - - uid: 642 + - uid: 1006 components: - type: Transform - pos: 34.5,-4.5 + pos: 2.5,-14.5 parent: 179 - - uid: 643 +- proto: WindowReinforcedDirectional + entities: + - uid: 340 components: - type: Transform - pos: 34.5,-3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 parent: 179 - - uid: 644 + - uid: 345 components: - type: Transform - pos: 34.5,-2.5 + rot: 3.141592653589793 rad + pos: 24.5,-8.5 parent: 179 - - uid: 645 + - uid: 347 components: - type: Transform - pos: 34.5,-1.5 + pos: 24.5,-22.5 parent: 179 - - uid: 646 + - uid: 348 components: - type: Transform - pos: 34.5,-0.5 + rot: 3.141592653589793 rad + pos: 23.5,-8.5 parent: 179 - - uid: 647 + - uid: 1236 components: - type: Transform - pos: 33.5,-0.5 + pos: 23.5,-8.5 parent: 179 - - uid: 648 + - uid: 1237 components: - type: Transform - pos: 32.5,-0.5 + pos: 24.5,-8.5 parent: 179 - - uid: 649 + - uid: 1239 components: - type: Transform - pos: 31.5,-0.5 + rot: 3.141592653589793 rad + pos: 23.5,-10.5 parent: 179 - - uid: 650 + - uid: 1240 components: - type: Transform - pos: 30.5,-0.5 + rot: 3.141592653589793 rad + pos: 24.5,-10.5 parent: 179 - - uid: 651 + - uid: 1241 components: - type: Transform - pos: 29.5,-0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 parent: 179 - - uid: 652 + - uid: 1242 components: - type: Transform - pos: 30.5,0.5 + rot: 1.5707963267948966 rad + pos: 21.5,-11.5 parent: 179 - - uid: 653 + - uid: 1243 components: - type: Transform - pos: 30.5,1.5 + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 parent: 179 - - uid: 654 + - uid: 1244 components: - type: Transform - pos: 30.5,2.5 + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 parent: 179 - - uid: 655 + - uid: 1245 components: - type: Transform - pos: 30.5,3.5 + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 parent: 179 - - uid: 656 + - uid: 1246 components: - type: Transform - pos: 30.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,-19.5 parent: 179 - - uid: 657 + - uid: 1247 components: - type: Transform - pos: 29.5,4.5 + rot: 3.141592653589793 rad + pos: 23.5,-22.5 parent: 179 - - uid: 658 + - uid: 1248 components: - type: Transform - pos: 28.5,4.5 + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 parent: 179 - - uid: 659 + - uid: 1249 components: - type: Transform - pos: 27.5,4.5 + pos: 23.5,-10.5 parent: 179 - - uid: 702 + - uid: 1250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,6.5 + pos: 24.5,-10.5 parent: 179 - - uid: 713 + - uid: 1251 components: - type: Transform - pos: -7.5,9.5 + pos: 24.5,-12.5 parent: 179 - - uid: 714 + - uid: 1252 components: - type: Transform - pos: -7.5,10.5 + pos: 24.5,-14.5 parent: 179 - - uid: 724 + - uid: 1253 components: - type: Transform - pos: -2.5,12.5 + pos: 24.5,-16.5 parent: 179 - - uid: 733 + - uid: 1254 components: - type: Transform - pos: 4.5,5.5 + pos: 24.5,-18.5 parent: 179 - - uid: 734 + - uid: 1255 components: - type: Transform - pos: 4.5,4.5 + pos: 24.5,-20.5 parent: 179 - - uid: 739 + - uid: 1256 components: - type: Transform - pos: 8.5,7.5 + pos: 23.5,-20.5 parent: 179 - - uid: 740 + - uid: 1257 components: - type: Transform - pos: 8.5,6.5 + pos: 23.5,-18.5 parent: 179 - - uid: 741 + - uid: 1259 components: - type: Transform - pos: 8.5,5.5 + rot: 3.141592653589793 rad + pos: 23.5,-24.5 parent: 179 - - uid: 742 + - uid: 1261 components: - type: Transform - pos: 8.5,4.5 + pos: 23.5,-16.5 parent: 179 - - uid: 743 + - uid: 1262 components: - type: Transform - pos: 8.5,3.5 + pos: 23.5,-14.5 parent: 179 - - uid: 745 + - uid: 1264 components: - type: Transform - pos: 4.5,7.5 + rot: 3.141592653589793 rad + pos: 24.5,-22.5 parent: 179 - - uid: 746 + - uid: 1265 components: - type: Transform - pos: 4.5,6.5 + pos: 23.5,-12.5 parent: 179 - - uid: 846 + - uid: 1266 components: - type: Transform - pos: 2.5,19.5 + pos: 23.5,-22.5 parent: 179 - - uid: 847 + - uid: 1267 components: - type: Transform - pos: 3.5,19.5 + rot: 3.141592653589793 rad + pos: 23.5,-12.5 parent: 179 - - uid: 925 + - uid: 1268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,17.5 + rot: 3.141592653589793 rad + pos: 24.5,-12.5 parent: 179 - - uid: 958 + - uid: 1269 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,18.5 + pos: 24.5,-14.5 parent: 179 - - uid: 1072 + - uid: 1270 components: - type: Transform - pos: 15.5,28.5 + rot: 3.141592653589793 rad + pos: 23.5,-14.5 parent: 179 - - uid: 1073 + - uid: 1271 components: - type: Transform - pos: 16.5,28.5 + rot: 1.5707963267948966 rad + pos: 21.5,-23.5 parent: 179 - - uid: 1074 + - uid: 1273 components: - type: Transform - pos: 17.5,28.5 + rot: 3.141592653589793 rad + pos: 23.5,-16.5 parent: 179 - - uid: 1181 + - uid: 1274 components: - type: Transform - pos: 5.5,28.5 + rot: 3.141592653589793 rad + pos: 24.5,-16.5 parent: 179 -- proto: WaterTankFull - entities: - - uid: 115 + - uid: 1275 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: 24.5,-18.5 parent: 179 - - uid: 694 + - uid: 1276 components: - type: Transform - pos: -2.5,3.5 + rot: 3.141592653589793 rad + pos: 23.5,-18.5 parent: 179 -- proto: WeaponCapacitorRecharger - entities: - - uid: 708 + - uid: 1279 components: - type: Transform - pos: -0.5,-3.5 + rot: 3.141592653589793 rad + pos: 23.5,-20.5 parent: 179 -- proto: WeaponLaserCarbine - entities: - - uid: 188 + - uid: 1280 components: - type: Transform - pos: -3.5226438,-0.45543313 + rot: 3.141592653589793 rad + pos: 24.5,-20.5 parent: 179 -- proto: WeaponLauncherMultipleRocket - entities: - - uid: 671 + - uid: 1283 components: - type: Transform - pos: -13.195735,9.730438 + rot: 3.141592653589793 rad + pos: 24.5,-24.5 parent: 179 -- proto: WeaponLauncherRocket - entities: - - uid: 436 + - uid: 1386 components: - type: Transform - pos: -3.478273,-1.1611286 + rot: 1.5707963267948966 rad + pos: 11.5,-15.5 parent: 179 -- proto: WeaponRifleAk - entities: - - uid: 437 + - uid: 1387 components: - type: Transform - pos: -3.5018106,0.24183923 + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 parent: 179 - - uid: 949 + - uid: 1388 components: - type: Transform - pos: -12.238617,9.081488 + pos: 12.5,-12.5 parent: 179 -- proto: WelderExperimental - entities: - - uid: 343 + - uid: 1490 components: - type: Transform - pos: 0.6895334,4.7183027 + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 parent: 179 -- proto: WeldingFuelTankFull - entities: - - uid: 693 + - uid: 1491 components: - type: Transform - pos: -1.5,3.5 + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 parent: 179 -- proto: Window - entities: - - uid: 111 + - uid: 1492 components: - type: Transform - pos: -0.5,-15.5 + rot: 3.141592653589793 rad + pos: 11.5,-16.5 parent: 179 - - uid: 194 + - uid: 1494 components: - type: Transform - pos: -0.5,-16.5 + rot: -1.5707963267948966 rad + pos: 15.5,-13.5 parent: 179 - - uid: 230 + - uid: 1495 components: - type: Transform - pos: -0.5,-14.5 + rot: 3.141592653589793 rad + pos: 10.5,-16.5 parent: 179 - - uid: 1001 + - uid: 1496 components: - type: Transform - pos: -3.5,-16.5 + pos: 11.5,-12.5 parent: 179 - - uid: 1002 + - uid: 1497 components: - type: Transform - pos: -3.5,-15.5 + rot: 3.141592653589793 rad + pos: 14.5,-16.5 parent: 179 - - uid: 1003 + - uid: 1498 components: - type: Transform - pos: -3.5,-14.5 + rot: 1.5707963267948966 rad + pos: 9.5,-15.5 parent: 179 - - uid: 1004 + - uid: 1501 components: - type: Transform - pos: 2.5,-16.5 + rot: 3.141592653589793 rad + pos: 12.5,-16.5 parent: 179 - - uid: 1005 + - uid: 1505 components: - type: Transform - pos: 2.5,-15.5 + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 parent: 179 - - uid: 1006 + - uid: 1562 components: - type: Transform - pos: 2.5,-14.5 + pos: 14.5,-12.5 parent: 179 - proto: Wirecutter entities: diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index d661e097c36..764c03b71bc 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -62944,11 +62944,6 @@ entities: - type: Transform pos: 35.5,16.5 parent: 60 - - uid: 24676 - components: - - type: Transform - pos: 11.5,-11.5 - parent: 60 - proto: DefaultStationBeaconAICore entities: - uid: 18703 @@ -63342,6 +63337,13 @@ entities: - type: Transform pos: 3.5,-6.5 parent: 60 +- proto: DefaultStationBeaconVox + entities: + - uid: 23890 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 60 - proto: DefaultStationBeaconWardensOffice entities: - uid: 24426 diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index 3adc9767832..a56b0d6471a 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: -18318.04 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 @@ -72429,6 +72442,13 @@ entities: - type: Transform pos: -31.5,4.5 parent: 8364 +- proto: DefaultStationBeaconVox + entities: + - uid: 27921 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 8364 - proto: DefaultStationBeaconWardensOffice entities: - uid: 27736 @@ -81253,11 +81273,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 +81295,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 +84438,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -10896.755 + secondsUntilStateChange: -12506.576 state: Closing - uid: 15010 components: @@ -84911,7 +84931,7 @@ entities: pos: -4.5,-71.5 parent: 8364 - type: Door - secondsUntilStateChange: -2644.4858 + secondsUntilStateChange: -4254.308 state: Closing - proto: Fireplace entities: @@ -110589,6 +110609,9 @@ entities: - type: Transform pos: -15.5,-68.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - type: AtmosPipeColor color: '#0055CCFF' - uid: 7282 @@ -112049,6 +112072,9 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-69.5 parent: 8364 + - type: DeviceNetwork + deviceLists: + - 26707 - uid: 7284 components: - type: Transform @@ -133757,6 +133783,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 +133808,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 +137251,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 +138075,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/core.yml b/Resources/Maps/core.yml index 1c5b67b5005..2198854499e 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -63749,6 +63749,13 @@ entities: - type: Transform pos: 54.5,-33.5 parent: 2 +- proto: DefaultStationBeaconVox + entities: + - uid: 16173 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - uid: 20871 @@ -106044,11 +106051,11 @@ entities: After several simulations where Superconducting Magnetic Energy Storage units were drained from the main system from [italic]a variety[/italic] of user errors and other shenanigans, it has been determined that the Singularity should be put on its own power loop, disconnected from the main station. The upsides of this include but are not limited to: - [bold]1.[/bold] Limited external forces from the containments power. + [bold]1.[/bold] Limited external forces from the containments power. - [bold]2.[/bold] An "early warning" system, if you see JUST the PA room run out of power, you know there is an issue. + [bold]2.[/bold] An "early warning" system, if you see JUST the PA room run out of power, you know there is an issue. - [bold]3.[/bold] Due to being on its own small loop, its much easier to spot faults in the system. + [bold]3.[/bold] Due to being on its own small loop, its much easier to spot faults in the system. [italic]While we have listed the upsides we also acknowledge the downside,[/italic] for it being on its own loop you will need an external force if the system "runs out of juice". Our recommendation for this is simply attaching a generator to said SMES and letting it get to full charge before continuing operations but as said from another of our technicians... "just attach it to the main grid for like, a hot moment, and kickstart the thing!" diff --git a/Resources/Maps/corvax_astra.yml b/Resources/Maps/corvax_astra.yml index 95e5bf44c80..93effd6c2f3 100644 --- a/Resources/Maps/corvax_astra.yml +++ b/Resources/Maps/corvax_astra.yml @@ -69,7 +69,6 @@ tilemap: 76: FloorPlanetGrass 77: FloorPlastic 78: FloorRGlass - 94: FloorRedCircuit 79: FloorReinforced 80: FloorReinforcedHardened 81: FloorRockVault @@ -161,7 +160,7 @@ entities: version: 6 -1,-1: ind: -1,-1 - tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAANAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAADwAAAAABfgAAAAAAOgAAAAABfgAAAAAAMgAAAAABfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAUQAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAABMgAAAAAAMgAAAAADfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAMgAAAAACfgAAAAAAMgAAAAABMgAAAAABUQAAAAAAOgAAAAAAOgAAAAADOgAAAAACUQAAAAAAMgAAAAADMgAAAAAAMgAAAAAAUQAAAAAAfgAAAAAAHwAAAAABUQAAAAAAUQAAAAAAMgAAAAAAMgAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD + tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAANAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAADwAAAAABfgAAAAAAOgAAAAABfgAAAAAAMgAAAAABfgAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAMgAAAAADMgAAAAAAUQAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAABMgAAAAAAMgAAAAADfgAAAAAAMgAAAAADUQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAMgAAAAACfgAAAAAAMgAAAAABMgAAAAABUQAAAAAAOgAAAAAAOgAAAAADOgAAAAACUQAAAAAAMgAAAAADMgAAAAAAMgAAAAAAUQAAAAAAfgAAAAAAHwAAAAABUQAAAAAAUQAAAAAAMgAAAAAAMgAAAAACUQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAOAAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAD version: 6 -1,1: ind: -1,1 @@ -169,7 +168,7 @@ entities: version: 6 0,1: ind: 0,1 - tiles: XQAAAAABXQAAAAAAHwAAAAAAXQAAAAAAXwAAAAACTQAAAAACfgAAAAAAQAAAAAAAegAAAAADegAAAAADegAAAAACfAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATgAAAAACTQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAATQAAAAACXQAAAAABfgAAAAAAHwAAAAAAXgAAAAAAXgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAACXQAAAAABHwAAAAAAHwAAAAACHwAAAAACBgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADHwAAAAABKAAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAXgAAAAAAXgAAAAAAXQAAAAACTQAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADXgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAKAAAAAADHwAAAAADHwAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABKAAAAAABHwAAAAABHwAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADTQAAAAADTQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAAAHwAAAAAAXQAAAAAAXwAAAAACTQAAAAACfgAAAAAAQAAAAAAAegAAAAADegAAAAADegAAAAACfAAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATgAAAAACTQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAEQAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAATQAAAAACXQAAAAABfgAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAACXQAAAAABHwAAAAAAHwAAAAACHwAAAAACOAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADHwAAAAABKAAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAAAEQAAAAAAEQAAAAAAXQAAAAACTQAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADEQAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAKAAAAAADHwAAAAADHwAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABKAAAAAABHwAAAAABHwAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADTQAAAAADTQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 @@ -181,7 +180,7 @@ entities: version: 6 1,1: ind: 1,1 - tiles: QAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACXgAAAAAAXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAbAAAAAAABgAAAAAABgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACHwAAAAABXgAAAAAAXgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAAAQAAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKgAAAAACfgAAAAAAKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAfgAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAKgAAAAABegAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAABfgAAAAAAKgAAAAADegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: QAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAAbAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAACHwAAAAABEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAAAQAAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAKgAAAAACfgAAAAAAKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAFQAAAAAGfgAAAAAAfgAAAAAAFQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAKgAAAAABegAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAFQAAAAABfgAAAAAAKgAAAAADegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,0: ind: 2,0 @@ -377,7 +376,7 @@ entities: version: 6 -3,-4: ind: -3,-4 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAACHwAAAAACHwAAAAADHwAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADHwAAAAAAXQAAAAACfgAAAAAAcAAAAAAAcAAAAAAAOAAAAAAAcAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADHwAAAAACXQAAAAACXQAAAAACHwAAAAADHwAAAAAAHwAAAAABXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABHwAAAAACXQAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAHwAAAAACXQAAAAAAHwAAAAAAXQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAADXQAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAAAXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAHwAAAAADXQAAAAADHwAAAAAAXQAAAAACTwAAAAAAXgAAAAAATwAAAAAATwAAAAAAXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAABXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADIAAAAAADHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABIAAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAXQAAAAADfgAAAAAAcAAAAAADcAAAAAACHwAAAAACHwAAAAADHwAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADHwAAAAAAXQAAAAACfgAAAAAAcAAAAAAAcAAAAAAAOAAAAAAAcAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADHwAAAAACXQAAAAACXQAAAAACHwAAAAADHwAAAAAAHwAAAAABXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABHwAAAAACXQAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADHwAAAAACXQAAAAABfgAAAAAAHwAAAAACXQAAAAAAHwAAAAADXQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAADXQAAAAAAfgAAAAAAHwAAAAACXQAAAAAAHwAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAAHwAAAAABHwAAAAABHwAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAHwAAAAADXQAAAAADHwAAAAADXQAAAAACTwAAAAAAOAAAAAAATwAAAAAATwAAAAAAXQAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAABXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADIAAAAAADHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABIAAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAAD version: 6 -4,-4: ind: -4,-4 @@ -489,7 +488,7 @@ entities: version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAALAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABggAAAAACgQAAAAAAggAAAAABHwAAAAADHwAAAAAAfgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAACgQAAAAAAggAAAAABggAAAAAAgQAAAAAAHwAAAAADHwAAAAABfgAAAAAASAAAAAACSAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAABSAAAAAABSAAAAAADSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAAAFQAAAAABFQAAAAAFFQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAABSwAAAAABfgAAAAAASwAAAAADSwAAAAABfgAAAAAASwAAAAADSwAAAAABFQAAAAAGFQAAAAAGFQAAAAACfgAAAAAAUwAAAAAAHwAAAAACfgAAAAAASAAAAAAASAAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACfgAAAAAASwAAAAABSwAAAAABFQAAAAABFQAAAAACFQAAAAAGFQAAAAADUwAAAAAAUwAAAAAAfgAAAAAASAAAAAABSAAAAAAASwAAAAADSwAAAAAAfQAAAAAASwAAAAACSwAAAAABfgAAAAAAfQAAAAAAFQAAAAAFFQAAAAADFQAAAAABfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAAASAAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABfQAAAAAASwAAAAAASwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAACSAAAAAADSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAABFQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADSAAAAAACSAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAAASwAAAAABSwAAAAACfgAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAQgAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAA + tiles: fgAAAAAAfgAAAAAALAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALAAAAAAAfgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABggAAAAACgQAAAAAAggAAAAABHwAAAAADHwAAAAAAfgAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAACKQAAAAABKQAAAAAAKQAAAAACgQAAAAAAggAAAAABggAAAAAAgQAAAAAAHwAAAAADHwAAAAABfgAAAAAASAAAAAACSAAAAAAASAAAAAABSAAAAAACSAAAAAADSAAAAAABSAAAAAABSAAAAAADSAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAADSwAAAAADSwAAAAABSwAAAAADSwAAAAADSwAAAAACSwAAAAAASwAAAAAAFQAAAAABFQAAAAAFFQAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAKQAAAAABSAAAAAABSwAAAAABfgAAAAAASwAAAAADSwAAAAABfgAAAAAASwAAAAADSwAAAAABFQAAAAAGFQAAAAAGFQAAAAACfgAAAAAAUwAAAAAAHwAAAAACfgAAAAAASAAAAAAASAAAAAABSwAAAAABSwAAAAACSwAAAAACSwAAAAACfgAAAAAASwAAAAABSwAAAAABFQAAAAABFQAAAAACFQAAAAAGFQAAAAADUwAAAAAAUwAAAAAAfgAAAAAASAAAAAABSAAAAAAASwAAAAADSwAAAAAAfQAAAAAASwAAAAACSwAAAAABfgAAAAAAfQAAAAAAFQAAAAAFFQAAAAADFQAAAAABfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAAASAAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABfQAAAAAASwAAAAAASwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAKQAAAAACSAAAAAADSwAAAAABSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAABFQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAASAAAAAADSAAAAAACSAAAAAACSAAAAAADSAAAAAADSAAAAAAASAAAAAADSAAAAAACSAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAASwAAAAADSwAAAAADSwAAAAAASwAAAAAASwAAAAABSwAAAAACfgAAAAAAFQAAAAAEfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUwAAAAAAUwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAQgAAAAAAQQAAAAAAFwAAAAACfgAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -712,13 +711,6 @@ entities: id: Basalt9 decals: 9724: -8.7937765,-23.892101 - - node: - color: '#8BDA8EFF' - id: Bot - decals: - 12354: 88,-6 - 12355: 88,-7 - 12356: 88,-8 - node: color: '#9FED58CD' id: Bot @@ -900,15 +892,15 @@ entities: 12325: 57,-18 12328: 57,-22 12329: 55,-18 - 12375: 72,-1 - 12376: 73,-1 - 12377: 74,-1 - 12378: 75,-1 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: + 10951: 72,-1 + 10952: 73,-1 + 10953: 74,-1 + 10954: 75,-1 11000: 85,-10 - node: zIndex: 1 @@ -924,8 +916,13 @@ entities: 1639: 51,-82 1643: 53,-82 1644: 54,-79 - 12379: 74,-5 - 12380: 75,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeft + decals: + 10955: 72,-5 + 10956: 73,-5 - node: color: '#FFFFFFFF' id: BotRight @@ -934,8 +931,13 @@ entities: 1640: 48,-82 1645: 54,-82 1646: 53,-79 - 12381: 73,-5 - 12382: 72,-5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotRight + decals: + 10957: 74,-5 + 10958: 75,-5 - node: color: '#FFFFFFFF' id: Box @@ -1006,6 +1008,45 @@ entities: id: BoxGreyscale decals: 11035: 79,-4 + - node: + cleanable: True + color: '#AE6716FF' + id: BrickCornerOverlayNE + decals: + 10965: 87,1 + 10966: 83,1 + 10967: 79,1 + - node: + cleanable: True + color: '#AE6716FF' + id: BrickCornerOverlayNW + decals: + 10968: 77,1 + 10970: 81,1 + 10971: 85,1 + - node: + cleanable: True + color: '#AE6716FF' + id: BrickCornerOverlaySE + decals: + 10975: 79,0 + 10983: 83,0 + - node: + cleanable: True + color: '#AE6716FF' + id: BrickCornerOverlaySW + decals: + 10972: 77,0 + 10973: 81,0 + 10974: 85,0 + - node: + cleanable: True + color: '#AE6716FF' + id: BrickLineOverlayN + decals: + 10977: 78,1 + 10978: 86,1 + 10979: 82,1 - node: angle: -0.6981317007977318 rad color: '#D4D4D496' @@ -1474,6 +1515,12 @@ entities: decals: 7414: 38,13 7420: 34,15 + - node: + cleanable: True + color: '#C6FF91FF' + id: BrickTileSteelCornerNe + decals: + 10987: 89,-4 - node: color: '#FF5C5C99' id: BrickTileSteelCornerNe @@ -1493,6 +1540,12 @@ entities: id: BrickTileSteelCornerNe decals: 11105: 54,7 + - node: + cleanable: True + color: '#C6FF91FF' + id: BrickTileSteelCornerNw + decals: + 10991: 87,-4 - node: color: '#FF5C5C99' id: BrickTileSteelCornerNw @@ -1519,6 +1572,12 @@ entities: id: BrickTileSteelCornerSe decals: 7411: 38,9 + - node: + cleanable: True + color: '#C6FF91FF' + id: BrickTileSteelCornerSe + decals: + 10988: 89,-8 - node: color: '#FF5C5C99' id: BrickTileSteelCornerSe @@ -1537,6 +1596,12 @@ entities: 6268: 63,-39 12048: 54,2 12237: 89,-11 + - node: + cleanable: True + color: '#C6FF91FF' + id: BrickTileSteelCornerSw + decals: + 10992: 87,-8 - node: color: '#FF5C5C99' id: BrickTileSteelCornerSw @@ -1648,6 +1713,14 @@ entities: 7412: 38,10 7413: 38,14 7416: 34,14 + - node: + cleanable: True + color: '#C6FF91FF' + id: BrickTileSteelLineE + decals: + 10984: 89,-7 + 10985: 89,-6 + 10986: 89,-5 - node: color: '#FF5C5C99' id: BrickTileSteelLineE @@ -1703,6 +1776,12 @@ entities: 11106: 54,6 11107: 54,5 11108: 54,4 + - node: + cleanable: True + color: '#C6FF91FF' + id: BrickTileSteelLineN + decals: + 10990: 88,-4 - node: color: '#FF5C5C99' id: BrickTileSteelLineN @@ -1773,6 +1852,12 @@ entities: 7402: 35,9 7403: 36,9 7404: 37,9 + - node: + cleanable: True + color: '#C6FF91FF' + id: BrickTileSteelLineS + decals: + 10989: 88,-8 - node: color: '#FF5C5C99' id: BrickTileSteelLineS @@ -1923,11 +2008,6 @@ entities: id: BrickTileWhiteCornerNe decals: 10282: -58,-24 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteCornerNe - decals: - 12342: 89,-4 - node: color: '#951710FF' id: BrickTileWhiteCornerNe @@ -1948,6 +2028,14 @@ entities: 10820: 65,5 12189: 75,-2 12205: 75,-2 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteCornerNe + decals: + 11013: 79,1 + 11014: 83,1 + 11015: 87,1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNe @@ -1977,11 +2065,6 @@ entities: id: BrickTileWhiteCornerNw decals: 10277: -60,-24 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteCornerNw - decals: - 12350: 87,-4 - node: color: '#951710FF' id: BrickTileWhiteCornerNw @@ -2003,6 +2086,14 @@ entities: 10746: 56,15 12188: 72,-2 12204: 72,-2 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteCornerNw + decals: + 11016: 85,1 + 11017: 81,1 + 11018: 77,1 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerNw @@ -2030,11 +2121,6 @@ entities: id: BrickTileWhiteCornerSe decals: 10281: -58,-26 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteCornerSe - decals: - 12346: 89,-8 - node: color: '#951710FF' id: BrickTileWhiteCornerSe @@ -2061,6 +2147,14 @@ entities: 11932: 57,3 12191: 75,-4 12202: 75,-4 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteCornerSe + decals: + 11007: 87,0 + 11008: 83,0 + 11009: 79,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSe @@ -2088,11 +2182,6 @@ entities: id: BrickTileWhiteCornerSw decals: 10278: -60,-26 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteCornerSw - decals: - 12348: 87,-8 - node: color: '#951710FF' id: BrickTileWhiteCornerSw @@ -2118,6 +2207,14 @@ entities: 10756: 61,13 12190: 72,-4 12203: 72,-4 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteCornerSw + decals: + 11010: 77,0 + 11011: 81,0 + 11012: 85,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteCornerSw @@ -2204,6 +2301,14 @@ entities: id: BrickTileWhiteInnerSe decals: 10273: 0,-73 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteInnerSe + decals: + 11031: 78,0 + 11032: 82,0 + 11033: 86,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSe @@ -2224,6 +2329,14 @@ entities: id: BrickTileWhiteInnerSw decals: 11923: 42,-6 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteInnerSw + decals: + 11028: 78,0 + 11029: 82,0 + 11030: 86,0 - node: color: '#FFFFFFFF' id: BrickTileWhiteInnerSw @@ -2239,13 +2352,6 @@ entities: id: BrickTileWhiteLineE decals: 10299: -13,18 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteLineE - decals: - 12343: 89,-5 - 12344: 89,-6 - 12345: 89,-7 - node: color: '#951710FF' id: BrickTileWhiteLineE @@ -2267,6 +2373,14 @@ entities: 10406: 61,10 10407: 61,9 10408: 61,8 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteLineE + decals: + 11025: 78,-1 + 11026: 82,-1 + 11027: 86,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineE @@ -2296,11 +2410,6 @@ entities: 12291: 62,-12 12292: 63,-12 12293: 64,-12 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteLineN - decals: - 12351: 88,-4 - node: color: '#951710FF' id: BrickTileWhiteLineN @@ -2328,6 +2437,14 @@ entities: 12197: 74,-2 12198: 74,-2 12199: 73,-2 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteLineN + decals: + 11019: 78,1 + 11020: 82,1 + 11021: 86,1 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineN @@ -2362,11 +2479,6 @@ entities: id: BrickTileWhiteLineS decals: 10280: -59,-26 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteLineS - decals: - 12347: 88,-8 - node: color: '#951710FF' id: BrickTileWhiteLineS @@ -2431,11 +2543,6 @@ entities: id: BrickTileWhiteLineW decals: 10279: -60,-25 - - node: - color: '#8BDA8EFF' - id: BrickTileWhiteLineW - decals: - 12349: 87,-7 - node: color: '#951710FF' id: BrickTileWhiteLineW @@ -2464,6 +2571,14 @@ entities: 10531: 59,9 10752: 56,14 11999: 77,5 + - node: + cleanable: True + color: '#FF9821FF' + id: BrickTileWhiteLineW + decals: + 11022: 78,-1 + 11023: 82,-1 + 11024: 86,-1 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -2618,6 +2733,13 @@ entities: 9596: 1.9963236,-28.532742 9597: 1.9181986,-28.892117 9598: 3.1994486,-28.063992 + - node: + color: '#9C2020FF' + id: Bushi2 + decals: + 9830: 4.978717,-59.257614 + 9831: 4.994342,-58.77324 + 9832: 5.588092,-59.05449 - node: color: '#FED83DFF' id: Bushi2 @@ -2721,6 +2843,11 @@ entities: 3400: -79.681145,-42.44266 5020: -27,-69 7109: -84,2 + - node: + color: '#9C2020FF' + id: Bushn1 + decals: + 9824: 9.913091,-53.8693 - node: color: '#FED83DFF' id: Bushn1 @@ -3040,13 +3167,6 @@ entities: id: ConcreteTrimCornerNe decals: 11522: 75,7 - - node: - color: '#EFB34196' - id: ConcreteTrimCornerNe - decals: - 12363: 87,1 - 12364: 79,1 - 12371: 83,1 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNe @@ -3076,13 +3196,6 @@ entities: id: ConcreteTrimCornerNw decals: 11520: 73,7 - - node: - color: '#EFB34196' - id: ConcreteTrimCornerNw - decals: - 12357: 81,1 - 12361: 77,1 - 12362: 85,1 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerNw @@ -3108,13 +3221,6 @@ entities: id: ConcreteTrimCornerSe decals: 11521: 75,3 - - node: - color: '#EFB34196' - id: ConcreteTrimCornerSe - decals: - 12358: 83,0 - 12359: 87,0 - 12360: 79,0 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSe @@ -3144,13 +3250,6 @@ entities: id: ConcreteTrimCornerSw decals: 11523: 73,3 - - node: - color: '#EFB34196' - id: ConcreteTrimCornerSw - decals: - 12368: 85,0 - 12369: 81,0 - 12370: 77,0 - node: color: '#FFFFFFFF' id: ConcreteTrimCornerSw @@ -3376,13 +3475,6 @@ entities: decals: 11341: 78,6 11524: 74,7 - - node: - color: '#EFB34196' - id: ConcreteTrimLineN - decals: - 12365: 78,1 - 12366: 82,1 - 12367: 86,1 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN @@ -3486,11 +3578,11 @@ entities: decals: 9801: -12,-41 - node: - cleanable: True - color: '#DE3A3A96' - id: Cyber + color: '#9C2020FF' + id: Damaged decals: - 12440: -38.221886,-54.105633 + 9823: 9.959966,-53.9943 + 9834: 13.935783,-62.00091 - node: angle: -0.17453292519943295 rad color: '#D4D4D496' @@ -3729,6 +3821,14 @@ entities: id: Delivery decals: 8242: 39,20 + - node: + cleanable: True + color: '#C6FF91FF' + id: DeliveryGreyscale + decals: + 10993: 88,-8 + 10994: 88,-7 + 10995: 88,-6 - node: color: '#FFFFFFFF' id: DerelictSignBottom1 @@ -4075,6 +4175,7 @@ entities: id: Dirt decals: 3120: 85,-10 + 3121: 74,-5 - node: cleanable: True color: '#FFFFFF5D' @@ -4086,6 +4187,9 @@ entities: 3155: 71,-2 3158: 77,-12 3161: 88,-11 + 3162: 88,-7 + 3163: 89,-5 + 3164: 87,-4 3295: -28,-93 3296: -27,-93 3297: -26,-92 @@ -5329,6 +5433,8 @@ entities: 10260: -9,-48 10261: -9,-49 10262: -9,-49 + 10898: 88,-6 + 10899: 88,-7 10909: 72,-13 10910: 72,-12 10924: 87,-10 @@ -5366,6 +5472,7 @@ entities: decals: 125: 8,-100 128: 3,-79 + 3146: 89,-7 4029: -50,-88 4039: -12,14 4043: -9,15 @@ -5471,8 +5578,10 @@ entities: 122: 8,-93 126: 6,-96 129: 3,-85 + 3142: 79,0 3143: 77,-6 3144: 85,-10 + 3145: 88,-4 4026: -48,-88 4035: -46,-93 4053: -64,-35 @@ -6238,6 +6347,11 @@ entities: 7211: 92,-73 7212: 93,-73 7213: 94,-73 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 4878: -38,-40 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -6277,6 +6391,16 @@ entities: id: HalfTileOverlayGreyscale180 decals: 1628: -4,19 + 2251: -42,-40 + 2252: -42,-40 + 4896: -41,-40 + 4897: -40,-40 + 4898: -39,-40 + 4899: -38,-40 + 4900: -38,-40 + 4901: -39,-40 + 4902: -40,-40 + 4903: -41,-40 - node: color: '#52DDE993' id: HalfTileOverlayGreyscale180 @@ -6330,23 +6454,11 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: + 4873: -37,-39 + 4874: -38,-39 + 4875: -38,-38 7209: 92,-72 7210: 102,-72 - 12540: -43,-38 - 12541: -43,-39 - 12542: -43,-40 - 12543: -41,-39 - 12544: -41,-38 - 12545: -39,-40 - 12546: -39,-39 - 12547: -39,-38 - 12548: -37,-40 - 12549: -37,-39 - 12550: -37,-38 - 12569: -41,-40 - 12570: -38,-40 - 12571: -38,-39 - 12572: -38,-38 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -6391,6 +6503,16 @@ entities: 3907: -5,23 7192: 104,-68 7203: 94,-68 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 4879: -40,-39 + 4880: -40,-38 + 4885: -41,-39 + 4886: -43,-38 + 4887: -43,-39 + 7906: -41,-38 - node: color: '#52DDE993' id: HalfTileOverlayGreyscale90 @@ -6451,11 +6573,6 @@ entities: id: MarkupSquare decals: 12086: 49,21 - - node: - color: '#52B4E996' - id: MarkupSquareQuater - decals: - 12573: -39,-39 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay @@ -11223,16 +11340,16 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: + 4882: -39,-40 + 4883: -39,-39 + 4884: -39,-38 + 4888: -42,-39 + 4893: -41,-39 12057: 62,-2 12058: 62,-3 12059: 62,-4 12060: 62,-5 12061: 62,-6 - 12555: -42,-39 - 12556: -42,-40 - 12561: -36,-40 - 12562: -36,-39 - 12565: -40,-38 - node: color: '#66ED5393' id: QuarterTileOverlayGreyscale @@ -11297,6 +11414,9 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: + 4892: -42,-39 + 4894: -43,-40 + 4895: -43,-40 12070: 62,-6 12071: 63,-6 12072: 64,-6 @@ -11305,10 +11425,6 @@ entities: 12075: 65,-4 12076: 65,-3 12077: 65,-2 - 12554: -43,-40 - 12560: -37,-40 - 12567: -41,-39 - 12568: -41,-40 - node: color: '#66ED5393' id: QuarterTileOverlayGreyscale180 @@ -11387,14 +11503,11 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 12552: -42,-38 - 12553: -42,-39 - 12557: -40,-40 - 12558: -36,-39 - 12559: -36,-38 - 12566: -40,-39 - 12575: -42,-40 - 12576: -36,-40 + 4876: -37,-38 + 4904: -37,-40 + 4905: -37,-40 + 7907: -41,-38 + 7908: -42,-38 - node: color: '#52DDE993' id: QuarterTileOverlayGreyscale270 @@ -11474,10 +11587,11 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 12551: -43,-38 - 12563: -37,-38 - 12564: -41,-38 - 12574: -39,-38 + 4877: -38,-38 + 4881: -40,-40 + 4889: -41,-40 + 4890: -43,-40 + 4891: -42,-39 - node: color: '#52DDE993' id: QuarterTileOverlayGreyscale90 @@ -11909,13 +12023,6 @@ entities: 9904: 25,-31 9948: -28,-42 9949: -27,-42 - - node: - color: '#EFB34196' - id: WarnFullGreyscale - decals: - 12372: 78,-1 - 12373: 82,-1 - 12374: 86,-1 - node: color: '#FFFFFFFF' id: WarnLineE @@ -11990,12 +12097,6 @@ entities: id: WarnLineGreyscaleE decals: 1749: 46,-87 - - node: - color: '#8BDA8EFF' - id: WarnLineGreyscaleE - decals: - 12352: 86,-5 - 12353: 86,-6 - node: color: '#9FED5896' id: WarnLineGreyscaleE @@ -12024,6 +12125,13 @@ entities: id: WarnLineGreyscaleE decals: 9556: 29,-37 + - node: + cleanable: True + color: '#C6FF91FF' + id: WarnLineGreyscaleE + decals: + 10996: 86,-6 + 10997: 86,-5 - node: color: '#D381C996' id: WarnLineGreyscaleE @@ -13696,115 +13804,11 @@ entities: decals: 9141: 50.35831,-37.718464 9149: 58.777966,-43.123447 - - node: - cleanable: True - color: '#FF0000FF' - id: bushsnowa1 - decals: - 12666: 14.146553,-62.193375 - 12667: 5.128832,-59.290485 - node: color: '#FED83DFF' id: bushsnowa2 decals: 9140: 46.905186,-42.76534 - - node: - cleanable: True - color: '#FF0000FF' - id: bushsnowa3 - decals: - 12655: 13.741725,-61.71254 - 12657: 14.19485,-61.99379 - - node: - cleanable: True - color: '#FF0000FF' - id: bushsnowb1 - decals: - 12656: 13.69485,-62.165665 - - node: - cleanable: True - color: '#FF0000FF' - id: bushsnowb3 - decals: - 12660: 9.768258,-54.19167 - 12661: 10.283883,-54.113544 - 12662: 9.940133,-53.738544 - 12663: 4.7677217,-59.207294 - 12664: 5.2677217,-59.19167 - 12665: 5.0333467,-58.801044 - - node: - cleanable: True - color: '#32CD32FF' - id: dot - decals: - 12519: -37.21662,-29.268173 - 12520: -37.12693,-29.423096 - 12521: -37.11878,-29.545399 - 12522: -37.10247,-29.602474 - 12523: -36.963856,-29.520939 - 12524: -37.029087,-29.333403 - 12525: -37.045395,-29.276327 - 12526: -36.914932,-29.504631 - 12527: -36.923088,-29.594322 - 12528: -36.980164,-29.626938 - 12529: -37.094315,-29.63509 - 12530: -37.135086,-29.716629 - 12531: -37.10247,-29.504631 - 12532: -37.004623,-29.300789 - 12533: -36.923088,-29.284481 - 12534: -36.866013,-29.34971 - 12535: -36.80078,-29.382324 - 12536: -36.784473,-29.398632 - 12537: -37.03724,-29.317095 - 12538: -37.167698,-29.34971 - 12539: -37.33893,-29.382324 - - node: - cleanable: True - color: '#61A00379' - id: dot - decals: - 12482: -37.671436,-30.138626 - 12483: -37.712204,-30.04078 - 12484: -37.777435,-29.91032 - 12485: -37.540977,-30.073395 - 12486: -37.540977,-30.073395 - 12487: -37.22298,-29.282482 - 12488: -37.28821,-29.135715 - 12489: -37.076214,-29.249868 - 12490: -37.076214,-29.176485 - 12491: -36.99468,-29.119408 - 12492: -36.986523,-29.33956 - 12493: -36.87237,-29.258022 - 12494: -36.790833,-29.200947 - 12495: -36.70114,-29.152023 - 12496: -36.70114,-29.160177 - 12497: -36.79899,-29.315098 - 12498: -36.921295,-29.372173 - 12499: -36.962063,-29.429249 - 12500: -36.962063,-29.502632 - 12501: -37.035446,-29.355867 - 12502: -37.09252,-29.192791 - 12503: -37.100677,-29.103102 - 12504: -36.91314,-29.160177 - 12505: -37.271904,-28.907412 - 12506: -37.377903,-29.258022 - 12507: -37.255596,-29.347713 - 12508: -37.141445,-29.51894 - 12509: -37.13329,-29.584171 - - node: - cleanable: True - color: '#71A457FF' - id: dot - decals: - 12510: -37.263752,-29.184639 - 12511: -37.157753,-29.347713 - 12512: -37.13329,-29.461864 - 12513: -37.06806,-29.665707 - 12514: -37.059906,-29.755398 - 12515: -36.84791,-29.347713 - 12516: -37.010986,-29.290636 - 12517: -37.051754,-29.57602 - 12518: -37.0436,-29.771706 - node: color: '#7C0000FF' id: dot @@ -13818,72 +13822,6 @@ entities: 7174: 101.5349,-49.733192 7175: 100.89427,-50.233192 7176: 100.56615,-49.592567 - - node: - cleanable: True - color: '#951710FF' - id: e - decals: - 12643: 42.17253,-0.9192984 - 12650: 73.2103,-3.1683846 - - node: - cleanable: True - angle: -2.0943951023931953 rad - color: '#DE3A3A96' - id: footprint - decals: - 12398: -53.63488,-21.629107 - 12399: -55.283012,-20.832811 - 12400: -54.90141,-21.180033 - 12401: -54.706966,-21.763367 - 12402: -53.261013,-22.35133 - 12403: -55.16365,-20.397625 - - node: - cleanable: True - angle: 1.5707963267948966 rad - color: '#DE3A3A96' - id: footprint - decals: - 12578: -50.22609,-28.141068 - 12579: -50.710464,-28.344193 - 12580: -51.19484,-28.156693 - 12581: -51.66359,-28.375443 - 12582: -52.034176,-28.125443 - 12583: -52.409176,-28.406693 - 12584: -52.940426,-28.094193 - 12588: -54.773598,-28.797318 - 12589: -55.132973,-29.219193 - - node: - cleanable: True - angle: 1.9198621771937625 rad - color: '#DE3A3A96' - id: footprint - decals: - 12585: -53.242348,-28.531693 - 12586: -53.929848,-28.406693 - 12587: -54.070473,-28.937943 - - node: - cleanable: True - angle: 2.0943951023931953 rad - color: '#DE3A3A96' - id: footprint - decals: - 12590: -55.632973,-29.044178 - 12591: -55.882973,-29.622303 - 12592: -56.398598,-29.512928 - 12593: -56.539223,-30.106678 - - node: - cleanable: True - angle: 2.2689280275926285 rad - color: '#DE3A3A96' - id: footprint - decals: - 12594: -57.023598,-30.137928 - - node: - cleanable: True - color: '#951710FF' - id: g - decals: - 12642: 41.852383,-0.76582384 - node: color: '#2D7230FF' id: grasssnow @@ -14031,28 +13969,36 @@ entities: decals: 9697: -7.1601906,-26.035517 9702: -8.981459,-25.941767 + - node: + color: '#9C2020FF' + id: grasssnowa3 + decals: + 9837: 14.115234,-61.40716 - node: color: '#FFFFFFFF' id: grasssnowa3 decals: 9700: -7.950208,-27.879267 + - node: + color: '#9C2020FF' + id: grasssnowb3 + decals: + 9836: 14.912109,-61.90716 - node: color: '#FFFFFFFF' id: grasssnowb3 decals: 9701: -8.918959,-26.863642 + - node: + color: '#9C2020FF' + id: grasssnowc1 + decals: + 9835: 13.951408,-61.985287 - node: color: '#FFFFFFFF' id: grasssnowc3 decals: 9699: -8.872084,-27.863642 - - node: - cleanable: True - color: '#951710FF' - id: h - decals: - 12648: 72.79364,-3.1579676 - 12649: 72.81447,-3.147551 - node: color: '#FFFFFFFF' id: heart @@ -14063,35 +14009,11 @@ entities: id: i decals: 9224: 84.58303,-65.14355 - - node: - cleanable: True - color: '#951710FF' - id: l - decals: - 12651: 73.61655,-3.1579676 - node: color: '#FFFFFFFF' id: n decals: 6938: -57,-100 - - node: - cleanable: True - color: '#951710FF' - id: o - decals: - 12645: 42.984436,-1.3255484 - - node: - cleanable: True - color: '#9FED5896' - id: o - decals: - 12441: -37.364815,-29.908596 - - node: - cleanable: True - color: '#951710FF' - id: p - decals: - 12652: 73.97072,-3.147551 - node: cleanable: True color: '#A020F0FF' @@ -14111,58 +14033,24 @@ entities: id: rune1 decals: 8104: -85,-27 - - node: - cleanable: True - angle: -2.0943951023931953 rad - color: '#DE3A3A96' - id: rune1 - decals: - 12436: -36.00174,-53.02812 - 12439: -39.236115,-52.418743 - node: cleanable: True color: '#A91409CC' id: rune2 decals: 8105: -86,-28 - - node: - cleanable: True - color: '#FA750096' - id: rune2 - decals: - 12577: -42.050926,-34.121315 - node: cleanable: True color: '#A91409CC' id: rune3 decals: 8106: -86,-26 - - node: - cleanable: True - angle: -2.0943951023931953 rad - color: '#DE3A3A96' - id: rune5 - decals: - 12438: -39.986115,-55.199993 - node: cleanable: True color: '#A91409CC' id: rune6 decals: 8107: -87,-27 - - node: - cleanable: True - angle: -2.0943951023931953 rad - color: '#DE3A3A96' - id: rune6 - decals: - 12437: -39.97049,-53.043743 - - node: - cleanable: True - color: '#FFFFFFFF' - id: safe - decals: - 12384: 1.9940939,-52.00569 - node: cleanable: True color: '#A91409CC' @@ -14174,56 +14062,6 @@ entities: id: skull decals: 6937: -55,-102 - - node: - cleanable: True - color: '#32CD3279' - id: smallbrush - decals: - 12442: -37.454506,-29.98198 - 12443: -37.226204,-29.737366 - 12444: -36.85113,-29.729214 - 12445: -36.728825,-29.76183 - 12446: -36.65544,-29.884132 - 12447: -36.64729,-29.941212 - 12448: -36.663597,-30.030903 - 12449: -36.704365,-30.104286 - 12450: -36.82667,-30.136898 - 12451: -37.324047,-30.055363 - 12452: -37.37297,-30.136898 - 12453: -37.37297,-30.17767 - 12454: -37.381123,-30.193977 - 12455: -37.38928,-30.234745 - 12456: -36.769592,-30.20213 - - node: - cleanable: True - color: '#61A00379' - id: smallbrush - decals: - 12457: -37.315895,-30.066578 - 12458: -36.712517,-29.870892 - 12459: -37.364815,-33.840252 - 12460: -37.381123,-33.823944 - 12461: -37.38928,-34.109325 - 12462: -37.315895,-34.19086 - 12463: -37.26697,-34.239784 - 12464: -37.15282,-33.70979 - 12465: -37.136513,-33.68533 - 12466: -36.85113,-33.68533 - 12467: -36.73698,-33.717945 - 12468: -36.720673,-33.76687 - 12469: -36.73698,-34.003326 - 12470: -36.728825,-34.10117 - 12471: -36.76144,-34.239784 - 12472: -36.834824,-34.2724 - 12473: -37.128357,-34.313168 - 12474: -37.17728,-34.345783 - 12475: -37.185432,-34.370243 - 12476: -37.079437,-34.38655 - 12477: -36.95713,-34.394703 - 12478: -36.82667,-34.394703 - 12479: -36.720673,-34.378395 - 12480: -36.622826,-34.223476 - 12481: -36.63098,-33.717945 - node: cleanable: True color: '#0000000C' @@ -14281,63 +14119,6 @@ entities: 7023: -70.96783,-1.3289509 7024: -70.986176,-1.7509065 7025: -71.022865,-1.9527112 - - node: - cleanable: True - angle: -2.0943951023931953 rad - color: '#79150096' - id: splatter - decals: - 12409: -55.35599,-40.821285 - 12410: -54.66849,-40.883785 - 12411: -55.840366,-41.30566 - 12412: -54.41849,-40.290035 - 12413: -55.527866,-40.21191 - 12414: -54.98099,-40.415035 - 12415: -55.82474,-40.99316 - 12416: -54.26224,-41.227535 - 12417: -45.539043,-24.025991 - 12418: -45.007793,-24.057241 - 12419: -45.375,-22.041616 - 12420: -45.359375,-19.070707 - 12430: -35.66167,-56.09848 - 12431: -35.208546,-55.989105 - 12432: -35.09917,-55.97348 - 12433: -34.927296,-56.082855 - 12434: -35.16167,-56.34848 - - node: - cleanable: True - color: '#79150096' - id: splatter - decals: - 12396: -55.849,-20.130264 - - node: - cleanable: True - angle: 2.2689280275926285 rad - color: '#79150096' - id: splatter - decals: - 12609: -49.091892,-27.454807 - 12610: -48.935642,-27.048557 - 12611: -49.091892,-26.720432 - 12612: -49.279392,-27.001682 - 12613: -49.341892,-27.236057 - 12614: -49.357517,-27.486057 - 12615: -48.779392,-27.111057 - 12627: 42.117886,9.871019 - 12628: 42.16476,10.199144 - 12629: 42.274136,10.277269 - 12630: 42.28976,9.777269 - 12631: 41.97726,10.027269 - 12632: 41.91476,9.824144 - 12633: 66.17969,9.993607 - 12634: 66.14844,9.493607 - 12635: 66.39844,7.8686066 - 12636: 66.42969,9.259232 - 12637: 66.53906,7.9779816 - 12638: 66.71094,7.5092316 - 12639: 66.50781,8.665482 - 12640: 66.50781,8.946732 - 12641: 66.71094,10.368607 - node: cleanable: True color: '#7C0000FF' @@ -14387,64 +14168,6 @@ entities: 8174: -81.97885,-26.694208 8175: -82.21323,-24.647333 8176: -84.33823,-26.846998 - - node: - cleanable: True - angle: -2.0943951023931953 rad - color: '#DE3A3A96' - id: splatter - decals: - 12404: -55.121616,-41.077972 - 12405: -55.54349,-40.687347 - 12406: -54.777866,-40.687347 - 12407: -55.090366,-40.99316 - 12408: -55.090366,-40.540035 - 12421: -44.953125,-19.039457 - 12422: -45.234375,-26.109701 - 12423: -45.046875,-25.172201 - 12424: -35.84917,-56.020355 - 12425: -35.271046,-55.832855 - 12426: -34.88042,-55.75473 - 12427: -35.427296,-56.207855 - 12428: -36.083546,-56.16098 - 12429: -35.53667,-55.582855 - 12435: -35.84353,-55.719116 - - node: - cleanable: True - color: '#DE3A3A96' - id: splatter - decals: - 12385: -55.49577,-20.024687 - 12386: -55.605145,-20.337187 - 12387: -56.167645,-19.962187 - 12388: -55.83952,-19.977812 - 12389: -56.18327,-20.446562 - 12390: -55.636395,-20.337187 - 12391: -55.105145,-20.884062 - 12392: -54.90202,-21.305937 - 12393: -53.261395,-22.055937 - 12394: -54.33952,-21.837187 - 12395: -52.917645,-22.227812 - 12397: -53.114624,-22.58339 - - node: - cleanable: True - angle: 2.2689280275926285 rad - color: '#DE3A3A96' - id: splatter - decals: - 12595: -57.107517,-30.751682 - 12596: -56.826267,-30.704807 - 12597: -56.748142,-30.689182 - 12598: -56.826267,-30.720432 - 12599: -56.951267,-30.782932 - 12600: -57.201267,-30.720432 - 12601: -57.170017,-31.329807 - 12602: -57.013767,-31.423557 - 12603: -56.795017,-31.501682 - 12604: -49.045017,-27.642307 - 12605: -49.404392,-27.923557 - 12606: -48.716892,-27.470432 - 12607: -49.279392,-26.548557 - 12608: -48.748142,-26.470432 - node: color: '#FF0000FF' id: splatter @@ -14458,24 +14181,11 @@ entities: decals: 6983: -68.91736,-7.389276 6984: -68.60486,-6.889276 - - node: - cleanable: True - color: '#951710FF' - id: t - decals: - 12644: 42.44277,-0.97138166 - 12647: 43.651104,-1.4817982 - node: color: '#FFFFFFFF' id: t decals: 9225: 84.98928,-65.1748 - - node: - cleanable: True - color: '#951710FF' - id: u - decals: - 12646: 43.359436,-1.4192982 - node: color: '#FFFFFFFF' id: w @@ -14520,8 +14230,7 @@ entities: 0: 58880 1: 15 2,0: - 0: 64185 - 2: 2 + 0: 64187 2,1: 0: 47887 2,2: @@ -14553,8 +14262,7 @@ entities: 4,2: 0: 12475 4,3: - 0: 48945 - 3: 2 + 0: 48947 0,-4: 0: 35983 0,-5: @@ -14586,8 +14294,7 @@ entities: 1,-5: 0: 26471 2,-4: - 0: 60159 - 4: 1024 + 0: 61183 2,-3: 1: 35056 0: 12288 @@ -14765,8 +14472,7 @@ entities: 3,5: 0: 3822 4,4: - 5: 1 - 0: 65282 + 0: 65283 4,5: 0: 4095 4,6: @@ -14814,8 +14520,7 @@ entities: 7,0: 0: 65535 8,-4: - 0: 65315 - 2: 4 + 0: 65319 8,-3: 0: 65535 8,-2: @@ -14826,19 +14531,19 @@ entities: 0: 56733 5,2: 0: 12767 - 6: 32768 + 2: 32768 5,3: 0: 8743 - 6: 2184 + 2: 2184 5,4: 0: 26190 6,1: 0: 56783 6,2: 0: 35037 - 6: 12288 + 2: 12288 6,3: - 6: 819 + 2: 819 0: 2248 6,4: 0: 61695 @@ -14853,8 +14558,7 @@ entities: 8,0: 0: 65535 8,1: - 0: 61439 - 7: 4096 + 0: 65535 8,2: 0: 65522 8,3: @@ -14964,8 +14668,7 @@ entities: 11,8: 1: 11948 12,4: - 0: 12043 - 8: 4 + 0: 12047 12,5: 0: 65535 12,6: @@ -15017,9 +14720,7 @@ entities: 4,-6: 0: 11002 3,-6: - 0: 1501 - 8: 4096 - 2: 2048 + 0: 7645 5,-8: 0: 7448 1: 32768 @@ -15096,8 +14797,7 @@ entities: 13,3: 0: 21969 13,-1: - 0: 52687 - 5: 4096 + 0: 56783 13,4: 0: 1861 14,0: @@ -15107,8 +14807,7 @@ entities: 14,2: 0: 49087 14,3: - 0: 32754 - 8: 32768 + 0: 65522 14,-1: 0: 65535 15,0: @@ -15584,7 +15283,7 @@ entities: 26,-6: 0: 65532 26,-5: - 1: 16432 + 1: 48 0: 128 26,-8: 1: 52428 @@ -15596,7 +15295,6 @@ entities: 0: 13104 27,-5: 0: 305 - 1: 16384 24,-13: 0: 56599 25,-12: @@ -15754,8 +15452,7 @@ entities: 12,-18: 0: 65399 13,-20: - 0: 12543 - 8: 32768 + 0: 45311 13,-19: 0: 65343 13,-18: @@ -15907,8 +15604,7 @@ entities: 3,-15: 0: 65535 4,-14: - 0: 26623 - 7: 2048 + 0: 28671 3,-14: 0: 4095 5,-15: @@ -15933,44 +15629,44 @@ entities: 0: 30471 22,-19: 1: 9143 - 6: 32768 + 2: 32768 22,-17: 1: 45858 - 6: 136 + 2: 136 22,-20: 1: 30583 - 6: 8 + 2: 8 22,-21: 1: 30448 22,-16: 1: 6635 22,-18: 1: 8738 - 6: 34952 + 2: 34952 23,-20: - 6: 223 + 2: 223 1: 12288 23,-19: 1: 115 - 6: 61440 + 2: 61440 23,-18: - 6: 65535 + 2: 65535 23,-17: - 6: 255 + 2: 255 1: 8192 23,-21: - 6: 53384 + 2: 53384 1: 51 23,-16: 1: 25383 24,-20: - 6: 61695 + 2: 61695 24,-19: - 6: 57599 + 2: 57599 24,-18: - 6: 61167 + 2: 61167 24,-17: - 6: 64239 + 2: 64239 21,-15: 0: 1911 21,-14: @@ -15984,7 +15680,7 @@ entities: 23,-14: 0: 61164 24,-16: - 6: 3839 + 2: 3839 24,-15: 1: 3918 24,-14: @@ -16038,28 +15734,28 @@ entities: 16,-22: 1: 30169 8,-24: - 9: 1 - 10: 4352 + 3: 1 + 4: 4352 1: 17476 8,-25: - 9: 4096 + 3: 4096 1: 17476 - 11: 17 + 6: 17 7,-24: - 9: 12 - 10: 52224 + 3: 12 + 4: 52224 1: 4369 8,-23: - 9: 272 + 3: 272 1: 17476 7,-23: - 9: 3264 + 3: 3264 1: 4369 8,-22: - 9: 17 + 3: 17 1: 21572 7,-22: - 9: 204 + 3: 204 1: 61713 9,-24: 0: 65535 @@ -16108,8 +15804,8 @@ entities: 1: 34952 7,-25: 1: 4369 - 9: 49152 - 11: 204 + 3: 49152 + 6: 204 0,-24: 0: 52509 0,-25: @@ -16117,8 +15813,7 @@ entities: -1,-24: 0: 20479 0,-23: - 0: 65531 - 5: 4 + 0: 65535 -1,-23: 0: 36590 0,-22: @@ -16134,8 +15829,7 @@ entities: 1,-24: 0: 65518 1,-23: - 0: 65279 - 7: 256 + 0: 65535 1,-22: 0: 62207 1,-21: @@ -16153,8 +15847,7 @@ entities: 2,-21: 0: 61182 2,-25: - 0: 61311 - 7: 4224 + 0: 65535 2,-20: 0: 61679 3,-25: @@ -16177,8 +15870,7 @@ entities: 0: 63496 1: 1 0,-16: - 0: 65395 - 8: 128 + 0: 65523 1,-19: 0: 47615 1,-18: @@ -16317,9 +16009,7 @@ entities: -2,-24: 0: 6007 -2,-23: - 0: 63351 - 8: 2056 - 2: 128 + 0: 65535 -2,-22: 0: 46079 -2,-25: @@ -16466,7 +16156,7 @@ entities: 0: 36590 -9,-19: 0: 34952 - 6: 13104 + 2: 13104 -8,-18: 0: 56797 -9,-18: @@ -16598,7 +16288,7 @@ entities: 0: 15291 -10,-19: 0: 14128 - 6: 34944 + 2: 34944 -10,-18: 0: 63344 -10,-17: @@ -16848,8 +16538,7 @@ entities: -10,-11: 0: 64767 -10,-10: - 0: 57343 - 7: 8192 + 0: 65535 -10,-9: 0: 61152 -10,-8: @@ -17051,8 +16740,7 @@ entities: -12,-6: 0: 65535 -13,-6: - 0: 56525 - 12: 256 + 0: 56781 -12,-5: 0: 61695 -13,-5: @@ -17212,8 +16900,7 @@ entities: -11,0: 0: 30295 -10,-3: - 0: 63647 - 3: 32 + 0: 63679 -10,-2: 0: 30479 -10,-1: @@ -17423,8 +17110,7 @@ entities: -4,-8: 0: 63235 -4,-7: - 0: 63363 - 5: 4 + 0: 63367 -4,-6: 0: 22519 -8,-3: @@ -17513,7 +17199,7 @@ entities: 0: 65512 -3,-14: 0: 4368 - 13: 3264 + 5: 3264 -3,-13: 0: 56593 -3,-12: @@ -17531,7 +17217,7 @@ entities: -1,-15: 0: 65278 -1,-14: - 11: 816 + 6: 816 0: 2184 -1,-13: 0: 30583 @@ -17612,8 +17298,7 @@ entities: 1,-14: 0: 28671 2,-15: - 0: 65531 - 14: 4 + 0: 65535 2,-14: 0: 4095 0,-7: @@ -17629,16 +17314,13 @@ entities: 1,-6: 0: 25702 2,-7: - 0: 65039 - 8: 256 + 0: 65295 2,-6: - 0: 61439 - 2: 4096 + 0: 65535 -3,-8: 0: 16368 -3,-7: - 0: 14747 - 5: 544 + 0: 15291 -3,-6: 0: 3003 -2,-7: @@ -17686,10 +17368,10 @@ entities: 7,-27: 1: 65527 8,-26: - 13: 272 + 5: 272 1: 17476 7,-26: - 13: 3264 + 5: 3264 1: 4369 9,-28: 0: 30464 @@ -17997,7 +17679,7 @@ entities: -6,-30: 1: 8753 25,-16: - 6: 17 + 2: 17 1: 18572 25,-15: 1: 806 @@ -18005,7 +17687,7 @@ entities: 1: 7 0: 65280 25,-17: - 6: 4335 + 2: 4335 1: 32768 26,-16: 1: 1003 @@ -18015,7 +17697,7 @@ entities: 0: 30495 26,-17: 1: 43144 - 6: 51 + 2: 51 27,-16: 1: 3634 27,-15: @@ -18030,25 +17712,25 @@ entities: 28,-13: 1: 21847 24,-21: - 6: 61535 + 2: 61535 25,-20: - 6: 4215 + 2: 4215 1: 32768 25,-19: - 6: 57361 + 2: 57361 1: 200 25,-18: - 6: 61167 + 2: 61167 25,-21: - 6: 28723 + 2: 28723 1: 136 26,-20: 1: 63901 26,-19: 1: 35001 - 6: 12288 + 2: 12288 26,-18: - 6: 13107 + 2: 13107 1: 34952 26,-21: 1: 22001 @@ -18067,19 +17749,19 @@ entities: 23,-24: 1: 996 24,-23: - 6: 65534 + 2: 65534 23,-23: - 6: 51328 + 2: 51328 24,-22: - 6: 20735 + 2: 20735 23,-22: - 6: 32972 + 2: 32972 25,-24: 1: 2277 25,-23: - 6: 29488 + 2: 29488 25,-22: - 6: 12407 + 2: 12407 25,-25: 1: 28928 26,-24: @@ -18156,66 +17838,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.1495 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 5000 - moles: - - 6666.982 - - 0 - - 0 - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - volume: 2500 temperature: 235 moles: @@ -18231,36 +17853,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 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: @@ -18294,23 +17886,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14984 - moles: - - 20.078888 - - 75.53487 + - 6666.982 - 0 - 0 - 0 @@ -18324,7 +17901,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 - 6666.982 - 0 - 0 @@ -18336,20 +17912,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 23.43119 - - 88.145905 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 chunkSize: 4 - type: GasTileOverlay @@ -19753,13 +19315,6 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 2038 - - uid: 25523 - components: - - type: Transform - parent: 24754 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 24754 - proto: ActionToggleJetpack entities: - uid: 18 @@ -25624,40 +25179,20 @@ entities: - type: Transform pos: 6.5,-21.5 parent: 2 - - uid: 40940 - components: - - type: Transform - pos: 15.5,-46.5 - parent: 2 -- proto: AirlockMiningGlass +- proto: AirlockMiningGlassLocked entities: - uid: 1159 components: - type: Transform - pos: 0.5,-45.5 - parent: 2 - - uid: 1161 - components: - - type: Transform + rot: 1.5707963267948966 rad pos: -4.5,-48.5 parent: 2 - - uid: 11629 + - uid: 1161 components: - type: Transform + rot: 1.5707963267948966 rad pos: -2.5,-45.5 parent: 2 - - uid: 26267 - components: - - type: Transform - pos: -9.5,-44.5 - parent: 2 - - uid: 26439 - components: - - type: Transform - pos: -1.5,-43.5 - parent: 2 -- proto: AirlockMiningGlassLocked - entities: - uid: 5916 components: - type: Transform @@ -25680,17 +25215,30 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-42.5 parent: 2 - - uid: 29064 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 2 - uid: 30855 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-43.5 parent: 2 + - uid: 39084 + components: + - type: Transform + pos: -1.5,-43.5 + parent: 2 + - uid: 39085 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 +- proto: AirlockMiningLocked + entities: + - uid: 11629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-45.5 + parent: 2 - proto: AirlockQuartermasterLocked entities: - uid: 682 @@ -27404,16 +26952,6 @@ entities: rot: 1.5707963267948966 rad pos: -71.5,-4.5 parent: 2 -- proto: AltarSatana - entities: - - uid: 40977 - components: - - type: MetaData - name: робототехнический алтарь - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-51.5 - parent: 2 - proto: AltarSpawner entities: - uid: 946 @@ -28685,6 +28223,11 @@ entities: - type: Transform pos: -62.5,-15.5 parent: 2 + - uid: 27383 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 2 - uid: 30156 components: - type: Transform @@ -28800,11 +28343,6 @@ entities: rot: 3.141592653589793 rad pos: -8.5,-50.5 parent: 2 - - uid: 39809 - components: - - type: Transform - pos: 74.5,0.5 - parent: 2 - uid: 40217 components: - type: Transform @@ -28823,12 +28361,6 @@ entities: rot: 1.5707963267948966 rad pos: 49.5,11.5 parent: 2 - - uid: 40936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-3.5 - parent: 2 - proto: APCConstructed entities: - uid: 1120 @@ -31122,13 +30654,6 @@ entities: - type: Transform pos: 91.5,-79.5 parent: 2 -- proto: AtmosFixInstantPlasmaFireMarker - entities: - - uid: 40948 - components: - - type: Transform - pos: 10.5,-13.5 - parent: 2 - proto: AtmosFixNitrogenMarker entities: - uid: 1505 @@ -31396,7 +30921,7 @@ entities: - uid: 1539 components: - type: Transform - pos: -41.51891,-32.48011 + pos: -41.5,-32.5 parent: 2 - uid: 1540 components: @@ -31783,11 +31308,6 @@ entities: - type: Transform pos: 49.5,19.5 parent: 2 - - uid: 24061 - components: - - type: Transform - pos: -58.5,-22.5 - parent: 2 - uid: 30436 components: - type: Transform @@ -31886,21 +31406,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-40.5 parent: 2 - - uid: 41058 - components: - - type: Transform - pos: 83.5,-0.5 - parent: 2 - - uid: 41059 - components: - - type: Transform - pos: 81.5,-0.5 - parent: 2 - - uid: 41060 - components: - - type: Transform - pos: 79.5,-0.5 - parent: 2 - proto: BarricadeDirectional entities: - uid: 1640 @@ -32000,11 +31505,6 @@ entities: rot: 1.5707963267948966 rad pos: 101.5,-49.5 parent: 2 - - uid: 18669 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 2 - uid: 25065 components: - type: Transform @@ -32323,6 +31823,11 @@ entities: parent: 2 - proto: Bed entities: + - uid: 1695 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 - uid: 1696 components: - type: Transform @@ -32333,6 +31838,11 @@ entities: - type: Transform pos: -37.5,5.5 parent: 2 + - uid: 1698 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 - uid: 1699 components: - type: Transform @@ -32558,7 +32068,7 @@ entities: - uid: 1729 components: - type: Transform - pos: -38.513878,-10.466177 + pos: -38.5,-10.5 parent: 2 - proto: BedsheetCosmos entities: @@ -32572,14 +32082,6 @@ entities: - type: Transform pos: 14.5,-21.5 parent: 2 -- proto: BedsheetGreen - entities: - - uid: 1751 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 2 - proto: BedsheetHOP entities: - uid: 1733 @@ -32766,6 +32268,11 @@ entities: - type: Transform pos: -45.5,-0.5 parent: 2 + - uid: 1751 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 - uid: 1752 components: - type: Transform @@ -33986,38 +33493,6 @@ entities: rot: 3.141592653589793 rad pos: -53.650185,-19.32859 parent: 2 - - uid: 15590 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.506329,15.86167 - parent: 2 - - uid: 17655 - components: - - type: Transform - pos: -34.294956,-8.284834 - parent: 2 - - uid: 24001 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.443829,15.627295 - parent: 2 - - uid: 41037 - components: - - type: Transform - pos: -34.31058,-8.441084 - parent: 2 - - uid: 41049 - components: - - type: Transform - pos: 13.628463,15.884217 - parent: 2 - - uid: 41050 - components: - - type: Transform - pos: 13.722213,15.806092 - parent: 2 - proto: BlueprintFulton entities: - uid: 34265 @@ -34030,8 +33505,10 @@ entities: - uid: 5963 components: - type: Transform - pos: 8.548469,-17.454145 - parent: 2 + parent: 26551 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BluespaceBeaker entities: - uid: 37918 @@ -34919,11 +34396,6 @@ entities: - type: Transform pos: 1.5257382,-72.23268 parent: 2 - - uid: 41178 - components: - - type: Transform - pos: -8.054919,-96.357735 - parent: 2 - proto: BoxFlashbang entities: - uid: 37924 @@ -35232,13 +34704,6 @@ entities: parent: 2 - proto: BoxLethalshot entities: - - uid: 33561 - components: - - type: Transform - parent: 11053 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 40500 components: - type: Transform @@ -35599,11 +35064,6 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,3.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 19525: - - Timer: Open - - Timer: AutoClose - uid: 18774 components: - type: Transform @@ -35616,39 +35076,18 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,4.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 815: - - Timer: Open - - Timer: AutoClose - uid: 19546 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,1.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15533: - - Timer: Open - - Timer: AutoClose - 2820: - - Timer: Open - - Timer: AutoClose - uid: 19627 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,0.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 11078: - - Timer: Open - - Timer: AutoClose - 11080: - - Timer: Open - - Timer: AutoClose - uid: 36098 components: - type: Transform @@ -35801,11 +35240,6 @@ entities: - type: Transform pos: -17.529854,-32.515293 parent: 2 - - uid: 40954 - components: - - type: Transform - pos: -15.613848,-38.614536 - parent: 2 - proto: ButtonFrameCaution entities: - uid: 29002 @@ -58323,26 +57757,6 @@ entities: - type: Transform pos: 77.5,-8.5 parent: 2 - - uid: 24698 - components: - - type: Transform - pos: 72.5,-2.5 - parent: 2 - - uid: 24700 - components: - - type: Transform - pos: 67.5,-3.5 - parent: 2 - - uid: 24702 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 2 - - uid: 24703 - components: - - type: Transform - pos: 69.5,-3.5 - parent: 2 - uid: 24783 components: - type: Transform @@ -58518,11 +57932,6 @@ entities: - type: Transform pos: 77.5,-9.5 parent: 2 - - uid: 27383 - components: - - type: Transform - pos: 71.5,-2.5 - parent: 2 - uid: 27430 components: - type: Transform @@ -58678,11 +58087,6 @@ entities: - type: Transform pos: 59.5,-12.5 parent: 2 - - uid: 30415 - components: - - type: Transform - pos: 70.5,-2.5 - parent: 2 - uid: 31431 components: - type: Transform @@ -58913,16 +58317,6 @@ entities: - type: Transform pos: 87.5,-9.5 parent: 2 - - uid: 31515 - components: - - type: Transform - pos: 73.5,-2.5 - parent: 2 - - uid: 31517 - components: - - type: Transform - pos: 69.5,-2.5 - parent: 2 - uid: 32762 components: - type: Transform @@ -84856,16 +84250,61 @@ entities: - type: Transform pos: -57.5,-24.5 parent: 2 + - uid: 31088 + components: + - type: Transform + pos: 76.5,-3.5 + parent: 2 - uid: 31353 components: - type: Transform pos: -56.5,-24.5 parent: 2 + - uid: 31515 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - uid: 31517 + components: + - type: Transform + pos: 76.5,-2.5 + parent: 2 + - uid: 31520 + components: + - type: Transform + pos: 75.5,-2.5 + parent: 2 + - uid: 31521 + components: + - type: Transform + pos: 74.5,-2.5 + parent: 2 + - uid: 31522 + components: + - type: Transform + pos: 72.5,-2.5 + parent: 2 + - uid: 31523 + components: + - type: Transform + pos: 71.5,-2.5 + parent: 2 + - uid: 31524 + components: + - type: Transform + pos: 70.5,-2.5 + parent: 2 - uid: 31527 components: - type: Transform pos: 69.5,-2.5 parent: 2 + - uid: 31528 + components: + - type: Transform + pos: 73.5,-2.5 + parent: 2 - uid: 31529 components: - type: Transform @@ -86196,16 +85635,6 @@ entities: - type: Transform pos: 49.5,-2.5 parent: 2 - - uid: 40937 - components: - - type: Transform - pos: 68.5,-3.5 - parent: 2 - - uid: 40938 - components: - - type: Transform - pos: 67.5,-3.5 - parent: 2 - proto: CableMVStack entities: - uid: 11581 @@ -86491,26 +85920,6 @@ entities: parent: 2 - proto: CandleBlackInfinite entities: - - uid: 18500 - components: - - type: Transform - pos: 14.246059,12.862975 - parent: 2 - - uid: 18539 - components: - - type: Transform - pos: 16.324184,14.1911 - parent: 2 - - uid: 21038 - components: - - type: Transform - pos: 10.766112,17.050476 - parent: 2 - - uid: 29411 - components: - - type: Transform - pos: 9.761757,13.6286 - parent: 2 - uid: 37363 components: - type: Transform @@ -86576,46 +85985,6 @@ entities: - type: Transform pos: -3.6000676,5.371558 parent: 2 - - uid: 40971 - components: - - type: Transform - pos: 13.797782,16.316013 - parent: 2 - - uid: 41026 - components: - - type: Transform - pos: 13.235282,16.331638 - parent: 2 - - uid: 41033 - components: - - type: Transform - pos: 7.168007,14.112975 - parent: 2 - - uid: 41035 - components: - - type: Transform - pos: 17.007788,16.639935 - parent: 2 - - uid: 41068 - components: - - type: Transform - pos: 34.39454,-3.4751449 - parent: 2 - - uid: 41070 - components: - - type: Transform - pos: 36.472664,-3.2876449 - parent: 2 - - uid: 41071 - components: - - type: Transform - pos: 34.11329,-3.3188949 - parent: 2 - - uid: 41085 - components: - - type: Transform - pos: -31.205826,5.134735 - parent: 2 - proto: CandleBlackSmall entities: - uid: 40855 @@ -86642,28 +86011,6 @@ entities: - type: Transform pos: -5.0531926,5.465308 parent: 2 - - uid: 41134 - components: - - type: Transform - pos: 28.29879,1.4194047 - parent: 2 -- proto: CandleBlue - entities: - - uid: 41086 - components: - - type: Transform - pos: -30.830826,2.49411 - parent: 2 - - uid: 41087 - components: - - type: Transform - pos: -26.22145,1.6972351 - parent: 2 - - uid: 41088 - components: - - type: Transform - pos: -26.549576,1.7441101 - parent: 2 - proto: CandleBlueInfinite entities: - uid: 11635 @@ -86683,28 +86030,6 @@ entities: - type: Transform pos: -41.6622,-100.18897 parent: 2 - - uid: 41143 - components: - - type: Transform - pos: 37.845623,-0.5735898 - parent: 2 - - uid: 41144 - components: - - type: Transform - pos: 37.892498,1.5357852 - parent: 2 -- proto: CandleBlueSmall - entities: - - uid: 41089 - components: - - type: Transform - pos: -26.424576,1.5722351 - parent: 2 - - uid: 41090 - components: - - type: Transform - pos: -26.7527,1.7753601 - parent: 2 - proto: CandleBlueSmallInfinite entities: - uid: 11636 @@ -86714,38 +86039,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41091 - components: - - type: Transform - pos: -33.018326,3.103485 - parent: 2 - - uid: 41093 - components: - - type: Transform - pos: -32.487076,8.49411 - parent: 2 -- proto: CandleGreenSmallInfinite - entities: - - uid: 41139 - components: - - type: Transform - pos: 33.15175,0.7545352 - parent: 2 - - uid: 41140 - components: - - type: Transform - pos: 33.511124,0.0670352 - parent: 2 - - uid: 41141 - components: - - type: Transform - pos: 36.423748,1.4732852 - parent: 2 - - uid: 41142 - components: - - type: Transform - pos: 36.423748,-0.6360898 - parent: 2 - proto: CandleInfinite entities: - uid: 39058 @@ -86763,45 +86056,6 @@ entities: - type: Transform pos: 33.968185,-63.183113 parent: 2 -- proto: CandlePurpleInfinite - entities: - - uid: 40965 - components: - - type: Transform - pos: -36.361115,-53.62187 - parent: 2 - - uid: 40966 - components: - - type: Transform - pos: -34.704865,-53.62187 - parent: 2 - - uid: 41072 - components: - - type: Transform - pos: 32.125046,6.9690967 - parent: 2 - - uid: 41136 - components: - - type: Transform - pos: 36.323624,3.6139102 - parent: 2 -- proto: CandlePurpleSmallInfinite - entities: - - uid: 40962 - components: - - type: Transform - pos: -40.18924,-52.71562 - parent: 2 - - uid: 40963 - components: - - type: Transform - pos: -36.34549,-51.30937 - parent: 2 - - uid: 40964 - components: - - type: Transform - pos: -34.59549,-51.231243 - parent: 2 - proto: CandleRedInfinite entities: - uid: 39060 @@ -86814,23 +86068,6 @@ entities: - type: Transform pos: 33.702988,-64.57374 parent: 2 -- proto: CandleRedSmallInfinite - entities: - - uid: 40967 - components: - - type: Transform - pos: -39.767365,-55.668743 - parent: 2 - - uid: 41069 - components: - - type: Transform - pos: 31.188614,5.6395993 - parent: 2 - - uid: 41074 - components: - - type: Transform - pos: 31.813614,4.5770993 - parent: 2 - proto: CandyBucket entities: - uid: 1586 @@ -86965,16 +86202,6 @@ entities: - type: Transform pos: 12.504614,-24.44699 parent: 2 - - uid: 40944 - components: - - type: Transform - pos: 12.501594,-24.445663 - parent: 2 - - uid: 40945 - components: - - type: Transform - pos: 12.501594,-24.445663 - parent: 2 - proto: CannonBallGrapeshot entities: - uid: 26497 @@ -87115,26 +86342,11 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,15.5 parent: 2 - - uid: 4599 - components: - - type: Transform - pos: 14.5,15.5 - parent: 2 - uid: 9686 components: - type: Transform pos: 52.5,-22.5 parent: 2 - - uid: 9703 - components: - - type: Transform - pos: 16.5,13.5 - parent: 2 - - uid: 10927 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - uid: 11687 components: - type: Transform @@ -87244,51 +86456,6 @@ entities: - type: Transform pos: 22.5,8.5 parent: 2 - - uid: 11834 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 11836 - components: - - type: Transform - pos: 17.5,13.5 - parent: 2 - - uid: 11837 - components: - - type: Transform - pos: 16.5,12.5 - parent: 2 - - uid: 11838 - components: - - type: Transform - pos: 17.5,11.5 - parent: 2 - - uid: 11839 - components: - - type: Transform - pos: 14.5,16.5 - parent: 2 - - uid: 11840 - components: - - type: Transform - pos: 13.5,15.5 - parent: 2 - - uid: 11841 - components: - - type: Transform - pos: 15.5,15.5 - parent: 2 - - uid: 11865 - components: - - type: Transform - pos: 15.5,16.5 - parent: 2 - - uid: 11867 - components: - - type: Transform - pos: 13.5,16.5 - parent: 2 - uid: 14734 components: - type: Transform @@ -88024,10 +87191,11 @@ entities: parent: 2 - proto: CarpetSBlue entities: - - uid: 9346 + - uid: 4599 components: - type: Transform - pos: 11.5,15.5 + rot: 3.141592653589793 rad + pos: 15.5,16.5 parent: 2 - uid: 10220 components: @@ -88035,11 +87203,46 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,20.5 parent: 2 + - uid: 11834 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 - uid: 11835 components: - type: Transform pos: 11.5,16.5 parent: 2 + - uid: 11836 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 11838 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 11839 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 11840 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 11841 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 - uid: 11842 components: - type: Transform @@ -88130,6 +87333,21 @@ entities: - type: Transform pos: 2.5,27.5 parent: 2 + - uid: 11865 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 - uid: 11869 components: - type: Transform @@ -88296,6 +87514,18 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 + - uid: 29410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 2 + - uid: 29411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 2 - proto: CarpStatue entities: - uid: 33540 @@ -88342,51 +87572,6 @@ entities: - type: Transform pos: 69.371826,-36.578964 parent: 2 - - uid: 41032 - components: - - type: Transform - pos: 16.80856,14.40985 - parent: 2 - - uid: 41098 - components: - - type: Transform - pos: 89.637054,-6.710886 - parent: 2 - - uid: 41101 - components: - - type: Transform - pos: 80.941284,-1.0818706 - parent: 2 - - uid: 41105 - components: - - type: Transform - pos: 44.46273,-22.347826 - parent: 2 - - uid: 41113 - components: - - type: Transform - pos: 27.332561,-68.25086 - parent: 2 - - uid: 41155 - components: - - type: Transform - pos: 52.505486,-75.47058 - parent: 2 - - uid: 41158 - components: - - type: Transform - pos: 41.071697,-99.183914 - parent: 2 - - uid: 41159 - components: - - type: Transform - pos: 42.759197,-99.26204 - parent: 2 - - uid: 41181 - components: - - type: Transform - pos: 4.434094,-84.40862 - parent: 2 - proto: CarvedPumpkinLarge entities: - uid: 36688 @@ -88409,31 +87594,6 @@ entities: - type: Transform pos: 56.51484,1.6501288 parent: 2 - - uid: 41082 - components: - - type: Transform - pos: -25.467855,1.7669611 - parent: 2 - - uid: 41095 - components: - - type: Transform - pos: 41.47654,-1.3758259 - parent: 2 - - uid: 41107 - components: - - type: Transform - pos: 47.56566,-13.303312 - parent: 2 - - uid: 41111 - components: - - type: Transform - pos: 27.582561,-76.36847 - parent: 2 - - uid: 41163 - components: - - type: Transform - pos: 10.900659,-96.23715 - parent: 2 - proto: CarvedPumpkinSmall entities: - uid: 1658 @@ -88441,21 +87601,6 @@ entities: - type: Transform pos: -29.479185,13.676671 parent: 2 - - uid: 1698 - components: - - type: Transform - pos: -73.48247,-40.40774 - parent: 2 - - uid: 24591 - components: - - type: Transform - pos: -79.81763,-43.343742 - parent: 2 - - uid: 25510 - components: - - type: Transform - pos: -77.66138,-42.812492 - parent: 2 - uid: 33867 components: - type: Transform @@ -88591,116 +87736,6 @@ entities: - type: Transform pos: -5.4281926,5.527808 parent: 2 - - uid: 40978 - components: - - type: Transform - pos: 33.48439,-57.56116 - parent: 2 - - uid: 40979 - components: - - type: Transform - pos: 35.477978,-58.551838 - parent: 2 - - uid: 40988 - components: - - type: Transform - pos: 34.121334,-58.02281 - parent: 2 - - uid: 40989 - components: - - type: Transform - pos: 34.69617,-58.04727 - parent: 2 - - uid: 40996 - components: - - type: Transform - pos: -37.764503,-28.224033 - parent: 2 - - uid: 40999 - components: - - type: Transform - pos: -55.72875,-27.16272 - parent: 2 - - uid: 41029 - components: - - type: Transform - pos: 10.308559,13.362975 - parent: 2 - - uid: 41030 - components: - - type: Transform - pos: 14.230434,12.644225 - parent: 2 - - uid: 41031 - components: - - type: Transform - pos: 14.574184,12.97235 - parent: 2 - - uid: 41046 - components: - - type: Transform - pos: -7.2295427,9.295349 - parent: 2 - - uid: 41048 - components: - - type: Transform - pos: -8.248118,9.326599 - parent: 2 - - uid: 41067 - components: - - type: Transform - pos: 42.22654,7.18626 - parent: 2 - - uid: 41094 - components: - - type: Transform - pos: 42.304665,3.3112602 - parent: 2 - - uid: 41096 - components: - - type: Transform - pos: 81.37645,-10.623384 - parent: 2 - - uid: 41097 - components: - - type: Transform - pos: 89.517075,-9.623384 - parent: 2 - - uid: 41099 - components: - - type: Transform - pos: 89.77768,-6.273386 - parent: 2 - - uid: 41100 - components: - - type: Transform - pos: 80.253784,-1.0818706 - parent: 2 - - uid: 41109 - components: - - type: Transform - pos: 28.379436,-76.61847 - parent: 2 - - uid: 41133 - components: - - type: Transform - pos: 46.449802,-47.1934 - parent: 2 - - uid: 41160 - components: - - type: Transform - pos: 41.149822,-99.777664 - parent: 2 - - uid: 41161 - components: - - type: Transform - pos: 42.632545,-99.94954 - parent: 2 - - uid: 41162 - components: - - type: Transform - pos: 9.900659,-96.3934 - parent: 2 - proto: Catwalk entities: - uid: 1547 @@ -99763,15 +98798,6 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 38722 -- proto: Chainsaw - entities: - - uid: 23982 - components: - - type: Transform - parent: 16230 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: Chair entities: - uid: 7707 @@ -101286,6 +100312,12 @@ entities: - type: Transform pos: -23.5,7.5 parent: 2 + - uid: 14094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-19.5 + parent: 2 - uid: 14095 components: - type: Transform @@ -101691,14 +100723,6 @@ entities: rot: -1.5707963267948966 rad pos: -80.5,-24.5 parent: 2 -- proto: ChairWeb - entities: - - uid: 41012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.531506,-19.654182 - parent: 2 - proto: ChairWood entities: - uid: 4602 @@ -101980,6 +101004,11 @@ entities: parent: 2 - proto: CheapRollerBed entities: + - uid: 9346 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 - uid: 14191 components: - type: Transform @@ -102005,6 +101034,11 @@ entities: - type: Transform pos: -46.5,-29.5 parent: 2 + - uid: 18539 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 - proto: CheckerBoard entities: - uid: 40760 @@ -103413,8 +102447,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -103432,14 +102466,6 @@ entities: occludes: True ents: - 14399 - - 6044 - - 11854 - - 14774 - - 14815 - - 25396 - - 25397 - - 25399 - - 25630 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -104259,24 +103285,6 @@ entities: - type: Transform pos: -10.5,-25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 39462 components: - type: Transform @@ -104596,15 +103604,6 @@ entities: priority: 0 component: ClothingSpeedModifier title: null -- proto: ClothingBackpackDuffelCaptain - entities: - - uid: 37762 - components: - - type: Transform - parent: 33761 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingBackpackDuffelSalvage entities: - uid: 14563 @@ -104700,13 +103699,6 @@ entities: - type: Transform pos: 9.508253,-1.3463131 parent: 2 -- proto: ClothingBeltMercWebbing - entities: - - uid: 27921 - components: - - type: Transform - pos: 10.473449,-22.354832 - parent: 2 - proto: ClothingBeltPlant entities: - uid: 40797 @@ -104869,13 +103861,6 @@ entities: - type: Transform pos: 65.59738,13.374831 parent: 2 -- proto: ClothingEyesGlassesOutlawGlasses - entities: - - uid: 41083 - components: - - type: Transform - pos: -23.1363,6.3886566 - parent: 2 - proto: ClothingEyesHudDiagnostic entities: - uid: 14602 @@ -105581,20 +104566,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHatOutlawHat - entities: - - uid: 41084 - components: - - type: Transform - pos: -23.089424,6.6230316 - parent: 2 -- proto: ClothingHeadHatPirate - entities: - - uid: 41177 - components: - - type: Transform - pos: 11.48207,-98.4845 - parent: 2 - proto: ClothingHeadHatPumpkin entities: - uid: 6175 @@ -105683,11 +104654,6 @@ entities: - type: Physics canCollide: False - type: ActionsContainer - - uid: 41080 - components: - - type: Transform - pos: 33.49948,-4.2889094 - parent: 2 - proto: ClothingHeadHatPwig entities: - uid: 14699 @@ -105739,13 +104705,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingHeadHatTophat - entities: - - uid: 41038 - components: - - type: Transform - pos: 16.506329,17.033545 - parent: 2 - proto: ClothingHeadHatTrucker entities: - uid: 14713 @@ -105820,12 +104779,6 @@ entities: - type: Transform pos: 17.635115,9.626244 parent: 2 - - uid: 25705 - components: - - type: Transform - parent: 41053 - - type: Physics - canCollide: False - proto: ClothingHeadHatWitch entities: - uid: 9 @@ -106095,21 +105048,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingMaskBat - entities: - - uid: 41044 - components: - - type: Transform - pos: 8.601946,13.464597 - parent: 2 -- proto: ClothingMaskBear - entities: - - uid: 41062 - components: - - type: Transform - parent: 41056 - - type: Physics - canCollide: False - proto: ClothingMaskBreath entities: - uid: 14785 @@ -106268,14 +105206,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingMaskJackal - entities: - - uid: 41064 - components: - - type: Transform - parent: 41057 - - type: Physics - canCollide: False - proto: ClothingMaskMuzzle entities: - uid: 14418 @@ -106296,14 +105226,6 @@ entities: - type: Transform pos: 80.31598,3.37646 parent: 2 -- proto: ClothingMaskRat - entities: - - uid: 41061 - components: - - type: Transform - parent: 41055 - - type: Physics - canCollide: False - proto: ClothingMaskRaven entities: - uid: 17540 @@ -106394,7 +105316,7 @@ entities: - uid: 1085 components: - type: Transform - pos: 10.469885,-22.367643 + pos: 10.4807,-22.383314 parent: 2 - proto: ClothingNeckCloakTrans entities: @@ -106434,7 +105356,7 @@ entities: - uid: 14750 components: - type: Transform - pos: 3.4997048,-62.58889 + pos: 3.5384512,-62.515625 parent: 2 - uid: 14776 components: @@ -106576,10 +105498,8 @@ entities: - uid: 14846 components: - type: Transform - parent: 16742 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 10.753314,16.138332 + parent: 2 - uid: 14847 components: - type: Transform @@ -106885,12 +105805,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41063 - components: - - type: Transform - parent: 41056 - - type: Physics - canCollide: False - proto: ClothingOuterCoatDetective entities: - uid: 16733 @@ -106930,22 +105844,6 @@ entities: - type: Transform pos: -16.754519,-29.489569 parent: 2 -- proto: ClothingOuterDogi - entities: - - uid: 41065 - components: - - type: Transform - parent: 41057 - - type: Physics - canCollide: False -- proto: ClothingOuterFlannelRed - entities: - - uid: 25653 - components: - - type: Transform - parent: 41053 - - type: Physics - canCollide: False - proto: ClothingOuterGhostSheet entities: - uid: 1983 @@ -106954,11 +105852,6 @@ entities: parent: 5 - type: Physics canCollide: False - - uid: 2301 - components: - - type: Transform - pos: -3.4677386,11.795349 - parent: 2 - uid: 4802 components: - type: Transform @@ -107255,14 +106148,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterHoodieBlack - entities: - - uid: 25812 - components: - - type: Transform - parent: 41055 - - type: Physics - canCollide: False - proto: ClothingOuterHospitalGown entities: - uid: 14889 @@ -107855,13 +106740,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitPirate - entities: - - uid: 41176 - components: - - type: Transform - pos: 4.497743,-89.515396 - parent: 2 - proto: ClothingUniformJumpsuitRecruitNT entities: - uid: 14929 @@ -108017,46 +106895,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-45.5 parent: 2 - - uid: 41000 - components: - - type: Transform - pos: -49.5,-18.5 - parent: 2 - - uid: 41001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-18.5 - parent: 2 - - uid: 41002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-25.5 - parent: 2 - - uid: 41008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-24.5 - parent: 2 - - uid: 41011 - components: - - type: Transform - pos: -49.5,-23.5 - parent: 2 - - uid: 41022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-36.5 - parent: 2 - - uid: 41023 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-37.5 - parent: 2 - proto: Cobweb2 entities: - uid: 26106 @@ -108098,97 +106936,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,19.5 parent: 2 - - uid: 41003 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-18.5 - parent: 2 - - uid: 41004 - components: - - type: Transform - pos: -48.5,-18.5 - parent: 2 - - uid: 41005 - components: - - type: Transform - pos: -44.5,-21.5 - parent: 2 - - uid: 41006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-20.5 - parent: 2 - - uid: 41007 - components: - - type: Transform - pos: -44.5,-22.5 - parent: 2 - - uid: 41009 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-23.5 - parent: 2 - - uid: 41010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-22.5 - parent: 2 - - uid: 41013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-13.5 - parent: 2 - - uid: 41014 - components: - - type: Transform - pos: -45.5,-8.5 - parent: 2 - - uid: 41015 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-13.5 - parent: 2 - - uid: 41016 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-10.5 - parent: 2 - - uid: 41017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-8.5 - parent: 2 - - uid: 41018 - components: - - type: Transform - pos: -51.5,-12.5 - parent: 2 - - uid: 41019 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-12.5 - parent: 2 - - uid: 41020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-15.5 - parent: 2 - - uid: 41021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-36.5 - parent: 2 - proto: CockroachTimedSpawner entities: - uid: 14956 @@ -108639,6 +107386,18 @@ entities: rot: 1.5707963267948966 rad pos: 93.5,-51.5 parent: 2 + - uid: 18669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 2 + - uid: 24061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-101.5 + parent: 2 - uid: 28510 components: - type: Transform @@ -109074,14 +107833,6 @@ entities: - type: Transform pos: -38.5,-67.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 6182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 9345 @@ -109118,6 +107869,14 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-98.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 6182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-100.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 15083 @@ -109842,42 +108601,6 @@ entities: parent: 2 - proto: CrateCoffin entities: - - uid: 13005 - components: - - type: Transform - pos: -38.5,-36.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 14094 - components: - - type: Transform - pos: -37.5,-36.5 - parent: 2 - uid: 14820 components: - type: Transform @@ -109996,32 +108719,6 @@ entities: - type: Transform pos: 32.5,7.5 parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - uid: 40081 components: - type: Transform @@ -110047,68 +108744,6 @@ entities: - type: Transform pos: -73.5,-41.5 parent: 2 - - uid: 41045 - components: - - type: Transform - pos: -38.5,-10.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41051 - components: - - type: Transform - pos: 17.5,12.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - proto: CrateContrabandStorageSecure entities: - uid: 2590 @@ -110689,8 +109324,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -110707,7 +109342,6 @@ entities: showEnts: False occludes: True ents: - - 28869 - 9347 paper_label: !type:ContainerSlot showEnts: False @@ -110795,34 +109429,16 @@ entities: - type: Transform pos: -13.5,-27.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: - - 4821 - - 15621 - - 15616 - 15615 + - 15616 + - 15621 + - 4821 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -111094,137 +109710,6 @@ entities: showEnts: False occludes: True ent: null - - uid: 41164 - components: - - type: Transform - pos: 8.5,-96.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41165 - components: - - type: Transform - pos: 10.5,-100.5 - parent: 2 - - uid: 41166 - components: - - type: Transform - pos: 9.5,-98.5 - parent: 2 - - uid: 41167 - components: - - type: Transform - pos: 8.5,-100.5 - parent: 2 - - uid: 41168 - components: - - type: Transform - pos: 11.5,-98.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41174 - components: - - type: Transform - pos: 4.5,-89.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41175 - components: - - type: Transform - pos: 2.5,-91.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: CratePlastic entities: - uid: 1786 @@ -111985,8 +110470,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -112056,35 +110541,14 @@ entities: - type: Transform pos: 10.5,-59.5 parent: 2 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.1462 moles: + - 1.606311 + - 6.042789 - 0 - 0 - 0 @@ -112095,66 +110559,26 @@ entities: - 0 - 0 - 0 - - 0 - - 0 - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - uid: 28076 components: - type: Transform pos: 14.5,-62.5 parent: 2 - - type: Lock - locked: False - uid: 28082 components: - type: Transform pos: 19.5,-53.5 parent: 2 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - uid: 28095 components: - type: Transform pos: 15.5,-56.5 parent: 2 - - type: Lock - locked: False - uid: 28112 components: - type: Transform pos: 14.5,-56.5 parent: 2 - - type: Lock - locked: False - uid: 28113 components: - type: Transform @@ -112394,13 +110818,6 @@ entities: - type: Transform pos: -51.312763,-0.015726864 parent: 2 - - uid: 28869 - components: - - type: Transform - parent: 920 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: CrowbarRed entities: - uid: 15320 @@ -112639,7 +111056,7 @@ entities: - uid: 15349 components: - type: Transform - pos: -34.325874,-22.45942 + pos: -34.306686,-22.015776 parent: 2 - uid: 30767 components: @@ -112708,11 +111125,6 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-118.5 parent: 2 - - uid: 29513 - components: - - type: Transform - pos: 16.5,13.5 - parent: 2 - uid: 34350 components: - type: Transform @@ -112727,16 +111139,6 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-117.5 parent: 2 - - uid: 41027 - components: - - type: Transform - pos: 16.5,11.5 - parent: 2 - - uid: 41028 - components: - - type: Transform - pos: 16.5,12.5 - parent: 2 - proto: CurtainsBlueOpen entities: - uid: 15366 @@ -125041,13 +123443,6 @@ entities: rot: 3.141592653589793 rad pos: 47.5,-8.5 parent: 2 -- proto: DisposalPipeBroken - entities: - - uid: 39085 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - proto: DisposalRouter entities: - uid: 17356 @@ -126158,17 +124553,11 @@ entities: parent: 37887 - uid: 39556 components: - - type: MetaData - desc: Теперь и лифт для сверхбыстрого перемещения. Вау. - name: пневматический лифт - type: Transform pos: -27.5,-39.5 parent: 2 - uid: 39557 components: - - type: MetaData - desc: Теперь и лифт для сверхбыстрого перемещения. Вау. - name: пневматический лифт - type: Transform pos: -26.5,-39.5 parent: 2 @@ -126397,12 +124786,6 @@ entities: 9035: position: 6,1 _rotation: South - 274: - position: 0,3 - _rotation: East - 1695: - position: 2,3 - _rotation: East - type: ContainerContainer containers: storagebase: !type:Container @@ -126417,8 +124800,6 @@ entities: - 13 - 1983 - 9035 - - 274 - - 1695 - uid: 24339 components: - type: Transform @@ -126964,6 +125345,11 @@ entities: parent: 2 - proto: DrinkMugOne entities: + - uid: 17655 + components: + - type: Transform + pos: 13.686022,15.880593 + parent: 2 - uid: 17656 components: - type: Transform @@ -127247,7 +125633,7 @@ entities: - uid: 17708 components: - type: Transform - pos: 36.258347,-63.162224 + pos: 36.443604,-63.328476 parent: 2 - proto: Dropper entities: @@ -127851,15 +126237,6 @@ entities: parent: 2 - type: SpawnOnTrigger proto: MobSkeletonPirate - - uid: 41180 - components: - - type: MetaData - name: одноразовый маркер спавна дополнительного боеприпаса по сигналу - - type: Transform - pos: 12.5,-14.5 - parent: 2 - - type: SpawnOnTrigger - proto: CannonBall - proto: ERTSpawnerEngineering entities: - uid: 38218 @@ -127878,15 +126255,6 @@ entities: parent: 2 - type: SpawnOnTrigger proto: ClothingOuterHardsuitMaxim - - uid: 40955 - components: - - type: MetaData - name: не слишком ли много спавнеров обр? хммммммммммм? - - type: Transform - pos: 4.5,-48.5 - parent: 2 - - type: SpawnOnTrigger - proto: SpaceMedipen - proto: ERTSpawnerLeader entities: - uid: 38219 @@ -133660,13 +132028,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} - - uid: 41112 - components: - - type: Transform - pos: -7.5,-71.5 - parent: 2 - - type: Fixtures - fixtures: {} - proto: FloorTileItemAstroIce entities: - uid: 32426 @@ -134172,6 +132533,11 @@ entities: - type: Transform pos: 5.5,-37.5 parent: 2 + - uid: 28011 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 2 - uid: 28012 components: - type: Transform @@ -134182,6 +132548,11 @@ entities: - type: Transform pos: 16.5,-33.5 parent: 2 + - uid: 28014 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 - uid: 28826 components: - type: Transform @@ -134227,16 +132598,6 @@ entities: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 39084 - components: - - type: Transform - pos: 19.5,-33.5 - parent: 2 - - uid: 39735 - components: - - type: Transform - pos: 17.5,-33.5 - parent: 2 - uid: 40105 components: - type: Transform @@ -134306,13 +132667,6 @@ entities: - type: Transform pos: -48.668762,-112.47488 parent: 2 -- proto: FoodBloodTomato - entities: - - uid: 41036 - components: - - type: Transform - pos: 17.672169,13.422743 - parent: 2 - proto: FoodBoxDonkpocketCarp entities: - uid: 18573 @@ -134819,30 +133173,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodGarlic - entities: - - uid: 274 - components: - - type: Transform - parent: 5 - - type: Physics - canCollide: False - - uid: 1695 - components: - - type: Transform - parent: 5 - - type: Physics - canCollide: False - - uid: 41041 - components: - - type: Transform - pos: 33.243034,-63.491364 - parent: 2 - - uid: 41042 - components: - - type: Transform - pos: 33.180534,-63.710114 - parent: 2 - proto: FoodMealFriesCarrot entities: - uid: 19349 @@ -134877,49 +133207,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodMeatSpiderCutlet - entities: - - uid: 40995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.48296,-34.28454 - parent: 2 -- proto: FoodMeatSpiderCutletCooked - entities: - - uid: 40993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.246502,-34.505142 - parent: 2 - - uid: 40994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.29542,-34.358376 - parent: 2 -- proto: FoodMeatSpiderLeg - entities: - - uid: 11868 - components: - - type: Transform - pos: -49.52587,-20.02515 - parent: 2 - - uid: 40992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -36.591293,-28.739933 - parent: 2 -- proto: FoodMeatSpiderlegCooked - entities: - - uid: 40991 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.357746,-34.60782 - parent: 2 - proto: FoodMeatXeno entities: - uid: 18622 @@ -168485,8 +166772,6 @@ entities: - type: Transform pos: 22.5,-22.5 parent: 2 - - type: Gateway - enabled: True - proto: Gauze entities: - uid: 32513 @@ -177822,8 +176107,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -177840,7 +176125,6 @@ entities: showEnts: False occludes: True ents: - - 33561 - 26494 paper_label: !type:ContainerSlot showEnts: False @@ -177951,8 +176235,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -177969,10 +176253,7 @@ entities: showEnts: False occludes: True ents: - - 562 - - 783 - - 471 - - 28011 + - 5963 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -178680,6 +176961,16 @@ entities: rot: 3.141592653589793 rad pos: -46.5,-25.5 parent: 2 + - uid: 23981 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + pos: 16.5,13.5 + parent: 2 - uid: 23983 components: - type: Transform @@ -178752,6 +177043,11 @@ entities: rot: 3.141592653589793 rad pos: 34.5,-8.5 parent: 2 + - uid: 24001 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 - uid: 24002 components: - type: Transform @@ -180341,21 +178637,6 @@ entities: ents: - 24776 - type: ActionsContainer - - uid: 41078 - components: - - type: Transform - pos: 31.44489,4.8107767 - parent: 2 - - uid: 41102 - components: - - type: Transform - pos: 85.73772,-2.8218112 - parent: 2 - - uid: 41104 - components: - - type: Transform - pos: 88.292786,-10.185124 - parent: 2 - proto: LanternFlash entities: - uid: 25 @@ -180402,7 +178683,7 @@ entities: - uid: 24217 components: - type: Transform - pos: -34.575874,-22.225044 + pos: -34.63365,-21.896847 parent: 2 - uid: 24218 components: @@ -180544,6 +178825,21 @@ entities: - type: Transform pos: 65.5,-50.5 parent: 2 +- proto: LeftFootMoth + entities: + - uid: 24226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 107.40406,-71.27681 + parent: 2 + - uid: 40791 + components: + - type: Transform + pos: 102.55585,-78.03824 + parent: 2 + - type: Stealth + - type: Emag - proto: LeftFootSkeleton entities: - uid: 24227 @@ -180672,10 +178968,8 @@ entities: - uid: 24241 components: - type: Transform - parent: 16742 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 8.601826,13.614818 + parent: 2 - uid: 24243 components: - type: Transform @@ -180694,11 +178988,6 @@ entities: - type: Transform pos: -16.486774,-45.63583 parent: 2 - - uid: 40968 - components: - - type: Transform - pos: -35.486115,-52.43437 - parent: 2 - proto: LightReplacer entities: - uid: 24244 @@ -180710,7 +178999,8 @@ entities: - uid: 24245 components: - type: Transform - pos: 42.816086,-66.03279 + rot: -1.5707963267948966 rad + pos: 42.70501,-66.38782 parent: 2 - proto: LightTube entities: @@ -180722,34 +179012,6 @@ entities: parent: 2 - proto: LightTubeCrystalRed entities: - - uid: 6044 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11854 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14774 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14815 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 24936 components: - type: Transform @@ -180767,42 +179029,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 25396 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25397 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25399 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25630 - components: - - type: Transform - parent: 14397 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25643 - components: - - type: Transform - parent: 25641 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 25803 components: - type: Transform @@ -180812,15 +179038,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 25839 - components: - - type: Transform - parent: 25652 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 25854 components: - type: Transform @@ -180934,23 +179151,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 30602 - components: - - type: Transform - parent: 30133 - - type: LightBulb - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 30646 - components: - - type: Transform - parent: 30633 - - type: LightBulb - lightRadius: 2 - lightEnergy: 1 - - type: Physics - canCollide: False - uid: 36923 components: - type: Transform @@ -181076,112 +179276,6 @@ entities: lightEnergy: 1 - type: Physics canCollide: False - - uid: 41077 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.6080236,-72.40456 - parent: 2 - - uid: 41115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5142736,-72.46706 - parent: 2 - - uid: 41116 - components: - - type: Transform - pos: -6.5298986,-72.35768 - parent: 2 - - uid: 41117 - components: - - type: Transform - pos: -6.6236486,-72.38893 - parent: 2 - - uid: 41118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5611486,-72.48268 - parent: 2 - - uid: 41119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.560574,-53.845654 - parent: 2 - - uid: 41120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.6387,-53.845654 - parent: 2 - - uid: 41121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.466824,-53.86128 - parent: 2 - - uid: 41122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.29495,-53.908154 - parent: 2 - - uid: 41123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5137,-53.92378 - parent: 2 - - uid: 41124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.61296,-66.298416 - parent: 2 - - uid: 41125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.58171,-66.392166 - parent: 2 - - uid: 41127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.48796,-66.548416 - parent: 2 - - uid: 41128 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.48796,-66.56404 - parent: 2 - - uid: 41129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.534836,-66.40779 - parent: 2 - - uid: 41130 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.597336,-66.34529 - parent: 2 - - uid: 41131 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.64421,-66.34529 - parent: 2 - - uid: 41132 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.628586,-66.392166 - parent: 2 - proto: LiquidNitrogenCanister entities: - uid: 24249 @@ -181395,22 +179489,6 @@ entities: - Pressed: Toggle 28286: - Pressed: Toggle - - uid: 40990 - components: - - type: MetaData - name: свет - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-66.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 40981: - - Pressed: Toggle - 40980: - - Pressed: Toggle - 40982: - - Pressed: Toggle - proto: LockableButtonChemistry entities: - uid: 24257 @@ -181495,8 +179573,6 @@ entities: linkedPorts: 37909: - Pressed: Open - 31037: - - Pressed: On - proto: LockableButtonSalvage entities: - uid: 34261 @@ -181507,10 +179583,6 @@ entities: rot: 3.141592653589793 rad pos: 9.5,-51.5 parent: 2 - - type: AccessReader - access: - - - NuclearOperative - - - Salvage - type: DeviceLinkSource linkedPorts: 34357: @@ -181518,7 +179590,7 @@ entities: - uid: 34368 components: - type: MetaData - name: начать синхронизацию + name: активация портала - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-23.5 @@ -181619,30 +179691,6 @@ entities: - Pressed: Toggle 40642: - Pressed: Toggle -- proto: LockableButtonService - entities: - - uid: 41152 - components: - - type: MetaData - name: свет в зале - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 41146: - - Pressed: Toggle - 41147: - - Pressed: Toggle - 41150: - - Pressed: Toggle - 41148: - - Pressed: Toggle - 41149: - - Pressed: Toggle - 41151: - - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 14644 @@ -181826,24 +179874,6 @@ entities: - type: Transform pos: -10.5,-26.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: LockerBrigmedic entities: - uid: 16246 @@ -181889,37 +179919,6 @@ entities: - type: Transform pos: 16.5,16.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14846 - - 28647 - - 24241 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerChemistryFilled entities: - uid: 24267 @@ -182363,35 +180362,6 @@ entities: - type: Transform pos: 52.5,-0.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23982 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 16669 components: - type: Transform @@ -182868,45 +180838,287 @@ entities: showEnts: False occludes: True ents: - - 14889 + - 14889 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 24301 + components: + - type: Transform + pos: -50.5,-8.5 + parent: 2 + - uid: 24302 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 24303 + components: + - type: Transform + pos: -50.5,-10.5 + parent: 2 + - uid: 24304 + components: + - type: Transform + pos: -47.5,-40.5 + parent: 2 +- proto: LockerMedicine + entities: + - uid: 2126 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14755 + 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: + - 2127 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicineFilled + entities: + - uid: 24305 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + pos: -64.5,-23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 24307 + components: + - type: Transform + pos: -48.5,-11.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 6167 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 40155 + components: + - type: Transform + pos: -59.5,-25.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 14692 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 14695 + - 14697 + - 14698 + - 14694 + - 14693 + - 14696 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilled + entities: + - uid: 24309 + components: + - type: Transform + pos: -51.5,-12.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: LockerQuarterMasterFilled + entities: + - uid: 24310 + components: + - type: Transform + pos: -0.5,-98.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerRepresentative + entities: + - uid: 38155 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 37887 + - 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: + - 38158 + - 38160 + - 38156 + - 38159 + - 38161 + - 38157 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerMedicalFilled - entities: - - uid: 24301 - components: - - type: Transform - pos: -50.5,-8.5 - parent: 2 - - uid: 24302 - components: - - type: Transform - pos: -50.5,-9.5 - parent: 2 - - uid: 24303 - components: - - type: Transform - pos: -50.5,-10.5 - parent: 2 - - uid: 24304 - components: - - type: Transform - pos: -47.5,-40.5 - parent: 2 -- proto: LockerMedicine +- proto: LockerResearchDirectorFilled entities: - - uid: 2126 + - uid: 24311 components: - type: Transform - pos: -19.5,12.5 + pos: -35.5,-67.5 parent: 2 - type: EntityStorage air: volume: 200 immutable: False - temperature: 293.14755 + temperature: 293.14673 moles: - 1.7459903 - 6.568249 @@ -182926,50 +181138,19 @@ entities: showEnts: False occludes: True ents: - - 2127 + - 396 + - 400 + - 401 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerMedicineFilled +- proto: LockerSalvageSpecialistFilled entities: - - uid: 24305 - components: - - type: Transform - pos: -51.5,-17.5 - parent: 2 - - uid: 24306 - components: - - type: Transform - pos: -64.5,-23.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 24307 - components: - - type: Transform - pos: -48.5,-11.5 - parent: 2 - - uid: 24308 + - uid: 24314 components: - type: Transform - pos: -47.5,-11.5 + pos: -4.5,-89.5 parent: 2 - type: EntityStorage air: @@ -182995,88 +181176,15 @@ entities: showEnts: False occludes: True ents: - - 6167 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 40155 - components: - - type: Transform - pos: -59.5,-25.5 - parent: 2 -- proto: LockerMime - entities: - - uid: 14692 - components: - - type: Transform - pos: 34.5,-15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14695 - - 14697 - - 14698 - - 14694 - - 14693 - - 14696 + - 471 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerParamedicFilled - entities: - - uid: 24309 - components: - - type: Transform - pos: -51.5,-12.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: LockerQuarterMasterFilled - entities: - - uid: 24310 + - uid: 24315 components: - type: Transform - pos: -0.5,-98.5 + pos: -4.5,-90.5 parent: 2 - type: EntityStorage air: @@ -183096,53 +181204,21 @@ entities: - 0 - 0 - 0 -- proto: LockerRepresentative - entities: - - uid: 38155 - components: - - type: Transform - pos: -5.5,-4.5 - parent: 37887 - - 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: - - 38158 - - 38160 - - 38156 - - 38159 - - 38161 - - 38157 + - 562 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerResearchDirectorFilled - entities: - - uid: 24311 + - uid: 24316 components: - type: Transform - pos: -35.5,-67.5 + pos: -4.5,-91.5 parent: 2 - type: EntityStorage air: @@ -183168,84 +181244,11 @@ entities: showEnts: False occludes: True ents: - - 396 - - 400 - - 401 + - 783 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 24314 - components: - - type: Transform - pos: -4.5,-89.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 24315 - components: - - type: Transform - pos: -4.5,-90.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8968438 - - 7.1357465 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 24316 - components: - - type: Transform - pos: -4.5,-91.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - proto: LockerScienceFilled entities: - uid: 24317 @@ -183465,8 +181468,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -183477,17 +181480,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 37762 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerWallMedical entities: - uid: 37919 @@ -184197,10 +182189,12 @@ entities: - type: Transform pos: 64.55751,-19.446735 parent: 2 - - uid: 28014 +- proto: MagazineBoxPistolPractice + entities: + - uid: 26439 components: - type: Transform - pos: 8.563635,-22.442852 + pos: 8.491989,-22.413038 parent: 2 - proto: MagazineBoxRifle entities: @@ -185138,8 +183132,7 @@ entities: - uid: 40924 components: - type: Transform - anchored: True - pos: -41.5,-33.5 + pos: -41.5,-28.5 parent: 2 - type: ContainerContainer containers: @@ -185175,171 +183168,6 @@ entities: showEnts: False occludes: False ent: null - - type: Physics - bodyType: Static - - type: Pullable - prevFixedRotation: True - - uid: 41053 - components: - - type: Transform - pos: 43.5,-1.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 25653 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 25705 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 41054 - components: - - type: Transform - pos: 42.5,-7.5 - parent: 2 - - uid: 41055 - components: - - type: Transform - pos: 48.5,-13.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 25812 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41061 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 41056 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41063 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41062 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 41057 - components: - - type: Transform - pos: 54.5,-13.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41065 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41064 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - proto: MaterialBones1 entities: - uid: 24563 @@ -185394,26 +183222,8 @@ entities: rot: 3.141592653589793 rad pos: 8.707739,-28.657364 parent: 2 - - uid: 41039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.12713,13.48667 - parent: 2 - - uid: 41040 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.361505,13.54917 - parent: 2 - proto: MaterialToothSpaceCarp1 entities: - - uid: 23981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.615704,13.752295 - parent: 2 - uid: 26557 components: - type: Transform @@ -185447,12 +183257,6 @@ entities: rot: 1.5707963267948966 rad pos: 8.488989,-28.579239 parent: 2 - - uid: 40970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.615704,13.627295 - parent: 2 - proto: MaterialWoodPlank entities: - uid: 24570 @@ -185461,11 +183265,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.53313,-101.38195 parent: 2 - - uid: 41024 - components: - - type: Transform - pos: -53.40009,-15.54376 - parent: 2 - proto: MaterialWoodPlank1 entities: - uid: 24571 @@ -185557,6 +183356,13 @@ entities: - type: Transform pos: -20.424871,-61.475033 parent: 2 +- proto: MedalCase + entities: + - uid: 24591 + components: + - type: Transform + pos: 10.543274,15.729935 + parent: 2 - proto: MedicalBed entities: - uid: 5635 @@ -185728,7 +183534,7 @@ entities: - uid: 2061 components: - type: Transform - pos: 80.531784,-9.406601 + pos: 80.502365,-9.5784445 parent: 2 - uid: 9347 components: @@ -185855,7 +183661,7 @@ entities: - uid: 2065 components: - type: Transform - pos: 80.51616,-9.922226 + pos: 80.47644,-10.177777 parent: 2 - uid: 14551 components: @@ -186115,12 +183921,6 @@ entities: - type: Transform pos: 74.5,-9.5 parent: 2 - - uid: 41043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 2 - proto: MirrorShield entities: - uid: 24661 @@ -186385,16 +184185,36 @@ entities: - type: Transform pos: -69.5,-21.5 parent: 2 + - uid: 24698 + components: + - type: Transform + pos: -48.5,9.5 + parent: 2 - uid: 24699 components: - type: Transform pos: -33.5,-16.5 parent: 2 + - uid: 24700 + components: + - type: Transform + pos: -61.5,-53.5 + parent: 2 - uid: 24701 components: - type: Transform pos: -49.5,-93.5 parent: 2 + - uid: 24702 + components: + - type: Transform + pos: 29.5,-82.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: 68.5,-18.5 + parent: 2 - uid: 24704 components: - type: Transform @@ -186769,16 +184589,9 @@ entities: - uid: 24754 components: - type: Transform - pos: -53.436836,-19.588264 + rot: 3.141592653589793 rad + pos: -55.479095,-19.584072 parent: 2 - - type: GasTank - toggleActionEntity: 25523 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 25523 - uid: 24755 components: - type: Transform @@ -186932,6 +184745,13 @@ entities: - type: Transform pos: -65.5,-50.5 parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 26267 + components: + - type: Transform + pos: -34.663376,-22.620335 + parent: 2 - proto: OrangeSeeds entities: - uid: 24775 @@ -188119,6 +185939,57 @@ entities: rot: -1.5707963267948966 rad pos: -28.527176,-113.35243 parent: 2 + - uid: 27043 + components: + - type: Transform + pos: -34.38595,-22.560871 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True - uid: 32769 components: - type: Transform @@ -188216,6 +186087,32 @@ entities: rot: -1.5707963267948966 rad pos: 48.05109,10.41139 parent: 2 + - uid: 40936 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: -58.408726,-20.519669 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2- + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - proto: PaperBin10 entities: - uid: 24922 @@ -188328,17 +186225,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.63809,13.955755 parent: 2 - - uid: 40939 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.340697,-22.686184 - parent: 2 - - uid: 40953 - components: - - type: Transform - pos: 14.434447,-22.451809 - parent: 2 - proto: PaperCargoInvoice entities: - uid: 6313 @@ -188512,7 +186398,7 @@ entities: - uid: 32968 components: - type: Transform - pos: 13.322789,-61.353043 + pos: 20.451714,-17.492172 parent: 2 - type: Paper content: >- @@ -189229,29 +187115,17 @@ entities: - type: Transform pos: 3.5,-52.5 parent: 2 - - type: Door - secondsUntilStateChange: -12657.478 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - uid: 36706 components: - type: Transform pos: 2.5,-52.5 parent: 2 - - type: Door - secondsUntilStateChange: -12658.211 - state: Opening - - type: DeviceLinkSource - lastSignals: - DoorStatus: True - proto: PinpointerNuclear entities: - uid: 25047 components: - type: Transform - pos: 9.053204,13.627295 + pos: 8.972797,13.591203 parent: 2 - proto: PirateFlag entities: @@ -189265,38 +187139,6 @@ entities: - type: Transform pos: 12.5,-13.5 parent: 2 - - uid: 41169 - components: - - type: Transform - pos: 11.5,-104.5 - parent: 2 - - uid: 41170 - components: - - type: Transform - pos: 9.5,-85.5 - parent: 2 - - uid: 41171 - components: - - type: Transform - pos: 3.5,-85.5 - parent: 2 - - uid: 41172 - components: - - type: Transform - pos: -2.5,-88.5 - parent: 2 -- proto: PirateHandyFlag - entities: - - uid: 39803 - components: - - type: Transform - pos: 10.70426,-24.148893 - parent: 2 - - uid: 41173 - components: - - type: Transform - pos: 3.7105489,-89.444496 - parent: 2 - proto: PlasmaCanister entities: - uid: 1615 @@ -189728,16 +187570,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 41108 - components: - - type: Transform - pos: 35.585835,3.5678856 - parent: 2 - - uid: 41114 - components: - - type: Transform - pos: 37.523335,3.5835106 - parent: 2 - proto: PlushieHampter entities: - uid: 25107 @@ -191484,11 +189316,6 @@ entities: rot: 1.5707963267948966 rad pos: 62.5,-25.5 parent: 2 - - uid: 41103 - components: - - type: Transform - pos: 80.5,-10.5 - parent: 2 - proto: PowerCellSmall entities: - uid: 25370 @@ -191541,19 +189368,14 @@ entities: rot: 3.141592653589793 rad pos: 3.5,-7.5 parent: 2 - - uid: 41153 +- proto: Poweredlight + entities: + - uid: 274 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-19.5 + pos: 60.5,7.5 parent: 2 - - uid: 41154 - components: - - type: Transform - pos: 3.5,-50.5 - parent: 2 -- proto: Poweredlight - entities: - uid: 2092 components: - type: Transform @@ -191565,17 +189387,44 @@ entities: rot: -1.5707963267948966 rad pos: 66.5,0.5 parent: 2 + - uid: 6044 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 9703 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 - uid: 9717 components: - type: Transform pos: 56.5,15.5 parent: 2 + - uid: 10927 + components: + - type: Transform + pos: 67.5,11.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 67.5,7.5 + parent: 2 - uid: 14560 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,-19.5 parent: 2 + - uid: 14815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 - uid: 14858 components: - type: Transform @@ -191593,6 +189442,11 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,-8.5 parent: 2 + - uid: 15590 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 - uid: 15827 components: - type: Transform @@ -191609,6 +189463,12 @@ entities: - type: Transform pos: 54.5,-17.5 parent: 2 + - uid: 18500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,7.5 + parent: 2 - uid: 19113 components: - type: Transform @@ -191667,6 +189527,11 @@ entities: rot: 3.141592653589793 rad pos: 60.5,3.5 parent: 2 + - uid: 21038 + components: + - type: Transform + pos: 78.5,1.5 + parent: 2 - uid: 22998 components: - type: Transform @@ -191679,6 +189544,11 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-1.5 parent: 2 + - uid: 24170 + components: + - type: Transform + pos: 86.5,1.5 + parent: 2 - uid: 24300 components: - type: Transform @@ -191810,12 +189680,30 @@ entities: rot: -1.5707963267948966 rad pos: -34.5,-79.5 parent: 2 + - uid: 25396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-1.5 + parent: 2 + - uid: 25397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 - uid: 25398 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,7.5 parent: 2 + - uid: 25399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 - uid: 25401 components: - type: Transform @@ -192227,6 +190115,17 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-94.5 parent: 2 + - uid: 25492 + components: + - type: Transform + pos: 34.5,-57.5 + parent: 2 + - uid: 25493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-63.5 + parent: 2 - uid: 25495 components: - type: Transform @@ -192307,6 +190206,17 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,15.5 parent: 2 + - uid: 25510 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 25511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 2 - uid: 25512 components: - type: Transform @@ -192365,6 +190275,11 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-30.5 parent: 2 + - uid: 25523 + components: + - type: Transform + pos: -52.5,-17.5 + parent: 2 - uid: 25524 components: - type: Transform @@ -192418,6 +190333,12 @@ entities: - type: Transform pos: -42.5,-1.5 parent: 2 + - uid: 25533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-2.5 + parent: 2 - uid: 25534 components: - type: Transform @@ -192457,6 +190378,12 @@ entities: - type: Transform pos: -37.5,-57.5 parent: 2 + - uid: 25541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-55.5 + parent: 2 - uid: 25542 components: - type: Transform @@ -192931,6 +190858,12 @@ entities: rot: 3.141592653589793 rad pos: -70.5,-78.5 parent: 2 + - uid: 25630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-5.5 + parent: 2 - uid: 25633 components: - type: Transform @@ -192970,6 +190903,18 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,-75.5 parent: 2 + - uid: 25641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + - uid: 25643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 - uid: 25644 components: - type: Transform @@ -193015,6 +190960,17 @@ entities: - type: Transform pos: 55.5,-86.5 parent: 2 + - uid: 25652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-65.5 + parent: 2 + - uid: 25653 + components: + - type: Transform + pos: 32.5,7.5 + parent: 2 - uid: 25656 components: - type: Transform @@ -193163,6 +191119,24 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,-91.5 parent: 2 + - uid: 25693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-35.5 + parent: 2 + - uid: 25694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-40.5 + parent: 2 + - uid: 25695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-32.5 + parent: 2 - uid: 25697 components: - type: Transform @@ -193189,6 +191163,12 @@ entities: - type: Transform pos: -40.5,-97.5 parent: 2 + - uid: 25812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 - uid: 26132 components: - type: Transform @@ -193222,12 +191202,28 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-24.5 parent: 2 + - uid: 27800 + components: + - type: Transform + pos: 82.5,1.5 + parent: 2 - uid: 27838 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,-9.5 parent: 2 + - uid: 30602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 77.5,-4.5 + parent: 2 + - uid: 30633 + components: + - type: Transform + pos: 75.5,-6.5 + parent: 2 - uid: 30635 components: - type: Transform @@ -193239,6 +191235,23 @@ entities: rot: 1.5707963267948966 rad pos: 71.5,-12.5 parent: 2 + - uid: 30646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 89.5,-9.5 + parent: 2 + - uid: 30649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 84.5,-10.5 + parent: 2 + - uid: 30654 + components: + - type: Transform + pos: 89.5,-0.5 + parent: 2 - uid: 30868 components: - type: Transform @@ -193460,6 +191473,12 @@ entities: rot: -1.5707963267948966 rad pos: 60.5,-52.5 parent: 2 + - uid: 39577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 - uid: 39578 components: - type: Transform @@ -193489,76 +191508,6 @@ entities: - type: Transform pos: 41.5,-3.5 parent: 2 - - uid: 40980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-63.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 40981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-65.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 40982 - components: - - type: Transform - pos: 34.5,-57.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 41146 - components: - - type: Transform - pos: 32.5,7.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 41147 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,5.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 41148 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 41149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-1.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 41150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-1.5 - parent: 2 - - type: PoweredLight - on: False - - uid: 41151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 2 - - type: PoweredLight - on: False - proto: PoweredlightBlue entities: - uid: 38414 @@ -193609,20 +191558,24 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-13.5 parent: 2 - - uid: 40951 + - uid: 28869 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,-16.5 parent: 2 - - uid: 41183 +- proto: PoweredlightEmpty + entities: + - uid: 2107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 + pos: 6.5,-50.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 3.5,-50.5 parent: 2 -- proto: PoweredlightEmpty - entities: - uid: 2686 components: - type: Transform @@ -193826,42 +191779,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,-42.5 parent: 2 - - uid: 25641 - components: - - type: Transform - pos: 86.5,1.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 25643 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 25652 - components: - - type: Transform - pos: 82.5,1.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 25839 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 25693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-55.5 - parent: 2 - uid: 25703 components: - type: Transform @@ -194093,37 +192010,6 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 30133 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-6.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 30602 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 30633 - components: - - type: Transform - pos: 78.5,1.5 - parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 30646 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - uid: 32756 components: - type: Transform @@ -194428,11 +192314,6 @@ entities: powerLoad: 60 - type: DamageOnInteract isDamageActive: False - - uid: 40956 - components: - - type: Transform - pos: -35.5,-51.5 - parent: 2 - proto: PoweredlightExterior entities: - uid: 40816 @@ -194477,6 +192358,12 @@ entities: - type: Transform pos: 2.5,-15.5 parent: 2 + - uid: 25705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 - proto: PoweredlightOrange entities: - uid: 25707 @@ -194668,33 +192555,6 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-17.5 parent: 2 - - uid: 24170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,7.5 - parent: 2 - - uid: 25511 - components: - - type: Transform - pos: 64.5,11.5 - parent: 2 - - uid: 25533 - components: - - type: Transform - pos: -52.5,-17.5 - parent: 2 - - uid: 25694 - components: - - type: Transform - pos: -38.5,-1.5 - parent: 2 - - uid: 25695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-40.5 - parent: 2 - uid: 25752 components: - type: Transform @@ -194703,12 +192563,6 @@ entities: parent: 2 - type: PoweredLight on: False - - uid: 25779 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-32.5 - parent: 2 - uid: 26455 components: - type: Transform @@ -194720,66 +192574,18 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-25.5 parent: 2 - - uid: 29514 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 2 - - uid: 30131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - uid: 30649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-9.5 - parent: 2 - - uid: 30654 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-3.5 - parent: 2 - uid: 31037 components: - type: Transform rot: 3.141592653589793 rad pos: 50.5,13.5 parent: 2 - - type: PoweredLight - on: False - uid: 38415 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 37887 - - uid: 39577 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-6.5 - parent: 2 - - uid: 40969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,12.5 - parent: 2 - - uid: 41066 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 2 - - uid: 41073 - components: - - type: Transform - pos: 42.5,8.5 - parent: 2 - proto: PoweredSmallLight entities: - uid: 2109 @@ -194810,6 +192616,12 @@ entities: - type: Transform pos: 51.5,16.5 parent: 2 + - uid: 11854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,0.5 + parent: 2 - uid: 13002 components: - type: Transform @@ -194821,6 +192633,12 @@ entities: rot: 1.5707963267948966 rad pos: 39.5,1.5 parent: 2 + - uid: 14774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,3.5 + parent: 2 - uid: 14777 components: - type: Transform @@ -194992,6 +192810,11 @@ entities: rot: 3.141592653589793 rad pos: 0.5,19.5 parent: 2 + - uid: 25779 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 - uid: 25780 components: - type: Transform @@ -195228,6 +193051,12 @@ entities: rot: 3.141592653589793 rad pos: -10.5,6.5 parent: 2 + - uid: 25839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 - uid: 25840 components: - type: Transform @@ -196431,31 +194260,8 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,-71.5 parent: 2 - - uid: 40950 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,9.5 - parent: 2 - - uid: 41075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,0.5 - parent: 2 - - uid: 41092 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 - parent: 2 - proto: PoweredSmallLightEmpty entities: - - uid: 2107 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - uid: 26113 components: - type: Transform @@ -196656,11 +194462,6 @@ entities: parent: 2 - proto: PumpkinLantern entities: - - uid: 25493 - components: - - type: Transform - pos: -77.8645,-43.328117 - parent: 2 - uid: 27607 components: - type: Transform @@ -196731,21 +194532,6 @@ entities: - type: Transform pos: 101.50751,-42.43947 parent: 2 - - uid: 40983 - components: - - type: Transform - pos: 36.588573,-63.62699 - parent: 2 - - uid: 40984 - components: - - type: Transform - pos: 35.00285,-65.543816 - parent: 2 - - uid: 41145 - components: - - type: Transform - pos: 30.428085,-3.415341 - parent: 2 - proto: PumpkinLanternLarge entities: - uid: 6194 @@ -196763,11 +194549,6 @@ entities: - type: Transform pos: 51.696487,-36.039314 parent: 2 - - uid: 27800 - components: - - type: Transform - pos: 34.52399,-57.30887 - parent: 2 - uid: 33863 components: - type: Transform @@ -196793,26 +194574,6 @@ entities: - type: Transform pos: 101.49568,-20.383839 parent: 2 - - uid: 40998 - components: - - type: Transform - pos: -56.51,-27.290165 - parent: 2 - - uid: 41157 - components: - - type: Transform - pos: 41.931072,-99.433914 - parent: 2 - - uid: 41179 - components: - - type: Transform - pos: 2.5381908,-87.24696 - parent: 2 - - uid: 41182 - components: - - type: Transform - pos: 6.543469,-84.37737 - parent: 2 - proto: PumpkinLanternSmall entities: - uid: 10801 @@ -196825,21 +194586,6 @@ entities: - type: Transform pos: 27.342222,27.475954 parent: 2 - - uid: 25492 - components: - - type: Transform - pos: -80.27075,-43.031242 - parent: 2 - - uid: 29410 - components: - - type: Transform - pos: 38.666378,-61.408768 - parent: 2 - - uid: 30132 - components: - - type: Transform - pos: 38.678608,-62.367165 - parent: 2 - uid: 33862 components: - type: Transform @@ -196925,91 +194671,6 @@ entities: - type: Transform pos: 65.37312,-26.855219 parent: 2 - - uid: 40985 - components: - - type: Transform - pos: 37.45147,-58.56365 - parent: 2 - - uid: 40986 - components: - - type: Transform - pos: 32.502995,-60.504467 - parent: 2 - - uid: 40987 - components: - - type: Transform - pos: 35.47011,-60.506695 - parent: 2 - - uid: 40997 - components: - - type: Transform - pos: -40.077003,-25.195251 - parent: 2 - - uid: 41034 - components: - - type: Transform - pos: 9.355507,17.847351 - parent: 2 - - uid: 41047 - components: - - type: Transform - pos: -4.5107927,11.873474 - parent: 2 - - uid: 41052 - components: - - type: Transform - pos: -73.48247,-36.485867 - parent: 2 - - uid: 41076 - components: - - type: Transform - pos: 44.742165,5.326885 - parent: 2 - - uid: 41079 - components: - - type: Transform - pos: 28.499481,4.618205 - parent: 2 - - uid: 41081 - components: - - type: Transform - pos: -31.48348,8.141961 - parent: 2 - - uid: 41106 - components: - - type: Transform - pos: 44.21273,-22.832611 - parent: 2 - - uid: 41110 - components: - - type: Transform - pos: 27.363811,-73.227844 - parent: 2 - - uid: 41126 - components: - - type: Transform - pos: 41.527927,-47.334026 - parent: 2 - - uid: 41135 - components: - - type: Transform - pos: 28.51754,0.52877975 - parent: 2 - - uid: 41137 - components: - - type: Transform - pos: 35.549934,4.618095 - parent: 2 - - uid: 41138 - components: - - type: Transform - pos: 37.360012,4.60247 - parent: 2 - - uid: 41156 - components: - - type: Transform - pos: 52.692986,-75.00183 - parent: 2 - proto: Rack entities: - uid: 1112 @@ -202282,11 +199943,6 @@ entities: - type: Transform pos: -55.5,-95.5 parent: 2 - - uid: 27043 - components: - - type: Transform - pos: -58.5,-20.5 - parent: 2 - uid: 27044 components: - type: Transform @@ -202758,10 +200414,10 @@ entities: - type: Transform pos: -5.5,-35.5 parent: 2 - - uid: 40941 + - uid: 39735 components: - type: Transform - pos: -4.5,-39.5 + pos: -4.5,-41.5 parent: 2 - proto: Recycler entities: @@ -206685,8 +204341,23 @@ entities: - type: Transform pos: 15.5,-25.5 parent: 2 + - uid: 29064 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 - proto: SalvageMobSpawner75 entities: + - uid: 39803 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 39804 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 - uid: 39805 components: - type: Transform @@ -206702,6 +204373,16 @@ entities: - type: Transform pos: 6.5,-14.5 parent: 2 + - uid: 39809 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 40115 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 - proto: SalvageSpawnerEquipment entities: - uid: 39621 @@ -207037,21 +204718,6 @@ entities: - type: Transform pos: -5.5,-28.5 parent: 2 - - uid: 40943 - components: - - type: Transform - pos: 5.5,-16.5 - parent: 2 - - uid: 40946 - components: - - type: Transform - pos: 6.5,-25.5 - parent: 2 - - uid: 40947 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - proto: SalvageSpawnerScrapValuable entities: - uid: 39641 @@ -207175,18 +204841,6 @@ entities: parent: 2 - proto: SalvageSpawnerTreasureValuable entities: - - uid: 2668 - components: - - type: Transform - pos: 19.5,-45.5 - parent: 2 - - type: EntityTableSpawner - table: !type:NestedSelector - prob: 1 - weight: 1 - rolls: !type:ConstantNumberSelector - value: 1 - tableId: SalvageTreasureSpawnerValuable - uid: 26240 components: - type: Transform @@ -207227,13 +204881,6 @@ entities: - type: Transform pos: 19.5,-35.5 parent: 2 - - type: EntityTableSpawner - table: !type:NestedSelector - prob: 1 - weight: 1 - rolls: !type:ConstantNumberSelector - value: 1 - tableId: SalvageTreasureSpawnerValuable - uid: 39643 components: - type: Transform @@ -208020,21 +205667,21 @@ entities: - uid: 471 components: - type: Transform - parent: 26551 + parent: 24314 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 562 components: - type: Transform - parent: 26551 + parent: 24315 - type: Physics canCollide: False - type: InsideEntityStorage - uid: 783 components: - type: Transform - parent: 26551 + parent: 24316 - type: Physics canCollide: False - type: InsideEntityStorage @@ -208547,7 +206194,7 @@ entities: - uid: 28077 components: - type: Transform - pos: -38.540035,-34.379513 + pos: -38.38237,-34.389435 parent: 2 - uid: 37922 components: @@ -208999,15 +206646,15 @@ entities: - type: Transform pos: 10.5,-61.5 parent: 2 - - uid: 27922 + - uid: 27921 components: - type: Transform - pos: 18.5,-59.5 + pos: 18.5,-61.5 parent: 2 - - uid: 40952 + - uid: 27922 components: - type: Transform - pos: 18.5,-60.5 + pos: 18.5,-59.5 parent: 2 - proto: ShippingContainerConarex entities: @@ -209215,11 +206862,6 @@ entities: parent: 2 - proto: ShuttersNormal entities: - - uid: 25541 - components: - - type: Transform - pos: -41.5,-52.5 - parent: 2 - uid: 28139 components: - type: Transform @@ -209303,31 +206945,6 @@ entities: - type: Transform pos: -47.5,-70.5 parent: 2 - - uid: 40957 - components: - - type: Transform - pos: -41.5,-53.5 - parent: 2 - - uid: 40958 - components: - - type: Transform - pos: -41.5,-54.5 - parent: 2 - - uid: 40959 - components: - - type: Transform - pos: -40.5,-50.5 - parent: 2 - - uid: 40960 - components: - - type: Transform - pos: -39.5,-50.5 - parent: 2 - - uid: 40961 - components: - - type: Transform - pos: -38.5,-50.5 - parent: 2 - proto: ShuttersNormalOpen entities: - uid: 484 @@ -210613,8 +208230,6 @@ entities: entities: - uid: 11902 components: - - type: MetaData - name: старт тира - type: Transform rot: -1.5707963267948966 rad pos: 61.5,8.5 @@ -211016,17 +208631,11 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 40958: - - Pressed: Toggle - 40957: + 28156: - Pressed: Toggle - 25541: + 28155: - Pressed: Toggle - 40959: - - Pressed: Toggle - 40960: - - Pressed: Toggle - 40961: + 28154: - Pressed: Toggle - uid: 28354 components: @@ -211450,34 +209059,6 @@ entities: - Pressed: Toggle 21242: - Pressed: Toggle - - uid: 39802 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.810246,8.501156 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 14078: - - Pressed: Off - 2889: - - Pressed: Off - 15176: - - Pressed: Off - 9728: - - Pressed: Off - 16244: - - Pressed: Off - 17414: - - Pressed: Off - 17426: - - Pressed: Off - 14063: - - Pressed: Off - 14233: - - Pressed: Off - 9937: - - Pressed: Off - uid: 40637 components: - type: MetaData @@ -211504,8 +209085,6 @@ entities: linkedPorts: 34359: - Timer: Trigger - 40955: - - Timer: Trigger - type: DeviceLinkSink invokeCounter: 1 missingComponents: @@ -211558,8 +209137,6 @@ entities: linkedPorts: 39738: - Timer: Trigger - 41180: - - Timer: Trigger - type: DeviceLinkSink invokeCounter: 1 missingComponents: @@ -213406,10 +210983,9 @@ entities: - uid: 28647 components: - type: Transform - parent: 16742 - - type: Physics - canCollide: False - - type: InsideEntityStorage + rot: 1.5707963267948966 rad + pos: 8.242451,13.583568 + parent: 2 - proto: Soap entities: - uid: 2702 @@ -214498,6 +212074,12 @@ entities: parent: 2 - proto: SolidSecretDoor entities: + - uid: 33561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 2 - uid: 40103 components: - type: MetaData @@ -214748,23 +212330,13 @@ entities: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 39804 - components: - - type: Transform - pos: 12.5,-33.5 - parent: 2 - - uid: 40115 - components: - - type: Transform - pos: 6.5,-26.5 - parent: 2 - - uid: 40949 +- proto: SpawnMobCarpHolo + entities: + - uid: 30415 components: - type: Transform - pos: 17.5,-16.5 + pos: -14.5,-12.5 parent: 2 -- proto: SpawnMobCarpHolo - entities: - uid: 40120 components: - type: Transform @@ -214777,6 +212349,11 @@ entities: - type: Transform pos: -22.5,-47.5 parent: 2 + - uid: 39802 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 - proto: SpawnMobCatFloppa entities: - uid: 28855 @@ -214840,6 +212417,11 @@ entities: parent: 2 - proto: SpawnMobKangaroo entities: + - uid: 30435 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 - uid: 30480 components: - type: Transform @@ -214883,50 +212465,6 @@ entities: - type: Transform pos: 22.5,9.5 parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 31088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-53.5 - parent: 2 - - uid: 31520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,9.5 - parent: 2 - - uid: 31521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-82.5 - parent: 2 - - uid: 31522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-18.5 - parent: 2 - - uid: 31523 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,9.5 - parent: 2 - - uid: 31524 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,18.5 - parent: 2 - - uid: 31528 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-19.5 - parent: 2 - proto: SpawnMobOreCrab entities: - uid: 28867 @@ -215076,10 +212614,10 @@ entities: parent: 2 - proto: SpawnPointCaptain entities: - - uid: 41025 + - uid: 2301 components: - type: Transform - pos: 16.5,12.5 + pos: 19.5,14.5 parent: 2 - proto: SpawnPointCargoTechnician entities: @@ -220666,6 +218204,16 @@ entities: - type: Transform pos: -49.5,-20.5 parent: 2 + - uid: 29513 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 29514 + components: + - type: Transform + pos: -49.5,-23.5 + parent: 2 - uid: 29515 components: - type: Transform @@ -222161,21 +219709,6 @@ entities: - type: Transform pos: -31.5,-118.5 parent: 2 - - uid: 40974 - components: - - type: Transform - pos: 10.5,17.5 - parent: 2 - - uid: 40975 - components: - - type: Transform - pos: 10.5,16.5 - parent: 2 - - uid: 40976 - components: - - type: Transform - pos: 10.5,15.5 - parent: 2 - proto: TableFancyGreen entities: - uid: 39476 @@ -223945,20 +221478,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-4.5 parent: 37887 -- proto: TableWeb - entities: - - uid: 40972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-24.5 - parent: 2 - - uid: 40973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-23.5 - parent: 2 - proto: TableWood entities: - uid: 4600 @@ -224333,6 +221852,21 @@ entities: - type: Transform pos: 10.5,10.5 parent: 2 + - uid: 30131 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 30132 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 30133 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 - uid: 30134 components: - type: Transform @@ -226369,7 +223903,7 @@ entities: - uid: 40133 components: - type: Transform - pos: 9.4890995,1.1184733 + pos: 9.525852,1.1365409 parent: 2 - proto: ToyFigurineLawyer entities: @@ -227775,12 +225309,9 @@ entities: entities: - uid: 30554 components: - - type: MetaData - desc: Хэллоуинский ассортимент! - type: Transform pos: 37.5,-69.5 parent: 2 - - type: Emagged - proto: VendingMachineChefDrobe entities: - uid: 30555 @@ -233459,11 +230990,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,18.5 parent: 2 - - uid: 30435 - components: - - type: Transform - pos: 17.5,-32.5 - parent: 2 - uid: 30679 components: - type: Transform @@ -261435,12 +258961,11 @@ entities: parent: 6311 - type: Physics canCollide: False - - type: StaticPrice - price: 10500 - type: InsideEntityStorage missingComponents: - Gun - BallisticAmmoProvider + - StaticPrice - DamageExaminable - Contraband - proto: WeaponPistolFlintlock @@ -261541,15 +259066,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponShotgunEnforcer - entities: - - uid: 28011 - components: - - type: Transform - parent: 26551 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: WeaponShotgunImprovised entities: - uid: 36915 @@ -261671,6 +259187,11 @@ entities: - type: Transform pos: 14.5,-27.5 parent: 2 + - uid: 37762 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 - uid: 38658 components: - type: Transform @@ -261812,11 +259333,6 @@ entities: - type: Transform pos: -54.5,-70.5 parent: 2 - - uid: 40942 - components: - - type: Transform - pos: 17.5,-15.5 - parent: 2 - proto: WeaponWaterBlaster entities: - uid: 26441 @@ -261833,7 +259349,7 @@ entities: - type: MetaData name: ' супер-бластер' - type: Transform - pos: 12.61051,-18.631842 + pos: 12.459019,-19.686338 parent: 2 - proto: WeaponWaterPistol entities: @@ -261842,7 +259358,7 @@ entities: - type: MetaData name: импульсный пистолет - type: Transform - pos: 12.470344,-15.756947 + pos: 8.464001,-17.498634 parent: 2 - proto: WelderIndustrial entities: @@ -262963,9 +260479,6 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-39.5 parent: 2 - - type: AccessReader - access: - - - Medical - proto: WindoorSecureArmoryLocked entities: - uid: 3103 diff --git a/Resources/Maps/corvax_avrite.yml b/Resources/Maps/corvax_avrite.yml index 1ac0790275b..dde778e8392 100644 --- a/Resources/Maps/corvax_avrite.yml +++ b/Resources/Maps/corvax_avrite.yml @@ -11655,6 +11655,13 @@ entities: 3188: 9,54 3189: 8,54 3190: 7,54 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa1 + decals: + 20626: 21.864515,-50.073433 - node: color: '#FFFFFFFF' id: Grassa1 @@ -11750,6 +11757,13 @@ entities: id: Grassa2 decals: 16851: -37.650803,-91.32136 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa3 + decals: + 20625: 21.739014,-50.066826 - node: color: '#FFFFFFFF' id: Grassa3 @@ -11775,6 +11789,13 @@ entities: 17921: 34.751904,-15.085151 19717: -29.131947,14.800649 19728: -9.927556,55.417294 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa4 + decals: + 20623: 21.692776,-50.26504 - node: color: '#FFFFFFFF' id: Grassa4 @@ -11799,6 +11820,13 @@ entities: 19727: -11.615056,47.466057 19729: -24.977142,58.894238 19737: -32.878075,76.87768 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa5 + decals: + 20624: 21.818277,-49.954502 - node: color: '#FFFFFFFF' id: Grassa5 @@ -150247,6 +150275,12 @@ entities: parent: 2 - proto: ComputerBroken entities: + - uid: 5117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-49.5 + parent: 2 - uid: 11355 components: - type: Transform @@ -150264,6 +150298,11 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-87.5 parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 80.5,9.5 + parent: 2 - uid: 18302 components: - type: Transform @@ -150602,12 +150641,6 @@ entities: - type: Transform pos: -61.5,-46.5 parent: 2 - - uid: 15628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-49.5 - parent: 2 - uid: 18299 components: - type: Transform @@ -150870,11 +150903,6 @@ entities: parent: 2 - proto: ComputerRadar entities: - - uid: 5117 - components: - - type: Transform - pos: 81.5,9.5 - parent: 2 - uid: 8964 components: - type: Transform @@ -150995,11 +151023,6 @@ entities: parent: 2 - proto: ComputerSalvageExpedition entities: - - uid: 5122 - components: - - type: Transform - pos: 80.5,9.5 - parent: 2 - uid: 10608 components: - type: Transform @@ -151042,6 +151065,13 @@ entities: rot: 3.141592653589793 rad pos: 8.5,4.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 55568 + components: + - type: Transform + pos: 81.5,9.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 4513 @@ -154484,7 +154514,7 @@ entities: pos: -12.5,61.5 parent: 2 - type: Door - secondsUntilStateChange: -379698 + secondsUntilStateChange: -381728.56 state: Closing - proto: CurtainsPurple entities: @@ -264372,7 +264402,7 @@ entities: - uid: 15719 components: - type: Transform - pos: 22.37185,-49.381092 + pos: 21.988012,-48.98539 parent: 2 - proto: MaterialBones1 entities: @@ -266647,6 +266677,13 @@ entities: - type: Transform pos: -71.5,-63.5 parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 55569 + components: + - type: Transform + pos: 3.376418,-48.301178 + parent: 2 - proto: OreBag entities: - uid: 67741 @@ -269884,6 +269921,83 @@ entities: Поздравляем! Ваша гидропоника была оборудована новейшей системой доставки продуктов прямо на кухню! Просто упакуйте их в данный утилизационный блок и нажмите рычаг. Готово! Все овощи и фрукты будут отправлены прямо на стойку к поварам. Убедительная просьба, не путайте утилизационные блоки, во избежание бессмысленной пропажи продуктов! + - uid: 55570 + components: + - type: Transform + pos: 3.6142097,-48.197117 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True + - uid: 55571 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 21.618113,-49.66593 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2- + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - proto: PaperArtifactAnalyzer entities: - uid: 51095 @@ -310029,7 +310143,7 @@ entities: pos: -61.5,-85.5 parent: 2 - type: Door - secondsUntilStateChange: -5123.1587 + secondsUntilStateChange: -7153.7236 state: Opening - proto: SpaceCash entities: @@ -321325,6 +321439,7 @@ entities: rotation: -1.5707963267948966 rad buckleOffset: 0,0.1 position: Down + buckledEntities: [] - proto: TableCarpet entities: - uid: 5357 @@ -330661,6 +330776,13 @@ entities: - type: Transform pos: 73.5,-21.5 parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 5122 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 - proto: VendingMachineSciDrobe entities: - uid: 7672 @@ -390596,7 +390718,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -140768.17 + secondsUntilStateChange: -142798.73 state: Opening - uid: 21930 components: diff --git a/Resources/Maps/corvax_awesome.yml b/Resources/Maps/corvax_awesome.yml index db9a672c608..a17dc9ec544 100644 --- a/Resources/Maps/corvax_awesome.yml +++ b/Resources/Maps/corvax_awesome.yml @@ -202,7 +202,7 @@ entities: version: 6 2,1: ind: 2,1 - tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAABQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -9503,7 +9503,8 @@ entities: 9,-1: 0: 65528 9,3: - 0: 61156 + 0: 28388 + 7: 32768 9,4: 0: 4 10,1: @@ -14928,6 +14929,14 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,-11.5 parent: 17590 +- proto: AirlockGlassShuttle + entities: + - uid: 6638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 - proto: AirlockGlassShuttleSyndicate entities: - uid: 16677 @@ -33137,6 +33146,16 @@ entities: - type: Transform pos: 22.5,12.5 parent: 20000 + - uid: 20149 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 20150 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 - proto: CableApcStack entities: - uid: 34 @@ -44335,6 +44354,12 @@ entities: - type: Transform pos: 8.5,-0.5 parent: 2 + - uid: 6639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,21.5 + parent: 2 - uid: 6719 components: - type: Transform @@ -46496,6 +46521,12 @@ entities: rot: -1.5707963267948966 rad pos: 40.5,18.5 parent: 19854 + - uid: 19950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 - uid: 19995 components: - type: Transform @@ -46521,6 +46552,30 @@ entities: - type: Transform pos: 35.5,-7.5 parent: 17590 + - uid: 20119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 20120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 + - uid: 20136 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - uid: 20137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,22.5 + parent: 2 - proto: CentcomComputerComms entities: - uid: 16877 @@ -49609,6 +49664,12 @@ entities: parent: 17590 - proto: ComputerBroken entities: + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,21.5 + parent: 2 - uid: 1312 components: - type: Transform @@ -49620,6 +49681,11 @@ entities: - type: Transform pos: -13.5,3.5 parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 - uid: 18319 components: - type: Transform @@ -49741,12 +49807,6 @@ entities: - type: Transform pos: -11.5,3.5 parent: 2 - - uid: 4691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,21.5 - parent: 2 - proto: ComputerId entities: - uid: 859 @@ -49852,13 +49912,6 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,-3.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 2399 - components: - - type: Transform - pos: 35.5,13.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 19876 @@ -49875,6 +49928,14 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,8.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 6637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,15.5 + parent: 2 - proto: ComputerShuttleSyndie entities: - uid: 16792 @@ -50809,26 +50870,6 @@ entities: - type: Transform pos: 34.5,15.5 parent: 2 - - uid: 6637 - components: - - type: MetaData - desc: Два мини-джетпака для тех, кому хочется вызова. - name: ящик мини-джетпаков - - type: Transform - pos: 39.5,15.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 6638 - - 6639 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 8112 components: - type: MetaData @@ -92414,6 +92455,20 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 17590 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 4691 + components: + - type: Transform + pos: -24.162521,18.595175 + parent: 2 +- proto: OreBox + entities: + - uid: 20138 + components: + - type: Transform + pos: 34.5,13.5 + parent: 2 - proto: OreProcessor entities: - uid: 3761 @@ -93037,6 +93092,82 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 20151 + components: + - type: Transform + pos: -24.505997,18.681068 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True + - uid: 20152 + components: + - type: Transform + pos: -18.235907,21.539574 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2- + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - proto: PaperArtifactAnalyzer entities: - uid: 3722 @@ -98732,6 +98863,42 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,1.5 parent: 17590 + - uid: 20141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,20.5 + parent: 2 + - uid: 20142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,19.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,18.5 + parent: 2 + - uid: 20144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - uid: 20146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,21.5 + parent: 2 + - uid: 20147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,22.5 + parent: 2 - proto: RailingCorner entities: - uid: 1652 @@ -98775,6 +98942,18 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-3.5 parent: 17590 + - uid: 20139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,22.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 1184 @@ -99059,6 +99238,17 @@ entities: rot: 3.141592653589793 rad pos: 35.5,2.5 parent: 17590 + - uid: 20145 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 + - uid: 20148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 - proto: RailingRound entities: - uid: 5794 @@ -101625,12 +101815,6 @@ entities: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 1120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,18.5 - parent: 2 - uid: 1679 components: - type: Transform @@ -105248,22 +105432,6 @@ entities: - type: Transform pos: 0.31821108,-23.478035 parent: 2 -- proto: ScrapJetpack - entities: - - uid: 6638 - components: - - type: Transform - parent: 6637 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6639 - components: - - type: Transform - parent: 6637 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ScrapMedkit entities: - uid: 6633 @@ -116169,10 +116337,10 @@ entities: - type: Transform pos: -23.5,-38.5 parent: 2 - - uid: 2370 + - uid: 2399 components: - type: Transform - pos: 37.5,15.5 + pos: 39.5,15.5 parent: 2 - uid: 3385 components: @@ -130985,9 +131153,9 @@ entities: name: пулемёт ботаников - type: Transform parent: 1540 - - type: InsideEntityStorage - type: Physics canCollide: False + - type: InsideEntityStorage missingComponents: - ChamberMagazineAmmoProvider - AmmoCounter diff --git a/Resources/Maps/corvax_delta.yml b/Resources/Maps/corvax_delta.yml index 41d07c43ecc..a7f6e6e2785 100644 --- a/Resources/Maps/corvax_delta.yml +++ b/Resources/Maps/corvax_delta.yml @@ -288,7 +288,7 @@ entities: version: 6 -3,-1: ind: -3,-1 - tiles: YAAAAAACYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAYAAAAAABYAAAAAABIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAA + tiles: YAAAAAACYAAAAAADIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAABJQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAACgQAAAAAAYAAAAAAAYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAYAAAAAADYAAAAAACIAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYAAAAAABYAAAAAADYAAAAAADYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAYAAAAAABYAAAAAABIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAYAAAAAABYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAgQAAAAAAgQAAAAAAfgAAAAAAfgAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAYAAAAAAAYAAAAAABYAAAAAAAYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAYAAAAAAAYAAAAAAAYAAAAAACYAAAAAACgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAYAAAAAABYAAAAAACYAAAAAAAYAAAAAABgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAYAAAAAADYAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAAgQAAAAAAIAAAAAABIAAAAAAAIAAAAAADgQAAAAAAbwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAZQAAAAAA version: 6 -3,0: ind: -3,0 @@ -24548,22 +24548,58 @@ entities: 1127: 62,6 1128: 66,6 1129: 69,7 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa1 + decals: + 23966: 9.081598,-38.109196 + 23967: 8.67537,-38.069557 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa3 + decals: + 23965: 8.913162,-38.208305 - node: color: '#FFFFFFFF' id: Grassa3 decals: 2044: -18,43 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa4 + decals: + 23962: 8.843805,-38.327232 - node: color: '#FFFFFFFF' id: Grassa4 decals: 14509: 69,-21 17641: 3,-3 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassa5 + decals: + 23963: 9.22031,-38.456074 - node: color: '#FFFFFFFF' id: Grassa5 decals: 14785: 89,3 + - node: + cleanable: True + zIndex: 10 + color: '#0000003F' + id: Grassb1 + decals: + 23964: 8.764542,-38.138927 - node: color: '#FFFFFFFF' id: Grassb1 @@ -39941,6 +39977,12 @@ entities: lastSignals: DoorStatus: False DockStatus: True + - uid: 398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,39.5 + parent: 2 - uid: 38326 components: - type: Transform @@ -40153,12 +40195,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,78.5 parent: 2 - - uid: 398 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,39.5 - parent: 2 - proto: AirlockExternalShuttleSyndicateLocked entities: - uid: 38446 @@ -46437,13 +46473,6 @@ entities: - type: Transform pos: 22.348429,-37.346508 parent: 2 - - uid: 1405 - components: - - type: Transform - pos: 20.50013,-40.283833 - parent: 2 - - type: Physics - canCollide: False - uid: 1406 components: - type: Transform @@ -88166,6 +88195,11 @@ entities: - type: Transform pos: 20.5,12.5 parent: 2 + - uid: 13852 + components: + - type: Transform + pos: -45.5,-1.5 + parent: 2 - uid: 38353 components: - type: Transform @@ -104892,6 +104926,12 @@ entities: rot: 1.5707963267948966 rad pos: 76.5,-2.5 parent: 2 + - uid: 13825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 - uid: 38902 components: - type: Transform @@ -112240,18 +112280,6 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-3.5 parent: 2 - - uid: 13824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-1.5 - parent: 2 - - uid: 13825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-1.5 - parent: 2 - uid: 13826 components: - type: Transform @@ -112394,12 +112422,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,-55.5 parent: 2 - - uid: 13852 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-1.5 - parent: 2 - uid: 13853 components: - type: Transform @@ -124537,6 +124559,17 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,3.5 parent: 38436 + - uid: 40819 + components: + - type: Transform + pos: 9.5,-37.5 + parent: 2 + - uid: 40822 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,35.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 15403 @@ -124925,14 +124958,6 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,-42.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 15466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,35.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 38375 @@ -124947,6 +124972,14 @@ entities: - type: Transform pos: 17.5,39.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 15466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,36.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 15469 @@ -125172,12 +125205,6 @@ entities: rot: -1.5707963267948966 rad pos: -90.5,-9.5 parent: 2 - - uid: 15506 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-10.5 - parent: 2 - uid: 15507 components: - type: Transform @@ -125190,6 +125217,12 @@ entities: rot: -1.5707963267948966 rad pos: -67.5,-10.5 parent: 2 + - uid: 17749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-9.5 + parent: 2 - proto: ConvertAltarSpawner entities: - uid: 15509 @@ -125799,22 +125832,22 @@ entities: parent: 2 - proto: CrateEngineeringAMEJar entities: - - uid: 15581 + - uid: 15582 components: - type: Transform - pos: -71.5,-11.5 + pos: -72.5,-10.5 parent: 2 - proto: CrateEngineeringAMEShielding entities: - - uid: 15582 + - uid: 15583 components: - type: Transform - pos: -72.5,-10.5 + pos: -72.5,-9.5 parent: 2 - - uid: 15583 + - uid: 31942 components: - type: Transform - pos: -72.5,-9.5 + pos: -71.5,-9.5 parent: 2 - proto: CrateEngineeringSecure entities: @@ -125893,12 +125926,41 @@ entities: showEnts: False occludes: True ent: null +- proto: CrateEngineeringSingularityGenerator + entities: + - uid: 41150 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 - proto: CrateEngineeringTeslaCoil entities: - uid: 15589 components: - type: Transform - pos: -72.5,-12.5 + pos: -68.5,-12.5 + parent: 2 + - uid: 41146 + components: + - type: Transform + pos: -69.5,-12.5 + parent: 2 + - uid: 41147 + components: + - type: Transform + pos: -69.5,-11.5 + parent: 2 + - uid: 41148 + components: + - type: Transform + pos: -68.5,-11.5 + parent: 2 +- proto: CrateEngineeringTeslaGenerator + entities: + - uid: 31653 + components: + - type: Transform + pos: -72.5,-11.5 parent: 2 - proto: CrateFilledSpawner entities: @@ -137918,13 +137980,6 @@ entities: - type: Transform pos: 8.500152,-30.578497 parent: 2 - - uid: 17468 - components: - - type: Transform - pos: 20.453255,-40.408833 - parent: 2 - - type: Physics - canCollide: False - uid: 17469 components: - type: Transform @@ -140194,11 +140249,11 @@ entities: parent: 2 - proto: Emitter entities: - - uid: 17749 + - uid: 15506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-12.5 + rot: 1.5707963267948966 rad + pos: -66.5,-10.5 parent: 2 - uid: 17750 components: @@ -198675,6 +198730,13 @@ entities: - type: Transform pos: 46.5,-37.5 parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 1405 + components: + - type: Transform + pos: 20.69074,-40.37217 + parent: 2 - proto: OreBag entities: - uid: 25407 @@ -199401,6 +199463,57 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 17468 + components: + - type: Transform + pos: 20.438086,-40.342438 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True - uid: 25434 components: - type: Transform @@ -200101,6 +200214,32 @@ entities: rot: -1.5707963267948966 rad pos: -10.538131,-2.7982788 parent: 38436 + - uid: 40820 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 9.515558,-37.614605 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2- + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - proto: PaperBin10 entities: - uid: 25442 @@ -213954,15 +214093,15 @@ entities: - type: InsideEntityStorage - proto: RadiationCollectorNoTank entities: - - uid: 27261 + - uid: 27262 components: - type: Transform - pos: -68.5,-12.5 + pos: -67.5,-12.5 parent: 2 - - uid: 27262 + - uid: 41149 components: - type: Transform - pos: -67.5,-12.5 + pos: -66.5,-12.5 parent: 2 - proto: RadioHandheld entities: @@ -228011,6 +228150,11 @@ entities: parent: 2 - proto: SMESBasic entities: + - uid: 13824 + components: + - type: Transform + pos: -44.5,-1.5 + parent: 2 - uid: 29599 components: - type: Transform @@ -230674,15 +230818,15 @@ entities: parent: 2 - proto: SpawnPointTechnicalAssistant entities: - - uid: 30045 + - uid: 30046 components: - type: Transform - pos: -58.5,-7.5 + pos: -71.5,14.5 parent: 2 - - uid: 30046 + - uid: 40821 components: - type: Transform - pos: -71.5,14.5 + pos: -59.5,-2.5 parent: 2 - proto: SpawnPointWarden entities: @@ -231621,6 +231765,13 @@ entities: rot: 3.141592653589793 rad pos: -122.5,45.5 parent: 2 +- proto: StationAnchor + entities: + - uid: 30045 + components: + - type: Transform + pos: -58.5,-7.5 + parent: 2 - proto: StationGoalPaper entities: - uid: 1658 @@ -240972,10 +241123,11 @@ entities: parent: 2 - proto: TeslaGroundingRod entities: - - uid: 31653 + - uid: 15581 components: - type: Transform - pos: -72.5,-11.5 + rot: 1.5707963267948966 rad + pos: -71.5,-11.5 parent: 2 - uid: 31654 components: @@ -243219,6 +243371,11 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEngineering entities: + - uid: 27261 + components: + - type: Transform + pos: -62.5,-5.5 + parent: 2 - uid: 31940 components: - type: Transform @@ -243229,11 +243386,6 @@ entities: - type: Transform pos: -45.5,-14.5 parent: 2 - - uid: 31942 - components: - - type: Transform - pos: -71.5,-9.5 - parent: 2 - proto: VendingMachineTankDispenserEVA entities: - uid: 31943 diff --git a/Resources/Maps/corvax_glacier.yml b/Resources/Maps/corvax_glacier.yml index 8b768936e43..be7076069b7 100644 --- a/Resources/Maps/corvax_glacier.yml +++ b/Resources/Maps/corvax_glacier.yml @@ -4,6 +4,7 @@ meta: tilemap: 0: Space 63: FloorArcadeBlue2 + 127: FloorArcadeRed 59: FloorAsphalt 115: FloorAsteroidSand 116: FloorAsteroidSandDug @@ -48,6 +49,7 @@ tilemap: 55: FloorGrassLight 23: FloorGrayConcrete 31: FloorGrayConcreteMono + 130: FloorGrayConcreteOutside 123: FloorGrayConcreteOutsideMono 124: FloorGrayConcreteOutsideSmooth 30: FloorGrayConcreteSmooth @@ -67,6 +69,7 @@ tilemap: 68: FloorOldConcrete 39: FloorOldConcreteMono 61: FloorOldConcreteSmooth + 128: FloorPlanetDirt 108: FloorPlastic 53: FloorReinforced 126: FloorReinforcedHardened @@ -172,7 +175,6 @@ entities: - type: MetaData name: Glacier Concern - type: Transform - pos: -3.03125,-1.6227722 parent: 1 - type: MapGrid chunks: @@ -182,7 +184,7 @@ entities: version: 6 0,-1: ind: 0,-1 - tiles: IQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAEQAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAABQAAAAAAIwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAABQAAAAAAIwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAAABQAAAAAABQAAAAAABQAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAANgAAAAAANgAAAAAA + tiles: IQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAEQAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAABQAAAAAAIwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAABQAAAAAAIwAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAEQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGQAAAAAABQAAAAAABQAAAAAABQAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAANgAAAAAANgAAAAAA version: 6 -1,0: ind: -1,0 @@ -202,7 +204,7 @@ entities: version: 6 1,0: ind: 1,0 - tiles: NgAAAAAAgQAAAAAANgAAAAAAgQAAAAAAIQAAAAAAMAAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAXgAAAAAAAQAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAANgAAAAAAAQAAAAAANgAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAOAAAAAAAOAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAMAAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAXgAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAANQAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAXgAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAAQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAgQAAAAAAXgAAAAAABAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAAQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAABAAAAAAABAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEQAAAAAAEQAAAAAAMAAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAGwAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAXgAAAAAABAAAAAAA + tiles: NgAAAAAAgQAAAAAANgAAAAAAgQAAAAAAIQAAAAAAMAAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAXgAAAAAAAQAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAANgAAAAAAAQAAAAAANgAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAOAAAAAAAOAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAXgAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAXgAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAgQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAXgAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXgAAAAAABAAAAAAALAAAAAAALAAAAAAALAAAAAAAAQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXgAAAAAABAAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAEwAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAANQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAgQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAgQAAAAAAXgAAAAAABAAAAAAA version: 6 1,-1: ind: 1,-1 @@ -210,7 +212,7 @@ entities: version: 6 0,1: ind: 0,1 - tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMAAAAAAAMAAAAAAANQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAABQAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMAAAAAAAMAAAAAAANQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAAGwAAAAAABQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAAGwAAAAAABQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAAGwAAAAAABQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAAQAAAAAAIQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAACAAAAAAANAAAAAAANAAAAAAANAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeAAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAeAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAPwAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAPwAAAAAAgQAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAADwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAAAAwAAAAAA + tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMAAAAAAAMAAAAAAANQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAABQAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMAAAAAAAMAAAAAAANQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAAGwAAAAAABQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAAGwAAAAAABQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAIQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAABQAAAAAAGwAAAAAABQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAAQAAAAAAIQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAIQAAAAAACAAAAAAANAAAAAAANAAAAAAANAAAAAAACAAAAAAAIQAAAAAAgQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeAAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAgQAAAAAAHQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAeAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAHQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAHQAAAAAAgQAAAAAADwAAAAAADwAAAAAAOAAAAAAAOAAAAAAADwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAcgAAAAAAcgAAAAAA version: 6 -1,1: ind: -1,1 @@ -222,7 +224,7 @@ entities: version: 6 -1,-2: ind: -1,-2 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAALQAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAALgAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAALQAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAALQAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOwAAAAAAFwAAAAAALgAAAAAAFwAAAAAAOwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAALQAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAALgAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAALQAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAALQAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAAgQAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAOwAAAAAAFwAAAAAALgAAAAAAFwAAAAAAOwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAgQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAgQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAA version: 6 -2,-2: ind: -2,-2 @@ -234,35 +236,35 @@ entities: version: 6 -2,1: ind: -2,1 - tiles: AQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAOgAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACwAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACwAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACwAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAABQAAAAAAdgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYgAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAGwAAAAAAXQAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAXAAAAAAAGwAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAGwAAAAAASwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAGwAAAAAASwAAAAAAHAAAAAAAgQAAAAAALwAAAAAALwAAAAAAXgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAA + tiles: AQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAgQAAAAAAOgAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACwAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACwAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACwAAAAAAHgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAABQAAAAAAdgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYgAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAGwAAAAAAXQAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAXAAAAAAAGwAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAgQAAAAAAXAAAAAAAagAAAAAAagAAAAAAagAAAAAAXAAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAGwAAAAAASwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAASwAAAAAAHAAAAAAAgQAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: KAAAAAAABAAAAAAABAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAeAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAeAAAAAAAXgAAAAAAeAAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAKQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAXgAAAAAAKQAAAAAA + tiles: KAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAXgAAAAAAeAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAACAAAAAAACAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALwAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: BAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAZAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAQAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAQAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAQAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAQAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAA + tiles: BAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAQAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAQAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAMwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAHQAAAAAAMwAAAAAASQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAQAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAQAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAA version: 6 2,0: ind: 2,0 - tiles: XgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: XgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAHwAAAAAAHwAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAQAAAAAAAQAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 1,1: ind: 1,1 - tiles: IQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAIQAAAAAAIQAAAAAAQQAAAAAAQgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQgAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAACAAAAAAAIQAAAAAAgQAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAHAAAAAAAHAAAAAAABQAAAAAAHAAAAAAACAAAAAAAIQAAAAAANQAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAHAAAAAAACAAAAAAAIQAAAAAANQAAAAAAQgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQgAAAAAAgQAAAAAAGwAAAAAAGwAAAAAABQAAAAAABQAAAAAABQAAAAAAHAAAAAAAIQAAAAAAIQAAAAAANQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAJAAAAAAAJAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: IQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAIQAAAAAAIQAAAAAAQQAAAAAAQgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQgAAAAAAGwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAACAAAAAAAIQAAAAAAgQAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAHAAAAAAAHAAAAAAABQAAAAAAHAAAAAAACAAAAAAAIQAAAAAANQAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAQgAAAAAAQwAAAAAAQgAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAHAAAAAAACAAAAAAAIQAAAAAANQAAAAAAQgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQgAAAAAAgQAAAAAAGwAAAAAAGwAAAAAABQAAAAAABQAAAAAABQAAAAAAHAAAAAAAIQAAAAAAIQAAAAAANQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAABQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 2,1: ind: 2,1 - tiles: gQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABQAAAAAABQAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAVgAAAAAAVgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAABQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAALQAAAAAACQAAAAAAAQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAABwAAAAAAJAAAAAAAJAAAAAAAAQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAABQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAACQAAAAAAAQAAAAAACQAAAAAAgQAAAAAALQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALgAAAAAALQAAAAAALgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAAXgAAAAAABAAAAAAA + tiles: gQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAABQAAAAAABQAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAABwAAAAAACAAAAAAACAAAAAAAZQAAAAAAZQAAAAAAZQAAAAAAHAAAAAAAHAAAAAAAGwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAcgAAAAAAcgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAABQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAALQAAAAAACQAAAAAAAQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAABwAAAAAAJAAAAAAAJAAAAAAAAQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAABQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAACQAAAAAAAQAAAAAACQAAAAAAgQAAAAAALQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALgAAAAAALQAAAAAALgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAAXgAAAAAABAAAAAAA version: 6 1,2: ind: 1,2 - tiles: BgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAAJAAAAAAABgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAJAAAAAAABgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAAJAAAAAAABgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAJAAAAAAABgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAJAAAAAAAJAAAAAAABgAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAAAJAAAAAAABgAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: BgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAAJAAAAAAABgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAJAAAAAAABgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAAJAAAAAAABgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAJAAAAAAABgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABwAAAAAABwAAAAAABwAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAACgAAAAAACgAAAAAACgAAAAAACgAAAAAAJAAAAAAAJAAAAAAABgAAAAAAgQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABgAAAAAABgAAAAAAJAAAAAAABgAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 2,2: ind: 2,2 - tiles: JAAAAAAABwAAAAAABwAAAAAABwAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAJAAAAAAABwAAAAAABwAAAAAAAQAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACgAAAAAACgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAACgAAAAAACgAAAAAAAQAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAALwAAAAAACgAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: JAAAAAAABwAAAAAABwAAAAAABwAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAJAAAAAAABwAAAAAABwAAAAAAAQAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACgAAAAAACgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAACgAAAAAACgAAAAAAAQAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAALwAAAAAACgAAAAAAXgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 0,2: ind: 0,2 @@ -274,27 +276,27 @@ entities: version: 6 -2,2: ind: -2,2 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAANgAAAAAAWAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAALQAAAAAANgAAAAAANgAAAAAANgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAAWAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAMAAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAMAAAAAAAAQAAAAAAMAAAAAAAGgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAABgAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAABgAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUgAAAAAAUgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAANgAAAAAAWAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAALQAAAAAANgAAAAAANgAAAAAANgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAAWAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANgAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAMAAAAAAANgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAMAAAAAAAAQAAAAAAMAAAAAAAGgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAABgAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAAQAAAAAAGgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAABgAAAAAABgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAXgAAAAAAgQAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQQAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -2,3: ind: -2,3 - tiles: XgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAQQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAALQAAAAAAgQAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALgAAAAAAFQAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAFQAAAAAALQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAFQAAAAAAgQAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALQAAAAAAgQAAAAAAGgAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAQQAAAAAAQQAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAQQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAABgAAAAAAPgAAAAAAPgAAAAAABgAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAXgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAALQAAAAAAgQAAAAAAGgAAAAAAJAAAAAAAJAAAAAAAgQAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGgAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: QQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAQQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAAwAAAAAAAwAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAQQAAAAAAQQAAAAAABgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABgAAAAAABgAAAAAAAwAAAAAAAwAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAAOAAAAAAAOAAAAAAACAAAAAAAAQAAAAAASgAAAAAASgAAAAAASgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAAOAAAAAAAOAAAAAAACAAAAAAAgQAAAAAAVwAAAAAABgAAAAAABgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAAOAAAAAAAOAAAAAAACAAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAQQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: QQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAQQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAABgAAAAAABgAAAAAAcgAAAAAAcgAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAQQAAAAAAQQAAAAAABgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABgAAAAAABgAAAAAAcgAAAAAAcgAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAAOAAAAAAAOAAAAAAACAAAAAAAAQAAAAAASgAAAAAASgAAAAAASgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAUAAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAAOAAAAAAAOAAAAAAACAAAAAAAgQAAAAAAVwAAAAAABgAAAAAABgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAAOAAAAAAAOAAAAAAACAAAAAAAgQAAAAAAQQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAAQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAQQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAVwAAAAAAVwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABgAAAAAAgQAAAAAAVwAAAAAAVwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 0,3: ind: 0,3 - tiles: SgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAQQAAAAAAVwAAAAAABgAAAAAAVwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAALgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWgAAAAAALgAAAAAAOQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALgAAAAAASQAAAAAALgAAAAAALgAAAAAAgQAAAAAAQQAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAAOQAAAAAALgAAAAAAgQAAAAAAQQAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAALgAAAAAASQAAAAAALgAAAAAALgAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAOQAAAAAALgAAAAAALgAAAAAASQAAAAAASQAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAALgAAAAAAgQAAAAAAQQAAAAAALgAAAAAAgQAAAAAASgAAAAAALgAAAAAAXgAAAAAAXgAAAAAALgAAAAAASgAAAAAALgAAAAAASgAAAAAALgAAAAAASgAAAAAASgAAAAAALgAAAAAAQQAAAAAALgAAAAAAQQAAAAAAAQAAAAAAgQAAAAAASgAAAAAASgAAAAAALgAAAAAALgAAAAAASgAAAAAASgAAAAAALgAAAAAASgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAQQAAAAAALgAAAAAAgQAAAAAALgAAAAAASgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAASgAAAAAASgAAAAAALgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAgQAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALgAAAAAALgAAAAAAgQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAALgAAAAAAOQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: SgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAQQAAAAAAVwAAAAAABgAAAAAAVwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAALgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAgQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWgAAAAAALgAAAAAAOQAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALgAAAAAASQAAAAAALgAAAAAALgAAAAAAgQAAAAAAQQAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAAOQAAAAAALgAAAAAAgQAAAAAAQQAAAAAABgAAAAAABgAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAOQAAAAAAOQAAAAAALgAAAAAASQAAAAAALgAAAAAALgAAAAAAgQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAOQAAAAAALgAAAAAALgAAAAAASQAAAAAASQAAAAAALgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAALgAAAAAAgQAAAAAAQQAAAAAALgAAAAAAgQAAAAAASgAAAAAALgAAAAAAXgAAAAAAXgAAAAAALgAAAAAASgAAAAAALgAAAAAASgAAAAAALgAAAAAASgAAAAAASgAAAAAALgAAAAAAQQAAAAAALgAAAAAAQQAAAAAAAQAAAAAAgQAAAAAASgAAAAAASgAAAAAALgAAAAAALgAAAAAASgAAAAAASgAAAAAALgAAAAAASgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAQQAAAAAALgAAAAAAgQAAAAAALgAAAAAASgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAASgAAAAAASgAAAAAALgAAAAAASgAAAAAASgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAgQAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAgQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALgAAAAAALgAAAAAAgQAAAAAAHAAAAAAAGwAAAAAAGwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAgQAAAAAALgAAAAAAOQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,3: ind: 1,3 - tiles: gQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAAXgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAAgQAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAALgAAAAAASQAAAAAASQAAAAAALgAAAAAAgQAAAAAALgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAASQAAAAAAgQAAAAAALgAAAAAAXgAAAAAAWgAAAAAAgQAAAAAASQAAAAAALgAAAAAASQAAAAAASQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAAgQAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAALQAAAAAALgAAAAAALQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAALgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAALgAAAAAAgQAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAASgAAAAAAgQAAAAAASgAAAAAALgAAAAAASgAAAAAASgAAAAAAAQAAAAAALgAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAAXgAAAAAALgAAAAAASgAAAAAASgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAALgAAAAAALgAAAAAAOQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGwAAAAAASwAAAAAASwAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAASwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAALgAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAALgAAAAAALgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAALgAAAAAALgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAOQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAAXgAAAAAALgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAAgQAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAALgAAAAAASQAAAAAASQAAAAAALgAAAAAAgQAAAAAALgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAASQAAAAAAgQAAAAAALgAAAAAAXgAAAAAAWgAAAAAAgQAAAAAASQAAAAAALgAAAAAASQAAAAAASQAAAAAAgQAAAAAAgQAAAAAALQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAAgQAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAALQAAAAAALgAAAAAALQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAALgAAAAAASgAAAAAAgQAAAAAASgAAAAAASgAAAAAALgAAAAAAgQAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAASgAAAAAAgQAAAAAASgAAAAAALgAAAAAASgAAAAAASgAAAAAAAQAAAAAALgAAAAAASQAAAAAASQAAAAAALgAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAAXgAAAAAALgAAAAAASgAAAAAASgAAAAAALgAAAAAALgAAAAAALgAAAAAAgQAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAASQAAAAAALgAAAAAASQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAALgAAAAAALgAAAAAAOQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGwAAAAAASwAAAAAASwAAAAAAgQAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAASwAAAAAAGwAAAAAAGwAAAAAAgQAAAAAALgAAAAAASQAAAAAASQAAAAAAgQAAAAAAXgAAAAAALgAAAAAALgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAALgAAAAAALgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 2,3: ind: 2,3 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 @@ -314,7 +316,7 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAMwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAMwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -354,7 +356,7 @@ entities: version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYwAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYwAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYgAAAAAAYgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAHAAAAAAAHAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYwAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAYwAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYwAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -362,11 +364,11 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAFAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEgAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAEgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFAAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAFAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEgAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAUwAAAAAAUwAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAABAAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAgQAAAAAAUwAAAAAABAAAAAAABAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAUwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAFAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEgAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAEgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFAAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAFAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEgAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAUwAAAAAAUwAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAABAAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAgQAAAAAAUwAAAAAABAAAAAAABAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAOQAAAAAAOQAAAAAAgQAAAAAAUwAAAAAA version: 6 -4,1: ind: -4,1 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAKAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAKAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -4,0: ind: -4,0 @@ -374,31 +376,31 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAEwAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAAGAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAEQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAEwAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAEwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAEQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAEQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAJAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAOAAAAAAAOAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAawAAAAAAawAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAawAAAAAAawAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAawAAAAAAawAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAASwAAAAAASwAAAAAAZAAAAAAAAwAAAAAAKgAAAAAAAwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAASwAAAAAAZAAAAAAAGwAAAAAAAwAAAAAAKgAAAAAAAwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAZAAAAAAAGwAAAAAAZAAAAAAASwAAAAAAZAAAAAAASwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAZAAAAAAAGwAAAAAAZAAAAAAASwAAAAAAZAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAASwAAAAAAHAAAAAAAHAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -5,1: ind: -5,1 - tiles: gQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAgQAAAAAALgAAAAAALgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAA + tiles: ZAAAAAAAGwAAAAAAZAAAAAAASwAAAAAAZAAAAAAASwAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAASwAAAAAASwAAAAAASwAAAAAAZAAAAAAASwAAAAAAZAAAAAAAGwAAAAAAgQAAAAAAGwAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZAAAAAAASwAAAAAAZAAAAAAASwAAAAAAZAAAAAAAGwAAAAAASwAAAAAALgAAAAAALgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAA version: 6 -5,2: ind: -5,2 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAQwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAJgAAAAAAKAAAAAAATAAAAAAATAAAAAAAKAAAAAAAgQAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAKAAAAAAAJgAAAAAAKAAAAAAAKAAAAAAATAAAAAAATAAAAAAAKAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAJgAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAATAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAATAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAKAAAAAAAKAAAAAAAJgAAAAAAKAAAAAAAKAAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -5,3: ind: -5,3 @@ -406,27 +408,27 @@ entities: version: 6 -4,3: ind: -4,3 - tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAABAAAAAAAcgAAAAAAcgAAAAAAcwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAABAAAAAAAcgAAAAAAcgAAAAAAcwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAATAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAATAAAAAAATAAAAAAATAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAALAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAZQAAAAAAZQAAAAAA + tiles: BAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAABAAAAAAAcgAAAAAAcgAAAAAAcwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAABAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAATAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAATAAAAAAATAAAAAAATAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATAAAAAAAgQAAAAAAZQAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAALAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAZAAAAAAAZAAAAAAAgQAAAAAAZQAAAAAAZQAAAAAA version: 6 -3,3: ind: -3,3 - tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAAXgAAAAAAcgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAdAAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAABAAAAAAAcgAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAZQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: cgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAAXgAAAAAAcgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAcwAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAABAAAAAAAcgAAAAAAcwAAAAAAcwAAAAAAcgAAAAAAcgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAcgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAZQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAA version: 6 -6,2: ind: -6,2 - tiles: LwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: LwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -6,3: ind: -6,3 - tiles: GwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPAAAAAAAMwAAAAAAPAAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAPAAAAAAAMwAAAAAAPAAAAAAAgQAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAFwAAAAAAFwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -6,1: ind: -6,1 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXAAAAAAABQAAAAAAXAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABQAAAAAABQAAAAAAYgAAAAAABQAAAAAABQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXAAAAAAABQAAAAAAYgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABQAAAAAABQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAYgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXAAAAAAABQAAAAAAXAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABQAAAAAABQAAAAAAYgAAAAAABQAAAAAABQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXAAAAAAABQAAAAAAYgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABQAAAAAABQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -6,0: ind: -6,0 - tiles: gQAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAALwAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAKwAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAawAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAawAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAawAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAA + tiles: gQAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAACAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAALwAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAKwAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAGwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAASwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAZAAAAAAA version: 6 -6,-1: ind: -6,-1 @@ -438,7 +440,7 @@ entities: version: 6 -7,2: ind: -7,2 - tiles: CQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAWwAAAAAAWwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAASwAAAAAASwAAAAAAXgAAAAAAWwAAAAAAWwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAWwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAASwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAWwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAGwAAAAAABAAAAAAABAAAAAAABAAAAAAASwAAAAAAGwAAAAAAGwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAGwAAAAAABAAAAAAABAAAAAAABAAAAAAAGwAAAAAAGwAAAAAASwAAAAAAGwAAAAAA + tiles: CQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAMwAAAAAATwAAAAAATwAAAAAAMQAAAAAAMQAAAAAATwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAMwAAAAAATwAAAAAATwAAAAAAMQAAAAAAMQAAAAAATwAAAAAATwAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAMwAAAAAAMwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAMwAAAAAAMwAAAAAAgQAAAAAATwAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAggAAAAAAewAAAAAAggAAAAAAewAAAAAAewAAAAAAggAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAA version: 6 -5,4: ind: -5,4 @@ -450,15 +452,15 @@ entities: version: 6 -3,4: ind: -3,4 - tiles: ZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAZQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAKwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,4: ind: -6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 @@ -466,7 +468,7 @@ entities: version: 6 1,4: ind: 1,4 - tiles: OQAAAAAALgAAAAAAWgAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: OQAAAAAALgAAAAAAWgAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 @@ -474,7 +476,7 @@ entities: version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUwAAAAAAUwAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAANQAAAAAANQAAAAAANQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUwAAAAAAUwAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAUwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUwAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACwAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 -4,-4: ind: -4,-4 @@ -482,7 +484,7 @@ entities: version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAA version: 6 3,3: ind: 3,3 @@ -498,19 +500,19 @@ entities: version: 6 3,0: ind: 3,0 - tiles: XgAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXQAAAAAAgQAAAAAAXgAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAHwAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAIgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAKgAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAABQAAAAAABQAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXQAAAAAAgQAAAAAAXgAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAHwAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAIgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAXgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAgQAAAAAABQAAAAAABQAAAAAADgAAAAAADgAAAAAAgQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAADgAAAAAADgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAALAAAAAAAgQAAAAAALAAAAAAALAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAAKQAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAALQAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAALgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAHwAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAAeAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAANQAAAAAAgQAAAAAALAAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAASQAAAAAASQAAAAAAMwAAAAAAHQAAAAAAgQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAgQAAAAAACwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAASQAAAAAASQAAAAAASQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALQAAAAAALQAAAAAALgAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAALgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAFwAAAAAAHwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAABAAAAAAAHwAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAAeAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABQAAAAAAIwAAAAAAIwAAAAAAIQAAAAAAXQAAAAAAgQAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: XgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAMAAAAAAAFgAAAAAAMAAAAAAACAAAAAAAAQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAIQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAIQAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAKQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAA + tiles: XgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACAAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAMAAAAAAAFgAAAAAAMAAAAAAACAAAAAAAAQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAALAAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAIQAAAAAAGgAAAAAAgQAAAAAAgQAAAAAAXQAAAAAAXQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAMAAAAAAAIQAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAMwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAgQAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: gQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAaAAAAAAAFgAAAAAAFgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAHgAAAAAAFwAAAAAAHgAAAAAAHgAAAAAAHwAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAFwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFwAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAAQAAAAAACAAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAFwAAAAAAHgAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXgAAAAAAgQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAXgAAAAAAKAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAeAAAAAAAeAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAMAAAAAAAFgAAAAAAMAAAAAAACAAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACAAAAAAAgQAAAAAAIQAAAAAACAAAAAAAIQAAAAAA + tiles: gQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAaAAAAAAAFgAAAAAAFgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAHgAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAHgAAAAAAFwAAAAAAHgAAAAAAHgAAAAAAHwAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAACAAAAAAAFwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFwAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAeAAAAAAAAQAAAAAACAAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAFwAAAAAAHgAAAAAACAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAXgAAAAAAgQAAAAAABAAAAAAAeAAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAXgAAAAAAKAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAMAAAAAAAFgAAAAAAMAAAAAAACAAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAACAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -2,-5: ind: -2,-5 @@ -530,7 +532,7 @@ entities: version: 6 4,0: ind: 4,0 - tiles: XgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAJQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAgQAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAACAAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: CwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAHwAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAJQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAgQAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAACAAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAAgQAAAAAALQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAJAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAJAAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 4,1: ind: 4,1 @@ -546,11 +548,11 @@ entities: version: 6 4,-2: ind: 4,-2 - tiles: AQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAFQAAAAAAHgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHgAAAAAAFQAAAAAAFQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAFQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeAAAAAAABAAAAAAABAAAAAAAIQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAIQAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAegAAAAAAeQAAAAAAKAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAFQAAAAAAHgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHgAAAAAAFQAAAAAAFQAAAAAABAAAAAAABAAAAAAAXgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAFQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFQAAAAAAgQAAAAAABAAAAAAABAAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAABAAAAAAAXgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAGgAAAAAAGgAAAAAAgQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAeAAAAAAAXgAAAAAAXgAAAAAAIQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeAAAAAAABAAAAAAABAAAAAAAIQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAIQAAAAAAgQAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAegAAAAAAeQAAAAAAKAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeQAAAAAAeQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAACAAAAAAACAAAAAAACAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAaAAAAAAAAQAAAAAAaAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAgQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAaAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAACAAAAAAACAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAaQAAAAAAaQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATgAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAFQAAAAAAHgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHgAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAFgAAAAAAaAAAAAAAaAAAAAAAAQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAACAAAAAAACAAAAAAACAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAaAAAAAAAAQAAAAAAaAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAgQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAaAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAACAAAAAAACAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAaQAAAAAAaQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAgQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAQAAAAAAXAAAAAAAXAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAATgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAgQAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAgQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACAAAAAAACAAAAAAACAAAAAAAgQAAAAAAFQAAAAAAHgAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAHgAAAAAAFQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 5,-2: ind: 5,-2 @@ -606,7 +608,7 @@ entities: version: 6 -8,-1: ind: -8,-1 - tiles: SwAAAAAAYQAAAAAALgAAAAAALgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHAAAAAAAXAAAAAAALgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAALgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: SwAAAAAAYQAAAAAALgAAAAAALgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHAAAAAAAXAAAAAAALgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAALgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAALwAAAAAALwAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAALwAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAA version: 6 -9,-1: ind: -9,-1 @@ -626,11 +628,11 @@ entities: version: 6 -7,1: ind: -7,1 - tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAANQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAANQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAANQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAANQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAANQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAANQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAMAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA + tiles: MAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAgQAAAAAABAAAAAAABAAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAANQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAANQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAXgAAAAAAXgAAAAAANQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAANQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAANQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAANQAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAACwAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAACwAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAMAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAGAAAAAAAGAAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAACQAAAAAACQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -8,1: ind: -8,1 - tiles: XgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAANQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAANQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAWgAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA + tiles: XgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAANQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAANQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAANQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAewAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAHwAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAA version: 6 -9,1: ind: -9,1 @@ -638,7 +640,7 @@ entities: version: 6 -8,2: ind: -8,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAACQAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAA version: 6 -10,0: ind: -10,0 @@ -670,12 +672,16 @@ entities: version: 6 -7,3: ind: -7,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAASwAAAAAABAAAAAAABAAAAAAABAAAAAAAGwAAAAAASwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAGwAAAAAASwAAAAAAGwAAAAAASwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAGwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAGwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XgAAAAAAewAAAAAAfAAAAAAAggAAAAAAewAAAAAAggAAAAAAfAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAewAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAfAAAAAAAggAAAAAAewAAAAAAggAAAAAAggAAAAAAewAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAABAAAAAAAXgAAAAAAggAAAAAAewAAAAAAggAAAAAAfAAAAAAAggAAAAAAggAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-4: ind: 6,-4 tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 + -8,3: + ind: -8,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -778,8 +784,6 @@ entities: color: '#FFFFFFFF' id: Basalt1 decals: - 321: 52,-11 - 2435: -13.647749,-25.171358 3924: 42,-22 3925: 41,-14 6182: 39.777782,-7.2923713 @@ -803,6 +807,9 @@ entities: 29128: -94.96009,16.770412 29129: -67.1956,-13.9164715 30529: -34.6427,-62.973343 + 31330: 59.764824,-21.131258 + 32119: -88.21415,63.825356 + 33379: -12.902146,-22.210285 - node: angle: 0.20943951023931956 rad color: '#FFFFFFFF' @@ -813,8 +820,6 @@ entities: color: '#FFFFFFFF' id: Basalt2 decals: - 324: 49,-10 - 3926: 41,-11 5701: 34.960735,-23.018639 6193: 38.050076,-11.363987 6310: 29.766483,-23.225698 @@ -830,12 +835,13 @@ entities: 28390: 23.976006,64.930855 29109: -68.8935,13.925306 29414: -31.942032,59.32615 + 31332: 57.67503,-20.475008 + 31801: -54.293804,21.60294 + 33385: -14.082139,-26.23021 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 2437: -6.850873,-28.655731 - 2439: -7.022749,-21.358858 5700: 32.710735,-24.612389 6189: 28.57354,-14.64749 6192: 36.2532,-15.004061 @@ -853,6 +859,9 @@ entities: 15981: -15.721178,32.740307 28517: 73.35629,-32.648384 30031: -46.715824,-33.59028 + 32121: -84.52665,61.99723 + 32619: -55.553093,-15.995366 + 33377: -13.808396,-28.854116 - node: cleanable: True color: '#00000053' @@ -881,8 +890,6 @@ entities: color: '#FFFFFFFF' id: Basalt5 decals: - 322: 56,-13 - 2434: -13.944624,-27.280733 5881: 26.890923,2.248931 6190: 34.46778,-6.9842715 6308: 27.06739,-17.517187 @@ -898,7 +905,6 @@ entities: 14070: -54.104156,-24.17451 14077: -48.065598,-27.969013 14078: -56.02856,-23.065863 - 14079: -56.963486,-27.706488 14960: -58.909115,-0.4045701 28386: 33.0282,55.78034 29110: -66.11225,9.081556 @@ -912,6 +918,9 @@ entities: 29119: -87.43719,44.24224 29120: -85.61785,49.067436 29121: -108.55645,37.27164 + 31807: -53.512554,23.712315 + 32122: -85.667274,63.55973 + 33160: -99.34213,44.188927 - node: angle: 0.20943951023931956 rad color: '#FFFFFFFF' @@ -943,13 +952,15 @@ entities: 28388: 29.835136,64.899605 28393: 40.474194,42.910473 28514: 69.43442,-31.97651 - 29253: -88.15627,57.845592 29413: -27.676407,62.897476 + 32618: -55.881218,-15.823491 + 33161: -97.24838,46.157677 + 33382: -7.160264,-25.608002 + 33384: -12.925889,-25.808334 - node: color: '#FFFFFFFF' id: Basalt7 decals: - 325: 47,-11 5886: 48.07759,-0.75342464 6185: 42.264065,-4.166409 6312: 38.202423,-15.62797 @@ -976,11 +987,17 @@ entities: 29135: -83.92732,12.554609 29136: -98.819305,34.240494 29137: -113.05597,36.64971 - 29254: -90.07815,56.095592 29412: -26.988907,66.2256 - 29415: -26.020157,58.76365 29904: -98.158325,32.931156 30506: -40.163486,-68.366554 + 31331: 55.209335,-20.568758 + 32120: -86.636024,67.044106 + 32617: -55.709343,-16.16724 + 32620: -56.021843,-15.932866 + 32621: -55.631218,-16.714115 + 33162: -95.85776,49.0483 + 33378: -13.980271,-24.59612 + 33383: -6.050889,-25.214584 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' @@ -1012,8 +1029,6 @@ entities: id: Basalt8 decals: 323: 47,-21 - 2436: -13.757124,-22.483858 - 2440: -6.569624,-23.343233 5883: 30.176807,14.207142 5887: 43.28874,7.065907 6188: 29.359093,-12.612459 @@ -1028,11 +1043,11 @@ entities: 15984: -4.041353,30.012596 28392: 29.680779,67.00093 29990: -43.498444,-43.36462 + 33381: -6.019639,-28.467377 - node: color: '#FFFFFFFF' id: Basalt9 decals: - 2438: -6.022749,-25.890106 5884: 34.04143,12.231113 6184: 40.725803,1.3069011 6187: 30.881855,-4.4037833 @@ -1043,6 +1058,8 @@ entities: 29905: -101.84421,34.524906 29906: -66.90545,6.092314 30512: -31.802155,-74.37527 + 33163: -102.85776,42.14205 + 33380: -5.9646463,-22.272785 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' @@ -1094,6 +1111,9 @@ entities: 13699: -40,-19 15564: 59,-37 15565: 60,-37 + 31682: 67,-34 + 31683: 67,-33 + 31781: 66,-53 - node: cleanable: True color: '#FFFFFFFF' @@ -1250,32 +1270,12 @@ entities: decals: 1509: 4,4 1510: 5,4 - - node: - color: '#9200829B' - id: BrickLineOverlayN - decals: - 16443: -81,14 - 16444: -80,14 - node: color: '#9C2020FF' id: BrickLineOverlayN decals: 1504: -1,4 1505: 0,4 - - node: - color: '#9200829B' - id: BrickLineOverlayS - decals: - 16445: -81,12 - 16446: -80,12 - 16447: -79,12 - - node: - color: '#9200829B' - id: BrickLineOverlayW - decals: - 16440: -81,14 - 16441: -81,13 - 16442: -81,12 - node: color: '#9A54BFFF' id: BrickLineOverlayW @@ -1334,16 +1334,9 @@ entities: 2763: 1,29 2780: 6,27 2781: 6,25 - 2797: 15,26 2941: 10,-2 2942: 14,-9 2943: 17,-7 - 4895: 29,10 - 4896: 23,10 - 4908: 29,10 - 4915: 25,4 - 4916: 24,7 - 4917: 28,7 5014: -5,-14 5397: 17,1 5398: 19,1 @@ -1384,12 +1377,8 @@ entities: 14213: -111,27 14214: -108,27 14215: -103,26 - 15350: 65,-36 - 15351: 67,-36 15475: 66,-29 15501: 64,-28 - 15514: 61,-36 - 15517: 63,-36 16084: -108,17 16243: -49,14 16244: -45,14 @@ -1412,6 +1401,11 @@ entities: 28651: 16,37 28707: -24,19 28999: -27,13 + 31194: 48,-18 + 31195: 44,-11 + 31196: 52,-11 + 31197: 56,-12 + 31564: 64,-31 - node: color: '#96A4EBFF' id: BrickTileDarkCornerNe @@ -1461,6 +1455,7 @@ entities: 27788: 98,-4 27801: 99,-11 30568: -15,6 + 31199: 55,-10 - node: color: '#96A4EBFF' id: BrickTileDarkCornerNw @@ -1504,12 +1499,13 @@ entities: 15239: 70,-49 15298: 69,-48 15345: 54,-37 - 15348: 64,-37 23241: -31,8 25563: 77,-48 25575: 76,-47 27755: 96,-9 27786: 96,-4 + 31198: 53,-10 + 31617: 65,-30 - node: color: '#96A4EBFF' id: BrickTileDarkCornerSe @@ -1554,6 +1550,8 @@ entities: 27761: 99,-10 27791: 98,-7 30572: -15,5 + 31200: 55,-14 + 31646: 65,-34 - node: color: '#96A4EBFF' id: BrickTileDarkCornerSw @@ -1591,6 +1589,8 @@ entities: 27758: 96,-10 27780: 96,-7 27796: 96,-12 + 31188: 45,-17 + 31596: 61,-36 - node: color: '#FFFFFFFF' id: BrickTileDarkEndE @@ -1642,7 +1642,6 @@ entities: 76: 58,1 441: 40,22 1038: 35,24 - 1270: 26,14 1632: 19,25 1654: 26,1 1655: 23,1 @@ -1672,10 +1671,11 @@ entities: 14615: -112,7 14619: -104,16 15396: 57,-31 - 15520: 64,-31 15524: 60,-30 27792: 97,-5 28706: -25,15 + 31152: 45,-10 + 31163: 51,-10 - node: color: '#FFFFFFFF' id: BrickTileDarkEndS @@ -1699,7 +1699,6 @@ entities: 2798: 14,24 2945: 13,0 2946: -9,0 - 4922: 24,6 5394: 44,-25 5487: -14,18 5488: -10,18 @@ -1711,7 +1710,6 @@ entities: 14616: -112,6 14620: -104,14 15397: 57,-34 - 15521: 64,-32 15525: 60,-31 27793: 97,-6 28705: -25,14 @@ -1737,7 +1735,6 @@ entities: 2748: 1,34 2749: 4,34 2768: 3,29 - 4925: 24,4 5012: -11,-14 5013: -8,-14 5435: 24,-2 @@ -1814,7 +1811,6 @@ entities: 2874: 12,27 2892: 11,26 4156: 8,-34 - 4907: 26,10 4992: 13,-9 4993: 12,-8 4995: 11,-8 @@ -1837,15 +1833,12 @@ entities: 15317: 62,-38 15322: 69,-47 15342: 57,-37 - 15352: 65,-37 - 15355: 67,-37 15361: 70,-40 15381: 64,-45 15401: 57,-33 15420: 58,-31 15431: 57,-32 15472: 66,-31 - 15491: 62,-30 16081: -113,23 16158: -113,23 16269: 0,-52 @@ -1854,6 +1847,16 @@ entities: 25625: 84,-45 25673: 49,-24 27764: 97,-9 + 31164: 45,-11 + 31165: 51,-11 + 31172: 46,-11 + 31173: 50,-11 + 31209: 55,-12 + 31606: 67,-37 + 31616: 63,-34 + 31620: 66,-30 + 31679: 62,-29 + 33376: 51,-17 - node: color: '#96A4EBFF' id: BrickTileDarkInnerNw @@ -1914,7 +1917,6 @@ entities: 4129: 7,-16 4131: 7,-16 4155: 4,-34 - 4906: 26,10 4985: 9,-8 4997: 12,-8 6340: 15,-9 @@ -1940,14 +1942,11 @@ entities: 15316: 62,-38 15343: 56,-37 15346: 54,-38 - 15349: 65,-37 - 15354: 67,-37 15385: 68,-45 15400: 57,-33 15428: 57,-32 15434: 56,-31 15471: 66,-31 - 15490: 62,-30 16077: -106,23 16159: -106,23 23245: -31,4 @@ -1956,6 +1955,16 @@ entities: 25619: 75,-46 25635: 82,-45 27763: 97,-9 + 31170: 45,-11 + 31171: 51,-11 + 31174: 46,-11 + 31175: 50,-11 + 31208: 53,-11 + 31619: 66,-30 + 31622: 65,-31 + 31647: 65,-34 + 31671: 62,-35 + 31678: 62,-29 - node: color: '#96A4EBFF' id: BrickTileDarkInnerSe @@ -2006,7 +2015,6 @@ entities: 2876: 12,25 2894: 11,26 4158: 8,-36 - 4920: 24,8 4991: 13,-9 6334: 17,-10 6688: 18,1 @@ -2032,8 +2040,6 @@ entities: 15398: 57,-33 15421: 58,-34 15429: 57,-32 - 15473: 66,-34 - 15488: 62,-33 16082: -113,17 16157: -113,17 16270: 0,-47 @@ -2042,6 +2048,12 @@ entities: 25624: 84,-45 25672: 49,-24 27782: 97,-7 + 31166: 51,-11 + 31167: 48,-17 + 31210: 55,-12 + 31618: 67,-30 + 31669: 66,-35 + 31680: 62,-31 - node: color: '#96A4EBFF' id: BrickTileDarkInnerSw @@ -2093,7 +2105,6 @@ entities: 2875: 8,25 2893: 9,26 4157: 4,-36 - 4921: 28,8 6331: 15,-9 6332: 17,-10 6376: -2,-41 @@ -2121,8 +2132,6 @@ entities: 15399: 57,-33 15422: 56,-34 15430: 57,-32 - 15474: 66,-34 - 15489: 62,-33 16083: -106,17 16160: -106,17 16268: 4,-47 @@ -2131,6 +2140,13 @@ entities: 27781: 97,-7 27799: 99,-12 27803: 96,-11 + 31168: 45,-11 + 31169: 48,-17 + 31211: 53,-11 + 31593: 64,-36 + 31621: 65,-31 + 31670: 62,-35 + 31681: 62,-31 - node: color: '#96A4EBFF' id: BrickTileDarkLineE @@ -2185,8 +2201,6 @@ entities: 1010: 35,20 1011: 35,19 1012: 35,19 - 1271: 26,13 - 1272: 26,12 1293: -8,-4 1302: -4,-4 1401: -13,-12 @@ -2257,10 +2271,6 @@ entities: 4137: 3,-35 4146: 3,-36 4147: 3,-34 - 4901: 26,11 - 4910: 23,10 - 4911: 28,9 - 4912: 28,8 5396: 44,-24 5424: -15,14 5426: 19,12 @@ -2369,12 +2379,9 @@ entities: 15413: 55,-33 15414: 55,-32 15415: 55,-31 - 15461: 65,-34 15462: 65,-33 15463: 65,-32 15464: 65,-31 - 15476: 61,-33 - 15477: 61,-32 15478: 61,-31 15479: 61,-31 15480: 61,-30 @@ -2412,6 +2419,22 @@ entities: 27790: 98,-6 27800: 99,-12 27804: 95,-11 + 31142: 17,26 + 31158: 51,-16 + 31159: 51,-15 + 31160: 51,-14 + 31161: 51,-13 + 31162: 51,-12 + 31205: 55,-13 + 31206: 55,-11 + 31610: 67,-35 + 31611: 67,-34 + 31612: 67,-33 + 31613: 67,-32 + 31614: 67,-31 + 31652: 61,-35 + 31673: 67,-36 + 31674: 61,-29 - node: color: '#96A4EBFF' id: BrickTileDarkLineN @@ -2520,12 +2543,6 @@ entities: 4143: 6,-37 4144: 7,-37 4145: 8,-37 - 4902: 24,10 - 4903: 25,10 - 4904: 27,10 - 4905: 28,10 - 4918: 24,7 - 4919: 28,7 4986: 10,-7 5423: -14,13 5428: 18,13 @@ -2614,7 +2631,6 @@ entities: 15340: 59,-37 15341: 58,-37 15344: 55,-37 - 15353: 66,-37 15356: 68,-37 15357: 69,-37 15382: 65,-45 @@ -2623,8 +2639,6 @@ entities: 15409: 56,-35 15410: 57,-35 15411: 58,-35 - 15469: 66,-35 - 15487: 62,-34 20904: -110,8 20905: -109,8 20983: -101,5 @@ -2659,6 +2673,20 @@ entities: 27794: 97,-11 27795: 96,-11 27802: 99,-13 + 31135: 14,29 + 31149: 47,-11 + 31150: 48,-11 + 31151: 49,-11 + 31207: 54,-10 + 31346: 23,10 + 31600: 64,-34 + 31615: 67,-30 + 31653: 62,-36 + 31654: 63,-36 + 31655: 64,-36 + 31656: 65,-36 + 31658: 66,-36 + 31677: 62,-32 - node: color: '#96A4EBFF' id: BrickTileDarkLineS @@ -2694,9 +2722,6 @@ entities: 982: 30,26 983: 30,26 1195: 11,30 - 1273: 27,10 - 1274: 26,10 - 1275: 25,10 1291: -6,-2 1298: -5,-5 1652: 21,-2 @@ -2737,8 +2762,6 @@ entities: 2287: -10,-19 2447: -10,-31 2475: -10,-33 - 2739: 24,10 - 2740: 28,10 2782: 10,30 2783: 11,30 2784: 12,30 @@ -2764,7 +2787,6 @@ entities: 4152: 7,-33 4153: 8,-33 4154: 8,-33 - 4923: 24,7 4943: 12,-10 4971: 9,-10 4972: 10,-10 @@ -2856,7 +2878,6 @@ entities: 15303: 66,-46 15304: 65,-46 15305: 64,-46 - 15315: 62,-37 15332: 55,-45 15333: 56,-45 15334: 56,-45 @@ -2870,7 +2891,6 @@ entities: 15436: 57,-30 15437: 58,-30 15470: 66,-30 - 15481: 62,-29 20899: -110,12 20900: -109,12 23246: -31,4 @@ -2904,6 +2924,21 @@ entities: 27766: 94,-11 27797: 97,-12 27798: 98,-12 + 31134: 14,29 + 31190: 46,-17 + 31191: 47,-17 + 31192: 49,-17 + 31193: 50,-17 + 31204: 54,-14 + 31347: 23,9 + 31570: 62,-37 + 31594: 63,-36 + 31595: 62,-36 + 31648: 64,-34 + 31649: 63,-34 + 31651: 62,-34 + 31676: 62,-28 + 33375: 51,-17 - node: color: '#96A4EBFF' id: BrickTileDarkLineW @@ -2950,8 +2985,6 @@ entities: 1002: 35,22 1003: 35,23 1004: 35,23 - 1268: 26,12 - 1269: 26,13 1395: -12,-10 1397: -14,-11 1398: -14,-12 @@ -2989,7 +3022,6 @@ entities: 2014: 22,5 2015: 22,6 2016: 22,7 - 2061: 22,9 2084: 23,-17 2091: -16,7 2094: -16,4 @@ -3012,7 +3044,6 @@ entities: 2577: -11,-48 2578: -11,-47 2661: -8,-46 - 2741: 22,10 2742: 22,11 2852: 13,25 2853: 13,26 @@ -3021,11 +3052,6 @@ entities: 4138: 9,-35 4139: 9,-34 4140: 9,-36 - 4900: 26,11 - 4909: 29,10 - 4913: 24,8 - 4914: 24,9 - 4924: 25,4 4944: 14,-9 4969: 8,-9 5395: 44,-24 @@ -3149,9 +3175,6 @@ entities: 15468: 67,-31 15482: 63,-30 15483: 63,-31 - 15484: 63,-32 - 15485: 63,-32 - 15486: 63,-33 15560: 68,-43 15561: 68,-42 15562: 68,-40 @@ -3188,6 +3211,23 @@ entities: 27785: 96,-5 30576: -16,5 30577: -16,6 + 31140: 15,26 + 31153: 45,-12 + 31154: 45,-13 + 31155: 45,-14 + 31156: 45,-15 + 31157: 45,-16 + 31202: 53,-13 + 31203: 53,-12 + 31352: 22,9 + 31353: 22,10 + 31592: 64,-37 + 31597: 61,-35 + 31599: 61,-34 + 31604: 65,-33 + 31605: 65,-32 + 31662: 67,-35 + 31675: 63,-29 - node: color: '#FFFFFFFF' id: BrickTileSteelBox @@ -3286,7 +3326,6 @@ entities: 2527: -2,-36 2652: -2,-41 2750: 5,33 - 2825: 13,29 5430: 20,14 7263: -10,12 12312: -29,54 @@ -3301,7 +3340,10 @@ entities: 23169: -50,0 23177: -47,8 25334: -1,43 - 28915: -88,58 + 31176: 50,-9 + 31602: 63,-37 + 31603: 63,-37 + 31695: -18,60 - node: color: '#00C9DAFF' id: BrickTileSteelCornerNw @@ -3386,7 +3428,10 @@ entities: 25568: 72,-46 25638: 81,-44 25660: 87,-43 - 28914: -90,58 + 31177: 46,-9 + 31607: 61,-37 + 31608: 61,-37 + 31696: -19,60 - node: color: '#00C9DAFF' id: BrickTileSteelCornerSe @@ -3485,7 +3530,9 @@ entities: 25589: 79,-47 25590: 76,-48 25640: 85,-46 - 28918: -88,55 + 31181: 49,-10 + 31657: 66,-35 + 31699: -18,57 - node: color: '#00FFFFFF' id: BrickTileSteelCornerSw @@ -3569,7 +3616,7 @@ entities: 25596: 72,-48 25639: 81,-46 25664: 87,-45 - 28919: -90,55 + 31183: 47,-10 - node: color: '#00FFFFFF' id: BrickTileSteelEndE @@ -3622,7 +3669,6 @@ entities: decals: 2775: 5,30 6721: -7,-49 - 15455: 66,-34 28638: 20,-42 30179: -30,-10 30182: -29,-10 @@ -3648,6 +3694,7 @@ entities: 13385: -6,67 23171: -51,7 23172: -51,0 + 31664: 62,-35 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNe @@ -3722,13 +3769,11 @@ entities: 2728: -2,-49 2730: -2,-42 2743: 22,11 - 2818: 15,25 2840: 13,25 2841: 12,29 2844: 8,29 4128: 8,-16 4134: 12,-16 - 4899: 22,10 5413: 18,-1 5431: 19,14 5432: 20,13 @@ -3747,7 +3792,6 @@ entities: 13798: -40,-17 13815: -40,-17 14675: -22,1 - 15178: 61,-37 15208: 63,-46 15388: 70,-47 15500: 63,-28 @@ -3761,6 +3805,8 @@ entities: 25349: -1,37 30060: -5,48 30574: -16,6 + 31139: 17,25 + 31349: 22,10 - node: color: '#00C9DAFF' id: BrickTileSteelInnerNw @@ -3838,7 +3884,6 @@ entities: 2668: -7,-45 2736: -1,-42 2737: -1,-49 - 2817: 15,25 2842: 10,29 2843: 8,29 2850: 7,25 @@ -3863,7 +3908,6 @@ entities: 14670: -24,-1 14673: -23,0 14674: -22,1 - 15179: 63,-37 15497: 61,-30 16286: 0,-49 20910: -108,8 @@ -3877,6 +3921,8 @@ entities: 25662: 89,-43 25668: 87,-44 30063: -2,48 + 31138: 15,25 + 31672: 66,-35 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSe @@ -3962,7 +4008,6 @@ entities: 2545: -7,-36 2669: -2,-49 2731: -2,-42 - 2744: 22,10 2762: 1,30 2779: 2,31 4136: 2,-18 @@ -3989,8 +4034,6 @@ entities: 15201: 70,-47 15273: 68,-50 15503: 63,-28 - 15507: 63,-32 - 15512: 61,-35 17141: -103,23 20906: -111,12 23195: -48,-1 @@ -4007,6 +4050,11 @@ entities: 28473: 6,47 30067: -5,51 30575: -16,5 + 31133: 13,29 + 31184: 46,-9 + 31185: 49,-9 + 31348: 22,9 + 31568: 63,-31 - node: color: '#00FFFFFF' id: BrickTileSteelInnerSw @@ -4105,7 +4153,6 @@ entities: 15196: 67,-48 15272: 68,-50 15496: 61,-31 - 15513: 63,-35 16284: 0,-49 20907: -108,12 23194: -48,-1 @@ -4120,6 +4167,8 @@ entities: 25665: 87,-44 28472: 6,47 30066: -2,51 + 31186: 47,-9 + 31187: 50,-9 - node: color: '#00C9DAFF' id: BrickTileSteelLineE @@ -4294,7 +4343,6 @@ entities: 1907: -16,-4 1908: -16,-3 2048: 22,8 - 2049: 22,9 2050: 22,7 2051: 22,6 2052: 22,5 @@ -4394,7 +4442,6 @@ entities: 13788: -40,-14 13789: -40,-15 13790: -40,-16 - 15181: 63,-37 15182: 63,-38 15183: 63,-39 15184: 63,-40 @@ -4409,9 +4456,6 @@ entities: 15458: 66,-33 15504: 63,-29 15505: 63,-30 - 15508: 63,-33 - 15509: 63,-34 - 15510: 63,-35 15526: 60,-31 15527: 60,-30 16271: 0,-51 @@ -4449,6 +4493,11 @@ entities: 30132: -30,-8 30133: -30,-9 30147: -29,-9 + 31137: 14,29 + 31567: 63,-32 + 31650: 66,-34 + 31697: -18,59 + 31698: -18,58 - node: color: '#00C9DAFF' id: BrickTileSteelLineN @@ -4586,6 +4635,12 @@ entities: 11457: -50,17 11458: -46,17 11459: -42,17 + - node: + zIndex: -1 + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 31574: 62,-37 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -4669,8 +4724,6 @@ entities: 2764: 1,29 2765: 1,29 2766: 5,29 - 2812: 16,25 - 2813: 17,25 2814: 18,25 2824: 9,29 4130: 7,-16 @@ -4737,7 +4790,6 @@ entities: 14669: -25,-1 14676: -21,1 14677: -20,1 - 15180: 62,-37 15202: 69,-46 15203: 68,-46 15204: 67,-46 @@ -4745,8 +4797,6 @@ entities: 15206: 65,-46 15207: 64,-46 15405: 57,-31 - 15516: 61,-36 - 15518: 63,-36 16279: 1,-52 16289: 1,-47 16290: 2,-47 @@ -4778,9 +4828,19 @@ entities: 28710: -7,34 28711: -8,34 28712: -9,34 - 28916: -89,58 30061: -4,48 30062: -3,48 + 31132: 13,29 + 31146: 15,26 + 31147: 16,26 + 31148: 17,26 + 31178: 47,-9 + 31179: 48,-9 + 31180: 49,-9 + 31665: 63,-35 + 31666: 64,-35 + 31667: 65,-35 + 31704: -19,56 - node: color: '#00C9DAFF' id: BrickTileSteelLineS @@ -5037,7 +5097,6 @@ entities: 2794: 10,30 2795: 11,30 2796: 12,30 - 2819: 15,26 2830: 8,24 2831: 9,24 2832: 10,24 @@ -5121,9 +5180,6 @@ entities: 15195: 66,-48 15295: 62,-48 15402: 57,-34 - 15511: 62,-35 - 15515: 61,-36 - 15519: 63,-36 16275: 1,-47 16276: 2,-47 16277: 3,-47 @@ -5150,13 +5206,18 @@ entities: 25643: 84,-46 25669: 88,-45 25670: 89,-45 - 25671: 52,-21 28713: -9,36 28714: -8,36 28715: -7,36 - 28917: -89,55 30068: -4,51 30069: -3,51 + 31143: 15,26 + 31144: 16,26 + 31145: 17,26 + 31182: 48,-10 + 31659: 65,-35 + 31661: 64,-35 + 31663: 63,-35 - node: color: '#00C9DAFF' id: BrickTileSteelLineW @@ -5412,7 +5473,6 @@ entities: 2828: 7,26 2836: 14,24 2837: 14,25 - 4897: 23,10 5403: 19,1 5404: 19,-1 5409: 18,0 @@ -5473,7 +5533,6 @@ entities: 15174: 61,-40 15175: 61,-39 15176: 61,-38 - 15177: 61,-37 15190: 61,-46 15191: 61,-47 15197: 67,-49 @@ -5483,15 +5542,9 @@ entities: 15432: 56,-32 15459: 66,-33 15460: 66,-32 - 15492: 61,-35 - 15493: 61,-34 - 15494: 61,-32 - 15495: 61,-33 15498: 61,-29 15499: 61,-28 15502: 64,-28 - 15522: 64,-32 - 15523: 64,-31 16278: 4,-48 16282: 0,-51 16283: 0,-50 @@ -5528,6 +5581,15 @@ entities: 30146: -30,-9 30570: -15,6 30573: -15,5 + 31136: 14,29 + 31350: 23,9 + 31351: 23,10 + 31565: 64,-31 + 31566: 61,-32 + 31668: 66,-34 + 31701: -19,59 + 31702: -19,58 + 31703: -19,57 - node: color: '#0093AAFF' id: BrickTileWhiteBox @@ -5553,6 +5615,7 @@ entities: 28480: -26,49 28482: -5,45 28484: -20,54 + 31700: -19,56 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -5592,11 +5655,6 @@ entities: decals: 11755: -53,13 13355: 5,40 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteCornerNe - decals: - 2800: 18,29 - node: color: '#8BDA8EFF' id: BrickTileWhiteCornerNe @@ -5678,22 +5736,12 @@ entities: 8080: 14,2 8095: -8,2 8101: -12,2 - - node: - color: '#52B4E9BF' - id: BrickTileWhiteCornerNw - decals: - 13603: -19,55 - node: color: '#52B4E9FF' id: BrickTileWhiteCornerNw decals: 11753: -57,13 13346: 1,38 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteCornerNw - decals: - 2809: 15,29 - node: color: '#9C2020FF' id: BrickTileWhiteCornerNw @@ -5789,11 +5837,6 @@ entities: id: BrickTileWhiteCornerSe decals: 13341: 5,36 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteCornerSe - decals: - 2802: 18,27 - node: color: '#8BDA8EFF' id: BrickTileWhiteCornerSe @@ -5993,6 +6036,11 @@ entities: 8119: -14,-1 8123: -10,1 8128: -7,2 + - node: + color: '#52B4E9BF' + id: BrickTileWhiteInnerNe + decals: + 31761: -19,55 - node: color: '#52B4E9C0' id: BrickTileWhiteInnerNe @@ -6217,11 +6265,6 @@ entities: 12775: -15,46 12781: -13,50 12784: -13,47 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteInnerSe - decals: - 2806: 15,27 - node: color: '#8BC9DAFF' id: BrickTileWhiteInnerSe @@ -6434,11 +6477,6 @@ entities: 13352: 5,37 13353: 5,38 13354: 5,39 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteLineE - decals: - 2801: 18,28 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineE @@ -6719,13 +6757,6 @@ entities: id: BrickTileWhiteLineN decals: 10222: 9,-51 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteLineN - decals: - 2805: 15,26 - 2810: 16,29 - 2811: 17,29 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineN @@ -6968,6 +6999,11 @@ entities: 8089: -4,-1 8121: -14,-1 8129: -7,3 + - node: + color: '#52B4E9BF' + id: BrickTileWhiteLineS + decals: + 31760: -19,56 - node: color: '#52B4E9C0' id: BrickTileWhiteLineS @@ -6990,12 +7026,6 @@ entities: id: BrickTileWhiteLineS decals: 10223: 9,-51 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteLineS - decals: - 2803: 17,27 - 2804: 16,27 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineS @@ -7233,6 +7263,11 @@ entities: decals: 30915: -19,47 30916: -19,50 + - node: + color: '#52B4E9BF' + id: BrickTileWhiteLineW + decals: + 31759: -19,55 - node: color: '#52B4E9C0' id: BrickTileWhiteLineW @@ -7252,12 +7287,6 @@ entities: 13350: 1,37 13358: 4,40 13359: 4,39 - - node: - color: '#8BC9DA7F' - id: BrickTileWhiteLineW - decals: - 2807: 15,27 - 2808: 15,28 - node: color: '#8BC9DAFF' id: BrickTileWhiteLineW @@ -7482,42 +7511,11 @@ entities: 20916: -118,7 20917: -118,8 20920: -118,9 - - node: - color: '#FFFFFFFF' - id: BushDThree - decals: - 2374: -12.933113,-22.037167 - - node: - color: '#FFFFFFFF' - id: Busha1 - decals: - 2371: -14.120613,-28.880917 - 2431: -6.007456,-28.901064 - - node: - color: '#FFFFFFFF' - id: Busha2 - decals: - 2432: -6.0387077,-21.057314 - node: color: '#FFFFFFFF' id: Bushb1 decals: 1235: 13.865885,30.73169 - - node: - color: '#FFFFFFFF' - id: Bushb2 - decals: - 2372: -13.886238,-21.365292 - - node: - color: '#FFFFFFFF' - id: Bushd1 - decals: - 2375: -14.026863,-24.849667 - - node: - color: '#FFFFFFFF' - id: Bushd4 - decals: - 2373: -13.198738,-28.099667 - node: color: '#FFFFFFFF' id: Bushe1 @@ -7528,38 +7526,16 @@ entities: id: Bushe4 decals: 1236: 16.44401,31.04419 - - node: - color: '#FFFFFFFF' - id: Bushf1 - decals: - 12267: 31.272913,26.027061 - - node: - color: '#FFFFFFFF' - id: Bushg1 - decals: - 2433: -6.991832,-24.072939 - - node: - color: '#FFFFFFFF' - id: Bushg2 - decals: - 12276: 24.841505,26.077997 - node: color: '#FFFFFFFF' id: Bushh2 decals: 1243: 14.891549,30.513954 - - node: - color: '#FFFFFFFF' - id: Bushi1 - decals: - 1222: 20.786366,39.366394 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 1221: 19.755116,38.19452 1238: 14.50651,31.059814 - 2430: -6.7887077,-20.697939 - node: color: '#FFFFFFFF' id: Bushi3 @@ -7569,65 +7545,30 @@ entities: color: '#FFFFFFFF' id: Bushj3 decals: - 12270: 33.006325,26.08283 13262: -0.8127477,66.4827 - node: color: '#FFFFFFFF' id: Bushk1 decals: - 2378: -13.854988,-22.396542 - 2424: -6.7418327,-21.197939 13260: -0.9846227,65.4827 - node: color: '#FFFFFFFF' id: Bushk2 decals: - 2425: -6.929331,-28.182314 - 12269: 31.146948,26.08283 13261: 1.7185023,67.24832 - - node: - color: '#FFFFFFFF' - id: Bushl3 - decals: - 1223: 20.80199,38.50702 - 2379: -12.933113,-25.630917 - node: color: '#FFFFFFFF' id: Bushl4 decals: 1242: 15.875923,30.49833 - 1983: 0.16232824,-13.743811 - 2428: -6.398082,-25.744814 13263: 2.8903773,66.8577 - node: + angle: 3.141592653589793 rad color: '#FFFFFFFF' - id: Bushm1 - decals: - 1220: 21.692616,37.60077 - 2376: -13.964363,-27.099667 - 2429: -6.085582,-24.604189 - - node: - color: '#FFFFFFFF' - id: Bushm2 - decals: - 2427: -6.851207,-22.604189 - - node: - color: '#FFFFFFFF' - id: Bushm3 - decals: - 1984: 3.5217032,-13.743811 - 2377: -12.870613,-24.115292 - - node: - color: '#FFFFFFFF' - id: Bushm4 + id: Caution decals: - 2380: -13.854988,-23.412167 - 2426: -6.023081,-26.822939 - - node: - color: '#FFFFFFFF' - id: Bushn1 - decals: - 1595: 23.11906,26.049686 + 31912: -10,46 + 31913: -6,46 - node: color: '#2031447F' id: CheckerNESW @@ -7642,6 +7583,50 @@ entities: 1538: 8,-14 1539: 8,-15 1540: 9,-14 + - node: + color: '#3D210B7F' + id: CheckerNESW + decals: + 31371: 27,8 + 31372: 27,9 + 31373: 26,9 + 31374: 26,8 + 31375: 25,8 + 31376: 24,8 + 31377: 24,9 + 31378: 27,9 + 31379: 27,8 + 31380: 26,8 + 31381: 26,9 + 31382: 25,8 + 31383: 24,8 + 31384: 24,9 + 31385: 24,10 + 31386: 24,11 + 31387: 25,11 + 31388: 25,10 + 31389: 26,11 + 31390: 26,10 + 31391: 27,11 + 31392: 27,10 + 31393: 28,11 + 31394: 28,10 + 31395: 28,9 + 31396: 28,8 + 31397: 25,9 + 31398: 25,9 + 31399: 28,8 + 31400: 28,9 + 31401: 28,10 + 31402: 27,10 + 31403: 25,10 + 31404: 26,10 + 31405: 24,10 + 31406: 24,11 + 31407: 25,11 + 31408: 26,11 + 31409: 27,11 + 31410: 28,11 - node: color: '#96A4EB33' id: CheckerNESW @@ -7669,10 +7654,15 @@ entities: color: '#D69949BF' id: CheckerNESW decals: - 15451: 66,-34 15452: 66,-33 15453: 66,-32 15454: 66,-31 + 31637: 66,-34 + 31639: 64,-35 + 31641: 66,-35 + 31642: 62,-35 + 31643: 63,-35 + 31644: 65,-35 - node: color: '#DABC8B7F' id: CheckerNESW @@ -7737,6 +7727,18 @@ entities: 13784: -39,-15 13785: -39,-16 13786: -39,-13 + - node: + color: '#37789B7F' + id: CheckerNWSE + decals: + 31684: -18,57 + 31685: -18,58 + 31686: -18,59 + 31687: -18,60 + 31688: -19,60 + 31689: -19,59 + 31690: -19,58 + 31691: -19,57 - node: color: '#96DAFF7F' id: CheckerNWSE @@ -8236,8 +8238,7 @@ entities: 14694: 11,39 14695: 11,38 28593: 23,-55 - 28920: -87,58 - 28921: -87,57 + 32591: -13,7 - node: color: '#639137FF' id: DeliveryGreyscale @@ -8292,6 +8293,15 @@ entities: 13506: -5,59 13507: -5,58 13508: -5,57 + - node: + zIndex: -1 + color: '#404144FF' + id: DiagonalCheckerAOverlay + decals: + 32568: -106,42 + 32569: -107,42 + 32570: -107,43 + 32571: -106,43 - node: cleanable: True color: '#43990996' @@ -8340,6 +8350,19 @@ entities: 8674: 27,60 8675: 28,61 8676: 29,61 + - node: + zIndex: -1 + color: '#808080FF' + id: DiagonalCheckerAOverlay + decals: + 31212: 46,-9 + 31213: 47,-9 + 31214: 48,-9 + 31215: 49,-9 + 31216: 50,-9 + 31217: 49,-10 + 31218: 48,-10 + 31219: 47,-10 - node: color: '#9C2020C0' id: DiagonalCheckerAOverlay @@ -8433,6 +8456,15 @@ entities: 25616: 83,-45 25617: 84,-45 25634: 82,-45 + - node: + zIndex: -1 + color: '#D69949B4' + id: DiagonalCheckerBOverlay + decals: + 32572: -107,42 + 32573: -107,43 + 32574: -106,43 + 32575: -106,42 - node: color: '#D69949BF' id: DiagonalCheckerBOverlay @@ -8531,41 +8563,6 @@ entities: 28925: -45,25 28926: -45,24 28927: -41,25 - - node: - color: '#FFFFFF87' - id: Dirt - decals: - 22397: -97,51 - 22398: -97,52 - 22399: -97,50 - 22400: -98,47 - 22401: -97,48 - 22402: -98,49 - 22403: -99,49 - 22404: -99,47 - 22405: -97,46 - 22406: -99,46 - 22407: -100,46 - 22408: -104,45 - 22409: -105,45 - 22410: -100,50 - 22411: -101,51 - 22412: -100,52 - 22413: -99,50 - 22414: -101,51 - 22415: -98,44 - 22416: -99,43 - 22417: -98,42 - 22418: -101,43 - 22419: -102,43 - - node: - color: '#FFFFFF99' - id: Dirt - decals: - 26575: -55,-29 - 26576: -56,-30 - 26577: -56,-32 - 26578: -57,-33 - node: cleanable: True color: '#FFFFFFC0' @@ -8625,8 +8622,6 @@ entities: 15853: -88.92827,10.677181 15854: -87.90155,9.910746 15855: -87.30032,9.970209 - 22475: -102,46 - 22476: -102,47 - node: cleanable: True color: '#FFFFFFFF' @@ -8662,49 +8657,6 @@ entities: 12190: -37,14 13425: -11,38 13435: -6,42 - 17042: -70,-6 - 17043: -66,-5 - 17044: -66,-4 - 17045: -66,-4 - 17046: -67,-5 - 17047: -68,-6 - 17048: -68,-6 - 17049: -68,-3 - 17050: -69,-2 - 17051: -70,-2 - 17052: -70,-3 - 17053: -70,-4 - 17054: -66,-4 - 17055: -69,-5 - 17056: -70,-5 - 17057: -68,-5 - 17058: -66,-4 - 17059: -66,-4 - 17060: -65,-3 - 17061: -67,-3 - 17062: -68,-3 - 17063: -70,-4 - 17064: -71,-3 - 17065: -71,-3 - 17066: -67,-5 - 17067: -67,-5 - 17068: -67,-5 - 17069: -67,-5 - 17070: -66,-6 - 17071: -65,-5 - 17072: -70,-4 - 17073: -71,-4 - 17074: -71,-5 - 17075: -69,-2 - 17079: -69,-9 - 17080: -68,-8 - 17081: -67,-8 - 17082: -67,-9 - 17083: -67,-9 - 17084: -69,-8 - 17085: -68,-7 - 17086: -68,-9 - 17087: -68,-8 24498: 14,54 24499: 13,53 24500: 13,52 @@ -8872,15 +8824,9 @@ entities: 28572: 74,-28 28573: 74,-28 28574: 68,-30 - 29251: -89,57 - 29252: -89,56 29401: -23,59 29402: -22,60 29403: -21,60 - 29404: -19,59 - 29405: -18,57 - 29406: -18,59 - 29409: -18,60 30742: 99,-46 30743: 97,-44 30744: 97,-45 @@ -8920,25 +8866,6 @@ entities: decals: 28949: -31,26 28950: -34,30 - - node: - color: '#FFFFFF99' - id: DirtHeavy - decals: - 26536: -57,-29 - 26561: -57,-32 - 26562: -57,-32 - 26563: -56,-32 - 26564: -56,-33 - 26565: -57,-32 - 26566: -58,-31 - 26567: -58,-30 - 26568: -57,-30 - 26569: -57,-29 - 26570: -56,-29 - 26571: -55,-29 - 26572: -55,-30 - 26573: -56,-30 - 26574: -56,-30 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -8951,37 +8878,6 @@ entities: 396: 56,2 397: 57,-3 398: 53,4 - 22420: -97,49 - 22421: -97,49 - 22422: -97,50 - 22423: -97,51 - 22424: -98,51 - 22425: -97,48 - 22426: -97,48 - 22427: -98,46 - 22428: -97,47 - 22429: -100,45 - 22430: -104,45 - 22431: -100,45 - 22432: -99,48 - 22433: -100,50 - 22434: -99,49 - 22435: -99,48 - 22436: -102,50 - 22437: -102,51 - 22438: -100,51 - 22439: -100,52 - 22440: -99,50 - 22441: -99,52 - 22446: -103,50 - 22447: -104,50 - 22450: -103,51 - 22451: -100,49 - 22470: -98,42 - 22471: -98,42 - 22472: -98,44 - 22473: -102,43 - 22474: -101,43 - node: cleanable: True color: '#FFFFFFFF' @@ -8996,8 +8892,6 @@ entities: 13424: -10,38 13434: -7,43 13436: -10,40 - 17038: -71,-3 - 17039: -65,-3 24517: 11,57 24543: 18,61 24639: 24,54 @@ -9010,12 +8904,8 @@ entities: 28537: 72,-35 28538: 71,-29 28936: -38,24 - 29259: -90,58 - 29260: -90,56 29393: -21,59 29394: -21,59 - 29400: -19,60 - 29407: -19,58 30612: 99,-41 30613: 99,-46 30614: 96,-46 @@ -9028,6 +8918,7 @@ entities: 30645: 100,-40 30646: 96,-46 30654: 97,-46 + 31066: -118,-2 - node: cleanable: True color: '#3E0000FF' @@ -9042,21 +8933,6 @@ entities: 28955: -41,26 28957: -45,27 28958: -46,27 - - node: - color: '#FFFFFF99' - id: DirtHeavyMonotile - decals: - 26537: -57,-31 - 26538: -58,-32 - 26539: -58,-32 - 26540: -56,-32 - 26541: -57,-33 - 26542: -56,-33 - 26543: -56,-32 - 26544: -57,-32 - 26545: -57,-31 - 26546: -56,-30 - 26547: -55,-30 - node: color: '#FFFFFFFF' id: DirtHeavyMonotile @@ -9068,30 +8944,6 @@ entities: 392: 54,6 399: 61,4 400: 59,0 - 22442: -99,50 - 22443: -100,52 - 22444: -101,52 - 22445: -102,50 - 22448: -104,50 - 22449: -101,52 - 22452: -100,49 - 22453: -104,45 - 22454: -100,45 - 22455: -99,47 - 22456: -98,46 - 22457: -97,47 - 22458: -98,48 - 22459: -98,48 - 22460: -96,49 - 22461: -97,49 - 22462: -97,50 - 22463: -97,52 - 22464: -97,52 - 22465: -98,43 - 22466: -99,42 - 22467: -98,42 - 22468: -98,43 - 22469: -98,44 - node: cleanable: True color: '#FFFFFFFF' @@ -9106,9 +8958,6 @@ entities: 7083: -24,-35 13640: -25,22 13641: -25,24 - 17037: -67,-6 - 17041: -70,-6 - 17076: -69,-8 24518: 17,57 24519: 17,57 24544: 12,64 @@ -9123,9 +8972,6 @@ entities: 28539: 74,-28 28540: 74,-28 28935: -38,24 - 29255: -89,57 - 29256: -89,56 - 29391: -18,58 29392: -23,59 30620: 97,-41 30621: 99,-40 @@ -9147,23 +8993,6 @@ entities: 28941: -41,26 28951: -34,30 28952: -32,28 - - node: - color: '#FFFFFF99' - id: DirtLight - decals: - 26548: -57,-30 - 26549: -58,-31 - 26550: -58,-30 - 26551: -58,-29 - 26552: -57,-29 - 26553: -56,-29 - 26554: -55,-30 - 26555: -55,-29 - 26556: -57,-29 - 26557: -57,-30 - 26558: -57,-31 - 26559: -57,-32 - 26560: -57,-33 - node: color: '#FFFFFFFF' id: DirtLight @@ -9184,8 +9013,6 @@ entities: decals: 7080: -24,-39 13426: -6,39 - 17040: -68,-2 - 17078: -67,-8 24541: 12,61 24542: 14,61 28529: 71,-33 @@ -9194,10 +9021,6 @@ entities: 28534: 70,-35 28535: 75,-35 28536: 75,-33 - 29397: -18,59 - 29398: -18,59 - 29399: -18,58 - 29410: -25,59 30643: 99,-40 30647: 96,-43 30648: 97,-43 @@ -9206,6 +9029,9 @@ entities: 30651: 100,-39 30652: 100,-39 30653: 101,-46 + 31063: -117,-2 + 31064: -116,-1 + 31065: -116,-1 - node: cleanable: True color: '#3E0000FF' @@ -9235,16 +9061,12 @@ entities: 13440: -7,38 13441: -5,39 13442: -7,39 - 17077: -67,-9 24520: 18,56 24521: 21,56 28532: 74,-30 28533: 75,-31 - 29257: -88,58 - 29258: -90,57 29395: -22,60 29396: -23,60 - 29408: -19,57 30632: 98,-46 30633: 98,-46 30634: 97,-44 @@ -9256,12 +9078,6 @@ entities: 30640: 100,-41 30641: 100,-40 30642: 99,-40 - - node: - color: '#FFFFFFFF' - id: FlowersBROne - decals: - 1598: 23.978436,25.987186 - 1980: 0.95920324,-13.900061 - node: cleanable: True color: '#00000053' @@ -9272,88 +9088,33 @@ entities: color: '#FFFFFFFF' id: FlowersBRThree decals: - 2360: -13.261238,-27.334042 - 2418: -6.773082,-25.041689 13201: -0.984601,65.984856 28725: 33.943054,-27.124073 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: - 1217: 20.89574,37.366394 - 1979: 0.25607824,-13.900061 - 1981: 3.3029532,-13.931311 - 12272: 32.693825,25.973455 28726: 33.70868,-27.061573 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 2361: -14.089363,-25.990292 13202: -0.04710102,66.96923 - node: color: '#FFFFFFFF' id: Flowersbr2 decals: - 1982: 4.0685782,-13.993811 - 2369: -13.183113,-29.162167 - 2419: -6.710581,-27.510439 28727: 34.130554,-27.124073 - - node: - color: '#FFFFFFFF' - id: Flowersbr3 - decals: - 2362: -12.886238,-21.599667 - 2417: -6.163707,-22.854189 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 2420: -6.898082,-25.885439 - 2423: -6.944956,-29.401064 - 12271: 31.490698,25.95783 - 12275: 24.95088,25.952997 13187: -0.97251916,64.701225 - - node: - color: '#FFFFFFFF' - id: Flowerspv2 - decals: - 2422: -5.851206,-27.822939 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 1219: 20.02074,38.50702 - 2363: -13.729988,-27.115292 - 2368: -13.089363,-23.255917 - 2421: -6.898082,-22.666689 13186: 1.2613184,66.87639 - - node: - color: '#FFFFFFFF' - id: Flowersy1 - decals: - 2355: -13.479988,-22.396542 - 2416: -6.6637077,-23.724104 - - node: - color: '#FFFFFFFF' - id: Flowersy2 - decals: - 1218: 21.52074,38.56952 - 1596: 23.415936,25.987186 - 2413: -6.6793327,-22.067854 - 12273: 32.131325,26.004705 - - node: - color: '#FFFFFFFF' - id: Flowersy3 - decals: - 2354: -12.995613,-28.255917 - 2414: -6.476207,-28.552229 - - node: - color: '#FFFFFFFF' - id: Flowersy4 - decals: - 2356: -13.558113,-24.224667 - 2415: -6.491832,-26.614729 - node: color: '#9C2020BF' id: FullTileOverlayGreyscale @@ -9365,21 +9126,6 @@ entities: 14466: -108,-8 14468: -107,-8 14474: -106,-7 - - node: - color: '#FFFFFFFF' - id: Grassa1 - decals: - 2338: -14.308113,-24.802792 - 2340: -14.433113,-26.209042 - 2387: -5.807288,-24.891243 - 2389: -5.994787,-29.141243 - - node: - cleanable: True - angle: 0.12217304763960307 rad - color: '#FFFFFFFF' - id: Grassa1 - decals: - 12802: -3.1571026,48.97093 - node: color: '#00000057' id: Grassa2 @@ -9387,17 +9133,6 @@ entities: 15832: -92.786415,11.118416 15833: -89.8232,11.435562 15834: -91.18092,11.742796 - - node: - color: '#FFFFFFFF' - id: Grassa2 - decals: - 2381: -6.057289,-20.922493 - 2384: -5.807289,-22.266243 - - node: - color: '#FFFFFFFF' - id: Grassa3 - decals: - 2370: -14.026863,-29.052792 - node: color: '#00000057' id: Grassa4 @@ -9410,158 +9145,63 @@ entities: 15827: -90.130424,10.543589 15828: -90.46738,9.106523 15829: -92.330536,9.007415 - - node: - color: '#FFFFFFFF' - id: Grassa4 - decals: - 2332: -14.058113,-29.115292 - 2342: -14.261238,-27.849667 - - node: - cleanable: True - angle: 0.12217304763960307 rad - color: '#FFFFFFFF' - id: Grassa4 - decals: - 12803: -2.9549017,49.943016 - node: color: '#FFFFFFFF' id: Grassa5 decals: - 2333: -14.058113,-20.927792 - 2336: -14.370613,-23.255917 - 2386: -5.697913,-24.109993 13197: -0.34397602,67.37548 - node: color: '#FFFFFFFF' id: Grassb1 decals: - 2344: -13.183113,-29.271542 - 2394: -5.854162,-27.813118 13207: -1.000226,63.672356 - - node: - color: '#FFFFFFFF' - id: Grassb2 - decals: - 2335: -14.276863,-22.365292 - 2337: -14.323738,-23.927792 - 2341: -14.339363,-26.943417 - 2388: -5.713538,-25.719368 - 2393: -5.838537,-27.250618 - node: color: '#00000057' id: Grassb3 decals: 15820: -92.41973,10.533678 15821: -92.55848,9.621884 - - node: - color: '#FFFFFFFF' - id: Grassb3 - decals: - 2334: -14.323738,-21.646542 - 2382: -6.854164,-20.609993 - 2392: -5.838538,-26.500618 - - node: - color: '#FFFFFFFF' - id: Grassb4 - decals: - 2339: -14.292488,-25.568417 - 2383: -5.791664,-21.547493 - 2385: -5.744788,-23.156868 - 2390: -6.635412,-29.328743 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 2343: -13.995613,-28.521542 - 2345: -13.214363,-20.755917 - 2391: -5.666662,-28.344368 13200: -1.390851,66.734856 13206: 3.265399,67.03173 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 1974: -0.025171757,-13.853186 - 2359: -13.589363,-27.209042 - 2407: -6.866832,-27.614729 - 2411: -6.554332,-25.927229 13205: 1.827899,67.15673 15704: -12.033923,30.710043 15705: -4.429102,25.033993 15706: 0.015723467,24.023092 15707: -15.481215,26.225601 15841: -91.62712,12.823074 - - node: - color: '#FFFFFFFF' - id: Grassc2 - decals: - 2358: -12.979988,-21.318417 - 2409: -6.2574577,-22.677229 - 2412: -6.726207,-29.052229 - - node: - color: '#FFFFFFFF' - id: Grassc3 - decals: - 2410: -6.929332,-24.349104 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 1975: 0.97482824,-13.853186 - 1977: 3.3654532,-13.868811 - 2357: -13.761238,-23.474667 - 2367: -13.276863,-25.177792 - 2408: -6.7574577,-21.770979 13204: -1.047101,65.359856 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1213: 20.20824,37.335144 - 2349: -13.120613,-21.099667 - 2352: -13.714363,-24.834042 - 2364: -13.167488,-23.005917 - 2366: -13.058113,-26.771542 - 2397: -6.257457,-28.333479 - 2399: -6.4449577,-22.614729 - 2406: -6.648082,-26.239729 13181: -0.98214746,65.95242 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1215: 19.83324,39.00702 1239: 15.31901,30.98169 - 1597: 23.790936,26.018436 - 1976: 0.08420324,-13.853186 - 2347: -14.011238,-26.349667 - 2350: -13.511238,-27.771542 - 2400: -7.101207,-28.427229 - 2404: -6.757457,-24.474104 - 12274: 24.85713,25.984247 13184: 0.885803,66.924515 13203: -1.093976,66.53173 15835: -92.945206,12.922182 28518: 68.71567,-33.304634 28520: 75.52817,-30.367134 - - node: - cleanable: True - angle: 0.12217304763960307 rad - color: '#FFFFFFFF' - id: Grassd2 - decals: - 12800: -4.052563,49.01905 - 12801: -4.0044203,49.875645 - node: color: '#FFFFFFFF' id: Grassd3 decals: 1240: 15.88151,31.07544 - 2348: -13.964363,-21.521542 - 2395: -6.882457,-21.032162 - 2398: -6.6949577,-21.692854 - 2401: -6.6480827,-23.724104 - 2405: -6.773082,-25.427229 13185: 1.7331209,66.914894 15836: -90.07118,12.872627 28519: 75.32504,-29.75776 @@ -9574,26 +9214,12 @@ entities: color: '#FFFFFFFF' id: Grasse1 decals: - 1216: 21.48949,39.03827 - 2353: -13.526863,-22.005917 - 2403: -6.9605827,-22.849104 13182: 2.609324,66.99189 13183: -0.98214746,64.95146 - - node: - color: '#FFFFFFFF' - id: Grasse2 - decals: - 1978: 3.8029532,-13.868811 - 2351: -13.886238,-23.365292 - 2365: -13.214363,-25.990292 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1214: 22.11449,37.72577 - 2346: -13.136238,-28.990292 - 2396: -6.788706,-29.130354 - 2402: -6.648082,-27.474104 13180: -0.914747,64.11412 28521: 75.05942,-29.47651 - node: @@ -9826,7 +9452,6 @@ entities: 6610: 28,-49 12368: 16,9 12375: 15,11 - 23660: -104,45 27471: 11,-4 27807: 91,-20 27844: 95,-18 @@ -9854,7 +9479,6 @@ entities: 2678: 25,-8 6611: 26,-49 12367: 16,9 - 23663: -100,45 27470: 13,-4 27819: 96,-20 - node: @@ -9897,7 +9521,6 @@ entities: 7789: -4,14 9419: -15,-43 12365: 18,9 - 23662: -104,49 27842: 95,-19 - node: color: '#96A4EBFF' @@ -9932,7 +9555,6 @@ entities: 6607: 33,-47 9418: -15,-43 12378: 16,11 - 23661: -100,49 27818: 96,-14 27831: 94,-19 - node: @@ -10032,10 +9654,6 @@ entities: 12362: 18,8 12370: 16,10 13639: -23,23 - 23650: -104,46 - 23651: -104,47 - 23652: -104,47 - 23653: -104,48 25674: 49,-1 27467: 11,-3 27808: 91,-19 @@ -10128,9 +9746,6 @@ entities: 9436: -24,-41 12363: 17,9 12364: 18,9 - 23647: -103,45 - 23648: -102,45 - 23649: -101,45 27468: 12,-4 27805: 93,-20 27806: 92,-20 @@ -10201,9 +9816,6 @@ entities: 12356: 16,4 12357: 17,4 12376: 15,11 - 23654: -103,49 - 23655: -102,49 - 23656: -101,49 27820: 93,-19 28498: 71,-34 28499: 72,-34 @@ -10314,9 +9926,6 @@ entities: 12354: 15,5 12366: 19,9 12369: 16,10 - 23657: -100,48 - 23658: -100,47 - 23659: -100,46 27469: 13,-3 27813: 96,-19 27814: 96,-18 @@ -10378,12 +9987,6 @@ entities: decals: 13362: 3,40 13363: 3,39 - - node: - color: '#646464FF' - id: HalfTileOverlayGreyscale90 - decals: - 28939: -91,58 - 28940: -91,56 - node: color: '#FFFFFFFF' id: LoadingArea @@ -10398,6 +10001,50 @@ entities: id: LoadingArea decals: 1530: -11,-15 + - node: + color: '#00000033' + id: MarkupSquare + decals: + 31455: 24,15 + 31456: 24,14 + 31457: 24,13 + 31458: 24,12 + 31459: 25,12 + 31460: 25,13 + 31461: 25,14 + 31462: 25,15 + 31464: 26,15 + 31466: 26,14 + 31468: 26,13 + 31469: 26,12 + 31470: 27,12 + 31471: 27,13 + 31472: 27,14 + 31473: 27,15 + 31474: 28,15 + 31475: 28,14 + 31476: 28,13 + 31477: 28,12 + 31489: 27,7 + 31490: 26,7 + 31491: 25,7 + 31492: 24,7 + 31494: 28,7 + 31495: 28,6 + 31496: 27,6 + 31497: 26,6 + 31498: 25,6 + 31499: 24,6 + 31500: 24,5 + 31501: 25,5 + 31504: 26,5 + 31505: 27,5 + 31506: 28,5 + 31507: 28,4 + 31508: 27,4 + 31509: 26,4 + 31510: 25,4 + 31511: 24,4 - node: color: '#8BDA8E66' id: MiniTileCheckerAOverlay @@ -10424,6 +10071,12 @@ entities: id: MiniTileCornerOverlaySW decals: 13338: -9,41 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkBox + decals: + 32473: -106,45 + 32474: -104,43 - node: color: '#D4D4D4FF' id: MiniTileDarkCornerNe @@ -10444,6 +10097,7 @@ entities: 16262: 3,-48 17144: -100,22 28659: -33,16 + 32409: -105,44 - node: color: '#D4D4D4FF' id: MiniTileDarkCornerNw @@ -10463,6 +10117,8 @@ entities: 16261: 1,-48 17143: -102,22 28658: -35,16 + 32393: -109,43 + 32401: -108,44 - node: color: '#D4D4D4FF' id: MiniTileDarkCornerSe @@ -10481,6 +10137,7 @@ entities: 16264: 3,-49 17148: -100,25 28660: -33,14 + 32422: -105,41 - node: color: '#D4D4D4FF' id: MiniTileDarkCornerSw @@ -10499,6 +10156,7 @@ entities: 15651: 72,-42 17146: -102,25 28670: -35,14 + 32389: -109,41 - node: cleanable: True color: '#FFFFFFFF' @@ -10536,6 +10194,9 @@ entities: 13118: -18,39 14191: -102,-7 28671: -35,14 + 32455: -106,44 + 32457: -105,43 + 32472: -108,41 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw @@ -10549,6 +10210,9 @@ entities: 14192: -100,-7 15654: 72,-40 28663: -33,14 + 32453: -108,43 + 32454: -106,44 + 32468: -105,41 - node: color: '#D4D4D4FF' id: MiniTileDarkInnerSe @@ -10570,6 +10234,8 @@ entities: 16266: 1,-49 16430: 76,-38 28662: -35,16 + 32456: -105,43 + 32470: -108,44 - node: color: '#D4D4D4FF' id: MiniTileDarkInnerSw @@ -10587,6 +10253,7 @@ entities: 14194: -100,-5 15655: 72,-40 28661: -33,16 + 32469: -105,44 - node: color: '#D4D4D4FF' id: MiniTileDarkLineE @@ -10650,6 +10317,9 @@ entities: 20974: -102,11 20975: -102,12 28669: -33,15 + 31554: 23,11 + 31555: 23,8 + 32450: -105,42 - node: color: '#D4D4D4FF' id: MiniTileDarkLineN @@ -10711,6 +10381,7 @@ entities: 16263: 2,-48 17145: -101,22 28655: -34,16 + 32451: -107,44 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10760,6 +10431,9 @@ entities: 16265: 2,-49 17159: -101,25 28656: -34,14 + 32443: -107,41 + 32445: -106,41 + 32471: -108,41 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10828,6 +10502,9 @@ entities: 20967: -100,11 20968: -100,12 28657: -35,15 + 31552: 23,8 + 31553: 23,11 + 32452: -109,42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -10935,17 +10612,6 @@ entities: id: MiniTileLineOverlayW decals: 13329: -9,44 - - node: - color: '#DA8B8BB4' - id: MiniTileOverlay - decals: - 16928: -69,-8 - 16929: -69,-9 - 16930: -68,-9 - 16931: -68,-8 - 16932: -68,-7 - 16933: -67,-8 - 16934: -67,-9 - node: color: '#9C2020FF' id: MiniTileSteelBox @@ -11008,6 +10674,8 @@ entities: 9768: 61,-25 20785: -113,11 20786: -113,10 + 32460: -108,42 + 32461: -108,43 - node: color: '#FFFFFFFF' id: MiniTileSteelLineN @@ -11028,6 +10696,8 @@ entities: 20788: -115,9 20789: -114,9 20790: -113,9 + 32458: -107,41 + 32459: -106,41 - node: color: '#FFFFFFFF' id: MiniTileSteelLineS @@ -11040,6 +10710,8 @@ entities: 9773: 61,-23 9774: 63,-23 20774: -117,10 + 32462: -107,44 + 32463: -106,44 - node: color: '#FFFFFFFF' id: MiniTileSteelLineW @@ -11059,6 +10731,8 @@ entities: 9771: 63,-25 20777: -118,10 20778: -118,11 + 32464: -105,43 + 32465: -105,42 - node: angle: 6.283185307179586 rad color: '#52B4E9FF' @@ -11796,6 +11470,16 @@ entities: 13573: -18,52 13574: -18,53 30919: -18,49 + - node: + color: '#777575FF' + id: MonoOverlay + decals: + 32481: -109,44 + 32483: -110,43 + 32484: -110,44 + 32485: -109,45 + 32486: -108,45 + 32590: -110,42 - node: cleanable: True color: '#43990996' @@ -11905,7 +11589,6 @@ entities: id: OldConcreteTrimInnerNw decals: 2474: -9,-30 - 23667: -100,45 28497: 74,-34 - node: color: '#D3D3D3FF' @@ -12002,7 +11685,6 @@ entities: 8975: -2,-57 8986: -10,-53 9425: -23,-43 - 23668: -103,45 28485: 71,-34 28486: 72,-34 28487: 73,-34 @@ -12034,8 +11716,6 @@ entities: 9252: 0,-54 9253: 1,-54 9254: 2,-54 - 23665: -103,49 - 23666: -102,49 28488: 71,-31 28489: 72,-31 28490: 73,-31 @@ -12072,23 +11752,8 @@ entities: 9445: -20,-43 9446: -20,-42 9447: -20,-41 - 23664: -100,47 28492: 74,-32 28493: 74,-33 - - node: - color: '#79150096' - id: PavementVerticalCheckerAOverlay - decals: - 1276: 24,9 - 1277: 28,9 - 1278: 24,8 - 1279: 28,8 - 1280: 25,9 - 1281: 26,9 - 1282: 27,9 - 1283: 27,8 - 1284: 26,8 - 1285: 25,8 - node: color: '#37789BC0' id: QuarterTileOverlayGreyscale @@ -12203,7 +11868,6 @@ entities: decals: 2929: 42,-12 3923: 41,-20 - 3982: 46.94196,-5.634461 5699: 35.97636,-25.768639 6196: 39.519302,-0.556643 7694: 7.2234926,-28.304962 @@ -12253,6 +11917,14 @@ entities: 7096: -22,-36 7097: -22,-38 7098: -24,-37 + - node: + cleanable: True + color: '#FFFFFF7F' + id: Rust + decals: + 31060: -116,-2 + 31061: -118,-1 + 31062: -117,-2 - node: cleanable: True color: '#FFFFFFFF' @@ -12295,16 +11967,6 @@ entities: 13636: 27,17 13637: 28,17 13638: 28,18 - 23502: -108,43 - 23638: -103,46 - 23639: -103,47 - 23640: -103,48 - 23641: -102,48 - 23642: -101,47 - 23643: -101,46 - 23644: -101,48 - 23645: -104,48 - 23646: -101,45 - node: color: '#FFFFFFFF' id: StandClear @@ -12315,7 +11977,6 @@ entities: 11452: -45,13 11453: -41,13 12823: -39,-7 - 13319: -8,46 13374: 0,40 13375: 0,39 - node: @@ -12324,6 +11985,12 @@ entities: id: StandClear decals: 12705: -21,46 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: StandClear + decals: + 31911: -8,46 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' @@ -12989,7 +12656,6 @@ entities: 13316: -6,46 13317: -11,46 13318: -5,46 - 13320: -8,46 14623: 12,36 14624: 13,36 14625: 11,36 @@ -12999,6 +12665,7 @@ entities: 30872: -29,-41 30873: -28,-41 30874: -27,-41 + 31910: -8,46 - node: color: '#DABC8BFF' id: WoodTrimThinBox @@ -13074,7 +12741,6 @@ entities: 4819: 34,-2 4820: 38,-1 4845: 35,-10 - 4939: 29,6 4949: 15,-3 4998: 13,-8 5006: 11,-7 @@ -13106,6 +12772,7 @@ entities: 9581: 33,-54 13653: -13,62 24474: 25,61 + 31937: -74,18 - node: color: '#2E211AFF' id: WoodTrimThinCornerNeWhite @@ -13119,6 +12786,12 @@ entities: id: WoodTrimThinCornerNeWhite decals: 16497: 82,-38 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNeWhite + decals: + 31519: 28,15 + 31529: 28,7 - node: color: '#A88661FF' id: WoodTrimThinCornerNeWhite @@ -13181,7 +12854,6 @@ entities: 4801: 38,13 4821: 36,-1 4846: 32,-10 - 4926: 26,6 4950: 8,-3 4975: 8,-8 4981: 9,-7 @@ -13208,13 +12880,14 @@ entities: id: WoodTrimThinCornerNw decals: 373: 44,2 - 1333: 26,6 9521: 27,-56 9522: 26,-57 9580: 31,-54 13650: -16,62 20873: -118,6 24476: 23,61 + 31935: -80,18 + 31998: -81,13 - node: color: '#2E211AFF' id: WoodTrimThinCornerNwWhite @@ -13230,6 +12903,12 @@ entities: id: WoodTrimThinCornerNwWhite decals: 16414: 72,-38 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerNwWhite + decals: + 31515: 24,15 + 31527: 24,7 - node: color: '#A88661FF' id: WoodTrimThinCornerNwWhite @@ -13286,8 +12965,6 @@ entities: 4826: 38,-5 4843: 33,-14 4844: 35,-13 - 4932: 28,4 - 4940: 29,5 4954: 15,-6 4999: 13,-10 6324: 18,-14 @@ -13311,12 +12988,13 @@ entities: id: WoodTrimThinCornerSe decals: 376: 45,-1 - 1339: 28,4 9526: 28,-58 9586: 33,-55 14086: -13,57 20889: -113,1 24480: 25,60 + 31936: -74,17 + 31992: -75,13 - node: color: '#2E211AFF' id: WoodTrimThinCornerSeWhite @@ -13331,6 +13009,12 @@ entities: decals: 16426: 76,-42 16500: 82,-41 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSeWhite + decals: + 31522: 28,12 + 31545: 28,4 - node: color: '#A88661FF' id: WoodTrimThinCornerSeWhite @@ -13413,6 +13097,9 @@ entities: 20884: -118,1 24477: 23,60 27833: 92,-19 + 31944: -80,16 + 31949: -77,13 + 31997: -81,11 - node: color: '#2E211AFF' id: WoodTrimThinCornerSwWhite @@ -13428,6 +13115,12 @@ entities: decals: 16422: 72,-42 16506: 78,-41 + - node: + color: '#4B362BFF' + id: WoodTrimThinCornerSwWhite + decals: + 31512: 24,12 + 31539: 24,4 - node: color: '#A88661FF' id: WoodTrimThinCornerSwWhite @@ -13443,6 +13136,11 @@ entities: id: WoodTrimThinEndE decals: 4797: 41,8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 31995: -79,11 - node: color: '#DABC8BFF' id: WoodTrimThinEndN @@ -13455,11 +13153,6 @@ entities: id: WoodTrimThinEndN decals: 16453: -50,65 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinEndN - decals: - 1331: 28,7 - node: color: '#D2D2D2FF' id: WoodTrimThinEndS @@ -13480,7 +13173,6 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: - 1336: 24,4 9579: 30,-55 - node: color: '#A88661FF' @@ -13542,7 +13234,6 @@ entities: 4208: 8,-34 4838: 34,-4 4841: 33,-2 - 4942: 28,6 4961: 10,-3 5000: 12,-8 5001: 13,-9 @@ -13567,6 +13258,7 @@ entities: 14080: -13,61 14084: -13,58 27845: 95,-18 + 32001: -80,11 - node: color: '#2E211AFF' id: WoodTrimThinInnerNeWhite @@ -13636,8 +13328,6 @@ entities: 4207: 4,-34 4815: 38,12 4839: 36,-4 - 4937: 26,4 - 4938: 28,6 4960: 10,-3 4988: 9,-8 5004: 12,-8 @@ -13653,7 +13343,6 @@ entities: id: WoodTrimThinInnerNw decals: 370: 46,-2 - 1335: 26,4 9523: 27,-57 9583: 31,-55 20891: -118,2 @@ -13726,7 +13415,6 @@ entities: 4205: 8,-36 4856: 33,-13 4857: 32,-14 - 4941: 28,5 5002: 13,-9 5009: 12,-6 6363: 17,-10 @@ -13749,6 +13437,7 @@ entities: 24479: 24,60 27843: 95,-19 29833: -91.98701,27.330688 + 31955: -75,17 - node: angle: 168.49408598753257 rad color: '#FFFFFFFF' @@ -13836,6 +13525,7 @@ entities: 20890: -118,2 24478: 24,60 27841: 94,-19 + 31956: -77,16 - node: color: '#2E211AFF' id: WoodTrimThinInnerSwWhite @@ -13977,7 +13667,6 @@ entities: 4854: 35,-12 4855: 35,-11 4860: 37,12 - 4935: 25,4 4955: 15,-5 4956: 15,-4 4963: 18,-11 @@ -14035,6 +13724,10 @@ entities: 27838: 95,-15 27839: 95,-16 27840: 95,-17 + 31953: -75,15 + 31954: -75,16 + 31993: -75,14 + 32000: -80,12 - node: angle: 0.17453292519943295 rad color: '#FFFFFFFF' @@ -14098,6 +13791,10 @@ entities: 15573: -19,22 15582: -19,24 15583: -19,25 + 31520: 28,14 + 31521: 28,13 + 31537: 28,6 + 31538: 28,5 - node: color: '#A88661FF' id: WoodTrimThinLineEWhite @@ -14204,7 +13901,6 @@ entities: 4851: 33,-10 4852: 34,-10 4858: 32,-15 - 4927: 27,6 4945: 11,-3 4946: 12,-3 4947: 13,-3 @@ -14260,7 +13956,6 @@ entities: decals: 354: 44,-2 355: 45,-2 - 1332: 27,6 9582: 32,-54 13651: -15,62 13652: -14,62 @@ -14275,9 +13970,15 @@ entities: 20876: -115,6 20877: -114,6 20895: -113,6 - 22394: -98,45 - 22396: -96,51 24475: 24,61 + 31938: -75,18 + 31939: -76,18 + 31940: -77,18 + 31941: -78,18 + 31942: -79,18 + 32002: -80,13 + 32007: -78,14 + 32008: -79,13 - node: angle: 0.3839724354387525 rad color: '#FFFFFFFF' @@ -14322,6 +14023,12 @@ entities: 15579: -19,26 15580: -22,24 15584: -18,23 + 31516: 25,15 + 31517: 26,15 + 31518: 27,15 + 31530: 25,7 + 31531: 26,7 + 31533: 27,7 - node: color: '#A88661FF' id: WoodTrimThinLineNWhite @@ -14444,12 +14151,6 @@ entities: 4837: 37,-5 4853: 34,-13 4859: 33,-1 - 4928: 28,7 - 4929: 28,7 - 4930: 28,7 - 4931: 28,7 - 4933: 27,4 - 4934: 26,4 4953: 14,-6 4957: 12,-10 4962: 10,-2 @@ -14498,8 +14199,6 @@ entities: decals: 360: 44,3 361: 45,3 - 1337: 26,4 - 1338: 27,4 6650: 9,20 6651: 10,20 6652: 11,20 @@ -14516,14 +14215,13 @@ entities: 20886: -116,1 20887: -115,1 20888: -114,1 - 22390: -102,50 - 22391: -101,50 - 22392: -100,50 - 22393: -99,50 - 22395: -96,51 - 22477: -103,50 - 22478: -104,50 27832: 93,-19 + 31945: -79,16 + 31946: -78,16 + 31994: -76,13 + 31996: -80,11 + 32005: -78,13 + 32009: -79,13 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -14575,6 +14273,12 @@ entities: 15575: -20,22 15576: -19,22 15585: -18,25 + 31523: 25,12 + 31524: 26,12 + 31525: 27,12 + 31541: 25,4 + 31542: 26,4 + 31543: 27,4 - node: color: '#A88661FF' id: WoodTrimThinLineSWhite @@ -14723,7 +14427,6 @@ entities: 4848: 32,-13 4849: 32,-12 4850: 32,-11 - 4936: 26,5 4951: 8,-4 4952: 8,-5 4958: 14,-9 @@ -14776,7 +14479,6 @@ entities: 381: 44,0 382: 44,1 424: 44,0 - 1334: 26,5 6654: 12,19 6655: 12,18 14090: -16,58 @@ -14793,6 +14495,11 @@ entities: 27835: 92,-17 27836: 92,-16 27837: 92,-15 + 31943: -80,17 + 31947: -77,15 + 31948: -77,14 + 31999: -81,12 + 32006: -78,14 - node: angle: 0.7853981633974483 rad color: '#FFFFFFFF' @@ -14863,6 +14570,10 @@ entities: 15569: -21,23 15570: -21,22 15581: -21,24 + 31513: 24,13 + 31514: 24,14 + 31534: 24,6 + 31535: 24,5 - node: color: '#A88661FF' id: WoodTrimThinLineWWhite @@ -14870,16 +14581,13 @@ entities: 28578: 21,-53 28579: 21,-54 - node: - angle: 3.141592653589793 rad - color: '#9200003E' + cleanable: True + angle: -1.5707963267948966 rad + color: '#96DAFFC7' id: arrow decals: - 16432: -78.97288,16.880844 - - node: - color: '#1E9CFFFF' - id: b - decals: - 13642: 39.657272,51.880714 + 32622: -56.740593,-15.995366 + 32623: -56.771843,-16.026615 - node: cleanable: True color: '#FF00006C' @@ -14959,7 +14667,6 @@ entities: color: '#FFFFFFFF' id: bushsnowa2 decals: - 2930: 42,-11 13688: -14.791328,25.902447 13689: -14.913507,26.461006 13690: -14.145519,26.89738 @@ -14981,11 +14688,6 @@ entities: decals: 5703: 31.233696,-24.563969 15839: -92.05327,13.011379 - - node: - color: '#FFFFFFFF' - id: bushsnowb2 - decals: - 2931: 47,-5 - node: color: '#FFFFFFFF' id: bushsnowb3 @@ -14994,11 +14696,6 @@ entities: 5705: 35.389584,-25.267094 13691: -14.110611,27.21157 15840: -91.19106,12.922182 - - node: - color: '#1E9CFFFF' - id: c - decals: - 13647: 41.532272,52.11509 - node: color: '#000000FF' id: carp @@ -15028,16 +14725,6 @@ entities: 311: 61.97426,11.57192 312: 60.47426,8.60317 313: 59.53676,12.00942 - - node: - color: '#1E9CFFFF' - id: cyr_ch - decals: - 13644: 40.391647,51.99009 - - node: - color: '#1E9CFFFF' - id: cyr_soft_sign - decals: - 13649: 42.313522,52.14634 - node: cleanable: True angle: 0.4014257279586958 rad @@ -15163,27 +14850,21 @@ entities: 30778: 99.18131,-44.916588 30779: 99.04069,-45.416588 - node: - color: '#780000B2' + cleanable: True + color: '#572F0068' id: dot decals: - 11512: -56.891403,45.03343 - 11513: -56.722107,45.39801 - 11514: -57.464405,43.35374 - 11517: -56.982563,44.577698 - 11518: -57.190926,43.83551 - 11519: -56.539787,46.17926 - 11520: -56.18817,46.28343 - 11521: -56.64397,45.68447 - 11523: -57.60766,42.767803 - 11524: -55.609604,44.461765 - 11525: -55.51844,45.30812 - 11526: -54.867302,45.229996 - 11527: -55.51844,44.891453 - 11528: -55.46597,45.30812 - 11529: -55.544106,45.060722 - 11530: -55.41388,45.282078 - 11531: -55.609222,44.461765 - 11532: -56.989635,44.565933 + 31815: 66.05387,-53.489243 + 31816: 65.61637,-52.786118 + 31817: 66.100746,-52.739243 + 31818: 65.975746,-52.817368 + 31819: 65.788246,-52.989243 + 31820: 65.71012,-53.129868 + 31821: 66.569496,-52.989243 + 31822: 66.55387,-52.801743 + 31823: 66.61637,-53.067368 + 31824: 66.55387,-53.286118 + 31825: 65.67887,-53.270493 - node: cleanable: True color: '#780000CC' @@ -15375,60 +15056,6 @@ entities: decals: 29013: 12.562883,-29.3998 29014: 12.708717,-29.30605 - - node: - color: '#FFFFFF33' - id: dot - decals: - 16936: -79.49228,12.64242 - 16937: -79.414154,12.720545 - 16938: -79.414154,12.751795 - 16939: -79.36728,12.79867 - 16940: -79.42978,12.79867 - 16941: -79.445404,12.67367 - 16942: -79.49228,12.61117 - 16943: -79.476654,12.64242 - 16944: -79.17978,12.970545 - 16945: -79.08603,13.001795 - 16946: -78.86728,13.14242 - 16947: -78.80478,13.17367 - 16948: -79.08603,13.07992 - 16949: -79.226654,13.001795 - 16950: -79.289154,12.89242 - 16951: -79.320404,12.845545 - 16952: -79.24228,12.95492 - 16953: -79.17978,12.98617 - 16954: -79.101654,13.064295 - 16955: -79.132904,13.001795 - 16956: -79.195404,12.908045 - 16957: -79.320404,12.73617 - 16958: -79.257904,12.79867 - 16959: -79.070404,12.939295 - 16960: -78.92978,13.07992 - 16961: -79.132904,12.970545 - 16962: -78.96103,13.01742 - 16963: -78.851654,13.126795 - 16964: -78.77353,13.23617 - 16965: -79.05478,13.095545 - 16966: -79.445404,12.720545 - 16967: -79.49228,12.658045 - 16968: -78.789154,12.67367 - 16969: -78.96103,12.61117 - 16970: -79.02353,12.61117 - 16971: -78.820404,12.67367 - 16972: -78.757904,12.70492 - 16973: -78.67978,12.720545 - 16974: -78.89853,12.67367 - 16975: -78.99228,12.64242 - 16976: -78.664154,12.689295 - 16977: -78.58603,12.70492 - 16978: -79.570404,12.48617 - 16979: -79.507904,12.533045 - 16980: -79.52353,12.595545 - 16981: -79.601654,12.57992 - 16982: -79.632904,12.501795 - 16983: -79.21103,12.751795 - 16984: -79.39853,12.64242 - 16985: -78.570404,13.220545 - node: color: '#FFFFFFFF' id: dot @@ -15437,11 +15064,6 @@ entities: 12054: -51.210297,-41.641243 12055: -51.137383,-41.714157 12056: -51.220715,-41.859993 - - node: - color: '#1E9CFFFF' - id: e - decals: - 13643: 40.047897,51.943214 - node: cleanable: True color: '#ECECECFF' @@ -15527,6 +15149,124 @@ entities: decals: 13415: -9.842329,39.31401 13416: -9.530151,39.447803 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#32000099' + id: footprint + decals: + 31767: -75.627335,16.747211 + 31768: -76.005,15.887836 + 31769: -76.551956,16.369608 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#32000099' + id: footprint + decals: + 31762: -73.73865,17.65867 + 31763: -74.81954,17.619608 + 31764: -74.78085,16.603983 + - node: + cleanable: True + angle: 2.2689280275926285 rad + color: '#32000099' + id: footprint + decals: + 31776: -74.67393,16.330545 + 31777: -75.39018,16.330545 + 31778: -75.20786,15.588358 + - node: + cleanable: True + angle: 2.356194490192345 rad + color: '#32000099' + id: footprint + decals: + 31779: -76.10644,15.575336 + 31780: -75.67668,14.872212 + - node: + cleanable: True + angle: 2.443460952792061 rad + color: '#32000099' + id: footprint + decals: + 31782: -76.64037,14.898254 + 31783: -76.24969,14.103983 + 31784: -77.10919,13.90867 + - node: + cleanable: True + angle: 5.061454830783556 rad + color: '#32000099' + id: footprint + decals: + 31770: -75.503334,16.25242 + 31771: -76.33679,16.330545 + 31772: -75.29271,17.00763 + 31773: -74.498314,16.968567 + 31774: -74.28995,17.827942 + 31775: -73.72997,18.231586 + - node: + cleanable: True + angle: -0.8726646259971648 rad + color: '#3200009E' + id: footprint + decals: + 31826: -74.960434,15.510233 + 31827: -75.16879,16.40867 + 31828: -74.88229,17.268045 + 31829: -74.34836,17.242004 + 31830: -73.866516,17.919086 + 31831: -73.71024,17.215961 + 31832: -75.689705,15.588358 + 31833: -75.10368,15.965961 + 31834: -76.47108,14.559712 + 31835: -75.31204,14.911275 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#3200009E' + id: footprint + decals: + 31836: -76.679436,15.653461 + - node: + cleanable: True + angle: 5.235987755982989 rad + color: '#3200009E' + id: footprint + decals: + 31811: -76.8878,13.361795 + 31812: -76.87478,14.234192 + 31813: -75.911095,14.273254 + 31814: -76.11946,14.950337 + - node: + cleanable: True + angle: 2.443460952792061 rad + color: '#320000A5' + id: footprint + decals: + 31788: -76.64037,13.244608 + - node: + cleanable: True + angle: 2.0943951023931953 rad + color: '#320000BA' + id: footprint + decals: + 31802: -74.79114,16.22638 + 31803: -74.89532,16.994608 + 31805: -74.087906,17.098774 + 31806: -74.30929,17.65867 + - node: + cleanable: True + angle: 2.443460952792061 rad + color: '#320000BA' + id: footprint + decals: + 31794: -76.6534,13.713358 + 31796: -76.87478,14.6769 + 31797: -75.93714,14.585754 + 31798: -76.15852,15.393045 + 31799: -75.25996,15.419087 + 31800: -75.71575,16.200336 - node: cleanable: True angle: -0.9599310885968813 rad @@ -15593,6 +15333,27 @@ entities: id: footprint decals: 28903: -37.215057,23.978125 + - node: + cleanable: True + zIndex: -1 + angle: 0.17453292519943295 rad + color: '#FFFFFF7F' + id: footprint + decals: + 33012: -107.7485,51.212746 + 33013: -108.061,50.879414 + 33014: -107.79016,50.577328 + - node: + cleanable: True + zIndex: -1 + angle: 2.9670597283903604 rad + color: '#FFFFFF7F' + id: footprint + decals: + 33015: -108.22766,51.254414 + 33016: -107.91516,51.014828 + 33017: -108.25891,50.837746 + 33018: -108.25891,50.889828 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -15619,6 +15380,17 @@ entities: 30220: -35.09152,-47.93689 30516: -50.14418,-52.27571 30517: -50.034805,-51.728836 + 32638: -54.971264,-16.201826 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow + decals: + 32511: -39.91374,67.9589 + 32512: -35.97624,66.9589 + 32513: -36.116863,67.130775 + 32514: -37.94499,63.912025 + 33366: 50.042217,-28.988895 - node: color: '#FFFFFF8F' id: grasssnow @@ -15641,7 +15413,6 @@ entities: 15729: -135.76123,-9.947891 15730: -134.38988,-10.917912 15731: -131.26251,-13.034985 - 23311: -68.03376,43.038353 30852: 92.91252,-34.744804 - node: angle: -1.5707963267948966 rad @@ -15700,7 +15471,6 @@ entities: 24428: 33.93728,45.79414 25251: 32.187508,62.707504 25675: -120.81109,23.944689 - 26743: -58.140034,-30.02244 26898: -32.694195,51.900703 28404: 67.04114,13.632257 28420: 67.0066,26.096289 @@ -15761,6 +15531,10 @@ entities: 30514: -51.878555,-53.697586 30522: -44.38943,-57.214596 30882: -32.852123,47.94264 + 32531: -36.10521,70.887115 + 32636: -54.033764,-16.592451 + 33111: -97.00549,47.672955 + 33121: -100.299446,44.85365 - node: color: '#FFFFFF85' id: grasssnow02 @@ -15782,7 +15556,6 @@ entities: 29578: -27.202278,64.031204 29633: 60.507565,34.19534 29654: 53.0204,52.890007 - 29668: -79.09957,9.526113 29671: -74.114204,7.1125383 29680: -65.79751,14.815513 29684: -70.01727,19.052801 @@ -15821,9 +15594,7 @@ entities: color: '#FFFFFFFF' id: grasssnow02 decals: - 2896: 47,-5 2908: 42,-10 - 2919: 43,-10 3897: 40,-18 5759: 34.644978,9.608289 5827: 30.156834,14.190023 @@ -15851,7 +15622,6 @@ entities: 15679: -81.2976,-2.9713817 15680: -57.64113,-16.1737 15681: -56.6377,-16.46359 - 15805: -54.728226,23.344994 16465: -34.913433,29.474533 19403: -121.99835,-4.711815 19443: -129.1546,10.139933 @@ -15875,7 +15645,6 @@ entities: 27440: -40.325874,58.4729 27444: -44.92059,54.49367 27447: -52.515274,49.004326 - 27474: -74.840805,57.01446 27586: -72.97312,69.36149 27591: -75.420334,71.48649 27602: -48.57371,70.23649 @@ -15890,8 +15659,6 @@ entities: 28436: 59.078053,38.935432 28445: 54.998062,49.138237 29383: -20.009975,64.89145 - 29431: -32.926235,72.0282 - 29451: -56.859562,46.001022 29555: -65.305176,13.604626 29629: -67.79544,5.7862644 30021: -46.8252,-33.973213 @@ -15923,6 +15690,23 @@ entities: 30153: -40.637905,-28.203413 30884: -31.836498,45.97389 30885: -31.023998,43.84889 + 32489: -42.241863,69.500946 + 32491: -41.97624,71.76657 + 32538: -39.808334,73.9176 + 33112: -97.05237,46.485455 + 33122: -99.59524,45.04115 + 33271: -76.62628,44.974625 + 33273: -73.90753,44.7715 + 33274: -68.04816,43.1465 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow03 + decals: + 32503: -41.19499,70.224525 + 32504: -42.835613,70.99015 + 32507: -41.835613,66.630775 + 32508: -41.835613,65.130775 - node: angle: -1.5707963267948966 rad color: '#FFFFFFB4' @@ -15981,18 +15765,45 @@ entities: 29989: -43.82657,-42.598995 30850: 90.85002,-35.72918 30851: 93.0219,-34.82293 + 31808: -52.52818,23.743565 - node: color: '#FFFFFF7F' id: grasssnow04 decals: 30020: -59.062557,-13.335847 + 32492: -42.460613,71.000946 + 32516: -37.991863,64.912025 + 32521: -35.913567,64.71295 + 32527: -37.339584,68.96295 + 32530: -37.183334,71.262115 + 32533: -36.089584,69.09024 + 32534: -34.91771,68.293365 + 32539: -41.495834,76.18323 + 32549: -36.41771,74.1051 + 32555: -35.38646,74.07385 + 32566: -31.902767,73.74573 + 32633: -54.01814,-13.045576 + 32796: 77.77907,-29.202072 + 32797: -98.13557,34.323643 + 33262: -58.903316,43.1465 + 33275: -67.36066,43.209 + 33334: -73.18117,44.310802 + 33341: 32.161953,-31.669807 + 33351: 46.734257,-30.294807 + 33355: 47.953007,-32.157246 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow04 + decals: + 33364: 51.432842,-30.871254 + 33365: 49.885967,-29.832645 - node: angle: 1.5707963267948966 rad color: '#FFFFFF8F' id: grasssnow04 decals: 29575: -40.33808,59.776566 - 29576: -33.21308,61.70061 - node: angle: 4.71238898038469 rad color: '#FFFFFF8F' @@ -16004,7 +15815,6 @@ entities: color: '#FFFFFFFF' id: grasssnow04 decals: - 2901: 46,-6 3906: 41,-21 5745: 35.119938,11.011351 5767: 37.376373,6.280164 @@ -16024,20 +15834,19 @@ entities: 24207: 80.133354,-1.6789298 24426: 33.84353,45.341015 25248: 25.43751,65.426254 - 26744: -55.608784,-29.819315 27441: -39.8415,55.2854 - 27477: -74.98143,56.13969 27614: -57.962803,75.34185 28417: 74.393555,24.32189 28421: 67.16285,27.908789 28424: 64.494316,25.291433 - 29364: -32.72345,69.249 29453: -59.008137,38.577934 29562: -68.830124,22.1828 29603: -71.55486,6.099248 29625: -65.26419,21.249683 29630: -68.8318,6.736568 29985: -123.454124,11.693992 + 31343: 58.36957,-19.93693 + 31344: 47.873352,-20.890055 - node: angle: -1.5707963267948966 rad color: '#FFFFFF7F' @@ -16056,6 +15865,7 @@ entities: 30163: -47.011223,-25.973211 30164: -58.744392,-21.099476 30166: -60.056892,-22.5526 + 32494: -39.94499,70.880775 - node: angle: 1.5707963267948966 rad color: '#FFFFFF8F' @@ -16133,7 +15943,6 @@ entities: 25747: -122.803085,17.237623 26469: -62.950882,-27.841381 26470: -75.73092,-21.852133 - 26749: -58.390034,-31.225567 26888: -38.218597,59.596264 28450: 23.532059,47.009632 29386: -17.916225,63.422695 @@ -16158,6 +15967,7 @@ entities: 30161: -42.37405,-27.224339 30876: -32.899,48.364513 30883: -32.899,45.97389 + 32540: -38.48021,74.12073 - node: color: '#FFFFFF8F' id: grasssnow06 @@ -16198,21 +16008,18 @@ entities: 15661: -69.936005,11.661568 15662: -67.18587,11.185848 15716: -50.803658,47.828823 - 23672: -71.491806,45.756073 25285: 27.445984,63.94973 - 26750: -58.12441,-29.663065 - 26751: -56.108784,-28.80369 28184: 101.70899,-39.778145 28427: 58.032898,21.900007 29421: -31.832657,58.685524 29424: -27.910782,59.57615 - 29429: -34.84811,65.651054 29437: -43.066868,35.55071 29968: -33.608475,-30.223146 29986: -43.35782,-43.64587 29987: -43.54532,-43.005245 30044: -51.357533,-45.07855 30868: 94.7224,-34.35418 + 32128: -88.25553,64.9875 - node: angle: -1.5707963267948966 rad color: '#FFFFFF7F' @@ -16266,6 +16073,27 @@ entities: 30526: -38.04594,-50.091995 30875: -32.695873,45.270763 30878: -31.867748,44.03639 + 32519: -35.80419,62.072327 + 32522: -35.944817,64.96295 + 32523: -38.73021,63.8692 + 32535: -34.214584,67.762115 + 32552: -36.620834,75.02698 + 32628: -55.14314,-12.295576 + 32793: 77.96657,-30.498947 + 33120: -101.69007,44.713024 + 33126: -94.843475,51.66748 + 33272: -74.76691,44.80275 + 33343: 33.115078,-31.185432 + 33344: 37.771328,-30.232307 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow07 + decals: + 32506: -41.03874,66.318275 + 33358: 47.199852,-31.617485 + 33369: 51.042217,-27.41077 + 33370: 48.073467,-30.913683 - node: color: '#FFFFFF85' id: grasssnow07 @@ -16308,7 +16136,6 @@ entities: 30531: -87.91676,14.985409 30533: -87.40114,13.907284 30537: -82.93786,12.047909 - 30538: -80.78161,16.047909 - node: color: '#FFFFFFB4' id: grasssnow07 @@ -16316,14 +16143,11 @@ entities: 29858: -70.79041,16.66008 29866: -88.069046,26.765696 29869: -89.83467,24.734446 - 29873: -85.70098,33.974297 - node: color: '#FFFFFFFF' id: grasssnow07 decals: - 2897: 47,-6 2900: 45,-7 - 2913: 42,-11 5663: 34.827225,-24.372952 5665: 34.96785,-26.060452 5740: 44.00008,5.940524 @@ -16372,15 +16196,11 @@ entities: 22652: -75.90891,59.39966 23313: -69.34626,43.132103 23314: -70.25251,43.897728 - 23315: -71.59445,44.287292 - 23669: -72.929306,42.927948 23684: -87.066086,44.041256 24193: 86.3108,-3.9998755 24199: 83.11773,-4.61643 25247: 25.367197,63.809067 25250: 30.828135,63.809067 - 26742: -57.18691,-28.70994 - 26745: -54.796284,-30.163065 26889: -35.046722,57.877514 26893: -49.108875,57.05818 26895: -44.85678,62.24423 @@ -16401,18 +16221,10 @@ entities: 28438: 55.17822,42.385345 28444: 51.138687,47.763237 28449: 20.170275,47.869007 - 29362: -30.082825,66.952126 - 29368: -33.8733,67.84275 29389: -22.5881,64.282074 29419: -32.97328,61.88865 - 29432: -31.019985,70.82507 - 29435: -33.926235,72.74695 29436: -45.504368,34.660084 29440: -43.318806,37.192413 - 29444: -67.202896,41.296673 - 29450: -57.757233,44.866558 - 29455: -74.83594,44.53405 - 29456: -72.932785,43.6903 29556: -67.6958,12.924938 29560: -66.627,18.784363 29970: -30.545975,-32.83252 @@ -16475,6 +16287,35 @@ entities: 30494: -28.51498,-70.64718 30521: -44.76443,-58.902096 30877: -33.0865,47.083263 + 32026: 48.0156,-3.160812 + 32493: -41.03874,71.00593 + 32495: -41.929363,70.42765 + 32517: -38.10124,66.3964 + 32528: -38.38646,68.793365 + 32541: -37.98021,74.0426 + 32563: -33.101505,72.1051 + 32567: -35.965267,75.08948 + 32624: -54.08064,-15.764326 + 32630: -55.377514,-11.326826 + 32635: -54.190014,-14.076826 + 33166: -66.97415,-10.05784 + 33263: -58.29394,42.74025 + 33264: -56.028316,43.912125 + 33269: -78.14191,44.755875 + 33330: -86.165726,46.998302 + 33333: -72.47804,43.873302 + 33338: 41.849453,-29.388557 + 33345: 41.51617,-29.794807 + 33349: 45.328007,-29.482307 + 33356: 46.96863,-33.907246 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow08 + decals: + 32500: -37.28874,70.068275 + 32505: -43.054363,69.849525 + 32509: -42.148113,65.7714 - node: color: '#FFFFFF85' id: grasssnow08 @@ -16498,7 +16339,6 @@ entities: 29638: 63.82007,34.91409 29651: 48.755898,43.221054 29652: 50.162148,46.76793 - 29667: -79.88082,9.932363 29669: -77.19765,7.8625383 - node: angle: 4.71238898038469 rad @@ -16533,8 +16373,6 @@ entities: color: '#FFFFFFFF' id: grasssnow08 decals: - 2909: 43,-10 - 2914: 43,-11 3893: 38,0 5664: 36.09285,-26.029202 5667: 32.28989,-24.497952 @@ -16587,8 +16425,6 @@ entities: 15666: -81.99775,17.591047 15667: -82.13971,26.823284 15668: -86.438156,44.406994 - 15669: -85.869545,47.509373 - 15670: -84.73232,47.64317 15671: -83.193726,51.924637 15699: 87.51052,-1.0580609 15700: 88.179474,2.643624 @@ -16610,12 +16446,8 @@ entities: 20732: -133.6642,-0.16500568 22629: -79.12044,59.972733 22644: -73.44016,60.99043 - 23309: -70.486885,41.663353 - 23312: -67.361885,42.897728 23670: -73.366806,44.865448 - 23673: -75.94276,44.818573 23679: -80.00329,45.006073 - 23680: -85.092705,41.849823 24198: 83.727104,-4.069555 24391: 6.411844,51.676254 24436: 48.734154,42.66914 @@ -16649,20 +16481,13 @@ entities: 28440: 55.943844,42.729095 28441: 50.107437,41.979095 28443: 51.576187,43.766666 - 28455: 48.822968,-11.087746 - 28457: 55.92058,-13.134621 28460: 59.787113,-18.105553 - 29363: -31.926575,68.90525 - 29365: -34.170174,68.639626 29378: -26.740973,64.250824 29382: -22.1506,63.500824 29387: -17.24435,63.907074 29417: -28.176407,61.1699 29420: -32.25453,60.7949 29438: -46.019993,30.847584 - 29445: -67.296646,40.234173 - 29449: -58.069733,41.897808 - 29454: -74.24219,44.8778 29459: -64.24997,25.987679 29573: -60.36953,-13.145627 29974: -58.177956,-23.847155 @@ -16677,6 +16502,11 @@ entities: id: grasssnow08 decals: 27437: -40.919624,54.301025 + - node: + color: '#E3FFFFFF' + id: grasssnow09 + decals: + 31341: 52.013435,-20.952555 - node: color: '#FFFFFF7F' id: grasssnow09 @@ -16684,6 +16514,47 @@ entities: 24422: 35.640404,42.79414 30168: -56.994392,-21.95885 30191: -55.050934,-39.27025 + 32027: 43.781223,-4.426437 + 32029: 48.531223,-4.957687 + 32032: 47.499973,-7.051437 + 32482: -40.98318,64.38042 + 32488: -41.97624,68.07907 + 32496: -41.06999,69.99015 + 32499: -38.19499,70.162025 + 32532: -36.16771,69.80899 + 32536: -42.48021,75.18323 + 32542: -40.10521,75.08948 + 32548: -39.058334,75.02698 + 32550: -38.73021,75.63635 + 32554: -34.85521,73.19885 + 32556: -35.402084,74.57385 + 32564: -32.945255,73.27698 + 32631: -55.877514,-11.514326 + 32637: -53.033764,-15.951826 + 32791: 77.91969,-32.748947 + 32798: -97.01057,34.214268 + 33110: -96.10272,49.141705 + 33115: -98.5735,45.15945 + 33123: -99.12649,47.0099 + 33167: -65.09915,-10.042215 + 33261: -60.10644,43.099625 + 33270: -77.26691,44.2715 + 33276: -69.98743,42.23448 + 33331: -84.8376,48.076427 + 33336: -67.12793,41.310802 + 33339: 39.490078,-28.747932 + 33342: 33.630703,-30.951057 + 33347: 44.12579,-28.935432 + 33350: 46.49988,-29.997932 + 33353: 48.046757,-31.591682 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow09 + decals: + 32515: -38.898113,63.974525 + 33363: 51.729717,-34.04313 + 33374: 38.92606,-27.117085 - node: color: '#FFFFFF85' id: grasssnow09 @@ -16699,7 +16570,6 @@ entities: color: '#FFFFFFFF' id: grasssnow09 decals: - 2902: 46,-6 3895: 41,-18 5716: 33.77678,14.221321 5717: 35.354904,14.424446 @@ -16780,8 +16650,6 @@ entities: 24430: 46.15603,41.966015 25282: 39.065502,57.722363 25751: -121.05952,23.027548 - 26746: -56.358784,-30.788067 - 27476: -75.934555,55.186337 27592: -67.75252,69.34586 27612: -60.993355,72.334755 28216: 100.037125,-28.98394 @@ -16790,7 +16658,6 @@ entities: 29371: -25.497091,69.04349 29385: -18.853725,64.07895 29426: -28.582657,64.95115 - 29434: -35.00436,73.2782 29439: -44.973118,30.331959 29570: -60.83828,-6.9246235 29599: -63.672417,0.49533033 @@ -16802,6 +16669,9 @@ entities: 30035: -53.987015,-44.659622 30859: 91.92815,-36.76043 30865: 94.86302,-38.94793 + 31342: 55.103947,-20.890055 + 32123: -84.46558,64.7375 + 32625: -54.971264,-12.858076 - node: angle: -1.5707963267948966 rad color: '#FFFFFF7F' @@ -16828,6 +16698,35 @@ entities: 30462: -34.095566,-55.0675 30510: -35.028526,-62.005707 30515: -49.67543,-55.260086 + 32025: 46.3906,-7.067062 + 32487: -40.842556,65.36479 + 32490: -42.585613,70.500946 + 32520: -36.08544,63.5567 + 32529: -37.04271,71.90274 + 32537: -41.120834,75.15198 + 32545: -39.85521,75.58948 + 32551: -37.51146,75.24573 + 32632: -54.95564,-10.201826 + 32792: 77.98219,-32.592697 + 33113: -97.06799,46.15733 + 33265: -56.07519,44.880875 + 33266: -71.96449,45.349625 + 33267: -71.82387,46.849625 + 33268: -71.46449,46.037125 + 33332: -77.07482,44.513927 + 33340: 38.911953,-28.122932 + 33346: 42.875546,-28.982307 + 33354: 48.953007,-32.013557 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow10 + decals: + 32501: -39.41374,69.443275 + 32502: -42.148113,68.693275 + 32510: -39.866863,65.537025 + 33359: 47.996727,-35.308754 + 33367: 50.026592,-29.957645 - node: color: '#FFFFFF8F' id: grasssnow10 @@ -17020,7 +16919,6 @@ entities: 21527: -75.54634,0.9615836 22631: -78.24544,61.019608 22632: -76.86204,61.631054 - 23674: -77.14588,44.740448 24202: 82.914604,-1.9601798 24423: 36.890404,42.41914 24427: 33.09353,45.216015 @@ -17100,7 +16998,6 @@ entities: 26468: -68.99309,-25.051502 28425: 71.06097,18.489788 29379: -29.72535,65.1102 - 29460: -70.2778,42.76722 29546: -87.122345,40.037132 29549: -79.88674,21.981375 29550: -86.08295,14.065852 @@ -17117,6 +17014,7 @@ entities: 30854: 93.67815,-34.79168 30855: 92.97502,-33.776054 30856: 93.03752,-35.69793 + 32124: -87.87183,64.55 - node: color: '#FFFFFF7F' id: grasssnow11 @@ -17127,6 +17025,19 @@ entities: 30215: -41.593098,-40.08169 30216: -38.093098,-42.784817 30217: -37.19403,-46.76679 + 32030: 47.781223,-4.473312 + 32031: 50.29685,-5.770187 + 32497: -39.97624,69.912025 + 32525: -38.120834,65.88483 + 33119: -103.19007,43.97865 + 33125: -96.999725,51.026855 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow11 + decals: + 33361: 49.885967,-37.07438 + 33373: 48.604717,-32.241806 - node: color: '#FFFFFF85' id: grasssnow11 @@ -17170,7 +17081,6 @@ entities: color: '#FFFFFFFF' id: grasssnow11 decals: - 2903: 46,-6 2904: 43,-8 2915: 42,-10 2916: 42,-12 @@ -17232,10 +17142,7 @@ entities: 24434: 48.09353,44.01289 25280: 34.77644,55.21455 26464: -77.002266,-22.087229 - 26747: -55.84316,-31.959942 26899: -32.694195,49.189915 - 27475: -77.122055,57.13946 - 27482: -85.98811,46.619602 27568: -47.383076,66.81335 27599: -57.01121,69.12711 27603: -65.38054,68.83024 @@ -17253,7 +17160,6 @@ entities: 28447: 54.076187,50.997437 28448: 68.142075,29.924461 28459: 59.056606,-11.337746 - 29367: -34.888924,67.514626 29370: -26.482674,68.108376 29372: -23.856466,68.98099 29376: -27.178473,68.19812 @@ -17263,12 +17169,9 @@ entities: 29390: -24.18185,65.0477 29418: -30.113907,60.310524 29427: -27.213154,64.39841 - 29433: -32.31686,71.80945 29442: -20.28104,38.37981 29443: -65.49977,36.390423 - 29448: -61.850983,41.897808 29457: -65.99997,31.300179 - 29461: -71.68266,43.71357 29536: -83.90248,33.032967 29552: -64.86809,4.1827507 29554: -63.898926,10.065563 @@ -17283,6 +17186,9 @@ entities: 30039: -44.216908,-39.375423 30847: 89.86565,-37.97918 30861: 92.1469,-37.79168 + 31345: 47.607727,-20.96818 + 31810: -54.05943,24.04044 + 32126: -87.45866,63.987503 - node: angle: 1.5707963267948966 rad color: '#FF000082' @@ -17326,6 +17232,22 @@ entities: 30520: -47.12031,-56.71823 30527: -37.98344,-49.999493 30528: -39.624065,-48.811993 + 32498: -39.00749,70.005775 + 32526: -37.51146,66.9942 + 32557: -33.933334,73.1676 + 32795: 77.32594,-28.014572 + 33118: -103.143196,42.244274 + 33335: -71.62793,43.732677 + 33352: 45.59363,-30.794807 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow12 + decals: + 33360: 49.901592,-36.94938 + 33368: 50.917217,-27.28577 + 33371: 48.198467,-31.194933 + 33372: 48.979717,-32.085556 - node: color: '#FFFFFF85' id: grasssnow12 @@ -17384,8 +17306,6 @@ entities: color: '#FFFFFFFF' id: grasssnow12 decals: - 2898: 47,-5 - 2920: 42,-11 2921: 48,-1 3899: 40,-21 3903: 42,-21 @@ -17433,9 +17353,7 @@ entities: 19509: -128.47916,-9.644707 19512: -123.76041,-12.004082 22637: -75.98704,59.162304 - 23310: -69.986885,42.366478 23678: -80.67516,45.052948 - 23682: -86.561455,42.506073 24194: 86.73267,-2.7498755 24196: 83.73267,-0.98425055 24200: 85.46148,-2.6633048 @@ -17453,13 +17371,10 @@ entities: 28439: 54.92822,41.697845 28451: 29.404486,46.134632 28453: 37.00524,38.154182 - 28456: 52.010468,-11.197121 28461: 60.33399,-20.933678 29373: -21.090841,68.29349 29422: -31.020157,57.998024 29441: -21.40604,38.739185 - 29447: -64.609146,42.003067 - 29452: -56.610672,41.21104 29458: -65.671844,27.143929 29543: -82.059845,37.951195 29640: -93.138466,19.920153 @@ -17476,6 +17391,9 @@ entities: 30841: 103.504875,-46.69001 30862: 91.53752,-38.66668 30864: 94.86302,-36.401054 + 32127: -88.78678,64.7375 + 32129: -89.08366,64.75313 + 32130: -84.81803,64.925 - node: zIndex: 2 color: '#FFFFFFFF' @@ -17527,6 +17445,26 @@ entities: 30502: -25.379827,-71.94405 30503: -28.442327,-68.62829 30518: -58.530716,-48.390766 + 32028: 47.54685,-3.520187 + 32518: -38.10124,68.005775 + 32524: -38.10521,65.69733 + 32553: -36.63646,74.58948 + 32558: -34.11713,74.26135 + 32634: -54.11189,-14.467451 + 32794: 77.77907,-29.639572 + 33114: -98.10475,45.6282 + 33117: -102.28382,42.338024 + 33124: -98.21002,48.19724 + 33159: -99.38901,44.251427 + 33337: -67.35749,40.67981 + 33348: 45.28113,-29.779182 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFF7F' + id: grasssnow13 + decals: + 33357: 47.934227,-34.91436 + 33362: 51.870342,-37.19938 - node: color: '#FFFFFF85' id: grasssnow13 @@ -17643,25 +17581,19 @@ entities: 19448: -127.614426,2.5412326 19449: -125.4113,-2.30173 19732: -123.1794,-1.4625647 - 19758: -118.89119,-0.8958044 21522: -75.42134,2.0620518 - 23671: -71.97618,46.974823 23675: -79.22204,45.068573 - 23676: -78.20641,44.740448 - 23681: -86.092705,42.115448 24195: 86.84205,-0.82800055 24197: 85.8733,-1.5155005 24205: 81.539604,-1.8351798 24390: 7.9118443,51.020004 24431: 47.56228,42.059765 25284: 27.258484,66.19973 - 26748: -58.43691,-32.17869 26894: -49.015125,58.198807 27438: -39.263374,55.7854 27443: -41.20184,53.071796 27445: -41.91799,47.441826 27449: -39.24385,50.433666 - 27473: -78.059555,56.20196 27566: -47.05495,65.23522 27590: -70.856926,70.14274 27601: -51.79246,70.20524 @@ -17683,11 +17615,9 @@ entities: 28437: 55.921803,40.247932 28446: 53.013687,51.903687 28452: 32.732624,43.25405 - 28454: 46.869843,-12.150246 28458: 57.82683,-12.806496 28462: 61.27149,-20.183678 28466: -27.792645,65.264755 - 29366: -35.076424,68.34275 29369: -27.232674,67.09275 29375: -26.137716,68.13724 29377: -27.115973,63.422695 @@ -17709,6 +17639,7 @@ entities: 30845: 90.88127,-38.869804 30860: 93.66252,-36.744804 30863: 90.1469,-36.963554 + 32125: -85.10621,65.56563 - node: color: '#FFFFFFF2' id: grasssnowa1 @@ -17730,16 +17661,11 @@ entities: color: '#FFFFFFFF' id: grasssnowa1 decals: - 326: 55,-12 2925: 48,0 3910: 40,-18 3913: 41,-19 3916: 42,-20 - 3943: 41.407005,-11.071314 - 3952: 41.500534,-10.424154 - 3953: 42.438034,-11.229582 3956: 44.594215,-6.410218 - 3957: 46.67755,-4.6063724 3979: 48.13501,0.41414344 5672: 34.506027,-25.904202 5684: 38.58502,-23.596764 @@ -18033,11 +17959,15 @@ entities: 30486: -40.46671,-66.25802 30487: -39.951084,-66.000206 30559: -82.56286,17.032284 + 32114: -87,69 + 32786: 78.87282,-29.280197 + 33135: -112.462746,42.1682 + 33147: -110.53625,44.72483 + 33148: -119,40 - node: color: '#FFFFFFFF' id: grasssnowa2 decals: - 2935: 47,-6 3915: 39,-20 3929: 40.358955,-14.632225 3938: 40.360306,-19.139091 @@ -18283,6 +18213,12 @@ entities: 30939: -23.17283,-56.12167 30940: -22.693665,-55.55917 30941: -22.43672,-56.43417 + 32011: 45.882797,-5.8829646 + 32576: -43.0588,74.8551 + 32581: -40.636925,74.55823 + 32585: -40.033752,75.88208 + 32773: 77.71657,-26.639572 + 32782: 76.62282,-28.311447 - node: color: '#FFFFFFF2' id: grasssnowa3 @@ -18299,7 +18235,6 @@ entities: 3911: 42,-21 3920: 42,-22 3932: 39.273663,-19.446875 - 3959: 42.570133,-10.4872875 3966: 41.39177,-20.537317 5659: 31.530373,-25.107327 5676: 32.439728,-23.674889 @@ -18476,6 +18411,21 @@ entities: 29247: -81.95743,62.15849 29250: -79.89493,62.267864 30488: -39.41202,-73.92208 + 32012: 46.226547,-5.4142146 + 32013: 46.520397,-5.9767146 + 32017: 47.10935,-6.543297 + 32020: 45.67185,-7.043297 + 32024: 49.187473,-5.168297 + 32115: -89,66 + 32582: -35.111877,73.05823 + 32586: -36.518127,74.678955 + 32774: 77.98219,-27.061447 + 32777: 79.73219,-27.827072 + 32781: 79.31032,-29.092697 + 32790: 76.82594,-34.233322 + 33134: -111.931496,42.7307 + 33141: -116.428955,41.058826 + 33142: -115.658325,41.57445 - node: color: '#00000057' id: grasssnowb1 @@ -18486,12 +18436,9 @@ entities: color: '#FFFFFFFF' id: grasssnowb1 decals: - 2927: 43,-11 2938: 42,-10 3912: 40,-21 3941: 40.46347,-16.2612 - 3946: 46.290226,-5.4023395 - 3951: 40.891052,-11.563536 3965: 40.453545,-20.745651 3976: 48.07251,-1.1483564 3980: 47.76853,0.1893884 @@ -18744,19 +18691,38 @@ entities: 30933: -23.353386,-55.607784 30935: -21.832554,-54.232784 30943: -22.310831,-55.989727 + 31420: 43.519238,-8.4626255 + 31421: 43.159863,-10.0720005 + 32016: 46.406223,-6.574547 + 32108: -88,69 + 32118: -85,68 + 32788: 76.82594,-30.358322 + 33137: -116.022705,40.433826 + 33140: -117.053955,40.6057 + 33143: -114.87013,41.4807 + 33144: -114.02638,41.69945 + 33145: -109.8175,44.97483 + 33151: -116,51 + 33155: -113,53 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowb1 + decals: + 31526: 29.992783,7.0598288 + 31540: 29.992783,4.7942038 + 31547: 30.492783,3.5285788 + 31548: 31.153152,10.714993 + 31549: 30.887527,10.074368 - node: color: '#FFFFFFFF' id: grasssnowb2 decals: - 2907: 46,-6 3917: 41,-18 3936: 41.561005,-21.437664 3944: 40.30993,-12.988655 - 3945: 47.00882,-4.291942 3950: 41.57002,-9.822931 3954: 42.29743,-8.113813 - 3958: 45.4741,-5.6859965 - 3960: 43.389008,-9.872751 3964: 41.47438,-17.842571 3971: 42.294525,-8.779509 3972: 41.77493,-9.529509 @@ -19036,6 +19002,20 @@ entities: 30466: -38.539524,-63.961082 30949: -22.843094,-54.223602 30952: -21.874344,-54.692352 + 32015: 45.937473,-6.574547 + 32019: 47.593723,-7.058922 + 32023: 47.937473,-4.402672 + 32113: -87,68 + 32116: -90,67 + 33156: -112,53 + 33164: -119,45 + 33165: -117,49 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowb2 + decals: + 31544: 30.758408,4.7317038 - node: color: '#FFFFFFFF' id: grasssnowb3 @@ -19045,8 +19025,6 @@ entities: 3939: 39.692635,-18.48516 3940: 40.46347,-15.469532 3947: 45.300316,-6.1224546 - 3961: 42.572716,-9.872751 - 3962: 46.660564,-6.2425213 3963: 41.380665,-15.748238 3969: 42.31774,-20.33459 3970: 42.647827,-7.6163497 @@ -19326,7 +19304,6 @@ entities: 25834: -126.42227,12.102348 25872: -122.06209,15.919683 25885: -127.92877,3.6093273 - 25888: -119.32448,-0.8970499 25892: -123.13531,-0.78933287 25894: -124.55718,-1.8987079 25903: -125.6066,0.276016 @@ -19486,10 +19463,32 @@ entities: 30477: -39.628742,-62.531532 30478: -38.62093,-62.719032 30485: -36.149788,-74.16029 - 30561: -81.01598,16.310158 30563: -81.78161,19.513283 30950: -22.35351,-53.786102 30951: -22.593094,-54.754852 + 31411: 42.784863,-9.9313755 + 31412: 43.019238,-9.4157505 + 31416: 43.284863,-8.7595005 + 32107: -91,67 + 32109: -86,68 + 32577: -42.34005,74.96448 + 33127: -112.10337,41.01195 + 33128: -110.85337,42.2932 + 33129: -113.44712,40.933826 + 33133: -111.056496,43.152576 + 33149: -119,44 + 33152: -115,52 + 33154: -116,50 + 33157: -110,54 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowb3 + decals: + 31528: 30.102158,6.4192038 + 31532: 30.414658,5.7942038 + 31550: 30.200027,10.964993 + 31551: 29.981277,10.230618 - node: color: '#FFFFFFFF' id: grasssnowc1 @@ -19883,6 +19882,24 @@ entities: 28324: 99.744514,-16.732248 28728: 32.83368,-26.686573 30560: -83.23473,16.985409 + 32578: -39.9338,74.01135 + 32583: -34.330627,73.05823 + 32588: -32.846252,74.553955 + 32779: 79.99782,-28.561447 + 32785: 79.01344,-29.967697 + 33130: -111.743996,41.902576 + 33131: -113.118996,41.51195 + 33132: -114.41587,40.94945 + 33136: -115.38208,40.82445 + 33146: -110.98937,43.88108 + 33150: -118,48 + 33153: -115,51 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowc1 + decals: + 31546: 30.086533,4.0442038 - node: color: '#FFFFFFB7' id: grasssnowc2 @@ -19924,7 +19941,6 @@ entities: id: grasssnowc2 decals: 2936: 41,-14 - 2937: 47,-5 3933: 39.294495,-20.737228 3935: 41.59532,-22.317652 3949: 42.0654,-9.197931 @@ -20236,6 +20252,25 @@ entities: 28228: 100.17786,-27.266617 30472: -31.824055,-63.328407 30942: -22.123331,-55.395977 + 31422: 43.175488,-9.3220005 + 31426: 42.800488,-9.6345005 + 31432: 42.691113,-10.1188755 + 32021: 48.04685,-3.9964218 + 32110: -90,66 + 32579: -39.136925,74.01135 + 32589: -32.158924,74.710205 + 32776: 79.07594,-28.108322 + 32780: 78.96657,-28.623947 + 32783: 76.93532,-29.061447 + 32787: 76.85719,-30.092697 + 32789: 76.96657,-33.983322 + 33138: -116.303955,40.01195 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: grasssnowc2 + decals: + 31536: 30.039658,5.4035788 - node: angle: 0.4014257279586958 rad color: '#FFFFFFFF' @@ -20475,17 +20510,23 @@ entities: 28256: 96.20215,-16.500359 30501: -40.086235,-66.07052 30562: -81.96911,18.747658 + 32014: 45.754772,-6.7892146 + 32018: 46.781223,-7.090172 + 32022: 48.7031,-4.840172 + 32112: -91,66 + 32117: -86,69 + 32580: -41.511925,74.88635 + 32584: -33.643127,72.83948 + 32775: 78.16969,-27.686447 + 32778: 78.62282,-27.155197 + 32784: 76.91969,-29.545822 + 33139: -116.960205,39.9182 - node: cleanable: True color: '#FF00006C' id: guy decals: 9704: -13.487419,69.73661 - - node: - color: '#1E9CFFFF' - id: h - decals: - 13645: 40.782272,52.02134 - node: angle: -0.6108652381980153 rad color: '#B02E265D' @@ -20573,24 +20614,6 @@ entities: decals: 13097: 62.030388,28.594536 13098: 61.927685,28.67581 - - node: - cleanable: True - angle: -1.7278759594743862 rad - color: '#DE3A3AFF' - id: i - decals: - 17093: -66.55285,-1.9333715 - 17094: -66.505974,-1.8396215 - 17095: -66.412224,-1.8083715 - - node: - cleanable: True - angle: -1.1519173063162575 rad - color: '#DE3A3AFF' - id: i - decals: - 17089: -69.5216,-5.8083715 - 17090: -69.5216,-5.9177465 - 17091: -69.49035,-5.7302465 - node: color: '#FFFFFFFF' id: largebrush @@ -20609,6 +20632,33 @@ entities: 30924: -21.978386,-56.205006 30925: -21.978386,-56.205006 30926: -22.006165,-55.864727 + 31067: -30.002224,46.9943 + 31068: -29.861599,46.916176 + 31069: -30.267849,46.728676 + 31070: 42.000404,-61.02144 + 31071: 42.062904,-61.130814 + 31072: 41.844154,-61.005814 + 31073: 41.937904,-61.443314 + 31074: 42.32853,-61.224564 + 31075: 26.961561,-60.803646 + 31076: 27.195936,-61.03802 + 31077: 58.96402,-49.076595 + 31078: 59.33902,-49.02972 + 31079: 59.05777,-49.37347 + 31080: 58.65152,-49.076595 + 31081: 58.792145,-48.68597 + 31127: -97.94708,21.99856 + 31128: -98.16583,22.90481 + 31129: -98.332184,21.876637 + 31130: -98.38947,22.44666 + 31131: -98.120384,23.44666 + 31360: 56.939457,-10.156067 + 31361: 56.89779,-9.8644 + 31362: 56.96723,-9.767178 + 31363: 57.001957,-10.197734 + 31364: 64.04089,-0.009660006 + 31365: 63.978394,0.037214994 + 31366: 63.99402,-0.275285 - node: cleanable: True angle: 4.537856055185257 rad @@ -20940,19 +20990,6 @@ entities: 16406: 57.9809,33.253956 16407: 57.032986,33.33729 16408: 57.178818,32.785206 - - node: - angle: 0.5934119456780721 rad - color: '#9B000034' - id: line - decals: - 22987: -76.183205,56.185253 - 22988: -75.98008,56.154003 - 22989: -76.19883,56.435253 - 22990: -76.44883,56.66963 - 22991: -76.120705,56.13838 - 22992: -75.94883,56.23213 - 22993: -76.120705,56.216503 - 22994: -76.23008,56.10713 - node: cleanable: True angle: 1.1519173063162575 rad @@ -20978,15 +21015,6 @@ entities: 24471: 26.774237,52.716778 24472: 27.633612,53.123028 24473: 27.367987,53.044903 - - node: - cleanable: True - angle: -1.0297442586766545 rad - color: '#FFFFFF47' - id: line - decals: - 16450: -79.04311,12.968632 - 16451: -79.02749,12.765507 - 16452: -79.27749,12.656132 - node: angle: -0.06981317007977318 rad color: '#000000FF' @@ -21084,6 +21112,20 @@ entities: id: minus decals: 19565: -128.63626,4.9629827 + - node: + cleanable: True + angle: -1.1693705988362009 rad + color: '#CDCCC3FF' + id: minus + decals: + 31757: 50.350594,-5.6567373 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#CDCCC3FF' + id: minus + decals: + 31758: 50.2106,-5.6279306 - node: cleanable: True angle: -2.9670597283903604 rad @@ -21241,25 +21283,6 @@ entities: id: minus decals: 20349: -125.05981,7.7540236 - - node: - color: '#1E9CFFFF' - id: o - decals: - 13646: 41.141647,52.05259 - - node: - cleanable: True - angle: -0.3839724354387525 rad - color: '#DE3A3AFF' - id: o - decals: - 17092: -66.380974,-1.9802465 - - node: - cleanable: True - angle: 0.19198621771937624 rad - color: '#DE3A3AFF' - id: o - decals: - 17088: -69.662224,-5.9177465 - node: angle: -0.6981317007977318 rad color: '#FFFFFFFF' @@ -21309,11 +21332,6 @@ entities: 12907: -10.965129,34.789845 12908: -10.949504,34.86797 12909: -10.75878,35.039845 - - node: - color: '#3C44AAFF' - id: prolizard - decals: - 24461: -53.034454,24.766241 - node: cleanable: True angle: -0.5235987755982988 rad @@ -21330,6 +21348,13 @@ entities: decals: 13310: -8.856099,73.81056 13311: -8.887349,73.79494 + - node: + cleanable: True + angle: -1.1344640137963142 rad + color: '#AD958417' + id: shotgun + decals: + 31974: -77.29589,15.931782 - node: cleanable: True angle: 1.7278759594743862 rad @@ -21345,17 +21370,17 @@ entities: 13947: -39.895836,-24.019651 - node: cleanable: True - color: '#951710FF' + angle: 6.632251157578453 rad + color: '#3200009E' id: skull decals: - 23922: 98.4411,2.9343514 + 31895: -80.70467,12.970215 - node: cleanable: True - angle: 1.5707963267948966 rad - color: '#B32828FF' + color: '#951710FF' id: skull decals: - 29839: -84.79829,33.901302 + 23922: 98.4411,2.9343514 - node: cleanable: True angle: -3.141592653589793 rad @@ -21477,29 +21502,6 @@ entities: 30797: 99.75944,-46.854088 30798: 99.74381,-46.541588 30799: 99.79069,-46.354088 - - node: - color: '#780000B2' - id: smallbrush - decals: - 11505: -57.047676,43.418846 - 11506: -56.69606,44.955303 - 11507: -56.891403,43.61416 - 11508: -57.190926,43.223534 - 11509: -56.617924,42.819885 - 11510: -56.27933,42.963116 - 11511: -57.09977,43.405823 - 11515: -56.722107,44.43447 - 11516: -56.526764,45.37197 - 11522: -57.38627,43.015198 - - node: - color: '#780000CC' - id: smallbrush - decals: - 11494: -56.162125,43.640198 - 11495: -56.00585,43.015198 - 11496: -56.995586,42.937073 - 11497: -56.0319,43.02822 - 11498: -56.09701,43.34072 - node: color: '#9200003E' id: smallbrush @@ -21815,14 +21817,6 @@ entities: id: splatter decals: 29006: 14.844133,-28.691467 - - node: - cleanable: True - angle: -0.767944870877505 rad - color: '#1A394A25' - id: splatter - decals: - 21288: -69.12466,-9.384754 - 21289: -68.90591,-9.181629 - node: cleanable: True color: '#25ACDC1F' @@ -21833,6 +21827,52 @@ entities: 28893: -36.730877,21.425402 28894: -36.991295,21.269152 28895: -37.085045,21.362902 + - node: + cleanable: True + angle: 1.9198621771937625 rad + color: '#3200009E' + id: splatter + decals: + 31837: -77.24061,16.042938 + - node: + cleanable: True + angle: 8.203047484373348 rad + color: '#3200009E' + id: splatter + decals: + 31885: -77.90477,16.746063 + 31886: -78.36057,16.3945 + 31887: -78.08709,16.628876 + 31888: -78.46475,16.980438 + 31889: -78.85544,16.772106 + 31890: -79.29821,17.110647 + 31891: -79.88424,16.83721 + 31892: -79.53262,17.761688 + 31893: -79.25914,17.722626 + 31894: -80.00144,17.852835 + - node: + cleanable: True + angle: 9.773843811168245 rad + color: '#3200009E' + id: splatter + decals: + 31867: -80.10562,17.475231 + 31868: -79.44146,17.188772 + 31869: -79.88424,17.045544 + 31870: -79.55867,17.970022 + 31871: -79.42844,17.449188 + 31872: -79.871216,17.48825 + 31873: -78.95962,17.14971 + 31874: -79.48053,16.798147 + 31875: -80.10562,17.136688 + 31876: -78.93357,16.928356 + 31877: -79.62378,17.332 + 31878: -78.97264,17.006481 + 31879: -79.649826,17.058563 + 31880: -79.063805,17.501272 + 31881: -79.15496,17.527313 + 31883: -78.45173,16.824188 + 31884: -77.76152,16.225231 - node: color: '#3F04005E' id: splatter @@ -22264,6 +22304,14 @@ entities: 12794: -8.761542,73.06585 12795: -9.217297,73.11719 12796: -8.864247,73.1621 + - node: + cleanable: True + color: '#55391A34' + id: splatter + decals: + 31787: 65.96012,-53.129868 + 31789: 66.08512,-53.301743 + 31790: 66.444496,-53.004868 - node: cleanable: True color: '#57121237' @@ -22301,11 +22349,10 @@ entities: 30761: 99.24381,-46.104088 - node: cleanable: True - color: '#571212D0' + color: '#572F0068' id: splatter decals: - 2180: 21.951265,15.075151 - 2181: 22.09189,14.918901 + 31804: 66.11637,-52.989243 - node: cleanable: True color: '#5A42228F' @@ -22607,30 +22654,15 @@ entities: 21405: -64.525154,53.496273 21406: -64.493904,53.574398 21407: -63.337654,54.402523 - 21408: -65.35328,49.761898 - 21409: -65.47828,49.527523 - 21410: -65.681404,49.402523 21411: -65.63453,49.933773 21412: -65.587654,50.136898 21413: -65.66578,49.746273 21414: -65.931404,49.636898 21415: -66.400154,49.340023 - 21416: -66.60328,49.136898 - 21417: -66.618904,49.011898 - 21418: -66.66578,48.902523 - 21419: -66.368904,49.043148 21420: -65.94703,49.527523 - 21421: -66.32203,48.996273 - 21422: -66.69703,48.371273 - 21423: -67.181404,48.418148 - 21424: -67.556404,48.465023 21425: -68.07203,48.511898 21426: -68.22828,48.683773 21427: -68.29078,48.668148 - 21428: -67.72828,48.543148 - 21429: -67.16578,48.574398 - 21430: -66.775154,48.621273 - 21431: -66.50953,49.011898 21432: -66.38453,49.449398 21433: -65.35328,50.746273 21434: -65.587654,50.465023 @@ -22735,6 +22767,31 @@ entities: 13949: -37.614586,-23.832151 13950: -37.552086,-24.066526 13951: -37.81771,-24.488401 + - node: + color: '#683E009B' + id: splatter + decals: + 31961: -77.3586,10.717756 + 31962: -77.25443,10.769839 + 31963: -77.16068,10.749006 + 31964: -76.86901,10.728172 + 31965: -76.61901,10.634422 + 31966: -76.82735,10.561506 + 31967: -77.19193,10.655256 + 31975: -77.31693,11.665672 + 31976: -77.05651,11.707339 + 31977: -76.95235,11.624006 + 31978: -76.62943,11.696922 + 31979: -76.86901,11.582339 + 31980: -75.25155,10.728172 + 31981: -75.07446,10.832339 + 31982: -74.959885,10.769839 + 31983: -74.647385,10.707339 + 31984: -74.6578,10.707339 + 31985: -75.29321,11.749006 + 31986: -75.06405,11.759422 + 31987: -74.9078,11.676089 + 31988: -74.7203,11.769839 - node: cleanable: True color: '#6ECCFF42' @@ -22819,35 +22876,14 @@ entities: 23636: -75.80344,35.66672 23637: -75.74094,35.557346 - node: - color: '#78000099' - id: splatter - decals: - 11478: -57.09977,42.89801 - 11479: -56.565834,43.05426 - 11480: -56.943493,43.405823 - 11481: -56.201195,43.262596 - 11482: -56.630947,43.236553 - 11483: -56.578857,43.483948 - 11484: -56.69606,43.015198 - 11485: -56.448627,42.72874 - 11486: -56.683037,43.02822 - 11487: -56.656994,43.288635 - 11488: -56.956516,43.05426 - 11489: -56.383514,43.275616 - 11490: -55.602146,43.35374 - 11491: -56.383514,43.34072 - 11492: -56.357468,43.97874 - 11493: -56.539787,43.718323 - - node: - color: '#780000CC' + cleanable: True + color: '#75590069' id: splatter decals: - 11499: -56.59188,43.705303 - 11500: -56.51374,44.004784 - 11501: -56.46165,44.499573 - 11502: -56.46165,44.851135 - 11503: -56.201195,44.23916 - 11504: -56.292355,45.111553 + 31791: 66.08512,-53.270493 + 31792: 66.069496,-53.395493 + 31793: 66.475746,-52.942368 + 31795: 66.163246,-53.192368 - node: cleanable: True color: '#79150096' @@ -22893,18 +22929,34 @@ entities: 24464: 27.024237,52.888653 - node: cleanable: True - angle: -0.767944870877505 rad - color: '#96DAFF53' + color: '#96DAFF69' id: splatter decals: - 21286: -69.10903,-9.150379 - 21287: -68.78091,-9.369129 + 12720: -27.225214,44.004463 - node: - cleanable: True - color: '#96DAFF69' + color: '#96DAFF7F' id: splatter decals: - 12720: -27.225214,44.004463 + 32597: -66.699,49.362892 + 32598: -66.90212,49.347267 + 32599: -66.99587,49.347267 + 32600: -67.199,49.222267 + 32601: -67.24587,49.175392 + 32602: -67.199,49.503517 + 32603: -67.04275,49.566017 + 32604: -66.93337,49.581642 + 32605: -64.62087,52.534767 + 32606: -64.55837,52.800392 + 32607: -64.54275,53.066017 + 32608: -64.58962,53.394142 + 32609: -64.6365,53.816017 + 32610: -64.62087,54.066017 + 32611: -64.62087,54.066017 + 32612: -64.49587,54.706642 + 32613: -64.449,54.206642 + 32614: -64.449,54.503517 + 32615: -64.449,54.331642 + 32616: -64.48025,53.878517 - node: cleanable: True color: '#98CF446D' @@ -22912,14 +22964,6 @@ entities: decals: 28896: -36.576893,23.50244 28897: -36.688004,23.34966 - - node: - cleanable: True - angle: 0.5934119456780721 rad - color: '#9B000059' - id: splatter - decals: - 22995: -76.01133,56.060253 - 22996: -75.69883,56.20088 - node: cleanable: True angle: 1.1519173063162575 rad @@ -23007,12 +23051,6 @@ entities: 12714: -26.178339,43.785713 12715: -25.803339,44.035713 12716: -26.209589,44.254463 - - node: - cleanable: True - color: '#9C20206C' - id: splatter - decals: - 2182: 22.12314,15.122026 - node: cleanable: True color: '#9C202073' @@ -23020,64 +23058,6 @@ entities: decals: 28865: -41.965164,21.251276 28866: -42.01204,21.126276 - - node: - cleanable: True - angle: -0.767944870877505 rad - color: '#9C202082' - id: splatter - decals: - 21290: -68.14028,-7.4160037 - 21291: -67.73403,-7.5253787 - 21292: -70.42153,-6.3535028 - 21293: -70.54653,-6.2753778 - 21294: -65.57778,-6.3066287 - 21295: -65.60903,-6.4785037 - 21296: -71.15591,-2.8367677 - 21297: -70.74966,-2.6336432 - 21298: -71.32778,-2.3836427 - 21299: -71.31216,-2.5867677 - 21300: -70.12466,-1.5555182 - 21301: -70.56216,-1.7273932 - - node: - cleanable: True - angle: -0.767944870877505 rad - color: '#9C202085' - id: splatter - decals: - 21278: -69.42153,-7.5878787 - 21279: -69.34341,-7.6660037 - 21280: -69.51528,-8.041004 - 21281: -69.04653,-7.6035037 - 21282: -67.54653,-9.181629 - 21283: -67.06216,-8.822254 - 21284: -66.87466,-8.728504 - 21285: -67.17153,-9.134754 - - node: - cleanable: True - color: '#9C2020B1' - id: splatter - decals: - 17026: -70.98227,-4.0613365 - 17027: -70.935394,-4.3113365 - 17028: -70.79477,-4.3894615 - 17029: -65.279144,-4.0613365 - 17030: -64.95102,-4.1707115 - 17031: -64.82602,-3.7957115 - 17032: -64.82602,-3.5300865 - - node: - cleanable: True - color: '#9FED5896' - id: splatter - decals: - 29199: -91.7825,55.875885 - 29212: -91.37625,56.000885 - - node: - cleanable: True - color: '#A4610696' - id: splatter - decals: - 29225: -91.64188,55.89151 - 29226: -91.48563,56.063385 - node: cleanable: True angle: 1.5707963267948966 rad @@ -23132,26 +23112,6 @@ entities: decals: 12319: -34.6996,-53.936302 12320: -35.277725,-53.998802 - - node: - cleanable: True - color: '#DE3A3A76' - id: splatter - decals: - 17033: -64.98227,-4.0613365 - 17034: -64.98227,-4.0144615 - 17035: -65.060394,-3.9832115 - 17036: -64.70102,-3.8269615 - - node: - cleanable: True - color: '#DE3A3A7F' - id: splatter - decals: - 17020: -70.904144,-3.8425865 - 17021: -70.88852,-3.9832115 - 17022: -70.91977,-4.1863365 - 17023: -71.029144,-3.9832115 - 17024: -71.04477,-3.9519615 - 17025: -70.904144,-4.1082115 - node: cleanable: True color: '#DE3A3A95' @@ -23160,15 +23120,6 @@ entities: 12717: -26.037714,44.035713 12718: -25.756464,44.02009 12719: -26.147089,43.58259 - - node: - cleanable: True - color: '#DE3A3A96' - id: splatter - decals: - 29161: -91.70438,57.95401 - 29163: -92.095,58.032135 - 29172: -91.67313,57.844635 - 29173: -92.04813,57.844635 - node: cleanable: True angle: 1.5707963267948966 rad @@ -23354,29 +23305,6 @@ entities: id: splatter decals: 20233: -123.96577,0.98558366 - - node: - color: '#FFFFFF05' - id: splatter - decals: - 16986: -79.17978,12.814295 - 16987: -80.96103,12.42367 - 16988: -80.86728,13.57992 - - node: - color: '#FFFFFF2E' - id: splatter - decals: - 14526: -54.84175,-28.203117 - - node: - color: '#FFFFFF33' - id: splatter - decals: - 16935: -78.757904,12.970545 - - node: - color: '#FFFFFF47' - id: splatter - decals: - 14539: -54.96675,-28.124992 - 14540: -54.732376,-27.859367 - node: color: '#FFFFFF4A' id: splatter @@ -23666,37 +23594,6 @@ entities: 8347: 51.582794,-29.974789 8348: 51.53592,-29.802914 8349: 51.457794,-29.677914 - 16989: -76.726654,12.92367 - 16990: -76.601654,12.64242 - 16991: -76.289154,12.439295 - 16992: -75.92978,12.408045 - 16993: -75.49228,12.595545 - 16994: -75.49228,12.86117 - 16995: -75.74228,13.220545 - 16996: -76.226654,12.73617 - 16997: -76.11728,12.95492 - 16998: -75.96103,13.033045 - 16999: -75.80478,13.095545 - 17000: -75.664154,13.14242 - 17001: -75.05478,14.04867 - 17002: -75.351654,14.033045 - 17003: -75.46103,13.845545 - 17004: -75.27353,13.67367 - 17005: -75.101654,13.595545 - 17006: -74.945404,13.533045 - 17007: -74.86728,13.564295 - 17008: -74.851654,13.814295 - 17009: -74.851654,14.07992 - 17010: -75.476654,14.126795 - 17011: -77.11728,11.92367 - 17012: -77.21103,13.29867 - 17013: -77.17978,12.845545 - 17014: -77.46103,13.283045 - 17015: -77.476654,12.70492 - 17016: -76.882904,12.626795 - 17017: -76.55478,13.689295 - 17018: -76.570404,13.251795 - 17019: -76.83603,13.220545 - node: color: '#FFFFFF53' id: splatter @@ -24029,6 +23926,80 @@ entities: 22655: 47.399303,-32.396 22656: 47.41493,-32.4585 22657: 47.41493,-32.474125 + 32033: -86.5827,64.01369 + 32034: -86.35354,63.701187 + 32035: -85.97854,63.628265 + 32036: -85.5202,63.857437 + 32037: -85.50979,64.13869 + 32038: -85.43687,64.659515 + 32039: -85.63479,65.2116 + 32040: -85.91604,65.565765 + 32041: -87.38479,65.0241 + 32042: -87.03062,64.70119 + 32043: -86.7702,64.99285 + 32044: -86.55145,65.32619 + 32045: -86.18687,65.440765 + 32046: -86.66604,64.79494 + 32047: -86.67645,64.38869 + 32048: -86.62437,64.190765 + 32049: -85.5202,64.753265 + 32050: -85.74937,65.13869 + 32051: -86.13479,65.3991 + 32052: -86.44729,64.097015 + 32053: -86.79104,64.43035 + 32054: -86.49937,64.41994 + 32055: -86.32229,63.815765 + 32056: -85.38479,64.503265 + 32057: -87.16452,64.79494 + 32058: -87.39369,65.05535 + 32059: -87.54994,65.18035 + 32060: -87.41452,64.7116 + 32061: -86.82077,64.847015 + 32062: -86.54994,65.347015 + 32063: -86.560356,65.628265 + 32064: -87.11244,66.51369 + 32065: -86.94577,66.29494 + 32066: -86.529106,65.878265 + 32067: -87.779106,65.61785 + 32068: -88.091606,65.690765 + 32069: -88.33119,65.85744 + 32070: -88.466606,66.1491 + 32071: -88.94765,66.61277 + 32072: -89.20806,66.696106 + 32073: -89.33306,67.05027 + 32074: -89.07265,67.404434 + 32075: -89.14556,66.696106 + 32076: -89.38515,66.914856 + 32077: -89.062225,67.341934 + 32078: -88.57265,67.404434 + 32079: -87.9164,67.352356 + 32080: -87.57265,67.20652 + 32081: -87.55181,66.998184 + 32082: -88.05181,67.321106 + 32083: -88.51015,67.404434 + 32084: -87.70806,66.89402 + 32085: -87.437225,66.42527 + 32086: -88.38515,66.248184 + 32087: -88.687225,66.560684 + 32088: -89.062225,66.696106 + 32089: -89.26015,66.841934 + 32090: -88.374725,65.841934 + 32091: -88.1664,65.58152 + 32092: -87.905975,65.39402 + 32093: -86.44765,65.80027 + 32094: -86.687225,66.05027 + 32095: -86.8539,66.196106 + 32096: -86.80181,66.383606 + 32097: -87.39509,65.26332 + 32098: -86.95759,65.336235 + 32099: -86.82217,65.617485 + 32100: -86.94717,65.38832 + 32101: -86.420166,65.20604 + 32102: -85.36548,65.27635 + 32103: -85.27173,65.04198 + 32104: -85.64673,65.1826 + 32105: -85.74048,63.870102 + 32106: -85.951416,63.61229 - node: color: '#FFFFFF63' id: splatter @@ -24284,13 +24255,6 @@ entities: 16785: 73.359344,14.914427 16786: 73.28122,14.836302 16787: 72.53122,14.523802 - - node: - cleanable: True - color: '#FFFFFF63' - id: splatter - decals: - 16448: -78.48955,13.187382 - 16449: -78.44267,12.828007 - node: color: '#FFFFFF66' id: splatter @@ -24445,6 +24409,20 @@ entities: 27552: -102.541176,34.867912 27553: -102.71305,35.227287 27554: -103.40055,35.774162 + 31896: -84.20477,33.613674 + 31897: -84.5954,33.8168 + 31898: -84.57977,34.144924 + 31899: -84.39227,34.3793 + 31900: -84.17352,34.4418 + 31901: -84.56415,33.863674 + 31902: -84.54852,34.1293 + 31903: -84.31415,34.144924 + 31904: -84.39227,33.8793 + 31905: -84.25165,33.738674 + 31906: -83.62857,34.59805 + 31907: -83.37857,34.53555 + 31908: -83.581696,33.488674 + 31909: -84.01878,33.613674 - node: color: '#FFFFFF6B' id: splatter @@ -24744,6 +24722,39 @@ entities: 14309: 98.28794,-21.81841 14310: 97.798355,-21.682993 14311: 97.35044,-21.641327 + 31094: 47.71854,-33.655933 + 31095: 47.859165,-33.51531 + 31096: 48.21854,-33.687183 + 31097: 47.921665,-33.14031 + 31098: 46.53104,-33.374683 + 31099: 46.515415,-32.95281 + 31100: 46.49979,-32.562183 + 31101: 46.827915,-32.51531 + 31102: 46.78104,-33.343433 + 31103: 46.72526,-31.780933 + 31104: 47.03776,-31.718433 + 31105: 47.240887,-31.359058 + 31106: 47.28776,-31.499683 + 31107: 42.109455,-29.93977 + 31108: 41.828205,-30.03352 + 31109: 41.59383,-29.705395 + 31110: 41.484455,-29.924145 + 31111: 42.59383,-29.50227 + 31112: 42.84383,-29.47102 + 31113: 47.46235,-33.549145 + 31114: 47.1186,-33.43977 + 31115: 46.96235,-33.424145 + 31116: 48.9936,-33.516125 + 31117: 49.39985,-33.828625 + 31118: 49.46235,-33.922375 + 31119: 51.44499,-37.536003 + 31120: 51.085613,-37.33288 + 31121: 50.866863,-37.36413 + 31122: 51.679363,-37.567253 + 31123: 51.56999,-37.80163 + 31124: 50.85124,-34.811436 + 31125: 50.804363,-34.748936 + 31126: 50.56999,-34.686436 - node: color: '#FFFFFF76' id: splatter @@ -24765,11 +24776,6 @@ entities: 9971: 61.43078,-16.913376 9973: 61.30578,-17.257126 9974: 61.24328,-17.350876 - 9978: 56.133904,-12.660566 - 9979: 56.24328,-12.676191 - 9981: 56.415154,-12.957441 - 9982: 56.477654,-13.144941 - 9983: 56.49328,-13.285566 9985: 57.821404,-12.660566 9986: 57.83703,-12.660566 9987: 58.071404,-12.551191 @@ -24849,65 +24855,6 @@ entities: 14600: -37.60524,-33.61631 14601: -37.41774,-33.74131 14602: -37.245865,-33.850685 - 29036: -86.74585,64.41287 - 29037: -86.917725,64.38162 - 29038: -86.636475,64.25662 - 29039: -86.55835,64.13162 - 29040: -86.511475,64.08475 - 29041: -86.511475,64.08475 - 29042: -86.74585,64.366 - 29043: -86.980225,64.50662 - 29044: -87.2771,64.53787 - 29045: -87.62085,64.491 - 29046: -88.198975,64.366 - 29047: -89.167725,64.116 - 29048: -89.292725,64.08475 - 29049: -89.230225,64.39725 - 29050: -89.1521,64.41287 - 29051: -88.2146,65.03787 - 29052: -88.05835,65.06912 - 29053: -88.05835,65.06912 - 29054: -89.480225,63.975372 - 29055: -89.323975,63.772247 - 29056: -89.24585,63.615997 - 29057: -88.6521,64.38162 - 29058: -88.323975,64.47537 - 29059: -88.542725,63.475372 - 29060: -88.667725,63.475372 - 29061: -88.480225,62.959747 - 29062: -88.480225,62.350372 - 29063: -88.5896,62.084747 - 29064: -88.5896,61.897247 - 29065: -88.55835,61.662872 - 29066: -88.55835,61.662872 - 29067: -87.4646,61.631622 - 29068: -87.62085,61.819122 - 29069: -87.480225,66.741 - 29070: -87.7146,66.6785 - 29071: -88.198975,66.616 - 29072: -87.4646,67.366 - 29073: -87.4646,67.366 - 29074: -87.667725,67.50662 - 29075: -87.792725,67.6785 - 29076: -89.62085,67.45975 - 29077: -89.823975,67.33475 - 29078: -90.43335,66.89725 - 29079: -90.30835,66.91287 - 29080: -90.4646,66.9285 - 29081: -90.4646,66.77225 - 29082: -90.230225,66.89725 - 29083: -89.948975,67.22537 - 29084: -89.99585,67.25662 - 29085: -89.9021,67.35037 - 29086: -89.823975,66.75662 - 29087: -89.62085,66.616 - 29088: -89.355225,66.45975 - 29089: -89.18335,66.45975 - 29090: -88.761475,66.39725 - 29091: -90.167725,66.85037 - 29092: -90.167725,66.85037 - 29093: -90.0271,66.58475 - 29094: -89.9646,66.53787 - node: color: '#FFFFFF79' id: splatter @@ -25298,6 +25245,172 @@ entities: 21383: -85.73235,2.338748 21384: -85.333916,2.338748 21385: -85.00579,2.3153105 + - node: + zIndex: -1 + color: '#FFFFFF7F' + id: splatter + decals: + 32842: -109.70304,45.431107 + 32843: -109.20304,45.431107 + 32844: -108.92179,45.462357 + 32848: -107.76554,45.431107 + 32849: -109.499916,45.618607 + 32850: -108.92179,45.649857 + 32851: -107.062416,45.587357 + 32852: -106.999916,45.60298 + 32853: -106.777916,45.462357 + 32854: -105.48104,45.69673 + 32855: -105.527916,46.181107 + 32856: -105.559166,46.806107 + 32857: -105.32479,47.181107 + 32858: -105.590416,46.50923 + 32859: -105.496666,47.499535 + 32860: -105.496666,47.749535 + 32861: -105.277916,47.968285 + 32862: -105.60604,48.14016 + 32863: -105.715416,48.45266 + 32864: -105.496666,49.093285 + 32865: -105.465416,49.17141 + 32866: -105.684166,48.937035 + 32867: -105.809166,48.530785 + 32868: -105.715416,48.624535 + 32869: -105.590416,48.780785 + 32870: -105.60604,47.405785 + 32871: -105.63729,47.155785 + 32872: -105.465416,46.95266 + 32873: -105.57479,50.07766 + 32874: -105.66854,50.530785 + 32875: -105.934166,50.937035 + 32876: -106.152916,51.26516 + 32877: -106.35604,51.312035 + 32878: -106.35604,51.29641 + 32879: -105.902916,51.20266 + 32880: -105.590416,50.937035 + 32881: -105.402916,50.624535 + 32882: -105.465416,50.655785 + 32883: -105.746666,51.187035 + 32884: -105.82479,51.249535 + 32885: -105.41854,50.843285 + 32886: -105.35604,50.39016 + 32887: -110.45439,51.42141 + 32888: -110.79814,51.29641 + 32889: -111.06377,51.17141 + 32890: -111.31377,50.64016 + 32891: -111.43877,50.14016 + 32892: -111.45439,49.82766 + 32893: -111.51689,50.468285 + 32894: -111.32939,51.249535 + 32895: -111.01689,51.48391 + 32896: -110.92314,51.468285 + 32897: -111.31377,51.07766 + 32898: -111.47002,50.968285 + 32899: -111.40752,51.187035 + 32900: -111.37627,51.437035 + 32901: -110.47002,51.48391 + 32902: -111.56377,50.405785 + 32903: -111.48564,48.562035 + 32904: -111.36064,48.39016 + 32905: -111.34502,47.89016 + 32906: -111.51689,47.39016 + 32907: -111.62627,47.187035 + 32908: -111.47002,47.60891 + 32909: -111.42314,48.249535 + 32910: -111.42314,48.593285 + 32911: -112.51689,44.874535 + 32912: -112.28252,45.187035 + 32913: -112.04814,45.26516 + 32914: -111.82939,45.39016 + 32915: -111.82939,45.499535 + 32916: -112.48564,45.20266 + 32917: -112.98564,44.42141 + 32918: -112.56377,44.54641 + 32919: -111.45439,46.218285 + 32920: -111.28252,46.82766 + 32921: -111.40752,47.249535 + 32922: -111.54814,47.48391 + 32923: -111.56377,47.374535 + 32924: -111.51689,46.73391 + 32925: -110.65752,45.37637 + 32926: -110.53252,45.610744 + 32927: -110.25127,46.09512 + 32928: -109.93877,46.110744 + 32929: -109.70439,45.829494 + 32930: -109.73564,45.59512 + 32931: -109.86064,45.673244 + 32932: -110.18877,45.579494 + 32933: -110.75127,44.90762 + 32934: -109.57939,45.97012 + 32935: -109.47002,45.59512 + 32936: -110.06377,45.641994 + 32937: -110.01689,45.84512 + 32938: -109.385544,45.944763 + 32939: -109.354294,45.819763 + 32940: -115.50165,41.49164 + 32941: -114.9704,41.67914 + 32942: -114.6579,41.99164 + 32943: -114.11102,42.288513 + 32944: -113.89227,42.351013 + 32945: -113.73602,42.27289 + 32946: -114.3454,41.944763 + 32947: -114.54852,41.726013 + 32948: -114.82977,41.538513 + 32949: -115.20477,41.632263 + 32950: -115.43915,41.632263 + 32951: -115.76727,41.55414 + 32952: -115.95477,41.49164 + 32953: -116.79852,43.382263 + 32954: -116.0954,43.319763 + 32955: -115.70477,43.351013 + 32956: -115.01727,43.36664 + 32957: -114.67352,43.507263 + 32958: -116.48602,43.444763 + 32959: -116.56415,43.42914 + 32960: -115.4079,43.46039 + 32961: -116.95477,41.77289 + 32962: -116.3454,41.89789 + 32963: -116.0329,41.86664 + 32964: -115.75165,41.819763 + 32965: -115.25165,42.007263 + 32966: -115.4079,41.851013 + 32967: -116.31415,41.788513 + 32968: -116.64227,41.71039 + 32969: -114.79852,41.96039 + 32970: -114.48602,42.101013 + 32971: -114.11102,42.14789 + 32972: -113.5954,42.351013 + 32973: -113.23602,42.58539 + 32974: -113.0954,42.64789 + 32975: -112.50165,42.96039 + 32976: -112.4079,43.038513 + 32977: -112.76727,42.569763 + 32978: -112.82977,42.444763 + 32979: -112.81415,42.694763 + 32980: -113.61102,41.976013 + 32981: -113.9704,41.726013 + 32982: -114.17352,41.64789 + 32983: -113.73602,41.58539 + 32984: -113.45477,41.52289 + 32985: -113.54852,41.569763 + 32986: -115.73602,41.52289 + 32987: -115.50165,41.67914 + 32988: -116.5954,41.694763 + 32989: -114.743416,43.51398 + 32990: -114.44654,43.623356 + 32991: -114.25904,43.92023 + 32992: -114.10279,44.17023 + 32993: -114.29029,44.154606 + 32994: -112.19654,45.32648 + 32995: -112.10279,45.35773 + 32996: -112.60279,44.85773 + 32997: -112.243416,44.98273 + 32998: -111.69654,45.810856 + 32999: -111.54029,45.76398 + 33000: -111.462166,46.60773 + 33001: -107.341805,45.694122 + 33002: -107.13868,45.740997 + 33003: -107.35743,45.678497 + 33004: -106.62561,51.44347 + 33005: -107.234985,51.490345 - node: color: '#FFFFFF7F' id: splatter @@ -26591,146 +26704,6 @@ entities: 18305: -57.423935,-21.86489 18306: -56.93956,-22.286764 18307: -56.548935,-22.48989 - 18324: -54.23041,23.800344 - 18325: -54.183537,24.269094 - 18326: -53.839787,24.34722 - 18327: -53.91791,23.800344 - 18328: -53.94916,23.644094 - 18329: -53.996037,23.19097 - 18330: -54.07416,23.644094 - 18331: -54.23041,24.12847 - 18332: -53.964787,24.394094 - 18333: -53.714787,24.34722 - 18334: -53.996037,23.925344 - 18335: -53.85541,23.394094 - 18336: -53.76166,23.519094 - 18337: -53.996037,24.019094 - 18338: -54.371037,24.269094 - 18339: -53.66791,23.925344 - 18340: -53.41791,23.269094 - 18341: -53.308537,22.90972 - 18342: -53.246037,22.675344 - 18343: -53.23041,22.644094 - 18344: -53.88666,23.581594 - 18345: -54.32416,24.050344 - 18346: -54.214787,24.050344 - 18347: -53.66791,24.059973 - 18348: -53.621037,23.15892 - 18349: -53.308537,23.089647 - 18350: -53.027287,22.995897 - 18351: -52.652287,22.917772 - 18352: -52.82416,22.761522 - 18353: -52.98041,22.714647 - 18354: -52.82416,22.980272 - 18355: -53.13666,23.355272 - 18356: -53.44916,23.839647 - 18357: -53.496037,24.058397 - 18358: -53.339787,23.808397 - 18359: -53.152287,23.152147 - 18360: -53.089787,22.636522 - 18361: -52.79291,22.620897 - 18362: -52.746037,22.886522 - 18363: -52.683537,23.261522 - 18364: -52.746037,23.558397 - 18365: -53.277287,23.745897 - 18366: -53.32416,23.730272 - 18367: -52.94916,23.464647 - 18368: -52.79291,23.495897 - 18369: -52.714787,23.745897 - 18370: -52.63666,23.995897 - 18371: -52.63666,24.230272 - 18372: -52.57416,24.558397 - 18373: -52.57416,24.683397 - 18374: -52.777287,24.152147 - 18375: -53.19916,24.011522 - 18376: -53.48041,24.402147 - 18377: -53.44916,24.620897 - 18378: -53.26166,24.605272 - 18379: -53.183537,24.261522 - 18380: -52.964787,24.011522 - 18381: -52.933537,24.324022 - 18382: -53.121037,24.714647 - 18383: -53.29291,24.995897 - 18384: -53.29291,25.230272 - 18385: -53.246037,25.277147 - 18386: -52.88666,25.277147 - 18387: -52.652287,25.152147 - 18388: -52.60541,24.995897 - 18389: -53.058537,25.308397 - 18390: -53.23041,25.511522 - 18391: -52.76166,25.230272 - 18392: -52.66791,24.855272 - 18393: -53.058537,24.308397 - 18394: -53.04291,23.667772 - 18395: -53.01166,23.574022 - 18396: -52.902287,24.620897 - 18397: -53.183537,25.011522 - 18398: -53.23041,25.027147 - 18399: -52.82416,24.636522 - 18400: -52.746037,24.011522 - 18401: -52.652287,23.355272 - 18402: -52.66791,23.214647 - 18403: -53.371037,23.667772 - 18404: -54.089787,23.855272 - 18405: -54.35541,24.105272 - 18406: -53.76166,24.370897 - 18407: -53.246037,24.339647 - 18408: -53.04291,24.574022 - 18409: -52.85541,24.808397 - 18410: -54.308537,23.860931 - 18411: -54.35541,23.626556 - 18412: -53.76166,23.189056 - 18413: -53.402287,22.798431 - 18414: -53.29291,22.657806 - 18415: -52.85541,22.626556 - 18416: -52.54291,22.767181 - 18417: -52.464787,23.173431 - 18418: -52.54291,23.579681 - 18419: -52.54291,24.173431 - 18420: -54.061043,23.39217 - 18421: -54.201668,23.314045 - 18422: -54.279793,23.220295 - 18423: -54.170418,22.82967 - 18424: -54.170418,22.64217 - 18425: -54.217293,22.345295 - 18426: -54.248543,22.64217 - 18427: -54.279793,23.189045 - 18428: -54.279793,23.29842 - 18429: -54.311043,22.73592 - 18430: -54.311043,22.14217 - 18431: -54.326668,21.720295 - 18432: -54.201668,21.57967 - 18433: -53.967293,21.689045 - 18434: -53.811043,21.86092 - 18435: -53.764168,22.126545 - 18436: -53.701668,22.470295 - 18437: -53.701668,22.845295 - 18438: -53.701668,22.89217 - 18439: -53.654793,22.36092 - 18440: -53.686043,21.92342 - 18441: -53.686043,21.64217 - 18442: -53.686043,21.54842 - 18443: -54.295418,21.95467 - 18444: -54.342293,21.95467 - 18445: -54.045418,22.189045 - 18446: -53.686043,22.42342 - 18447: -53.623543,22.98592 - 18448: -54.014168,22.89217 - 18449: -54.279793,23.126545 - 18450: -54.311043,23.126545 - 18451: -54.170418,22.595295 - 18452: -54.092293,22.220295 - 18453: -53.607918,22.29842 - 18454: -53.654793,22.845295 - 18455: -53.514168,23.439045 - 18456: -53.342293,23.876545 - 18457: -54.529793,22.64217 - 18458: -54.514168,22.86092 - 18459: -54.514168,23.220295 - 18460: -54.436043,23.36092 - 18461: -53.654793,21.907795 - 18462: -53.545418,22.251545 - 18463: -53.248543,22.782795 18464: -85.37292,48.72838 18465: -85.20104,48.681503 18466: -85.12292,48.556503 @@ -27053,20 +27026,8 @@ entities: 21987: -29.204563,58.472122 21988: -28.517063,58.440872 21989: -27.563938,58.534622 - 21990: -26.392063,58.565872 - 21991: -26.032688,58.550247 - 21992: -25.735813,58.503372 - 21993: -25.173313,58.393997 - 21994: -24.673313,58.315872 - 21995: -26.126438,59.550247 - 21996: -29.548313,65.75231 - 21997: -29.313938,65.627304 21998: -28.923313,65.471054 21999: -28.892063,65.45543 - 22000: -29.720188,65.92419 - 22001: -29.735813,66.17419 - 22002: -29.626438,66.25231 - 22003: -29.017063,65.78356 22004: -28.517063,65.42418 22005: -27.829563,65.33043 22006: -27.626438,65.58043 @@ -27081,22 +27042,6 @@ entities: 22015: -27.313938,66.09606 22016: -27.782688,66.39294 22017: -28.079563,66.50231 - 22018: -34.75144,65.627304 - 22019: -34.704563,65.89294 - 22020: -34.485813,66.09606 - 22021: -34.43894,66.23669 - 22022: -34.65769,65.84606 - 22023: -34.892063,65.564804 - 22024: -34.860813,65.76794 - 22025: -34.735813,66.28356 - 22026: -34.59519,66.62731 - 22027: -34.59519,67.08044 - 22028: -34.610813,67.22106 - 22029: -34.84519,67.56481 - 22030: -35.25144,67.62731 - 22031: -35.579563,67.34606 - 22032: -35.72019,67.12731 - 22033: -35.704563,67.12731 22034: -28.860813,61.83043 22035: -28.751438,61.95543 22036: -28.454563,62.39293 @@ -27225,77 +27170,8 @@ entities: 22166: -54.375088,34.573235 22167: -54.062588,34.55761 22168: -53.765713,34.52636 - 22169: -59.500088,43.95247 - 22170: -59.250088,44.17122 - 22171: -58.828213,44.48372 - 22172: -58.640713,44.63997 - 22173: -58.703213,44.593094 - 22174: -59.203213,44.20247 - 22175: -58.765713,44.405594 - 22176: -58.234463,44.88997 - 22177: -58.140713,45.07747 - 22178: -57.671963,45.280594 - 22179: -57.500088,45.42122 - 22180: -57.218838,45.85872 - 22181: -57.109463,46.155594 - 22182: -56.921963,46.280594 - 22183: -57.328213,45.98372 - 22184: -57.468838,45.874344 - 22185: -56.015713,46.32747 - 22186: -55.500088,46.32747 - 22187: -55.421963,46.311844 - 22188: -55.734463,46.48372 22189: -57.078213,46.88997 - 22190: -56.343838,46.499344 - 22191: -55.500088,46.13997 - 22192: -54.968838,45.63997 - 22193: -54.609463,45.20247 - 22194: -54.421963,44.780594 - 22195: -54.484463,44.718094 - 22196: -54.843838,45.23372 - 22197: -54.984463,45.38997 - 22198: -54.734463,45.04622 - 22199: -54.640713,44.468094 - 22200: -54.625088,43.92122 - 22201: -54.890713,43.51497 - 22202: -55.015713,43.374344 - 22203: -54.656338,43.57747 22204: -55.015713,42.780594 - 22205: -55.562588,42.07747 - 22206: -55.781338,41.624344 - 22207: -55.796963,41.780594 - 22208: -55.562588,42.35872 - 22209: -55.468838,42.655594 - 22210: -55.468838,42.70247 - 22211: -55.656338,42.10872 - 22212: -56.062588,41.63997 - 22213: -56.468838,41.45247 - 22214: -56.687588,41.42122 - 22215: -56.953213,41.45247 - 22216: -57.296963,41.499344 - 22217: -57.781338,41.593094 - 22218: -58.203213,41.780594 - 22219: -58.421963,41.936844 - 22220: -58.421963,41.936844 - 22221: -58.156338,41.686844 - 22222: -58.015713,41.593094 - 22223: -58.328213,42.030594 - 22224: -58.703213,42.374344 - 22225: -59.015713,42.51497 - 22226: -59.281338,42.57747 - 22227: -59.078213,42.593094 - 22228: -58.734463,42.48372 - 22229: -58.484463,42.13997 - 22230: -58.296963,41.811844 - 22231: -58.171963,41.936844 - 22232: -58.218838,42.45247 - 22233: -58.562588,42.54622 - 22234: -59.296963,42.42122 - 22235: -61.87509,41.57747 - 22236: -57.10829,41.63997 - 22237: -57.436417,41.718094 - 22238: -57.73329,41.843094 - 22239: -57.842667,41.88997 22240: -64.98329,45.415054 22241: -64.53017,45.61818 22242: -63.998917,45.821304 @@ -27306,17 +27182,11 @@ entities: 22247: -62.67079,47.383804 22248: -62.623917,47.74318 22249: -62.45204,48.102554 - 22332: -67.62418,41.579063 - 22333: -68.09293,41.53219 22334: -68.99918,41.71969 - 22335: -69.45231,41.860313 - 22336: -69.53043,41.87594 22337: -69.12418,41.735313 22338: -68.84293,41.71969 22339: -69.32731,42.204063 - 22340: -69.49918,42.43844 22341: -68.57731,42.516563 - 22342: -67.88981,42.454063 22343: -72.34293,43.21969 22344: -72.15543,42.87594 22345: -71.82731,42.56344 @@ -27325,14 +27195,8 @@ entities: 22348: -71.51481,41.985313 22349: -71.96793,42.297813 22350: -72.53043,42.829063 - 22351: -71.24918,43.735313 22352: -70.28043,43.12594 22353: -70.34293,42.96969 - 22354: -70.40543,42.40719 - 22355: -70.57731,41.891563 - 22356: -70.78043,41.797813 - 22357: -70.60856,41.84469 - 22358: -70.46793,42.56344 22359: -71.18668,43.516563 22360: -71.21793,43.516563 22361: -70.71793,43.31344 @@ -27343,27 +27207,12 @@ entities: 22366: -74.21793,43.65719 22367: -74.18668,43.516563 22368: -73.74918,44.40719 - 22369: -73.53043,44.21969 22370: -71.31168,42.09469 22371: -71.10856,41.704063 22372: -71.34293,41.922813 22373: -72.03043,42.485313 - 22374: -72.74918,43.016563 - 22375: -72.84293,43.016563 22376: -71.40543,42.31344 - 22377: -70.51481,42.18844 22378: -71.09293,43.172813 - 22379: -71.87418,43.56344 - 22380: -64.65458,40.454823 - 22381: -64.670204,40.454823 - 22382: -64.34208,40.720448 - 22383: -64.15458,40.829823 - 22384: -64.732704,40.611073 - 22385: -64.81083,40.532948 - 22386: -62.388954,41.626698 - 22387: -62.263954,41.673573 - 22388: -61.920204,41.986073 - 22389: -61.71708,42.126698 23133: -21.460464,38.855843 23134: -21.241714,38.574593 23135: -21.179214,38.496468 @@ -27825,11 +27674,6 @@ entities: 25324: 31.756134,60.62411 25325: 33.342964,57.538464 25326: 33.48359,57.30409 - 26758: -31.973564,71.629974 - 26759: -31.723564,71.3331 - 26760: -31.629814,71.129974 - 26761: -31.536064,70.9581 - 26762: -31.48919,70.86435 26763: -32.58294,70.098724 26764: -32.48919,69.92685 26765: -32.48919,69.6456 @@ -27837,40 +27681,13 @@ entities: 26767: -32.254814,69.379974 26768: -32.442314,69.536224 26769: -32.05169,69.4581 - 26770: -31.817314,69.348724 - 26771: -31.05169,70.5831 - 26772: -30.89544,70.473724 - 26773: -30.692314,70.192474 - 26774: -30.61419,70.004974 - 26775: -30.348564,69.973724 - 26776: -30.536064,69.254974 - 26777: -30.442314,68.754974 - 26778: -30.42669,68.567474 - 26779: -30.42669,68.348724 - 26780: -30.42669,68.129974 - 26781: -30.42669,67.723724 - 26782: -30.42669,67.286224 - 26783: -31.52044,68.5206 - 26784: -31.598564,68.2081 - 26785: -31.567314,67.7081 - 26786: -31.473564,67.129974 - 26787: -31.473564,66.786224 26788: -31.317314,66.5206 26789: -31.23919,66.379974 - 26790: -31.504814,66.692474 - 26791: -31.98919,69.0831 26792: -32.004814,69.442474 26793: -32.161064,69.661224 - 26794: -31.58294,68.129974 - 26795: -31.473564,67.5831 - 26796: -31.473564,67.1456 - 26797: -31.33294,66.879974 - 26798: -30.598564,65.754974 26799: -30.504814,65.61435 26800: -30.286064,65.442474 26801: -30.161064,65.3956 - 26802: -29.52044,66.411224 - 26803: -29.504814,66.17685 26804: -28.42669,65.2711 26805: -28.442314,65.33387 26806: -28.95794,63.366554 @@ -27912,11 +27729,6 @@ entities: 26842: -28.143864,62.022804 26843: -28.503239,61.835304 26844: -27.331364,63.50547 - 26845: -31.444565,69.1539 - 26846: -31.444565,68.8414 - 26847: -31.49144,68.263275 - 26848: -30.382065,68.7789 - 26849: -30.413315,68.7789 26850: -31.488987,60.631084 26851: -31.488987,60.05296 26852: -31.520237,59.67796 @@ -27933,28 +27745,10 @@ entities: 26863: -32.692112,60.912334 26864: -32.535862,60.67796 26865: -32.395237,60.599834 - 26866: -32.926487,61.474834 - 26867: -33.160862,61.506084 - 26868: -33.270237,61.599834 - 26869: -33.379612,61.61546 - 26870: -33.598362,60.631084 26871: -33.629612,60.33421 - 26872: -33.613987,60.89671 - 26873: -33.488987,61.33421 26874: -32.379612,59.49046 26875: -32.348362,59.49046 26876: -31.988987,59.52171 - 26877: -25.583538,59.479137 - 26878: -25.489788,59.963512 - 26879: -25.317913,60.260387 - 26880: -25.114788,60.401012 - 26881: -24.927288,60.322887 - 26882: -25.177288,60.291637 - 26883: -25.489788,59.979137 - 26884: -25.583538,59.072887 - 26885: -25.349163,58.588512 - 26886: -24.942913,58.447887 - 26887: -24.311989,58.546967 27615: 99.34569,-15.323763 27616: 99.29881,-15.480013 27617: 99.59569,-15.026888 @@ -28842,6 +28636,747 @@ entities: 30904: -31.195873,41.583263 30905: -30.930248,41.72389 30906: -31.367748,41.833263 + 30953: -122.86812,-2.4153404 + 30954: -122.50874,-2.5090904 + 30955: -122.21187,-2.5559654 + 30956: -121.88374,-2.7122154 + 30957: -121.80562,-2.8684654 + 30958: -121.57124,-3.1653404 + 30959: -121.55562,-3.2122154 + 30960: -121.55562,-3.0715904 + 30961: -121.66499,-2.8528404 + 30962: -121.94624,-2.6340904 + 30963: -121.83687,-2.6184654 + 30964: -121.47749,-2.8997154 + 30965: -121.46187,-2.7747154 + 30966: -121.83687,-2.6028404 + 30967: -122.41499,-2.4153404 + 30968: -122.52437,-2.4153404 + 30969: -121.41499,-3.0872154 + 30970: -121.11812,-3.5872154 + 30971: -120.71187,-4.1028404 + 30972: -120.53999,-4.3215904 + 30973: -120.52437,-4.2590904 + 30974: -120.69624,-3.9465904 + 30975: -120.86812,-3.5715904 + 30976: -121.00874,-3.4153404 + 30977: -121.00874,-3.4153404 + 30978: -120.77437,-3.5872154 + 30979: -120.41499,-4.1653404 + 30980: -120.77437,-3.5715904 + 30981: -120.96187,-3.4309654 + 30982: -119.33687,-4.9465904 + 30983: -118.89937,-5.4153404 + 30984: -118.60249,-5.5559654 + 30985: -118.49312,-5.6340904 + 30986: -118.19624,-5.9309654 + 30987: -118.13374,-6.0872154 + 30988: -118.02437,-6.1965904 + 30989: -118.25874,-5.9153404 + 30990: -118.75874,-5.5403404 + 30991: -118.89937,-5.4465904 + 30992: -117.72749,-6.4153404 + 30993: -117.44624,-6.7590904 + 30994: -117.41499,-6.9309654 + 30995: -117.43062,-7.0715904 + 30996: -117.52437,-6.5090904 + 30997: -117.58687,-6.2122154 + 30998: -117.55562,-6.7278404 + 30999: -117.43062,-7.1497154 + 31000: -117.36812,-7.4153404 + 31001: -117.14937,-7.4934654 + 31002: -116.71187,-7.5247154 + 31003: -116.55562,-7.5090904 + 31004: -116.41499,-7.5247154 + 31005: -116.32124,-7.5247154 + 31006: -116.32124,-7.5247154 + 31007: -116.94624,-7.4622154 + 31008: -117.18062,-7.4153404 + 31009: -116.38374,-7.4622154 + 31010: -116.00874,-7.5403404 + 31011: -115.43062,-7.6184654 + 31012: -114.94624,-7.7122154 + 31013: -114.64937,-7.8372154 + 31014: -114.43062,-7.9934654 + 31015: -114.39937,-8.04034 + 31016: -115.24312,-7.4153404 + 31017: -113.00874,-9.44659 + 31018: -112.85249,-9.587215 + 31019: -112.82124,-9.50909 + 31020: -112.88374,-9.368465 + 31021: -112.66499,-9.118465 + 31022: -112.80562,-9.75909 + 31023: -112.75874,-9.72784 + 31024: -112.96187,-9.618465 + 31025: -119.30562,-4.9934654 + 31026: -118.71187,-5.4622154 + 31027: -118.50874,-5.6965904 + 31028: -118.30562,-5.9153404 + 31029: -118.19624,-6.0247154 + 31030: -117.61812,-6.5872154 + 31031: -117.74312,-6.4153404 + 31032: -117.75874,-6.4153404 + 31033: -124.53999,-0.8327358 + 31034: -124.52437,-0.8639858 + 31035: -124.38374,-1.0202358 + 31036: -124.36812,-0.9889858 + 31037: -124.35249,-0.5827358 + 31038: -124.30562,-0.6608608 + 31039: -124.14937,-1.2389858 + 31040: -124.07124,-1.4108608 + 31041: -123.58687,-1.5671108 + 31042: -123.39937,-1.6921108 + 31043: -123.35249,-1.7546108 + 31044: -123.28999,-1.9733608 + 31045: -123.44624,-1.7546108 + 31046: -123.74312,-1.4421108 + 31047: -123.77437,-1.4733608 + 31048: -123.35249,-2.0046108 + 31049: -123.33687,-2.2546108 + 31050: -123.25874,-2.4264858 + 31051: -123.36812,-2.1608608 + 31052: -123.75874,-1.5202358 + 31053: -123.80562,-1.4889858 + 31054: -123.61812,-1.7702358 + 31055: -123.11812,-2.3014858 + 31056: -123.08687,-2.4108608 + 31057: -123.55562,-1.8952358 + 31058: -123.68062,-1.6764858 + 31059: -123.80562,-1.5671108 + 31220: 46.81278,-20.497564 + 31221: 47.203403,-20.372564 + 31222: 47.53153,-20.57569 + 31223: 47.78153,-20.685064 + 31224: 47.68778,-21.091314 + 31225: 47.953403,-21.38819 + 31226: 47.703403,-21.29444 + 31227: 47.640903,-21.091314 + 31228: 47.65653,-18.76319 + 31229: 47.547153,-19.26319 + 31230: 47.15653,-19.45069 + 31231: 46.75028,-19.48194 + 31232: 48.50028,-18.778814 + 31233: 48.422153,-19.32569 + 31234: 48.78153,-19.528814 + 31235: 48.953403,-19.653814 + 31236: 49.50028,-19.66944 + 31237: 49.87528,-19.778814 + 31238: 50.453403,-20.060064 + 31239: 50.46903,-20.38819 + 31240: 49.96903,-19.91944 + 31241: 49.68778,-19.76319 + 31242: 48.03153,-21.07569 + 31243: 48.50028,-21.45069 + 31244: 48.75028,-21.466314 + 31245: 48.81278,-21.466314 + 31246: 51.047153,-20.48194 + 31247: 51.297153,-20.747564 + 31248: 51.34403,-21.153814 + 31249: 51.00028,-21.341314 + 31250: 50.65653,-21.35694 + 31251: 50.557198,-20.497564 + 31252: 50.244698,-20.310064 + 31253: 48.167164,-21.377127 + 31254: 47.698414,-21.299002 + 31255: 47.510914,-21.236502 + 31256: 52.652527,-21.390795 + 31257: 53.090027,-21.46892 + 31258: 52.402527,-21.203295 + 31259: 52.54315,-20.890795 + 31260: 52.98065,-20.609545 + 31261: 53.183777,-20.65642 + 31262: 53.777527,-20.640795 + 31263: 54.402527,-20.65642 + 31264: 54.73065,-20.46892 + 31265: 54.0119,-20.68767 + 31266: 53.41815,-20.59392 + 31267: 53.465027,-20.71892 + 31268: 52.66815,-21.047045 + 31269: 52.79315,-20.87517 + 31270: 54.746277,-20.703295 + 31271: 54.9494,-20.90642 + 31272: 55.04315,-21.25017 + 31273: 54.5744,-21.43767 + 31274: 53.66815,-21.578295 + 31275: 54.246277,-21.484545 + 31276: 53.56567,-21.484545 + 31277: 54.081295,-21.46892 + 31278: 54.56567,-20.953295 + 31279: 55.22192,-20.93767 + 31280: 55.331295,-21.265795 + 31281: 55.72192,-21.359545 + 31282: 56.331295,-21.40642 + 31283: 56.487545,-21.40642 + 31284: 56.22192,-21.140795 + 31285: 56.44067,-20.93767 + 31286: 55.456295,-20.109545 + 31287: 55.81567,-19.765795 + 31288: 56.143795,-19.68767 + 31289: 56.643795,-19.672045 + 31290: 57.19067,-19.640795 + 31291: 55.72192,-19.578295 + 31292: 55.800045,-19.515795 + 31293: 56.47192,-19.484545 + 31294: 56.97192,-19.46892 + 31295: 56.15942,-19.46892 + 31296: 57.40942,-19.765795 + 31297: 57.425045,-20.31267 + 31298: 57.12817,-20.422045 + 31299: 56.53442,-20.53142 + 31300: 55.081295,-20.515795 + 31301: 55.425045,-20.46892 + 31302: 55.706295,-20.15642 + 31303: 55.44067,-20.734545 + 31304: 55.737545,-20.93767 + 31305: 56.06567,-21.03142 + 31306: 55.44067,-20.672045 + 31307: 54.97192,-21.28142 + 31308: 55.37817,-21.28142 + 31309: 54.393795,-21.00017 + 31310: 55.59916,-21.078295 + 31311: 55.833534,-21.31267 + 31312: 56.177284,-21.31267 + 31313: 56.552284,-20.75017 + 31314: 55.802284,-21.37517 + 31315: 58.72599,-20.46892 + 31316: 58.335365,-20.34392 + 31317: 58.491615,-19.984545 + 31318: 58.835365,-19.640795 + 31319: 59.35099,-19.547045 + 31320: 59.179115,-20.56267 + 31321: 59.616615,-20.56267 + 31322: 60.16349,-20.515795 + 31323: 60.335365,-20.46892 + 31324: 60.44474,-20.172045 + 31325: 60.38224,-19.62517 + 31326: 59.804115,-19.515795 + 31327: 59.56974,-19.50017 + 31328: 60.13224,-19.922045 + 31329: 58.91349,-19.609545 + 31333: 57.297394,-19.990633 + 31334: 57.266144,-20.459383 + 31335: 58.734894,-20.303133 + 31336: 58.43802,-20.006258 + 31337: 57.172394,-19.662508 + 31338: 56.922394,-19.646883 + 31339: 52.746136,-21.225008 + 31340: 53.16801,-21.600008 + 32238: -41.525787,69.053696 + 32239: -41.572662,68.553696 + 32240: -41.557037,68.10057 + 32241: -41.557037,67.553696 + 32242: -41.557037,67.147446 + 32243: -41.385162,66.897446 + 32244: -41.307037,66.75682 + 32245: -41.275787,66.709946 + 32246: -41.447662,67.428696 + 32247: -41.353912,68.00682 + 32248: -40.400787,69.741196 + 32249: -40.369537,69.13182 + 32250: -40.369537,68.491196 + 32251: -40.338287,68.022446 + 32252: -40.353912,67.22557 + 32253: -40.557037,66.741196 + 32254: -40.603912,66.69432 + 32255: -40.385162,67.22557 + 32256: -40.416412,68.147446 + 32257: -40.385162,68.928696 + 32258: -40.510162,69.38182 + 32259: -40.635162,69.53807 + 32260: -40.791412,69.53807 + 32261: -41.213287,69.522446 + 32262: -41.369537,69.38182 + 32263: -41.463287,69.272446 + 32264: -41.416412,66.843025 + 32265: -41.260162,66.624275 + 32266: -41.119537,66.4524 + 32267: -41.307037,67.1399 + 32268: -41.244537,67.35865 + 32269: -41.463287,67.843025 + 32270: -41.494537,67.593025 + 32271: -41.447662,66.343025 + 32272: -40.666412,64.624275 + 32273: -40.572662,63.7649 + 32274: -40.525787,63.343025 + 32275: -40.494537,63.186775 + 32276: -39.666412,64.499275 + 32277: -39.869537,64.48365 + 32278: -39.713287,64.4524 + 32279: -39.619537,63.999275 + 32280: -39.603912,63.67115 + 32281: -39.557037,63.374275 + 32282: -39.557037,63.2024 + 32283: -39.557037,64.124275 + 32284: -39.557037,63.811775 + 32285: -39.557037,62.749275 + 32286: -39.525787,62.4524 + 32287: -40.353912,63.468025 + 32288: -40.369537,62.999275 + 32289: -40.385162,62.811775 + 32290: -40.510162,64.2024 + 32291: -40.291412,64.561775 + 32292: -40.291412,64.5149 + 32293: -36.182037,66.499275 + 32294: -36.369537,66.280525 + 32295: -36.447662,65.8274 + 32296: -36.369537,65.54615 + 32297: -36.182037,65.405525 + 32298: -35.963287,65.311775 + 32299: -35.619537,65.29615 + 32300: -35.572662,65.17115 + 32301: -35.885162,65.54615 + 32302: -36.025787,65.7649 + 32303: -36.400787,65.999275 + 32304: -36.275787,66.29615 + 32305: -35.135162,67.405525 + 32306: -34.947662,67.561775 + 32307: -35.213287,67.42115 + 32308: -35.525787,67.2024 + 32309: -35.338287,67.2649 + 32310: -34.728912,67.42115 + 32311: -34.228912,67.436775 + 32312: -33.838287,67.42115 + 32313: -33.713287,67.35865 + 32314: -33.650787,67.29615 + 32315: -33.432037,67.04615 + 32316: -33.369537,66.780525 + 32317: -33.369537,66.5774 + 32318: -33.369537,66.3899 + 32319: -33.369537,66.04615 + 32320: -33.478912,65.8274 + 32321: -33.541412,65.624275 + 32322: -33.541412,65.311775 + 32323: -33.572662,65.10865 + 32324: -33.510162,64.843025 + 32325: -33.416412,64.73365 + 32326: -33.213287,64.468025 + 32327: -32.838287,64.499275 + 32328: -33.025787,64.4524 + 32329: -33.478912,64.468025 + 32330: -33.416412,64.436775 + 32331: -33.072662,64.311775 + 32332: -32.916412,64.249275 + 32333: -32.760162,64.1399 + 32334: -32.682037,63.905525 + 32335: -32.572662,63.5774 + 32336: -32.557037,63.436775 + 32337: -32.557037,63.04615 + 32338: -32.525787,62.718025 + 32339: -32.525787,62.686775 + 32340: -32.525787,63.186775 + 32341: -33.072662,63.968025 + 32342: -33.291412,64.186775 + 32343: -33.103912,64.10865 + 32344: -32.744537,63.67115 + 32345: -32.541412,63.343025 + 32346: -32.447662,63.04615 + 32347: -32.494537,62.8274 + 32348: -32.557037,62.73365 + 32349: -34.697662,62.8274 + 32350: -34.525787,62.686775 + 32351: -34.400787,62.60865 + 32352: -34.322662,62.8899 + 32353: -34.353912,63.17115 + 32354: -34.432037,63.35865 + 32355: -34.744537,63.436775 + 32356: -35.057037,63.468025 + 32357: -35.182037,63.54615 + 32358: -35.260162,63.905525 + 32359: -35.307037,64.2024 + 32360: -35.353912,64.343025 + 32361: -35.385162,63.8899 + 32362: -35.353912,63.718025 + 32363: -35.338287,64.061775 + 32364: -35.338287,64.48365 + 32365: -35.338287,64.60865 + 32366: -35.322662,64.3274 + 32367: -35.260162,64.17115 + 32368: -35.291412,64.6399 + 32369: -35.353912,64.8274 + 32370: -35.385162,64.98365 + 32371: -35.494537,65.218025 + 32372: -35.603912,65.436775 + 32373: -35.932037,65.718025 + 32374: -36.182037,65.811775 + 32375: -36.260162,65.999275 + 32376: -36.182037,66.17115 + 32377: -36.010162,66.4524 + 32378: -35.791412,66.7649 + 32379: -35.494537,66.718025 + 32380: -35.666412,66.5149 + 32381: -35.728912,66.405525 + 32382: -33.63371,60.197872 + 32383: -33.461834,59.885372 + 32384: -33.22746,59.588497 + 32385: -33.03996,59.525997 + 32386: -32.72746,59.494747 + 32387: -33.28996,59.666622 + 32388: -33.430584,59.744747 + 32390: -33.055584,59.713497 + 32391: -33.055584,59.713497 + 32392: -33.16496,59.650997 + 32394: -30.1302,66.16151 + 32395: -30.22395,66.13026 + 32396: -29.958324,66.38026 + 32397: -29.72395,66.66151 + 32398: -29.364574,67.08338 + 32399: -29.1302,67.33338 + 32400: -28.927074,67.44276 + 32402: -28.6302,67.47401 + 32403: -28.833324,67.41151 + 32404: -29.1302,67.30213 + 32405: -28.770824,67.30213 + 32406: -28.645824,66.84901 + 32407: -30.270824,66.13026 + 32408: -30.3802,65.98963 + 32410: -28.022268,69.313416 + 32411: -28.225393,69.20404 + 32412: -28.194143,69.04779 + 32413: -27.772268,69.375916 + 32414: -27.319143,69.98529 + 32415: -27.225393,70.250916 + 32416: -26.897268,70.344666 + 32417: -27.147268,70.344666 + 32418: -27.256643,70.26654 + 32419: -26.725393,70.29779 + 32420: -27.600393,67.95404 + 32421: -27.803518,67.73529 + 32423: -27.975393,67.61029 + 32424: -27.584768,67.92279 + 32425: -27.162893,68.375916 + 32426: -26.741018,68.45404 + 32427: -26.537893,68.64154 + 32428: -26.444143,68.938416 + 32429: -26.553518,68.875916 + 32430: -27.116018,68.313416 + 32431: -27.241018,68.282166 + 32432: -26.537893,68.95404 + 32433: -26.537893,69.32904 + 32434: -26.694143,68.92279 + 32435: -27.444143,68.407166 + 32436: -27.616018,68.219666 + 32437: -26.850393,69.01654 + 32438: -26.787893,69.188416 + 32439: -27.069143,68.782166 + 32440: -27.194143,68.61029 + 32441: -27.491018,69.157166 + 32444: -27.225393,68.82904 + 32446: -27.287893,69.000916 + 32447: -28.491018,68.625916 + 32448: -28.491018,68.23529 + 32449: -28.537893,67.969666 + 32592: -63.933758,54.581642 + 32593: -63.511883,54.644142 + 32594: -64.04314,54.519142 + 32595: -63.636883,54.456642 + 32596: -63.308758,54.394142 + 32639: 76.85719,-29.639265 + 32640: 76.85719,-29.71739 + 32641: 76.88844,-29.90489 + 32642: 76.90407,-30.15489 + 32643: 76.87282,-30.420515 + 32644: 76.84157,-30.451765 + 32645: 76.84157,-29.826765 + 32646: 76.73219,-29.59239 + 32647: 76.73219,-29.889265 + 32648: 76.73219,-30.06114 + 32649: 76.71657,-30.201765 + 32650: 77.02907,-29.920515 + 32651: 77.62282,-29.483015 + 32652: 77.62282,-29.52989 + 32653: 77.38844,-29.90489 + 32654: 77.32594,-30.24864 + 32655: 77.32594,-30.40489 + 32656: 77.32594,-30.420515 + 32657: 77.24782,-29.795515 + 32658: 77.27907,-29.65489 + 32659: 77.45094,-29.670515 + 32660: 77.46657,-30.108015 + 32661: 77.46657,-30.46739 + 32662: 77.56032,-30.545515 + 32663: 78.10719,-30.31114 + 32664: 78.45094,-29.858015 + 32665: 78.45094,-29.77989 + 32666: 77.93532,-29.68614 + 32667: 77.87282,-30.06114 + 32668: 77.87282,-30.18614 + 32669: 77.87282,-30.108015 + 32670: 78.12282,-29.71739 + 32671: 77.71657,-29.701765 + 32672: 77.60719,-30.12364 + 32673: 77.96657,-30.233015 + 32674: 78.15407,-30.326765 + 32675: 78.43532,-30.24864 + 32676: 78.70094,-29.576765 + 32677: 78.70094,-29.56114 + 32678: 78.18532,-29.983015 + 32679: 78.09157,-30.201765 + 32680: 77.96657,-30.37364 + 32681: 79.10719,-30.46739 + 32682: 79.16969,-30.40489 + 32683: 78.71657,-30.389265 + 32684: 78.63844,-30.43614 + 32685: 78.51344,-30.46739 + 32686: 78.90407,-30.37364 + 32687: 78.87282,-29.90489 + 32688: 78.96657,-29.639265 + 32689: 78.91969,-29.826765 + 32690: 78.87282,-30.02989 + 32691: 78.82594,-30.12364 + 32692: 79.10719,-29.795515 + 32693: 79.26344,-29.639265 + 32694: 79.26344,-30.108015 + 32695: 79.27907,-30.15489 + 32696: 79.27907,-29.764265 + 32697: 78.88844,-29.576765 + 32698: 78.20094,-29.764265 + 32699: 78.60719,-29.84239 + 32700: 78.21657,-29.545515 + 32701: 79.57594,-29.639265 + 32702: 79.21657,-29.639265 + 32703: 76.63844,-30.451765 + 32704: 78.31032,-32.436142 + 32705: 78.43532,-32.014267 + 32706: 78.56032,-31.65489 + 32707: 78.60719,-31.545515 + 32708: 78.48219,-32.029892 + 32709: 78.26344,-32.233017 + 32710: 78.23219,-32.139267 + 32711: 78.52907,-31.27989 + 32712: 78.48219,-30.87364 + 32713: 78.40407,-30.764265 + 32714: 78.45094,-31.733015 + 32715: 78.26344,-30.65489 + 32716: 78.26344,-31.65489 + 32717: 78.20094,-31.483015 + 32718: 78.07594,-30.74864 + 32719: 77.70094,-30.451765 + 32720: 77.70094,-29.21739 + 32721: 77.79469,-29.326765 + 32722: 78.23219,-29.46739 + 32723: 78.46657,-29.045515 + 32724: 78.41969,-28.608015 + 32725: 78.40407,-28.545515 + 32731: 77.32594,-26.983015 + 32732: 77.32594,-26.983015 + 32741: 76.65407,-28.170515 + 32742: 76.56032,-27.670515 + 32743: 76.35719,-27.09239 + 32744: 76.51344,-27.451765 + 32745: 76.76344,-28.02989 + 32746: 76.88844,-28.34239 + 32747: 77.01344,-28.514265 + 32748: 77.57594,-27.46739 + 32749: 77.57594,-27.514265 + 32750: 77.70094,-27.99864 + 32751: 77.66969,-27.701765 + 32752: 77.60719,-27.56114 + 32753: 77.77907,-28.24864 + 32754: 76.71657,-28.076765 + 32755: 76.76344,-28.43614 + 32756: 77.43532,-27.045515 + 32757: 77.48219,-27.170515 + 32758: 77.51344,-27.201765 + 32762: 76.73219,-30.87364 + 32763: 76.98219,-30.764265 + 32764: 77.52907,-30.77989 + 32765: 77.93532,-30.81114 + 32766: 78.20094,-30.93614 + 32767: 78.09157,-32.436142 + 32768: 77.84157,-32.436142 + 32769: 77.76344,-32.514267 + 32770: 77.21657,-32.467392 + 32771: 77.02907,-32.514267 + 32772: 76.71657,-32.436142 + 32799: -114.40559,41.66548 + 32800: -113.71809,41.94673 + 32801: -113.35871,42.22798 + 32802: -113.70246,41.97798 + 32803: -113.92121,41.774857 + 32804: -114.09309,41.63423 + 32805: -114.65559,43.618607 + 32806: -114.04621,44.118607 + 32807: -113.51496,44.368607 + 32808: -113.38996,44.41548 + 32809: -113.76496,44.29048 + 32810: -114.07746,44.19673 + 32811: -114.42121,43.85298 + 32812: -114.38996,44.25923 + 32813: -118.63996,43.35298 + 32814: -118.01496,43.243607 + 32815: -117.67121,43.337357 + 32816: -117.32746,43.431107 + 32817: -117.18684,43.50923 + 32818: -118.73371,41.57173 + 32819: -118.15559,41.618607 + 32820: -117.96809,41.649857 + 32821: -117.73371,41.681107 + 32822: -117.59309,41.54048 + 32823: -117.31184,41.462357 + 32824: -117.04621,41.462357 + 32825: -116.74934,41.47798 + 32826: -116.32746,41.462357 + 32827: -117.37434,41.72798 + 32828: -117.84309,41.806107 + 32829: -118.38996,41.79048 + 32830: -118.10871,41.85298 + 32831: -113.156166,42.47798 + 32832: -112.906166,42.743607 + 32833: -112.60929,43.00923 + 32834: -112.45304,43.212357 + 32835: -112.04679,43.41548 + 32836: -111.73429,43.66548 + 32837: -111.60929,43.79048 + 32838: -111.42179,44.04048 + 32839: -110.968666,44.649857 + 32840: -110.64054,44.837357 + 32841: -110.51554,45.212357 + 33168: -40.222355,32.719612 + 33169: -39.89423,32.688362 + 33170: -39.566105,33.125862 + 33171: -39.316105,33.391487 + 33172: -39.847355,32.657112 + 33173: -39.847355,32.657112 + 33174: -39.347355,33.313362 + 33175: -39.003605,33.485237 + 33176: -38.80048,33.500862 + 33177: -39.73798,32.844612 + 33178: -40.17548,32.766487 + 33179: -40.33173,32.813362 + 33180: -40.378605,33.110237 + 33181: -40.39423,33.563362 + 33182: -40.503605,33.844612 + 33183: -40.51923,33.766487 + 33184: -40.48798,33.203987 + 33185: -40.48798,32.922737 + 33186: -40.597355,34.157112 + 33187: -40.33173,34.719612 + 33188: -40.33173,35.391487 + 33189: -40.30048,35.532112 + 33190: -40.30048,35.282112 + 33191: -40.11298,35.313362 + 33192: -39.847355,35.328987 + 33193: -34.409855,34.563362 + 33194: -34.159855,34.547737 + 33195: -33.92548,34.750862 + 33196: -33.80048,34.953987 + 33197: -33.784855,34.953987 + 33198: -34.08173,34.610237 + 33199: -34.191105,34.563362 + 33200: -33.691105,34.703987 + 33201: -33.722355,34.891487 + 33202: -33.659855,35.094612 + 33203: -33.503605,35.469612 + 33204: -33.534855,36.422737 + 33205: -33.534855,36.250862 + 33206: -33.659855,35.610237 + 33207: -33.70673,35.219612 + 33208: -33.784855,35.094612 + 33209: -33.67548,36.047737 + 33210: -33.784855,36.391487 + 33211: -34.11298,36.563362 + 33212: -33.941105,36.610237 + 33213: -35.941105,36.375862 + 33214: -36.23798,36.375862 + 33215: -36.98798,36.391487 + 33216: -37.01923,36.391487 + 33217: -37.01923,36.391487 + 33218: -37.191105,36.438362 + 33219: -37.33173,36.516487 + 33220: -37.316105,36.547737 + 33221: -37.034855,36.547737 + 33222: -36.659855,36.516487 + 33223: -35.722355,36.407112 + 33224: -35.42548,36.391487 + 33225: -37.17548,34.516487 + 33226: -36.909855,34.563362 + 33227: -36.566105,34.625862 + 33228: -36.347355,34.625862 + 33229: -36.08173,34.610237 + 33230: -35.67548,34.563362 + 33231: -35.36298,34.547737 + 33232: -35.066105,34.532112 + 33233: -34.73798,34.391487 + 33234: -34.597355,34.328987 + 33235: -35.503605,34.547737 + 33236: -36.003605,34.547737 + 33237: -36.472355,34.563362 + 33238: -36.51923,34.547737 + 33239: -60.653316,42.818375 + 33240: -60.48144,43.084 + 33241: -60.528316,43.287125 + 33242: -60.622066,43.1465 + 33243: -60.51269,42.755875 + 33244: -58.184566,42.443375 + 33245: -58.215816,42.3965 + 33246: -58.309566,42.1465 + 33247: -58.309566,42.1465 + 33248: -58.309566,42.1465 + 33249: -57.903316,42.443375 + 33250: -56.215816,43.380875 + 33251: -55.82519,43.42775 + 33252: -55.684566,43.412125 + 33253: -55.653316,43.3965 + 33254: -56.07519,43.459 + 33255: -58.309566,42.209 + 33256: -58.309566,42.11525 + 33257: -58.309566,42.05275 + 33258: -58.247066,41.818375 + 33259: -58.10644,41.584 + 33260: -57.809566,41.505875 + 33277: -70.94055,42.062607 + 33278: -70.75305,41.656357 + 33279: -70.69055,41.656357 + 33280: -70.69055,41.656357 + 33281: -70.7843,41.937607 + 33282: -73.73584,44.42198 + 33283: -73.45459,44.062607 + 33284: -73.407715,44.04698 + 33285: -72.01709,43.26573 + 33286: -71.626465,43.406357 + 33287: -71.407715,43.406357 + 33288: -67.98584,42.45323 + 33289: -67.51709,42.35948 + 33290: -67.54834,42.32823 + 33291: -67.970215,42.437607 + 33292: -67.57959,40.10948 + 33293: -67.39209,40.250107 + 33294: -67.17334,40.51573 + 33295: -66.845215,40.54698 + 33296: -67.29834,40.29698 + 33297: -67.126465,40.062607 + 33298: -64.188965,40.468857 + 33299: -63.907715,40.57823 + 33300: -63.720215,40.70323 + 33301: -63.595215,40.906357 + 33302: -63.720215,40.656357 + 33303: -64.36084,41.26573 + 33304: -64.407715,41.343857 + 33305: -64.20459,41.843857 + 33306: -63.970215,42.218857 + 33307: -63.92334,42.343857 + 33308: -64.407715,42.093857 + 33309: -64.438965,42.031357 + 33310: -63.970215,40.89073 + 33311: -63.938965,41.000107 + 33312: -67.438965,41.54698 + 33313: -67.86084,41.562607 + 33314: -68.313965,41.593857 + 33315: -68.54834,41.60948 + 33316: -68.61084,41.64073 + 33317: -67.54834,41.531357 + 33318: -69.20459,42.35948 + 33319: -65.657715,41.343857 + 33320: -64.907715,41.42198 + 33321: -64.73584,41.42198 + 33322: -86.279144,43.283577 + 33323: -86.26352,43.049202 + 33324: -86.20102,42.846077 + 33325: -86.091644,42.611702 + 33326: -86.04477,42.486702 + 33327: -86.2126,46.310802 + 33328: -86.040726,46.357677 + 33329: -85.728226,46.482677 - node: cleanable: True color: '#FFFFFF7F' @@ -30200,28 +30735,18 @@ entities: 22940: -75.23689,6.5581613 22941: -74.78377,7.2925363 22942: -74.37752,7.2612863 - 22943: -79.24553,9.886286 - 22944: -79.24553,9.745661 22945: -78.886154,9.417536 22946: -78.511154,9.011286 22947: -78.354904,8.745661 22948: -78.167404,8.589411 22949: -78.167404,8.573786 22950: -78.761154,9.198786 - 22951: -79.136154,9.698786 - 22952: -78.792404,9.573786 22953: -78.30803,9.198786 22954: -78.229904,8.917536 22955: -78.167404,8.698786 22956: -77.77678,8.401911 22957: -77.573654,8.776911 22958: -77.542404,9.261286 - 22959: -77.55803,9.995661 - 22960: -77.729904,10.355036 - 22961: -77.761154,10.448786 - 22962: -77.65178,10.401911 - 22963: -77.511154,10.073786 - 22964: -77.667404,10.448786 22965: -82.09954,8.433161 22966: -82.271416,8.245661 22967: -82.490166,8.026911 @@ -30317,75 +30842,6 @@ entities: 23427: -41.63883,33.89837 23428: -41.591953,33.49212 23429: -41.70133,34.695244 - 23433: -104.42121,49.851135 - 23434: -104.42121,49.913635 - 23435: -104.24934,50.132385 - 23436: -103.92121,50.288635 - 23437: -103.56184,50.444885 - 23438: -103.51496,50.507385 - 23439: -103.99934,50.288635 - 23440: -104.26496,50.11676 - 23441: -104.29621,50.05426 - 23442: -103.71809,50.507385 - 23443: -103.42121,50.83551 - 23444: -102.99934,51.163635 - 23445: -102.74934,51.27301 - 23446: -102.53059,51.319885 - 23447: -102.56184,51.21051 - 23448: -102.99934,50.913635 - 23449: -103.29621,50.694885 - 23450: -102.93684,50.757385 - 23451: -102.21809,50.976135 - 23452: -101.81184,51.02301 - 23453: -101.68684,51.163635 - 23454: -101.85871,51.226135 - 23455: -102.78059,51.05426 - 23456: -103.43684,51.08551 - 23457: -103.29621,51.226135 - 23458: -102.32746,51.351135 - 23459: -101.76496,51.444885 - 23460: -101.35871,51.757385 - 23461: -101.07746,52.21051 - 23462: -100.71809,52.27301 - 23463: -100.71809,52.163635 - 23464: -101.21809,51.944885 - 23465: -101.54621,51.663635 - 23466: -101.54621,51.632385 - 23467: -101.03059,52.08551 - 23468: -100.62434,52.21051 - 23469: -100.28059,52.33551 - 23470: -100.26496,52.36676 - 23471: -100.92121,52.257385 - 23472: -101.28059,52.08551 - 23473: -100.92121,52.17926 - 23474: -100.28059,52.288635 - 23475: -99.92121,52.30426 - 23476: -99.70246,52.33551 - 23477: -99.67121,52.36676 - 23478: -99.48371,52.36676 - 23479: -102.01496,50.99176 - 23480: -102.12434,50.83551 - 23481: -102.29621,50.726135 - 23482: -102.67121,50.694885 - 23483: -102.87434,50.64801 - 23484: -103.09309,50.58551 - 23485: -103.32746,50.58551 - 23486: -103.51496,50.55426 - 23487: -103.06184,50.39801 - 23488: -102.78059,50.351135 - 23489: -102.68684,50.33551 - 23490: -103.04621,49.913635 - 23491: -103.23371,49.819885 - 23492: -103.43684,49.913635 - 23493: -103.51496,50.02301 - 23494: -103.62434,50.14801 - 23495: -103.88996,50.02301 - 23496: -103.95246,49.819885 - 23497: -104.04621,49.757385 - 23498: -103.56184,49.99176 - 23499: -102.92121,50.351135 - 23500: -102.90559,50.36676 - 23501: -103.03059,50.194885 23503: -92.675995,50.70752 23504: -92.25412,50.629395 23505: -92.207245,50.58252 @@ -30421,8 +30877,6 @@ entities: 23535: -86.51359,44.19082 23536: -86.43546,43.737694 23537: -86.52921,43.331444 - 23538: -86.45109,43.09707 - 23539: -86.40421,43.018944 23540: -86.29484,43.40957 23541: -86.45109,43.84707 23542: -85.45109,46.081444 @@ -30530,6 +30984,58 @@ entities: 30818: 102.27323,-38.121105 30819: 101.85136,-38.26173 30820: 101.83573,-38.121105 + 31705: 47.53663,-4.1213436 + 31706: 47.614754,-4.4025936 + 31707: 47.66163,-4.4494686 + 31708: 47.88038,-4.6213436 + 31709: 48.021004,-4.8244686 + 31710: 48.13038,-4.9650936 + 31711: 48.271004,-5.0900936 + 31712: 48.458504,-5.1838436 + 31713: 48.53663,-5.3088436 + 31714: 48.56788,-5.3244686 + 31715: 48.41163,-5.1213436 + 31716: 48.208504,-4.8713436 + 31717: 48.177254,-4.6213436 + 31718: 48.28663,-4.6213436 + 31719: 48.53663,-5.0432186 + 31720: 48.69288,-5.3088436 + 31721: 48.94288,-5.4807186 + 31722: 49.09913,-5.4963436 + 31723: 49.208504,-5.4963436 + 31724: 49.44288,-5.4963436 + 31725: 49.72413,-5.4963436 + 31726: 50.021004,-5.5588436 + 31727: 50.31788,-5.6994686 + 31728: 50.41163,-5.9338436 + 31729: 50.38038,-6.2775936 + 31730: 50.31788,-6.5119686 + 31731: 50.31788,-6.7775936 + 31732: 50.333504,-6.8869686 + 31733: 50.364754,-6.8869686 + 31734: 50.521004,-6.4182186 + 31735: 50.41163,-7.3869686 + 31736: 46.583504,-5.6525936 + 31737: 46.66163,-5.8869686 + 31738: 46.78663,-6.0432186 + 31739: 46.81788,-6.0744686 + 31740: 46.927254,-6.2150936 + 31741: 46.177254,-5.3869686 + 31742: 46.41163,-5.9182186 + 31743: 46.771004,-6.2932186 + 31744: 46.94288,-6.4025936 + 31745: 46.146004,-5.5744686 + 31746: 46.09913,-5.5744686 + 31747: 46.00538,-5.5588436 + 31748: 46.052254,-5.5119686 + 31749: 46.41163,-5.5432186 + 31750: 46.56788,-5.6525936 + 31751: 47.583504,-7.2150936 + 31752: 47.63038,-7.2619686 + 31753: 47.66163,-7.3400936 + 31754: 47.708504,-7.3869686 + 31755: 48.09913,-7.4807186 + 31756: 47.677254,-7.3869686 - node: angle: 0.3141592653589793 rad color: '#FFFFFF7F' @@ -30738,6 +31244,108 @@ entities: 23095: -24.285322,37.449593 23096: -24.488447,37.449593 23097: -25.129072,37.527718 + - node: + zIndex: -1 + angle: 2.9670597283903604 rad + color: '#FFFFFF7F' + id: splatter + decals: + 33019: -110.87874,44.54176 + 33020: -110.680824,44.656345 + 33021: -110.618324,44.708427 + 33022: -111.45857,44.239677 + 33023: -113.580536,42.49322 + - node: + angle: 2.9670597283903604 rad + color: '#FFFFFF7F' + id: splatter + decals: + 33024: -103.25052,43.419323 + 33025: -102.79739,43.419323 + 33026: -102.48489,43.497448 + 33027: -102.43802,44.091198 + 33028: -102.12552,44.200573 + 33029: -101.98489,44.309948 + 33030: -101.95364,44.325573 + 33031: -102.23489,43.934948 + 33032: -103.09427,42.528698 + 33033: -102.29739,42.591198 + 33034: -101.89114,42.763073 + 33035: -101.75052,42.856823 + 33036: -101.59427,43.013073 + 33037: -102.03177,42.622448 + 33038: -101.07864,43.497448 + 33039: -100.75052,43.731823 + 33040: -100.54739,44.106823 + 33041: -100.68802,44.263073 + 33042: -101.20364,44.294323 + 33043: -101.62552,44.294323 + 33044: -100.78177,43.903698 + 33045: -101.25052,43.434948 + 33046: -102.6268,42.466198 + 33047: -99.224014,46.321167 + 33048: -99.55214,45.836792 + 33049: -99.45839,45.680542 + 33050: -99.317764,45.571167 + 33051: -99.05214,45.571167 + 33052: -98.83339,45.571167 + 33053: -98.14589,45.493042 + 33054: -97.786514,45.649292 + 33055: -97.61464,45.805542 + 33056: -97.55214,46.164917 + 33057: -97.411514,46.868042 + 33058: -97.474014,47.336792 + 33059: -97.83339,47.383667 + 33060: -98.17714,47.055542 + 33061: -98.380264,46.743042 + 33062: -98.55214,46.399292 + 33063: -99.20839,46.321167 + 33064: -99.30214,45.977417 + 33065: -99.067764,46.258667 + 33066: -97.61464,47.024292 + 33067: -97.536514,46.524292 + 33068: -97.24571,48.541924 + 33069: -96.66759,48.729424 + 33070: -96.63634,48.99505 + 33071: -96.35509,49.3388 + 33072: -96.08946,49.541924 + 33073: -95.90196,49.68255 + 33074: -95.71446,49.9638 + 33075: -95.57384,50.4638 + 33076: -95.68321,51.354424 + 33077: -96.13634,51.166924 + 33078: -96.44884,50.885674 + 33079: -96.63634,50.541924 + 33080: -96.87071,50.12005 + 33081: -97.18321,49.916924 + 33082: -97.32384,49.666924 + 33083: -97.35509,49.1513 + 33084: -97.35509,49.0888 + 33085: -97.23009,50.198174 + 33086: -97.16759,50.2763 + 33087: -97.23009,50.073174 + 33088: -97.23009,48.854424 + 33089: -96.90196,48.510674 + 33090: -96.83946,48.5263 + 33091: -96.96446,48.5263 + 33092: -97.48009,48.55755 + 33093: -96.71446,48.74505 + 33094: -96.69884,48.791924 + 33095: -96.98009,48.760674 + 33096: -95.88634,49.6513 + 33097: -95.71446,49.9638 + 33098: -96.24571,51.24505 + 33099: -95.65196,51.135674 + 33100: -95.57384,50.791924 + 33101: -95.57384,50.666924 + 33102: -95.88634,50.9013 + 33103: -98.46446,45.60894 + 33104: -97.83946,45.85894 + 33105: -97.49571,46.10894 + 33106: -97.46446,46.155815 + 33107: -97.90196,45.64019 + 33108: -99.07384,46.20269 + 33109: -101.458664,43.245228 - node: cleanable: True color: '#FFFFFF81' @@ -31071,9 +31679,6 @@ entities: 19050: -90.50965,32.85253 19051: -89.536385,32.555656 19052: -90.42701,32.649406 - 19053: -84.567635,33.66503 - 19054: -84.348885,33.50878 - 19055: -84.30201,33.50878 19056: -83.817635,33.44628 19057: -83.55201,33.336906 19058: -82.67701,32.94628 @@ -31136,20 +31741,12 @@ entities: 19232: -86.471825,41.18364 19234: -86.4562,41.168015 19235: -86.48745,40.80864 - 19238: -86.253075,41.386765 - 19240: -85.471825,41.386765 - 19241: -85.5812,41.199265 - 19253: -86.3937,42.746067 - 19255: -86.5187,42.996067 - 19257: -85.721825,42.464817 19258: -85.628075,42.714817 19259: -85.409325,43.042942 - 19260: -86.00878,42.496067 19266: -87.33691,44.542942 19267: -87.36816,45.433567 19273: -86.36816,46.230442 19275: -85.55566,46.199192 - 19278: -86.00878,46.574192 19284: -84.78137,48.460754 19285: -84.64075,48.742004 19286: -84.50012,48.992004 @@ -31325,11 +31922,9 @@ entities: 19557: -26.26518,64.3201 19558: -26.124556,64.41385 19559: -29.26518,65.47685 - 19560: -29.42143,65.69561 19561: -27.624556,65.53935 19562: -27.530806,65.61748 19563: -27.54643,66.492485 - 19564: -34.546432,67.32061 19566: -20.711952,68.336235 19567: -20.711952,68.32061 19568: -20.555702,68.054985 @@ -31633,40 +32228,17 @@ entities: 19900: -65.344864,40.112152 19901: -67.469864,39.237152 19902: -67.29799,39.705902 - 19903: -66.95424,40.112152 - 19904: -66.82924,40.284027 - 19905: -66.79799,40.346527 - 19906: -67.532364,40.377777 - 19907: -67.29799,40.205902 - 19908: -66.79799,39.940277 19909: -66.54799,39.690277 19910: -66.42299,39.893402 - 19911: -67.188614,40.237152 - 19912: -67.20424,40.159027 19913: -67.36049,39.580902 - 19914: -66.469864,40.768402 19915: -66.32924,40.862152 19916: -66.032364,41.268402 19917: -65.70424,41.346527 19918: -65.313614,41.518402 19919: -66.32924,41.409027 - 19920: -64.438614,40.455902 - 19921: -64.188614,40.596527 - 19922: -63.813614,40.815277 - 19923: -63.626114,41.002777 - 19924: -63.51674,41.159027 - 19925: -63.657364,40.627777 - 19926: -63.67299,40.612152 - 19927: -63.969864,40.518402 - 19928: -64.532364,41.830902 - 19929: -64.29799,42.080902 19930: -63.92299,42.315277 19931: -63.57924,42.471527 19932: -63.36049,42.534027 - 19933: -62.231453,41.424652 - 19934: -61.918953,41.643402 - 19935: -61.622078,41.846527 - 19936: -61.372078,41.987152 19937: -62.590828,42.830902 19938: -62.278328,42.987152 19939: -61.793953,43.237152 @@ -31682,8 +32254,6 @@ entities: 19949: -64.1859,41.534027 19950: -64.07652,41.362152 19951: -64.07652,40.877777 - 19952: -63.864113,40.977806 - 19953: -63.926613,40.852806 19954: -64.49503,36.727806 19955: -64.77628,36.86843 19956: -64.96378,37.071556 @@ -31913,7 +32483,6 @@ entities: 20190: -60.72735,36.106186 20192: -67.88772,36.918686 20193: -68.23147,36.77806 - 20197: -67.01272,39.95095 20198: -66.38772,39.5447 20199: -66.14768,35.647816 20200: -66.39768,35.835316 @@ -32317,14 +32886,6 @@ entities: 29229: -85.57745,62.66123 29230: -85.43683,63.47373 29231: -85.03058,63.629974 - - node: - color: '#FFFFFF8B' - id: splatter - decals: - 14546: -54.8526,-28.140617 - 14547: -54.711975,-27.968742 - 14548: -54.399475,-27.437492 - 14549: -54.524475,-27.359367 - node: color: '#FFFFFF8D' id: splatter @@ -32418,18 +32979,8 @@ entities: color: '#FFFFFF8F' id: splatter decals: - 29462: -74.22994,45.32436 29463: -73.60494,44.558735 - 29464: -72.82369,44.23061 - 29465: -70.27682,42.69936 - 29466: -69.94869,42.652485 29467: -69.63619,42.63686 - 29468: -71.46432,43.777485 - 29469: -71.74557,45.76186 - 29470: -72.27682,46.66811 - 29471: -71.24557,46.839985 - 29472: -77.60494,44.339985 - 29473: -76.91744,45.16811 29477: -70.29107,46.51186 29478: -69.91607,46.464985 29479: -69.19732,46.44936 @@ -32450,18 +33001,6 @@ entities: 29494: -62.577126,54.380325 29495: -62.577126,54.2397 29496: -62.577126,54.161575 - 29497: -59.02658,54.53258 - 29498: -58.667206,54.423206 - 29499: -58.667206,54.15758 - 29500: -58.604706,54.048206 - 29501: -59.65158,54.47008 - 29502: -60.167206,54.735706 - 29503: -59.760956,54.59508 - 29504: -58.96408,54.34508 - 29505: -58.68283,54.141956 - 29506: -58.71408,54.15758 - 29507: -59.885956,54.516956 - 29508: -60.510956,54.516956 29509: -60.58908,54.50133 29510: -61.21408,54.423206 29511: -61.542206,54.329456 @@ -32469,7 +33008,6 @@ entities: 29513: -61.40158,54.03258 29514: -60.93283,54.298206 29515: -60.65158,54.40758 - 29516: -60.40158,54.43883 29517: -52.175526,48.176323 29518: -46.550526,43.285698 29519: -45.863026,42.754448 @@ -32508,12 +33046,6 @@ entities: 29598: -32.86533,49.023445 29600: -29.748653,59.850708 29601: -26.998653,63.475708 - 29602: -30.279903,67.20761 - 29604: -34.92053,68.04557 - 29605: -34.342403,73.092445 - 29606: -33.092403,72.061195 - 29607: -32.26428,71.92057 - 29608: -31.358028,70.936195 29609: -29.951778,71.95182 29610: -26.701778,68.07682 29611: -25.983028,67.95182 @@ -32569,9 +33101,6 @@ entities: 29718: -83.594475,6.9090214 29719: -82.094475,6.7058964 29720: -82.3601,6.5183964 - 29721: -78.092575,10.184195 - 29722: -78.186325,10.246695 - 29723: -77.655075,10.059195 - node: angle: 2.6878070480712677 rad color: '#FFFFFF95' @@ -32856,27 +33385,6 @@ entities: 4341: 47.924805,-2.996375 4342: 48.135742,-2.9495 4343: 48.370117,-2.902625 - 4344: 52.75251,-10.729496 - 4345: 52.94001,-10.713871 - 4346: 53.174385,-10.698246 - 4347: 53.50251,-10.698246 - 4348: 53.81501,-10.698246 - 4349: 54.06501,-10.666996 - 4350: 54.31501,-10.651371 - 4351: 54.518135,-10.635746 - 4352: 54.643135,-10.635746 - 4353: 52.924385,-10.620121 - 4354: 52.62751,-10.932621 - 4355: 52.47126,-11.229496 - 4356: 52.37751,-11.291996 - 4357: 52.518135,-11.307621 - 4358: 52.580635,-11.323246 - 4359: 54.716576,-11.432621 - 4360: 55.01345,-11.526371 - 4361: 55.4822,-11.557621 - 4362: 55.7947,-11.557621 - 4363: 56.1072,-11.526371 - 4364: 56.372826,-11.510746 4365: 56.76345,-11.510746 4366: 57.435326,-11.448246 4367: 57.6072,-11.370121 @@ -33048,107 +33556,6 @@ entities: 4533: 65.63994,-7.2870927 4534: 65.23369,-7.7558427 4535: 64.59306,-8.021467 - 4536: 55.479347,-12.8190365 - 4537: 55.463722,-12.9909115 - 4538: 55.526222,-13.1940365 - 4539: 55.744972,-13.2096615 - 4540: 55.604347,-12.7252865 - 4541: 55.354347,-12.4909115 - 4542: 55.010597,-12.4909115 - 4543: 54.729347,-12.4909115 - 4544: 54.448097,-12.4909115 - 4545: 54.073097,-12.4909115 - 4546: 53.744972,-12.7877865 - 4547: 53.651222,-12.9440365 - 4548: 53.510597,-13.2252865 - 4549: 53.338722,-13.1940365 - 4550: 53.354347,-12.7096615 - 4551: 53.432472,-12.7565365 - 4552: 52.948097,-13.5534115 - 4553: 52.604347,-13.5221615 - 4554: 52.698097,-13.4909115 - 4555: 53.182472,-13.3971615 - 4556: 52.307472,-13.3659115 - 4557: 52.213722,-13.0534115 - 4558: 52.229347,-12.8815365 - 4559: 52.432472,-12.6002865 - 4560: 52.432472,-12.5846615 - 4561: 52.291847,-13.2565365 - 4562: 51.48916,-12.7252865 - 4563: 51.61416,-13.0534115 - 4564: 51.629784,-13.4127865 - 4565: 51.536034,-13.3346615 - 4566: 51.08291,-12.7721615 - 4567: 50.692284,-12.7096615 - 4568: 50.786034,-12.7096615 - 4569: 50.80166,-13.3815365 - 4570: 50.817284,-13.4127865 - 4571: 48.704056,-11.4596615 - 4572: 49.06343,-11.5690365 - 4573: 49.391556,-11.6002865 - 4574: 49.610306,-11.6002865 - 4575: 48.90718,-11.5846615 - 4576: 49.141556,-11.8034115 - 4577: 49.391556,-11.9752865 - 4578: 49.43843,-12.2565365 - 4579: 49.25093,-12.2721615 - 4580: 48.50093,-12.4127865 - 4581: 48.28218,-11.6784115 - 4582: 47.985306,-11.6471615 - 4583: 47.62593,-11.8815365 - 4584: 47.454056,-12.1940365 - 4585: 47.422806,-12.5534115 - 4586: 47.50093,-12.9909115 - 4587: 47.56343,-13.3815365 - 4588: 47.25093,-13.7409115 - 4589: 46.985306,-13.7252865 - 4590: 46.766556,-13.7252865 - 4591: 46.735306,-13.9127865 - 4592: 46.797806,-14.2565365 - 4593: 46.81343,-14.4596615 - 4594: 46.672806,-14.7252865 - 4595: 46.50093,-14.9909115 - 4596: 47.46968,-15.5690365 - 4597: 47.50093,-15.3034115 - 4598: 47.454056,-14.8346615 - 4599: 47.65718,-14.4909115 - 4600: 47.922806,-14.3659115 - 4601: 48.34468,-14.3034115 - 4602: 48.672806,-13.9284115 - 4603: 47.17236,-15.423742 - 4604: 46.85986,-15.454992 - 4605: 46.625484,-15.548742 - 4606: 46.48486,-15.814367 - 4607: 46.406734,-16.251867 - 4608: 46.32861,-16.345617 - 4609: 45.98486,-16.408117 - 4610: 45.76611,-16.408117 - 4611: 45.687984,-16.423742 - 4612: 46.187984,-16.345617 - 4613: 45.51611,-16.267492 - 4614: 45.54736,-16.017492 - 4615: 45.67236,-15.814367 - 4616: 45.89111,-15.579992 - 4617: 46.07861,-15.439367 - 4618: 44.687984,-16.545412 - 4619: 44.969234,-16.607912 - 4620: 45.250484,-16.701662 - 4621: 45.39111,-16.701662 - 4622: 44.812984,-16.670412 - 4623: 45.14111,-16.717287 - 4624: 45.39111,-16.904787 - 4625: 45.54736,-17.170412 - 4626: 47.719234,-16.732912 - 4627: 47.79736,-16.732912 - 4628: 48.125484,-16.732912 - 4629: 48.219234,-16.732912 - 4630: 48.29736,-16.842287 - 4631: 48.312984,-17.326662 - 4632: 48.312984,-17.779787 - 4633: 48.312984,-18.217287 - 4634: 48.031734,-17.186037 - 4635: 47.719234,-17.326662 - 4636: 47.60986,-17.717287 4637: 44.508747,-19.723486 4638: 44.383747,-19.95786 4639: 44.414997,-20.23911 @@ -33164,11 +33571,6 @@ entities: 4649: 44.899372,-19.30161 4650: 44.711872,-19.317236 4651: 44.477497,-19.39536 - 4652: 55.939896,-13.295847 - 4653: 56.17427,-13.311472 - 4654: 56.189896,-13.389597 - 4655: 56.158646,-13.545847 - 4656: 56.033646,-13.561472 4657: 57.61177,-13.483347 4658: 58.002396,-13.452097 4659: 58.23677,-13.405222 @@ -33176,8 +33578,6 @@ entities: 4661: 57.783646,-13.170847 4662: 57.92427,-13.014597 4663: 58.127396,-12.873972 - 4664: 55.596146,-13.014597 - 4665: 56.01802,-13.170847 4666: 51.690678,20.420635 4667: 52.018803,20.576885 4668: 52.253178,20.71751 @@ -33298,7 +33698,6 @@ entities: 4783: 37.28019,37.477455 4784: 37.483315,37.49308 4785: 36.93644,37.52433 - 4861: 29.634262,9.631235 4862: 29.978012,9.662485 4863: 30.196762,9.662485 4864: 30.603012,9.537485 @@ -33332,9 +33731,6 @@ entities: 4892: 30.899887,11.39686 4893: 30.290512,11.287485 4894: 30.056137,11.287485 - 5015: 54.42339,-11.045216 - 5016: 54.57964,-11.451466 - 5017: 54.20464,-10.826466 5018: 61.605236,-9.938822 5019: 61.761486,-9.766947 5020: 62.27711,-9.657572 @@ -34382,229 +34778,22 @@ entities: 26459: -74.26213,-21.574144 26460: -74.97707,-22.615812 26461: -74.1854,-22.657478 - 26476: -55.44325,-33.359245 - 26477: -55.052624,-33.34362 - 26478: -54.802624,-33.171745 - 26479: -54.771374,-32.84362 - 26480: -54.662,-32.62487 - 26481: -54.56825,-32.81237 - 26482: -54.583874,-33.390495 - 26483: -54.958874,-33.515495 - 26484: -55.240124,-33.49987 - 26485: -55.2245,-33.359245 - 26486: -54.81825,-33.109245 - 26487: -54.75575,-32.78112 - 26488: -54.646374,-32.265495 - 26489: -54.5995,-31.93737 26490: -54.552624,-31.734245 26491: -54.490124,-31.62487 26492: -54.552624,-31.84362 - 26493: -54.8495,-32.202995 - 26494: -55.146374,-32.609245 - 26495: -55.2245,-32.81237 - 26496: -55.333874,-32.96862 - 26497: -55.0995,-32.452995 - 26498: -54.787,-32.202995 - 26499: -54.56825,-32.03112 26500: -54.4745,-31.71862 26501: -54.63075,-31.265495 26502: -54.646374,-31.03112 - 26503: -54.5995,-30.78112 - 26504: -54.56825,-30.577995 26505: -54.50575,-31.015495 26506: -54.490124,-31.43737 26507: -54.75575,-31.671745 - 26508: -54.990124,-31.81237 - 26509: -54.94325,-31.921745 26510: -54.787,-31.546745 26511: -54.677624,-31.109245 - 26512: -54.94325,-31.577995 - 26513: -55.19325,-31.59362 - 26514: -55.365124,-32.12487 - 26515: -55.25575,-32.234245 - 26516: -55.302624,-32.21862 - 26517: -55.287,-31.484245 - 26518: -55.208874,-31.28112 26519: -54.771374,-30.99987 - 26520: -54.50575,-30.640495 26521: -54.708874,-30.890495 26522: -55.021374,-31.327995 26523: -55.083874,-31.327995 26524: -58.427624,-33.43737 - 26525: -57.88075,-33.421745 - 26526: -58.13075,-33.09362 - 26527: -58.333874,-33.06237 - 26528: -57.8495,-32.87487 - 26529: -57.8495,-33.03112 - 26530: -57.88075,-33.109245 - 26531: -58.115124,-32.609245 - 26532: -58.06825,-32.53112 - 26533: -57.56825,-32.452995 - 26534: -57.537,-32.452995 - 26535: -58.25575,-32.359245 - 26579: -57.107246,-33.240585 - 26580: -57.02912,-33.303085 - 26581: -56.513496,-33.34996 - 26582: -56.02912,-33.365585 - 26583: -55.77912,-33.334335 - 26584: -56.888496,-33.31871 - 26585: -57.357246,-33.303085 - 26586: -57.482246,-33.084335 - 26587: -57.482246,-32.553085 - 26588: -57.294746,-32.771835 - 26589: -57.21662,-33.31871 - 26590: -57.21662,-32.896835 - 26591: -57.27912,-32.459335 - 26592: -57.43537,-32.178085 - 26593: -57.84162,-31.94371 - 26594: -58.12287,-31.928085 - 26595: -58.200996,-31.834335 - 26596: -58.263496,-31.490585 - 26597: -58.21662,-31.44371 - 26598: -57.794746,-32.115585 - 26599: -57.37287,-32.44371 - 26600: -57.31037,-32.459335 - 26601: -58.138496,-31.678085 - 26602: -58.388496,-31.334335 - 26603: -58.357246,-30.75621 - 26604: -58.107246,-30.521835 - 26605: -57.77912,-30.303085 - 26606: -57.732246,-29.78746 - 26607: -57.68537,-29.240585 - 26608: -57.65412,-29.03746 - 26609: -57.950996,-29.646835 - 26610: -58.24787,-30.13121 - 26611: -58.37287,-30.47496 - 26612: -58.40412,-30.771835 - 26613: -58.107246,-29.865585 - 26614: -58.013496,-29.28746 - 26615: -58.02912,-28.75621 - 26616: -58.169746,-28.834335 - 26617: -58.325996,-29.69371 - 26618: -58.325996,-30.271835 - 26619: -58.49787,-30.66246 - 26620: -58.37287,-29.709335 - 26621: -58.21662,-29.09996 - 26622: -57.544746,-28.896835 - 26623: -56.46662,-28.94371 - 26624: -55.919746,-28.81871 - 26625: -55.669746,-28.584335 - 26626: -55.62287,-28.50621 - 26627: -56.21662,-28.678085 - 26628: -56.96662,-28.81871 - 26629: -57.450996,-28.84996 - 26630: -57.732246,-28.896835 - 26631: -58.02912,-29.240585 - 26632: -57.200996,-28.97496 - 26633: -56.71662,-28.709335 - 26634: -56.107246,-28.521835 - 26635: -56.87287,-28.709335 - 26636: -57.482246,-29.178085 - 26637: -57.857246,-29.50621 - 26638: -57.888496,-29.521835 - 26639: -56.74787,-28.91246 - 26640: -55.950996,-28.81871 - 26641: -55.56037,-28.646835 - 26642: -55.09162,-28.646835 - 26643: -54.74787,-28.63121 - 26644: -54.450996,-28.69371 - 26645: -54.27912,-29.084335 - 26646: -54.31037,-29.709335 - 26647: -54.388496,-30.084335 - 26648: -54.857246,-30.41246 - 26649: -55.419746,-30.490585 - 26650: -56.02912,-30.490585 - 26651: -56.232246,-30.490585 - 26652: -55.044746,-30.28746 - 26653: -54.732246,-29.990585 - 26654: -54.388496,-29.59996 - 26655: -54.34162,-29.521835 - 26656: -55.013496,-30.084335 - 26657: -55.68537,-30.16246 - 26658: -55.93537,-30.19371 - 26659: -56.482246,-30.271835 - 26660: -56.68537,-30.44371 - 26661: -56.982246,-30.615585 - 26662: -56.857246,-31.053085 - 26663: -56.52912,-31.240585 - 26664: -56.74787,-30.896835 - 26665: -56.90412,-30.521835 - 26666: -56.40412,-30.209335 - 26667: -56.044746,-30.178085 - 26668: -56.77912,-30.53746 - 26669: -56.96662,-30.928085 - 26670: -56.857246,-31.28746 - 26671: -56.450996,-31.490585 - 26672: -56.09162,-31.678085 - 26673: -55.763496,-31.84996 - 26674: -55.34162,-32.22496 - 26675: -55.700996,-32.16246 - 26676: -56.21662,-31.834335 - 26677: -56.27912,-31.78746 - 26678: -55.68537,-31.91246 - 26679: -55.46662,-32.303085 - 26680: -55.43537,-32.803085 - 26681: -55.638496,-33.19371 - 26682: -55.96662,-33.47496 - 26683: -55.52912,-33.09996 - 26684: -55.544746,-32.553085 - 26685: -55.84162,-32.22496 - 26686: -56.12287,-31.646835 - 26687: -56.31037,-31.146835 - 26688: -55.24787,-30.34996 - 26689: -54.77912,-29.990585 - 26690: -55.482246,-30.06871 - 26691: -55.74787,-30.146835 - 26692: -54.90412,-29.990585 - 26693: -54.482246,-29.69371 - 26694: -54.200996,-29.44371 - 26695: -54.27912,-29.13121 - 26696: -54.37287,-28.75621 - 26697: -54.81037,-28.47496 - 26698: -56.18537,-28.428085 - 26699: -57.18537,-28.646835 - 26700: -57.482246,-28.78746 - 26701: -57.794746,-29.25621 - 26702: -58.06037,-30.00621 - 26703: -58.263496,-30.615585 - 26704: -58.34162,-30.959335 - 26705: -58.388496,-31.428085 - 26706: -58.46662,-31.896835 - 26707: -58.075996,-32.334335 - 26708: -57.857246,-32.428085 - 26709: -57.52912,-32.459335 - 26710: -57.27912,-32.66246 - 26711: -57.263496,-33.209335 - 26712: -57.138496,-33.459335 - 26713: -56.37287,-33.66246 - 26714: -55.982246,-33.490585 - 26715: -54.99787,-33.303085 - 26716: -54.74787,-32.896835 - 26717: -54.482246,-32.53746 - 26718: -55.09162,-32.271835 - 26719: -55.56037,-32.303085 - 26720: -55.96662,-32.115585 - 26721: -56.18537,-32.053085 - 26722: -56.075996,-32.53746 - 26723: -56.107246,-32.959335 - 26724: -55.96662,-33.053085 - 26725: -55.669746,-32.34996 - 26726: -55.794746,-31.678085 - 26727: -55.84162,-30.771835 - 26728: -54.93537,-30.428085 - 26729: -54.46662,-29.834335 - 26730: -55.450996,-29.803085 - 26731: -55.638496,-29.84996 - 26732: -55.49787,-30.16246 - 26733: -55.200996,-29.928085 - 26734: -55.09162,-29.928085 - 26735: -54.982246,-29.928085 - 26736: -55.06037,-29.990585 - 26737: -55.732246,-29.896835 - 26738: -56.169746,-29.896835 - 26739: -56.700996,-30.115585 - 26740: -56.93537,-30.53746 - 26741: -56.46662,-30.88121 - node: color: '#FFFFFF9B' id: splatter @@ -35137,18 +35326,10 @@ entities: 3473: 40.33381,-12.202263 3474: 40.42554,-11.963768 3475: 40.590652,-11.596849 - 3476: 40.939224,-11.321661 - 3477: 41.122684,-11.193239 - 3478: 41.030952,-11.193239 - 3479: 40.68238,-11.376699 - 3480: 41.342834,-11.244249 - 3481: 41.196068,-10.932369 3482: 41.30614,-10.271917 3483: 41.416218,-9.886654 3484: 41.54464,-9.464697 3485: 41.4896,-9.72154 - 3486: 41.251106,-10.565451 - 3487: 41.067646,-11.060791 3488: 41.342834,-9.72154 3489: 41.76479,-9.354622 3490: 41.98494,-9.2262 @@ -35177,23 +35358,8 @@ entities: 3513: 44.98068,-6.132086 3514: 44.32023,-6.297199 3515: 45.1091,-6.132086 - 3516: 45.476017,-5.80186 - 3517: 45.420982,-6.260507 3518: 45.237522,-5.9119353 - 3519: 45.806244,-5.251483 - 3520: 46.173164,-5.178099 - 3521: 46.430004,-5.068024 - 3522: 46.613464,-4.7744894 - 3523: 46.173164,-5.3065205 - 3524: 45.439327,-5.6184006 - 3525: 46.38684,-4.6558065 - 3526: 46.69872,-4.3072343 - 3527: 47.06564,-4.2888885 - 3528: 47.340828,-3.9770083 3529: 47.46925,-3.70182 - 3530: 47.157368,-3.9403162 - 3531: 46.753757,-4.343926 - 3532: 47.157368,-4.032046 3533: 47.72609,-3.4449773 3534: 48.203083,-3.2798643 3535: 48.44158,-3.261518 @@ -35564,14 +35730,6 @@ entities: 30548: -82.40661,16.704159 30549: -82.31286,18.610409 30550: -81.89098,18.672909 - 30551: -81.57848,18.610409 - 30552: -81.51598,18.563534 - 30553: -81.51598,18.501034 - 30554: -81.51598,18.360409 - 30555: -81.42223,18.047909 - 30556: -81.46911,17.485409 - 30557: -81.18786,17.469784 - 30558: -80.92223,17.391659 - node: cleanable: True color: '#FFFFFF9B' @@ -35703,17 +35861,30 @@ entities: 15096: -55.918568,-0.54699254 15097: -55.840443,-0.45324254 - node: + zIndex: -1 color: '#FFFFFF9E' id: splatter decals: - 29022: -86.80835,62.647247 - 29023: -86.7146,62.662872 - 29024: -86.605225,62.897247 - 29025: -86.5271,63.069122 - 29026: -86.448975,63.194122 - 29027: -86.4646,63.194122 - 29028: -86.792725,62.584747 - 29029: -87.12085,62.319122 + 31463: 41.630966,-10.5407505 + 31465: 42.224716,-10.6345005 + 31467: 42.83409,-10.5095005 + 31478: 42.380966,-11.5720005 + 31479: 43.24034,-11.5876255 + 31480: 41.037216,-11.5251255 + 31481: 41.55284,-11.4626255 + 31482: 41.92784,-11.5251255 + 31483: 40.755966,-11.4157505 + 31484: 42.537216,-11.5876255 + 31485: 42.80284,-11.6345005 + 31486: 42.505966,-10.5407505 + 31487: 41.86534,-10.5095005 + 31488: 43.24226,-10.512815 + 31493: 42.914135,-10.52844 + 31556: 31.647987,10.988762 + 31557: 31.538612,10.723137 + 31558: 31.569862,10.363762 + 31559: 31.522987,9.926262 + 31560: 31.757362,11.082512 - node: color: '#FFFFFFA7' id: splatter @@ -35995,6 +36166,18 @@ entities: 11283: 53.166286,17.942938 11284: 52.854404,17.722788 11285: 52.670944,17.686096 + 31082: 50.46854,-37.405956 + 31083: 50.671665,-37.468456 + 31084: 50.65604,-38.030956 + 31085: 50.46854,-38.155956 + 31086: 51.202915,-37.17158 + 31087: 50.827915,-37.155956 + 31088: 50.827915,-36.843456 + 31089: 50.74979,-36.655956 + 31090: 50.56229,-36.687206 + 31091: 50.06229,-36.468456 + 31092: 48.952915,-34.82783 + 31093: 48.421665,-34.35906 - node: angle: 1.5707963267948966 rad color: '#FFFFFFB4' @@ -36009,11 +36192,6 @@ entities: 29849: -72.04838,18.52416 29850: -72.23588,18.571035 29851: -71.314,18.33666 - 29852: -73.22025,16.49291 - 29853: -72.70463,16.571035 - 29854: -72.51713,16.758535 - 29855: -72.42338,16.977285 - 29856: -72.76713,16.539785 - node: angle: -0.6981317007977318 rad color: '#FFFFFFB7' @@ -37396,12 +37574,6 @@ entities: 13973: -47.600365,-48.670254 13974: -47.86599,-48.795254 13975: -48.08474,-48.732754 - 13976: -56.080856,-27.914366 - 13977: -55.924606,-27.71124 - 13978: -56.362106,-28.008116 - 13979: -56.299606,-27.61749 - 13980: -54.84648,-28.17999 - 13981: -54.59648,-27.695616 13982: -54.362106,-27.351866 13983: -54.362106,-27.101866 13984: -54.43055,-25.21124 @@ -37775,11 +37947,6 @@ entities: id: star decals: 15688: -82.04819,28.193335 - - node: - color: '#1E9CFFFF' - id: t - decals: - 13648: 41.922897,52.130714 - type: GridAtmosphere version: 2 data: @@ -38501,7 +38668,8 @@ entities: 12,-4: 1: 37120 12,-3: - 1: 639 + 1: 575 + 4: 64 12,-1: 1: 65520 8,4: @@ -38703,7 +38871,8 @@ entities: 0: 4607 1: 49152 2,9: - 0: 65535 + 0: 65023 + 5: 512 2,10: 0: 41215 2,11: @@ -38759,7 +38928,7 @@ entities: -8,11: 1: 275 3: 16384 - 4: 32768 + 6: 32768 -9,11: 1: 34944 -8,12: @@ -39233,14 +39402,14 @@ entities: -7,-14: 1: 4094 -7,-16: - 5: 3276 + 7: 3276 -7,-15: - 4: 3276 + 6: 3276 -6,-16: - 5: 273 + 7: 273 1: 17476 -6,-15: - 4: 273 + 6: 273 1: 17476 -6,-14: 1: 1891 @@ -39518,7 +39687,8 @@ entities: -15,3: 0: 32904 -14,4: - 0: 255 + 0: 223 + 8: 32 -14,5: 1: 64512 -14,6: @@ -39640,7 +39810,8 @@ entities: 0: 2184 1: 818 -20,4: - 0: 3822 + 0: 3814 + 5: 8 -19,0: 1: 62256 -19,1: @@ -39648,7 +39819,8 @@ entities: -19,2: 1: 1 -19,3: - 0: 819 + 0: 307 + 8: 512 -19,4: 0: 1843 1: 2176 @@ -39664,7 +39836,8 @@ entities: 1: 782 0: 32 -21,5: - 1: 38916 + 1: 38912 + 4: 4 -20,6: 1: 62208 0: 2048 @@ -39706,10 +39879,12 @@ entities: -15,10: 1: 60416 -15,11: - 1: 2246 + 1: 2182 + 4: 64 0: 8 -15,12: - 0: 30513 + 0: 14129 + 9: 16384 -14,8: 1: 62224 -14,9: @@ -39803,9 +39978,11 @@ entities: -17,13: 0: 65535 -16,13: - 0: 7099 + 0: 5051 + 10: 2048 -15,13: - 0: 823 + 0: 819 + 9: 4 -15,15: 1: 57344 -15,16: @@ -40260,7 +40437,8 @@ entities: 1: 11 0: 65280 13,2: - 0: 15281 + 0: 13233 + 8: 2048 13,3: 0: 139 13,-1: @@ -40377,7 +40555,7 @@ entities: 0: 52428 14,-12: 0: 61440 - 4: 128 + 6: 128 14,-11: 0: 65535 14,-10: @@ -40414,7 +40592,7 @@ entities: -5,-18: 3: 30576 -4,-18: - 6: 30576 + 11: 30576 -11,-19: 1: 51328 -11,-18: @@ -40820,7 +40998,8 @@ entities: -26,-1: 1: 65520 -32,-4: - 1: 51 + 1: 49 + 12: 2 -32,-3: 1: 65480 -33,-3: @@ -40994,7 +41173,7 @@ entities: -25,5: 0: 4353 3: 1024 - 4: 16384 + 6: 16384 -25,6: 0: 4113 -25,7: @@ -41083,6 +41262,36 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 234.99979 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -41113,6 +41322,51 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.813705 + - 82.06108 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -41128,6 +41382,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance @@ -41174,7 +41443,7 @@ entities: - type: ContainedSolution containerName: drink container: 5 - - uid: 40203 + - uid: 40599 components: - type: MetaData desc: "" @@ -44296,6 +44565,25 @@ entities: id: brush decals: 144: 54.90141,59.289665 + - node: + color: '#FFFFFFFF' + id: burnt2 + decals: + 5701: 29.019928,25.121338 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 5754: 55,77 + 5755: 57,74 + 5756: 51,76 + 5757: 50,79 + - node: + color: '#FFFFFFFF' + id: burnt3 + decals: + 5700: 37.01323,22.933838 - node: cleanable: True angle: -0.5410520681182421 rad @@ -45848,6 +46136,62 @@ entities: 1475: 42.29358,82.95 1476: 42.215454,82.95 1477: 42.340454,82.95 + - node: + color: '#00000044' + id: splatter + decals: + 5702: 37.160553,23.011963 + 5703: 36.863678,23.074463 + 5704: 36.801178,22.902588 + 5705: 37.144928,22.746338 + 5706: 37.285553,22.824463 + 5707: 36.957428,22.933838 + 5708: 36.551178,23.246338 + 5709: 36.598053,23.105713 + 5710: 36.613678,22.996338 + 5711: 36.723053,22.996338 + 5712: 37.176178,23.246338 + 5713: 37.129303,22.965088 + 5714: 36.988678,23.058838 + 5715: 36.926178,23.058838 + 5716: 36.941803,22.996338 + 5717: 36.957428,22.949463 + 5718: 29.211075,24.949463 + 5719: 29.07045,24.949463 + 5720: 28.9767,24.980713 + 5721: 28.6642,25.215088 + 5722: 28.9767,25.058838 + 5723: 29.054825,24.918213 + 5724: 28.6017,25.277588 + 5725: 29.82045,25.277588 + 5726: 29.492325,25.386963 + 5727: 29.023575,25.043213 + 5728: 29.00795,25.011963 + 5729: 28.69545,24.824463 + 5730: 28.867325,24.480713 + 5731: 28.836075,24.652588 + 5732: 28.82045,24.902588 + 5733: 28.898575,25.011963 + 5734: 28.898575,24.996338 + 5735: 28.898575,24.949463 + 5736: 28.898575,24.949463 + 5737: 29.148575,24.949463 + 5738: 35.8918,38.832855 + 5739: 35.8918,38.91098 + 5740: 36.17305,39.020355 + 5741: 36.094925,39.051605 + 5742: 35.92305,38.989105 + 5743: 35.98555,39.12973 + 5744: 35.98555,39.301605 + 5745: 36.032425,39.114105 + 5746: 36.219925,38.94223 + 5747: 36.1418,38.895355 + 5748: 35.8293,38.832855 + 5749: 35.657425,39.19223 + 5750: 35.8918,39.22348 + 5751: 35.79805,39.03598 + 5752: 35.61055,38.75473 + 5753: 35.969925,38.895355 - node: angle: 1.5707963267948966 rad color: '#00000072' @@ -49469,7 +49813,7 @@ entities: - 0 - 0 chunkSize: 4 - - uid: 44970 + - uid: 45355 components: - type: MetaData name: Горячие источники "Тёплая плазма" @@ -50259,6 +50603,123 @@ entities: 937: 1.5676112,11.122191 938: 1.578028,11.163857 939: 1.546778,11.007607 + - node: + color: '#FFFFFF7F' + id: grasssnow01 + decals: + 1404: -2.0109825,-9.003983 + - node: + color: '#FFFFFF7F' + id: grasssnow02 + decals: + 1367: -7.791363,15.402893 + 1384: 15.755394,0.83732605 + 1393: 1.9988632,-10.858704 + 1402: 3.7730026,-2.0133514 + 1403: -1.6516075,-8.972733 + 1423: -7.6783257,9.62088 + - node: + color: '#FFFFFF7F' + id: grasssnow03 + decals: + 1364: -8.197613,5.697632 + 1380: 15.99979,6.9549255 + - node: + color: '#FFFFFF7F' + id: grasssnow04 + decals: + 1389: 18.725454,-3.1553497 + 1419: -3.7995205,-4.4228973 + - node: + color: '#FFFFFF7F' + id: grasssnow06 + decals: + 1369: -9.181988,14.590393 + - node: + color: '#FFFFFF7F' + id: grasssnow07 + decals: + 1365: -8.478863,5.150757 + 1366: -8.244488,15.777893 + 1392: 1.5144882,-10.671204 + 1394: 1.6082382,-11.171204 + 1395: 1.3305988,-14.401688 + 1401: 3.3823776,-1.8571014 + - node: + color: '#FFFFFF7F' + id: grasssnow08 + decals: + 1358: -10.600506,-4.033615 + 1362: -13.228863,7.353882 + 1378: 9.130031,3.3299255 + 1379: 15.84354,6.5955505 + 1385: 16.114769,1.2869263 + 1398: 9.215135,-11.941315 + 1400: 1.4605026,-4.3883514 + 1407: 16.474737,-10.325668 + 1420: 7.959816,10.733307 + 1427: 1.8875885,24.080826 + - node: + color: '#FFFFFF7F' + id: grasssnow09 + decals: + 1363: -13.010113,7.088257 + 1372: -4.486822,24.183304 + 1374: 6.421612,16.010391 + 1388: 19.037954,-3.5615997 + 1390: 11.730914,-13.436829 + 1396: 1.1274738,-14.401688 + 1405: 17.209112,-10.731918 + 1409: 6.0652733,-15.775421 + 1416: -7.8446865,-14.188522 + 1421: 8.052831,11.418411 + - node: + color: '#FFFFFF7F' + id: grasssnow10 + decals: + 1359: -12.4710045,0.44282532 + 1368: -8.760113,15.121643 + 1383: 16.067894,0.66545105 + 1391: 11.527789,-12.968079 + 1406: 17.052862,-9.935043 + 1417: -10.125935,-11.438522 + - node: + color: '#FFFFFF7F' + id: grasssnow11 + decals: + 1361: -12.5960045,-0.18217468 + 1377: 9.145656,3.1424255 + 1386: 16.567894,-0.66619873 + 1387: 14.333519,1.3650513 + 1408: 17.740362,-9.888168 + 1411: 6.6433983,-15.275421 + 1412: 6.7527733,-15.681671 + 1413: -1.9336491,-15.181671 + - node: + color: '#FFFFFF7F' + id: grasssnow12 + decals: + 1360: -13.3772545,0.14595032 + 1370: -9.197613,15.512268 + 1375: 6.046612,15.510391 + 1376: 8.411281,3.3455505 + 1410: 5.7683983,-15.166046 + 1418: -11.026432,-8.975479 + 1422: -8.053326,9.931778 + 1424: -8.006451,8.65213 + 1425: 1.8719635,24.90895 + - node: + color: '#FFFFFF7F' + id: grasssnow13 + decals: + 1371: -4.783697,24.558304 + 1373: 6.077862,16.276016 + 1381: 15.421665,7.6268005 + 1382: 16.302269,0.50920105 + 1397: 9.246385,-11.535065 + 1414: -1.7930241,-15.462921 + 1415: -8.0946865,-13.797897 + 1426: 1.5125885,25.018326 - node: color: '#FFFFFFFF' id: grasssnowa1 @@ -51390,6 +51851,2084 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - uid: 46584 + components: + - type: MetaData + name: Плазмодобытчики + - type: Transform + pos: 247.0568,-149.69492 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: UgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAUgAAAAAAUgAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAIQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAAgQAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAgQAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAACwAAAAAACwAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAARQAAAAAAUgAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAACwAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAUgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAUgAAAAAARQAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAARQAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIQAAAAAAgQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAUgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAACwAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: RQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAAUgAAAAAAUgAAAAAAUgAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAUgAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Box + decals: + 18: -1,1 + 19: -1,0 + 20: -4,3 + 21: -4,2 + 22: -4,0 + 23: 3,7 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 0: 3,3 + 1: 5,5 + 2: 6,5 + 3: 3,6 + 7: -3,10 + 8: -3,9 + 9: -3,8 + 10: -3,2 + 12: -2,0 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 4: 4,5 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 13: -1,1 + 14: -1,0 + 15: -4,3 + 16: -3,2 + 17: -2,3 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 5: 4,4 + 6: 2,4 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 26: -3,3 + - node: + color: '#FFFFFF7F' + id: grasssnow01 + decals: + 612: -8.588501,6.6762695 + - node: + color: '#FFFFFF7F' + id: grasssnow02 + decals: + 567: -0.7923889,11.0607605 + 611: -8.869751,6.8012695 + 626: -8.982178,11.184937 + - node: + angle: 0.7155849933176751 rad + color: '#FFFFFF7F' + id: grasssnow02 + decals: + 562: 2.160736,10.0607605 + - node: + color: '#FFFFFF7F' + id: grasssnow03 + decals: + 566: -1.9173889,11.9357605 + 654: -1.8375854,4.4200134 + 655: 0.83428955,1.7325134 + - node: + color: '#FFFFFF7F' + id: grasssnow05 + decals: + 628: -9.060303,8.841187 + 629: -8.927872,4.780655 + - node: + color: '#FFFFFF7F' + id: grasssnow06 + decals: + 615: 4.1776733,-2.2662659 + 619: 7.145813,1.5228271 + - node: + color: '#FFFFFF7F' + id: grasssnow07 + decals: + 614: 0.82373047,0.70248413 + - node: + color: '#FFFFFF7F' + id: grasssnow08 + decals: + 616: 6.8490143,8.4696045 + 620: 3.2432556,19.854874 + 623: -1.3504944,17.964249 + 627: -9.294678,9.653687 + 648: -6.4522247,2.025406 + 650: -4.1553497,4.087906 + 653: -2.3219604,5.7481384 + - node: + angle: 0.7155849933176751 rad + color: '#FFFFFF7F' + id: grasssnow08 + decals: + 563: 0.082611084,9.9982605 + - node: + color: '#FFFFFF7F' + id: grasssnow09 + decals: + 610: -9.041626,6.4262695 + 617: 7.1146393,10.2821045 + 624: -7.265457,13.979874 + 651: -5.3584747,6.087906 + - node: + angle: 0.7155849933176751 rad + color: '#FFFFFF7F' + id: grasssnow09 + decals: + 564: 0.9732361,11.0138855 + - node: + color: '#FFFFFF7F' + id: grasssnow10 + decals: + 565: 1.9263611,11.9670105 + 613: 0.97998047,0.43685913 + 618: 7.0088806,16.794037 + 625: -7.702957,13.214249 + - node: + color: '#FFFFFF7F' + id: grasssnow11 + decals: + 652: -7.7490997,6.072281 + - node: + color: '#FFFFFF7F' + id: grasssnow12 + decals: + 621: 4.0870056,20.214249 + 622: -2.2254944,17.198624 + 649: -4.9053497,1.8535309 + - node: + color: '#FFFFFF7F' + id: grasssnow13 + decals: + 609: -4.3082733,5.9227295 + - node: + color: '#FFFFFF7F' + id: splatter + decals: + 314: -10.009903,5.264267 + 315: -9.650528,4.842392 + 317: -9.619278,3.858017 + 327: -9.791153,3.608017 + 329: -9.791153,3.404892 + 332: -9.400528,3.217392 + 346: -9.666153,3.233017 + 352: -9.572403,3.045517 + 372: -8.600662,3.842392 + 384: -1.7869415,3.5762634 + 385: -1.6775665,3.7481384 + 386: -1.5681915,3.9512634 + 400: -2.0056915,3.4825134 + 403: -1.7556915,3.4043884 + 405: -1.4900665,3.4512634 + 412: -1.5369415,3.9512634 + 414: -1.7088165,4.4043884 + 420: -0.33381653,3.2637634 + 422: -0.39631653,2.8418884 + 424: -0.5525665,3.2168884 + 426: -0.5369415,3.5606384 + 428: -0.38069153,3.7793884 + 471: -1.4999695,10.25827 + 474: -1.5468445,10.211395 + 479: -1.3749695,9.66452 + 481: -1.4687195,9.60202 + 498: 0.44662476,9.610153 + 499: 0.32162476,9.813278 + 500: 0.41537476,10.266403 + 501: 0.66537476,10.578903 + 502: 0.93099976,10.657028 + 506: 1.5872498,10.266403 + 508: 1.5872498,9.891403 + 510: 1.4309998,9.407028 + 516: 1.0872498,9.282028 + 535: 1.3625641,2.8612976 + 537: 1.4875641,2.6894226 + 539: 1.5031891,2.6269226 + 548: 1.5969391,2.9706726 + 555: 1.6438141,2.5644226 + 557: -8.223984,1.5556641 + 558: -8.130234,1.3994141 + 559: -7.630234,1.3369141 + 560: -7.333359,1.4619141 + 561: -7.177109,1.5087891 + 568: -1.6500702,6.355194 + 569: -1.4313202,6.027069 + 570: -1.4156952,5.698944 + 571: -1.4000702,5.511444 + 572: -1.4000702,5.480194 + 573: -1.4313202,5.964569 + 574: -1.5719452,6.370819 + 575: -1.5563202,5.933319 + 576: -1.4313202,5.511444 + 577: -1.4000702,5.120819 + 578: -1.4156952,4.870819 + 579: -1.4938202,4.464569 + 580: -1.5094452,4.230194 + 581: -1.4938202,3.948944 + 582: -1.4156952,3.730194 + 583: -1.0875702,3.542694 + 584: -1.0250702,3.480194 + 585: -1.2438202,3.667694 + 586: -1.6031952,4.183319 + 587: -1.5563202,4.230194 + 588: -0.9781952,3.683319 + 589: -0.3844452,3.402069 + 590: -4.134445,3.6241455 + 591: -3.7906952,3.5460205 + 592: -3.4938202,3.5303955 + 593: -3.2281952,3.4991455 + 594: -2.9938202,3.5772705 + 595: -2.7438202,3.5928955 + 596: -2.3063202,3.6241455 + 597: -2.1031952,3.6241455 + 598: -2.0563202,3.6241455 + 599: -2.0563202,3.6241455 + 600: -2.2906952,3.6710205 + 601: -2.7906952,3.6553955 + 602: -5.36882,2.4522705 + 603: -5.196945,2.4522705 + 604: -4.99382,2.4522705 + 605: -4.665695,2.3585205 + 606: -4.52507,2.2022705 + 607: -4.509445,1.7647705 + 608: -4.58757,1.4991455 + 630: -8.724747,2.405655 + 631: -8.584122,2.07753 + 632: -8.521622,2.030655 + 633: -8.834122,2.39003 + 634: -9.318497,3.04628 + 635: -9.427872,3.32753 + 636: -9.459122,3.54628 + 637: -9.537247,3.64003 + 638: -9.505997,3.843155 + 639: -9.537247,3.624405 + 640: -9.568497,3.530655 + 641: -9.537247,4.436905 + 642: -9.537247,5.01503 + 643: -9.630997,5.468155 + 644: -9.740372,5.624405 + 645: -9.755997,5.561905 + 646: -9.552872,5.23378 + 647: -9.474747,4.843155 + - node: + angle: 0.7155849933176751 rad + color: '#FFFFFF7F' + id: splatter + decals: + 536: 7.4678955,15.611603 + 538: 7.4522705,15.127228 + 540: 7.4366455,14.689728 + 541: 7.4366455,14.361603 + 542: 7.4678955,14.095978 + 543: 7.4678955,13.830353 + 544: 7.4366455,13.424103 + 545: 7.4210205,13.017853 + 546: 7.4210205,12.970978 + 547: 7.4835205,13.174103 + 549: 7.4835205,13.533478 + 550: 7.5460205,13.814728 + 551: 7.5147705,14.158478 + 552: 7.5147705,14.595978 + 553: 7.4522705,14.986603 + 554: 7.4522705,15.267853 + 556: 7.4366455,15.408478 + - node: + cleanable: True + angle: 0.7155849933176751 rad + color: '#FFFFFF7F' + id: splatter + decals: + 45: 2.2164917,10.186691 + 46: 2.4039917,9.999191 + 47: 2.6071167,9.514816 + 48: 2.8258667,9.421066 + 49: 3.1696167,9.499191 + 50: 3.4196167,9.624191 + 51: 3.6696167,9.905441 + 52: 3.6696167,9.921066 + 53: 3.5133667,9.796066 + 54: 2.8727417,9.592941 + 55: 2.4352417,9.624191 + 56: 2.5446167,9.811691 + 57: 2.7633667,9.717941 + 58: -1.4085083,11.844299 + 59: -1.1428833,11.609924 + 60: -1.0960083,11.547424 + 61: -1.4553833,11.750549 + 62: -1.7210083,12.094299 + 63: 0.2789917,12.484924 + 64: 0.4664917,12.234924 + 65: 0.4977417,11.984924 + 66: 0.4508667,11.656799 + 67: 0.4508667,11.609924 + 68: 0.3414917,12.141174 + 69: 0.0446167,12.578674 + 70: -0.9397583,12.625549 + 71: -1.3147583,12.422424 + 72: -1.2522583,12.328674 + 73: -1.2678833,12.328674 + 74: 6.4977417,11.531799 + 75: 6.5289917,11.000549 + 76: 6.5914917,10.703674 + 77: 6.7477417,10.500549 + 78: 6.7633667,10.500549 + 79: 6.5914917,10.953674 + 80: 6.5446167,11.469299 + 81: 6.5289917,11.750549 + 82: 6.6383667,11.938049 + 83: 6.8414917,12.266174 + 84: 6.8727417,12.313049 + 85: 6.7008667,12.188049 + 86: 6.5446167,11.734924 + 87: 6.5289917,11.563049 + 88: 6.9039917,10.578674 + 89: 7.1696167,10.531799 + 90: 7.3727417,10.359924 + 91: 7.4352417,10.141174 + 92: 7.4508667,9.969299 + 93: 7.4508667,9.797424 + 94: 7.4352417,9.656799 + 95: 7.4196167,9.547424 + 96: 7.3258667,9.906799 + 97: 7.1227417,10.391174 + 98: 7.2946167,9.984924 + 99: 7.2946167,9.438049 + 100: 7.2946167,8.672424 + 101: 7.3571167,8.297424 + 102: 7.3571167,7.9067993 + 103: 7.3883667,7.7817993 + 104: 7.5289917,7.7349243 + 105: 7.4821167,8.313049 + 106: 7.4508667,8.625549 + 107: 7.4821167,8.406799 + 108: 7.5133667,8.000549 + 109: 7.5133667,7.7661743 + 111: 7.4508667,7.5630493 + 112: 7.3258667,7.3599243 + 122: 6.8027954,2.4772797 + 124: 7.0840454,2.4616547 + 126: 7.5371704,2.5397797 + 128: 8.021545,2.5241547 + 129: 8.28717,2.4460297 + 130: 8.396545,2.1804047 + 131: 8.41217,1.7429047 + 132: 8.396545,1.5554047 + 134: 8.396545,1.6804047 + 136: 8.22467,2.2429047 + 137: 7.8965454,2.4460297 + 138: 7.5059204,2.5710297 + 139: 7.5059204,2.5710297 + 140: 8.06842,2.4616547 + 141: 8.19342,2.3210297 + 142: 8.16217,1.6960297 + 143: 7.8496704,1.3991547 + 144: 7.6465454,1.1804047 + 145: 7.4746704,0.89915466 + 146: 7.4121704,0.77415466 + 147: 7.4121704,0.74290466 + 149: 7.7402954,1.1491547 + 150: 8.09967,1.4772797 + 151: 8.209045,1.5397797 + 152: 8.00592,1.3366547 + 153: 7.6309204,1.0241547 + 154: 7.3809204,0.78977966 + 155: 7.3809204,0.77415466 + 156: 6.7871704,-0.24147034 + 157: 6.4746704,-0.60084534 + 158: 6.4277954,-0.69459534 + 160: 6.4590454,-0.74147034 + 161: 6.7246704,-0.36647034 + 179: -10.70549,7.307358 + 180: -10.51799,7.338608 + 181: -10.564865,6.869858 + 183: -10.564865,6.635483 + 184: -10.533615,6.401108 + 186: -10.502365,6.229233 + 188: -10.471115,6.041733 + 189: -10.45549,5.916733 + 190: -10.45549,6.307358 + 191: -10.439865,6.729233 + 192: -10.377365,6.901108 + 193: -10.252365,7.197983 + 194: -10.08049,7.416733 + 196: -9.86174,7.682358 + 197: -9.564865,7.994858 + 198: -9.502365,8.151108 + 199: -9.658615,7.869858 + 200: -9.76799,7.572983 + 201: -9.83049,7.510483 + 202: -10.002365,7.447983 + 204: -9.64299,7.760483 + 206: -9.502365,7.994858 + 208: -9.67424,7.760483 + 209: -10.33049,7.510483 + 211: -10.42424,7.479233 + 212: -10.314865,7.479233 + 213: -9.95549,7.760483 + 214: -9.64299,8.119858 + 215: -9.596115,8.369858 + 216: -9.564865,8.572983 + 217: -9.533615,8.791733 + 218: -9.533615,8.932358 + 219: -9.533615,8.822983 + 220: -9.627365,8.119858 + 221: -9.73674,7.885483 + 222: -9.42424,9.389481 + 223: -9.439865,9.405106 + 224: -9.439865,9.826981 + 226: -9.42424,10.092606 + 227: -9.42424,10.092606 + 228: -9.408615,9.748856 + 229: -9.439865,9.373856 + 230: -9.533615,9.139481 + 231: -9.45549,9.842606 + 232: -9.45549,10.623856 + 233: -9.45549,11.155106 + 234: -9.45549,11.467606 + 235: -9.45549,11.514481 + 236: -9.45549,11.030106 + 237: -9.45549,10.342606 + 238: -9.502365,10.123856 + 239: -9.502365,10.936356 + 241: -9.33049,11.576981 + 242: -9.04924,11.733231 + 243: -8.73674,11.983231 + 244: -8.58049,12.342606 + 245: -8.596115,12.248856 + 246: -8.89299,11.936356 + 247: -9.11174,11.733231 + 248: -9.14299,11.701981 + 249: -8.752365,11.811356 + 250: -8.45549,12.201981 + 251: -8.439865,12.264481 + 252: -8.67424,11.733231 + 253: -8.79924,11.498856 + 254: -8.83049,11.405106 + 255: -8.64299,11.701981 + 256: -8.51799,12.061356 + 257: -8.45549,12.280106 + 258: -8.83049,12.030106 + 259: -9.064865,11.873856 + 260: -8.73674,12.670731 + 261: -8.64299,12.967606 + 262: -8.596115,13.045731 + 263: -8.596115,13.186356 + 264: -8.596115,13.139481 + 265: -8.596115,12.951981 + 266: -8.73674,12.483231 + 267: -8.752365,12.358231 + 268: -8.73674,12.451981 + 269: -8.48674,13.170731 + 271: -8.408615,13.311356 + 273: -8.04924,13.530106 + 275: -7.83049,13.561356 + 277: -7.67424,13.561356 + 278: -7.564865,13.530106 + 279: -7.58049,13.436356 + 280: -7.95549,13.405106 + 281: -8.377365,13.373856 + 316: -7.6482544,13.850952 + 318: -7.3357544,14.179077 + 319: -7.3513794,14.179077 + 320: -7.6638794,13.882202 + 321: -7.7888794,13.772827 + 322: -7.7107544,14.085327 + 323: -7.5232544,14.179077 + 324: -7.3201294,14.210327 + 325: -7.0701294,14.257202 + 326: -6.8045044,14.366577 + 328: -7.1326294,14.382202 + 330: -7.2732544,14.335327 + 331: -7.3045044,14.304077 + 333: -7.1482544,14.304077 + 334: -6.5232544,14.335327 + 335: -6.2263794,14.304077 + 336: -6.0545044,14.288452 + 337: -5.8357544,14.288452 + 338: -5.6482544,14.288452 + 339: -5.6013794,14.288452 + 340: -5.9763794,14.272827 + 341: -6.3670044,14.350952 + 342: -6.4451294,14.350952 + 343: -6.3982544,14.350952 + 344: -6.0701294,14.350952 + 345: -5.7732544,14.350952 + 347: -5.2888794,14.382202 + 348: -5.0857544,14.382202 + 349: -4.6170044,14.429077 + 350: -4.1795044,14.491577 + 351: -3.8982544,14.522827 + 353: -3.8826294,14.569702 + 354: -4.5232544,14.429077 + 355: -4.7420044,14.413452 + 356: -4.1951294,14.538452 + 357: -3.6795044,14.741577 + 358: -3.3513794,14.944702 + 359: -3.6013794,14.757202 + 360: -3.9920044,14.413452 + 361: -3.9920044,14.413452 + 362: -3.5857544,14.663452 + 363: -3.3513794,15.147827 + 364: -3.1013794,15.350952 + 365: -2.7107544,15.522827 + 366: -2.5076294,15.757202 + 367: -2.4451294,15.850952 + 368: -2.6170044,15.585327 + 369: -2.7576294,15.429077 + 370: -2.8201294,15.413452 + 371: -2.4295044,15.897827 + 373: -2.424347,16.829163 + 374: -2.377472,17.266663 + 375: -2.377472,17.376038 + 376: -2.377472,17.094788 + 377: -2.408722,16.719788 + 378: -2.424347,16.860413 + 379: -2.299347,17.282288 + 380: -2.127472,17.469788 + 381: -1.8930969,17.516663 + 382: -1.7212219,17.594788 + 383: -1.9555969,17.469788 + 387: -1.9087219,18.219788 + 388: -1.9555969,17.860413 + 389: -1.9555969,17.704163 + 390: -1.9087219,18.063538 + 391: -1.7212219,18.360413 + 392: -1.7368469,18.016663 + 393: -1.8618469,17.626038 + 394: -1.7680969,17.766663 + 395: -1.6274719,18.204163 + 396: -1.5180969,18.376038 + 397: -1.3305969,18.563538 + 398: -1.1743469,18.782288 + 399: -1.2055969,18.688538 + 401: -1.2680969,18.563538 + 402: -0.9399719,18.704163 + 404: -0.5337219,18.751038 + 406: -0.43997192,18.751038 + 407: -0.6743469,18.751038 + 408: -0.8618469,18.719788 + 409: -0.9399719,18.704163 + 410: -0.5649719,18.719788 + 411: -0.5180969,18.751038 + 413: -0.8462219,18.751038 + 415: -0.24615479,19.390167 + 416: -0.121154785,19.562042 + 417: 0.14447021,19.546417 + 418: 0.3632202,19.452667 + 419: 0.5507202,19.390167 + 421: 0.6444702,19.374542 + 423: 0.7694702,19.296417 + 425: 0.6132202,19.358917 + 427: 0.17572021,19.483917 + 429: 0.0038452148,19.562042 + 430: 0.12884521,19.562042 + 431: 0.4725952,19.577667 + 432: 0.7694702,19.562042 + 433: 0.7850952,19.530792 + 434: 0.4725952,19.733917 + 435: 0.2850952,19.780792 + 436: 0.16009521,19.765167 + 437: 0.113220215,19.702667 + 438: 0.3163452,19.624542 + 439: 0.7225952,19.499542 + 440: 1.1600952,19.312042 + 441: 1.5663452,19.249542 + 442: 1.9413452,19.296417 + 443: 1.6444702,19.296417 + 444: 1.1913452,19.280792 + 445: 1.1913452,19.312042 + 446: 1.6600952,19.405792 + 447: 2.1913452,19.405792 + 448: 2.4413452,19.437042 + 449: 2.0819702,19.421417 + 450: 2.3632202,19.577667 + 451: 2.6600952,19.796417 + 452: 2.6444702,19.874542 + 453: 2.4569702,19.687042 + 454: 2.5350952,19.702667 + 455: 2.7069702,20.046417 + 456: 2.7694702,20.327667 + 457: 2.7850952,20.390167 + 458: 2.6600952,20.202667 + 459: 2.6444702,20.140167 + 460: 2.8319702,20.374542 + 461: 3.0663452,20.374542 + 462: 3.3632202,20.358917 + 463: 3.5507202,20.312042 + 464: 3.5507202,20.327667 + 465: 3.8319702,20.374542 + 466: 4.066345,20.374542 + 467: 4.30072,20.390167 + 468: 4.70697,20.405792 + 469: 4.691345,20.405792 + 470: 3.7538452,20.483917 + 472: 3.3632202,20.562042 + 473: 3.1757202,20.562042 + 475: 3.7069702,20.562042 + 476: 4.378845,20.515167 + 477: 4.95697,20.390167 + 478: 5.378845,20.233917 + 480: 5.691345,19.905792 + 482: 5.86322,19.593292 + 483: 5.86322,19.593292 + 484: 5.441345,20.155792 + 485: 5.347595,20.327667 + 486: 5.33197,20.327667 + 487: 5.61322,19.952667 + 488: 5.847595,19.702667 + 489: 5.92572,19.593292 + 490: 5.95697,19.593292 + 491: 6.17572,19.280792 + 492: 6.51947,18.858917 + 493: 6.61322,18.405792 + 494: 6.660095,17.937042 + 495: 6.691345,17.874542 + 496: 6.691345,17.780792 + 497: 6.691345,17.780792 + 503: 6.83197,17.593292 + 504: 6.80072,17.702667 + 505: 6.691345,18.124542 + 507: 6.566345,18.405792 + 509: 6.535095,18.796417 + 511: 6.51947,19.015167 + 512: 6.51947,18.671417 + 513: 6.566345,18.124542 + 514: 6.722595,17.733917 + 515: 6.80072,17.562042 + 517: 6.80072,16.108917 + 518: 6.80072,16.077667 + 519: 7.08197,16.280792 + 520: 7.160095,16.343292 + 521: 7.17572,16.343292 + 522: 6.972595,16.249542 + 523: 6.76947,16.046417 + 524: 6.58197,15.733917 + 525: 6.55072,15.655792 + 526: 6.910095,15.937042 + 527: 7.14447,16.374542 + 528: 7.14447,16.343292 + 529: 7.035095,15.890167 + 530: 7.14447,15.640167 + 531: 7.17572,15.546417 + 532: 7.23822,15.483917 + 533: 7.128845,15.937042 + 534: 7.05072,16.296417 + - node: + angle: 1.8151424220741028 rad + color: '#FFFFFF7F' + id: splatter + decals: + 27: -0.24304199,-0.61961365 + 28: 0.038208008,-0.74461365 + 29: 0.24133301,-0.97898865 + 30: 0.335083,-1.2289886 + 31: 0.288208,-0.74461365 + 32: 0.288208,-0.69773865 + 33: 0.21008301,-0.54148865 + 34: -0.11804199,-0.51023865 + 35: 0.694458,-1.4477386 + 36: 0.944458,-1.6977386 + 37: 1.241333,-1.8383636 + 38: 1.303833,-1.9789886 + 39: 1.288208,-1.7133636 + 40: 1.163208,-1.6196136 + 41: 1.178833,-1.6039886 + 42: 2.210083,-2.7758636 + 43: 2.460083,-2.9946136 + 44: 2.256958,-2.4946136 + 110: 4.468857,-2.9396667 + 113: 4.734482,-2.6427917 + 114: 4.859482,-2.5646667 + 115: 5.531357,-2.0021667 + 116: 5.687607,-1.6896667 + 117: 5.875107,-1.5021667 + 118: 6.6047516,-0.59591675 + 119: 6.6985016,-0.17404175 + 120: 6.9172516,0.16970825 + 121: 7.0891266,0.37283325 + 123: 6.7766266,0.15408325 + 125: 6.7766266,0.24783325 + 127: 6.6360016,-0.09591675 + 133: 6.6203766,0.24783325 + 135: 6.7297516,0.37283325 + 148: 7.3860016,0.57595825 + 159: -0.065200806,1.317276 + 162: 0.3566742,1.551651 + 163: 0.5285492,1.832901 + 164: 0.4972992,2.129776 + 165: 0.1535492,2.411026 + 166: -0.049575806,2.457901 + 167: 0.3566742,1.926651 + 168: 0.3097992,1.692276 + 169: -4.975403,0.520401 + 170: -4.819153,0.676651 + 171: -4.678528,1.051651 + 172: -4.616028,1.301651 + 173: -4.694153,1.379776 + 174: -4.569153,1.145401 + 175: -4.506653,0.801651 + 176: -4.584778,0.520401 + 177: -5.241028,1.176651 + 178: -5.303528,1.317276 + 182: -5.053528,1.020401 + 185: -5.053528,1.395401 + 187: -5.037903,1.332901 + 195: -5.491028,1.457901 + 203: -8.484009,1.832901 + 205: -8.640259,2.051651 + 207: -8.859009,2.254776 + 210: -8.905884,2.332901 + 225: -4.6025543,-0.432724 + 240: -5.0244293,0.661026 + 270: -0.38453674,0.707901 + 272: -0.49391174,0.504776 + 274: -0.49391174,0.223526 + 276: -0.25953674,0.004776001 + 282: -5.044922,5.4726715 + 283: -4.841797,5.3320465 + 284: -4.638672,5.0976715 + 285: -4.404297,4.8632965 + 286: -4.357422,4.6445465 + 287: -4.513672,5.2070465 + 288: -4.576172,5.2851715 + 289: -4.810547,5.4101715 + 290: -5.435547,5.5820465 + 291: -5.263672,5.3789215 + 292: -8.498047,3.1914215 + 293: -8.388672,2.8945465 + 294: -8.201172,2.5976715 + 295: -7.841797,2.5195465 + 296: -7.482422,2.4882965 + 297: -7.294922,2.4726715 + 298: -7.904297,2.5195465 + 299: -8.451172,2.5976715 + 300: -6.748047,2.5039215 + 301: -6.263672,2.6914215 + 302: -5.826172,2.7070465 + 303: -5.591797,2.4726715 + 304: -5.560547,2.4570465 + 305: -5.529297,2.4257965 + 306: -6.076172,2.4257965 + 307: -6.232422,2.4726715 + - node: + angle: 3.385938748868999 rad + color: '#FFFFFF7F' + id: splatter + decals: + 308: -9.889938,5.2226715 + 309: -9.733688,5.0664215 + 310: -9.655563,4.8632965 + 311: -9.593063,4.6445465 + 312: -9.530563,4.4257965 + 313: -9.452438,4.1757965 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#9E7275FF' + flags: HideLabel + - type: SalvageStructure + - uid: 46943 + components: + - type: MetaData + name: Храм + - type: Transform + pos: -220.53125,-75.484375 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: agAAAAAAagAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAgQAAAAAABQAAAAACgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAdgAAAAAAgQAAAAAAgQAAAAAAdgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAgQAAAAAAdgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAABgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAADawAAAAADgQAAAAAABQAAAAADgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAACawAAAAADawAAAAADagAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAgQAAAAAAXAAAAAAAXAAAAAAABQAAAAADBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAXAAAAAAAXAAAAAAABQAAAAABBQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAAAcQAAAAAAHAAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAAAcQAAAAAAgQAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAAAcQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAawAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAcQAAAAAAgQAAAAAAawAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAawAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAagAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#55391AFF' + id: ConcreteTrimCornerNe + decals: + 2: -2,-1 + - node: + color: '#55391AFF' + id: ConcreteTrimCornerNw + decals: + 3: 2,-1 + - node: + color: '#55391AFF' + id: ConcreteTrimInnerNe + decals: + 8: -2,-2 + - node: + color: '#55391AFF' + id: ConcreteTrimInnerNw + decals: + 7: 2,-2 + - node: + color: '#55391AFF' + id: ConcreteTrimLineN + decals: + 4: -1,-2 + 5: 0,-2 + 6: 1,-2 + - node: + cleanable: True + color: '#950000B1' + id: Dirt + decals: + 343: 2,-6 + 344: 3,-6 + 345: 2,-6 + 346: -5,-5 + 347: -4,-6 + 348: -4,-7 + 349: -4,-8 + 350: -3,-8 + 351: -2,-9 + 352: -2,-7 + 353: -4,-9 + 354: -2,-9 + 355: 2,-9 + 356: 3,-9 + 357: 4,-9 + 358: 4,-9 + 359: 5,-8 + 360: 3,-1 + 361: -3,-1 + 362: -2,-2 + 363: -5,-3 + 364: -4,-3 + 365: -5,-4 + 366: -4,-5 + 367: -5,-4 + 368: -5,-5 + 369: -2,-8 + 370: -2,-8 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#950000B1' + id: Dirt + decals: + 371: 5,-5 + 372: 5,-1 + 373: 5,-2 + 374: 5,-1 + 375: 4,-1 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#A4000053' + id: Dirt + decals: + 387: 4,2 + - node: + cleanable: True + color: '#AE000044' + id: Dirt + decals: + 409: -4,3 + - node: + cleanable: True + color: '#AE0000AB' + id: Dirt + decals: + 392: -3,2 + 393: -3,3 + 394: -4,2 + 395: -3,2 + 396: 0,2 + 397: 1,2 + 398: 0,3 + 399: 1,3 + 400: 2,3 + 401: 0,2 + 402: -3,7 + 403: -3,6 + 404: -3,5 + 405: -4,6 + 406: -3,2 + 407: -4,2 + 408: -3,3 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FF0000FF' + id: Dirt + decals: + 386: 4,2 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FF0000FF' + id: DirtHeavy + decals: + 376: -2,-5 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FF0000FF' + id: DirtHeavyMonotile + decals: + 377: -2,-4 + - node: + cleanable: True + color: '#FF0000FF' + id: DirtLight + decals: + 315: 4.017166,-6.736305 + 316: 4.0727234,-6.736305 + 317: 3.5627441,-6.2494125 + 318: 3.5280151,-6.24247 + 319: 2.463974,-1.4990463 + 335: -2.5027924,-5.5031357 + 336: -2.5027924,-5.5031357 + 337: -1.4983978,-7.512665 + 338: -1.4983978,-7.512665 + 339: 2.064087,-7.5057144 + 340: 2.064087,-7.5057144 + 341: 2.064087,-7.5057144 + 388: 3.5011292,0.24640656 + 389: 3.5011292,0.25102997 + 390: 3.5335236,0.0056610107 + 391: -3.002777,-8.75573 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FF0000FF' + id: DirtLight + decals: + 378: -2.3474731,-3.9636612 + 379: -1.5307617,-3.9682922 + 380: -1.5307617,-3.9682922 + 381: -1.4996643,-4.738327 + 382: -0.471344,-9.480026 + 383: -0.471344,-9.480026 + 384: -1.8741302,-8.966141 + 385: -1.8741302,-8.966141 + - node: + cleanable: True + color: '#FF0000FF' + id: DirtMedium + decals: + 342: 1.9876862,-6.0253983 + - node: + color: '#55391AFF' + id: WoodTrimThinCornerNeWhite + decals: + 9: -2,-1 + 29: 5,0 + - node: + color: '#55391AFF' + id: WoodTrimThinCornerNwWhite + decals: + 10: 2,-1 + 28: -5,0 + - node: + color: '#55391AFF' + id: WoodTrimThinCornerSeWhite + decals: + 19: 1,-1 + 42: 3,-11 + 43: 4,-10 + 60: 5,-8 + - node: + color: '#55391AFF' + id: WoodTrimThinCornerSwWhite + decals: + 18: -1,-1 + 39: -5,-8 + 40: -4,-10 + 41: -3,-11 + - node: + color: '#55391AFF' + id: WoodTrimThinInnerNeWhite + decals: + 15: -2,-2 + 16: -3,-1 + - node: + color: '#55391AFF' + id: WoodTrimThinInnerNwWhite + decals: + 14: 2,-2 + 17: 3,-1 + - node: + color: '#55391AFF' + id: WoodTrimThinInnerSeWhite + decals: + 44: 3,-10 + 45: 4,-8 + - node: + color: '#55391AFF' + id: WoodTrimThinInnerSwWhite + decals: + 46: -4,-8 + 47: -3,-10 + - node: + color: '#55391AFF' + id: WoodTrimThinLineEWhite + decals: + 30: 5,-1 + 31: 5,-2 + 32: 5,-3 + 33: 5,-4 + 34: 5,-5 + 35: 5,-6 + 36: 5,-7 + 38: 4,-9 + - node: + angle: 1.6406094968746698 rad + color: '#55391AFF' + id: WoodTrimThinLineEWhite + decals: + 153: 0.073223114,-0.53719693 + - node: + color: '#55391AFF' + id: WoodTrimThinLineNWhite + decals: + 11: -1,-2 + 12: 0,-2 + 13: 1,-2 + 21: -1,0 + 22: 0,0 + 23: 1,0 + 24: 2,0 + 25: 3,0 + 26: -3,0 + 27: -2,0 + - node: + color: '#55391AFF' + id: WoodTrimThinLineSWhite + decals: + 20: 0,-1 + 48: -2,-11 + 49: -1,-11 + 50: 1,-11 + 51: 2,-11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 312: -5,-3 + 313: -5,-4 + - node: + color: '#55391AFF' + id: WoodTrimThinLineWWhite + decals: + 52: -4,-9 + 53: -5,-7 + 54: -5,-6 + 55: -5,-5 + 58: -5,-2 + 59: -5,-1 + - node: + angle: 0.6981317007977318 rad + color: '#55391AFF' + id: WoodTrimThinLineWWhite + decals: + 158: 1.3544731,-0.5038053 + - node: + angle: 0.9948376736367679 rad + color: '#55391AFF' + id: WoodTrimThinLineWWhite + decals: + 157: 1.2398897,-0.47255528 + - node: + angle: 1.1868238913561442 rad + color: '#55391AFF' + id: WoodTrimThinLineWWhite + decals: + 155: 0.18780637,3.2382536 + - node: + angle: 1.3264502315156905 rad + color: '#55391AFF' + id: WoodTrimThinLineWWhite + decals: + 154: 0.15655637,0.31696975 + - node: + angle: 1.710422666954443 rad + color: '#55391AFF' + id: WoodTrimThinLineWWhite + decals: + 156: 1.8023899,2.8632536 + - node: + angle: 2.2689280275926285 rad + color: '#55391AFF' + id: WoodTrimThinLineWWhite + decals: + 159: 0.73988974,-0.45172203 + - node: + cleanable: True + color: '#B3282844' + id: a + decals: + 423: -1.7247314,-2.0630035 + - node: + angle: -3.5779249665883754 rad + color: '#8B20208F' + id: cyr_eh + decals: + 454: -1.0528564,-2.1880035 + - node: + angle: -0.20943951023931956 rad + color: '#8F192BAE' + id: cyr_ya + decals: + 460: 1.7596436,-2.1255035 + - node: + cleanable: True + angle: 0.06981317007977318 rad + color: '#37000063' + id: dot + decals: + 142: 2.6749835,8.638082 + 143: 3.3763723,8.79086 + - node: + cleanable: True + angle: 1.6406094968746698 rad + color: '#37000063' + id: dot + decals: + 144: 2.9041502,8.943638 + - node: + cleanable: True + angle: 3.2812189937493397 rad + color: '#37000063' + id: dot + decals: + 125: -3.3516386,5.372303 + 126: -3.2405274,5.4000807 + 127: -3.3030274,5.233414 + - node: + cleanable: True + angle: 4.782202150464463 rad + color: '#37000063' + id: dot + decals: + 130: -1.3973615,5.191747 + 131: 0.012360811,5.170914 + 132: 0.43520963,4.9764695 + 133: 1.6713207,5.983414 + 134: 2.4490986,5.9625807 + 135: 2.9699318,6.3375807 + - node: + cleanable: True + color: '#4400005D' + id: dot + decals: + 437: -4.5302734,-3.895584 + 438: -3.488617,-3.9476624 + 439: -3.7177734,-4.395584 + 440: -4.4990234,-4.3851624 + 441: -4.1865234,-3.7289124 + 442: -3.9365234,-3.6247482 + 443: -3.9156952,-4.5101624 + 444: -4.207367,-4.6664124 + 445: 4.5039673,-1.0122299 + 446: 4.7539673,-0.5955658 + 447: 5.076889,-0.55389404 + 448: 5.2227173,-0.64764404 + 449: 5.295639,-1.4497299 + 450: 4.8789673,-1.491394 + 451: 4.618561,-1.6059799 + 452: 5.326889,-1.491394 + 453: 5.0664673,-1.5955658 + - node: + cleanable: True + angle: 2.356194490192345 rad + color: '#570000BA' + id: dot + decals: + 82: 0.2458632,8.319483 + 83: -0.5353868,9.256983 + 84: 0.17294657,9.496566 + 85: -0.3791368,8.444483 + 86: -0.1291368,8.413233 + 87: -1.2557158,9.759556 + 88: -1.1515491,9.81164 + 89: -1.0786324,9.790806 + 90: -1.0577991,9.87414 + 91: -1.1619658,9.801223 + 92: -1.1932158,9.863723 + 93: 0.43178427,8.301223 + 94: 0.4422009,8.269973 + 95: 0.57761765,8.34289 + 96: 0.5984509,8.322056 + 97: 0.5984509,8.31164 + 98: 0.5255343,8.384556 + 99: 0.3797009,8.363723 + 100: 0.5672009,8.24914 + 101: -0.69321585,9.019973 + 102: -0.67238235,9.009556 + 103: -0.63071585,9.09289 + 104: 0.33803427,9.49914 + 105: 0.3797009,9.426223 + 106: 0.4109509,9.457473 + 107: 0.43178427,9.46789 + - node: + cleanable: True + angle: 2.356194490192345 rad + color: '#570000E3' + id: dot + decals: + 70: 0.13856912,9.444483 + 71: -0.48643088,9.194483 + 72: 0.5135691,9.090316 + 73: 0.055235744,8.715316 + 74: -0.29893088,8.736149 + 75: 0.03440243,9.163233 + 76: -0.17393088,8.986149 + 77: 0.2739858,8.996566 + 78: -0.24684757,8.486149 + 79: 0.4406525,8.506983 + 80: 0.4927358,8.517399 + 81: 0.4719025,8.454899 + - node: + cleanable: True + angle: 5.497787143782138 rad + color: '#570000E3' + id: dot + decals: + 69: -0.33018088,8.454899 + - node: + cleanable: True + angle: -0.20943951023931956 rad + color: '#7C192B8E' + id: e + decals: + 458: 1.3690186,-2.0786285 + - node: + cleanable: True + angle: 2.356194490192345 rad + color: '#8F0000FF' + id: grasssnow03 + decals: + 67: -0.038514227,8.965316 + - node: + cleanable: True + angle: 0.24434609527920614 rad + color: '#5A0000FF' + id: grasssnow07 + decals: + 456: 5.108139,-1.1348648 + - node: + cleanable: True + angle: 3.9269908169872414 rad + color: '#8F0000FF' + id: grasssnow07 + decals: + 68: 0.10731912,9.006983 + - node: + cleanable: True + angle: 0.24434609527920614 rad + color: '#5A0000FF' + id: grasssnow11 + decals: + 457: -3.7335968,-4.1575165 + - node: + cleanable: True + angle: 2.356194490192345 rad + color: '#8F0000FF' + id: grasssnow11 + decals: + 66: 0.14898574,9.559066 + - node: + cleanable: True + angle: 1.8151424220741028 rad + color: '#5A0000FF' + id: grasssnow13 + decals: + 459: -4.014847,-4.0637665 + - node: + cleanable: True + angle: -0.4363323129985824 rad + color: '#8F20206D' + id: i + decals: + 436: -1.3653564,-2.0942535 + - node: + cleanable: True + angle: 0.4363323129985824 rad + color: '#9C20206F' + id: i + decals: + 430: -1.5216064,-2.0942535 + - node: + cleanable: True + angle: 4.014257279586958 rad + color: '#37000063' + id: line + decals: + 115: -2.6571941,5.247303 + - node: + cleanable: True + angle: -0.20943951023931956 rad + color: '#8B20208F' + id: m + decals: + 455: 0.90026855,-2.0317535 + - node: + cleanable: True + angle: 1.6406094968746698 rad + color: '#37000063' + id: shortline + decals: + 151: 1.3242891,9.216446 + 152: 1.3347058,8.83103 + - node: + cleanable: True + angle: 4.014257279586958 rad + color: '#37000063' + id: shortline + decals: + 116: -2.8933053,5.2264695 + 117: -2.448861,5.233414 + - node: + cleanable: True + angle: 4.852015320544236 rad + color: '#37000063' + id: shortline + decals: + 118: -1.9210832,5.108414 + 119: -1.5808053,4.997303 + 120: -2.1433053,4.9139695 + 121: -2.0877497,5.1014695 + 122: -2.3655276,4.9278584 + - node: + cleanable: True + angle: 5.934119456780721 rad + color: '#37000063' + id: shortline + decals: + 113: 2.7260528,6.4417477 + 114: 3.1427193,6.3028584 + - node: + cleanable: True + angle: 0.7155849933176751 rad + color: '#69192BAD' + id: shortline + decals: + 464: 2.2127686,-2.0005035 + 467: 2.2440186,-1.9692535 + - node: + cleanable: True + angle: -0.20943951023931956 rad + color: '#8F192BAE' + id: shortline + decals: + 463: 2.1815186,-2.1255035 + - node: + cleanable: True + angle: 3.2812189937493397 rad + color: '#37000063' + id: smallbrush + decals: + 124: -3.2127497,5.420914 + - node: + cleanable: True + angle: 1.8151424220741028 rad + color: '#3E000082' + id: smallbrush + decals: + 465: 4.813034,-1.0399628 + 466: 5.0526123,-1.0712128 + 468: 5.188034,-0.9878769 + - node: + cleanable: True + angle: 1.8151424220741028 rad + color: '#5A00007C' + id: smallbrush + decals: + 461: -4.2500763,-4.1009827 + 462: -4.0521545,-4.0280685 + - node: + cleanable: True + angle: 0.06981317007977318 rad + color: '#37000063' + id: splatter + decals: + 140: 2.8347058,8.54086 + 141: 2.9527614,8.756138 + - node: + cleanable: True + angle: 3.2114058236695664 rad + color: '#37000063' + id: splatter + decals: + 139: 3.1819282,8.72836 + - node: + cleanable: True + angle: 3.2812189937493397 rad + color: '#37000063' + id: splatter + decals: + 123: -3.198861,5.684803 + - node: + cleanable: True + color: '#4400005D' + id: splatter + decals: + 431: 4.623947,-1.0714188 + 432: 4.821869,-0.8005829 + 433: 4.915619,-0.7693329 + 434: 5.186447,-0.8943329 + 435: 4.905197,-1.1860046 + - node: + cleanable: True + color: '#4400007F' + id: splatter + decals: + 424: -4.448761,-4.1002274 + 425: -4.1154327,-3.8502274 + 426: -3.917511,-3.9231415 + 427: -3.6466827,-3.9543915 + 428: -3.9591827,-4.2668915 + 429: -4.136261,-4.152313 + - node: + cleanable: True + angle: 0.24434609527920614 rad + color: '#530000AA' + id: splatter + decals: + 61: -0.35101426,8.663233 + - node: + cleanable: True + angle: 1.8151424220741028 rad + color: '#530000AA' + id: splatter + decals: + 62: 0.044819117,9.298649 + - node: + cleanable: True + angle: 0.17453292519943295 rad + color: '#530000C3' + id: splatter + decals: + 65: 0.24273574,8.777816 + - node: + cleanable: True + angle: 0.7853981633974483 rad + color: '#530000C3' + id: splatter + decals: + 64: -0.21559757,9.152816 + - node: + cleanable: True + angle: 2.356194490192345 rad + color: '#530000C3' + id: splatter + decals: + 63: 0.26356912,9.059066 + - node: + cleanable: True + color: '#57121298' + id: splatter + decals: + 320: -0.5795593,-1.0380554 + 321: -0.39205933,-0.7568054 + 322: -0.26705933,-0.6005554 + 323: -0.12643433,-0.5849304 + 324: 0.15481567,-0.7099304 + 325: 0.31106567,-0.8974304 + 326: 0.5923157,-1.0536804 + 327: 0.23294067,-0.7411804 + 328: -0.25143433,-0.6943054 + 329: -0.42330933,-0.6474304 + 330: -0.22018433,-0.9443054 + - node: + cleanable: True + color: '#9C202050' + id: splatter + decals: + 331: -0.34518433,-0.8349304 + 332: -0.15768433,-0.8193054 + 333: 0.092315674,-0.7099304 + 334: 0.43606567,-0.9911804 + - node: + cleanable: True + color: '#FFFFFF2E' + id: splatter + decals: + 160: 5.592972,-9.457367 + 168: 6.324173,-7.415703 + 169: 6.407501,-6.967781 + 170: 6.407501,-6.894867 + 171: 6.480423,-6.665703 + 199: 6.371048,-7.420471 + 202: 6.496048,-7.279846 + 203: 6.480423,-6.920471 + 204: 6.464798,-6.639221 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFF2E' + id: splatter + decals: + 178: 5.501251,-9.446953 + 180: 6.3658447,-6.717781 + 181: 6.3970947,-7.342781 + - node: + cleanable: True + angle: -0.6108652381980153 rad + color: '#FFFFFF31' + id: splatter + decals: + 301: -6.413666,-4.1138535 + 302: -6.304291,-3.9576035 + 303: -6.273041,-3.5982285 + 304: -6.538666,-3.0044785 + 305: -6.616791,-2.7388535 + 306: -6.429291,-3.1451035 + 307: -6.273041,-3.2232285 + 308: -6.538666,-2.7857285 + 309: -6.366791,-2.7701035 + 310: -6.413666,-4.2388535 + 311: 6.570709,-8.767075 + - node: + cleanable: True + color: '#FFFFFF47' + id: splatter + decals: + 222: 5.997879,-9.342094 + 223: 6.216629,-8.951469 + 224: 6.372879,-8.373344 + 225: 6.466629,-8.029594 + 226: 6.466629,-7.9670944 + 227: 6.591629,-8.513969 + 228: 6.310379,-9.154594 + 229: 6.326004,-9.185844 + 230: 6.357254,-9.467094 + 231: 6.404129,-9.295219 + 232: 6.576004,-8.904594 + 233: 5.8704376,-9.30928 + 234: 5.9641876,-9.05928 + 235: 6.2141876,-8.62178 + 236: 6.4016876,-8.106155 + 237: 6.5110626,-7.9030304 + 238: 6.4798126,-9.356155 + 239: 6.4485626,-9.34053 + 240: 6.2610626,-9.62178 + 241: 6.3391876,-9.46553 + 242: 6.4954376,-9.21553 + 243: 6.4954376,-9.231155 + 244: 6.4798126,-8.74678 + 245: 6.5423126,-8.512405 + 246: 6.5735626,-8.449905 + 247: 6.1204376,-9.40303 + 248: 6.0579376,-9.449905 + 249: -1.3386078,-12.361237 + 250: -1.2136078,-12.439362 + 251: -0.8698578,-12.392487 + 252: -0.6979828,-12.361237 + 253: -0.5573578,-12.533112 + 254: -1.3229828,-12.345612 + 255: -0.5417328,-12.376862 + 256: -0.5104828,-12.408112 + 257: -0.18235779,-12.533112 + 258: 0.036392212,-12.704987 + 259: -1.2761078,-12.298737 + 260: -1.2136078,-12.298737 + 261: -1.0886078,-12.392487 + 262: -0.9323578,-12.486237 + 263: -0.6823578,-12.611237 + 264: -0.5886078,-12.658112 + 265: -0.4167328,-12.704987 + - node: + cleanable: True + color: '#FFFFFF4F' + id: splatter + decals: + 410: -4.379944,2.631691 + 411: -4.379944,2.741066 + 412: -4.411194,3.272316 + 413: -4.426819,3.366066 + 414: -4.286194,3.147316 + 415: -4.239319,2.834816 + 416: -4.348694,2.444191 + 417: -4.364319,2.553566 + 418: -4.348694,2.772316 + 419: -4.395569,3.147316 + 420: -4.567444,3.303566 + 421: -4.239319,3.116066 + 422: -4.333069,2.897316 + - node: + cleanable: True + color: '#FFFFFF7F' + id: splatter + decals: + 266: -1.2917328,-12.439362 + 267: -0.8854828,-12.579987 + 268: -0.6823578,-12.642487 + 269: -3.4636078,-12.189362 + 270: -3.4792328,-12.470612 + 271: -3.1354828,-12.533112 + 272: -2.8542328,-12.486237 + 273: -2.6042328,-12.486237 + 274: -2.5573578,-12.486237 + 275: -3.5417328,-12.298737 + 276: -6.601166,-4.4872284 + 281: -6.601166,-2.6278534 + 282: -6.710541,-2.5184784 + 283: -6.538666,-2.9559784 + 284: -6.444916,-3.5028534 + 285: -6.460541,-3.6903534 + 286: -6.554291,-4.0497284 + 287: -6.585541,-4.1903534 + 288: -6.476166,-3.2997284 + - node: + cleanable: True + angle: 1.2217304763960306 rad + color: '#37000063' + id: thinline + decals: + 145: 2.4701226,9.133113 + 146: 2.4909558,8.653946 + - node: + cleanable: True + angle: 1.4835298641951802 rad + color: '#37000063' + id: thinline + decals: + 147: 1.2722058,8.70603 + 148: 1.3763725,8.758113 + - node: + cleanable: True + angle: 1.6406094968746698 rad + color: '#37000063' + id: thinline + decals: + 149: 1.3034558,9.247696 + 150: 1.7513723,9.216446 + - node: + cleanable: True + angle: 4.782202150464463 rad + color: '#37000063' + id: thinline + decals: + 129: -0.032194197,5.045914 + - node: + cleanable: True + angle: 4.852015320544236 rad + color: '#37000063' + id: thinline + decals: + 128: -0.35163864,5.2889695 + - node: + cleanable: True + angle: 5.044001538263612 rad + color: '#37000063' + id: thinline + decals: + 109: 1.4343861,5.2750807 + - node: + cleanable: True + angle: 5.1487212933832724 rad + color: '#37000063' + id: thinline + decals: + 108: 1.2885528,5.6431365 + - node: + cleanable: True + angle: 5.934119456780721 rad + color: '#37000063' + id: thinline + decals: + 111: 2.6774416,6.580636 + - node: + cleanable: True + angle: 6.1086523819801535 rad + color: '#37000063' + id: thinline + decals: + 110: 3.2399416,6.4139695 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 29455 + 1: 1024 + 0,-1: + 0: 63487 + -1,0: + 0: 65295 + 0,1: + 0: 36720 + -1,1: + 0: 11184 + 1: 4096 + 0,2: + 0: 955 + -1,2: + 0: 2218 + 1,0: + 0: 259 + 1,1: + 0: 257 + 1,-1: + 0: 13107 + 0,-3: + 0: 65520 + -1,-3: + 0: 65504 + 0,-2: + 0: 32759 + -1,-2: + 0: 57341 + -1,-1: + 0: 65023 + 1,-3: + 0: 4352 + 1,-2: + 0: 13107 + -2,0: + 0: 8 + -2,-1: + 0: 34952 + -2,-2: + 0: 34952 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#9E7275FF' + flags: HideLabel + - type: SalvageStructure + - uid: 47245 + components: + - type: MetaData + name: Дроппод Синдиката + - type: Transform + pos: -128.57097,119.951775 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: gQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAALgAAAAAACwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAAAgQAAAAAACwAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAACwAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAAAgQAAAAAAgQAAAAAACwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJQAAAAAALgAAAAAAgQAAAAAAgQAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAJQAAAAAAJQAAAAAAgQAAAAAAgQAAAAAACwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAAgQAAAAAAgQAAAAAAJQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAACwAAAAAAgQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAACwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAXgAAAAAAgQAAAAAAgQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACwAAAAAALQAAAAAAgQAAAAAAJQAAAAAAJQAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 29: -1,-1 + 30: 2,-1 + 31: 0,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 26: 0,-2 + 27: -1,0 + 28: 2,0 + 37: -1,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 32: 1,0 + 33: 1,-1 + 34: 1,-1 + 35: -1,-2 + 36: -2,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 38: 1,-2 + 39: 1,-2 + 40: 1,-2 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimCornerNe + decals: + 3: 2,0 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimCornerNw + decals: + 2: -2,0 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimCornerSe + decals: + 25: 2,-1 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimCornerSw + decals: + 0: -1,-2 + 1: -2,-1 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimInnerNe + decals: + 5: -1,1 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimInnerNw + decals: + 6: 1,1 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimInnerSe + decals: + 8: 1,-1 + 10: 0,-2 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimInnerSw + decals: + 9: 0,-2 + - node: + color: '#9C2020FF' + id: GrayConcreteTrimLineN + decals: + 4: 0,1 + - node: + cleanable: True + angle: 0.17453292519943295 rad + color: '#4700007F' + id: dot + decals: + 15: 0.76139367,0.30694813 + 16: 0.60167146,0.18889254 + 17: 0.16417146,0.5291703 + 18: 0.46972698,0.4805593 + 19: 0.56694925,0.4180593 + 20: 0.35861588,0.40417033 + 21: 0.44194925,0.5291703 + 22: 0.46972698,0.43194813 + 23: 0.41417146,0.4527815 + - node: + cleanable: True + angle: 1.7453292519943295 rad + color: '#4700007F' + id: dot + decals: + 24: 0.018338084,0.39722592 + - node: + color: '#FFFFFF85' + id: grasssnow02 + decals: + 41: -4.6741047,-1.9348223 + - node: + color: '#FFFFFF85' + id: grasssnow03 + decals: + 45: 0.016923308,-4.5474443 + 47: -1.6080767,-4.0318193 + - node: + color: '#FFFFFF85' + id: grasssnow04 + decals: + 46: -0.9205767,-3.7505693 + 51: -2.3067842,2.2181807 + 53: -0.16615915,3.1400557 + 55: 4.9161954,1.1318927 + 56: 2.9630704,2.0850177 + - node: + color: '#FFFFFF85' + id: grasssnow07 + decals: + 48: -3.9786592,-1.9849441 + - node: + color: '#FFFFFF85' + id: grasssnow08 + decals: + 50: 1.8650908,1.9056807 + 52: -1.1661593,2.8900557 + 59: 1.0411954,-4.1493573 + - node: + color: '#FFFFFF85' + id: grasssnow09 + decals: + 42: -3.8532534,-3.7818193 + 44: -1.6188785,-5.6099443 + - node: + color: '#FFFFFF85' + id: grasssnow10 + decals: + 43: -2.4626284,-4.5318193 + 49: 4.115091,0.9681809 + 54: 4.255716,-1.9463356 + - node: + color: '#FFFFFF85' + id: grasssnow13 + decals: + 57: -0.3025546,-5.7587323 + 58: 0.7911954,-4.7431073 + - node: + cleanable: True + angle: 0.17453292519943295 rad + color: '#4700007F' + id: splatter + decals: + 14: 0.5530603,0.22361475 + - node: + cleanable: True + angle: 2.2689280275926285 rad + color: '#4700007F' + id: splatter + decals: + 13: 0.49750477,0.5013926 + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#9E7275FF' + flags: HideLabel + - type: SalvageStructure - proto: AcousticGuitarInstrument entities: - uid: 7 @@ -51405,7 +53944,7 @@ entities: - uid: 9 components: - type: Transform - pos: -62.383392,53.943916 + pos: -63.471325,51.770706 parent: 2 - proto: ActionSleep entities: @@ -51423,12 +53962,12 @@ entities: parent: 13 - type: InstantAction container: 13 - - uid: 44972 + - uid: 45357 components: - type: Transform - parent: 44971 + parent: 45356 - type: InstantAction - container: 44971 + container: 45356 - proto: ActionToggleLight entities: - uid: 18 @@ -51455,21 +53994,15 @@ entities: parent: 23 - type: InstantAction container: 23 - - uid: 26 - components: - - type: Transform - parent: 25 - - type: InstantAction - container: 25 - - uid: 40206 + - uid: 40602 components: - type: Transform - parent: 40205 + parent: 40601 - type: InstantAction - container: 40205 + container: 40601 - proto: AdvMopItem entities: - - uid: 44973 + - uid: 45358 components: - type: MetaData desc: Модернизированная летательная швабра. Система автоматического проветривания не входит. @@ -51477,30 +54010,30 @@ entities: - type: Transform rot: 3.141592653589793 rad pos: 6.004155,1.4923091 - parent: 44970 + parent: 45355 - proto: AirAlarm entities: - - uid: 27 + - uid: 25 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,-64.5 parent: 2 - - uid: 28 + - uid: 26 components: - type: Transform pos: -5.5,-57.5 parent: 2 - type: DeviceList devices: - - 22613 - - 22423 - - 22581 - - 518 - - 18051 - - 18050 - - 18049 - - uid: 29 + - 23023 + - 22830 + - 22991 + - 517 + - 18381 + - 18380 + - 18379 + - uid: 27 components: - type: Transform rot: 1.5707963267948966 rad @@ -51508,8 +54041,8 @@ entities: parent: 2 - type: DeviceList devices: - - 517 - - uid: 30 + - 516 + - uid: 28 components: - type: Transform rot: -1.5707963267948966 rad @@ -51517,15 +54050,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22586 - - 22417 - - 18137 - - 18136 - - 18134 - - 18135 - - 17915 - - 17912 - - uid: 31 + - 22996 + - 22824 + - 18464 + - 18463 + - 18461 + - 18462 + - 18245 + - 18242 + - uid: 29 components: - type: Transform rot: 3.141592653589793 rad @@ -51533,63 +54066,63 @@ entities: parent: 2 - type: DeviceList devices: - - 22398 - - 22584 - - 17910 - - 17909 - - 17908 - - uid: 32 + - 22805 + - 22994 + - 18240 + - 18239 + - 18238 + - uid: 30 components: - type: Transform pos: 42.5,-46.5 parent: 2 - type: DeviceList devices: - - 22583 - - 17902 - - 17903 - - 17904 - - 17907 - - 17906 - - 17905 - - uid: 33 + - 22993 + - 18232 + - 18233 + - 18234 + - 18237 + - 18236 + - 18235 + - uid: 31 components: - type: Transform pos: 46.5,-51.5 parent: 2 - type: DeviceList devices: - - 22582 - - 516 - - 17902 - - 17903 - - 18131 - - 18130 - - 18132 - - uid: 34 + - 22992 + - 515 + - 18232 + - 18233 + - 18458 + - 18457 + - 18459 + - uid: 32 components: - type: Transform pos: 25.5,-40.5 parent: 2 - type: DeviceList devices: - - 22588 - - 22399 - - uid: 35 + - 22998 + - 22806 + - uid: 33 components: - type: Transform pos: 28.5,-36.5 parent: 2 - type: DeviceList devices: - - 22400 - - 22585 - - 18007 - - 18006 - - 18005 - - 17914 - - 17913 - - uid: 36 + - 22807 + - 22995 + - 18335 + - 18334 + - 18333 + - 18244 + - 18243 + - uid: 34 components: - type: Transform rot: 3.141592653589793 rad @@ -51597,21 +54130,21 @@ entities: parent: 2 - type: DeviceList devices: - - 22587 - - 22401 - - 18139 - - 18138 - - uid: 37 + - 22997 + - 22808 + - 18466 + - 18465 + - uid: 35 components: - type: Transform pos: 17.5,-42.5 parent: 2 - type: DeviceList devices: - - 22402 - - 17911 - - 22606 - - uid: 38 + - 22809 + - 18241 + - 23016 + - uid: 36 components: - type: Transform rot: 3.141592653589793 rad @@ -51619,11 +54152,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22580 - - 22428 - - 17815 - - 17814 - - uid: 39 + - 22990 + - 22835 + - 18151 + - 18150 + - uid: 37 components: - type: Transform rot: -1.5707963267948966 rad @@ -51631,16 +54164,16 @@ entities: parent: 2 - type: DeviceList devices: - - 22612 - - 22419 - - 22611 - - 22420 - - 22421 - - 22610 - - 17812 - - 17811 - - 18044 - - uid: 40 + - 23022 + - 22826 + - 23021 + - 22827 + - 22828 + - 23020 + - 18148 + - 18147 + - 18374 + - uid: 38 components: - type: Transform rot: -1.5707963267948966 rad @@ -51648,33 +54181,33 @@ entities: parent: 2 - type: DeviceList devices: - - 22589 - - 22430 - - 22431 - - 22590 - - 22433 - - 22579 - - 22418 - - 22609 - - 17806 - - 18056 - - 17948 - - 17949 - - 17950 - - 18044 - - 18040 - - 18045 - - 17813 - - uid: 41 + - 22999 + - 22837 + - 22838 + - 23000 + - 22840 + - 22989 + - 22825 + - 23019 + - 18142 + - 18386 + - 18278 + - 18279 + - 18280 + - 18374 + - 18370 + - 18375 + - 18149 + - uid: 39 components: - type: Transform pos: -20.5,-47.5 parent: 2 - type: DeviceList devices: - - 22426 - - 22608 - - uid: 42 + - 22833 + - 23018 + - uid: 40 components: - type: Transform rot: 1.5707963267948966 rad @@ -51682,13 +54215,13 @@ entities: parent: 2 - type: DeviceList devices: - - 22405 - - 22604 - - 17791 - - 17790 - - 18128 - - 18129 - - uid: 43 + - 22812 + - 23014 + - 18127 + - 18126 + - 18455 + - 18456 + - uid: 41 components: - type: Transform rot: -1.5707963267948966 rad @@ -51696,15 +54229,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22605 - - 22412 - - 18125 - - 17901 - - 18124 - - 18123 - - 18003 - - 18004 - - uid: 44 + - 22819 + - 23015 + - uid: 42 components: - type: Transform rot: 3.141592653589793 rad @@ -51712,19 +54239,15 @@ entities: parent: 2 - type: DeviceList devices: - - 17787 - - 17790 - - 17791 - - 18016 - - 17788 - - 18015 - - 22404 - - 22599 - - 18124 - 18123 - - 17899 - - 17900 - - uid: 45 + - 18126 + - 18127 + - 18346 + - 18124 + - 18345 + - 22811 + - 23009 + - uid: 43 components: - type: Transform rot: -1.5707963267948966 rad @@ -51732,11 +54255,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22601 - - 22408 - - 17789 - - 17788 - - uid: 46 + - 23011 + - 22815 + - 18125 + - 18124 + - uid: 44 components: - type: Transform rot: -1.5707963267948966 rad @@ -51744,11 +54267,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18017 - - 17789 - - 22598 - - 22406 - - uid: 47 + - 18347 + - 18125 + - 23008 + - 22813 + - uid: 45 components: - type: Transform rot: -1.5707963267948966 rad @@ -51756,32 +54279,32 @@ entities: parent: 2 - type: DeviceList devices: - - 17897 - - 17898 - - 22603 - - 22414 - - uid: 48 + - 18229 + - 18230 + - 23013 + - 22821 + - uid: 46 components: - type: Transform pos: 76.5,-36.5 parent: 2 - type: DeviceList devices: - - 17897 - - 18016 - - 22413 - - 22597 - - uid: 49 + - 18229 + - 18346 + - 22820 + - 23007 + - uid: 47 components: - type: Transform pos: -16.5,-35.5 parent: 2 - type: DeviceList devices: - - 22422 - - 22594 - - 18052 - - uid: 50 + - 22829 + - 23004 + - 18382 + - uid: 48 components: - type: Transform rot: 3.141592653589793 rad @@ -51789,34 +54312,34 @@ entities: parent: 2 - type: DeviceList devices: - - 22616 - - 22425 - - 22411 - - 22615 - - 18054 - - 18055 - - 18053 - - uid: 51 + - 23026 + - 22832 + - 22818 + - 23025 + - 18384 + - 18385 + - 18383 + - uid: 49 components: - type: Transform pos: -18.5,-43.5 parent: 2 - type: DeviceList devices: - - 22592 - - 22410 - - 22424 - - 22591 - - 18052 - - 18045 - - 18051 - - 18053 - - 17818 - - 17817 - - 17816 - - 17819 - - 17820 - - uid: 52 + - 23002 + - 22817 + - 22831 + - 23001 + - 18382 + - 18375 + - 18381 + - 18383 + - 18154 + - 18153 + - 18152 + - 18155 + - 18156 + - uid: 50 components: - type: Transform rot: -1.5707963267948966 rad @@ -51824,10 +54347,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22403 - - 22614 - - 17819 - - uid: 53 + - 22810 + - 23024 + - 18155 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad @@ -51835,40 +54358,40 @@ entities: parent: 2 - type: DeviceList devices: - - 22427 - - 22596 - - 22593 - - 22429 - - 18047 - - 18048 - - 17815 - - 17814 - - 18050 - - 18049 - - 17813 - - uid: 54 + - 22834 + - 23006 + - 23003 + - 22836 + - 18377 + - 18378 + - 18151 + - 18150 + - 18380 + - 18379 + - 18149 + - uid: 52 components: - type: Transform pos: -2.5,-34.5 parent: 2 - type: DeviceList devices: - - 22432 - - 22617 - - 18038 - - 17947 - - 17946 - - 17944 - - 17943 - - 22731 - - 22552 - - 18056 - - 18040 - - 17810 - - 18041 - - 18042 - - 18043 - - uid: 55 + - 22839 + - 23027 + - 18368 + - 18277 + - 18276 + - 18274 + - 18273 + - 23141 + - 22959 + - 18386 + - 18370 + - 18146 + - 18371 + - 18372 + - 18373 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad @@ -51876,11 +54399,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22562 - - 22438 - - 18022 - - 17794 - - uid: 56 + - 22972 + - 22845 + - 18352 + - 18130 + - uid: 54 components: - type: Transform rot: 1.5707963267948966 rad @@ -51888,12 +54411,12 @@ entities: parent: 2 - type: DeviceList devices: - - 22435 - - 22618 - - 18028 - - 18026 - - 17937 - - uid: 57 + - 22842 + - 23028 + - 18358 + - 18356 + - 18267 + - uid: 55 components: - type: Transform rot: 1.5707963267948966 rad @@ -51901,52 +54424,50 @@ entities: parent: 2 - type: DeviceList devices: - - 22661 - - 22393 - - 17965 - - 17966 - - 17967 - - 18081 - - 18080 - - 18062 - - 18061 - - 18077 - - 18078 - - 18079 - - 17842 - - 18068 - - 18070 - - 18071 - - 18072 - - 18073 - - 18074 - - 18075 - - 18076 - - uid: 58 + - 23071 + - 22800 + - 18295 + - 18296 + - 18297 + - 18410 + - 18409 + - 18392 + - 18391 + - 18406 + - 18407 + - 18408 + - 18398 + - 18400 + - 18401 + - 18402 + - 18403 + - 18404 + - 18405 + - uid: 56 components: - type: Transform pos: 17.5,37.5 parent: 2 - type: DeviceList devices: - - 22491 - - 22673 - - 22674 - - 22492 - - 22493 - - 22675 - - 17848 - - 17979 - - 17980 - - 18096 - - 17976 - - 17977 - - 17978 - - 18098 - - 17981 - - 18097 - - 17849 - - uid: 59 + - 22898 + - 23083 + - 23084 + - 22899 + - 22900 + - 23085 + - 18180 + - 18309 + - 18310 + - 18425 + - 18306 + - 18307 + - 18308 + - 18427 + - 18311 + - 18426 + - 18181 + - uid: 57 components: - type: Transform rot: -1.5707963267948966 rad @@ -51954,11 +54475,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22496 - - 22683 - - 17852 - - 17854 - - uid: 60 + - 22903 + - 23093 + - 18184 + - 18186 + - uid: 58 components: - type: Transform rot: -1.5707963267948966 rad @@ -51966,14 +54487,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22495 - - 22677 - - 18099 - - 18098 - - 17981 - - 17982 - - 17850 - - uid: 61 + - 22902 + - 23087 + - 18428 + - 18427 + - 18311 + - 18312 + - 18182 + - uid: 59 components: - type: Transform rot: 1.5707963267948966 rad @@ -51981,15 +54502,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22656 - - 22474 - - 22657 - - 22475 - - 17958 - - 17824 - - 17822 - - 17823 - - uid: 62 + - 23066 + - 22881 + - 23067 + - 22882 + - 18288 + - 18160 + - 18158 + - 18159 + - uid: 60 components: - type: Transform rot: 1.5707963267948966 rad @@ -51997,100 +54518,100 @@ entities: parent: 2 - type: DeviceList devices: - - 22490 - - 22672 - - 17863 - - 17862 - - 17861 - - uid: 63 + - 22897 + - 23082 + - 18195 + - 18194 + - 18193 + - uid: 61 components: - type: Transform pos: 48.5,24.5 parent: 2 - type: DeviceList devices: - - 22682 - - 22500 - - 17856 - - 17995 - - 17860 - - 17859 - - uid: 64 + - 23092 + - 22907 + - 18188 + - 18325 + - 18192 + - 18191 + - uid: 62 components: - type: Transform pos: -7.5,-5.5 parent: 2 - type: DeviceList devices: - - 18064 - - 18065 - - 17956 - - 17831 - - 17830 - - uid: 65 + - 18394 + - 18395 + - 18286 + - 18167 + - 18166 + - uid: 63 components: - type: Transform pos: -7.5,3.5 parent: 2 - type: DeviceList devices: - - 22653 - - 22471 - - 22652 - - 22470 - - 18061 - - 18062 - - 18060 - - 18063 - - 18064 - - 18057 - - 18058 - - 18059 - - uid: 66 + - 23063 + - 22878 + - 23062 + - 22877 + - 18391 + - 18392 + - 18390 + - 18393 + - 18394 + - 18387 + - 18388 + - 18389 + - uid: 64 components: - type: Transform pos: 12.5,3.5 parent: 2 - type: DeviceList devices: - - 22575 - - 22469 - - 22651 - - 22468 - - 18061 - - 18062 - - 18060 - - 18063 - - 18064 - - 18057 - - 18058 - - 18059 - - uid: 67 + - 22985 + - 22876 + - 23061 + - 22875 + - 18391 + - 18392 + - 18390 + - 18393 + - 18394 + - 18387 + - 18388 + - 18389 + - uid: 65 components: - type: Transform pos: -10.5,-8.5 parent: 2 - type: DeviceList devices: - - 17830 - - 17833 - - 17955 - - uid: 68 + - 18166 + - 18169 + - 18285 + - uid: 66 components: - type: Transform pos: 14.5,-1.5 parent: 2 - type: DeviceList devices: - - 22654 - - 22472 - - 22473 - - 22655 - - 17822 - - 17821 - - 17957 - - 18063 - - uid: 69 + - 23064 + - 22879 + - 22880 + - 23065 + - 18158 + - 18157 + - 18287 + - 18393 + - uid: 67 components: - type: Transform rot: 1.5707963267948966 rad @@ -52098,45 +54619,45 @@ entities: parent: 2 - type: DeviceList devices: - - 18001 - - 18002 - - 18119 - - 18117 - - 18116 - - 18115 - - 17974 - - 17999 - - 18000 - - 18114 - - 18112 - - 17869 - - 18120 - - 17865 - - 22637 - - 22444 - - 22622 - - 22443 - - 22439 - - 22623 - - 17885 - - 17878 - - 17872 - - 17873 - - uid: 70 + - 18331 + - 18332 + - 18448 + - 18446 + - 18445 + - 18444 + - 18304 + - 18329 + - 18330 + - 18443 + - 18441 + - 18201 + - 18449 + - 18197 + - 23047 + - 22851 + - 23032 + - 22850 + - 22846 + - 23033 + - 18217 + - 18210 + - 18204 + - 18205 + - uid: 68 components: - type: Transform pos: -7.5,60.5 parent: 2 - type: DeviceList devices: - - 22450 - - 22634 - - 22451 - - 22632 - - 18119 - - 17870 - - 17871 - - uid: 71 + - 22857 + - 23044 + - 22858 + - 23042 + - 18448 + - 18202 + - 18203 + - uid: 69 components: - type: Transform rot: 3.141592653589793 rad @@ -52144,17 +54665,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22695 - - 22456 - - 22639 - - 22449 - - 22503 - - 22696 - - 17874 - - 17875 - - 17876 - - 17877 - - uid: 72 + - 23105 + - 22863 + - 23049 + - 22856 + - 22910 + - 23106 + - 18206 + - 18207 + - 18208 + - 18209 + - uid: 70 components: - type: Transform rot: -1.5707963267948966 rad @@ -52162,12 +54683,12 @@ entities: parent: 2 - type: DeviceList devices: - - 18067 - - 18066 - - 18046 - - 22394 - - 22574 - - uid: 73 + - 18397 + - 18396 + - 18376 + - 22801 + - 22984 + - uid: 71 components: - type: Transform rot: 1.5707963267948966 rad @@ -52175,25 +54696,25 @@ entities: parent: 2 - type: DeviceList devices: - - 22395 - - 22573 - - 18034 - - 18035 - - 17845 - - 18024 - - 18093 - - 18092 - - 18091 - - 18046 - - 18066 - - 18067 - - 18058 - - 18057 - - 17832 - - 17964 - - 17963 - - 17962 - - uid: 74 + - 22802 + - 22983 + - 18364 + - 18365 + - 18179 + - 18354 + - 18422 + - 18421 + - 18420 + - 18376 + - 18396 + - 18397 + - 18388 + - 18387 + - 18168 + - 18294 + - 18293 + - 18292 + - uid: 72 components: - type: Transform rot: 3.141592653589793 rad @@ -52201,22 +54722,22 @@ entities: parent: 2 - type: DeviceList devices: - - 22577 - - 22396 - - 22397 - - 22576 - - 17971 - - 17972 - - 17973 - - 17955 - - 18088 - - 18089 - - 18090 - - 17964 - - 17963 - - 17962 - - 17844 - - uid: 75 + - 22987 + - 22803 + - 22804 + - 22986 + - 18301 + - 18302 + - 18303 + - 18285 + - 18417 + - 18418 + - 18419 + - 18294 + - 18293 + - 18292 + - 18178 + - uid: 73 components: - type: Transform rot: 3.141592653589793 rad @@ -52224,22 +54745,22 @@ entities: parent: 2 - type: DeviceList devices: - - 22662 - - 22479 - - 17967 - - 17966 - - 17965 - - 18082 - - 18083 - - 18084 - - 17829 - - 17828 - - 17827 - - 17826 - - 17970 - - 17969 - - 17968 - - uid: 76 + - 23072 + - 22886 + - 18297 + - 18296 + - 18295 + - 18411 + - 18412 + - 18413 + - 18165 + - 18164 + - 18163 + - 18162 + - 18300 + - 18299 + - 18298 + - uid: 74 components: - type: Transform rot: 3.141592653589793 rad @@ -52247,11 +54768,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22572 - - 22392 - - 18081 - - 18080 - - uid: 77 + - 22982 + - 22799 + - 18410 + - 18409 + - uid: 75 components: - type: Transform rot: 3.141592653589793 rad @@ -52259,25 +54780,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22480 - - 22663 - - 18069 - - 18068 - - uid: 78 + - 22887 + - 23073 + - 18399 + - 18398 + - uid: 76 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,13.5 parent: 2 - - type: DeviceList - devices: - - 22481 - - 22664 - - 17842 - - 17843 - - 17846 - - 17847 - - uid: 79 + - uid: 77 components: - type: Transform rot: 1.5707963267948966 rad @@ -52285,22 +54798,22 @@ entities: parent: 2 - type: DeviceList devices: - - 22391 - - 22570 - - 18087 - - 18085 - - 18086 - - uid: 80 + - 22798 + - 22980 + - 18416 + - 18414 + - 18415 + - uid: 78 components: - type: Transform pos: 0.5,-7.5 parent: 2 - type: DeviceList devices: - - 17835 - - 22390 - - 22571 - - uid: 81 + - 18171 + - 22797 + - 22981 + - uid: 79 components: - type: Transform rot: 1.5707963267948966 rad @@ -52308,14 +54821,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22665 - - 22482 - - 17825 - - 17826 - - 17827 - - 17828 - - 17829 - - uid: 82 + - 23075 + - 22889 + - 18161 + - 18162 + - 18163 + - 18164 + - 18165 + - uid: 80 components: - type: Transform rot: 3.141592653589793 rad @@ -52323,17 +54836,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22668 - - 22483 - - 22484 - - 22666 - - 22667 - - 22485 - - 17839 - - 17836 - - 17837 - - 17838 - - uid: 83 + - 23078 + - 22890 + - 22891 + - 23076 + - 23077 + - 22892 + - 18175 + - 18172 + - 18173 + - 18174 + - uid: 81 components: - type: Transform rot: 3.141592653589793 rad @@ -52341,11 +54854,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22689 - - 22507 - - 18071 - - 17975 - - uid: 84 + - 23099 + - 22914 + - 18401 + - 18305 + - uid: 82 components: - type: Transform rot: 3.141592653589793 rad @@ -52353,21 +54866,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22669 - - 22486 - - 18070 - - uid: 85 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 22487 - - 22671 - - 18074 - - uid: 86 + - 23079 + - 22893 + - 18400 + - uid: 83 components: - type: Transform rot: 3.141592653589793 rad @@ -52375,17 +54877,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22670 - - 22488 - - 18096 - - 17976 - - 17977 - - 17978 - - 18073 - - 18072 - - 18095 - - 18094 - - uid: 87 + - 23080 + - 22895 + - 18425 + - 18306 + - 18307 + - 18308 + - 18403 + - 18402 + - 18424 + - 18423 + - uid: 84 components: - type: Transform rot: -1.5707963267948966 rad @@ -52393,23 +54895,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22678 - - 22497 - - 18101 - - 17983 - - 17984 - - 17985 - - 17986 - - 17987 - - 17988 - - 17853 - - 17852 - - 18100 - - 17851 - - 17982 - - 18099 - - 17989 - - uid: 88 + - 23088 + - 22904 + - 18430 + - 18313 + - 18314 + - 18315 + - 18316 + - 18317 + - 18318 + - 18185 + - 18184 + - 18429 + - 18183 + - 18312 + - 18428 + - 18319 + - uid: 85 components: - type: Transform rot: 1.5707963267948966 rad @@ -52417,54 +54919,54 @@ entities: parent: 2 - type: DeviceList devices: - - 22676 - - 22494 - - 22498 - - 22679 - - 17855 - - 17850 - - 18075 - - 18076 - - 17983 - - 18101 - - 17985 - - 17984 - - 17986 - - 17987 - - 17988 - - 18110 - - 18108 - - 18106 - - 18105 - - 18104 - - 18103 - - 18102 - - 18109 - - 18107 - - uid: 89 + - 23086 + - 22901 + - 22905 + - 23089 + - 18187 + - 18182 + - 18404 + - 18405 + - 18313 + - 18430 + - 18315 + - 18314 + - 18316 + - 18317 + - 18318 + - 18439 + - 18437 + - 18435 + - 18434 + - 18433 + - 18432 + - 18431 + - 18438 + - 18436 + - uid: 86 components: - type: Transform pos: 38.5,26.5 parent: 2 - type: DeviceList devices: - - 22680 - - 22489 - - 17858 - - 17857 - - 17994 - - 17993 - - 17992 - - 17991 - - 17990 - - 18110 - - 18108 - - 18106 - - 18105 - - 18104 - - 18103 - - 18102 - - uid: 90 + - 23090 + - 22896 + - 18190 + - 18189 + - 18324 + - 18323 + - 18322 + - 18321 + - 18320 + - 18439 + - 18437 + - 18435 + - 18434 + - 18433 + - 18432 + - 18431 + - uid: 87 components: - type: Transform rot: -1.5707963267948966 rad @@ -52472,16 +54974,16 @@ entities: parent: 2 - type: DeviceList devices: - - 22499 - - 22681 - - 17856 - - 17990 - - 17991 - - 17992 - - 17993 - - 17994 - - 17857 - - uid: 91 + - 22906 + - 23091 + - 18188 + - 18320 + - 18321 + - 18322 + - 18323 + - 18324 + - 18189 + - uid: 88 components: - type: Transform rot: -1.5707963267948966 rad @@ -52489,24 +54991,24 @@ entities: parent: 2 - type: DeviceList devices: - - 22692 - - 22509 - - 17895 - - 17893 - - 17894 - - 17890 - - uid: 92 + - 23102 + - 22916 + - 18227 + - 18225 + - 18226 + - 18222 + - uid: 89 components: - type: Transform pos: 64.5,8.5 parent: 2 - type: DeviceList devices: - - 17892 - - 22568 - - 22505 - - 17891 - - uid: 93 + - 18224 + - 22978 + - 22912 + - 18223 + - uid: 90 components: - type: Transform rot: 1.5707963267948966 rad @@ -52514,10 +55016,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22701 - - 22518 - - 18154 - - uid: 94 + - 23111 + - 22925 + - 18481 + - uid: 91 components: - type: Transform rot: 1.5707963267948966 rad @@ -52525,10 +55027,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22700 - - 22517 - - 18153 - - uid: 95 + - 23110 + - 22924 + - 18480 + - uid: 92 components: - type: Transform rot: 3.141592653589793 rad @@ -52536,10 +55038,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22687 - - 22504 - - 17886 - - uid: 96 + - 23097 + - 22911 + - 18218 + - uid: 93 components: - type: Transform rot: 1.5707963267948966 rad @@ -52547,10 +55049,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22688 - - 22388 - - 17896 - - uid: 97 + - 23098 + - 22795 + - 18228 + - uid: 94 components: - type: Transform rot: 1.5707963267948966 rad @@ -52558,14 +55060,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22686 - - 22387 - - 22691 - - 22510 - - 18141 - - 18142 - - 17917 - - uid: 98 + - 23096 + - 22794 + - 23101 + - 22917 + - 18468 + - 18469 + - 18247 + - uid: 95 components: - type: Transform rot: 1.5707963267948966 rad @@ -52573,10 +55075,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22567 - - 22506 - - 17887 - - uid: 99 + - 22977 + - 22913 + - 18219 + - uid: 96 components: - type: Transform rot: 3.141592653589793 rad @@ -52584,15 +55086,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22386 - - 22566 - - 17888 - - 17886 - - 17887 - - 17889 - - 17891 - - 17890 - - uid: 100 + - 22793 + - 22976 + - 18220 + - 18218 + - 18219 + - 18221 + - 18223 + - 18222 + - uid: 97 components: - type: Transform rot: 1.5707963267948966 rad @@ -52600,10 +55102,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22519 - - 22702 - - 18155 - - uid: 101 + - 22926 + - 23112 + - 18482 + - uid: 98 components: - type: Transform rot: -1.5707963267948966 rad @@ -52611,12 +55113,12 @@ entities: parent: 2 - type: DeviceList devices: - - 22705 - - 22523 - - 18149 - - 18148 - - 18147 - - uid: 102 + - 23115 + - 22930 + - 18476 + - 18475 + - 18474 + - uid: 99 components: - type: Transform rot: 3.141592653589793 rad @@ -52624,10 +55126,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22569 - - 22508 - - 17889 - - uid: 103 + - 22979 + - 22915 + - 18221 + - uid: 100 components: - type: Transform rot: 3.141592653589793 rad @@ -52635,72 +55137,72 @@ entities: parent: 2 - type: DeviceList devices: - - 22511 - - 22694 - - 18144 - - 18143 - - 17954 - - 17952 - - 17953 - - 17959 - - 18157 - - 18156 - - uid: 104 + - 22918 + - 23104 + - 18471 + - 18470 + - 18284 + - 18282 + - 18283 + - 18289 + - 18484 + - 18483 + - uid: 101 components: - type: Transform pos: -103.5,5.5 parent: 2 - type: DeviceList devices: - - 22513 - - 22707 - - 17922 - - 18013 - - 18014 - - uid: 105 + - 22920 + - 23117 + - 18252 + - 18341 + - 18342 + - uid: 102 components: - type: Transform pos: -108.5,13.5 parent: 2 - type: DeviceList devices: - - 22706 - - 22524 - - 17923 - - 18014 - - 18013 - - 18143 - - 18144 - - 18145 - - 18146 - - uid: 106 + - 23116 + - 22931 + - 18253 + - 18342 + - 18341 + - 18470 + - 18471 + - 18472 + - 18473 + - uid: 103 components: - type: Transform pos: -108.5,23.5 parent: 2 - type: DeviceList devices: - - 22515 - - 22698 - - 22690 - - 22516 - - 22522 - - 22699 - - 18145 - - 18146 - - 18147 - - 18148 - - 18149 - - 18150 - - 18151 - - 17924 - - 17925 - - 18155 - - 18154 - - 18153 - - 18012 - - 18011 - - uid: 107 + - 22922 + - 23108 + - 23100 + - 22923 + - 22929 + - 23109 + - 18472 + - 18473 + - 18474 + - 18475 + - 18476 + - 18477 + - 18478 + - 18254 + - 18255 + - 18482 + - 18481 + - 18480 + - 18340 + - 18339 + - uid: 104 components: - type: Transform rot: 1.5707963267948966 rad @@ -52708,25 +55210,25 @@ entities: parent: 2 - type: DeviceList devices: - - 22704 - - 22521 - - 17924 - - 17961 - - 17960 - - 17951 - - uid: 108 + - 23114 + - 22928 + - 18254 + - 18291 + - 18290 + - 18281 + - uid: 105 components: - type: Transform pos: -99.5,26.5 parent: 2 - type: DeviceList devices: - - 22514 - - 22693 - - 18151 - - 18150 - - 17926 - - uid: 109 + - 22921 + - 23103 + - 18478 + - 18477 + - 18256 + - uid: 106 components: - type: Transform rot: -1.5707963267948966 rad @@ -52734,15 +55236,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22512 - - 22697 - - 22708 - - 17921 - - 18010 - - 17922 - - 17920 - - 22525 - - uid: 110 + - 22919 + - 23107 + - 23118 + - 18251 + - 18338 + - 18252 + - 18250 + - 22932 + - uid: 107 components: - type: Transform rot: -1.5707963267948966 rad @@ -52750,25 +55252,25 @@ entities: parent: 2 - type: DeviceList devices: - - 22520 - - 22703 - - 17925 - - 17841 - - 17840 - - 17834 - - uid: 111 + - 22927 + - 23113 + - 18255 + - 18177 + - 18176 + - 18170 + - uid: 108 components: - type: Transform pos: -27.5,17.5 parent: 2 - type: DeviceList devices: - - 22565 - - 22527 - - 17792 - - 17793 - - 18021 - - uid: 112 + - 22975 + - 22934 + - 18128 + - 18129 + - 18351 + - uid: 109 components: - type: Transform rot: -1.5707963267948966 rad @@ -52776,9 +55278,9 @@ entities: parent: 2 - type: DeviceList devices: - - 520 - - 18009 - - uid: 113 + - 519 + - 18337 + - uid: 110 components: - type: Transform rot: 3.141592653589793 rad @@ -52786,17 +55288,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22712 - - 22528 - - 17792 - - 17793 - - uid: 114 + - 23122 + - 22935 + - 18128 + - 18129 + - uid: 111 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,15.5 parent: 2 - - uid: 115 + - uid: 112 components: - type: Transform rot: 1.5707963267948966 rad @@ -52804,10 +55306,10 @@ entities: parent: 2 - type: DeviceList devices: - - 17935 - - 22381 - - 22558 - - uid: 116 + - 18265 + - 22788 + - 22968 + - uid: 113 components: - type: Transform rot: -1.5707963267948966 rad @@ -52815,20 +55317,20 @@ entities: parent: 2 - type: DeviceList devices: - - 22727 - - 22726 - - 22556 - - 22384 - - 22548 - - 22549 - - 17803 - - 17799 - - 17801 - - 17802 - - 17939 - - 17938 - - 17800 - - uid: 117 + - 23137 + - 23136 + - 22966 + - 22791 + - 22955 + - 22956 + - 18139 + - 18135 + - 18137 + - 18138 + - 18269 + - 18268 + - 18136 + - uid: 114 components: - type: Transform rot: 3.141592653589793 rad @@ -52836,9 +55338,9 @@ entities: parent: 2 - type: DeviceList devices: - - 22728 - - 17803 - - uid: 118 + - 23138 + - 18139 + - uid: 115 components: - type: Transform rot: 1.5707963267948966 rad @@ -52846,10 +55348,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22555 - - 22536 - - 17933 - - uid: 119 + - 22965 + - 22943 + - 18263 + - uid: 116 components: - type: Transform rot: -1.5707963267948966 rad @@ -52857,10 +55359,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22620 - - 22535 - - 17796 - - uid: 120 + - 23030 + - 22942 + - 18132 + - uid: 117 components: - type: Transform rot: -1.5707963267948966 rad @@ -52868,20 +55370,20 @@ entities: parent: 2 - type: DeviceList devices: - - 22383 - - 22557 - - 17795 - - uid: 121 + - 22790 + - 22967 + - 18131 + - uid: 118 components: - type: Transform pos: -29.5,9.5 parent: 2 - type: DeviceList devices: - - 22619 - - 22532 - - 17809 - - uid: 122 + - 23029 + - 22939 + - 18145 + - uid: 119 components: - type: Transform rot: 3.141592653589793 rad @@ -52889,11 +55391,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22560 - - 22434 - - 17809 - - 17808 - - uid: 123 + - 22970 + - 22841 + - 18145 + - 18144 + - uid: 120 components: - type: Transform rot: 3.141592653589793 rad @@ -52901,21 +55403,21 @@ entities: parent: 2 - type: DeviceList devices: - - 22564 - - 22530 - - 22437 - - 22621 - - 18023 - - 17795 - - 17796 - - 17933 - - 17934 - - 17935 - - 18026 - - 18019 - - 18025 - - 18027 - - uid: 124 + - 22974 + - 22937 + - 22844 + - 23031 + - 18353 + - 18131 + - 18132 + - 18263 + - 18264 + - 18265 + - 18356 + - 18349 + - 18355 + - 18357 + - uid: 121 components: - type: Transform rot: 1.5707963267948966 rad @@ -52923,20 +55425,20 @@ entities: parent: 2 - type: DeviceList devices: - - 22710 - - 22529 - - 17934 - - uid: 125 + - 23120 + - 22936 + - 18264 + - uid: 122 components: - type: Transform pos: -52.5,18.5 parent: 2 - type: DeviceList devices: - - 22554 - - 22534 - - 18028 - - uid: 126 + - 22964 + - 22941 + - 18358 + - uid: 123 components: - type: Transform rot: 1.5707963267948966 rad @@ -52944,12 +55446,12 @@ entities: parent: 2 - type: DeviceList devices: - - 22533 - - 22561 - - 18021 - - 18023 - - 18022 - - uid: 127 + - 22940 + - 22971 + - 18351 + - 18353 + - 18352 + - uid: 124 components: - type: Transform rot: -1.5707963267948966 rad @@ -52957,17 +55459,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22559 - - 22578 - - 22436 - - 22531 - - 22563 - - 18024 - - 17932 - - 17794 - - 17930 - - 17931 - - uid: 128 + - 22969 + - 22988 + - 22843 + - 22938 + - 22973 + - 18354 + - 18262 + - 18130 + - 18260 + - 18261 + - uid: 125 components: - type: Transform rot: 1.5707963267948966 rad @@ -52975,11 +55477,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22539 - - 22716 - - 17798 - - 18030 - - uid: 129 + - 22946 + - 23126 + - 18134 + - 18360 + - uid: 126 components: - type: Transform rot: 1.5707963267948966 rad @@ -52987,10 +55489,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22537 - - 22715 - - 17797 - - uid: 130 + - 22944 + - 23125 + - 18133 + - uid: 127 components: - type: Transform rot: 3.141592653589793 rad @@ -52998,11 +55500,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22714 - - 22382 - - 18019 - - 18029 - - uid: 131 + - 23124 + - 22789 + - 18349 + - 18359 + - uid: 128 components: - type: Transform rot: 3.141592653589793 rad @@ -53010,10 +55512,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22538 - - 22713 - - 17798 - - uid: 132 + - 22945 + - 23123 + - 18134 + - uid: 129 components: - type: Transform rot: 1.5707963267948966 rad @@ -53021,47 +55523,47 @@ entities: parent: 2 - type: DeviceList devices: - - 22717 - - 22541 - - 22718 - - 22540 - - 22542 - - 22719 - - 18027 - - 18025 - - 17808 - - 18033 - - 18037 - - 18036 - - 18029 - - 18030 - - 17797 - - 17799 - - 17801 - - 17802 - - 18020 - - 17929 - - 17927 - - 17928 - - uid: 133 + - 23127 + - 22948 + - 23128 + - 22947 + - 22949 + - 23129 + - 18357 + - 18355 + - 18144 + - 18363 + - 18367 + - 18366 + - 18359 + - 18360 + - 18133 + - 18135 + - 18137 + - 18138 + - 18350 + - 18259 + - 18257 + - 18258 + - uid: 130 components: - type: Transform pos: -27.5,3.5 parent: 2 - type: DeviceList devices: - - 22721 - - 22544 - - 22720 - - 22543 - - 17941 - - 17942 - - 18033 - - 18037 - - 18036 - - 18035 - - 18034 - - uid: 134 + - 23131 + - 22951 + - 23130 + - 22950 + - 18271 + - 18272 + - 18363 + - 18367 + - 18366 + - 18365 + - 18364 + - uid: 131 components: - type: Transform rot: 1.5707963267948966 rad @@ -53069,21 +55571,21 @@ entities: parent: 2 - type: DeviceList devices: - - 22722 - - 17807 - - 18032 - - uid: 135 + - 23132 + - 18143 + - 18362 + - uid: 132 components: - type: Transform pos: -30.5,-5.5 parent: 2 - type: DeviceList devices: - - 22723 - - 22545 - - 18032 - - 18031 - - uid: 136 + - 23133 + - 22952 + - 18362 + - 18361 + - uid: 133 components: - type: Transform rot: 3.141592653589793 rad @@ -53091,39 +55593,39 @@ entities: parent: 2 - type: DeviceList devices: - - 22546 - - 22724 - - 17805 - - 17800 - - 18020 - - 17936 - - 17940 - - uid: 137 + - 22953 + - 23134 + - 18141 + - 18136 + - 18350 + - 18266 + - 18270 + - uid: 134 components: - type: Transform pos: -42.5,-13.5 parent: 2 - type: DeviceList devices: - - 22725 - - 22547 - - 17804 - - 17805 - - uid: 138 + - 23135 + - 22954 + - 18140 + - 18141 + - uid: 135 components: - type: Transform pos: -24.5,-12.5 parent: 2 - type: DeviceList devices: - - 22550 - - 22729 - - 17929 - - 17927 - - 17928 - - 17936 - - 18031 - - uid: 139 + - 22957 + - 23139 + - 18259 + - 18257 + - 18258 + - 18266 + - 18361 + - uid: 136 components: - type: Transform rot: 3.141592653589793 rad @@ -53131,11 +55633,11 @@ entities: parent: 2 - type: DeviceList devices: - - 22730 - - 22551 - - 18039 - - 18038 - - uid: 140 + - 23140 + - 22958 + - 18369 + - 18368 + - uid: 137 components: - type: Transform rot: 3.141592653589793 rad @@ -53143,17 +55645,17 @@ entities: parent: 2 - type: DeviceList devices: - - 22553 - - 22732 - - 17968 - - 17969 - - 17970 - - 17973 - - 17972 - - 17971 - - 17835 - - 18087 - - uid: 141 + - 22960 + - 23142 + - 18298 + - 18299 + - 18300 + - 18303 + - 18302 + - 18301 + - 18171 + - 18416 + - uid: 138 components: - type: Transform rot: 1.5707963267948966 rad @@ -53161,15 +55663,15 @@ entities: parent: 2 - type: DeviceList devices: - - 22711 - - 22526 - - 18088 - - 18089 - - 18090 - - 18041 - - 18042 - - 18043 - - uid: 142 + - 23121 + - 22933 + - 18417 + - 18418 + - 18419 + - 18371 + - 18372 + - 18373 + - uid: 139 components: - type: Transform rot: -1.5707963267948966 rad @@ -53177,41 +55679,41 @@ entities: parent: 2 - type: DeviceList devices: - - 22502 - - 22684 - - 18111 - - uid: 143 + - 22909 + - 23094 + - 18440 + - uid: 140 components: - type: Transform pos: -10.5,45.5 parent: 2 - - uid: 144 + - uid: 141 components: - type: Transform pos: -10.5,45.5 parent: 2 - type: DeviceList devices: - - 18000 - - 17999 - - 17974 - - 18114 - - 22448 - - 22629 - - uid: 145 + - 18330 + - 18329 + - 18304 + - 18443 + - 22855 + - 23039 + - uid: 142 components: - type: Transform pos: -22.5,48.5 parent: 2 - type: DeviceList devices: - - 22625 - - 22446 - - 22447 - - 22631 - - 17882 - - 17881 - - uid: 146 + - 23035 + - 22853 + - 22854 + - 23041 + - 18214 + - 18213 + - uid: 143 components: - type: Transform rot: 3.141592653589793 rad @@ -53219,11 +55721,11 @@ entities: parent: 2 - type: DeviceList devices: - - 17884 - - 17883 - - 22650 - - 22467 - - uid: 147 + - 18216 + - 18215 + - 23060 + - 22874 + - uid: 144 components: - type: Transform rot: 1.5707963267948966 rad @@ -53231,10 +55733,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22441 - - 22640 - - 18121 - - uid: 148 + - 22848 + - 23050 + - 18450 + - uid: 145 components: - type: Transform rot: 3.141592653589793 rad @@ -53242,11 +55744,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18121 - - 17879 - - 22457 - - 22641 - - uid: 149 + - 18450 + - 18211 + - 22864 + - 23051 + - uid: 146 components: - type: Transform rot: 1.5707963267948966 rad @@ -53254,11 +55756,11 @@ entities: parent: 2 - type: DeviceList devices: - - 17880 - - 22442 - - 22627 - - 17864 - - uid: 150 + - 18212 + - 22849 + - 23037 + - 18196 + - uid: 147 components: - type: Transform rot: -1.5707963267948966 rad @@ -53266,22 +55768,22 @@ entities: parent: 2 - type: DeviceList devices: - - 22445 - - 22626 - - 18118 - - 18116 - - 18115 - - 17880 - - 17881 - - 18122 - - 17879 - - uid: 151 + - 22852 + - 23036 + - 18447 + - 18445 + - 18444 + - 18212 + - 18213 + - 18451 + - 18211 + - uid: 148 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,52.5 parent: 2 - - uid: 152 + - uid: 149 components: - type: Transform rot: -1.5707963267948966 rad @@ -53289,10 +55791,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22452 - - 22633 - - 17869 - - uid: 153 + - 22859 + - 23043 + - 18201 + - uid: 150 components: - type: Transform rot: 1.5707963267948966 rad @@ -53300,13 +55802,13 @@ entities: parent: 2 - type: DeviceList devices: - - 17865 - - 17868 - - 17867 - - 17866 - - 22636 - - 22454 - - uid: 154 + - 18197 + - 18200 + - 18199 + - 18198 + - 23046 + - 22861 + - uid: 151 components: - type: Transform rot: 1.5707963267948966 rad @@ -53314,11 +55816,11 @@ entities: parent: 2 - type: DeviceList devices: - - 18120 - - 18113 - - 22453 - - 22635 - - uid: 155 + - 18449 + - 18442 + - 22860 + - 23045 + - uid: 152 components: - type: Transform rot: 3.141592653589793 rad @@ -53326,12 +55828,12 @@ entities: parent: 2 - type: DeviceList devices: - - 17998 - - 17997 - - 17996 - - 22458 - - 22642 - - uid: 156 + - 18328 + - 18327 + - 18326 + - 22865 + - 23052 + - uid: 153 components: - type: Transform rot: -1.5707963267948966 rad @@ -53339,23 +55841,23 @@ entities: parent: 2 - type: DeviceList devices: - - 22440 - - 22630 - - 18117 - - 18118 - - 18002 - - 18001 - - uid: 157 + - 22847 + - 23040 + - 18446 + - 18447 + - 18332 + - 18331 + - uid: 154 components: - type: Transform pos: 5.5,63.5 parent: 2 - type: DeviceList devices: - - 17878 - - 22638 - - 22455 - - uid: 158 + - 18210 + - 23048 + - 22862 + - uid: 155 components: - type: Transform rot: 1.5707963267948966 rad @@ -53363,14 +55865,14 @@ entities: parent: 2 - type: DeviceList devices: - - 22389 - - 22624 - - 18112 - - 18018 - - 17996 - - 17997 - - 17998 - - uid: 159 + - 22796 + - 23034 + - 18441 + - 18348 + - 18326 + - 18327 + - 18328 + - uid: 156 components: - type: Transform rot: -1.5707963267948966 rad @@ -53378,20 +55880,20 @@ entities: parent: 2 - type: DeviceList devices: - - 17916 - - 18133 - - 18008 - - 18134 - - 18136 - - 18137 - - 17915 - - 17914 - - 22595 - - 22409 - - 18007 - - 18006 - - 18005 - - uid: 160 + - 18246 + - 18460 + - 18336 + - 18461 + - 18463 + - 18464 + - 18245 + - 18244 + - 23005 + - 22816 + - 18335 + - 18334 + - 18333 + - uid: 157 components: - type: Transform rot: 1.5707963267948966 rad @@ -53399,10 +55901,10 @@ entities: parent: 2 - type: DeviceList devices: - - 22416 - - 22607 - - 18140 - - uid: 161 + - 22823 + - 23017 + - 18467 + - uid: 158 components: - type: Transform rot: 1.5707963267948966 rad @@ -53410,37 +55912,72 @@ entities: parent: 2 - type: DeviceList devices: - - 17919 - - 17918 - - 22385 - - 22709 - - 22501 - - 22685 - - uid: 40208 + - 18249 + - 18248 + - 22792 + - 23119 + - 22908 + - 23095 + - uid: 159 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 23081 + - 22894 + - 18486 + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 18487 + - 18344 + - 22961 + - 23143 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 22963 + - 22962 + - 18485 + - 18487 + - 18343 + - uid: 40604 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,63.5 - parent: 40203 + parent: 40599 - type: DeviceList devices: - - 42166 - - 42165 - - 42163 - - 42164 - - 42168 - - 42172 - - 42173 - - 42167 - - 42179 - - 42171 - - 42170 - - 42169 - - 42176 - - 42174 - - 42175 - - 42178 - - 42177 + - 42562 + - 42561 + - 42559 + - 42560 + - 42564 + - 42568 + - 42569 + - 42563 + - 42575 + - 42567 + - 42566 + - 42565 + - 42572 + - 42570 + - 42571 + - 42574 + - 42573 - proto: AirAlarmAssembly entities: - uid: 162 @@ -53505,8 +56042,13 @@ entities: - uid: 172 components: - type: Transform - pos: -21.5,60.5 + pos: -24.5,60.5 parent: 2 + - uid: 46585 + components: + - type: Transform + pos: 3.5,7.5 + parent: 46584 - proto: Airlock entities: - uid: 173 @@ -53555,153 +56097,143 @@ entities: pos: 39.5,28.5 parent: 2 - uid: 181 - components: - - type: Transform - pos: 23.5,10.5 - parent: 2 - - uid: 182 - components: - - type: Transform - pos: 29.5,10.5 - parent: 2 - - uid: 183 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,29.5 parent: 2 - - uid: 184 + - uid: 182 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,27.5 parent: 2 - - uid: 185 + - uid: 183 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,26.5 parent: 2 - - uid: 186 + - uid: 184 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,28.5 parent: 2 - - uid: 187 + - uid: 185 components: - type: Transform pos: -55.5,-5.5 parent: 2 - - uid: 188 + - uid: 186 components: - type: Transform pos: -53.5,-5.5 parent: 2 - - uid: 189 + - uid: 187 components: - type: Transform pos: -51.5,-5.5 parent: 2 - - uid: 190 + - uid: 188 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,44.5 parent: 2 - - uid: 191 + - uid: 189 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,44.5 parent: 2 - - uid: 192 + - uid: 190 components: - type: Transform pos: -51.5,62.5 parent: 2 - - uid: 193 + - uid: 191 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,28.5 parent: 2 - - uid: 194 + - uid: 192 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,30.5 parent: 2 - - uid: 195 + - uid: 193 components: - type: Transform rot: -1.5707963267948966 rad pos: -107.5,27.5 parent: 2 - - uid: 196 + - uid: 194 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,27.5 parent: 2 - - uid: 197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,18.5 - parent: 2 - - uid: 198 + - uid: 195 components: - type: Transform rot: -1.5707963267948966 rad pos: -112.5,32.5 parent: 2 - - uid: 199 + - uid: 196 components: - type: Transform pos: -102.5,26.5 parent: 2 - - uid: 40209 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-10.5 + parent: 2 + - uid: 40605 components: - type: Transform pos: 60.5,76.5 - parent: 40203 - - uid: 40210 + parent: 40599 + - uid: 40606 components: - type: Transform pos: 63.5,76.5 - parent: 40203 - - uid: 40211 + parent: 40599 + - uid: 40607 components: - type: Transform pos: 69.5,76.5 - parent: 40203 - - uid: 40212 + parent: 40599 + - uid: 40608 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,80.5 - parent: 40203 - - uid: 40213 + parent: 40599 + - uid: 40609 components: - type: Transform pos: 58.5,81.5 - parent: 40203 + parent: 40599 - proto: AirlockArmoryGlassLocked entities: - - uid: 200 + - uid: 198 components: - type: Transform pos: -35.5,-11.5 parent: 2 - proto: AirlockArmoryLocked entities: - - uid: 201 + - uid: 199 components: - type: Transform pos: -44.5,-13.5 parent: 2 - - uid: 202 + - uid: 200 components: - type: Transform rot: 3.141592653589793 rad @@ -53709,217 +56241,218 @@ entities: parent: 2 - proto: AirlockAssembly entities: - - uid: 40214 + - uid: 40610 components: - type: Transform pos: 66.5,76.5 - parent: 40203 + parent: 40599 + missingComponents: + - Pullable - proto: AirlockAssemblyCargoGlass entities: - - uid: 203 + - uid: 201 components: - type: Transform pos: 99.5,-41.5 parent: 2 - proto: AirlockAssemblyCommand entities: - - uid: 40215 + - uid: 40611 components: - type: Transform pos: 70.5,72.5 - parent: 40203 + parent: 40599 + missingComponents: + - Pullable - proto: AirlockAssemblyEngineering entities: - - uid: 204 + - uid: 202 components: - type: Transform pos: 97.5,-44.5 parent: 2 - - uid: 40216 + - uid: 40612 components: - type: Transform pos: 67.5,64.5 - parent: 40203 + parent: 40599 + missingComponents: + - Pullable - proto: AirlockAssemblyMaintenance entities: - - uid: 205 + - uid: 203 components: - type: Transform pos: 20.5,50.5 parent: 2 -- proto: AirlockAssemblyMedical - entities: - - uid: 40217 - components: - - type: Transform - pos: 61.5,61.5 - parent: 40203 - proto: AirlockAssemblyMining entities: - - uid: 206 + - uid: 204 components: - type: Transform pos: -33.5,36.5 parent: 2 - proto: AirlockAssemblySecurity entities: - - uid: 40218 + - uid: 40613 components: - type: Transform pos: 36.5,64.5 - parent: 40203 + parent: 40599 + missingComponents: + - Pullable - proto: AirlockAssemblyVirology entities: - - uid: 207 + - uid: 205 components: - type: Transform pos: 19.5,59.5 parent: 2 - proto: AirlockAssemblyVirologyGlass entities: - - uid: 208 + - uid: 206 components: - type: Transform pos: 14.5,50.5 parent: 2 - - uid: 209 + - uid: 207 components: - type: Transform pos: 12.5,54.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 210 + - uid: 208 components: - type: Transform pos: -0.5,-54.5 parent: 2 - - uid: 211 + - uid: 209 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-56.5 parent: 2 - - uid: 212 + - uid: 210 components: - type: Transform pos: -0.5,-55.5 parent: 2 - - uid: 213 + - uid: 211 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-56.5 parent: 2 - - uid: 214 + - uid: 212 components: - type: Transform pos: -14.5,-47.5 parent: 2 - proto: AirlockAtmosphericsLocked entities: - - uid: 215 + - uid: 213 components: - type: Transform pos: -9.5,-51.5 parent: 2 - - uid: 216 + - uid: 214 components: - type: Transform pos: 3.5,-54.5 parent: 2 - - uid: 217 + - uid: 215 components: - type: Transform pos: 3.5,-55.5 parent: 2 - proto: AirlockBarLocked entities: - - uid: 218 + - uid: 216 components: - type: Transform pos: 44.5,18.5 parent: 2 - - uid: 219 + - uid: 217 components: - type: Transform pos: 40.5,24.5 parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 220 + - uid: 218 components: - type: Transform pos: -31.5,-2.5 parent: 2 - - uid: 221 + - uid: 219 components: - type: Transform pos: -31.5,-4.5 parent: 2 - - uid: 222 + - uid: 220 components: - type: Transform pos: -47.5,9.5 parent: 2 - - uid: 223 + - uid: 221 components: - type: Transform pos: -33.5,-1.5 parent: 2 - - uid: 224 + - uid: 222 components: - type: Transform pos: -36.5,9.5 parent: 2 - - uid: 225 + - uid: 223 components: - type: Transform pos: -38.5,9.5 parent: 2 - - uid: 226 + - uid: 224 components: - type: Transform pos: -51.5,11.5 parent: 2 - - uid: 227 + - uid: 225 components: - type: Transform pos: -47.5,-1.5 parent: 2 - proto: AirlockBrigLocked entities: - - uid: 228 + - uid: 226 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,4.5 parent: 2 - - uid: 229 + - uid: 227 components: - type: Transform pos: -49.5,-3.5 parent: 2 - proto: AirlockCaptainGlassLocked entities: - - uid: 230 + - uid: 228 components: - type: Transform pos: 10.5,-1.5 parent: 2 - proto: AirlockCaptainLocked entities: - - uid: 231 + - uid: 229 components: - type: Transform pos: 17.5,-6.5 parent: 2 - - uid: 232 + - uid: 230 components: - type: Transform pos: 12.5,-6.5 parent: 2 - - uid: 233 + - uid: 231 components: - type: Transform rot: 1.5707963267948966 rad @@ -53927,74 +56460,65 @@ entities: parent: 2 - proto: AirlockCargoGlass entities: - - uid: 234 + - uid: 232 components: - type: Transform + rot: 1.5707963267948966 rad pos: 60.5,-29.5 parent: 2 - - uid: 235 + - uid: 233 components: - type: Transform - pos: 60.5,-30.5 + rot: 1.5707963267948966 rad + pos: 99.5,-44.5 parent: 2 - - uid: 236 + - uid: 234 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-44.5 + pos: 60.5,-30.5 parent: 2 - proto: AirlockCargoGlassLocked entities: - - uid: 237 + - uid: 235 components: - type: Transform pos: 68.5,-50.5 parent: 2 - - uid: 238 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-35.5 - parent: 2 - proto: AirlockCargoLocked entities: - - uid: 239 - components: - - type: Transform - pos: 61.5,-35.5 - parent: 2 - - uid: 240 + - uid: 236 components: - type: Transform - pos: 63.5,-35.5 + pos: 57.5,-35.5 parent: 2 - - uid: 241 + - uid: 237 components: - type: Transform - pos: 57.5,-35.5 + pos: 56.5,-35.5 parent: 2 - - uid: 242 + - uid: 238 components: - type: Transform - pos: 56.5,-35.5 + pos: 64.5,-30.5 parent: 2 - - uid: 40219 + - uid: 40614 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,67.5 - parent: 40203 + parent: 40599 - proto: AirlockChapelLocked entities: - - uid: 243 + - uid: 239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,7.5 + rot: 3.141592653589793 rad + pos: 52.5,-10.5 parent: 2 - proto: AirlockChemistryGlassLocked entities: - - uid: 244 + - uid: 240 components: - type: Transform rot: 3.141592653589793 rad @@ -54002,26 +56526,26 @@ entities: parent: 2 - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 245 + - uid: 241 components: - type: Transform pos: -0.5,-48.5 parent: 2 - proto: AirlockChiefEngineerLocked entities: - - uid: 246 + - uid: 242 components: - type: Transform pos: 5.5,-50.5 parent: 2 - - uid: 247 + - uid: 243 components: - type: Transform pos: 9.5,-50.5 parent: 2 - proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 248 + - uid: 244 components: - type: Transform rot: 3.141592653589793 rad @@ -54029,82 +56553,82 @@ entities: parent: 2 - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 249 + - uid: 245 components: - type: Transform pos: -11.5,61.5 parent: 2 - - uid: 250 + - uid: 246 components: - type: Transform pos: -11.5,58.5 parent: 2 - proto: AirlockCommand entities: - - uid: 40220 + - uid: 40615 components: - type: Transform pos: 72.5,76.5 - parent: 40203 + parent: 40599 - proto: AirlockCommandGlassLocked entities: - - uid: 251 + - uid: 247 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,10.5 parent: 2 - - uid: 252 + - uid: 248 components: - type: Transform pos: -14.5,-0.5 parent: 2 - - uid: 253 + - uid: 249 components: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 254 + - uid: 250 components: - type: Transform pos: -12.5,1.5 parent: 2 - - uid: 255 + - uid: 251 components: - type: Transform pos: -12.5,-0.5 parent: 2 - - uid: 256 + - uid: 252 components: - type: Transform pos: 17.5,1.5 parent: 2 - - uid: 257 + - uid: 253 components: - type: Transform pos: 17.5,-0.5 parent: 2 - - uid: 258 + - uid: 254 components: - type: Transform pos: 19.5,1.5 parent: 2 - - uid: 259 + - uid: 255 components: - type: Transform pos: 19.5,-0.5 parent: 2 - - uid: 260 + - uid: 256 components: - type: Transform pos: -6.5,3.5 parent: 2 - - uid: 261 + - uid: 257 components: - type: Transform pos: 11.5,3.5 parent: 2 - - uid: 262 + - uid: 258 components: - type: Transform rot: 3.141592653589793 rad @@ -54112,21 +56636,21 @@ entities: parent: 2 - proto: AirlockCommandLocked entities: - - uid: 263 + - uid: 259 components: - type: Transform pos: 8.5,-14.5 parent: 2 - proto: AirlockDetectiveGlassLocked entities: - - uid: 264 + - uid: 260 components: - type: Transform pos: -21.5,2.5 parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 265 + - uid: 261 components: - type: Transform rot: 3.141592653589793 rad @@ -54134,60 +56658,60 @@ entities: parent: 2 - proto: AirlockEngineering entities: - - uid: 266 + - uid: 262 components: - type: Transform pos: -53.5,63.5 parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 267 + - uid: 263 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-43.5 parent: 2 - - uid: 268 + - uid: 264 components: - type: Transform pos: -9.5,-39.5 parent: 2 - - uid: 269 + - uid: 265 components: - type: Transform pos: -11.5,-45.5 parent: 2 - - uid: 270 + - uid: 266 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-39.5 parent: 2 - - uid: 271 + - uid: 267 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-39.5 parent: 2 - - uid: 272 + - uid: 268 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 2 - - uid: 273 + - uid: 269 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-43.5 parent: 2 - - uid: 274 + - uid: 270 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,9.5 parent: 2 - - uid: 275 + - uid: 271 components: - type: Transform rot: -1.5707963267948966 rad @@ -54195,50 +56719,45 @@ entities: parent: 2 - proto: AirlockEngineeringLocked entities: - - uid: 276 + - uid: 272 components: - type: Transform pos: 59.5,-6.5 parent: 2 - - uid: 277 + - uid: 273 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,29.5 parent: 2 - - uid: 278 + - uid: 274 components: - type: Transform pos: -14.5,-6.5 parent: 2 - - uid: 279 + - uid: 275 components: - type: Transform pos: -0.5,-41.5 parent: 2 - - uid: 280 + - uid: 276 components: - type: Transform pos: 19.5,55.5 parent: 2 - - uid: 281 + - uid: 277 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-38.5 parent: 2 - - uid: 282 - components: - - type: Transform - pos: -19.5,59.5 - parent: 2 - - uid: 283 + - uid: 278 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-26.5 parent: 2 - - uid: 284 + - uid: 279 components: - type: Transform pos: -19.5,-1.5 @@ -54247,95 +56766,100 @@ entities: access: - - Engineering - - Security - - uid: 285 + - uid: 280 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-28.5 parent: 2 - - uid: 286 + - uid: 281 components: - type: Transform pos: 11.5,-44.5 parent: 2 - - uid: 287 + - uid: 282 components: - type: Transform pos: -133.5,7.5 parent: 2 - - uid: 44974 + - uid: 283 + components: + - type: Transform + pos: -23.5,59.5 + parent: 2 + - uid: 45359 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,7.5 - parent: 44970 + parent: 45355 - proto: AirlockEVAGlassLocked entities: - - uid: 288 + - uid: 284 components: - type: Transform pos: -14.5,9.5 parent: 2 - proto: AirlockExternal entities: - - uid: 289 + - uid: 285 components: - type: Transform pos: -60.5,66.5 parent: 2 - - uid: 290 + - uid: 286 components: - type: Transform pos: -51.5,59.5 parent: 2 - - uid: 40221 + - uid: 40616 components: - type: Transform pos: 41.5,54.5 - parent: 40203 - - uid: 40222 + parent: 40599 + - uid: 40617 components: - type: Transform pos: 43.5,54.5 - parent: 40203 + parent: 40599 - proto: AirlockExternalEngineeringLocked entities: - - uid: 291 + - uid: 287 components: - type: Transform pos: -31.5,-45.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 292 + - uid: 288 components: - type: Transform pos: 1.5,-65.5 parent: 2 - - uid: 293 + - uid: 289 components: - type: Transform pos: -18.5,-65.5 parent: 2 - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 294 + - uid: 290 components: - type: Transform rot: 3.141592653589793 rad pos: 76.5,-20.5 parent: 2 - - uid: 295 + - uid: 291 components: - type: Transform pos: 76.5,-10.5 parent: 2 - - uid: 296 + - uid: 292 components: - type: Transform pos: 83.5,-10.5 parent: 2 - - uid: 297 + - uid: 293 components: - type: Transform rot: 3.141592653589793 rad @@ -54343,25 +56867,25 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 298 + - uid: 294 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-22.5 parent: 2 - - uid: 299 + - uid: 295 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-34.5 parent: 2 - - uid: 300 + - uid: 296 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,-24.5 parent: 2 - - uid: 301 + - uid: 297 components: - type: Transform rot: 1.5707963267948966 rad @@ -54369,382 +56893,389 @@ entities: parent: 2 - proto: AirlockFreezer entities: - - uid: 302 + - uid: 298 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,35.5 parent: 2 - - uid: 303 + - uid: 299 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,37.5 parent: 2 - - uid: 304 + - uid: 300 components: - type: Transform pos: -48.5,67.5 parent: 2 - proto: AirlockGlass entities: - - uid: 305 + - uid: 301 components: - type: Transform pos: 33.5,16.5 parent: 2 - - uid: 306 + - uid: 302 components: - type: Transform pos: 23.5,-17.5 parent: 2 - - uid: 307 + - uid: 303 components: - type: Transform pos: 23.5,-16.5 parent: 2 - - uid: 308 + - uid: 304 components: - type: Transform pos: 23.5,-15.5 parent: 2 - - uid: 309 + - uid: 305 components: - type: Transform pos: 26.5,-15.5 parent: 2 - - uid: 310 + - uid: 306 components: - type: Transform pos: 26.5,-16.5 parent: 2 - - uid: 311 + - uid: 307 components: - type: Transform pos: 26.5,-17.5 parent: 2 - - uid: 312 + - uid: 308 components: - type: Transform pos: 23.5,-0.5 parent: 2 - - uid: 313 + - uid: 309 components: - type: Transform pos: 23.5,0.5 parent: 2 - - uid: 314 + - uid: 310 components: - type: Transform pos: 23.5,1.5 parent: 2 - - uid: 315 + - uid: 311 components: - type: Transform pos: 26.5,1.5 parent: 2 - - uid: 316 + - uid: 312 components: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 317 + - uid: 313 components: - type: Transform pos: 26.5,-0.5 parent: 2 - - uid: 318 + - uid: 314 components: - type: Transform pos: -10.5,17.5 parent: 2 - - uid: 319 + - uid: 315 components: - type: Transform pos: -11.5,17.5 parent: 2 - - uid: 320 + - uid: 316 components: - type: Transform pos: -12.5,17.5 parent: 2 - - uid: 321 + - uid: 317 components: - type: Transform pos: -11.5,20.5 parent: 2 - - uid: 322 + - uid: 318 components: - type: Transform pos: -10.5,20.5 parent: 2 - - uid: 323 + - uid: 319 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,20.5 parent: 2 - - uid: 324 + - uid: 320 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-7.5 parent: 2 - - uid: 325 + - uid: 321 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-18.5 parent: 2 - - uid: 326 + - uid: 322 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-18.5 parent: 2 - - uid: 327 + - uid: 323 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,-18.5 parent: 2 - - uid: 328 + - uid: 324 components: - type: Transform pos: -10.5,-30.5 parent: 2 - - uid: 329 + - uid: 325 components: - type: Transform pos: -8.5,-30.5 parent: 2 - - uid: 330 + - uid: 326 components: - type: Transform pos: -9.5,-30.5 parent: 2 - - uid: 331 + - uid: 327 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,-8.5 parent: 2 - - uid: 332 + - uid: 328 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,16.5 parent: 2 - - uid: 333 + - uid: 329 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,27.5 parent: 2 - - uid: 334 + - uid: 330 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,25.5 parent: 2 - - uid: 335 - components: - - type: Transform - pos: 14.5,25.5 - parent: 2 - - uid: 336 + - uid: 331 components: - type: Transform pos: 19.5,25.5 parent: 2 - - uid: 337 + - uid: 332 components: - type: Transform pos: 14.5,24.5 parent: 2 - - uid: 338 + - uid: 333 components: - type: Transform pos: 19.5,24.5 parent: 2 - - uid: 339 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 340 + - uid: 334 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,18.5 parent: 2 - - uid: 341 + - uid: 335 components: - type: Transform pos: 27.5,-27.5 parent: 2 - - uid: 342 + - uid: 336 components: - type: Transform pos: 40.5,-30.5 parent: 2 - - uid: 343 + - uid: 337 components: - type: Transform pos: 41.5,-30.5 parent: 2 - - uid: 344 + - uid: 338 components: - type: Transform pos: 6.5,-21.5 parent: 2 - - uid: 345 + - uid: 339 components: - type: Transform pos: 2.5,-18.5 parent: 2 - - uid: 346 + - uid: 340 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-24.5 parent: 2 - - uid: 347 + - uid: 341 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-24.5 parent: 2 - - uid: 348 + - uid: 342 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-23.5 parent: 2 - - uid: 349 + - uid: 343 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-22.5 parent: 2 - - uid: 350 + - uid: 344 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-23.5 parent: 2 - - uid: 351 + - uid: 345 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.5,-22.5 parent: 2 - - uid: 352 + - uid: 346 components: - type: Transform pos: 6.5,-20.5 parent: 2 - - uid: 353 + - uid: 347 components: - type: Transform pos: 2.5,23.5 parent: 2 - - uid: 354 + - uid: 348 components: - type: Transform pos: 1.5,23.5 parent: 2 - - uid: 355 + - uid: 349 components: - type: Transform rot: 3.141592653589793 rad pos: -118.5,2.5 parent: 2 - - uid: 356 + - uid: 350 components: - type: Transform rot: 1.5707963267948966 rad pos: -106.5,13.5 parent: 2 - - uid: 357 + - uid: 351 components: - type: Transform rot: 1.5707963267948966 rad pos: -105.5,13.5 parent: 2 - - uid: 358 + - uid: 352 components: - type: Transform rot: -1.5707963267948966 rad pos: -117.5,9.5 parent: 2 - - uid: 359 + - uid: 353 components: - type: Transform pos: -103.5,23.5 parent: 2 - - uid: 360 + - uid: 354 components: - type: Transform pos: -103.5,22.5 parent: 2 - - uid: 361 + - uid: 355 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,15.5 parent: 2 - - uid: 362 + - uid: 356 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,14.5 parent: 2 - - uid: 363 + - uid: 357 components: - type: Transform rot: -1.5707963267948966 rad pos: -111.5,6.5 parent: 2 - - uid: 364 + - uid: 358 components: - type: Transform rot: 3.141592653589793 rad pos: -111.5,7.5 parent: 2 - - uid: 365 + - uid: 359 components: - type: Transform rot: 1.5707963267948966 rad pos: -103.5,16.5 parent: 2 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,10.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 - proto: AirlockHeadOfPersonnelGlassLocked entities: - - uid: 366 + - uid: 363 components: - type: Transform pos: -7.5,-3.5 parent: 2 - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 367 + - uid: 364 components: - type: Transform pos: -4.5,-8.5 parent: 2 - - uid: 368 + - uid: 365 components: - type: Transform pos: -10.5,-4.5 parent: 2 - - uid: 369 + - uid: 366 components: - type: Transform pos: -11.5,-9.5 parent: 2 - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 370 + - uid: 367 components: - type: Transform rot: 3.141592653589793 rad @@ -54752,24 +57283,24 @@ entities: parent: 2 - proto: AirlockHeadOfSecurityLocked entities: - - uid: 371 + - uid: 368 components: - type: Transform pos: -41.5,5.5 parent: 2 - proto: AirlockHydroGlassLocked entities: - - uid: 372 + - uid: 369 components: - type: Transform pos: 19.5,33.5 parent: 2 - - uid: 373 + - uid: 370 components: - type: Transform pos: 8.5,30.5 parent: 2 - - uid: 374 + - uid: 371 components: - type: Transform rot: 3.141592653589793 rad @@ -54777,88 +57308,97 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 375 + - uid: 372 components: - type: Transform pos: 1.5,29.5 parent: 2 - proto: AirlockKitchenGlassLocked entities: - - uid: 376 + - uid: 373 components: - type: Transform pos: 23.5,33.5 parent: 2 - - uid: 377 + - uid: 374 components: - type: Transform pos: 25.5,37.5 parent: 2 - - uid: 378 + - uid: 375 components: - type: Transform pos: 25.5,30.5 parent: 2 - proto: AirlockLawyerLocked entities: - - uid: 379 + - uid: 376 components: - type: Transform pos: -22.5,24.5 parent: 2 +- proto: AirlockMaint + entities: + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,29.5 + parent: 2 - proto: AirlockMaintBarLocked entities: - - uid: 380 + - uid: 378 components: - type: Transform pos: 49.5,18.5 parent: 2 - proto: AirlockMaintCaptainLocked entities: - - uid: 381 + - uid: 379 components: - type: Transform pos: 13.5,-11.5 parent: 2 - - uid: 382 + - uid: 380 components: - type: Transform pos: 15.5,-12.5 parent: 2 - proto: AirlockMaintCargoLocked entities: - - uid: 383 + - uid: 381 components: - type: Transform pos: 53.5,-37.5 parent: 2 - - uid: 384 + - uid: 382 components: - type: Transform pos: 68.5,-29.5 parent: 2 -- proto: AirlockMaintCommonLocked +- proto: AirlockMaintChapelLocked entities: - - uid: 385 + - uid: 383 components: - type: Transform - pos: -16.5,-18.5 + rot: 3.141592653589793 rad + pos: 56.5,-11.5 parent: 2 - - uid: 386 +- proto: AirlockMaintCommonLocked + entities: + - uid: 384 components: - type: Transform - pos: -11.5,-32.5 + pos: -16.5,-18.5 parent: 2 -- proto: AirlockMaintEngiLocked - entities: - - uid: 387 + - uid: 385 components: - type: Transform - pos: -23.5,59.5 + pos: -11.5,-32.5 parent: 2 - proto: AirlockMaintHydroLocked entities: - - uid: 388 + - uid: 386 components: - type: Transform rot: 3.141592653589793 rad @@ -54866,7 +57406,7 @@ entities: parent: 2 - proto: AirlockMaintKitchenLocked entities: - - uid: 389 + - uid: 387 components: - type: Transform rot: 1.5707963267948966 rad @@ -54874,83 +57414,95 @@ entities: parent: 2 - proto: AirlockMaintLocked entities: - - uid: 390 + - uid: 388 components: - type: Transform pos: 61.5,-3.5 parent: 2 - - uid: 391 - components: - - type: Transform - pos: 42.5,-16.5 - parent: 2 - - uid: 392 + - uid: 389 components: - type: Transform pos: 46.5,-19.5 parent: 2 - - uid: 393 + - uid: 390 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,30.5 parent: 2 - - uid: 394 + - uid: 391 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-13.5 parent: 2 - - uid: 395 + - uid: 392 components: - type: Transform rot: 1.5707963267948966 rad pos: 32.5,-32.5 parent: 2 - - uid: 396 + - uid: 393 components: - type: Transform pos: 52.5,-25.5 parent: 2 - - uid: 397 + - uid: 394 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-6.5 parent: 2 - - uid: 398 + - uid: 395 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,5.5 parent: 2 - - uid: 399 + - uid: 396 components: - type: Transform pos: 61.5,-21.5 parent: 2 - - uid: 400 + - uid: 397 components: - type: Transform pos: 71.5,-28.5 parent: 2 - - uid: 401 + - uid: 398 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,45.5 parent: 2 - - uid: 402 + - uid: 399 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,6.5 parent: 2 - - uid: 403 + - uid: 400 components: - type: Transform pos: -30.5,42.5 parent: 2 + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-17.5 + parent: 2 + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.5,-2.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -26.5,59.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 404 @@ -55007,82 +57559,92 @@ entities: rot: 1.5707963267948966 rad pos: 101.5,-44.5 parent: 2 + - uid: 412 + components: + - type: Transform + pos: -18.5,56.5 + parent: 2 + - uid: 40618 + components: + - type: Transform + pos: 61.5,61.5 + parent: 40599 - proto: AirlockMedicalGlassLocked entities: - - uid: 412 + - uid: 413 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,47.5 parent: 2 - - uid: 413 + - uid: 414 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,49.5 parent: 2 - - uid: 414 + - uid: 415 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,55.5 parent: 2 - - uid: 415 + - uid: 416 components: - type: Transform pos: -11.5,48.5 parent: 2 - - uid: 416 + - uid: 417 components: - type: Transform pos: 6.5,46.5 parent: 2 - - uid: 417 + - uid: 418 components: - type: Transform pos: 4.5,41.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 418 + - uid: 419 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,49.5 parent: 2 - - uid: 419 + - uid: 420 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,54.5 parent: 2 - - uid: 420 + - uid: 421 components: - type: Transform pos: -4.5,67.5 parent: 2 - - uid: 421 + - uid: 422 components: - type: Transform pos: -5.5,64.5 parent: 2 - - uid: 422 + - uid: 423 components: - type: Transform pos: -4.5,64.5 parent: 2 - - uid: 423 + - uid: 424 components: - type: Transform pos: -23.5,47.5 parent: 2 - - uid: 424 + - uid: 425 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,50.5 parent: 2 - - uid: 425 + - uid: 426 components: - type: MetaData name: Психолог @@ -55090,32 +57652,25 @@ entities: rot: 3.141592653589793 rad pos: 0.5,60.5 parent: 2 - - uid: 426 + - uid: 427 components: - type: Transform pos: -5.5,67.5 parent: 2 - proto: AirlockMedicalMorgueLocked entities: - - uid: 427 + - uid: 428 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,45.5 parent: 2 - - uid: 428 + - uid: 429 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,46.5 parent: 2 -- proto: AirlockMining - entities: - - uid: 429 - components: - - type: Transform - pos: -54.5,-27.5 - parent: 2 - proto: AirlockQuartermasterGlassLocked entities: - uid: 430 @@ -55318,18 +57873,18 @@ entities: - type: Transform pos: -114.5,16.5 parent: 2 - - uid: 40223 + - uid: 40619 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,75.5 - parent: 40203 - - uid: 40224 + parent: 40599 + - uid: 40620 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,75.5 - parent: 40203 + parent: 40599 - proto: AirlockSecurityGlassLocked entities: - uid: 463 @@ -55413,33 +57968,27 @@ entities: pos: 66.5,-28.5 parent: 2 - uid: 477 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-35.5 - parent: 2 - - uid: 478 components: - type: Transform rot: 1.5707963267948966 rad pos: -107.5,17.5 parent: 2 - - uid: 479 + - uid: 478 components: - type: Transform pos: 95.5,-10.5 parent: 2 - - uid: 480 + - uid: 479 components: - type: Transform pos: 99.5,-12.5 parent: 2 - - uid: 481 + - uid: 480 components: - type: Transform pos: 97.5,-7.5 parent: 2 - - uid: 482 + - uid: 481 components: - type: Transform rot: 3.141592653589793 rad @@ -55447,7 +57996,7 @@ entities: parent: 2 - proto: AirlockSecurityLawyerLocked entities: - - uid: 483 + - uid: 482 components: - type: Transform rot: 1.5707963267948966 rad @@ -55455,82 +58004,82 @@ entities: parent: 2 - proto: AirlockSecurityLocked entities: - - uid: 484 + - uid: 483 components: - type: Transform pos: -38.5,13.5 parent: 2 - - uid: 485 + - uid: 484 components: - type: Transform rot: -1.5707963267948966 rad pos: -43.5,-5.5 parent: 2 - - uid: 486 + - uid: 485 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,4.5 parent: 2 - - uid: 487 + - uid: 486 components: - type: Transform pos: -38.5,-5.5 parent: 2 - - uid: 488 + - uid: 487 components: - type: Transform pos: -46.5,-5.5 parent: 2 - - uid: 489 + - uid: 488 components: - type: Transform pos: -46.5,-10.5 parent: 2 - - uid: 490 + - uid: 489 components: - type: Transform pos: -36.5,13.5 parent: 2 - - uid: 491 + - uid: 490 components: - type: Transform pos: -95.5,-7.5 parent: 2 - - uid: 492 + - uid: 491 components: - type: Transform pos: -98.5,-7.5 parent: 2 - - uid: 493 + - uid: 492 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,-3.5 parent: 2 - - uid: 494 + - uid: 493 components: - type: Transform rot: 3.141592653589793 rad pos: -107.5,0.5 parent: 2 - - uid: 495 + - uid: 494 components: - type: Transform pos: -102.5,1.5 parent: 2 - - uid: 496 + - uid: 495 components: - type: Transform pos: -100.5,5.5 parent: 2 - - uid: 497 + - uid: 496 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,15.5 parent: 2 - - uid: 498 + - uid: 497 components: - type: Transform rot: 3.141592653589793 rad @@ -55538,13 +58087,13 @@ entities: parent: 2 - proto: AirlockServiceGlassLocked entities: - - uid: 499 + - uid: 498 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,21.5 parent: 2 - - uid: 500 + - uid: 499 components: - type: Transform rot: -1.5707963267948966 rad @@ -55552,12 +58101,12 @@ entities: parent: 2 - proto: AirlockServiceLocked entities: - - uid: 501 + - uid: 500 components: - type: Transform pos: 21.5,30.5 parent: 2 - - uid: 502 + - uid: 501 components: - type: Transform rot: -1.5707963267948966 rad @@ -55565,61 +58114,61 @@ entities: parent: 2 - proto: AirlockTheatreLocked entities: - - uid: 503 + - uid: 502 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,5.5 parent: 2 - - uid: 504 + - uid: 503 components: - type: Transform pos: 61.5,5.5 parent: 2 - - uid: 505 + - uid: 504 components: - type: Transform pos: 52.5,8.5 parent: 2 - - uid: 506 + - uid: 505 components: - type: Transform pos: 61.5,8.5 parent: 2 - - uid: 507 + - uid: 506 components: - type: Transform pos: 56.5,8.5 parent: 2 - proto: AirlockVirologyGlassLocked entities: - - uid: 508 + - uid: 507 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,55.5 parent: 2 - - uid: 509 + - uid: 508 components: - type: Transform pos: 18.5,59.5 parent: 2 - - uid: 510 + - uid: 509 components: - type: Transform pos: 22.5,57.5 parent: 2 - - uid: 511 + - uid: 510 components: - type: Transform pos: 13.5,55.5 parent: 2 - - uid: 512 + - uid: 511 components: - type: Transform pos: 12.5,50.5 parent: 2 - - uid: 513 + - uid: 512 components: - type: Transform rot: 3.141592653589793 rad @@ -55627,19 +58176,19 @@ entities: parent: 2 - proto: AirlockVirologyLocked entities: - - uid: 514 + - uid: 513 components: - type: Transform pos: 3.5,57.5 parent: 2 - - uid: 515 + - uid: 514 components: - type: Transform pos: 0.5,57.5 parent: 2 - proto: AirSensor entities: - - uid: 516 + - uid: 515 components: - type: Transform rot: 3.141592653589793 rad @@ -55647,8 +58196,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 33 - - uid: 517 + - 31 + - uid: 516 components: - type: Transform rot: 1.5707963267948966 rad @@ -55656,8 +58205,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 29 - - uid: 518 + - 27 + - uid: 517 components: - type: Transform rot: -1.5707963267948966 rad @@ -55665,14 +58214,14 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 28 - - uid: 519 + - 26 + - uid: 518 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,5.5 parent: 2 - - uid: 520 + - uid: 519 components: - type: Transform rot: -1.5707963267948966 rad @@ -55680,22 +58229,36 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 112 + - 109 +- proto: AltarHeaven + entities: + - uid: 46944 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 46943 - proto: AltarSpawner entities: - - uid: 521 + - uid: 520 components: - type: Transform - pos: 26.5,9.5 + pos: 48.5,-9.5 parent: 2 - proto: AltarToolbox entities: - - uid: 522 + - uid: 521 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,32.5 parent: 2 +- proto: AlwaysPoweredlightCyan + entities: + - uid: 522 + components: + - type: Transform + pos: -18.5,60.5 + parent: 2 - proto: AlwaysPoweredlightOrange entities: - uid: 523 @@ -55736,70 +58299,87 @@ entities: rot: -1.5707963267948966 rad pos: 83.5,5.5 parent: 2 -- proto: AlwaysPoweredlightPink +- proto: AmmoTechFabCircuitboard entities: - - uid: 530 + - uid: 47247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,13.5 - parent: 2 + parent: 47246 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AnomalyFloraBulb entities: - - uid: 531 + - uid: 530 components: - type: Transform rot: 3.141592653589793 rad pos: -76.5,38.5 parent: 2 - - uid: 532 + - uid: 531 components: - type: Transform rot: 3.141592653589793 rad pos: -74.5,37.5 parent: 2 - - uid: 533 + - uid: 532 components: - type: Transform pos: -65.5,55.5 parent: 2 - - uid: 534 + - uid: 533 components: - type: Transform pos: -69.5,51.5 parent: 2 - - uid: 535 + - uid: 534 components: - type: Transform pos: -77.5,-1.5 parent: 2 - - uid: 536 + - uid: 535 components: - type: Transform pos: -80.5,-3.5 parent: 2 - - uid: 537 + - uid: 536 components: - type: Transform pos: -84.5,0.5 parent: 2 - proto: AnomalyScanner entities: - - uid: 538 + - uid: 537 components: - type: Transform pos: 17.406872,-41.39138 parent: 2 - proto: APCBasic entities: + - uid: 538 + components: + - type: MetaData + name: ЛКП "Тех. медицинского" + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,58.5 + parent: 2 - uid: 539 + components: + - type: MetaData + name: ЛКП "Игровой зал" + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 2 + - uid: 540 components: - type: MetaData name: ЛКП "АВД" - type: Transform pos: -20.5,27.5 parent: 2 - - uid: 540 + - uid: 541 components: - type: MetaData name: ЛКП "Зона отгрузки" @@ -55807,21 +58387,21 @@ entities: rot: 1.5707963267948966 rad pos: 54.5,-31.5 parent: 2 - - uid: 541 + - uid: 542 components: - type: MetaData name: ЛКП "Правое крыло мостика" - type: Transform pos: 15.5,3.5 parent: 2 - - uid: 542 + - uid: 543 components: - type: MetaData name: ЛКП "Левое крыло мостика" - type: Transform pos: -10.5,3.5 parent: 2 - - uid: 543 + - uid: 544 components: - type: MetaData name: ЛКП "Сцена, тех" @@ -55829,34 +58409,27 @@ entities: rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 2 - - uid: 544 + - uid: 545 components: - type: MetaData name: ЛКП "Гримерная, сцена" - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 545 + - uid: 546 components: - type: MetaData name: ЛКП "Барменская" - type: Transform pos: 46.5,24.5 parent: 2 - - uid: 546 + - uid: 547 components: - type: MetaData name: ЛКП "Мастерская капитана" - type: Transform pos: 8.5,-10.5 parent: 2 - - uid: 547 - components: - - type: MetaData - name: ЛКП "Техпомещения 1" - - type: Transform - pos: 54.5,-14.5 - parent: 2 - uid: 548 components: - type: MetaData @@ -56230,14 +58803,6 @@ entities: pos: -19.5,43.5 parent: 2 - uid: 598 - components: - - type: MetaData - name: ЛКП "Тех. медицинского" - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,58.5 - parent: 2 - - uid: 599 components: - type: MetaData name: ЛКП "Криогеника и Клонирование" @@ -56245,7 +58810,7 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,51.5 parent: 2 - - uid: 600 + - uid: 599 components: - type: MetaData name: ЛКП "Химическая лаборатория" @@ -56253,7 +58818,7 @@ entities: rot: -1.5707963267948966 rad pos: -3.5,44.5 parent: 2 - - uid: 601 + - uid: 600 components: - type: MetaData name: ЛКП "Психдиспансер" @@ -56261,7 +58826,7 @@ entities: rot: 3.141592653589793 rad pos: -6.5,67.5 parent: 2 - - uid: 602 + - uid: 601 components: - type: MetaData name: ЛКП "Психологический кабинет" @@ -56269,7 +58834,7 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,62.5 parent: 2 - - uid: 603 + - uid: 602 components: - type: MetaData name: ЛКП "Коридор медицинского" @@ -56277,7 +58842,7 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,53.5 parent: 2 - - uid: 604 + - uid: 603 components: - type: MetaData name: ЛКП "Барбершоп" @@ -56285,7 +58850,7 @@ entities: rot: 3.141592653589793 rad pos: -4.5,33.5 parent: 2 - - uid: 605 + - uid: 604 components: - type: MetaData name: ЛКП "Двигатель Антиматерии" @@ -56293,7 +58858,7 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-40.5 parent: 2 - - uid: 606 + - uid: 605 components: - type: MetaData name: ЛКП "Сервис, тех" @@ -56301,7 +58866,7 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,28.5 parent: 2 - - uid: 607 + - uid: 606 components: - type: MetaData name: ЛКП "ИИ, Серверная" @@ -56309,14 +58874,14 @@ entities: rot: 3.141592653589793 rad pos: 1.5,10.5 parent: 2 - - uid: 608 + - uid: 607 components: - type: MetaData name: ЛКП "Детектив" - type: Transform pos: -24.5,9.5 parent: 2 - - uid: 609 + - uid: 608 components: - type: MetaData name: ЛКП "EVA" @@ -56324,7 +58889,7 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,8.5 parent: 2 - - uid: 610 + - uid: 609 components: - type: MetaData name: ЛКП "Мусоросброс" @@ -56332,7 +58897,7 @@ entities: rot: -1.5707963267948966 rad pos: 76.5,-29.5 parent: 2 - - uid: 611 + - uid: 610 components: - type: MetaData name: ЛКП "Ресепшен медицинского" @@ -56340,21 +58905,21 @@ entities: rot: 3.141592653589793 rad pos: 2.5,41.5 parent: 2 - - uid: 612 + - uid: 611 components: - type: MetaData name: ЛКП "Бриг 2" - type: Transform pos: -45.5,-1.5 parent: 2 - - uid: 613 + - uid: 612 components: - type: MetaData name: ЛКП "Бригмед" - type: Transform pos: -53.5,18.5 parent: 2 - - uid: 614 + - uid: 613 components: - type: MetaData name: ЛКП "Тюрьма" @@ -56362,14 +58927,14 @@ entities: rot: 3.141592653589793 rad pos: -34.5,9.5 parent: 2 - - uid: 615 + - uid: 614 components: - type: MetaData name: ЛКП "Офис ГСБ" - type: Transform pos: -43.5,9.5 parent: 2 - - uid: 616 + - uid: 615 components: - type: MetaData name: ЛКП "Хранилище плат" @@ -56377,30 +58942,28 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,8.5 parent: 2 - - uid: 617 + - uid: 616 components: - type: MetaData name: ЛКП "Офис смотрителя" - type: Transform pos: -36.5,-10.5 parent: 2 - - uid: 618 + - uid: 617 components: - type: MetaData name: ЛКП "Бриг 1" - type: Transform pos: -21.5,-3.5 parent: 2 - - type: Apc - hasAccess: True - - uid: 619 + - uid: 618 components: - type: MetaData name: ЛКП "Прибытие" - type: Transform pos: 77.5,-20.5 parent: 2 - - uid: 620 + - uid: 619 components: - type: MetaData name: ЛКП "Инженерный холл" @@ -56408,22 +58971,14 @@ entities: rot: 1.5707963267948966 rad pos: -11.5,-38.5 parent: 2 - - uid: 621 + - uid: 620 components: - type: MetaData name: ЛКП "КПП - Инженерный" - type: Transform pos: -5.5,-30.5 parent: 2 - - uid: 622 - components: - - type: MetaData - name: ЛКП "Церковь" - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,7.5 - parent: 2 - - uid: 623 + - uid: 621 components: - type: MetaData name: ЛКП "СМИ" @@ -56431,7 +58986,7 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,21.5 parent: 2 - - uid: 624 + - uid: 622 components: - type: MetaData name: ЛКП "Сервис, холл" @@ -56439,7 +58994,7 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,17.5 parent: 2 - - uid: 625 + - uid: 623 components: - type: MetaData name: ЛКП "Оружейная" @@ -56447,7 +59002,7 @@ entities: rot: 3.141592653589793 rad pos: -41.5,-10.5 parent: 2 - - uid: 626 + - uid: 624 components: - type: MetaData name: ЛКП "Общий коридор" @@ -56455,7 +59010,7 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-18.5 parent: 2 - - uid: 627 + - uid: 625 components: - type: MetaData name: ЛКП "Общий коридор, ГП" @@ -56463,7 +59018,7 @@ entities: rot: 3.141592653589793 rad pos: -13.5,-18.5 parent: 2 - - uid: 628 + - uid: 626 components: - type: MetaData name: ЛКП "Каток" @@ -56471,7 +59026,7 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 - - uid: 629 + - uid: 627 components: - type: MetaData name: ЛКП "Общий коридор, мостик, левое крыло" @@ -56479,7 +59034,7 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,9.5 parent: 2 - - uid: 630 + - uid: 628 components: - type: MetaData name: ЛКП "Общий склад инструментов" @@ -56487,7 +59042,7 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-11.5 parent: 2 - - uid: 631 + - uid: 629 components: - type: MetaData name: ЛКП "Общий коридор, мостик, бриг" @@ -56495,30 +59050,28 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-5.5 parent: 2 - - uid: 632 + - uid: 630 components: - type: MetaData name: ЛКП "Перма - Общий зал" - type: Transform pos: -109.5,13.5 parent: 2 - - uid: 633 + - uid: 631 components: - type: MetaData name: ЛКП "Перма - Камеры" - type: Transform pos: -109.5,23.5 parent: 2 - - uid: 634 + - uid: 632 components: - type: MetaData name: ЛКП "Перма - Уборщик, Санузлы" - type: Transform pos: -100.5,26.5 parent: 2 - - type: Apc - hasAccess: True - - uid: 635 + - uid: 633 components: - type: MetaData name: ЛКП "Библиотека" @@ -56526,7 +59079,7 @@ entities: rot: 3.141592653589793 rad pos: 1.5,17.5 parent: 2 - - uid: 636 + - uid: 634 components: - type: MetaData name: ЛКП "Зал снабжения 1" @@ -56534,7 +59087,7 @@ entities: rot: 1.5707963267948966 rad pos: 60.5,-48.5 parent: 2 - - uid: 637 + - uid: 635 components: - type: MetaData name: ЛКП "Солнечные панели" @@ -56542,15 +59095,7 @@ entities: rot: 3.141592653589793 rad pos: -55.5,62.5 parent: 2 - - uid: 638 - components: - - type: MetaData - name: ЛКП "???" - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,23.5 - parent: 2 - - uid: 639 + - uid: 636 components: - type: MetaData name: ЛКП "Перма - Охрана" @@ -56558,7 +59103,7 @@ entities: rot: -1.5707963267948966 rad pos: -94.5,4.5 parent: 2 - - uid: 640 + - uid: 637 components: - type: MetaData name: ЛКП "Перма - Прибытие" @@ -56566,7 +59111,7 @@ entities: rot: 3.141592653589793 rad pos: -103.5,-9.5 parent: 2 - - uid: 641 + - uid: 638 components: - type: MetaData name: ЛКП "Перма - Столовая @@ -56574,21 +59119,21 @@ entities: rot: 1.5707963267948966 rad pos: -118.5,8.5 parent: 2 - - uid: 642 + - uid: 639 components: - type: MetaData name: ЛКП "Серверная" - type: Transform pos: 39.5,-51.5 parent: 2 - - uid: 643 + - uid: 640 components: - type: MetaData name: ЛКП "Брифинг рум" - type: Transform pos: -22.5,-12.5 parent: 2 - - uid: 644 + - uid: 641 components: - type: MetaData name: ЛКП "КПП СБ - Прибытие/Отбытие" @@ -56596,7 +59141,7 @@ entities: rot: -1.5707963267948966 rad pos: 100.5,-10.5 parent: 2 - - uid: 645 + - uid: 642 components: - type: MetaData name: ЛКП "Операционная" @@ -56604,36 +59149,36 @@ entities: rot: 3.141592653589793 rad pos: -21.5,41.5 parent: 2 - - uid: 646 + - uid: 643 components: - type: Transform rot: -1.5707963267948966 rad pos: 103.5,-20.5 parent: 2 - - uid: 647 + - uid: 644 components: - type: Transform rot: 1.5707963267948966 rad pos: -56.5,-4.5 parent: 2 - - uid: 648 + - uid: 645 components: - type: Transform pos: -29.5,17.5 parent: 2 - - uid: 649 + - uid: 646 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,16.5 parent: 2 - - uid: 650 + - uid: 647 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,33.5 parent: 2 - - uid: 651 + - uid: 648 components: - type: MetaData name: ЛКП "Морозный салун" @@ -56641,108 +59186,144 @@ entities: rot: 3.141592653589793 rad pos: -44.5,23.5 parent: 2 - - uid: 652 + - uid: 649 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-7.5 parent: 2 - - uid: 40225 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-13.5 + parent: 2 + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-15.5 + parent: 2 + - uid: 652 + components: + - type: MetaData + name: ЛКП "Отгрузочный пункт" + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,42.5 + parent: 2 + - uid: 40621 components: - type: Transform rot: -1.5707963267948966 rad pos: 69.5,61.5 - parent: 40203 - - uid: 40226 + parent: 40599 + - uid: 40622 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,70.5 - parent: 40203 - - uid: 40227 + parent: 40599 + - uid: 40623 components: - type: Transform pos: 54.5,80.5 - parent: 40203 - - uid: 40228 + parent: 40599 + - uid: 40624 components: - type: Transform rot: 3.141592653589793 rad pos: 61.5,67.5 - parent: 40203 - - uid: 40229 + parent: 40599 + - uid: 40625 components: - type: Transform pos: 57.5,64.5 - parent: 40203 - - uid: 40230 + parent: 40599 + - uid: 40626 components: - type: Transform pos: 57.5,58.5 - parent: 40203 - - uid: 40231 + parent: 40599 + - uid: 40627 components: - type: Transform pos: 46.5,67.5 - parent: 40203 - - uid: 40232 + parent: 40599 + - uid: 40628 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,72.5 - parent: 40203 - - uid: 40233 + parent: 40599 + - uid: 40629 components: - type: Transform pos: 39.5,75.5 - parent: 40203 - - uid: 40234 + parent: 40599 + - uid: 40630 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,76.5 - parent: 40203 - - uid: 40235 + parent: 40599 + - uid: 40631 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,63.5 - parent: 40203 - - uid: 40236 + parent: 40599 + - uid: 40632 components: - type: Transform rot: -1.5707963267948966 rad pos: 60.5,47.5 - parent: 40203 - - uid: 40237 + parent: 40599 + - uid: 40633 components: - type: Transform pos: 49.5,46.5 - parent: 40203 - - uid: 40238 + parent: 40599 + - uid: 40634 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,54.5 - parent: 40203 - - uid: 40239 + parent: 40599 + - uid: 40635 components: - type: Transform rot: -1.5707963267948966 rad pos: 75.5,78.5 - parent: 40203 - - uid: 44975 + parent: 40599 + - uid: 45360 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,6.5 - parent: 44970 - - uid: 44976 + parent: 45355 + - uid: 45361 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,6.5 - parent: 44970 + parent: 45355 + - uid: 46586 + components: + - type: Transform + pos: 3.5,8.5 + parent: 46584 + - uid: 46587 + components: + - type: Transform + pos: -2.5,11.5 + parent: 46584 + - uid: 47252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 47245 - proto: APCConstructed entities: - uid: 653 @@ -56939,129 +59520,149 @@ entities: - type: Transform pos: 57.482727,26.892157 parent: 2 - - uid: 40240 + - uid: 689 + components: + - type: Transform + pos: -77.400604,18.777294 + parent: 2 + - uid: 40636 components: - type: Transform pos: 50.386623,36.89279 - parent: 40203 - - uid: 44977 + parent: 40599 + - uid: 40637 + components: + - type: Transform + pos: 63.506454,53.76056 + parent: 40599 + - uid: 40638 + components: + - type: Transform + pos: 68.06534,53.99991 + parent: 40599 + - uid: 45362 components: - type: Transform pos: -2.2441902,15.832776 - parent: 44970 - - uid: 44978 + parent: 45355 + - uid: 45363 components: - type: Transform pos: -2.3535652,16.645275 - parent: 44970 - - uid: 44979 + parent: 45355 + - uid: 45364 components: - type: Transform pos: 12.692387,5.8968797 - parent: 44970 - - uid: 44980 + parent: 45355 + - uid: 45365 components: - type: Transform pos: 14.083012,5.1000047 - parent: 44970 - - uid: 44981 + parent: 45355 + - uid: 45366 components: - type: Transform pos: 6.88141,-4.020802 - parent: 44970 - - uid: 44982 + parent: 45355 + - uid: 45367 components: - type: Transform pos: 9.019932,-10.079079 - parent: 44970 - - uid: 44983 + parent: 45355 + - uid: 45368 components: - type: Transform pos: 8.316807,-10.672829 - parent: 44970 - - uid: 44984 + parent: 45355 + - uid: 45369 components: - type: Transform pos: 2.3171563,-13.072403 - parent: 44970 - - uid: 44985 + parent: 45355 + - uid: 45370 components: - type: Transform pos: -2.5578437,-7.4253554 - parent: 44970 - - uid: 44986 + parent: 45355 + - uid: 45371 components: - type: Transform pos: -4.424971,-4.2345185 - parent: 44970 - - uid: 44987 + parent: 45355 + - uid: 45372 components: - type: Transform pos: -10.28865,1.5864313 - parent: 44970 - - uid: 44988 + parent: 45355 + - uid: 45373 components: - type: Transform pos: -8.616775,6.748292 - parent: 44970 - - uid: 44989 + parent: 45355 + - uid: 45374 components: - type: Transform pos: -7.6948996,5.732667 - parent: 44970 - - uid: 44990 + parent: 45355 + - uid: 45375 components: - type: Transform pos: -7.6948996,5.732667 - parent: 44970 - - uid: 44991 + parent: 45355 + - uid: 45376 components: - type: Transform pos: 9.463535,14.875102 - parent: 44970 + parent: 45355 - proto: Ashtray entities: - - uid: 689 + - uid: 690 components: - type: Transform pos: -29.512867,7.440476 parent: 2 - - uid: 690 + - uid: 691 components: - type: Transform pos: 7.5215197,20.590733 parent: 2 - - uid: 691 + - uid: 692 components: - type: Transform pos: 65.43536,-39.545395 parent: 2 - - uid: 692 + - uid: 693 components: - type: Transform pos: -51.235573,-2.3131247 parent: 2 - - uid: 693 + - uid: 694 components: - type: Transform pos: -22.980942,-20.267368 parent: 2 - - uid: 694 + - uid: 695 components: - type: Transform pos: -32.431232,29.453503 parent: 2 - - uid: 40241 + - uid: 696 + components: + - type: Transform + pos: -77.310265,18.523064 + parent: 2 + - uid: 40639 components: - type: Transform pos: 45.615326,26.183931 - parent: 40203 + parent: 40599 - type: Storage storedItems: - 40242: + 40640: position: 0,0 _rotation: South - 40243: + 40641: position: 1,0 _rotation: South - type: ContainerContainer @@ -57070,137629 +59671,136667 @@ entities: showEnts: False occludes: True ents: - - 40242 - - 40243 - - uid: 44992 + - 40640 + - 40641 + - uid: 45377 components: - type: Transform pos: 1.635385,4.8245482 - parent: 44970 + parent: 45355 - proto: AsimovCircuitBoard entities: - - uid: 695 + - uid: 697 components: - type: Transform pos: 0.40625,11.368078 parent: 2 - proto: AtmosDeviceFanDirectional entities: - - uid: 696 + - uid: 698 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,19.5 parent: 2 - - uid: 697 + - uid: 699 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,37.5 parent: 2 - - uid: 698 + - uid: 700 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,35.5 parent: 2 - - uid: 699 + - uid: 701 components: - type: Transform pos: 69.5,-54.5 parent: 2 - - uid: 700 + - uid: 702 components: - type: Transform pos: 68.5,-54.5 parent: 2 - - uid: 701 + - uid: 703 components: - type: Transform pos: 67.5,-54.5 parent: 2 - - uid: 702 + - uid: 704 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,3.5 parent: 2 - - uid: 703 + - uid: 705 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,3.5 parent: 2 - - uid: 704 + - uid: 706 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,11.5 parent: 2 - - uid: 705 + - uid: 707 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,11.5 parent: 2 + - uid: 47253 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 47245 - proto: AtmosFixBlockerMarker entities: - - uid: 706 + - uid: 708 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-68.5 parent: 2 - - uid: 707 + - uid: 709 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-68.5 parent: 2 - - uid: 708 + - uid: 710 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-69.5 parent: 2 - - uid: 709 + - uid: 711 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,-70.5 parent: 2 - - uid: 710 + - uid: 712 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-68.5 parent: 2 - - uid: 711 + - uid: 713 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-69.5 parent: 2 - - uid: 712 + - uid: 714 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-70.5 parent: 2 - - uid: 713 + - uid: 715 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-68.5 parent: 2 - - uid: 714 + - uid: 716 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-69.5 parent: 2 - - uid: 715 + - uid: 717 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-70.5 parent: 2 - - uid: 716 + - uid: 718 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-68.5 parent: 2 - - uid: 717 + - uid: 719 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-69.5 parent: 2 - - uid: 718 + - uid: 720 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-70.5 parent: 2 - - uid: 719 + - uid: 721 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-68.5 parent: 2 - - uid: 720 + - uid: 722 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 - - uid: 721 + - uid: 723 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-70.5 parent: 2 - - uid: 722 + - uid: 724 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-68.5 parent: 2 - - uid: 723 + - uid: 725 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 - - uid: 724 + - uid: 726 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-70.5 parent: 2 - - uid: 725 + - uid: 727 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-69.5 parent: 2 - - uid: 726 + - uid: 728 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,-70.5 parent: 2 - - uid: 727 + - uid: 729 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-68.5 parent: 2 - - uid: 728 + - uid: 730 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-69.5 parent: 2 - - uid: 729 + - uid: 731 components: - type: Transform rot: -1.5707963267948966 rad pos: -18.5,-70.5 parent: 2 - - uid: 730 + - uid: 732 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 - - uid: 731 + - uid: 733 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-69.5 parent: 2 - - uid: 732 + - uid: 734 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,-70.5 parent: 2 - - uid: 733 + - uid: 735 components: - type: Transform pos: -11.5,-68.5 parent: 2 - - uid: 734 + - uid: 736 components: - type: Transform pos: -11.5,-69.5 parent: 2 - - uid: 735 + - uid: 737 components: - type: Transform pos: -11.5,-70.5 parent: 2 - - uid: 736 + - uid: 738 components: - type: Transform pos: -10.5,-68.5 parent: 2 - - uid: 737 + - uid: 739 components: - type: Transform pos: -10.5,-69.5 parent: 2 - - uid: 738 + - uid: 740 components: - type: Transform pos: -10.5,-70.5 parent: 2 - - uid: 739 + - uid: 741 components: - type: Transform pos: -9.5,-68.5 parent: 2 - - uid: 740 + - uid: 742 components: - type: Transform pos: -9.5,-69.5 parent: 2 - - uid: 741 + - uid: 743 components: - type: Transform pos: -9.5,-70.5 parent: 2 - - uid: 742 + - uid: 744 components: - type: Transform pos: -7.5,-68.5 parent: 2 - - uid: 743 + - uid: 745 components: - type: Transform pos: -7.5,-69.5 parent: 2 - - uid: 744 + - uid: 746 components: - type: Transform pos: -7.5,-70.5 parent: 2 - - uid: 745 + - uid: 747 components: - type: Transform pos: -6.5,-68.5 parent: 2 - - uid: 746 + - uid: 748 components: - type: Transform pos: -6.5,-69.5 parent: 2 - - uid: 747 + - uid: 749 components: - type: Transform pos: -6.5,-70.5 parent: 2 - - uid: 748 + - uid: 750 components: - type: Transform pos: -5.5,-68.5 parent: 2 - - uid: 749 + - uid: 751 components: - type: Transform pos: -5.5,-69.5 parent: 2 - - uid: 750 + - uid: 752 components: - type: Transform pos: -5.5,-70.5 parent: 2 - - uid: 751 + - uid: 753 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,47.5 parent: 2 - - uid: 752 + - uid: 754 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,0.5 parent: 2 - - uid: 753 + - uid: 755 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-48.5 parent: 2 - - uid: 754 + - uid: 756 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-60.5 parent: 2 - - uid: 755 + - uid: 757 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 - - uid: 756 + - uid: 758 components: - type: Transform pos: 12.5,-37.5 parent: 2 - - uid: 757 + - uid: 759 components: - type: Transform pos: -97.5,22.5 parent: 2 - - uid: 758 + - uid: 760 components: - type: Transform pos: -17.5,18.5 parent: 2 - - uid: 759 + - uid: 761 components: - type: Transform pos: -28.5,-48.5 parent: 2 - - uid: 760 + - uid: 762 components: - type: Transform pos: -27.5,25.5 parent: 2 - - uid: 40244 + - uid: 40642 components: - type: Transform pos: 36.5,56.5 - parent: 40203 + parent: 40599 - proto: AtmosFixFreezerMarker entities: - - uid: 761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,68.5 - parent: 2 - - uid: 762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,64.5 - parent: 2 - uid: 763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,64.5 + pos: -89.5,27.5 parent: 2 - uid: 764 components: - type: Transform - pos: -87.5,41.5 + rot: 1.5707963267948966 rad + pos: -20.5,68.5 parent: 2 - uid: 765 components: - type: Transform - pos: -102.5,48.5 + rot: 1.5707963267948966 rad + pos: -21.5,64.5 parent: 2 - uid: 766 components: - type: Transform - pos: -83.5,42.5 + rot: 1.5707963267948966 rad + pos: -22.5,64.5 parent: 2 - uid: 767 components: - type: Transform - pos: -80.5,44.5 + pos: -87.5,41.5 parent: 2 - uid: 768 components: - type: Transform - pos: -31.5,-28.5 + pos: -83.5,42.5 parent: 2 - uid: 769 components: - type: Transform - pos: -30.5,-26.5 + pos: -80.5,44.5 parent: 2 - uid: 770 components: - type: Transform - pos: 39.5,52.5 + pos: -31.5,-28.5 parent: 2 - uid: 771 components: - type: Transform - pos: 41.5,54.5 + pos: -30.5,-26.5 parent: 2 - uid: 772 components: - type: Transform - pos: 40.5,53.5 + pos: -52.5,-29.5 parent: 2 - uid: 773 components: - type: Transform - pos: 40.5,54.5 + pos: -52.5,-30.5 parent: 2 - uid: 774 components: - type: Transform - pos: 41.5,53.5 + pos: 28.5,39.5 parent: 2 - uid: 775 components: - type: Transform - pos: 41.5,52.5 + pos: -51.5,-30.5 parent: 2 - uid: 776 components: - type: Transform - pos: 39.5,54.5 + pos: -50.5,-29.5 parent: 2 - uid: 777 components: - type: Transform - pos: 39.5,51.5 + pos: -50.5,-30.5 parent: 2 - uid: 778 components: - type: Transform - pos: 40.5,52.5 + pos: -50.5,-31.5 parent: 2 - uid: 779 components: - type: Transform - pos: 40.5,51.5 + pos: 28.5,38.5 parent: 2 - uid: 780 components: - type: Transform - pos: 39.5,53.5 + pos: 28.5,37.5 parent: 2 - uid: 781 components: - type: Transform - pos: 42.5,53.5 + pos: 28.5,36.5 parent: 2 - uid: 782 components: - type: Transform - pos: 42.5,52.5 + pos: 29.5,39.5 parent: 2 - uid: 783 components: - type: Transform - pos: 42.5,54.5 + pos: 29.5,38.5 parent: 2 - uid: 784 components: - type: Transform - pos: 41.5,51.5 + pos: 29.5,37.5 parent: 2 - uid: 785 components: - type: Transform - pos: 42.5,51.5 + pos: 29.5,36.5 parent: 2 - uid: 786 components: - type: Transform - pos: 43.5,54.5 + pos: 30.5,39.5 parent: 2 - uid: 787 components: - type: Transform - pos: 43.5,53.5 + pos: 30.5,38.5 parent: 2 - uid: 788 components: - type: Transform - pos: 43.5,52.5 + pos: 30.5,37.5 parent: 2 - uid: 789 components: - type: Transform - pos: 43.5,51.5 + pos: 30.5,36.5 parent: 2 - uid: 790 components: - type: Transform - pos: 41.5,50.5 + pos: 31.5,38.5 parent: 2 - uid: 791 components: - type: Transform - pos: 39.5,49.5 + pos: 31.5,37.5 parent: 2 - uid: 792 components: - type: Transform - pos: 39.5,48.5 + pos: 31.5,36.5 parent: 2 - uid: 793 components: - type: Transform - pos: 40.5,49.5 + pos: 32.5,38.5 parent: 2 - uid: 794 components: - type: Transform - pos: 40.5,48.5 + pos: 32.5,37.5 parent: 2 - uid: 795 components: - type: Transform - pos: 41.5,49.5 + pos: 32.5,36.5 parent: 2 - uid: 796 components: - type: Transform - pos: 41.5,48.5 + pos: 33.5,38.5 parent: 2 - uid: 797 components: - type: Transform - pos: 42.5,49.5 + pos: 33.5,37.5 parent: 2 - uid: 798 components: - type: Transform - pos: 42.5,48.5 + pos: 33.5,36.5 parent: 2 - uid: 799 components: - type: Transform - pos: 43.5,49.5 + rot: 1.5707963267948966 rad + pos: -14.5,31.5 parent: 2 - uid: 800 components: - type: Transform - pos: 43.5,48.5 + rot: 1.5707963267948966 rad + pos: -15.5,31.5 parent: 2 - uid: 801 components: - type: Transform - pos: 41.5,47.5 + rot: 1.5707963267948966 rad + pos: 35.5,43.5 parent: 2 - uid: 802 components: - type: Transform - pos: -52.5,-29.5 + rot: 1.5707963267948966 rad + pos: 35.5,41.5 parent: 2 - uid: 803 components: - type: Transform - pos: -52.5,-30.5 + rot: 1.5707963267948966 rad + pos: 32.5,14.5 parent: 2 - uid: 804 components: - type: Transform - pos: 28.5,39.5 + pos: 100.5,-21.5 parent: 2 - uid: 805 components: - type: Transform - pos: -51.5,-30.5 + pos: 102.5,-21.5 parent: 2 - uid: 806 components: - type: Transform - pos: -50.5,-29.5 + pos: -133.5,19.5 parent: 2 - uid: 807 components: - type: Transform - pos: -50.5,-30.5 + rot: 1.5707963267948966 rad + pos: 33.5,14.5 parent: 2 - uid: 808 components: - type: Transform - pos: -50.5,-31.5 + rot: 1.5707963267948966 rad + pos: 33.5,13.5 parent: 2 - uid: 809 components: - type: Transform - pos: 28.5,38.5 + rot: 1.5707963267948966 rad + pos: 32.5,13.5 parent: 2 - uid: 810 components: - type: Transform - pos: 28.5,37.5 + rot: 1.5707963267948966 rad + pos: 32.5,9.5 parent: 2 - uid: 811 components: - type: Transform - pos: 28.5,36.5 + rot: 1.5707963267948966 rad + pos: 33.5,9.5 parent: 2 - uid: 812 components: - type: Transform - pos: 29.5,39.5 + rot: 1.5707963267948966 rad + pos: 33.5,8.5 parent: 2 - uid: 813 components: - type: Transform - pos: 29.5,38.5 + rot: 1.5707963267948966 rad + pos: 32.5,8.5 parent: 2 - uid: 814 components: - type: Transform - pos: 29.5,37.5 + rot: 1.5707963267948966 rad + pos: 32.5,4.5 parent: 2 - uid: 815 components: - type: Transform - pos: 29.5,36.5 + rot: 1.5707963267948966 rad + pos: 32.5,3.5 parent: 2 - uid: 816 components: - type: Transform - pos: 30.5,39.5 + rot: 1.5707963267948966 rad + pos: 33.5,4.5 parent: 2 - uid: 817 components: - type: Transform - pos: 30.5,38.5 + rot: 1.5707963267948966 rad + pos: 33.5,3.5 parent: 2 - uid: 818 components: - type: Transform - pos: 30.5,37.5 + rot: 1.5707963267948966 rad + pos: 33.5,2.5 parent: 2 - uid: 819 components: - type: Transform - pos: 30.5,36.5 + rot: 1.5707963267948966 rad + pos: 34.5,4.5 parent: 2 - uid: 820 components: - type: Transform - pos: 31.5,38.5 + rot: 1.5707963267948966 rad + pos: 34.5,3.5 parent: 2 - uid: 821 components: - type: Transform - pos: 31.5,37.5 + rot: 1.5707963267948966 rad + pos: 34.5,2.5 parent: 2 - uid: 822 components: - type: Transform - pos: 31.5,36.5 + rot: 1.5707963267948966 rad + pos: 32.5,2.5 parent: 2 - uid: 823 components: - type: Transform - pos: 32.5,38.5 + rot: 1.5707963267948966 rad + pos: 38.5,6.5 parent: 2 - uid: 824 components: - type: Transform - pos: 32.5,37.5 + rot: 1.5707963267948966 rad + pos: 39.5,6.5 parent: 2 - uid: 825 components: - type: Transform - pos: 32.5,36.5 + rot: 1.5707963267948966 rad + pos: 39.5,5.5 parent: 2 - uid: 826 components: - type: Transform - pos: 33.5,38.5 + rot: 1.5707963267948966 rad + pos: 38.5,5.5 parent: 2 - uid: 827 components: - type: Transform - pos: 33.5,37.5 + rot: 1.5707963267948966 rad + pos: 43.5,3.5 parent: 2 - uid: 828 components: - type: Transform - pos: 33.5,36.5 + rot: 1.5707963267948966 rad + pos: 43.5,2.5 parent: 2 - uid: 829 components: - type: Transform - pos: -57.5,-28.5 + rot: 1.5707963267948966 rad + pos: 43.5,1.5 parent: 2 - uid: 830 components: - type: Transform - pos: -57.5,-29.5 + rot: 1.5707963267948966 rad + pos: 43.5,0.5 parent: 2 - uid: 831 components: - type: Transform - pos: -57.5,-30.5 + rot: 1.5707963267948966 rad + pos: 43.5,-1.5 parent: 2 - uid: 832 components: - type: Transform - pos: -57.5,-31.5 + rot: 1.5707963267948966 rad + pos: 44.5,3.5 parent: 2 - uid: 833 components: - type: Transform - pos: -56.5,-28.5 + rot: 1.5707963267948966 rad + pos: 43.5,-0.5 parent: 2 - uid: 834 components: - type: Transform - pos: -56.5,-29.5 + rot: 1.5707963267948966 rad + pos: 44.5,1.5 parent: 2 - uid: 835 components: - type: Transform - pos: -56.5,-30.5 + rot: 1.5707963267948966 rad + pos: 44.5,2.5 parent: 2 - uid: 836 components: - type: Transform - pos: -56.5,-31.5 + rot: 1.5707963267948966 rad + pos: 44.5,-1.5 parent: 2 - uid: 837 components: - type: Transform - pos: -55.5,-28.5 + rot: 1.5707963267948966 rad + pos: 44.5,0.5 parent: 2 - uid: 838 components: - type: Transform - pos: -55.5,-29.5 + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 parent: 2 - uid: 839 components: - type: Transform - pos: -55.5,-30.5 + rot: 1.5707963267948966 rad + pos: 45.5,2.5 parent: 2 - uid: 840 components: - type: Transform - pos: -55.5,-31.5 + rot: 1.5707963267948966 rad + pos: 45.5,1.5 parent: 2 - uid: 841 components: - type: Transform - pos: -56.5,-32.5 + rot: 1.5707963267948966 rad + pos: 45.5,0.5 parent: 2 - uid: 842 components: - type: Transform - pos: -55.5,-32.5 + rot: 1.5707963267948966 rad + pos: 45.5,3.5 parent: 2 - uid: 843 components: - type: Transform - pos: -54.5,-32.5 + rot: 1.5707963267948966 rad + pos: 45.5,-1.5 parent: 2 - uid: 844 components: - type: Transform - pos: -54.5,-29.5 + rot: 1.5707963267948966 rad + pos: 46.5,2.5 parent: 2 - uid: 845 components: - type: Transform - pos: -54.5,-28.5 + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 parent: 2 - uid: 846 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,31.5 + pos: 46.5,3.5 parent: 2 - uid: 847 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,31.5 + pos: 46.5,0.5 parent: 2 - uid: 848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,43.5 + pos: 46.5,1.5 parent: 2 - uid: 849 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,41.5 + pos: 46.5,-0.5 parent: 2 - uid: 850 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,14.5 + pos: 46.5,-1.5 parent: 2 - uid: 851 components: - type: Transform - pos: 100.5,-21.5 + rot: 1.5707963267948966 rad + pos: 51.5,2.5 parent: 2 - uid: 852 components: - type: Transform - pos: 102.5,-21.5 + rot: 1.5707963267948966 rad + pos: 51.5,1.5 parent: 2 - uid: 853 components: - type: Transform - pos: -133.5,19.5 + rot: 1.5707963267948966 rad + pos: 51.5,0.5 parent: 2 - uid: 854 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,14.5 + pos: 51.5,-0.5 parent: 2 - uid: 855 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,13.5 + pos: 52.5,2.5 parent: 2 - uid: 856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,13.5 + pos: 52.5,1.5 parent: 2 - uid: 857 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,9.5 + pos: 52.5,0.5 parent: 2 - uid: 858 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,9.5 + pos: 52.5,-0.5 parent: 2 - uid: 859 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,8.5 + pos: 55.5,2.5 parent: 2 - uid: 860 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,8.5 + pos: 55.5,0.5 parent: 2 - uid: 861 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,4.5 + pos: 55.5,-0.5 parent: 2 - uid: 862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,3.5 + pos: 56.5,2.5 parent: 2 - uid: 863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,4.5 + pos: 55.5,1.5 parent: 2 - uid: 864 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,3.5 + pos: 56.5,1.5 parent: 2 - uid: 865 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,2.5 + pos: 56.5,-0.5 parent: 2 - uid: 866 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,4.5 + pos: 56.5,0.5 parent: 2 - uid: 867 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,3.5 + pos: 40.5,-7.5 parent: 2 - uid: 868 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,2.5 + pos: 40.5,-8.5 parent: 2 - uid: 869 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,2.5 + pos: 41.5,-8.5 parent: 2 - uid: 870 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,6.5 + pos: 41.5,-7.5 parent: 2 - uid: 871 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,6.5 + pos: 38.5,-14.5 parent: 2 - uid: 872 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,5.5 + pos: 38.5,-15.5 parent: 2 - uid: 873 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,5.5 + pos: 38.5,-16.5 parent: 2 - uid: 874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,3.5 + pos: 38.5,-17.5 parent: 2 - uid: 875 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,2.5 + pos: 39.5,-14.5 parent: 2 - uid: 876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,1.5 + pos: 39.5,-15.5 parent: 2 - uid: 877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,0.5 + pos: 39.5,-17.5 parent: 2 - uid: 878 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-1.5 + pos: 39.5,-16.5 parent: 2 - uid: 879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,3.5 + pos: 28.5,-17.5 parent: 2 - uid: 880 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-0.5 + pos: 28.5,-19.5 parent: 2 - uid: 881 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,1.5 + pos: 29.5,-17.5 parent: 2 - uid: 882 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,2.5 + pos: 29.5,-18.5 parent: 2 - uid: 883 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-1.5 + pos: 29.5,-19.5 parent: 2 - uid: 884 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,0.5 + pos: 30.5,-17.5 parent: 2 - uid: 885 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 30.5,-18.5 parent: 2 - uid: 886 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,2.5 + pos: 30.5,-19.5 parent: 2 - uid: 887 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,1.5 + pos: 28.5,-18.5 parent: 2 - uid: 888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,0.5 + pos: 30.5,-10.5 parent: 2 - uid: 889 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,3.5 + pos: 28.5,1.5 parent: 2 - uid: 890 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-1.5 + pos: 28.5,0.5 parent: 2 - uid: 891 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,2.5 + pos: 29.5,1.5 parent: 2 - uid: 892 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-0.5 + pos: 29.5,0.5 parent: 2 - uid: 893 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,3.5 + pos: 28.5,-0.5 parent: 2 - uid: 894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,0.5 + pos: 29.5,-0.5 parent: 2 - uid: 895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,1.5 + pos: 30.5,-4.5 parent: 2 - uid: 896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 + pos: -131.5,19.5 parent: 2 - uid: 897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-1.5 + pos: 36.5,-20.5 parent: 2 - uid: 898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,2.5 + pos: 36.5,-21.5 parent: 2 - uid: 899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,1.5 + pos: 37.5,-21.5 parent: 2 - uid: 900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,0.5 + pos: 38.5,-20.5 parent: 2 - uid: 901 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-0.5 + pos: 38.5,-21.5 parent: 2 - uid: 902 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,2.5 + pos: 37.5,-20.5 parent: 2 - uid: 903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,1.5 + pos: 26.5,-23.5 parent: 2 - uid: 904 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,0.5 + pos: 27.5,-23.5 parent: 2 - uid: 905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-0.5 + pos: 26.5,-24.5 parent: 2 - uid: 906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,2.5 + pos: 28.5,-23.5 parent: 2 - uid: 907 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,0.5 + pos: 27.5,-24.5 parent: 2 - uid: 908 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-0.5 + pos: 28.5,-24.5 parent: 2 - uid: 909 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,2.5 + pos: 10.5,-20.5 parent: 2 - uid: 910 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,1.5 + pos: 10.5,-22.5 parent: 2 - uid: 911 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,1.5 + pos: 10.5,-23.5 parent: 2 - uid: 912 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-0.5 + pos: 11.5,-20.5 parent: 2 - uid: 913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,0.5 + pos: 11.5,-21.5 parent: 2 - uid: 914 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-7.5 + pos: 11.5,-22.5 parent: 2 - uid: 915 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-8.5 + pos: 11.5,-23.5 parent: 2 - uid: 916 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-8.5 + pos: 10.5,-21.5 parent: 2 - uid: 917 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-7.5 + pos: 12.5,-22.5 parent: 2 - uid: 918 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-14.5 + pos: 12.5,-23.5 parent: 2 - uid: 919 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-15.5 + pos: 12.5,-21.5 parent: 2 - uid: 920 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-16.5 + pos: 13.5,-20.5 parent: 2 - uid: 921 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-17.5 + pos: 13.5,-21.5 parent: 2 - uid: 922 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-14.5 + pos: 12.5,-20.5 parent: 2 - uid: 923 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-15.5 + pos: 13.5,-22.5 parent: 2 - uid: 924 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-17.5 + pos: 13.5,-23.5 parent: 2 - uid: 925 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-16.5 + pos: 14.5,-20.5 parent: 2 - uid: 926 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-17.5 + pos: 14.5,-21.5 parent: 2 - uid: 927 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-19.5 + pos: 14.5,-23.5 parent: 2 - uid: 928 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-17.5 + pos: 14.5,-22.5 parent: 2 - uid: 929 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-18.5 + pos: 15.5,-20.5 parent: 2 - uid: 930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-19.5 + pos: 15.5,-21.5 parent: 2 - uid: 931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-17.5 + pos: 15.5,-22.5 parent: 2 - uid: 932 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-18.5 + pos: 15.5,-23.5 parent: 2 - uid: 933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-19.5 + pos: 6.5,-27.5 parent: 2 - uid: 934 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-18.5 + pos: 7.5,-27.5 parent: 2 - uid: 935 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-10.5 + pos: 7.5,-28.5 parent: 2 - uid: 936 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,1.5 + pos: 6.5,-28.5 parent: 2 - uid: 937 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,0.5 + pos: 14.5,-27.5 parent: 2 - uid: 938 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,1.5 + pos: 13.5,-26.5 parent: 2 - uid: 939 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,0.5 + pos: 14.5,-26.5 parent: 2 - uid: 940 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-0.5 + pos: 19.5,-22.5 parent: 2 - uid: 941 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-0.5 + pos: 13.5,-27.5 parent: 2 - uid: 942 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-4.5 + pos: 20.5,-22.5 parent: 2 - uid: 943 components: - type: Transform - pos: -131.5,19.5 + rot: 1.5707963267948966 rad + pos: 20.5,-23.5 parent: 2 - uid: 944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-20.5 + pos: 21.5,-22.5 parent: 2 - uid: 945 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-21.5 + pos: 19.5,-23.5 parent: 2 - uid: 946 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-21.5 + pos: 21.5,-23.5 parent: 2 - uid: 947 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-20.5 + pos: 31.5,-21.5 parent: 2 - uid: 948 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-21.5 + pos: 32.5,-21.5 parent: 2 - uid: 949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-20.5 + pos: 31.5,-22.5 parent: 2 - uid: 950 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-23.5 + pos: 32.5,-22.5 parent: 2 - uid: 951 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-23.5 + pos: 41.5,-23.5 parent: 2 - uid: 952 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-24.5 + pos: 42.5,-23.5 parent: 2 - uid: 953 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-23.5 + pos: 42.5,-22.5 parent: 2 - uid: 954 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-24.5 + pos: 41.5,-22.5 parent: 2 - uid: 955 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-24.5 + pos: 0.5,27.5 parent: 2 - uid: 956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-20.5 + pos: 0.5,26.5 parent: 2 - uid: 957 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-22.5 + pos: 1.5,27.5 parent: 2 - uid: 958 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-23.5 + pos: 1.5,26.5 parent: 2 - uid: 959 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-20.5 + pos: 1.5,25.5 parent: 2 - uid: 960 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-21.5 + pos: 2.5,27.5 parent: 2 - uid: 961 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-22.5 + pos: 2.5,26.5 parent: 2 - uid: 962 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-23.5 + pos: 2.5,25.5 parent: 2 - uid: 963 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-21.5 + pos: 0.5,25.5 parent: 2 - uid: 964 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-22.5 + pos: -1.5,33.5 parent: 2 - uid: 965 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-23.5 + pos: -1.5,32.5 parent: 2 - uid: 966 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-21.5 + pos: -1.5,31.5 parent: 2 - uid: 967 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-20.5 + pos: -12.5,22.5 parent: 2 - uid: 968 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-21.5 + pos: -11.5,22.5 parent: 2 - uid: 969 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-20.5 + pos: -11.5,23.5 parent: 2 - uid: 970 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-22.5 + pos: -12.5,23.5 parent: 2 - uid: 971 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-23.5 + pos: -10.5,28.5 parent: 2 - uid: 972 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-20.5 + pos: -9.5,28.5 parent: 2 - uid: 973 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-21.5 + pos: -9.5,27.5 parent: 2 - uid: 974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-23.5 + pos: -10.5,27.5 parent: 2 - uid: 975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-22.5 + pos: -16.5,33.5 parent: 2 - uid: 976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-20.5 + pos: -15.5,32.5 parent: 2 - uid: 977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-21.5 + pos: -16.5,32.5 parent: 2 - uid: 978 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-22.5 + pos: -15.5,33.5 parent: 2 - uid: 979 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-23.5 + pos: -20.5,38.5 parent: 2 - uid: 980 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-27.5 + pos: -20.5,37.5 parent: 2 - uid: 981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-27.5 + pos: -19.5,34.5 parent: 2 - uid: 982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-28.5 + pos: -14.5,32.5 parent: 2 - uid: 983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-28.5 + pos: -8.5,28.5 parent: 2 - uid: 984 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-27.5 + pos: -7.5,28.5 parent: 2 - uid: 985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-26.5 + pos: -7.5,27.5 parent: 2 - uid: 986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-26.5 + pos: -8.5,27.5 parent: 2 - uid: 987 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-22.5 + pos: -10.5,29.5 parent: 2 - uid: 988 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-27.5 + pos: -9.5,29.5 parent: 2 - uid: 989 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-22.5 + pos: -8.5,29.5 parent: 2 - uid: 990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-23.5 + pos: -7.5,29.5 parent: 2 - uid: 991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-22.5 + pos: -3.5,28.5 parent: 2 - uid: 992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-23.5 + pos: -2.5,28.5 parent: 2 - uid: 993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-23.5 + pos: -3.5,27.5 parent: 2 - uid: 994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-21.5 + pos: -2.5,27.5 parent: 2 - uid: 995 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-21.5 + pos: 35.5,-30.5 parent: 2 - uid: 996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-22.5 + pos: 34.5,-31.5 parent: 2 - uid: 997 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-22.5 + pos: 35.5,-31.5 parent: 2 - uid: 998 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-23.5 + pos: 39.5,-28.5 parent: 2 - uid: 999 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-23.5 + pos: 40.5,-28.5 parent: 2 - uid: 1000 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-22.5 + pos: 40.5,-29.5 parent: 2 - uid: 1001 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-22.5 + pos: 41.5,-28.5 parent: 2 - uid: 1002 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,27.5 + pos: 41.5,-29.5 parent: 2 - uid: 1003 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,26.5 + pos: 39.5,-29.5 parent: 2 - uid: 1004 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,27.5 + pos: 42.5,-28.5 parent: 2 - uid: 1005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,26.5 + pos: 42.5,-29.5 parent: 2 - uid: 1006 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,25.5 + pos: 47.5,-29.5 parent: 2 - uid: 1007 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,27.5 + pos: 47.5,-30.5 parent: 2 - uid: 1008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,26.5 + pos: 46.5,-30.5 parent: 2 - uid: 1009 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,25.5 + pos: 46.5,-29.5 parent: 2 - uid: 1010 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,25.5 + pos: 48.5,-34.5 parent: 2 - uid: 1011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,33.5 + pos: 49.5,-34.5 parent: 2 - uid: 1012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,32.5 + pos: 49.5,-33.5 parent: 2 - uid: 1013 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,31.5 + pos: 51.5,-28.5 parent: 2 - uid: 1014 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,22.5 + pos: 51.5,-30.5 parent: 2 - uid: 1015 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,22.5 + pos: 51.5,-29.5 parent: 2 - uid: 1016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,23.5 + pos: 51.5,-37.5 parent: 2 - uid: 1017 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,23.5 + pos: 52.5,-37.5 parent: 2 - uid: 1018 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,28.5 + pos: 52.5,-36.5 parent: 2 - uid: 1019 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,28.5 + pos: 51.5,-36.5 parent: 2 - uid: 1020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,27.5 + pos: 78.5,-32.5 parent: 2 - uid: 1021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,27.5 + pos: 78.5,-30.5 parent: 2 - uid: 1022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,33.5 + pos: 78.5,-29.5 parent: 2 - uid: 1023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,32.5 + pos: 78.5,-28.5 parent: 2 - uid: 1024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,32.5 + pos: 77.5,-32.5 parent: 2 - uid: 1025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 + pos: 79.5,-28.5 parent: 2 - uid: 1026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,38.5 + pos: 78.5,-31.5 parent: 2 - uid: 1027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,37.5 + pos: 77.5,-33.5 parent: 2 - uid: 1028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,34.5 + pos: 79.5,-29.5 parent: 2 - uid: 1029 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,32.5 + pos: 90.5,-36.5 parent: 2 - uid: 1030 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,28.5 + pos: 91.5,-36.5 parent: 2 - uid: 1031 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,28.5 + pos: 91.5,-37.5 parent: 2 - uid: 1032 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,27.5 + pos: 90.5,-37.5 parent: 2 - uid: 1033 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,27.5 + pos: 94.5,-36.5 parent: 2 - uid: 1034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,29.5 + pos: 95.5,-36.5 parent: 2 - uid: 1035 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,29.5 + pos: 95.5,-37.5 parent: 2 - uid: 1036 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,29.5 + pos: 94.5,-37.5 parent: 2 - uid: 1037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,29.5 + pos: 93.5,-32.5 parent: 2 - uid: 1038 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,28.5 + pos: 94.5,-32.5 parent: 2 - uid: 1039 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,28.5 + pos: 94.5,-33.5 parent: 2 - uid: 1040 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,27.5 + pos: 93.5,-33.5 parent: 2 - uid: 1041 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,27.5 + pos: 92.5,-43.5 parent: 2 - uid: 1042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-30.5 + pos: 93.5,-43.5 parent: 2 - uid: 1043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + pos: 93.5,-42.5 parent: 2 - uid: 1044 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-31.5 + pos: 92.5,-42.5 parent: 2 - uid: 1045 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-28.5 + pos: 88.5,-44.5 parent: 2 - uid: 1046 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-28.5 + pos: 89.5,-44.5 parent: 2 - uid: 1047 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-29.5 + pos: 89.5,-43.5 parent: 2 - uid: 1048 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-28.5 + pos: 88.5,-43.5 parent: 2 - uid: 1049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-29.5 + pos: 101.5,-36.5 parent: 2 - uid: 1050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-29.5 + pos: 101.5,-35.5 parent: 2 - uid: 1051 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-28.5 + pos: 102.5,-36.5 parent: 2 - uid: 1052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-29.5 + pos: 102.5,-35.5 parent: 2 - uid: 1053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-29.5 + pos: 102.5,-30.5 parent: 2 - uid: 1054 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-30.5 + pos: 102.5,-32.5 parent: 2 - uid: 1055 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-30.5 + pos: 101.5,-30.5 parent: 2 - uid: 1056 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-29.5 + pos: 101.5,-31.5 parent: 2 - uid: 1057 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-34.5 + pos: 102.5,-31.5 parent: 2 - uid: 1058 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-34.5 + pos: 101.5,-32.5 parent: 2 - uid: 1059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-33.5 + pos: 101.5,-24.5 parent: 2 - uid: 1060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-28.5 + pos: 101.5,-26.5 parent: 2 - uid: 1061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-30.5 + pos: 102.5,-24.5 parent: 2 - uid: 1062 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-29.5 + pos: 102.5,-25.5 parent: 2 - uid: 1063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-37.5 + pos: 101.5,-25.5 parent: 2 - uid: 1064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-37.5 + pos: 102.5,-26.5 parent: 2 - uid: 1065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-36.5 + pos: 100.5,-24.5 parent: 2 - uid: 1066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,-36.5 + pos: 100.5,-26.5 parent: 2 - uid: 1067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-30.5 + pos: 100.5,-25.5 parent: 2 - uid: 1068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-32.5 + pos: 96.5,-21.5 parent: 2 - uid: 1069 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-33.5 + pos: 96.5,-22.5 parent: 2 - uid: 1070 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-34.5 + pos: 97.5,-22.5 parent: 2 - uid: 1071 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-30.5 + pos: 97.5,-21.5 parent: 2 - uid: 1072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-31.5 + pos: 90.5,-22.5 parent: 2 - uid: 1073 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-32.5 + pos: 91.5,-22.5 parent: 2 - uid: 1074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-31.5 + pos: 91.5,-21.5 parent: 2 - uid: 1075 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-33.5 + pos: 90.5,-21.5 parent: 2 - uid: 1076 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-34.5 + pos: 92.5,-18.5 parent: 2 - uid: 1077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-31.5 + pos: 93.5,-18.5 parent: 2 - uid: 1078 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-33.5 + pos: 94.5,-14.5 parent: 2 - uid: 1079 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-34.5 + pos: 95.5,-14.5 parent: 2 - uid: 1080 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-30.5 + pos: 98.5,-14.5 parent: 2 - uid: 1081 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-32.5 + pos: 98.5,-15.5 parent: 2 - uid: 1082 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-36.5 + pos: 99.5,-15.5 parent: 2 - uid: 1083 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,-36.5 + pos: 99.5,-14.5 parent: 2 - uid: 1084 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,-37.5 + pos: 86.5,-2.5 parent: 2 - uid: 1085 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-37.5 + pos: 101.5,-10.5 parent: 2 - uid: 1086 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,-36.5 + pos: 101.5,-8.5 parent: 2 - uid: 1087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,-36.5 + pos: 101.5,-9.5 parent: 2 - uid: 1088 components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,-37.5 + pos: 74.5,-7.5 parent: 2 - uid: 1089 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,-37.5 + pos: 75.5,-7.5 parent: 2 - uid: 1090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-32.5 + pos: 75.5,-8.5 parent: 2 - uid: 1091 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,-32.5 + pos: 74.5,-8.5 parent: 2 - uid: 1092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,-33.5 + pos: 81.5,-7.5 parent: 2 - uid: 1093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-33.5 + pos: 81.5,-8.5 parent: 2 - uid: 1094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,-43.5 + pos: 82.5,-8.5 parent: 2 - uid: 1095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-43.5 + pos: 83.5,-7.5 parent: 2 - uid: 1096 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-42.5 + pos: 83.5,-8.5 parent: 2 - uid: 1097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,-42.5 + pos: 82.5,-7.5 parent: 2 - uid: 1098 components: - type: Transform rot: 1.5707963267948966 rad - pos: 88.5,-44.5 + pos: 86.5,-0.5 parent: 2 - uid: 1099 components: - type: Transform rot: 1.5707963267948966 rad - pos: 89.5,-44.5 + pos: 87.5,-2.5 parent: 2 - uid: 1100 components: - type: Transform rot: 1.5707963267948966 rad - pos: 89.5,-43.5 + pos: 87.5,-1.5 parent: 2 - uid: 1101 components: - type: Transform rot: 1.5707963267948966 rad - pos: 88.5,-43.5 + pos: 86.5,-1.5 parent: 2 - uid: 1102 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-36.5 + pos: 87.5,-0.5 parent: 2 - uid: 1103 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-35.5 + pos: 80.5,-1.5 parent: 2 - uid: 1104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-36.5 + pos: 81.5,-1.5 parent: 2 - uid: 1105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-35.5 + pos: 82.5,-1.5 parent: 2 - uid: 1106 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-30.5 + pos: 88.5,2.5 parent: 2 - uid: 1107 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-32.5 + pos: 88.5,4.5 parent: 2 - uid: 1108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-30.5 + pos: 88.5,3.5 parent: 2 - uid: 1109 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-31.5 + pos: 92.5,3.5 parent: 2 - uid: 1110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-31.5 + pos: 94.5,3.5 parent: 2 - uid: 1111 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-32.5 + pos: 95.5,3.5 parent: 2 - uid: 1112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-24.5 + pos: 93.5,3.5 parent: 2 - uid: 1113 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-26.5 + pos: 97.5,5.5 parent: 2 - uid: 1114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-24.5 + pos: 97.5,4.5 parent: 2 - uid: 1115 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-25.5 + pos: 97.5,2.5 parent: 2 - uid: 1116 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-25.5 + pos: 97.5,1.5 parent: 2 - uid: 1117 components: - type: Transform rot: 1.5707963267948966 rad - pos: 102.5,-26.5 + pos: 98.5,5.5 parent: 2 - uid: 1118 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,-24.5 + pos: 98.5,4.5 parent: 2 - uid: 1119 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,-26.5 + pos: 97.5,3.5 parent: 2 - uid: 1120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,-25.5 + pos: 98.5,3.5 parent: 2 - uid: 1121 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-21.5 + pos: 98.5,1.5 parent: 2 - uid: 1122 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-22.5 + pos: 98.5,2.5 parent: 2 - uid: 1123 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-22.5 + pos: 99.5,4.5 parent: 2 - uid: 1124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-21.5 + pos: 99.5,3.5 parent: 2 - uid: 1125 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-22.5 + pos: 99.5,2.5 parent: 2 - uid: 1126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,-22.5 + pos: 99.5,1.5 parent: 2 - uid: 1127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,-21.5 + pos: 100.5,5.5 parent: 2 - uid: 1128 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-21.5 + pos: 100.5,3.5 parent: 2 - uid: 1129 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,-18.5 + pos: 99.5,5.5 parent: 2 - uid: 1130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,-18.5 + pos: 100.5,4.5 parent: 2 - uid: 1131 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,-14.5 + pos: 100.5,2.5 parent: 2 - uid: 1132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,-14.5 + pos: 101.5,5.5 parent: 2 - uid: 1133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,-14.5 + pos: 100.5,1.5 parent: 2 - uid: 1134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,-15.5 + pos: 101.5,2.5 parent: 2 - uid: 1135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-15.5 + pos: 101.5,3.5 parent: 2 - uid: 1136 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,-14.5 + pos: 101.5,1.5 parent: 2 - uid: 1137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 86.5,-2.5 + pos: 101.5,4.5 parent: 2 - uid: 1138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-10.5 + pos: 96.5,1.5 parent: 2 - uid: 1139 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-8.5 + pos: 96.5,3.5 parent: 2 - uid: 1140 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-9.5 + pos: 96.5,4.5 parent: 2 - uid: 1141 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-7.5 + pos: 96.5,5.5 parent: 2 - uid: 1142 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,-7.5 + pos: 96.5,2.5 parent: 2 - uid: 1143 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,-8.5 + pos: 90.5,8.5 parent: 2 - uid: 1144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-8.5 + pos: 90.5,9.5 parent: 2 - uid: 1145 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-7.5 + pos: 91.5,8.5 parent: 2 - uid: 1146 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-8.5 + pos: 91.5,9.5 parent: 2 - uid: 1147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-8.5 + pos: 91.5,10.5 parent: 2 - uid: 1148 components: - type: Transform rot: 1.5707963267948966 rad - pos: 83.5,-7.5 + pos: 91.5,12.5 parent: 2 - uid: 1149 components: - type: Transform rot: 1.5707963267948966 rad - pos: 83.5,-8.5 + pos: 91.5,13.5 parent: 2 - uid: 1150 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-7.5 + pos: 91.5,11.5 parent: 2 - uid: 1151 components: - type: Transform rot: 1.5707963267948966 rad - pos: 86.5,-0.5 + pos: 92.5,10.5 parent: 2 - uid: 1152 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-2.5 + pos: 92.5,9.5 parent: 2 - uid: 1153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 87.5,-1.5 + pos: -37.5,40.5 parent: 2 - uid: 1154 components: - type: Transform rot: 1.5707963267948966 rad - pos: 86.5,-1.5 + pos: 113.5,6.5 parent: 2 - uid: 1155 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-0.5 + pos: 113.5,5.5 parent: 2 - uid: 1156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-1.5 + pos: -37.5,40.5 parent: 2 - uid: 1157 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-1.5 + pos: 113.5,7.5 parent: 2 - uid: 1158 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-1.5 + pos: 112.5,3.5 parent: 2 - uid: 1159 components: - type: Transform rot: 1.5707963267948966 rad - pos: 88.5,2.5 + pos: 111.5,2.5 parent: 2 - uid: 1160 components: - type: Transform rot: 1.5707963267948966 rad - pos: 88.5,4.5 + pos: 111.5,10.5 parent: 2 - uid: 1161 components: - type: Transform rot: 1.5707963267948966 rad - pos: 88.5,3.5 + pos: 112.5,9.5 parent: 2 - uid: 1162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,3.5 + pos: 110.5,-4.5 parent: 2 - uid: 1163 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.5,3.5 + pos: 110.5,-3.5 parent: 2 - uid: 1164 components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,3.5 + pos: 107.5,-6.5 parent: 2 - uid: 1165 components: - type: Transform rot: 1.5707963267948966 rad - pos: 93.5,3.5 + pos: 72.5,5.5 parent: 2 - uid: 1166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,5.5 + pos: 72.5,4.5 parent: 2 - uid: 1167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,4.5 + pos: 73.5,5.5 parent: 2 - uid: 1168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,2.5 + pos: 73.5,4.5 parent: 2 - uid: 1169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,1.5 + pos: 73.5,3.5 parent: 2 - uid: 1170 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,5.5 + pos: 72.5,3.5 parent: 2 - uid: 1171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,4.5 + pos: 69.5,0.5 parent: 2 - uid: 1172 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,3.5 + pos: 69.5,-1.5 parent: 2 - uid: 1173 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,3.5 + pos: 69.5,-2.5 parent: 2 - uid: 1174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,1.5 + pos: 70.5,0.5 parent: 2 - uid: 1175 components: - type: Transform rot: 1.5707963267948966 rad - pos: 98.5,2.5 + pos: 69.5,-0.5 parent: 2 - uid: 1176 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,4.5 + pos: 70.5,-0.5 parent: 2 - uid: 1177 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,3.5 + pos: 70.5,-2.5 parent: 2 - uid: 1178 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,2.5 + pos: 71.5,0.5 parent: 2 - uid: 1179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,1.5 + pos: 71.5,-0.5 parent: 2 - uid: 1180 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,5.5 + pos: 71.5,-1.5 parent: 2 - uid: 1181 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,3.5 + pos: 71.5,-2.5 parent: 2 - uid: 1182 components: - type: Transform rot: 1.5707963267948966 rad - pos: 99.5,5.5 + pos: 70.5,-1.5 parent: 2 - uid: 1183 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,4.5 + pos: 73.5,-4.5 parent: 2 - uid: 1184 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,2.5 + pos: 74.5,-4.5 parent: 2 - uid: 1185 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,5.5 + pos: 74.5,-3.5 parent: 2 - uid: 1186 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,1.5 + pos: 73.5,-3.5 parent: 2 - uid: 1187 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,2.5 + pos: 66.5,-12.5 parent: 2 - uid: 1188 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,3.5 + pos: 66.5,-14.5 parent: 2 - uid: 1189 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,1.5 + pos: 66.5,-15.5 parent: 2 - uid: 1190 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,4.5 + pos: 67.5,-12.5 parent: 2 - uid: 1191 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,1.5 + pos: 67.5,-13.5 parent: 2 - uid: 1192 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,3.5 + pos: 66.5,-13.5 parent: 2 - uid: 1193 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,4.5 + pos: 67.5,-14.5 parent: 2 - uid: 1194 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,5.5 + pos: 68.5,-13.5 parent: 2 - uid: 1195 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,2.5 + pos: 68.5,-12.5 parent: 2 - uid: 1196 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,8.5 + pos: 68.5,-15.5 parent: 2 - uid: 1197 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,9.5 + pos: 68.5,-14.5 parent: 2 - uid: 1198 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,8.5 + pos: 67.5,-15.5 parent: 2 - uid: 1199 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,9.5 + pos: 67.5,-22.5 parent: 2 - uid: 1200 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,10.5 + pos: 68.5,-22.5 parent: 2 - uid: 1201 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,12.5 + pos: 68.5,-23.5 parent: 2 - uid: 1202 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,13.5 + pos: 67.5,-23.5 parent: 2 - uid: 1203 components: - type: Transform rot: 1.5707963267948966 rad - pos: 91.5,11.5 + pos: 73.5,-22.5 parent: 2 - uid: 1204 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,10.5 + pos: 74.5,-22.5 parent: 2 - uid: 1205 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,9.5 + pos: 74.5,-23.5 parent: 2 - uid: 1206 components: - type: Transform - pos: -37.5,40.5 + rot: 1.5707963267948966 rad + pos: 73.5,-23.5 parent: 2 - uid: 1207 components: - type: Transform rot: 1.5707963267948966 rad - pos: 113.5,6.5 + pos: 81.5,-22.5 parent: 2 - uid: 1208 components: - type: Transform rot: 1.5707963267948966 rad - pos: 113.5,5.5 + pos: 78.5,-8.5 parent: 2 - uid: 1209 components: - type: Transform - pos: -37.5,40.5 + rot: 1.5707963267948966 rad + pos: 82.5,-22.5 parent: 2 - uid: 1210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 113.5,7.5 + pos: 82.5,-23.5 parent: 2 - uid: 1211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 112.5,3.5 + pos: 81.5,-23.5 parent: 2 - uid: 1212 components: - type: Transform rot: 1.5707963267948966 rad - pos: 111.5,2.5 + pos: 80.5,-22.5 parent: 2 - uid: 1213 components: - type: Transform rot: 1.5707963267948966 rad - pos: 111.5,10.5 + pos: 80.5,-23.5 parent: 2 - uid: 1214 components: - type: Transform rot: 1.5707963267948966 rad - pos: 112.5,9.5 + pos: 80.5,-24.5 parent: 2 - uid: 1215 components: - type: Transform rot: 1.5707963267948966 rad - pos: 110.5,-4.5 + pos: 81.5,-24.5 parent: 2 - uid: 1216 components: - type: Transform rot: 1.5707963267948966 rad - pos: 110.5,-3.5 + pos: 82.5,-24.5 parent: 2 - uid: 1217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 107.5,-6.5 + pos: 71.5,-26.5 parent: 2 - uid: 1218 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,5.5 + pos: 72.5,-26.5 parent: 2 - uid: 1219 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,4.5 + pos: 72.5,-25.5 parent: 2 - uid: 1220 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,5.5 + pos: 71.5,-25.5 parent: 2 - uid: 1221 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,4.5 + pos: 67.5,-18.5 parent: 2 - uid: 1222 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,3.5 + pos: 71.5,-8.5 parent: 2 - uid: 1223 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,3.5 + pos: 87.5,-8.5 parent: 2 - uid: 1224 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,0.5 + pos: 90.5,-1.5 parent: 2 - uid: 1225 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-1.5 + pos: 90.5,-0.5 parent: 2 - uid: 1226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-2.5 + pos: 66.5,-5.5 parent: 2 - uid: 1227 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,0.5 + pos: 67.5,-5.5 parent: 2 - uid: 1228 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-0.5 + pos: 67.5,-4.5 parent: 2 - uid: 1229 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-0.5 + pos: 66.5,-4.5 parent: 2 - uid: 1230 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-2.5 + pos: 61.5,-7.5 parent: 2 - uid: 1231 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,0.5 + pos: 62.5,-7.5 parent: 2 - uid: 1232 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-0.5 + pos: 62.5,-6.5 parent: 2 - uid: 1233 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-1.5 + pos: 63.5,-7.5 parent: 2 - uid: 1234 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-2.5 + pos: 63.5,-6.5 parent: 2 - uid: 1235 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-1.5 + pos: 61.5,-6.5 parent: 2 - uid: 1236 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-4.5 + pos: 61.5,-14.5 parent: 2 - uid: 1237 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-4.5 + pos: 61.5,-12.5 parent: 2 - uid: 1238 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-3.5 + pos: 61.5,-11.5 parent: 2 - uid: 1239 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-3.5 + pos: 61.5,-13.5 parent: 2 - uid: 1240 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-12.5 + pos: 61.5,-17.5 parent: 2 - uid: 1241 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-14.5 + pos: 61.5,-18.5 parent: 2 - uid: 1242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-15.5 + pos: 57.5,-11.5 parent: 2 - uid: 1243 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-12.5 + pos: 57.5,-12.5 parent: 2 - uid: 1244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-13.5 + pos: 48.5,-18.5 parent: 2 - uid: 1245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-13.5 + pos: 52.5,-20.5 parent: 2 - uid: 1246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-14.5 + pos: 53.5,-20.5 parent: 2 - uid: 1247 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-13.5 + pos: 45.5,-19.5 parent: 2 - uid: 1248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-12.5 + pos: 55.5,-19.5 parent: 2 - uid: 1249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-15.5 + pos: 70.5,10.5 parent: 2 - uid: 1250 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-14.5 + pos: 70.5,9.5 parent: 2 - uid: 1251 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-15.5 + pos: 70.5,8.5 parent: 2 - uid: 1252 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-22.5 + pos: 71.5,10.5 parent: 2 - uid: 1253 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-22.5 + pos: 71.5,9.5 parent: 2 - uid: 1254 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-23.5 + pos: 71.5,8.5 parent: 2 - uid: 1255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-23.5 + pos: 72.5,15.5 parent: 2 - uid: 1256 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-22.5 + pos: 71.5,15.5 parent: 2 - uid: 1257 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-22.5 + pos: 71.5,14.5 parent: 2 - uid: 1258 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-23.5 + pos: 72.5,14.5 parent: 2 - uid: 1259 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-23.5 + pos: 66.5,15.5 parent: 2 - uid: 1260 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-22.5 + pos: 66.5,14.5 parent: 2 - uid: 1261 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-8.5 + pos: 67.5,15.5 parent: 2 - uid: 1262 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-22.5 + pos: 67.5,14.5 parent: 2 - uid: 1263 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-23.5 + pos: 66.5,16.5 parent: 2 - uid: 1264 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-23.5 + pos: 67.5,16.5 parent: 2 - uid: 1265 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-22.5 + pos: 62.5,18.5 parent: 2 - uid: 1266 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-23.5 + pos: 62.5,17.5 parent: 2 - uid: 1267 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-24.5 + pos: 63.5,18.5 parent: 2 - uid: 1268 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-24.5 + pos: 63.5,17.5 parent: 2 - uid: 1269 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-24.5 + pos: 75.5,18.5 parent: 2 - uid: 1270 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-26.5 + pos: 75.5,17.5 parent: 2 - uid: 1271 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,-26.5 + pos: 76.5,17.5 parent: 2 - uid: 1272 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,-25.5 + pos: 76.5,18.5 parent: 2 - uid: 1273 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-25.5 + pos: 77.5,21.5 parent: 2 - uid: 1274 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-18.5 + pos: 76.5,21.5 parent: 2 - uid: 1275 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-8.5 + pos: 76.5,22.5 parent: 2 - uid: 1276 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-8.5 + pos: 77.5,22.5 parent: 2 - uid: 1277 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-1.5 + pos: 72.5,24.5 parent: 2 - uid: 1278 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-0.5 + pos: 73.5,24.5 parent: 2 - uid: 1279 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-5.5 + pos: 73.5,23.5 parent: 2 - uid: 1280 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-5.5 + pos: 72.5,23.5 parent: 2 - uid: 1281 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-4.5 + pos: 67.5,27.5 parent: 2 - uid: 1282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-4.5 + pos: 68.5,27.5 parent: 2 - uid: 1283 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-7.5 + pos: 68.5,26.5 parent: 2 - uid: 1284 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-7.5 + pos: 69.5,27.5 parent: 2 - uid: 1285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-6.5 + pos: 69.5,26.5 parent: 2 - uid: 1286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-7.5 + pos: 67.5,26.5 parent: 2 - uid: 1287 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,-6.5 + pos: 65.5,25.5 parent: 2 - uid: 1288 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-6.5 + pos: 65.5,30.5 parent: 2 - uid: 1289 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-14.5 + pos: 58.5,20.5 parent: 2 - uid: 1290 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-12.5 + pos: 59.5,20.5 parent: 2 - uid: 1291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-11.5 + pos: 59.5,19.5 parent: 2 - uid: 1292 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-13.5 + pos: 58.5,19.5 parent: 2 - uid: 1293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-17.5 + pos: 57.5,19.5 parent: 2 - uid: 1294 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-18.5 + pos: 57.5,21.5 parent: 2 - uid: 1295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-11.5 + pos: 57.5,20.5 parent: 2 - uid: 1296 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-11.5 + pos: 59.5,21.5 parent: 2 - uid: 1297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-12.5 + pos: 58.5,21.5 parent: 2 - uid: 1298 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-12.5 + pos: 59.5,25.5 parent: 2 - uid: 1299 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-18.5 + pos: 60.5,25.5 parent: 2 - uid: 1300 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-18.5 + pos: 59.5,26.5 parent: 2 - uid: 1301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-17.5 + pos: 60.5,26.5 parent: 2 - uid: 1302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-17.5 + pos: 59.5,32.5 parent: 2 - uid: 1303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-11.5 + pos: 60.5,32.5 parent: 2 - uid: 1304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-13.5 + pos: 60.5,33.5 parent: 2 - uid: 1305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-11.5 + pos: 59.5,33.5 parent: 2 - uid: 1306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-12.5 + pos: 53.5,31.5 parent: 2 - uid: 1307 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-13.5 + pos: 53.5,33.5 parent: 2 - uid: 1308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-12.5 + pos: 54.5,31.5 parent: 2 - uid: 1309 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-19.5 + pos: 54.5,32.5 parent: 2 - uid: 1310 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-12.5 + pos: 54.5,33.5 parent: 2 - uid: 1311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-10.5 + pos: 55.5,31.5 parent: 2 - uid: 1312 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-12.5 + pos: 55.5,32.5 parent: 2 - uid: 1313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-11.5 + pos: 55.5,33.5 parent: 2 - uid: 1314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-11.5 + pos: 53.5,32.5 parent: 2 - uid: 1315 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-10.5 + pos: 65.5,35.5 parent: 2 - uid: 1316 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,10.5 + pos: 66.5,35.5 parent: 2 - uid: 1317 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,9.5 + pos: 66.5,34.5 parent: 2 - uid: 1318 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,8.5 + pos: 65.5,34.5 parent: 2 - uid: 1319 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,10.5 + pos: 66.5,33.5 parent: 2 - uid: 1320 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,9.5 + pos: 64.5,35.5 parent: 2 - uid: 1321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,8.5 + pos: 59.5,37.5 parent: 2 - uid: 1322 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,15.5 + pos: 60.5,37.5 parent: 2 - uid: 1323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,15.5 + pos: 60.5,36.5 parent: 2 - uid: 1324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,14.5 + pos: 59.5,36.5 parent: 2 - uid: 1325 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,14.5 + pos: 61.5,36.5 parent: 2 - uid: 1326 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,15.5 + pos: 61.5,37.5 parent: 2 - uid: 1327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,14.5 + pos: 58.5,39.5 parent: 2 - uid: 1328 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,15.5 + pos: 57.5,39.5 parent: 2 - uid: 1329 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,14.5 + pos: 57.5,40.5 parent: 2 - uid: 1330 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,16.5 + pos: 56.5,39.5 parent: 2 - uid: 1331 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,16.5 + pos: 56.5,40.5 parent: 2 - uid: 1332 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,18.5 + pos: 58.5,40.5 parent: 2 - uid: 1333 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,17.5 + pos: 55.5,44.5 parent: 2 - uid: 1334 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,18.5 + pos: 55.5,42.5 parent: 2 - uid: 1335 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,17.5 + pos: 56.5,44.5 parent: 2 - uid: 1336 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,18.5 + pos: 56.5,43.5 parent: 2 - uid: 1337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,17.5 + pos: 56.5,42.5 parent: 2 - uid: 1338 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,17.5 + pos: 55.5,43.5 parent: 2 - uid: 1339 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,18.5 + pos: 47.5,44.5 parent: 2 - uid: 1340 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,21.5 + pos: 47.5,42.5 parent: 2 - uid: 1341 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,21.5 + pos: 48.5,44.5 parent: 2 - uid: 1342 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,22.5 + pos: 48.5,43.5 parent: 2 - uid: 1343 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,22.5 + pos: 48.5,42.5 parent: 2 - uid: 1344 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,24.5 + pos: 49.5,44.5 parent: 2 - uid: 1345 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,24.5 + pos: 49.5,42.5 parent: 2 - uid: 1346 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,23.5 + pos: 50.5,44.5 parent: 2 - uid: 1347 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,23.5 + pos: 47.5,43.5 parent: 2 - uid: 1348 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,27.5 + pos: 49.5,43.5 parent: 2 - uid: 1349 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,27.5 + pos: 50.5,43.5 parent: 2 - uid: 1350 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,26.5 + pos: 50.5,42.5 parent: 2 - uid: 1351 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,27.5 + pos: 42.5,43.5 parent: 2 - uid: 1352 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,26.5 + pos: 41.5,43.5 parent: 2 - uid: 1353 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,26.5 + pos: 41.5,44.5 parent: 2 - uid: 1354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,25.5 + pos: 40.5,43.5 parent: 2 - uid: 1355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,30.5 + pos: 40.5,44.5 parent: 2 - uid: 1356 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,20.5 + pos: 39.5,43.5 parent: 2 - uid: 1357 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,20.5 + pos: 39.5,44.5 parent: 2 - uid: 1358 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,19.5 + pos: 42.5,44.5 parent: 2 - uid: 1359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,19.5 + pos: 51.5,47.5 parent: 2 - uid: 1360 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,19.5 + pos: 52.5,47.5 parent: 2 - uid: 1361 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,21.5 + pos: 52.5,48.5 parent: 2 - uid: 1362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,20.5 + pos: 51.5,48.5 parent: 2 - uid: 1363 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,21.5 + pos: 53.5,53.5 parent: 2 - uid: 1364 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,21.5 + pos: 53.5,52.5 parent: 2 - uid: 1365 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,25.5 + pos: 53.5,50.5 parent: 2 - uid: 1366 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,25.5 + pos: 54.5,52.5 parent: 2 - uid: 1367 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,26.5 + pos: 54.5,51.5 parent: 2 - uid: 1368 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,26.5 + pos: 53.5,51.5 parent: 2 - uid: 1369 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,32.5 + pos: 54.5,50.5 parent: 2 - uid: 1370 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,32.5 + pos: 39.5,32.5 parent: 2 - uid: 1371 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,33.5 + pos: 38.5,32.5 parent: 2 - uid: 1372 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,33.5 + pos: 51.5,18.5 parent: 2 - uid: 1373 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,31.5 + pos: 51.5,20.5 parent: 2 - uid: 1374 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,33.5 + pos: 52.5,18.5 parent: 2 - uid: 1375 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,31.5 + pos: 52.5,19.5 parent: 2 - uid: 1376 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,32.5 + pos: 52.5,20.5 parent: 2 - uid: 1377 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,33.5 + pos: 51.5,19.5 parent: 2 - uid: 1378 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,31.5 + pos: 50.5,26.5 parent: 2 - uid: 1379 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,32.5 + pos: 51.5,26.5 parent: 2 - uid: 1380 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,33.5 + pos: 51.5,25.5 parent: 2 - uid: 1381 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,32.5 + pos: 50.5,25.5 parent: 2 - uid: 1382 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,35.5 + pos: 46.5,31.5 parent: 2 - uid: 1383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,35.5 + pos: 47.5,31.5 parent: 2 - uid: 1384 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,34.5 + pos: 47.5,30.5 parent: 2 - uid: 1385 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,34.5 + pos: 46.5,30.5 parent: 2 - uid: 1386 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,33.5 + pos: 39.5,33.5 parent: 2 - uid: 1387 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,35.5 + pos: 38.5,33.5 parent: 2 - uid: 1388 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,37.5 + pos: 36.5,43.5 parent: 2 - uid: 1389 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,37.5 + pos: 36.5,42.5 parent: 2 - uid: 1390 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,36.5 + pos: 35.5,42.5 parent: 2 - uid: 1391 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,36.5 + pos: 36.5,41.5 parent: 2 - uid: 1392 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,36.5 + pos: 37.5,37.5 parent: 2 - uid: 1393 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,37.5 + pos: 37.5,36.5 parent: 2 - uid: 1394 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,39.5 + pos: 31.5,45.5 parent: 2 - uid: 1395 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,39.5 + pos: 31.5,44.5 parent: 2 - uid: 1396 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,40.5 + pos: 32.5,45.5 parent: 2 - uid: 1397 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,39.5 + pos: 32.5,44.5 parent: 2 - uid: 1398 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,40.5 + pos: 23.5,46.5 parent: 2 - uid: 1399 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,40.5 + pos: 23.5,47.5 parent: 2 - uid: 1400 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,44.5 + pos: 24.5,47.5 parent: 2 - uid: 1401 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,42.5 + pos: 25.5,46.5 parent: 2 - uid: 1402 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,44.5 + pos: 25.5,47.5 parent: 2 - uid: 1403 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,43.5 + pos: 24.5,46.5 parent: 2 - uid: 1404 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,42.5 + pos: 18.5,45.5 parent: 2 - uid: 1405 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,43.5 + pos: 19.5,45.5 parent: 2 - uid: 1406 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,44.5 + pos: 19.5,46.5 parent: 2 - uid: 1407 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,42.5 + pos: 18.5,46.5 parent: 2 - uid: 1408 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,44.5 + pos: 20.5,48.5 parent: 2 - uid: 1409 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,43.5 + pos: 20.5,49.5 parent: 2 - uid: 1410 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,42.5 + pos: 5.5,57.5 parent: 2 - uid: 1411 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,44.5 + pos: 6.5,57.5 parent: 2 - uid: 1412 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,42.5 + pos: 5.5,56.5 parent: 2 - uid: 1413 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,44.5 + pos: 7.5,57.5 parent: 2 - uid: 1414 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,43.5 + pos: 7.5,56.5 parent: 2 - uid: 1415 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,43.5 + pos: 6.5,56.5 parent: 2 - uid: 1416 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,43.5 + pos: 6.5,51.5 parent: 2 - uid: 1417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,42.5 + pos: 7.5,51.5 parent: 2 - uid: 1418 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,43.5 + pos: 7.5,52.5 parent: 2 - uid: 1419 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,43.5 + pos: 8.5,51.5 parent: 2 - uid: 1420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,44.5 + pos: 8.5,52.5 parent: 2 - uid: 1421 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,43.5 + pos: 6.5,52.5 parent: 2 - uid: 1422 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,44.5 + pos: 8.5,53.5 parent: 2 - uid: 1423 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,43.5 + pos: 11.5,58.5 parent: 2 - uid: 1424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,44.5 + pos: 11.5,57.5 parent: 2 - uid: 1425 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,44.5 + pos: 12.5,57.5 parent: 2 - uid: 1426 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,47.5 + pos: 12.5,58.5 parent: 2 - uid: 1427 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,47.5 + pos: 9.5,61.5 parent: 2 - uid: 1428 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,48.5 + pos: 9.5,60.5 parent: 2 - uid: 1429 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,48.5 + pos: 12.5,61.5 parent: 2 - uid: 1430 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,53.5 + pos: 13.5,61.5 parent: 2 - uid: 1431 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,52.5 + pos: 13.5,60.5 parent: 2 - uid: 1432 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,50.5 + pos: 12.5,60.5 parent: 2 - uid: 1433 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,52.5 + pos: 9.5,65.5 parent: 2 - uid: 1434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,51.5 + pos: 9.5,64.5 parent: 2 - uid: 1435 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,51.5 + pos: 10.5,65.5 parent: 2 - uid: 1436 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,50.5 + pos: 10.5,64.5 parent: 2 - uid: 1437 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,32.5 + pos: 12.5,63.5 parent: 2 - uid: 1438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,32.5 + pos: 12.5,64.5 parent: 2 - uid: 1439 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,18.5 + pos: 13.5,63.5 parent: 2 - uid: 1440 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,20.5 + pos: 13.5,64.5 parent: 2 - uid: 1441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,18.5 + pos: 17.5,61.5 parent: 2 - uid: 1442 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,19.5 + pos: 17.5,63.5 parent: 2 - uid: 1443 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,20.5 + pos: 17.5,62.5 parent: 2 - uid: 1444 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: 17.5,57.5 parent: 2 - uid: 1445 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,26.5 + pos: 18.5,57.5 parent: 2 - uid: 1446 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,26.5 + pos: 18.5,58.5 parent: 2 - uid: 1447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,25.5 + pos: 17.5,58.5 parent: 2 - uid: 1448 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,25.5 + pos: 19.5,53.5 parent: 2 - uid: 1449 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,31.5 + pos: 20.5,53.5 parent: 2 - uid: 1450 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,31.5 + pos: 20.5,54.5 parent: 2 - uid: 1451 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,30.5 + pos: 19.5,54.5 parent: 2 - uid: 1452 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,30.5 + pos: 18.5,54.5 parent: 2 - uid: 1453 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,33.5 + pos: 18.5,53.5 parent: 2 - uid: 1454 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,33.5 + pos: 23.5,53.5 parent: 2 - uid: 1455 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,43.5 + pos: 24.5,53.5 parent: 2 - uid: 1456 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,42.5 + pos: 24.5,54.5 parent: 2 - uid: 1457 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,42.5 + pos: 23.5,54.5 parent: 2 - uid: 1458 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,41.5 + pos: 24.5,58.5 parent: 2 - uid: 1459 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,37.5 + pos: 24.5,57.5 parent: 2 - uid: 1460 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,36.5 + pos: 24.5,60.5 parent: 2 - uid: 1461 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,45.5 + pos: 27.5,57.5 parent: 2 - uid: 1462 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,44.5 + pos: 27.5,58.5 parent: 2 - uid: 1463 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,45.5 + pos: 28.5,57.5 parent: 2 - uid: 1464 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,44.5 + pos: 28.5,58.5 parent: 2 - uid: 1465 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,46.5 + pos: 28.5,59.5 parent: 2 - uid: 1466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,47.5 + pos: 27.5,59.5 parent: 2 - uid: 1467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,47.5 + pos: 27.5,51.5 parent: 2 - uid: 1468 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,46.5 + pos: 27.5,52.5 parent: 2 - uid: 1469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,47.5 + pos: 27.5,54.5 parent: 2 - uid: 1470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,46.5 + pos: 28.5,51.5 parent: 2 - uid: 1471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,45.5 + pos: 28.5,52.5 parent: 2 - uid: 1472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,45.5 + pos: 28.5,53.5 parent: 2 - uid: 1473 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,46.5 + pos: 28.5,54.5 parent: 2 - uid: 1474 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,46.5 + pos: 29.5,51.5 parent: 2 - uid: 1475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,48.5 + pos: 29.5,53.5 parent: 2 - uid: 1476 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,49.5 + pos: 27.5,53.5 parent: 2 - uid: 1477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,57.5 + pos: 29.5,54.5 parent: 2 - uid: 1478 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,57.5 + pos: 29.5,52.5 parent: 2 - uid: 1479 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,56.5 + pos: 15.5,50.5 parent: 2 - uid: 1480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,57.5 + pos: 16.5,50.5 parent: 2 - uid: 1481 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,56.5 + pos: 15.5,51.5 parent: 2 - uid: 1482 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,56.5 + pos: 16.5,51.5 parent: 2 - uid: 1483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,51.5 + pos: 10.5,54.5 parent: 2 - uid: 1484 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,51.5 + pos: 11.5,54.5 parent: 2 - uid: 1485 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,52.5 + pos: 11.5,53.5 parent: 2 - uid: 1486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,51.5 + pos: 10.5,53.5 parent: 2 - uid: 1487 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,52.5 + pos: 15.5,54.5 parent: 2 - uid: 1488 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,52.5 + pos: 16.5,54.5 parent: 2 - uid: 1489 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,53.5 + pos: 16.5,53.5 parent: 2 - uid: 1490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,58.5 + pos: 15.5,53.5 parent: 2 - uid: 1491 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,57.5 + pos: 13.5,50.5 parent: 2 - uid: 1492 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,57.5 + pos: 13.5,51.5 parent: 2 - uid: 1493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,58.5 + pos: 14.5,44.5 parent: 2 - uid: 1494 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,61.5 + pos: 15.5,44.5 parent: 2 - uid: 1495 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,60.5 + pos: 29.5,46.5 parent: 2 - uid: 1496 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,61.5 + pos: 34.5,45.5 parent: 2 - uid: 1497 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,61.5 + pos: 41.5,36.5 parent: 2 - uid: 1498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,60.5 + pos: 42.5,36.5 parent: 2 - uid: 1499 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,60.5 + pos: 43.5,37.5 parent: 2 - uid: 1500 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,65.5 + pos: 44.5,38.5 parent: 2 - uid: 1501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,64.5 + pos: 45.5,37.5 parent: 2 - uid: 1502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,65.5 + pos: 46.5,36.5 parent: 2 - uid: 1503 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,64.5 + pos: 47.5,36.5 parent: 2 - uid: 1504 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,63.5 + pos: 49.5,38.5 parent: 2 - uid: 1505 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,64.5 + pos: 51.5,39.5 parent: 2 - uid: 1506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,63.5 + pos: 43.5,32.5 parent: 2 - uid: 1507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,64.5 + pos: 42.5,32.5 parent: 2 - uid: 1508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,61.5 + pos: 49.5,29.5 parent: 2 - uid: 1509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,63.5 + pos: 51.5,23.5 parent: 2 - uid: 1510 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,62.5 + pos: 61.5,29.5 parent: 2 - uid: 1511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,57.5 + pos: 53.5,43.5 parent: 2 - uid: 1512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,57.5 + pos: 45.5,43.5 parent: 2 - uid: 1513 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,58.5 + pos: -20.5,65.5 parent: 2 - uid: 1514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,58.5 + pos: -20.5,64.5 parent: 2 - uid: 1515 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,53.5 + pos: -19.5,64.5 parent: 2 - uid: 1516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,53.5 + pos: -25.5,68.5 parent: 2 - uid: 1517 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,54.5 + pos: -24.5,68.5 parent: 2 - uid: 1518 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,54.5 + pos: -22.5,69.5 parent: 2 - uid: 1519 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,54.5 + pos: -21.5,69.5 parent: 2 - uid: 1520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,53.5 + pos: -20.5,67.5 parent: 2 - uid: 1521 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,53.5 + pos: -19.5,67.5 parent: 2 - uid: 1522 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,53.5 + pos: -27.5,63.5 parent: 2 - uid: 1523 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,54.5 + pos: -27.5,64.5 parent: 2 - uid: 1524 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,54.5 + pos: -26.5,63.5 parent: 2 - uid: 1525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,58.5 + pos: -26.5,64.5 parent: 2 - uid: 1526 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,57.5 + pos: -29.5,59.5 parent: 2 - uid: 1527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,60.5 + pos: -28.5,59.5 parent: 2 - uid: 1528 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,57.5 + pos: -28.5,60.5 parent: 2 - uid: 1529 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,58.5 + pos: -29.5,60.5 parent: 2 - uid: 1530 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,57.5 + pos: -28.5,65.5 parent: 2 - uid: 1531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,58.5 + pos: -98.5,34.5 parent: 2 - uid: 1532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,59.5 + pos: 64.5,-56.5 parent: 2 - uid: 1533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,59.5 + pos: -39.5,60.5 parent: 2 - uid: 1534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,51.5 + pos: -39.5,59.5 parent: 2 - uid: 1535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,52.5 + pos: -38.5,60.5 parent: 2 - uid: 1536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,54.5 + pos: -38.5,59.5 parent: 2 - uid: 1537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,51.5 + pos: -37.5,59.5 parent: 2 - uid: 1538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,52.5 + pos: -37.5,57.5 parent: 2 - uid: 1539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,53.5 + pos: -36.5,59.5 parent: 2 - uid: 1540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,54.5 + pos: -36.5,58.5 parent: 2 - uid: 1541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,51.5 + pos: -36.5,57.5 parent: 2 - uid: 1542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,53.5 + pos: -37.5,58.5 parent: 2 - uid: 1543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,53.5 + pos: -35.5,58.5 parent: 2 - uid: 1544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,54.5 + pos: -35.5,57.5 parent: 2 - uid: 1545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,52.5 + pos: -35.5,59.5 parent: 2 - uid: 1546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,50.5 + pos: -51.5,52.5 parent: 2 - uid: 1547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,50.5 + pos: -50.5,52.5 parent: 2 - uid: 1548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,51.5 + pos: -49.5,52.5 parent: 2 - uid: 1549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,51.5 + pos: -48.5,54.5 parent: 2 - uid: 1550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,54.5 + pos: -46.5,54.5 parent: 2 - uid: 1551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,54.5 + pos: -47.5,54.5 parent: 2 - uid: 1552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,53.5 + pos: -44.5,54.5 parent: 2 - uid: 1553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,53.5 + pos: -44.5,53.5 parent: 2 - uid: 1554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,54.5 + pos: -43.5,54.5 parent: 2 - uid: 1555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,54.5 + pos: -44.5,54.5 parent: 2 - uid: 1556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,53.5 + pos: -42.5,54.5 parent: 2 - uid: 1557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,53.5 + pos: -42.5,53.5 parent: 2 - uid: 1558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,50.5 + pos: -43.5,53.5 parent: 2 - uid: 1559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,51.5 + pos: -42.5,49.5 parent: 2 - uid: 1560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,44.5 + pos: -42.5,51.5 parent: 2 - uid: 1561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,44.5 + pos: -41.5,48.5 parent: 2 - uid: 1562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,46.5 + pos: -41.5,49.5 parent: 2 - uid: 1563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,45.5 + pos: -42.5,50.5 parent: 2 - uid: 1564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,36.5 + pos: -42.5,48.5 parent: 2 - uid: 1565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,36.5 + pos: -41.5,51.5 parent: 2 - uid: 1566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,37.5 + pos: -40.5,49.5 parent: 2 - uid: 1567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,38.5 + pos: -41.5,50.5 parent: 2 - uid: 1568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,37.5 + pos: -40.5,50.5 parent: 2 - uid: 1569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,36.5 + pos: -40.5,51.5 parent: 2 - uid: 1570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,36.5 + pos: -40.5,48.5 parent: 2 - uid: 1571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,38.5 + pos: -50.5,48.5 parent: 2 - uid: 1572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,39.5 + pos: -50.5,47.5 parent: 2 - uid: 1573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,32.5 + pos: -49.5,47.5 parent: 2 - uid: 1574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,32.5 + pos: -49.5,48.5 parent: 2 - uid: 1575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,29.5 + pos: -46.5,46.5 parent: 2 - uid: 1576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,23.5 + pos: -46.5,46.5 parent: 2 - uid: 1577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,29.5 + pos: -45.5,46.5 parent: 2 - uid: 1578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,43.5 + pos: -45.5,45.5 parent: 2 - uid: 1579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,43.5 + pos: -46.5,45.5 parent: 2 - uid: 1580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,65.5 + pos: -38.5,49.5 parent: 2 - uid: 1581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,64.5 + pos: -40.5,55.5 parent: 2 - uid: 1582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,64.5 + pos: -39.5,55.5 parent: 2 - uid: 1583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,68.5 + pos: -40.5,56.5 parent: 2 - uid: 1584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,68.5 + pos: -39.5,56.5 parent: 2 - uid: 1585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,69.5 + pos: -45.5,61.5 parent: 2 - uid: 1586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,69.5 + pos: -45.5,60.5 parent: 2 - uid: 1587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,67.5 + pos: -44.5,61.5 parent: 2 - uid: 1588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,67.5 + pos: -44.5,60.5 parent: 2 - uid: 1589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,68.5 + pos: -50.5,57.5 parent: 2 - uid: 1590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,66.5 + pos: -49.5,57.5 parent: 2 - uid: 1591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,67.5 + pos: -46.5,58.5 parent: 2 - uid: 1592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,63.5 + pos: -47.5,58.5 parent: 2 - uid: 1593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,64.5 + pos: -41.5,62.5 parent: 2 - uid: 1594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,63.5 + pos: -40.5,62.5 parent: 2 - uid: 1595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,64.5 + pos: -33.5,50.5 parent: 2 - uid: 1596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,59.5 + pos: -33.5,52.5 parent: 2 - uid: 1597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,59.5 + pos: -32.5,50.5 parent: 2 - uid: 1598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,60.5 + pos: -32.5,51.5 parent: 2 - uid: 1599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,60.5 + pos: -33.5,51.5 parent: 2 - uid: 1600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,62.5 + pos: -32.5,52.5 parent: 2 - uid: 1601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,61.5 + pos: -31.5,52.5 parent: 2 - uid: 1602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,72.5 + pos: -31.5,51.5 parent: 2 - uid: 1603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,72.5 + pos: -31.5,50.5 parent: 2 - uid: 1604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,72.5 + pos: -31.5,56.5 parent: 2 - uid: 1605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,71.5 + pos: -31.5,57.5 parent: 2 - uid: 1606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,71.5 + pos: -32.5,57.5 parent: 2 - uid: 1607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,68.5 + pos: -32.5,56.5 parent: 2 - uid: 1608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,67.5 + pos: -51.5,60.5 parent: 2 - uid: 1609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,66.5 + pos: -50.5,60.5 parent: 2 - uid: 1610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,66.5 + pos: -50.5,61.5 parent: 2 - uid: 1611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,65.5 + pos: -51.5,61.5 parent: 2 - uid: 1612 components: - type: Transform - pos: -98.5,34.5 + pos: -51.5,66.5 parent: 2 - uid: 1613 components: - type: Transform - pos: 64.5,-56.5 + pos: -52.5,66.5 parent: 2 - uid: 1614 components: - type: Transform - pos: -39.5,60.5 + pos: -52.5,65.5 parent: 2 - uid: 1615 components: - type: Transform - pos: -39.5,59.5 + pos: -51.5,65.5 parent: 2 - uid: 1616 components: - type: Transform - pos: -38.5,60.5 + pos: -58.5,66.5 parent: 2 - uid: 1617 components: - type: Transform - pos: -38.5,59.5 + pos: -58.5,64.5 parent: 2 - uid: 1618 components: - type: Transform - pos: -37.5,59.5 + pos: -57.5,66.5 parent: 2 - uid: 1619 components: - type: Transform - pos: -37.5,57.5 + pos: -57.5,65.5 parent: 2 - uid: 1620 components: - type: Transform - pos: -36.5,59.5 + pos: -57.5,64.5 parent: 2 - uid: 1621 components: - type: Transform - pos: -36.5,58.5 + pos: -58.5,65.5 parent: 2 - uid: 1622 components: - type: Transform - pos: -36.5,57.5 + pos: -55.5,64.5 parent: 2 - uid: 1623 components: - type: Transform - pos: -37.5,58.5 + pos: -55.5,66.5 parent: 2 - uid: 1624 components: - type: Transform - pos: -35.5,58.5 + pos: -54.5,64.5 parent: 2 - uid: 1625 components: - type: Transform - pos: -35.5,57.5 + pos: -55.5,65.5 parent: 2 - uid: 1626 components: - type: Transform - pos: -35.5,59.5 + pos: -54.5,65.5 parent: 2 - uid: 1627 components: - type: Transform - pos: -51.5,52.5 + pos: -54.5,66.5 parent: 2 - uid: 1628 components: - type: Transform - pos: -50.5,52.5 + pos: -64.5,67.5 parent: 2 - uid: 1629 components: - type: Transform - pos: -49.5,52.5 + pos: -64.5,69.5 parent: 2 - uid: 1630 components: - type: Transform - pos: -48.5,54.5 + pos: -63.5,67.5 parent: 2 - uid: 1631 components: - type: Transform - pos: -46.5,54.5 + pos: -63.5,68.5 parent: 2 - uid: 1632 components: - type: Transform - pos: -47.5,54.5 + pos: -63.5,69.5 parent: 2 - uid: 1633 components: - type: Transform - pos: -44.5,54.5 + pos: -62.5,67.5 parent: 2 - uid: 1634 components: - type: Transform - pos: -44.5,53.5 + pos: -64.5,68.5 parent: 2 - uid: 1635 components: - type: Transform - pos: -43.5,54.5 + pos: -62.5,68.5 parent: 2 - uid: 1636 components: - type: Transform - pos: -44.5,54.5 + pos: -61.5,68.5 parent: 2 - uid: 1637 components: - type: Transform - pos: -42.5,54.5 + pos: -61.5,67.5 parent: 2 - uid: 1638 components: - type: Transform - pos: -42.5,53.5 + pos: -61.5,69.5 parent: 2 - uid: 1639 components: - type: Transform - pos: -43.5,53.5 + pos: -62.5,69.5 parent: 2 - uid: 1640 components: - type: Transform - pos: -42.5,49.5 + pos: -74.5,72.5 parent: 2 - uid: 1641 components: - type: Transform - pos: -42.5,51.5 + pos: -73.5,72.5 parent: 2 - uid: 1642 components: - type: Transform - pos: -41.5,48.5 + pos: -72.5,72.5 parent: 2 - uid: 1643 components: - type: Transform - pos: -41.5,49.5 + pos: -71.5,72.5 parent: 2 - uid: 1644 components: - type: Transform - pos: -42.5,50.5 + pos: -70.5,72.5 parent: 2 - uid: 1645 components: - type: Transform - pos: -42.5,48.5 + pos: -69.5,72.5 parent: 2 - uid: 1646 components: - type: Transform - pos: -41.5,51.5 + pos: -68.5,72.5 parent: 2 - uid: 1647 components: - type: Transform - pos: -40.5,49.5 + pos: -67.5,72.5 parent: 2 - uid: 1648 components: - type: Transform - pos: -41.5,50.5 + pos: -74.5,74.5 parent: 2 - uid: 1649 components: - type: Transform - pos: -40.5,50.5 + pos: -72.5,74.5 parent: 2 - uid: 1650 components: - type: Transform - pos: -40.5,51.5 + pos: -71.5,74.5 parent: 2 - uid: 1651 components: - type: Transform - pos: -40.5,48.5 + pos: -70.5,74.5 parent: 2 - uid: 1652 components: - type: Transform - pos: -50.5,48.5 + pos: -69.5,74.5 parent: 2 - uid: 1653 components: - type: Transform - pos: -50.5,47.5 + pos: -68.5,74.5 parent: 2 - uid: 1654 components: - type: Transform - pos: -49.5,47.5 + pos: -73.5,74.5 parent: 2 - uid: 1655 components: - type: Transform - pos: -49.5,48.5 + pos: -67.5,74.5 parent: 2 - uid: 1656 components: - type: Transform - pos: -46.5,46.5 + pos: -74.5,69.5 parent: 2 - uid: 1657 components: - type: Transform - pos: -46.5,46.5 + pos: -72.5,69.5 parent: 2 - uid: 1658 components: - type: Transform - pos: -45.5,46.5 + pos: -73.5,69.5 parent: 2 - uid: 1659 components: - type: Transform - pos: -45.5,45.5 + pos: -64.5,75.5 parent: 2 - uid: 1660 components: - type: Transform - pos: -46.5,45.5 + pos: -64.5,73.5 parent: 2 - uid: 1661 components: - type: Transform - pos: -38.5,49.5 + pos: -64.5,72.5 parent: 2 - uid: 1662 components: - type: Transform - pos: -40.5,55.5 + pos: -64.5,71.5 parent: 2 - uid: 1663 components: - type: Transform - pos: -39.5,55.5 + pos: -64.5,74.5 parent: 2 - uid: 1664 components: - type: Transform - pos: -40.5,56.5 + pos: -62.5,71.5 parent: 2 - uid: 1665 components: - type: Transform - pos: -39.5,56.5 + pos: -62.5,73.5 parent: 2 - uid: 1666 components: - type: Transform - pos: -45.5,61.5 + pos: -62.5,74.5 parent: 2 - uid: 1667 components: - type: Transform - pos: -45.5,60.5 + pos: -62.5,75.5 parent: 2 - uid: 1668 components: - type: Transform - pos: -44.5,61.5 + pos: -62.5,72.5 parent: 2 - uid: 1669 components: - type: Transform - pos: -44.5,60.5 + pos: -60.5,75.5 parent: 2 - uid: 1670 components: - type: Transform - pos: -50.5,57.5 + pos: -60.5,75.5 parent: 2 - uid: 1671 components: - type: Transform - pos: -49.5,57.5 + pos: -60.5,73.5 parent: 2 - uid: 1672 components: - type: Transform - pos: -46.5,58.5 + pos: -60.5,72.5 parent: 2 - uid: 1673 components: - type: Transform - pos: -47.5,58.5 + pos: -60.5,71.5 parent: 2 - uid: 1674 components: - type: Transform - pos: -41.5,62.5 + pos: -60.5,74.5 parent: 2 - uid: 1675 components: - type: Transform - pos: -40.5,62.5 + pos: -58.5,75.5 parent: 2 - uid: 1676 components: - type: Transform - pos: -33.5,50.5 + pos: -58.5,73.5 parent: 2 - uid: 1677 components: - type: Transform - pos: -33.5,52.5 + pos: -58.5,72.5 parent: 2 - uid: 1678 components: - type: Transform - pos: -32.5,50.5 + pos: -58.5,74.5 parent: 2 - uid: 1679 components: - type: Transform - pos: -32.5,51.5 + pos: -58.5,71.5 parent: 2 - uid: 1680 components: - type: Transform - pos: -33.5,51.5 + pos: -57.5,75.5 parent: 2 - uid: 1681 components: - type: Transform - pos: -32.5,52.5 + pos: -57.5,74.5 parent: 2 - uid: 1682 components: - type: Transform - pos: -31.5,52.5 + pos: -57.5,73.5 parent: 2 - uid: 1683 components: - type: Transform - pos: -31.5,51.5 + pos: -57.5,72.5 parent: 2 - uid: 1684 components: - type: Transform - pos: -31.5,50.5 + pos: -57.5,71.5 parent: 2 - uid: 1685 components: - type: Transform - pos: -31.5,56.5 + pos: -62.5,78.5 parent: 2 - uid: 1686 components: - type: Transform - pos: -31.5,57.5 + pos: -60.5,78.5 parent: 2 - uid: 1687 components: - type: Transform - pos: -32.5,57.5 + pos: -61.5,78.5 parent: 2 - uid: 1688 components: - type: Transform - pos: -32.5,56.5 + pos: -70.5,77.5 parent: 2 - uid: 1689 components: - type: Transform - pos: -51.5,60.5 + pos: -68.5,77.5 parent: 2 - uid: 1690 components: - type: Transform - pos: -50.5,60.5 + pos: -69.5,77.5 parent: 2 - uid: 1691 components: - type: Transform - pos: -50.5,61.5 + pos: -53.5,77.5 parent: 2 - uid: 1692 components: - type: Transform - pos: -51.5,61.5 + pos: -51.5,77.5 parent: 2 - uid: 1693 components: - type: Transform - pos: -51.5,66.5 + pos: -52.5,77.5 parent: 2 - uid: 1694 components: - type: Transform - pos: -52.5,66.5 + pos: -53.5,74.5 parent: 2 - uid: 1695 components: - type: Transform - pos: -52.5,65.5 + pos: -51.5,74.5 parent: 2 - uid: 1696 components: - type: Transform - pos: -51.5,65.5 + pos: -50.5,74.5 parent: 2 - uid: 1697 components: - type: Transform - pos: -58.5,66.5 + pos: -49.5,74.5 parent: 2 - uid: 1698 components: - type: Transform - pos: -58.5,64.5 + pos: -52.5,74.5 parent: 2 - uid: 1699 components: - type: Transform - pos: -57.5,66.5 + pos: -55.5,74.5 parent: 2 - uid: 1700 components: - type: Transform - pos: -57.5,65.5 + pos: -54.5,74.5 parent: 2 - uid: 1701 components: - type: Transform - pos: -57.5,64.5 + pos: -55.5,72.5 parent: 2 - uid: 1702 components: - type: Transform - pos: -58.5,65.5 + pos: -53.5,72.5 parent: 2 - uid: 1703 components: - type: Transform - pos: -55.5,64.5 + pos: -52.5,72.5 parent: 2 - uid: 1704 components: - type: Transform - pos: -55.5,66.5 + pos: -51.5,72.5 parent: 2 - uid: 1705 components: - type: Transform - pos: -54.5,64.5 + pos: -50.5,72.5 parent: 2 - uid: 1706 components: - type: Transform - pos: -55.5,65.5 + pos: -49.5,72.5 parent: 2 - uid: 1707 components: - type: Transform - pos: -54.5,65.5 + pos: -48.5,72.5 parent: 2 - uid: 1708 components: - type: Transform - pos: -54.5,66.5 + pos: -54.5,72.5 parent: 2 - uid: 1709 components: - type: Transform - pos: -64.5,67.5 + pos: -55.5,69.5 parent: 2 - uid: 1710 components: - type: Transform - pos: -64.5,69.5 + pos: -54.5,69.5 parent: 2 - uid: 1711 components: - type: Transform - pos: -63.5,67.5 + pos: -46.5,73.5 parent: 2 - uid: 1712 components: - type: Transform - pos: -63.5,68.5 + pos: -46.5,72.5 parent: 2 - uid: 1713 components: - type: Transform - pos: -63.5,69.5 + pos: -45.5,72.5 parent: 2 - uid: 1714 components: - type: Transform - pos: -62.5,67.5 + pos: -45.5,73.5 parent: 2 - uid: 1715 components: - type: Transform - pos: -64.5,68.5 + pos: -68.5,69.5 parent: 2 - uid: 1716 components: - type: Transform - pos: -62.5,68.5 + pos: -67.5,69.5 parent: 2 - uid: 1717 components: - type: Transform - pos: -61.5,68.5 + pos: -67.5,70.5 parent: 2 - uid: 1718 components: - type: Transform - pos: -61.5,67.5 + pos: -68.5,70.5 parent: 2 - uid: 1719 components: - type: Transform - pos: -61.5,69.5 + pos: -71.5,6.5 parent: 2 - uid: 1720 components: - type: Transform - pos: -62.5,69.5 + pos: -97.5,18.5 parent: 2 - uid: 1721 components: - type: Transform - pos: -74.5,72.5 + pos: -49.5,70.5 parent: 2 - uid: 1722 components: - type: Transform - pos: -73.5,72.5 + pos: -50.5,70.5 parent: 2 - uid: 1723 components: - type: Transform - pos: -72.5,72.5 + pos: -51.5,70.5 parent: 2 - uid: 1724 components: - type: Transform - pos: -71.5,72.5 + pos: -47.5,68.5 parent: 2 - uid: 1725 components: - type: Transform - pos: -70.5,72.5 + pos: -47.5,67.5 parent: 2 - uid: 1726 components: - type: Transform - pos: -69.5,72.5 + pos: -46.5,68.5 parent: 2 - uid: 1727 components: - type: Transform - pos: -68.5,72.5 + pos: -46.5,67.5 parent: 2 - uid: 1728 components: - type: Transform - pos: -67.5,72.5 + pos: -46.5,65.5 parent: 2 - uid: 1729 components: - type: Transform - pos: -74.5,74.5 + pos: -46.5,66.5 parent: 2 - uid: 1730 components: - type: Transform - pos: -72.5,74.5 + pos: -45.5,66.5 parent: 2 - uid: 1731 components: - type: Transform - pos: -71.5,74.5 + pos: -45.5,67.5 parent: 2 - uid: 1732 components: - type: Transform - pos: -70.5,74.5 + pos: -51.5,50.5 parent: 2 - uid: 1733 components: - type: Transform - pos: -69.5,74.5 + pos: -76.5,46.5 parent: 2 - uid: 1734 components: - type: Transform - pos: -68.5,74.5 + pos: -42.5,46.5 parent: 2 - uid: 1735 components: - type: Transform - pos: -73.5,74.5 + pos: -128.5,7.5 parent: 2 - uid: 1736 components: - type: Transform - pos: -67.5,74.5 + pos: -76.5,38.5 parent: 2 - uid: 1737 components: - type: Transform - pos: -74.5,69.5 + pos: -59.5,38.5 parent: 2 - uid: 1738 components: - type: Transform - pos: -72.5,69.5 + pos: -58.5,38.5 parent: 2 - uid: 1739 components: - type: Transform - pos: -73.5,69.5 + pos: -62.5,38.5 parent: 2 - uid: 1740 components: - type: Transform - pos: -64.5,75.5 + pos: -61.5,38.5 parent: 2 - uid: 1741 components: - type: Transform - pos: -64.5,73.5 + pos: -27.5,37.5 parent: 2 - uid: 1742 components: - type: Transform - pos: -64.5,72.5 + pos: -71.5,46.5 parent: 2 - uid: 1743 components: - type: Transform - pos: -64.5,71.5 + pos: -70.5,46.5 parent: 2 - uid: 1744 components: - type: Transform - pos: -64.5,74.5 + pos: -70.5,47.5 parent: 2 - uid: 1745 components: - type: Transform - pos: -62.5,71.5 + pos: -71.5,47.5 parent: 2 - uid: 1746 components: - type: Transform - pos: -62.5,73.5 + pos: -26.5,37.5 parent: 2 - uid: 1747 components: - type: Transform - pos: -62.5,74.5 + pos: -26.5,38.5 parent: 2 - uid: 1748 components: - type: Transform - pos: -62.5,75.5 + pos: -76.5,36.5 parent: 2 - uid: 1749 components: - type: Transform - pos: -62.5,72.5 + pos: -76.5,37.5 parent: 2 - uid: 1750 components: - type: Transform - pos: -60.5,75.5 + pos: -70.5,43.5 parent: 2 - uid: 1751 components: - type: Transform - pos: -60.5,75.5 + pos: -70.5,42.5 parent: 2 - uid: 1752 components: - type: Transform - pos: -60.5,73.5 + pos: -69.5,43.5 parent: 2 - uid: 1753 components: - type: Transform - pos: -60.5,72.5 + pos: -69.5,42.5 parent: 2 - uid: 1754 components: - type: Transform - pos: -60.5,71.5 + pos: -68.5,43.5 parent: 2 - uid: 1755 components: - type: Transform - pos: -60.5,74.5 + pos: -68.5,42.5 parent: 2 - uid: 1756 components: - type: Transform - pos: -58.5,75.5 + pos: -75.5,36.5 parent: 2 - uid: 1757 components: - type: Transform - pos: -58.5,73.5 + pos: -75.5,37.5 parent: 2 - uid: 1758 components: - type: Transform - pos: -58.5,72.5 + pos: -75.5,38.5 parent: 2 - uid: 1759 components: - type: Transform - pos: -58.5,74.5 + pos: -74.5,37.5 parent: 2 - uid: 1760 components: - type: Transform - pos: -58.5,71.5 + pos: -74.5,38.5 parent: 2 - uid: 1761 components: - type: Transform - pos: -57.5,75.5 + pos: -73.5,36.5 parent: 2 - uid: 1762 components: - type: Transform - pos: -57.5,74.5 + pos: -74.5,36.5 parent: 2 - uid: 1763 components: - type: Transform - pos: -57.5,73.5 + pos: -73.5,37.5 parent: 2 - uid: 1764 components: - type: Transform - pos: -57.5,72.5 + pos: -73.5,38.5 parent: 2 - uid: 1765 components: - type: Transform - pos: -57.5,71.5 + pos: -25.5,37.5 parent: 2 - uid: 1766 components: - type: Transform - pos: -62.5,78.5 + pos: -25.5,38.5 parent: 2 - uid: 1767 components: - type: Transform - pos: -60.5,78.5 + pos: -27.5,38.5 parent: 2 - uid: 1768 components: - type: Transform - pos: -61.5,78.5 + pos: -24.5,37.5 parent: 2 - uid: 1769 components: - type: Transform - pos: -70.5,77.5 + pos: -24.5,38.5 parent: 2 - uid: 1770 components: - type: Transform - pos: -68.5,77.5 + pos: -34.5,39.5 parent: 2 - uid: 1771 components: - type: Transform - pos: -69.5,77.5 + pos: -33.5,39.5 parent: 2 - uid: 1772 components: - type: Transform - pos: -53.5,77.5 + pos: -33.5,40.5 parent: 2 - uid: 1773 components: - type: Transform - pos: -51.5,77.5 + pos: -34.5,40.5 parent: 2 - uid: 1774 components: - type: Transform - pos: -52.5,77.5 + pos: -38.5,38.5 parent: 2 - uid: 1775 components: - type: Transform - pos: -53.5,74.5 + pos: -37.5,38.5 parent: 2 - uid: 1776 components: - type: Transform - pos: -51.5,74.5 + pos: -37.5,39.5 parent: 2 - uid: 1777 components: - type: Transform - pos: -50.5,74.5 + pos: -38.5,39.5 parent: 2 - uid: 1778 components: - type: Transform - pos: -49.5,74.5 + pos: -38.5,34.5 parent: 2 - uid: 1779 components: - type: Transform - pos: -52.5,74.5 + pos: -38.5,35.5 parent: 2 - uid: 1780 components: - type: Transform - pos: -55.5,74.5 + pos: -35.5,35.5 parent: 2 - uid: 1781 components: - type: Transform - pos: -54.5,74.5 + pos: -34.5,35.5 parent: 2 - uid: 1782 components: - type: Transform - pos: -55.5,72.5 + pos: -44.5,35.5 parent: 2 - uid: 1783 components: - type: Transform - pos: -53.5,72.5 + pos: -44.5,37.5 parent: 2 - uid: 1784 components: - type: Transform - pos: -52.5,72.5 + pos: -43.5,35.5 parent: 2 - uid: 1785 components: - type: Transform - pos: -51.5,72.5 + pos: -43.5,37.5 parent: 2 - uid: 1786 components: - type: Transform - pos: -50.5,72.5 + pos: -42.5,35.5 parent: 2 - uid: 1787 components: - type: Transform - pos: -49.5,72.5 + pos: -44.5,36.5 parent: 2 - uid: 1788 components: - type: Transform - pos: -48.5,72.5 + pos: -42.5,36.5 parent: 2 - uid: 1789 components: - type: Transform - pos: -54.5,72.5 + pos: -42.5,37.5 parent: 2 - uid: 1790 components: - type: Transform - pos: -55.5,69.5 + pos: -43.5,36.5 parent: 2 - uid: 1791 components: - type: Transform - pos: -54.5,69.5 + pos: -37.5,30.5 parent: 2 - uid: 1792 components: - type: Transform - pos: -46.5,73.5 + pos: -41.5,24.5 parent: 2 - uid: 1793 components: - type: Transform - pos: -46.5,72.5 + pos: -40.5,24.5 parent: 2 - uid: 1794 components: - type: Transform - pos: -45.5,72.5 + pos: -39.5,24.5 parent: 2 - uid: 1795 components: - type: Transform - pos: -45.5,73.5 + pos: -34.5,24.5 parent: 2 - uid: 1796 components: - type: Transform - pos: -68.5,69.5 + pos: -41.5,22.5 parent: 2 - uid: 1797 components: - type: Transform - pos: -67.5,69.5 + pos: -40.5,21.5 parent: 2 - uid: 1798 components: - type: Transform - pos: -67.5,70.5 + pos: -33.5,29.5 parent: 2 - uid: 1799 components: - type: Transform - pos: -68.5,70.5 + pos: -29.5,29.5 parent: 2 - uid: 1800 components: - type: Transform - pos: -71.5,6.5 + pos: -44.5,34.5 parent: 2 - uid: 1801 components: - type: Transform - pos: -97.5,18.5 + pos: -42.5,34.5 parent: 2 - uid: 1802 components: - type: Transform - pos: -49.5,70.5 + pos: -43.5,34.5 parent: 2 - uid: 1803 components: - type: Transform - pos: -50.5,70.5 + pos: -51.5,36.5 parent: 2 - uid: 1804 components: - type: Transform - pos: -51.5,70.5 + pos: -51.5,35.5 parent: 2 - uid: 1805 components: - type: Transform - pos: -47.5,68.5 + pos: -56.5,36.5 parent: 2 - uid: 1806 components: - type: Transform - pos: -47.5,67.5 + pos: -56.5,34.5 parent: 2 - uid: 1807 components: - type: Transform - pos: -46.5,68.5 + pos: -55.5,36.5 parent: 2 - uid: 1808 components: - type: Transform - pos: -46.5,67.5 + pos: -56.5,35.5 parent: 2 - uid: 1809 components: - type: Transform - pos: -46.5,65.5 + pos: -55.5,35.5 parent: 2 - uid: 1810 components: - type: Transform - pos: -46.5,66.5 + pos: -55.5,34.5 parent: 2 - uid: 1811 components: - type: Transform - pos: -45.5,66.5 + pos: -62.5,36.5 parent: 2 - uid: 1812 components: - type: Transform - pos: -45.5,67.5 + pos: -62.5,34.5 parent: 2 - uid: 1813 components: - type: Transform - pos: -51.5,50.5 + pos: -61.5,36.5 parent: 2 - uid: 1814 components: - type: Transform - pos: -76.5,46.5 + pos: -62.5,35.5 parent: 2 - uid: 1815 components: - type: Transform - pos: -42.5,46.5 + pos: -61.5,35.5 parent: 2 - uid: 1816 components: - type: Transform - pos: -128.5,7.5 + pos: -61.5,34.5 parent: 2 - uid: 1817 components: - type: Transform - pos: -76.5,38.5 + pos: -60.5,34.5 parent: 2 - uid: 1818 components: - type: Transform - pos: -57.5,43.5 + pos: -60.5,36.5 parent: 2 - uid: 1819 components: - type: Transform - pos: -57.5,45.5 + pos: -60.5,35.5 parent: 2 - uid: 1820 components: - type: Transform - pos: -56.5,43.5 + pos: -62.5,37.5 parent: 2 - uid: 1821 components: - type: Transform - pos: -59.5,38.5 + pos: -61.5,37.5 parent: 2 - uid: 1822 components: - type: Transform - pos: -56.5,45.5 + pos: -60.5,37.5 parent: 2 - uid: 1823 components: - type: Transform - pos: -57.5,44.5 + pos: -67.5,38.5 parent: 2 - uid: 1824 components: - type: Transform - pos: -58.5,38.5 + pos: -67.5,36.5 parent: 2 - uid: 1825 components: - type: Transform - pos: -62.5,38.5 + pos: -66.5,38.5 parent: 2 - uid: 1826 components: - type: Transform - pos: -61.5,38.5 + pos: -66.5,37.5 parent: 2 - uid: 1827 components: - type: Transform - pos: -27.5,37.5 + pos: -66.5,36.5 parent: 2 - uid: 1828 components: - type: Transform - pos: -71.5,46.5 + pos: -67.5,37.5 parent: 2 - uid: 1829 components: - type: Transform - pos: -70.5,46.5 + pos: -64.5,28.5 parent: 2 - uid: 1830 components: - type: Transform - pos: -70.5,47.5 + pos: -64.5,27.5 parent: 2 - uid: 1831 components: - type: Transform - pos: -71.5,47.5 + pos: -64.5,29.5 parent: 2 - uid: 1832 components: - type: Transform - pos: -26.5,37.5 + pos: -64.5,30.5 parent: 2 - uid: 1833 components: - type: Transform - pos: -26.5,38.5 + pos: -65.5,36.5 parent: 2 - uid: 1834 components: - type: Transform - pos: -76.5,36.5 + pos: -65.5,38.5 parent: 2 - uid: 1835 components: - type: Transform - pos: -76.5,37.5 + pos: -65.5,37.5 parent: 2 - uid: 1836 components: - type: Transform - pos: -70.5,43.5 + pos: -64.5,41.5 parent: 2 - uid: 1837 components: - type: Transform - pos: -70.5,42.5 + pos: -63.5,41.5 parent: 2 - uid: 1838 components: - type: Transform - pos: -69.5,43.5 + pos: -61.5,43.5 parent: 2 - uid: 1839 components: - type: Transform - pos: -69.5,42.5 + pos: -61.5,42.5 parent: 2 - uid: 1840 components: - type: Transform - pos: -68.5,43.5 + pos: -76.5,45.5 parent: 2 - uid: 1841 components: - type: Transform - pos: -68.5,42.5 + pos: -74.5,45.5 parent: 2 - uid: 1842 components: - type: Transform - pos: -75.5,36.5 + pos: -75.5,45.5 parent: 2 - uid: 1843 components: - type: Transform - pos: -75.5,37.5 + pos: -79.5,45.5 parent: 2 - uid: 1844 components: - type: Transform - pos: -75.5,38.5 + pos: -80.5,45.5 parent: 2 - uid: 1845 components: - type: Transform - pos: -74.5,37.5 + pos: -81.5,48.5 parent: 2 - uid: 1846 components: - type: Transform - pos: -74.5,38.5 + pos: -81.5,46.5 parent: 2 - uid: 1847 components: - type: Transform - pos: -73.5,36.5 + pos: -81.5,45.5 parent: 2 - uid: 1848 components: - type: Transform - pos: -74.5,36.5 + pos: -81.5,44.5 parent: 2 - uid: 1849 components: - type: Transform - pos: -73.5,37.5 + pos: -81.5,47.5 parent: 2 - uid: 1850 components: - type: Transform - pos: -73.5,38.5 + pos: -82.5,44.5 parent: 2 - uid: 1851 components: - type: Transform - pos: -25.5,37.5 + pos: -82.5,42.5 parent: 2 - uid: 1852 components: - type: Transform - pos: -25.5,38.5 + pos: -82.5,43.5 parent: 2 - uid: 1853 components: - type: Transform - pos: -27.5,38.5 + pos: -85.5,42.5 parent: 2 - uid: 1854 components: - type: Transform - pos: -24.5,37.5 + pos: -86.5,42.5 parent: 2 - uid: 1855 components: - type: Transform - pos: -24.5,38.5 + pos: -84.5,42.5 parent: 2 - uid: 1856 components: - type: Transform - pos: -34.5,39.5 + pos: -87.5,42.5 parent: 2 - uid: 1857 components: - type: Transform - pos: -33.5,39.5 + pos: -88.5,42.5 parent: 2 - uid: 1858 components: - type: Transform - pos: -33.5,40.5 + pos: -89.5,42.5 parent: 2 - uid: 1859 components: - type: Transform - pos: -34.5,40.5 + pos: -89.5,43.5 parent: 2 - uid: 1860 components: - type: Transform - pos: -38.5,38.5 + pos: -89.5,45.5 parent: 2 - uid: 1861 components: - type: Transform - pos: -37.5,38.5 + pos: -89.5,46.5 parent: 2 - uid: 1862 components: - type: Transform - pos: -37.5,39.5 + pos: -89.5,47.5 parent: 2 - uid: 1863 components: - type: Transform - pos: -38.5,39.5 + pos: -89.5,44.5 parent: 2 - uid: 1864 components: - type: Transform - pos: -38.5,34.5 + pos: -90.5,46.5 parent: 2 - uid: 1865 components: - type: Transform - pos: -38.5,35.5 + pos: -90.5,44.5 parent: 2 - uid: 1866 components: - type: Transform - pos: -35.5,35.5 + pos: -90.5,45.5 parent: 2 - uid: 1867 components: - type: Transform - pos: -34.5,35.5 + pos: -88.5,44.5 parent: 2 - uid: 1868 components: - type: Transform - pos: -44.5,35.5 + pos: -87.5,44.5 parent: 2 - uid: 1869 components: - type: Transform - pos: -44.5,37.5 + pos: -86.5,44.5 parent: 2 - uid: 1870 components: - type: Transform - pos: -43.5,35.5 + pos: -85.5,44.5 parent: 2 - uid: 1871 components: - type: Transform - pos: -43.5,37.5 + pos: -85.5,43.5 parent: 2 - uid: 1872 components: - type: Transform - pos: -42.5,35.5 + pos: -86.5,45.5 parent: 2 - uid: 1873 components: - type: Transform - pos: -44.5,36.5 + pos: -85.5,45.5 parent: 2 - uid: 1874 components: - type: Transform - pos: -42.5,36.5 + pos: -88.5,47.5 parent: 2 - uid: 1875 components: - type: Transform - pos: -42.5,37.5 + pos: -88.5,49.5 parent: 2 - uid: 1876 components: - type: Transform - pos: -43.5,36.5 + pos: -88.5,50.5 parent: 2 - uid: 1877 components: - type: Transform - pos: -37.5,30.5 + pos: -88.5,48.5 parent: 2 - uid: 1878 components: - type: Transform - pos: -41.5,24.5 + pos: -89.5,50.5 parent: 2 - uid: 1879 components: - type: Transform - pos: -40.5,24.5 + pos: -89.5,49.5 parent: 2 - uid: 1880 components: - type: Transform - pos: -39.5,24.5 + pos: -90.5,50.5 parent: 2 - uid: 1881 components: - type: Transform - pos: -34.5,24.5 + pos: -91.5,50.5 parent: 2 - uid: 1882 components: - type: Transform - pos: -41.5,22.5 + pos: -91.5,51.5 parent: 2 - uid: 1883 components: - type: Transform - pos: -40.5,21.5 + pos: -92.5,50.5 parent: 2 - uid: 1884 components: - type: Transform - pos: -33.5,29.5 + pos: -92.5,51.5 parent: 2 - uid: 1885 components: - type: Transform - pos: -29.5,29.5 + pos: -90.5,51.5 parent: 2 - uid: 1886 components: - type: Transform - pos: -44.5,34.5 + pos: -93.5,51.5 parent: 2 - uid: 1887 components: - type: Transform - pos: -42.5,34.5 + pos: -94.5,51.5 parent: 2 - uid: 1888 components: - type: Transform - pos: -43.5,34.5 + pos: -63.5,49.5 parent: 2 - uid: 1889 components: - type: Transform - pos: -51.5,36.5 + pos: -40.5,71.5 parent: 2 - uid: 1890 components: - type: Transform - pos: -51.5,35.5 + pos: -62.5,46.5 parent: 2 - uid: 1891 components: - type: Transform - pos: -56.5,36.5 + pos: -64.5,53.5 parent: 2 - uid: 1892 components: - type: Transform - pos: -56.5,34.5 + pos: -63.5,47.5 parent: 2 - uid: 1893 components: - type: Transform - pos: -55.5,36.5 + pos: -63.5,46.5 parent: 2 - uid: 1894 components: - type: Transform - pos: -56.5,35.5 + pos: -63.5,52.5 parent: 2 - uid: 1895 components: - type: Transform - pos: -55.5,35.5 + pos: -63.5,53.5 parent: 2 - uid: 1896 components: - type: Transform - pos: -55.5,34.5 + pos: -87.5,40.5 parent: 2 - uid: 1897 components: - type: Transform - pos: -62.5,36.5 + pos: -88.5,40.5 parent: 2 - uid: 1898 components: - type: Transform - pos: -62.5,34.5 + pos: -86.5,40.5 parent: 2 - uid: 1899 components: - type: Transform - pos: -61.5,36.5 + pos: -85.5,40.5 parent: 2 - uid: 1900 components: - type: Transform - pos: -62.5,35.5 + pos: -85.5,41.5 parent: 2 - uid: 1901 components: - type: Transform - pos: -61.5,35.5 + pos: -85.5,39.5 parent: 2 - uid: 1902 components: - type: Transform - pos: -61.5,34.5 + pos: -85.5,39.5 parent: 2 - uid: 1903 components: - type: Transform - pos: -60.5,34.5 + pos: -83.5,39.5 parent: 2 - uid: 1904 components: - type: Transform - pos: -60.5,36.5 + pos: -82.5,39.5 parent: 2 - uid: 1905 components: - type: Transform - pos: -60.5,35.5 + pos: -84.5,39.5 parent: 2 - uid: 1906 components: - type: Transform - pos: -62.5,37.5 + pos: -81.5,39.5 parent: 2 - uid: 1907 components: - type: Transform - pos: -61.5,37.5 + pos: -84.5,38.5 parent: 2 - uid: 1908 components: - type: Transform - pos: -60.5,37.5 + pos: -82.5,38.5 parent: 2 - uid: 1909 components: - type: Transform - pos: -67.5,38.5 + pos: -81.5,38.5 parent: 2 - uid: 1910 components: - type: Transform - pos: -67.5,36.5 + pos: -83.5,38.5 parent: 2 - uid: 1911 components: - type: Transform - pos: -66.5,38.5 + pos: -82.5,37.5 parent: 2 - uid: 1912 components: - type: Transform - pos: -66.5,37.5 + pos: -81.5,37.5 parent: 2 - uid: 1913 components: - type: Transform - pos: -66.5,36.5 + pos: -81.5,36.5 parent: 2 - uid: 1914 components: - type: Transform - pos: -67.5,37.5 + pos: -82.5,36.5 parent: 2 - uid: 1915 components: - type: Transform - pos: -64.5,28.5 + pos: -80.5,36.5 parent: 2 - uid: 1916 components: - type: Transform - pos: -64.5,27.5 + pos: -81.5,35.5 parent: 2 - uid: 1917 components: - type: Transform - pos: -64.5,29.5 + pos: -81.5,33.5 parent: 2 - uid: 1918 components: - type: Transform - pos: -64.5,30.5 + pos: -81.5,34.5 parent: 2 - uid: 1919 components: - type: Transform - pos: -65.5,36.5 + pos: -83.5,34.5 parent: 2 - uid: 1920 components: - type: Transform - pos: -65.5,38.5 + pos: -82.5,34.5 parent: 2 - uid: 1921 components: - type: Transform - pos: -65.5,37.5 + pos: -82.5,33.5 parent: 2 - uid: 1922 components: - type: Transform - pos: -64.5,41.5 + pos: -83.5,33.5 parent: 2 - uid: 1923 components: - type: Transform - pos: -63.5,41.5 + pos: -84.5,34.5 parent: 2 - uid: 1924 components: - type: Transform - pos: -61.5,43.5 + pos: -85.5,34.5 parent: 2 - uid: 1925 components: - type: Transform - pos: -61.5,42.5 + pos: -85.5,35.5 parent: 2 - uid: 1926 components: - type: Transform - pos: -76.5,45.5 + pos: -86.5,35.5 parent: 2 - uid: 1927 components: - type: Transform - pos: -74.5,45.5 + pos: -87.5,35.5 parent: 2 - uid: 1928 components: - type: Transform - pos: -75.5,45.5 + pos: -86.5,36.5 parent: 2 - uid: 1929 components: - type: Transform - pos: -79.5,45.5 + pos: -86.5,37.5 parent: 2 - uid: 1930 components: - type: Transform - pos: -80.5,45.5 + pos: -87.5,34.5 parent: 2 - uid: 1931 components: - type: Transform - pos: -81.5,48.5 + pos: -88.5,33.5 parent: 2 - uid: 1932 components: - type: Transform - pos: -81.5,46.5 + pos: -89.5,33.5 parent: 2 - uid: 1933 components: - type: Transform - pos: -81.5,45.5 + pos: -90.5,33.5 parent: 2 - uid: 1934 components: - type: Transform - pos: -81.5,44.5 + pos: -91.5,33.5 parent: 2 - uid: 1935 components: - type: Transform - pos: -81.5,47.5 + pos: -92.5,33.5 parent: 2 - uid: 1936 components: - type: Transform - pos: -82.5,44.5 + pos: -93.5,33.5 parent: 2 - uid: 1937 components: - type: Transform - pos: -82.5,42.5 + pos: -94.5,33.5 parent: 2 - uid: 1938 components: - type: Transform - pos: -82.5,43.5 + pos: -95.5,33.5 parent: 2 - uid: 1939 components: - type: Transform - pos: -85.5,42.5 + pos: -96.5,33.5 parent: 2 - uid: 1940 components: - type: Transform - pos: -86.5,42.5 + pos: -97.5,33.5 parent: 2 - uid: 1941 components: - type: Transform - pos: -84.5,42.5 + pos: -98.5,33.5 parent: 2 - uid: 1942 components: - type: Transform - pos: -87.5,42.5 + pos: -99.5,33.5 parent: 2 - uid: 1943 components: - type: Transform - pos: -88.5,42.5 + pos: -100.5,33.5 parent: 2 - uid: 1944 components: - type: Transform - pos: -89.5,42.5 + pos: -101.5,34.5 parent: 2 - uid: 1945 components: - type: Transform - pos: -89.5,43.5 + pos: -101.5,36.5 parent: 2 - uid: 1946 components: - type: Transform - pos: -89.5,45.5 + pos: -101.5,35.5 parent: 2 - uid: 1947 components: - type: Transform - pos: -89.5,46.5 + pos: -102.5,36.5 parent: 2 - uid: 1948 components: - type: Transform - pos: -89.5,47.5 + pos: -104.5,36.5 parent: 2 - uid: 1949 components: - type: Transform - pos: -89.5,44.5 + pos: -105.5,36.5 parent: 2 - uid: 1950 components: - type: Transform - pos: -90.5,46.5 + pos: -106.5,36.5 parent: 2 - uid: 1951 components: - type: Transform - pos: -90.5,44.5 + pos: -107.5,36.5 parent: 2 - uid: 1952 components: - type: Transform - pos: -90.5,45.5 + pos: -103.5,36.5 parent: 2 - uid: 1953 components: - type: Transform - pos: -88.5,44.5 + pos: -108.5,36.5 parent: 2 - uid: 1954 components: - type: Transform - pos: -87.5,44.5 + pos: -109.5,36.5 parent: 2 - uid: 1955 components: - type: Transform - pos: -86.5,44.5 + pos: -112.5,36.5 parent: 2 - uid: 1956 components: - type: Transform - pos: -85.5,44.5 + pos: -110.5,36.5 parent: 2 - uid: 1957 components: - type: Transform - pos: -85.5,43.5 + pos: -113.5,36.5 parent: 2 - uid: 1958 components: - type: Transform - pos: -86.5,45.5 + pos: -114.5,36.5 parent: 2 - uid: 1959 components: - type: Transform - pos: -85.5,45.5 + pos: -115.5,36.5 parent: 2 - uid: 1960 components: - type: Transform - pos: -88.5,47.5 + pos: -116.5,36.5 parent: 2 - uid: 1961 components: - type: Transform - pos: -88.5,49.5 + pos: -111.5,36.5 parent: 2 - uid: 1962 components: - type: Transform - pos: -88.5,50.5 + pos: -117.5,34.5 parent: 2 - uid: 1963 components: - type: Transform - pos: -88.5,48.5 + pos: -117.5,36.5 parent: 2 - uid: 1964 components: - type: Transform - pos: -89.5,50.5 + pos: -117.5,35.5 parent: 2 - uid: 1965 components: - type: Transform - pos: -89.5,49.5 + pos: -118.5,32.5 parent: 2 - uid: 1966 components: - type: Transform - pos: -90.5,50.5 + pos: -118.5,31.5 parent: 2 - uid: 1967 components: - type: Transform - pos: -91.5,50.5 + pos: -117.5,32.5 parent: 2 - uid: 1968 components: - type: Transform - pos: -91.5,51.5 + pos: -81.5,32.5 parent: 2 - uid: 1969 components: - type: Transform - pos: -92.5,50.5 + pos: -81.5,30.5 parent: 2 - uid: 1970 components: - type: Transform - pos: -92.5,51.5 + pos: -81.5,29.5 parent: 2 - uid: 1971 components: - type: Transform - pos: -90.5,51.5 + pos: -81.5,28.5 parent: 2 - uid: 1972 components: - type: Transform - pos: -93.5,51.5 + pos: -81.5,27.5 parent: 2 - uid: 1973 components: - type: Transform - pos: -94.5,51.5 + pos: -81.5,31.5 parent: 2 - uid: 1974 components: - type: Transform - pos: -102.5,46.5 + pos: -81.5,26.5 parent: 2 - uid: 1975 components: - type: Transform - pos: -101.5,48.5 + pos: -82.5,29.5 parent: 2 - uid: 1976 components: - type: Transform - pos: -101.5,47.5 + pos: -83.5,29.5 parent: 2 - uid: 1977 components: - type: Transform - pos: -101.5,46.5 + pos: -96.5,18.5 parent: 2 - uid: 1978 components: - type: Transform - pos: -100.5,48.5 + pos: -96.5,17.5 parent: 2 - uid: 1979 components: - type: Transform - pos: -102.5,47.5 + pos: -97.5,17.5 parent: 2 - uid: 1980 components: - type: Transform - pos: -100.5,46.5 + pos: -94.5,17.5 parent: 2 - uid: 1981 components: - type: Transform - pos: -99.5,48.5 + pos: -94.5,18.5 parent: 2 - uid: 1982 components: - type: Transform - pos: -100.5,47.5 + pos: -93.5,19.5 parent: 2 - uid: 1983 components: - type: Transform - pos: -99.5,47.5 + pos: -91.5,19.5 parent: 2 - uid: 1984 components: - type: Transform - pos: -99.5,46.5 + pos: -92.5,19.5 parent: 2 - uid: 1985 components: - type: Transform - pos: -98.5,48.5 + pos: -91.5,18.5 parent: 2 - uid: 1986 components: - type: Transform - pos: -98.5,47.5 + pos: -93.5,20.5 parent: 2 - uid: 1987 components: - type: Transform - pos: -98.5,46.5 + pos: -93.5,22.5 parent: 2 - uid: 1988 components: - type: Transform - pos: -97.5,42.5 + pos: -93.5,21.5 parent: 2 - uid: 1989 components: - type: Transform - pos: -101.5,43.5 + pos: -91.5,22.5 parent: 2 - uid: 1990 components: - type: Transform - pos: -100.5,43.5 + pos: -89.5,22.5 parent: 2 - uid: 1991 components: - type: Transform - pos: -96.5,50.5 + pos: -90.5,22.5 parent: 2 - uid: 1992 components: - type: Transform - pos: -96.5,49.5 + pos: -89.5,23.5 parent: 2 - uid: 1993 components: - type: Transform - pos: -96.5,47.5 + pos: -87.5,23.5 parent: 2 - uid: 1994 components: - type: Transform - pos: -96.5,48.5 + pos: -86.5,23.5 parent: 2 - uid: 1995 components: - type: Transform - pos: -101.5,51.5 + pos: -88.5,23.5 parent: 2 - uid: 1996 components: - type: Transform - pos: -100.5,51.5 + pos: -85.5,23.5 parent: 2 - uid: 1997 components: - type: Transform - pos: -100.5,50.5 + pos: -91.5,26.5 parent: 2 - uid: 1998 components: - type: Transform - pos: -99.5,51.5 + pos: -91.5,27.5 parent: 2 - uid: 1999 components: - type: Transform - pos: -99.5,50.5 + pos: -87.5,27.5 parent: 2 - uid: 2000 components: - type: Transform - pos: -101.5,50.5 + pos: -87.5,26.5 parent: 2 - uid: 2001 components: - type: Transform - pos: -87.5,40.5 + pos: -91.5,28.5 parent: 2 - uid: 2002 components: - type: Transform - pos: -88.5,40.5 + pos: -87.5,28.5 parent: 2 - uid: 2003 components: - type: Transform - pos: -86.5,40.5 + pos: -90.5,26.5 parent: 2 - uid: 2004 components: - type: Transform - pos: -85.5,40.5 + pos: -88.5,28.5 parent: 2 - uid: 2005 components: - type: Transform - pos: -85.5,41.5 + pos: -83.5,24.5 parent: 2 - uid: 2006 components: - type: Transform - pos: -85.5,39.5 + pos: -90.5,28.5 parent: 2 - uid: 2007 components: - type: Transform - pos: -85.5,39.5 + pos: -84.5,24.5 parent: 2 - uid: 2008 components: - type: Transform - pos: -83.5,39.5 + pos: -88.5,26.5 parent: 2 - uid: 2009 components: - type: Transform - pos: -82.5,39.5 + pos: -86.5,21.5 parent: 2 - uid: 2010 components: - type: Transform - pos: -84.5,39.5 + pos: -86.5,19.5 parent: 2 - uid: 2011 components: - type: Transform - pos: -81.5,39.5 + pos: -86.5,18.5 parent: 2 - uid: 2012 components: - type: Transform - pos: -84.5,38.5 + pos: -86.5,20.5 parent: 2 - uid: 2013 components: - type: Transform - pos: -82.5,38.5 + pos: -88.5,18.5 parent: 2 - uid: 2014 components: - type: Transform - pos: -81.5,38.5 + pos: -87.5,18.5 parent: 2 - uid: 2015 components: - type: Transform - pos: -83.5,38.5 + pos: -87.5,16.5 parent: 2 - uid: 2016 components: - type: Transform - pos: -82.5,37.5 + pos: -87.5,14.5 parent: 2 - uid: 2017 components: - type: Transform - pos: -81.5,37.5 + pos: -87.5,15.5 parent: 2 - uid: 2018 components: - type: Transform - pos: -81.5,36.5 + pos: -86.5,14.5 parent: 2 - uid: 2019 components: - type: Transform - pos: -82.5,36.5 + pos: -84.5,14.5 parent: 2 - uid: 2020 components: - type: Transform - pos: -80.5,36.5 + pos: -83.5,14.5 parent: 2 - uid: 2021 components: - type: Transform - pos: -81.5,35.5 + pos: -85.5,14.5 parent: 2 - uid: 2022 components: - type: Transform - pos: -81.5,33.5 + pos: -92.5,13.5 parent: 2 - uid: 2023 components: - type: Transform - pos: -81.5,34.5 + pos: -92.5,11.5 parent: 2 - uid: 2024 components: - type: Transform - pos: -83.5,34.5 + pos: -92.5,10.5 parent: 2 - uid: 2025 components: - type: Transform - pos: -82.5,34.5 + pos: -92.5,9.5 parent: 2 - uid: 2026 components: - type: Transform - pos: -82.5,33.5 + pos: -92.5,12.5 parent: 2 - uid: 2027 components: - type: Transform - pos: -83.5,33.5 + pos: -91.5,13.5 parent: 2 - uid: 2028 components: - type: Transform - pos: -84.5,34.5 + pos: -91.5,13.5 parent: 2 - uid: 2029 components: - type: Transform - pos: -85.5,34.5 + pos: -91.5,11.5 parent: 2 - uid: 2030 components: - type: Transform - pos: -85.5,35.5 + pos: -91.5,10.5 parent: 2 - uid: 2031 components: - type: Transform - pos: -86.5,35.5 + pos: -91.5,9.5 parent: 2 - uid: 2032 components: - type: Transform - pos: -87.5,35.5 + pos: -90.5,13.5 parent: 2 - uid: 2033 components: - type: Transform - pos: -86.5,36.5 + pos: -90.5,12.5 parent: 2 - uid: 2034 components: - type: Transform - pos: -86.5,37.5 + pos: -91.5,12.5 parent: 2 - uid: 2035 components: - type: Transform - pos: -87.5,34.5 + pos: -90.5,11.5 parent: 2 - uid: 2036 components: - type: Transform - pos: -88.5,33.5 + pos: -89.5,13.5 parent: 2 - uid: 2037 components: - type: Transform - pos: -89.5,33.5 + pos: -90.5,9.5 parent: 2 - uid: 2038 components: - type: Transform - pos: -90.5,33.5 + pos: -89.5,12.5 parent: 2 - uid: 2039 components: - type: Transform - pos: -91.5,33.5 + pos: -89.5,11.5 parent: 2 - uid: 2040 components: - type: Transform - pos: -92.5,33.5 + pos: -89.5,10.5 parent: 2 - uid: 2041 components: - type: Transform - pos: -93.5,33.5 + pos: -89.5,9.5 parent: 2 - uid: 2042 components: - type: Transform - pos: -94.5,33.5 + pos: -90.5,10.5 parent: 2 - uid: 2043 components: - type: Transform - pos: -95.5,33.5 + pos: -88.5,10.5 parent: 2 - uid: 2044 components: - type: Transform - pos: -96.5,33.5 + pos: -88.5,12.5 parent: 2 - uid: 2045 components: - type: Transform - pos: -97.5,33.5 + pos: -88.5,13.5 parent: 2 - uid: 2046 components: - type: Transform - pos: -98.5,33.5 + pos: -88.5,11.5 parent: 2 - uid: 2047 components: - type: Transform - pos: -99.5,33.5 + pos: -85.5,7.5 parent: 2 - uid: 2048 components: - type: Transform - pos: -100.5,33.5 + pos: -83.5,7.5 parent: 2 - uid: 2049 components: - type: Transform - pos: -101.5,34.5 + pos: -81.5,7.5 parent: 2 - uid: 2050 components: - type: Transform - pos: -101.5,36.5 + pos: -84.5,7.5 parent: 2 - uid: 2051 components: - type: Transform - pos: -101.5,35.5 + pos: -82.5,7.5 parent: 2 - uid: 2052 components: - type: Transform - pos: -102.5,36.5 + pos: -79.5,8.5 parent: 2 - uid: 2053 components: - type: Transform - pos: -104.5,36.5 + pos: -77.5,8.5 parent: 2 - uid: 2054 components: - type: Transform - pos: -105.5,36.5 + pos: -76.5,8.5 parent: 2 - uid: 2055 components: - type: Transform - pos: -106.5,36.5 + pos: -75.5,8.5 parent: 2 - uid: 2056 components: - type: Transform - pos: -107.5,36.5 + pos: -78.5,8.5 parent: 2 - uid: 2057 components: - type: Transform - pos: -103.5,36.5 + pos: -80.5,8.5 parent: 2 - uid: 2058 components: - type: Transform - pos: -108.5,36.5 + pos: -78.5,9.5 parent: 2 - uid: 2059 components: - type: Transform - pos: -109.5,36.5 + pos: -77.5,9.5 parent: 2 - uid: 2060 components: - type: Transform - pos: -112.5,36.5 + pos: -74.5,7.5 parent: 2 - uid: 2061 components: - type: Transform - pos: -110.5,36.5 + pos: -72.5,7.5 parent: 2 - uid: 2062 components: - type: Transform - pos: -113.5,36.5 + pos: -73.5,7.5 parent: 2 - uid: 2063 components: - type: Transform - pos: -114.5,36.5 + pos: -69.5,6.5 parent: 2 - uid: 2064 components: - type: Transform - pos: -115.5,36.5 + pos: -68.5,6.5 parent: 2 - uid: 2065 components: - type: Transform - pos: -116.5,36.5 + pos: -67.5,6.5 parent: 2 - uid: 2066 components: - type: Transform - pos: -111.5,36.5 + pos: -70.5,6.5 parent: 2 - uid: 2067 components: - type: Transform - pos: -117.5,34.5 + pos: -66.5,6.5 parent: 2 - uid: 2068 components: - type: Transform - pos: -117.5,36.5 + pos: -66.5,7.5 parent: 2 - uid: 2069 components: - type: Transform - pos: -117.5,35.5 + pos: -66.5,9.5 parent: 2 - uid: 2070 components: - type: Transform - pos: -118.5,32.5 + pos: -66.5,11.5 parent: 2 - uid: 2071 components: - type: Transform - pos: -118.5,31.5 + pos: -66.5,8.5 parent: 2 - uid: 2072 components: - type: Transform - pos: -117.5,32.5 + pos: -66.5,10.5 parent: 2 - uid: 2073 components: - type: Transform - pos: -81.5,32.5 + pos: -66.5,12.5 parent: 2 - uid: 2074 components: - type: Transform - pos: -81.5,30.5 + pos: -67.5,12.5 parent: 2 - uid: 2075 components: - type: Transform - pos: -81.5,29.5 + pos: -68.5,12.5 parent: 2 - uid: 2076 components: - type: Transform - pos: -81.5,28.5 + pos: -69.5,12.5 parent: 2 - uid: 2077 components: - type: Transform - pos: -81.5,27.5 + pos: -69.5,13.5 parent: 2 - uid: 2078 components: - type: Transform - pos: -81.5,31.5 + pos: -69.5,14.5 parent: 2 - uid: 2079 components: - type: Transform - pos: -81.5,26.5 + pos: -65.5,13.5 parent: 2 - uid: 2080 components: - type: Transform - pos: -82.5,29.5 + pos: -65.5,15.5 parent: 2 - uid: 2081 components: - type: Transform - pos: -83.5,29.5 + pos: -65.5,14.5 parent: 2 - uid: 2082 components: - type: Transform - pos: -96.5,18.5 + pos: -65.5,9.5 parent: 2 - uid: 2083 components: - type: Transform - pos: -96.5,17.5 + pos: -64.5,9.5 parent: 2 - uid: 2084 components: - type: Transform - pos: -97.5,17.5 + pos: -63.5,9.5 parent: 2 - uid: 2085 components: - type: Transform - pos: -94.5,17.5 + pos: -64.5,15.5 parent: 2 - uid: 2086 components: - type: Transform - pos: -94.5,18.5 + pos: -62.5,15.5 parent: 2 - uid: 2087 components: - type: Transform - pos: -93.5,19.5 + pos: -63.5,15.5 parent: 2 - uid: 2088 components: - type: Transform - pos: -91.5,19.5 + pos: -65.5,6.5 parent: 2 - uid: 2089 components: - type: Transform - pos: -92.5,19.5 + pos: -65.5,4.5 parent: 2 - uid: 2090 components: - type: Transform - pos: -91.5,18.5 + pos: -65.5,5.5 parent: 2 - uid: 2091 components: - type: Transform - pos: -93.5,20.5 + pos: -64.5,4.5 parent: 2 - uid: 2092 components: - type: Transform - pos: -93.5,22.5 + pos: -64.5,2.5 parent: 2 - uid: 2093 components: - type: Transform - pos: -93.5,21.5 + pos: -64.5,3.5 parent: 2 - uid: 2094 components: - type: Transform - pos: -91.5,22.5 + pos: -63.5,2.5 parent: 2 - uid: 2095 components: - type: Transform - pos: -89.5,22.5 + pos: -63.5,1.5 parent: 2 - uid: 2096 components: - type: Transform - pos: -90.5,22.5 + pos: -62.5,1.5 parent: 2 - uid: 2097 components: - type: Transform - pos: -89.5,23.5 + pos: -62.5,0.5 parent: 2 - uid: 2098 components: - type: Transform - pos: -87.5,23.5 + pos: -62.5,-0.5 parent: 2 - uid: 2099 components: - type: Transform - pos: -86.5,23.5 + pos: -61.5,-0.5 parent: 2 - uid: 2100 components: - type: Transform - pos: -88.5,23.5 + pos: -61.5,-1.5 parent: 2 - uid: 2101 components: - type: Transform - pos: -85.5,23.5 + pos: -61.5,-2.5 parent: 2 - uid: 2102 components: - type: Transform - pos: -91.5,26.5 + pos: -61.5,-3.5 parent: 2 - uid: 2103 components: - type: Transform - pos: -91.5,27.5 + pos: -60.5,-3.5 parent: 2 - uid: 2104 components: - type: Transform - pos: -87.5,27.5 + pos: -60.5,-4.5 parent: 2 - uid: 2105 components: - type: Transform - pos: -87.5,26.5 + pos: -60.5,-6.5 parent: 2 - uid: 2106 components: - type: Transform - pos: -91.5,28.5 + pos: -60.5,-7.5 parent: 2 - uid: 2107 components: - type: Transform - pos: -87.5,28.5 + pos: -60.5,-8.5 parent: 2 - uid: 2108 components: - type: Transform - pos: -90.5,26.5 + pos: -60.5,-9.5 parent: 2 - uid: 2109 components: - type: Transform - pos: -88.5,28.5 + pos: -60.5,-10.5 parent: 2 - uid: 2110 components: - type: Transform - pos: -83.5,24.5 + pos: -60.5,-11.5 parent: 2 - uid: 2111 components: - type: Transform - pos: -90.5,28.5 + pos: -60.5,-5.5 parent: 2 - uid: 2112 components: - type: Transform - pos: -84.5,24.5 + pos: -61.5,-10.5 parent: 2 - uid: 2113 components: - type: Transform - pos: -88.5,26.5 + pos: -63.5,-10.5 parent: 2 - uid: 2114 components: - type: Transform - pos: -86.5,21.5 + pos: -64.5,-10.5 parent: 2 - uid: 2115 components: - type: Transform - pos: -86.5,19.5 + pos: -65.5,-10.5 parent: 2 - uid: 2116 components: - type: Transform - pos: -86.5,18.5 + pos: -62.5,-10.5 parent: 2 - uid: 2117 components: - type: Transform - pos: -86.5,20.5 + pos: -65.5,-11.5 parent: 2 - uid: 2118 components: - type: Transform - pos: -88.5,18.5 + pos: -65.5,-12.5 parent: 2 - uid: 2119 components: - type: Transform - pos: -87.5,18.5 + pos: -59.5,-12.5 parent: 2 - uid: 2120 components: - type: Transform - pos: -87.5,16.5 + pos: -58.5,-12.5 parent: 2 - uid: 2121 components: - type: Transform - pos: -87.5,14.5 + pos: -58.5,-14.5 parent: 2 - uid: 2122 components: - type: Transform - pos: -87.5,15.5 + pos: -58.5,-15.5 parent: 2 - uid: 2123 components: - type: Transform - pos: -86.5,14.5 + pos: -58.5,-13.5 parent: 2 - uid: 2124 components: - type: Transform - pos: -84.5,14.5 + pos: -57.5,-15.5 parent: 2 - uid: 2125 components: - type: Transform - pos: -83.5,14.5 + pos: -55.5,-15.5 parent: 2 - uid: 2126 components: - type: Transform - pos: -85.5,14.5 + pos: -56.5,-15.5 parent: 2 - uid: 2127 components: - type: Transform - pos: -92.5,13.5 + pos: -60.5,-17.5 parent: 2 - uid: 2128 components: - type: Transform - pos: -92.5,11.5 + pos: -59.5,-17.5 parent: 2 - uid: 2129 components: - type: Transform - pos: -92.5,10.5 + pos: -58.5,5.5 parent: 2 - uid: 2130 components: - type: Transform - pos: -92.5,9.5 + pos: -58.5,3.5 parent: 2 - uid: 2131 components: - type: Transform - pos: -92.5,12.5 + pos: -58.5,2.5 parent: 2 - uid: 2132 components: - type: Transform - pos: -91.5,13.5 + pos: -58.5,1.5 parent: 2 - uid: 2133 components: - type: Transform - pos: -91.5,13.5 + pos: -57.5,5.5 parent: 2 - uid: 2134 components: - type: Transform - pos: -91.5,11.5 + pos: -58.5,4.5 parent: 2 - uid: 2135 components: - type: Transform - pos: -91.5,10.5 + pos: -57.5,4.5 parent: 2 - uid: 2136 components: - type: Transform - pos: -91.5,9.5 + pos: -57.5,3.5 parent: 2 - uid: 2137 components: - type: Transform - pos: -90.5,13.5 + pos: -57.5,2.5 parent: 2 - uid: 2138 components: - type: Transform - pos: -90.5,12.5 + pos: -56.5,5.5 parent: 2 - uid: 2139 components: - type: Transform - pos: -91.5,12.5 + pos: -56.5,4.5 parent: 2 - uid: 2140 components: - type: Transform - pos: -90.5,11.5 + pos: -56.5,3.5 parent: 2 - uid: 2141 components: - type: Transform - pos: -89.5,13.5 + pos: -56.5,1.5 parent: 2 - uid: 2142 components: - type: Transform - pos: -90.5,9.5 + pos: -56.5,2.5 parent: 2 - uid: 2143 components: - type: Transform - pos: -89.5,12.5 + pos: -57.5,1.5 parent: 2 - uid: 2144 components: - type: Transform - pos: -89.5,11.5 + pos: -55.5,4.5 parent: 2 - uid: 2145 components: - type: Transform - pos: -89.5,10.5 + pos: -55.5,5.5 parent: 2 - uid: 2146 components: - type: Transform - pos: -89.5,9.5 + pos: -55.5,3.5 parent: 2 - uid: 2147 components: - type: Transform - pos: -90.5,10.5 + pos: -55.5,2.5 parent: 2 - uid: 2148 components: - type: Transform - pos: -88.5,10.5 + pos: -55.5,1.5 parent: 2 - uid: 2149 components: - type: Transform - pos: -88.5,12.5 + pos: -54.5,5.5 parent: 2 - uid: 2150 components: - type: Transform - pos: -88.5,13.5 + pos: -54.5,4.5 parent: 2 - uid: 2151 components: - type: Transform - pos: -88.5,11.5 + pos: -54.5,3.5 parent: 2 - uid: 2152 components: - type: Transform - pos: -85.5,7.5 + pos: -54.5,2.5 parent: 2 - uid: 2153 components: - type: Transform - pos: -83.5,7.5 + pos: -53.5,5.5 parent: 2 - uid: 2154 components: - type: Transform - pos: -81.5,7.5 + pos: -53.5,3.5 parent: 2 - uid: 2155 components: - type: Transform - pos: -84.5,7.5 + pos: -53.5,2.5 parent: 2 - uid: 2156 components: - type: Transform - pos: -82.5,7.5 + pos: -53.5,4.5 parent: 2 - uid: 2157 components: - type: Transform - pos: -79.5,8.5 + pos: -53.5,1.5 parent: 2 - uid: 2158 components: - type: Transform - pos: -77.5,8.5 + pos: -54.5,1.5 parent: 2 - uid: 2159 components: - type: Transform - pos: -76.5,8.5 + pos: -56.5,19.5 parent: 2 - uid: 2160 components: - type: Transform - pos: -75.5,8.5 + pos: -79.5,27.5 parent: 2 - uid: 2161 components: - type: Transform - pos: -78.5,8.5 + pos: -78.5,27.5 parent: 2 - uid: 2162 components: - type: Transform - pos: -80.5,8.5 + pos: -77.5,27.5 parent: 2 - uid: 2163 components: - type: Transform - pos: -78.5,10.5 + pos: -76.5,27.5 parent: 2 - uid: 2164 components: - type: Transform - pos: -77.5,10.5 + pos: -75.5,27.5 parent: 2 - uid: 2165 components: - type: Transform - pos: -78.5,9.5 + pos: -75.5,25.5 parent: 2 - uid: 2166 components: - type: Transform - pos: -77.5,9.5 + pos: -73.5,25.5 parent: 2 - uid: 2167 components: - type: Transform - pos: -74.5,7.5 + pos: -72.5,25.5 parent: 2 - uid: 2168 components: - type: Transform - pos: -72.5,7.5 + pos: -71.5,25.5 parent: 2 - uid: 2169 components: - type: Transform - pos: -73.5,7.5 + pos: -74.5,25.5 parent: 2 - uid: 2170 components: - type: Transform - pos: -69.5,6.5 + pos: -71.5,27.5 parent: 2 - uid: 2171 components: - type: Transform - pos: -68.5,6.5 + pos: -71.5,26.5 parent: 2 - uid: 2172 components: - type: Transform - pos: -67.5,6.5 + pos: -70.5,27.5 parent: 2 - uid: 2173 components: - type: Transform - pos: -70.5,6.5 + pos: -70.5,26.5 parent: 2 - uid: 2174 components: - type: Transform - pos: -66.5,6.5 + pos: -69.5,26.5 parent: 2 - uid: 2175 components: - type: Transform - pos: -66.5,7.5 + pos: -69.5,27.5 parent: 2 - uid: 2176 components: - type: Transform - pos: -66.5,9.5 + pos: -68.5,25.5 parent: 2 - uid: 2177 components: - type: Transform - pos: -66.5,11.5 + pos: -69.5,25.5 parent: 2 - uid: 2178 components: - type: Transform - pos: -66.5,8.5 + pos: -69.5,24.5 parent: 2 - uid: 2179 components: - type: Transform - pos: -66.5,10.5 + pos: -68.5,24.5 parent: 2 - uid: 2180 components: - type: Transform - pos: -66.5,12.5 + pos: -70.5,25.5 parent: 2 - uid: 2181 components: - type: Transform - pos: -67.5,12.5 + pos: -70.5,24.5 parent: 2 - uid: 2182 components: - type: Transform - pos: -68.5,12.5 + pos: -73.5,22.5 parent: 2 - uid: 2183 components: - type: Transform - pos: -69.5,12.5 + pos: -72.5,22.5 parent: 2 - uid: 2184 components: - type: Transform - pos: -69.5,13.5 + pos: -71.5,22.5 parent: 2 - uid: 2185 components: - type: Transform - pos: -69.5,14.5 + pos: -74.5,22.5 parent: 2 - uid: 2186 components: - type: Transform - pos: -65.5,13.5 + pos: -71.5,23.5 parent: 2 - uid: 2187 components: - type: Transform - pos: -65.5,15.5 + pos: -71.5,24.5 parent: 2 - uid: 2188 components: - type: Transform - pos: -65.5,14.5 + pos: -70.5,23.5 parent: 2 - uid: 2189 components: - type: Transform - pos: -65.5,9.5 + pos: -68.5,23.5 parent: 2 - uid: 2190 components: - type: Transform - pos: -64.5,9.5 + pos: -69.5,23.5 parent: 2 - uid: 2191 components: - type: Transform - pos: -63.5,9.5 + pos: -68.5,22.5 parent: 2 - uid: 2192 components: - type: Transform - pos: -64.5,15.5 + pos: -67.5,22.5 parent: 2 - uid: 2193 components: - type: Transform - pos: -62.5,15.5 + pos: -66.5,22.5 parent: 2 - uid: 2194 components: - type: Transform - pos: -63.5,15.5 + pos: -65.5,22.5 parent: 2 - uid: 2195 components: - type: Transform - pos: -65.5,6.5 + pos: -64.5,22.5 parent: 2 - uid: 2196 components: - type: Transform - pos: -65.5,4.5 + pos: -63.5,22.5 parent: 2 - uid: 2197 components: - type: Transform - pos: -65.5,5.5 + pos: -62.5,22.5 parent: 2 - uid: 2198 components: - type: Transform - pos: -64.5,4.5 + pos: -67.5,21.5 parent: 2 - uid: 2199 components: - type: Transform - pos: -64.5,2.5 + pos: -67.5,19.5 parent: 2 - uid: 2200 components: - type: Transform - pos: -64.5,3.5 + pos: -66.5,21.5 parent: 2 - uid: 2201 components: - type: Transform - pos: -63.5,2.5 + pos: -66.5,20.5 parent: 2 - uid: 2202 components: - type: Transform - pos: -63.5,1.5 + pos: -67.5,20.5 parent: 2 - uid: 2203 components: - type: Transform - pos: -62.5,1.5 + pos: -66.5,19.5 parent: 2 - uid: 2204 components: - type: Transform - pos: -62.5,0.5 + pos: -67.5,18.5 parent: 2 - uid: 2205 components: - type: Transform - pos: -62.5,-0.5 + pos: -69.5,18.5 parent: 2 - uid: 2206 components: - type: Transform - pos: -61.5,-0.5 + pos: -70.5,18.5 parent: 2 - uid: 2207 components: - type: Transform - pos: -61.5,-1.5 + pos: -71.5,18.5 parent: 2 - uid: 2208 components: - type: Transform - pos: -61.5,-2.5 + pos: -68.5,18.5 parent: 2 - uid: 2209 components: - type: Transform - pos: -61.5,-3.5 + pos: -69.5,17.5 parent: 2 - uid: 2210 components: - type: Transform - pos: -60.5,-3.5 + pos: -69.5,16.5 parent: 2 - uid: 2211 components: - type: Transform - pos: -60.5,-4.5 + pos: -60.5,23.5 parent: 2 - uid: 2212 components: - type: Transform - pos: -60.5,-6.5 + pos: -58.5,23.5 parent: 2 - uid: 2213 components: - type: Transform - pos: -60.5,-7.5 + pos: -57.5,23.5 parent: 2 - uid: 2214 components: - type: Transform - pos: -60.5,-8.5 + pos: -56.5,23.5 parent: 2 - uid: 2215 components: - type: Transform - pos: -60.5,-9.5 + pos: -59.5,23.5 parent: 2 - uid: 2216 components: - type: Transform - pos: -60.5,-10.5 + pos: -55.5,23.5 parent: 2 - uid: 2217 components: - type: Transform - pos: -60.5,-11.5 + pos: -54.5,23.5 parent: 2 - uid: 2218 components: - type: Transform - pos: -60.5,-5.5 + pos: -53.5,23.5 parent: 2 - uid: 2219 components: - type: Transform - pos: -61.5,-10.5 + pos: -52.5,22.5 parent: 2 - uid: 2220 components: - type: Transform - pos: -63.5,-10.5 + pos: -52.5,24.5 parent: 2 - uid: 2221 components: - type: Transform - pos: -64.5,-10.5 + pos: -52.5,23.5 parent: 2 - uid: 2222 components: - type: Transform - pos: -65.5,-10.5 + pos: -52.5,25.5 parent: 2 - uid: 2223 components: - type: Transform - pos: -62.5,-10.5 + pos: -51.5,22.5 parent: 2 - uid: 2224 components: - type: Transform - pos: -65.5,-11.5 + pos: -50.5,22.5 parent: 2 - uid: 2225 components: - type: Transform - pos: -65.5,-12.5 + pos: -50.5,21.5 parent: 2 - uid: 2226 components: - type: Transform - pos: -59.5,-12.5 + pos: -48.5,21.5 parent: 2 - uid: 2227 components: - type: Transform - pos: -58.5,-12.5 + pos: -47.5,21.5 parent: 2 - uid: 2228 components: - type: Transform - pos: -58.5,-14.5 + pos: -49.5,21.5 parent: 2 - uid: 2229 components: - type: Transform - pos: -58.5,-15.5 + pos: -57.5,24.5 parent: 2 - uid: 2230 components: - type: Transform - pos: -58.5,-13.5 + pos: -57.5,25.5 parent: 2 - uid: 2231 components: - type: Transform - pos: -57.5,-15.5 + pos: -53.5,24.5 parent: 2 - uid: 2232 components: - type: Transform - pos: -55.5,-15.5 + pos: -53.5,22.5 parent: 2 - uid: 2233 components: - type: Transform - pos: -56.5,-15.5 + pos: -78.5,20.5 parent: 2 - uid: 2234 components: - type: Transform - pos: -60.5,-17.5 + pos: -76.5,20.5 parent: 2 - uid: 2235 components: - type: Transform - pos: -59.5,-17.5 + pos: -77.5,20.5 parent: 2 - uid: 2236 components: - type: Transform - pos: -58.5,5.5 + pos: -82.5,18.5 parent: 2 - uid: 2237 components: - type: Transform - pos: -58.5,3.5 + pos: -81.5,18.5 parent: 2 - uid: 2238 components: - type: Transform - pos: -58.5,2.5 + pos: -81.5,17.5 parent: 2 - uid: 2239 components: - type: Transform - pos: -58.5,1.5 + pos: -82.5,17.5 parent: 2 - uid: 2240 components: - type: Transform - pos: -57.5,5.5 + pos: -80.5,22.5 parent: 2 - uid: 2241 components: - type: Transform - pos: -58.5,4.5 + pos: -78.5,22.5 parent: 2 - uid: 2242 components: - type: Transform - pos: -57.5,4.5 + pos: -79.5,22.5 parent: 2 - uid: 2243 components: - type: Transform - pos: -57.5,3.5 + pos: -78.5,-4.5 parent: 2 - uid: 2244 components: - type: Transform - pos: -57.5,2.5 + pos: -78.5,-5.5 parent: 2 - uid: 2245 components: - type: Transform - pos: -56.5,5.5 + pos: -79.5,-5.5 parent: 2 - uid: 2246 components: - type: Transform - pos: -56.5,4.5 + pos: -77.5,-5.5 parent: 2 - uid: 2247 components: - type: Transform - pos: -56.5,3.5 + pos: -77.5,-3.5 parent: 2 - uid: 2248 components: - type: Transform - pos: -56.5,1.5 + pos: -76.5,-3.5 parent: 2 - uid: 2249 components: - type: Transform - pos: -56.5,2.5 + pos: -78.5,-3.5 parent: 2 - uid: 2250 components: - type: Transform - pos: -57.5,1.5 + pos: -77.5,-2.5 parent: 2 - uid: 2251 components: - type: Transform - pos: -55.5,4.5 + pos: -76.5,-2.5 parent: 2 - uid: 2252 components: - type: Transform - pos: -55.5,5.5 + pos: -75.5,-3.5 parent: 2 - uid: 2253 components: - type: Transform - pos: -55.5,3.5 + pos: -83.5,-1.5 parent: 2 - uid: 2254 components: - type: Transform - pos: -55.5,2.5 + pos: -83.5,0.5 parent: 2 - uid: 2255 components: - type: Transform - pos: -55.5,1.5 + pos: -83.5,1.5 parent: 2 - uid: 2256 components: - type: Transform - pos: -54.5,5.5 + pos: -82.5,-1.5 parent: 2 - uid: 2257 components: - type: Transform - pos: -54.5,4.5 + pos: -82.5,-0.5 parent: 2 - uid: 2258 components: - type: Transform - pos: -54.5,3.5 + pos: -82.5,0.5 parent: 2 - uid: 2259 components: - type: Transform - pos: -54.5,2.5 + pos: -82.5,1.5 parent: 2 - uid: 2260 components: - type: Transform - pos: -53.5,5.5 + pos: -81.5,-1.5 parent: 2 - uid: 2261 components: - type: Transform - pos: -53.5,3.5 + pos: -83.5,-0.5 parent: 2 - uid: 2262 components: - type: Transform - pos: -53.5,2.5 + pos: -81.5,-0.5 parent: 2 - uid: 2263 components: - type: Transform - pos: -53.5,4.5 + pos: -81.5,0.5 parent: 2 - uid: 2264 components: - type: Transform - pos: -53.5,1.5 + pos: -81.5,1.5 parent: 2 - uid: 2265 components: - type: Transform - pos: -54.5,1.5 + pos: -80.5,-1.5 parent: 2 - uid: 2266 components: - type: Transform - pos: -56.5,19.5 + pos: -80.5,-0.5 parent: 2 - uid: 2267 components: - type: Transform - pos: -79.5,27.5 + pos: -80.5,0.5 parent: 2 - uid: 2268 components: - type: Transform - pos: -78.5,27.5 + pos: -80.5,1.5 parent: 2 - uid: 2269 components: - type: Transform - pos: -77.5,27.5 + pos: -79.5,-1.5 parent: 2 - uid: 2270 components: - type: Transform - pos: -76.5,27.5 + pos: -79.5,-0.5 parent: 2 - uid: 2271 components: - type: Transform - pos: -75.5,27.5 + pos: -79.5,0.5 parent: 2 - uid: 2272 components: - type: Transform - pos: -75.5,25.5 + pos: -79.5,1.5 parent: 2 - uid: 2273 components: - type: Transform - pos: -73.5,25.5 + pos: -78.5,-1.5 parent: 2 - uid: 2274 components: - type: Transform - pos: -72.5,25.5 + pos: -78.5,-0.5 parent: 2 - uid: 2275 components: - type: Transform - pos: -71.5,25.5 + pos: -78.5,0.5 parent: 2 - uid: 2276 components: - type: Transform - pos: -74.5,25.5 + pos: -78.5,1.5 parent: 2 - uid: 2277 components: - type: Transform - pos: -71.5,27.5 + pos: -84.5,3.5 parent: 2 - uid: 2278 components: - type: Transform - pos: -71.5,26.5 + pos: -83.5,3.5 parent: 2 - uid: 2279 components: - type: Transform - pos: -70.5,27.5 + pos: -83.5,2.5 parent: 2 - uid: 2280 components: - type: Transform - pos: -70.5,26.5 + pos: -84.5,2.5 parent: 2 - uid: 2281 components: - type: Transform - pos: -69.5,26.5 + pos: -77.5,-1.5 parent: 2 - uid: 2282 components: - type: Transform - pos: -69.5,27.5 + pos: -77.5,0.5 parent: 2 - uid: 2283 components: - type: Transform - pos: -68.5,25.5 + pos: -77.5,1.5 parent: 2 - uid: 2284 components: - type: Transform - pos: -69.5,25.5 + pos: -76.5,-1.5 parent: 2 - uid: 2285 components: - type: Transform - pos: -69.5,24.5 + pos: -76.5,-0.5 parent: 2 - uid: 2286 components: - type: Transform - pos: -68.5,24.5 + pos: -77.5,-0.5 parent: 2 - uid: 2287 components: - type: Transform - pos: -70.5,25.5 + pos: -76.5,0.5 parent: 2 - uid: 2288 components: - type: Transform - pos: -70.5,24.5 + pos: -76.5,1.5 parent: 2 - uid: 2289 components: - type: Transform - pos: -73.5,22.5 + pos: -75.5,4.5 parent: 2 - uid: 2290 components: - type: Transform - pos: -72.5,22.5 + pos: -75.5,2.5 parent: 2 - uid: 2291 components: - type: Transform - pos: -71.5,22.5 + pos: -75.5,1.5 parent: 2 - uid: 2292 components: - type: Transform - pos: -74.5,22.5 + pos: -74.5,4.5 parent: 2 - uid: 2293 components: - type: Transform - pos: -71.5,23.5 + pos: -75.5,3.5 parent: 2 - uid: 2294 components: - type: Transform - pos: -71.5,24.5 + pos: -74.5,3.5 parent: 2 - uid: 2295 components: - type: Transform - pos: -70.5,23.5 + pos: -74.5,2.5 parent: 2 - uid: 2296 components: - type: Transform - pos: -68.5,23.5 + pos: -74.5,1.5 parent: 2 - uid: 2297 components: - type: Transform - pos: -69.5,23.5 + pos: -82.5,2.5 parent: 2 - uid: 2298 components: - type: Transform - pos: -68.5,22.5 + pos: -78.5,4.5 parent: 2 - uid: 2299 components: - type: Transform - pos: -67.5,22.5 + pos: -77.5,4.5 parent: 2 - uid: 2300 components: - type: Transform - pos: -66.5,22.5 + pos: -76.5,4.5 parent: 2 - uid: 2301 components: - type: Transform - pos: -65.5,22.5 + pos: -76.5,3.5 parent: 2 - uid: 2302 components: - type: Transform - pos: -64.5,22.5 + pos: -76.5,2.5 parent: 2 - uid: 2303 components: - type: Transform - pos: -63.5,22.5 + pos: -77.5,2.5 parent: 2 - uid: 2304 components: - type: Transform - pos: -62.5,22.5 + pos: -81.5,4.5 parent: 2 - uid: 2305 components: - type: Transform - pos: -67.5,21.5 + pos: -73.5,3.5 parent: 2 - uid: 2306 components: - type: Transform - pos: -67.5,19.5 + pos: -72.5,3.5 parent: 2 - uid: 2307 components: - type: Transform - pos: -66.5,21.5 + pos: -72.5,4.5 parent: 2 - uid: 2308 components: - type: Transform - pos: -66.5,20.5 + pos: -73.5,4.5 parent: 2 - uid: 2309 components: - type: Transform - pos: -67.5,20.5 + pos: -81.5,-2.5 parent: 2 - uid: 2310 components: - type: Transform - pos: -66.5,19.5 + pos: -80.5,-2.5 parent: 2 - uid: 2311 components: - type: Transform - pos: -67.5,18.5 + pos: -78.5,-2.5 parent: 2 - uid: 2312 components: - type: Transform - pos: -69.5,18.5 + pos: -79.5,-2.5 parent: 2 - uid: 2313 components: - type: Transform - pos: -70.5,18.5 + pos: -70.5,38.5 parent: 2 - uid: 2314 components: - type: Transform - pos: -71.5,18.5 + pos: -69.5,38.5 parent: 2 - uid: 2315 components: - type: Transform - pos: -68.5,18.5 + pos: -66.5,41.5 parent: 2 - uid: 2316 components: - type: Transform - pos: -69.5,17.5 + pos: -64.5,34.5 parent: 2 - uid: 2317 components: - type: Transform - pos: -69.5,16.5 + pos: -84.5,47.5 parent: 2 - uid: 2318 components: - type: Transform - pos: -60.5,23.5 + pos: -84.5,48.5 parent: 2 - uid: 2319 components: - type: Transform - pos: -58.5,23.5 + pos: -84.5,49.5 parent: 2 - uid: 2320 components: - type: Transform - pos: -57.5,23.5 + pos: -84.5,50.5 parent: 2 - uid: 2321 components: - type: Transform - pos: -56.5,23.5 + pos: -84.5,52.5 parent: 2 - uid: 2322 components: - type: Transform - pos: -59.5,23.5 + pos: -84.5,51.5 parent: 2 - uid: 2323 components: - type: Transform - pos: -55.5,23.5 + pos: -84.5,53.5 parent: 2 - uid: 2324 components: - type: Transform - pos: -54.5,23.5 + pos: -84.5,54.5 parent: 2 - uid: 2325 components: - type: Transform - pos: -53.5,23.5 + pos: -87.5,49.5 parent: 2 - uid: 2326 components: - type: Transform - pos: -52.5,22.5 + pos: -85.5,49.5 parent: 2 - uid: 2327 components: - type: Transform - pos: -52.5,24.5 + pos: -86.5,49.5 parent: 2 - uid: 2328 components: - type: Transform - pos: -52.5,23.5 + pos: -83.5,51.5 parent: 2 - uid: 2329 components: - type: Transform - pos: -52.5,25.5 + pos: -83.5,52.5 parent: 2 - uid: 2330 components: - type: Transform - pos: -51.5,22.5 + pos: -82.5,51.5 parent: 2 - uid: 2331 components: - type: Transform - pos: -50.5,22.5 + pos: -82.5,52.5 parent: 2 - uid: 2332 components: - type: Transform - pos: -50.5,21.5 + pos: -83.5,54.5 parent: 2 - uid: 2333 components: - type: Transform - pos: -48.5,21.5 + pos: -83.5,56.5 parent: 2 - uid: 2334 components: - type: Transform - pos: -47.5,21.5 + pos: -83.5,57.5 parent: 2 - uid: 2335 components: - type: Transform - pos: -49.5,21.5 + pos: -83.5,55.5 parent: 2 - uid: 2336 components: - type: Transform - pos: -57.5,24.5 + pos: -82.5,57.5 parent: 2 - uid: 2337 components: - type: Transform - pos: -57.5,25.5 + pos: -80.5,57.5 parent: 2 - uid: 2338 components: - type: Transform - pos: -53.5,24.5 + pos: -81.5,57.5 parent: 2 - uid: 2339 components: - type: Transform - pos: -53.5,22.5 + pos: -86.5,64.5 parent: 2 - uid: 2340 components: - type: Transform - pos: -78.5,20.5 + pos: -88.5,65.5 parent: 2 - uid: 2341 components: - type: Transform - pos: -76.5,20.5 + pos: -85.5,66.5 parent: 2 - uid: 2342 components: - type: Transform - pos: -77.5,20.5 + pos: -86.5,67.5 parent: 2 - uid: 2343 components: - type: Transform - pos: -82.5,18.5 + pos: -87.5,65.5 parent: 2 - uid: 2344 components: - type: Transform - pos: -81.5,18.5 + pos: -85.5,68.5 parent: 2 - uid: 2345 components: - type: Transform - pos: -81.5,17.5 + pos: -85.5,67.5 parent: 2 - uid: 2346 components: - type: Transform - pos: -82.5,17.5 + pos: -84.5,66.5 parent: 2 - uid: 2347 components: - type: Transform - pos: -80.5,22.5 + pos: -82.5,62.5 parent: 2 - uid: 2348 components: - type: Transform - pos: -78.5,22.5 + pos: -85.5,63.5 parent: 2 - uid: 2349 components: - type: Transform - pos: -79.5,22.5 + pos: -86.5,65.5 parent: 2 - uid: 2350 components: - type: Transform - pos: -78.5,-4.5 + pos: -85.5,65.5 parent: 2 - uid: 2351 components: - type: Transform - pos: -78.5,-5.5 + pos: -81.5,62.5 parent: 2 - uid: 2352 components: - type: Transform - pos: -79.5,-5.5 + pos: -80.5,61.5 parent: 2 - uid: 2353 components: - type: Transform - pos: -77.5,-5.5 + pos: -79.5,61.5 parent: 2 - uid: 2354 components: - type: Transform - pos: -77.5,-3.5 + pos: -81.5,61.5 parent: 2 - uid: 2355 components: - type: Transform - pos: -76.5,-3.5 + pos: -78.5,62.5 parent: 2 - uid: 2356 components: - type: Transform - pos: -78.5,-3.5 + pos: -77.5,62.5 parent: 2 - uid: 2357 components: - type: Transform - pos: -77.5,-2.5 + pos: -76.5,62.5 parent: 2 - uid: 2358 components: - type: Transform - pos: -76.5,-2.5 + pos: -75.5,62.5 parent: 2 - uid: 2359 components: - type: Transform - pos: -75.5,-3.5 + pos: -74.5,62.5 parent: 2 - uid: 2360 components: - type: Transform - pos: -83.5,-1.5 + pos: -73.5,62.5 parent: 2 - uid: 2361 components: - type: Transform - pos: -83.5,0.5 + pos: -75.5,59.5 parent: 2 - uid: 2362 components: - type: Transform - pos: -83.5,1.5 + pos: -75.5,60.5 parent: 2 - uid: 2363 components: - type: Transform - pos: -82.5,-1.5 + pos: -73.5,60.5 parent: 2 - uid: 2364 components: - type: Transform - pos: -82.5,-0.5 + pos: -73.5,61.5 parent: 2 - uid: 2365 components: - type: Transform - pos: -82.5,0.5 + pos: -80.5,60.5 parent: 2 - uid: 2366 components: - type: Transform - pos: -82.5,1.5 + pos: -80.5,59.5 parent: 2 - uid: 2367 components: - type: Transform - pos: -81.5,-1.5 + pos: -80.5,58.5 parent: 2 - uid: 2368 components: - type: Transform - pos: -83.5,-0.5 + pos: -86.5,50.5 parent: 2 - uid: 2369 components: - type: Transform - pos: -81.5,-0.5 + pos: -86.5,51.5 parent: 2 - uid: 2370 components: - type: Transform - pos: -81.5,0.5 + pos: -16.5,-19.5 parent: 2 - uid: 2371 components: - type: Transform - pos: -81.5,1.5 + pos: -16.5,-21.5 parent: 2 - uid: 2372 components: - type: Transform - pos: -80.5,-1.5 + pos: -16.5,-20.5 parent: 2 - uid: 2373 components: - type: Transform - pos: -80.5,-0.5 + pos: -16.5,-22.5 parent: 2 - uid: 2374 components: - type: Transform - pos: -80.5,0.5 + pos: -16.5,-23.5 parent: 2 - uid: 2375 components: - type: Transform - pos: -80.5,1.5 + pos: -17.5,-22.5 parent: 2 - uid: 2376 components: - type: Transform - pos: -79.5,-1.5 + pos: -17.5,-24.5 parent: 2 - uid: 2377 components: - type: Transform - pos: -79.5,-0.5 + pos: -17.5,-25.5 parent: 2 - uid: 2378 components: - type: Transform - pos: -79.5,0.5 + pos: -17.5,-23.5 parent: 2 - uid: 2379 components: - type: Transform - pos: -79.5,1.5 + pos: -22.5,-25.5 parent: 2 - uid: 2380 components: - type: Transform - pos: -78.5,-1.5 + pos: -21.5,-25.5 parent: 2 - uid: 2381 components: - type: Transform - pos: -78.5,-0.5 + pos: -30.5,-28.5 parent: 2 - uid: 2382 components: - type: Transform - pos: -78.5,0.5 + pos: -29.5,-28.5 parent: 2 - uid: 2383 components: - type: Transform - pos: -78.5,1.5 + pos: -29.5,-27.5 parent: 2 - uid: 2384 components: - type: Transform - pos: -84.5,3.5 + pos: -30.5,-27.5 parent: 2 - uid: 2385 components: - type: Transform - pos: -83.5,3.5 + pos: -20.5,-29.5 parent: 2 - uid: 2386 components: - type: Transform - pos: -83.5,2.5 + pos: -19.5,-29.5 parent: 2 - uid: 2387 components: - type: Transform - pos: -84.5,2.5 + pos: -19.5,-28.5 parent: 2 - uid: 2388 components: - type: Transform - pos: -77.5,-1.5 + pos: -20.5,-28.5 parent: 2 - uid: 2389 components: - type: Transform - pos: -77.5,0.5 + pos: -16.5,-32.5 parent: 2 - uid: 2390 components: - type: Transform - pos: -77.5,1.5 + pos: -14.5,-32.5 parent: 2 - uid: 2391 components: - type: Transform - pos: -76.5,-1.5 + pos: -15.5,-32.5 parent: 2 - uid: 2392 components: - type: Transform - pos: -76.5,-0.5 + pos: -48.5,-24.5 parent: 2 - uid: 2393 components: - type: Transform - pos: -77.5,-0.5 + pos: -36.5,-32.5 parent: 2 - uid: 2394 components: - type: Transform - pos: -76.5,0.5 + pos: -36.5,-31.5 parent: 2 - uid: 2395 components: - type: Transform - pos: -76.5,1.5 + pos: -36.5,-30.5 parent: 2 - uid: 2396 components: - type: Transform - pos: -75.5,4.5 + pos: -35.5,-32.5 parent: 2 - uid: 2397 components: - type: Transform - pos: -75.5,2.5 + pos: -35.5,-31.5 parent: 2 - uid: 2398 components: - type: Transform - pos: -75.5,1.5 + pos: -35.5,-30.5 parent: 2 - uid: 2399 components: - type: Transform - pos: -74.5,4.5 + pos: -34.5,-32.5 parent: 2 - uid: 2400 components: - type: Transform - pos: -75.5,3.5 + pos: -34.5,-30.5 parent: 2 - uid: 2401 components: - type: Transform - pos: -74.5,3.5 + pos: -33.5,-32.5 parent: 2 - uid: 2402 components: - type: Transform - pos: -74.5,2.5 + pos: -33.5,-31.5 parent: 2 - uid: 2403 components: - type: Transform - pos: -74.5,1.5 + pos: -33.5,-30.5 parent: 2 - uid: 2404 components: - type: Transform - pos: -82.5,2.5 + pos: -32.5,-32.5 parent: 2 - uid: 2405 components: - type: Transform - pos: -78.5,4.5 + pos: -34.5,-31.5 parent: 2 - uid: 2406 components: - type: Transform - pos: -77.5,4.5 + pos: -32.5,-31.5 parent: 2 - uid: 2407 components: - type: Transform - pos: -76.5,4.5 + pos: -32.5,-30.5 parent: 2 - uid: 2408 components: - type: Transform - pos: -76.5,3.5 + pos: -30.5,-31.5 parent: 2 - uid: 2409 components: - type: Transform - pos: -76.5,2.5 + pos: -40.5,-29.5 parent: 2 - uid: 2410 components: - type: Transform - pos: -77.5,2.5 + pos: -38.5,-30.5 parent: 2 - uid: 2411 components: - type: Transform - pos: -81.5,4.5 + pos: -40.5,-28.5 parent: 2 - uid: 2412 components: - type: Transform - pos: -73.5,3.5 + pos: -40.5,-30.5 parent: 2 - uid: 2413 components: - type: Transform - pos: -72.5,3.5 + pos: -39.5,-28.5 parent: 2 - uid: 2414 components: - type: Transform - pos: -72.5,4.5 + pos: -39.5,-29.5 parent: 2 - uid: 2415 components: - type: Transform - pos: -73.5,4.5 + pos: -39.5,-30.5 parent: 2 - uid: 2416 components: - type: Transform - pos: -81.5,-2.5 + pos: -38.5,-28.5 parent: 2 - uid: 2417 components: - type: Transform - pos: -80.5,-2.5 + pos: -38.5,-29.5 parent: 2 - uid: 2418 components: - type: Transform - pos: -78.5,-2.5 + pos: -48.5,-26.5 parent: 2 - uid: 2419 components: - type: Transform - pos: -79.5,-2.5 + pos: -47.5,-24.5 parent: 2 - uid: 2420 components: - type: Transform - pos: -70.5,38.5 + pos: -47.5,-25.5 parent: 2 - uid: 2421 components: - type: Transform - pos: -69.5,38.5 + pos: -48.5,-25.5 parent: 2 - uid: 2422 components: - type: Transform - pos: -66.5,41.5 + pos: -47.5,-26.5 parent: 2 - uid: 2423 components: - type: Transform - pos: -64.5,34.5 + pos: -46.5,-25.5 parent: 2 - uid: 2424 components: - type: Transform - pos: -84.5,47.5 + pos: -46.5,-26.5 parent: 2 - uid: 2425 components: - type: Transform - pos: -84.5,48.5 + pos: -46.5,-24.5 parent: 2 - uid: 2426 components: - type: Transform - pos: -84.5,49.5 + pos: -43.5,-23.5 parent: 2 - uid: 2427 components: - type: Transform - pos: -84.5,50.5 + pos: -43.5,-22.5 parent: 2 - uid: 2428 components: - type: Transform - pos: -84.5,52.5 + pos: -42.5,-22.5 parent: 2 - uid: 2429 components: - type: Transform - pos: -84.5,51.5 + pos: -42.5,-23.5 parent: 2 - uid: 2430 components: - type: Transform - pos: -84.5,53.5 + pos: -39.5,-23.5 parent: 2 - uid: 2431 components: - type: Transform - pos: -84.5,54.5 + pos: -38.5,-23.5 parent: 2 - uid: 2432 components: - type: Transform - pos: -87.5,49.5 + pos: -37.5,-23.5 parent: 2 - uid: 2433 components: - type: Transform - pos: -85.5,49.5 + pos: -53.5,-24.5 parent: 2 - uid: 2434 components: - type: Transform - pos: -86.5,49.5 + pos: -53.5,-25.5 parent: 2 - uid: 2435 components: - type: Transform - pos: -83.5,51.5 + pos: -52.5,-24.5 parent: 2 - uid: 2436 components: - type: Transform - pos: -83.5,52.5 + pos: -52.5,-25.5 parent: 2 - uid: 2437 components: - type: Transform - pos: -82.5,51.5 + pos: 69.5,12.5 parent: 2 - uid: 2438 components: - type: Transform - pos: -82.5,52.5 + pos: -57.5,-21.5 parent: 2 - uid: 2439 components: - type: Transform - pos: -83.5,54.5 + pos: -57.5,-23.5 parent: 2 - uid: 2440 components: - type: Transform - pos: -83.5,56.5 + pos: -57.5,-22.5 parent: 2 - uid: 2441 components: - type: Transform - pos: -83.5,57.5 + pos: -56.5,-21.5 parent: 2 - uid: 2442 components: - type: Transform - pos: -83.5,55.5 + pos: -56.5,-22.5 parent: 2 - uid: 2443 components: - type: Transform - pos: -82.5,57.5 + pos: -56.5,-23.5 parent: 2 - uid: 2444 components: - type: Transform - pos: -80.5,57.5 + pos: -55.5,-49.5 parent: 2 - uid: 2445 components: - type: Transform - pos: -81.5,57.5 + pos: -63.5,-21.5 parent: 2 - uid: 2446 components: - type: Transform - pos: -76.5,57.5 + pos: -63.5,-19.5 parent: 2 - uid: 2447 components: - type: Transform - pos: -75.5,57.5 + pos: -62.5,-21.5 parent: 2 - uid: 2448 components: - type: Transform - pos: -75.5,56.5 + pos: -63.5,-20.5 parent: 2 - uid: 2449 components: - type: Transform - pos: -74.5,57.5 + pos: -62.5,-20.5 parent: 2 - uid: 2450 components: - type: Transform - pos: -74.5,56.5 + pos: -62.5,-19.5 parent: 2 - uid: 2451 components: - type: Transform - pos: -76.5,56.5 + pos: -61.5,-21.5 parent: 2 - uid: 2452 components: - type: Transform - pos: -88.5,64.5 + pos: -61.5,-20.5 parent: 2 - uid: 2453 components: - type: Transform - pos: -88.5,62.5 + pos: -61.5,-19.5 parent: 2 - uid: 2454 components: - type: Transform - pos: -87.5,64.5 + pos: -67.5,-17.5 parent: 2 - uid: 2455 components: - type: Transform - pos: -87.5,63.5 + pos: -68.5,-17.5 parent: 2 - uid: 2456 components: - type: Transform - pos: -87.5,62.5 + pos: -68.5,-18.5 parent: 2 - uid: 2457 components: - type: Transform - pos: -86.5,64.5 + pos: -67.5,-18.5 parent: 2 - uid: 2458 components: - type: Transform - pos: -86.5,63.5 + pos: -69.5,-16.5 parent: 2 - uid: 2459 components: - type: Transform - pos: -86.5,62.5 + pos: -69.5,-17.5 parent: 2 - uid: 2460 components: - type: Transform - pos: -88.5,63.5 + pos: -69.5,-18.5 parent: 2 - uid: 2461 components: - type: Transform - pos: -82.5,62.5 + pos: -68.5,-16.5 parent: 2 - uid: 2462 components: - type: Transform - pos: -89.5,64.5 + pos: -67.5,-16.5 parent: 2 - uid: 2463 components: - type: Transform - pos: -89.5,63.5 + pos: -68.5,-19.5 parent: 2 - uid: 2464 components: - type: Transform - pos: -85.5,64.5 + pos: -67.5,-19.5 parent: 2 - uid: 2465 components: - type: Transform - pos: -85.5,63.5 + pos: -66.5,-19.5 parent: 2 - uid: 2466 components: - type: Transform - pos: -81.5,62.5 + pos: -66.5,-18.5 parent: 2 - uid: 2467 components: - type: Transform - pos: -80.5,61.5 + pos: -66.5,-17.5 parent: 2 - uid: 2468 components: - type: Transform - pos: -79.5,61.5 + pos: -75.5,-14.5 parent: 2 - uid: 2469 components: - type: Transform - pos: -81.5,61.5 + pos: -75.5,-16.5 parent: 2 - uid: 2470 components: - type: Transform - pos: -78.5,62.5 + pos: -75.5,-17.5 parent: 2 - uid: 2471 components: - type: Transform - pos: -77.5,62.5 + pos: -74.5,-14.5 parent: 2 - uid: 2472 components: - type: Transform - pos: -76.5,62.5 + pos: -74.5,-15.5 parent: 2 - uid: 2473 components: - type: Transform - pos: -75.5,62.5 + pos: -75.5,-15.5 parent: 2 - uid: 2474 components: - type: Transform - pos: -74.5,62.5 + pos: -74.5,-16.5 parent: 2 - uid: 2475 components: - type: Transform - pos: -73.5,62.5 + pos: -74.5,-17.5 parent: 2 - uid: 2476 components: - type: Transform - pos: -75.5,59.5 + pos: -73.5,-15.5 parent: 2 - uid: 2477 components: - type: Transform - pos: -75.5,60.5 + pos: -73.5,-16.5 parent: 2 - uid: 2478 components: - type: Transform - pos: -73.5,60.5 + pos: -73.5,-17.5 parent: 2 - uid: 2479 components: - type: Transform - pos: -73.5,61.5 + pos: -72.5,-14.5 parent: 2 - uid: 2480 components: - type: Transform - pos: -80.5,60.5 + pos: -73.5,-14.5 parent: 2 - uid: 2481 components: - type: Transform - pos: -80.5,59.5 + pos: -72.5,-15.5 parent: 2 - uid: 2482 components: - type: Transform - pos: -80.5,58.5 + pos: -72.5,-16.5 parent: 2 - uid: 2483 components: - type: Transform - pos: -86.5,50.5 + pos: -72.5,-17.5 parent: 2 - uid: 2484 components: - type: Transform - pos: -86.5,51.5 + pos: -82.5,-15.5 parent: 2 - uid: 2485 components: - type: Transform - pos: -16.5,-19.5 + pos: -82.5,-13.5 parent: 2 - uid: 2486 components: - type: Transform - pos: -16.5,-21.5 + pos: -82.5,-12.5 parent: 2 - uid: 2487 components: - type: Transform - pos: -16.5,-20.5 + pos: -82.5,-14.5 parent: 2 - uid: 2488 components: - type: Transform - pos: -16.5,-22.5 + pos: -81.5,-15.5 parent: 2 - uid: 2489 components: - type: Transform - pos: -16.5,-23.5 + pos: -81.5,-14.5 parent: 2 - uid: 2490 components: - type: Transform - pos: -17.5,-22.5 + pos: -81.5,-13.5 parent: 2 - uid: 2491 components: - type: Transform - pos: -17.5,-24.5 + pos: -81.5,-12.5 parent: 2 - uid: 2492 components: - type: Transform - pos: -17.5,-25.5 + pos: -80.5,-15.5 parent: 2 - uid: 2493 components: - type: Transform - pos: -17.5,-23.5 + pos: -80.5,-14.5 parent: 2 - uid: 2494 components: - type: Transform - pos: -22.5,-25.5 + pos: -80.5,-12.5 parent: 2 - uid: 2495 components: - type: Transform - pos: -21.5,-25.5 + pos: -80.5,-13.5 parent: 2 - uid: 2496 components: - type: Transform - pos: -30.5,-28.5 + pos: -79.5,-14.5 parent: 2 - uid: 2497 components: - type: Transform - pos: -29.5,-28.5 + pos: -79.5,-15.5 parent: 2 - uid: 2498 components: - type: Transform - pos: -29.5,-27.5 + pos: -79.5,-13.5 parent: 2 - uid: 2499 components: - type: Transform - pos: -30.5,-27.5 + pos: -79.5,-12.5 parent: 2 - uid: 2500 components: - type: Transform - pos: -20.5,-29.5 + pos: -84.5,-12.5 parent: 2 - uid: 2501 components: - type: Transform - pos: -19.5,-29.5 + pos: -84.5,-10.5 parent: 2 - uid: 2502 components: - type: Transform - pos: -19.5,-28.5 + pos: -84.5,-9.5 parent: 2 - uid: 2503 components: - type: Transform - pos: -20.5,-28.5 + pos: -85.5,-12.5 parent: 2 - uid: 2504 components: - type: Transform - pos: -16.5,-32.5 + pos: -85.5,-11.5 parent: 2 - uid: 2505 components: - type: Transform - pos: -14.5,-32.5 + pos: -85.5,-10.5 parent: 2 - uid: 2506 components: - type: Transform - pos: -15.5,-32.5 + pos: -84.5,-11.5 parent: 2 - uid: 2507 components: - type: Transform - pos: -48.5,-24.5 + pos: -85.5,-9.5 parent: 2 - uid: 2508 components: - type: Transform - pos: -36.5,-32.5 + pos: -86.5,-12.5 parent: 2 - uid: 2509 components: - type: Transform - pos: -36.5,-31.5 + pos: -86.5,-11.5 parent: 2 - uid: 2510 components: - type: Transform - pos: -36.5,-30.5 + pos: -86.5,-9.5 parent: 2 - uid: 2511 components: - type: Transform - pos: -35.5,-32.5 + pos: -87.5,-12.5 parent: 2 - uid: 2512 components: - type: Transform - pos: -35.5,-31.5 + pos: -87.5,-11.5 parent: 2 - uid: 2513 components: - type: Transform - pos: -35.5,-30.5 + pos: -87.5,-10.5 parent: 2 - uid: 2514 components: - type: Transform - pos: -34.5,-32.5 + pos: -87.5,-9.5 parent: 2 - uid: 2515 components: - type: Transform - pos: -34.5,-30.5 + pos: -86.5,-10.5 parent: 2 - uid: 2516 components: - type: Transform - pos: -33.5,-32.5 + pos: -93.5,3.5 parent: 2 - uid: 2517 components: - type: Transform - pos: -33.5,-31.5 + pos: -93.5,2.5 parent: 2 - uid: 2518 components: - type: Transform - pos: -33.5,-30.5 + pos: -93.5,1.5 parent: 2 - uid: 2519 components: - type: Transform - pos: -32.5,-32.5 + pos: -93.5,0.5 parent: 2 - uid: 2520 components: - type: Transform - pos: -34.5,-31.5 + pos: -92.5,3.5 parent: 2 - uid: 2521 components: - type: Transform - pos: -32.5,-31.5 + pos: -92.5,2.5 parent: 2 - uid: 2522 components: - type: Transform - pos: -32.5,-30.5 + pos: -92.5,1.5 parent: 2 - uid: 2523 components: - type: Transform - pos: -30.5,-31.5 + pos: -92.5,0.5 parent: 2 - uid: 2524 components: - type: Transform - pos: -40.5,-29.5 + pos: -91.5,-1.5 parent: 2 - uid: 2525 components: - type: Transform - pos: -38.5,-30.5 + pos: -90.5,-1.5 parent: 2 - uid: 2526 components: - type: Transform - pos: -40.5,-28.5 + pos: -91.5,-0.5 parent: 2 - uid: 2527 components: - type: Transform - pos: -40.5,-30.5 + pos: -90.5,-0.5 parent: 2 - uid: 2528 components: - type: Transform - pos: -39.5,-28.5 + pos: -89.5,-1.5 parent: 2 - uid: 2529 components: - type: Transform - pos: -39.5,-29.5 + pos: -89.5,-0.5 parent: 2 - uid: 2530 components: - type: Transform - pos: -39.5,-30.5 + pos: -89.5,-5.5 parent: 2 - uid: 2531 components: - type: Transform - pos: -38.5,-28.5 + pos: -89.5,-3.5 parent: 2 - uid: 2532 components: - type: Transform - pos: -38.5,-29.5 + pos: -88.5,-5.5 parent: 2 - uid: 2533 components: - type: Transform - pos: -48.5,-26.5 + pos: -88.5,-4.5 parent: 2 - uid: 2534 components: - type: Transform - pos: -47.5,-24.5 + pos: -89.5,-4.5 parent: 2 - uid: 2535 components: - type: Transform - pos: -47.5,-25.5 + pos: -88.5,-3.5 parent: 2 - uid: 2536 components: - type: Transform - pos: -48.5,-25.5 + pos: -87.5,-4.5 parent: 2 - uid: 2537 components: - type: Transform - pos: -47.5,-26.5 + pos: -87.5,-3.5 parent: 2 - uid: 2538 components: - type: Transform - pos: -46.5,-25.5 + pos: -87.5,-5.5 parent: 2 - uid: 2539 components: - type: Transform - pos: -46.5,-26.5 + pos: -89.5,-8.5 parent: 2 - uid: 2540 components: - type: Transform - pos: -46.5,-24.5 + pos: -89.5,-9.5 parent: 2 - uid: 2541 components: - type: Transform - pos: -43.5,-23.5 + pos: -89.5,-10.5 parent: 2 - uid: 2542 components: - type: Transform - pos: -43.5,-22.5 + pos: -90.5,-8.5 parent: 2 - uid: 2543 components: - type: Transform - pos: -42.5,-22.5 + pos: -90.5,-9.5 parent: 2 - uid: 2544 components: - type: Transform - pos: -42.5,-23.5 + pos: -90.5,-10.5 parent: 2 - uid: 2545 components: - type: Transform - pos: -39.5,-23.5 + pos: -91.5,-8.5 parent: 2 - uid: 2546 components: - type: Transform - pos: -38.5,-23.5 + pos: -91.5,-9.5 parent: 2 - uid: 2547 components: - type: Transform - pos: -37.5,-23.5 + pos: -91.5,-10.5 parent: 2 - uid: 2548 components: - type: Transform - pos: -53.5,-24.5 + pos: -92.5,-8.5 parent: 2 - uid: 2549 components: - type: Transform - pos: -53.5,-25.5 + pos: -92.5,-9.5 parent: 2 - uid: 2550 components: - type: Transform - pos: -52.5,-24.5 + pos: -92.5,-10.5 parent: 2 - uid: 2551 components: - type: Transform - pos: -52.5,-25.5 + pos: -76.5,-19.5 parent: 2 - uid: 2552 components: - type: Transform - pos: 69.5,12.5 + pos: -76.5,-21.5 parent: 2 - uid: 2553 components: - type: Transform - pos: -57.5,-21.5 + pos: -76.5,-20.5 parent: 2 - uid: 2554 components: - type: Transform - pos: -57.5,-23.5 + pos: -81.5,-19.5 parent: 2 - uid: 2555 components: - type: Transform - pos: -57.5,-22.5 + pos: -81.5,-20.5 parent: 2 - uid: 2556 components: - type: Transform - pos: -56.5,-21.5 + pos: -80.5,-19.5 parent: 2 - uid: 2557 components: - type: Transform - pos: -56.5,-22.5 + pos: -75.5,-21.5 parent: 2 - uid: 2558 components: - type: Transform - pos: -56.5,-23.5 + pos: -74.5,-21.5 parent: 2 - uid: 2559 components: - type: Transform - pos: -55.5,-49.5 + pos: -74.5,-22.5 parent: 2 - uid: 2560 components: - type: Transform - pos: -63.5,-21.5 + pos: -74.5,-23.5 parent: 2 - uid: 2561 components: - type: Transform - pos: -63.5,-19.5 + pos: -73.5,-23.5 parent: 2 - uid: 2562 components: - type: Transform - pos: -62.5,-21.5 + pos: -72.5,-23.5 parent: 2 - uid: 2563 components: - type: Transform - pos: -63.5,-20.5 + pos: -70.5,-23.5 parent: 2 - uid: 2564 components: - type: Transform - pos: -62.5,-20.5 + pos: -71.5,-23.5 parent: 2 - uid: 2565 components: - type: Transform - pos: -62.5,-19.5 + pos: -69.5,-23.5 parent: 2 - uid: 2566 components: - type: Transform - pos: -61.5,-21.5 + pos: -69.5,-24.5 parent: 2 - uid: 2567 components: - type: Transform - pos: -61.5,-20.5 + pos: -67.5,-24.5 parent: 2 - uid: 2568 components: - type: Transform - pos: -61.5,-19.5 + pos: -66.5,-24.5 parent: 2 - uid: 2569 components: - type: Transform - pos: -67.5,-17.5 + pos: -68.5,-24.5 parent: 2 - uid: 2570 components: - type: Transform - pos: -68.5,-17.5 + pos: -64.5,-24.5 parent: 2 - uid: 2571 components: - type: Transform - pos: -68.5,-18.5 + pos: -65.5,-24.5 parent: 2 - uid: 2572 components: - type: Transform - pos: -67.5,-18.5 + pos: -63.5,-24.5 parent: 2 - uid: 2573 components: - type: Transform - pos: -69.5,-16.5 + pos: -62.5,-24.5 parent: 2 - uid: 2574 components: - type: Transform - pos: -69.5,-17.5 + pos: -61.5,-24.5 parent: 2 - uid: 2575 components: - type: Transform - pos: -69.5,-18.5 + pos: -62.5,-25.5 parent: 2 - uid: 2576 components: - type: Transform - pos: -68.5,-16.5 + pos: -62.5,-26.5 parent: 2 - uid: 2577 components: - type: Transform - pos: -67.5,-16.5 + pos: -77.5,-14.5 parent: 2 - uid: 2578 components: - type: Transform - pos: -68.5,-19.5 + pos: -77.5,-16.5 parent: 2 - uid: 2579 components: - type: Transform - pos: -67.5,-19.5 + pos: -77.5,-15.5 parent: 2 - uid: 2580 components: - type: Transform - pos: -66.5,-19.5 + pos: -85.5,-14.5 parent: 2 - uid: 2581 components: - type: Transform - pos: -66.5,-18.5 + pos: -84.5,-14.5 parent: 2 - uid: 2582 components: - type: Transform - pos: -66.5,-17.5 + pos: -84.5,-15.5 parent: 2 - uid: 2583 components: - type: Transform - pos: -75.5,-14.5 + pos: -85.5,-15.5 parent: 2 - uid: 2584 components: - type: Transform - pos: -75.5,-16.5 + pos: -81.5,-9.5 parent: 2 - uid: 2585 components: - type: Transform - pos: -75.5,-17.5 + pos: -80.5,-9.5 parent: 2 - uid: 2586 components: - type: Transform - pos: -74.5,-14.5 + pos: -80.5,-10.5 parent: 2 - uid: 2587 components: - type: Transform - pos: -74.5,-15.5 + pos: -81.5,-10.5 parent: 2 - uid: 2588 components: - type: Transform - pos: -75.5,-15.5 + pos: -94.5,-11.5 parent: 2 - uid: 2589 components: - type: Transform - pos: -74.5,-16.5 + pos: -94.5,-10.5 parent: 2 - uid: 2590 components: - type: Transform - pos: -74.5,-17.5 + pos: -95.5,-11.5 parent: 2 - uid: 2591 components: - type: Transform - pos: -73.5,-15.5 + pos: -95.5,-10.5 parent: 2 - uid: 2592 components: - type: Transform - pos: -73.5,-16.5 + pos: -96.5,-11.5 parent: 2 - uid: 2593 components: - type: Transform - pos: -73.5,-17.5 + pos: -96.5,-10.5 parent: 2 - uid: 2594 components: - type: Transform - pos: -72.5,-14.5 + pos: -106.5,-11.5 parent: 2 - uid: 2595 components: - type: Transform - pos: -73.5,-14.5 + pos: -105.5,-11.5 parent: 2 - uid: 2596 components: - type: Transform - pos: -72.5,-15.5 + pos: -106.5,-12.5 parent: 2 - uid: 2597 components: - type: Transform - pos: -72.5,-16.5 + pos: -105.5,-12.5 parent: 2 - uid: 2598 components: - type: Transform - pos: -72.5,-17.5 + pos: -104.5,-12.5 parent: 2 - uid: 2599 components: - type: Transform - pos: -82.5,-15.5 + pos: -103.5,-11.5 parent: 2 - uid: 2600 components: - type: Transform - pos: -82.5,-13.5 + pos: -103.5,-12.5 parent: 2 - uid: 2601 components: - type: Transform - pos: -82.5,-12.5 + pos: -104.5,-11.5 parent: 2 - uid: 2602 components: - type: Transform - pos: -82.5,-14.5 + pos: -100.5,-10.5 parent: 2 - uid: 2603 components: - type: Transform - pos: -81.5,-15.5 + pos: -99.5,-10.5 parent: 2 - uid: 2604 components: - type: Transform - pos: -81.5,-14.5 + pos: -99.5,-11.5 parent: 2 - uid: 2605 components: - type: Transform - pos: -81.5,-13.5 + pos: -100.5,-11.5 parent: 2 - uid: 2606 components: - type: Transform - pos: -81.5,-12.5 + pos: -110.5,-10.5 parent: 2 - uid: 2607 components: - type: Transform - pos: -80.5,-15.5 + pos: -110.5,-12.5 parent: 2 - uid: 2608 components: - type: Transform - pos: -80.5,-14.5 + pos: -111.5,-10.5 parent: 2 - uid: 2609 components: - type: Transform - pos: -80.5,-12.5 + pos: -111.5,-11.5 parent: 2 - uid: 2610 components: - type: Transform - pos: -80.5,-13.5 + pos: -111.5,-12.5 parent: 2 - uid: 2611 components: - type: Transform - pos: -79.5,-14.5 + pos: -112.5,-10.5 parent: 2 - uid: 2612 components: - type: Transform - pos: -79.5,-15.5 + pos: -112.5,-11.5 parent: 2 - uid: 2613 components: - type: Transform - pos: -79.5,-13.5 + pos: -112.5,-12.5 parent: 2 - uid: 2614 components: - type: Transform - pos: -79.5,-12.5 + pos: -110.5,-11.5 parent: 2 - uid: 2615 components: - type: Transform - pos: -84.5,-12.5 + pos: -115.5,-11.5 parent: 2 - uid: 2616 components: - type: Transform - pos: -84.5,-10.5 + pos: -115.5,-9.5 parent: 2 - uid: 2617 components: - type: Transform - pos: -84.5,-9.5 + pos: -115.5,-8.5 parent: 2 - uid: 2618 components: - type: Transform - pos: -85.5,-12.5 + pos: -115.5,-10.5 parent: 2 - uid: 2619 components: - type: Transform - pos: -85.5,-11.5 + pos: -116.5,-11.5 parent: 2 - uid: 2620 components: - type: Transform - pos: -85.5,-10.5 + pos: -116.5,-10.5 parent: 2 - uid: 2621 components: - type: Transform - pos: -84.5,-11.5 + pos: -116.5,-9.5 parent: 2 - uid: 2622 components: - type: Transform - pos: -85.5,-9.5 + pos: -117.5,-11.5 parent: 2 - uid: 2623 components: - type: Transform - pos: -86.5,-12.5 + pos: -117.5,-10.5 parent: 2 - uid: 2624 components: - type: Transform - pos: -86.5,-11.5 + pos: -117.5,-9.5 parent: 2 - uid: 2625 components: - type: Transform - pos: -86.5,-9.5 + pos: -118.5,-11.5 parent: 2 - uid: 2626 components: - type: Transform - pos: -87.5,-12.5 + pos: -117.5,-8.5 parent: 2 - uid: 2627 components: - type: Transform - pos: -87.5,-11.5 + pos: -118.5,-10.5 parent: 2 - uid: 2628 components: - type: Transform - pos: -87.5,-10.5 + pos: -118.5,-9.5 parent: 2 - uid: 2629 components: - type: Transform - pos: -87.5,-9.5 + pos: -118.5,-8.5 parent: 2 - uid: 2630 components: - type: Transform - pos: -86.5,-10.5 + pos: -116.5,-8.5 parent: 2 - uid: 2631 components: - type: Transform - pos: -93.5,3.5 + pos: -124.5,-7.5 parent: 2 - uid: 2632 components: - type: Transform - pos: -93.5,2.5 + pos: -124.5,-8.5 parent: 2 - uid: 2633 components: - type: Transform - pos: -93.5,1.5 + pos: -124.5,-9.5 parent: 2 - uid: 2634 components: - type: Transform - pos: -93.5,0.5 + pos: -124.5,-10.5 parent: 2 - uid: 2635 components: - type: Transform - pos: -92.5,3.5 + pos: -123.5,-7.5 parent: 2 - uid: 2636 components: - type: Transform - pos: -92.5,2.5 + pos: -123.5,-8.5 parent: 2 - uid: 2637 components: - type: Transform - pos: -92.5,1.5 + pos: -123.5,-10.5 parent: 2 - uid: 2638 components: - type: Transform - pos: -92.5,0.5 + pos: -122.5,-7.5 parent: 2 - uid: 2639 components: - type: Transform - pos: -91.5,-1.5 + pos: -123.5,-9.5 parent: 2 - uid: 2640 components: - type: Transform - pos: -90.5,-1.5 + pos: -122.5,-9.5 parent: 2 - uid: 2641 components: - type: Transform - pos: -91.5,-0.5 + pos: -122.5,-8.5 parent: 2 - uid: 2642 components: - type: Transform - pos: -90.5,-0.5 + pos: -122.5,-10.5 parent: 2 - uid: 2643 components: - type: Transform - pos: -89.5,-1.5 + pos: -121.5,-7.5 parent: 2 - uid: 2644 components: - type: Transform - pos: -89.5,-0.5 + pos: -121.5,-8.5 parent: 2 - uid: 2645 components: - type: Transform - pos: -89.5,-5.5 + pos: -121.5,-9.5 parent: 2 - uid: 2646 components: - type: Transform - pos: -89.5,-3.5 + pos: -121.5,-10.5 parent: 2 - uid: 2647 components: - type: Transform - pos: -88.5,-5.5 + pos: -120.5,-7.5 parent: 2 - uid: 2648 components: - type: Transform - pos: -88.5,-4.5 + pos: -120.5,-8.5 parent: 2 - uid: 2649 components: - type: Transform - pos: -89.5,-4.5 + pos: -120.5,-9.5 parent: 2 - uid: 2650 components: - type: Transform - pos: -88.5,-3.5 + pos: -120.5,-10.5 parent: 2 - uid: 2651 components: - type: Transform - pos: -87.5,-4.5 + pos: -125.5,-3.5 parent: 2 - uid: 2652 components: - type: Transform - pos: -87.5,-3.5 + pos: -125.5,-5.5 parent: 2 - uid: 2653 components: - type: Transform - pos: -87.5,-5.5 + pos: -124.5,-3.5 parent: 2 - uid: 2654 components: - type: Transform - pos: -89.5,-8.5 + pos: -124.5,-4.5 parent: 2 - uid: 2655 components: - type: Transform - pos: -89.5,-9.5 + pos: -125.5,-4.5 parent: 2 - uid: 2656 components: - type: Transform - pos: -89.5,-10.5 + pos: -124.5,-5.5 parent: 2 - uid: 2657 components: - type: Transform - pos: -90.5,-8.5 + pos: -123.5,-3.5 parent: 2 - uid: 2658 components: - type: Transform - pos: -90.5,-9.5 + pos: -123.5,-4.5 parent: 2 - uid: 2659 components: - type: Transform - pos: -90.5,-10.5 + pos: -123.5,-5.5 parent: 2 - uid: 2660 components: - type: Transform - pos: -91.5,-8.5 + pos: -122.5,-4.5 parent: 2 - uid: 2661 components: - type: Transform - pos: -91.5,-9.5 + pos: -122.5,-5.5 parent: 2 - uid: 2662 components: - type: Transform - pos: -91.5,-10.5 + pos: -122.5,-3.5 parent: 2 - uid: 2663 components: - type: Transform - pos: -92.5,-8.5 + pos: -120.5,-1.5 parent: 2 - uid: 2664 components: - type: Transform - pos: -92.5,-9.5 + pos: -120.5,-3.5 parent: 2 - uid: 2665 components: - type: Transform - pos: -92.5,-10.5 + pos: -120.5,-4.5 parent: 2 - uid: 2666 components: - type: Transform - pos: -76.5,-19.5 + pos: -119.5,-1.5 parent: 2 - uid: 2667 components: - type: Transform - pos: -76.5,-21.5 + pos: -119.5,-2.5 parent: 2 - uid: 2668 components: - type: Transform - pos: -76.5,-20.5 + pos: -120.5,-2.5 parent: 2 - uid: 2669 components: - type: Transform - pos: -81.5,-19.5 + pos: -119.5,-3.5 parent: 2 - uid: 2670 components: - type: Transform - pos: -81.5,-20.5 + pos: -118.5,-3.5 parent: 2 - uid: 2671 components: - type: Transform - pos: -80.5,-19.5 + pos: -118.5,-4.5 parent: 2 - uid: 2672 components: - type: Transform - pos: -75.5,-21.5 + pos: -119.5,-4.5 parent: 2 - uid: 2673 components: - type: Transform - pos: -74.5,-21.5 + pos: -117.5,-3.5 parent: 2 - uid: 2674 components: - type: Transform - pos: -74.5,-22.5 + pos: -117.5,-4.5 parent: 2 - uid: 2675 components: - type: Transform - pos: -74.5,-23.5 + pos: -114.5,-3.5 parent: 2 - uid: 2676 components: - type: Transform - pos: -73.5,-23.5 + pos: -114.5,-5.5 parent: 2 - uid: 2677 components: - type: Transform - pos: -72.5,-23.5 + pos: -114.5,-6.5 parent: 2 - uid: 2678 components: - type: Transform - pos: -70.5,-23.5 + pos: -113.5,-3.5 parent: 2 - uid: 2679 components: - type: Transform - pos: -71.5,-23.5 + pos: -113.5,-4.5 parent: 2 - uid: 2680 components: - type: Transform - pos: -69.5,-23.5 + pos: -114.5,-4.5 parent: 2 - uid: 2681 components: - type: Transform - pos: -69.5,-24.5 + pos: -113.5,-5.5 parent: 2 - uid: 2682 components: - type: Transform - pos: -67.5,-24.5 + pos: -112.5,-3.5 parent: 2 - uid: 2683 components: - type: Transform - pos: -66.5,-24.5 + pos: -112.5,-4.5 parent: 2 - uid: 2684 components: - type: Transform - pos: -68.5,-24.5 + pos: -112.5,-5.5 parent: 2 - uid: 2685 components: - type: Transform - pos: -64.5,-24.5 + pos: -112.5,-6.5 parent: 2 - uid: 2686 components: - type: Transform - pos: -65.5,-24.5 + pos: -113.5,-6.5 parent: 2 - uid: 2687 components: - type: Transform - pos: -63.5,-24.5 + pos: -112.5,-2.5 parent: 2 - uid: 2688 components: - type: Transform - pos: -62.5,-24.5 + pos: -113.5,-2.5 parent: 2 - uid: 2689 components: - type: Transform - pos: -61.5,-24.5 + pos: -112.5,-1.5 parent: 2 - uid: 2690 components: - type: Transform - pos: -62.5,-25.5 + pos: -113.5,-1.5 parent: 2 - uid: 2691 components: - type: Transform - pos: -62.5,-26.5 + pos: -108.5,-0.5 parent: 2 - uid: 2692 components: - type: Transform - pos: -77.5,-14.5 + pos: -108.5,-2.5 parent: 2 - uid: 2693 components: - type: Transform - pos: -77.5,-16.5 + pos: -107.5,-0.5 parent: 2 - uid: 2694 components: - type: Transform - pos: -77.5,-15.5 + pos: -107.5,-1.5 parent: 2 - uid: 2695 components: - type: Transform - pos: -85.5,-14.5 + pos: -107.5,-2.5 parent: 2 - uid: 2696 components: - type: Transform - pos: -84.5,-14.5 + pos: -106.5,-0.5 parent: 2 - uid: 2697 components: - type: Transform - pos: -84.5,-15.5 + pos: -106.5,-1.5 parent: 2 - uid: 2698 components: - type: Transform - pos: -85.5,-15.5 + pos: -106.5,-2.5 parent: 2 - uid: 2699 components: - type: Transform - pos: -81.5,-9.5 + pos: -108.5,-1.5 parent: 2 - uid: 2700 components: - type: Transform - pos: -80.5,-9.5 + pos: -103.5,-0.5 parent: 2 - uid: 2701 components: - type: Transform - pos: -80.5,-10.5 + pos: -103.5,-2.5 parent: 2 - uid: 2702 components: - type: Transform - pos: -81.5,-10.5 + pos: -102.5,-0.5 parent: 2 - uid: 2703 components: - type: Transform - pos: -94.5,-11.5 + pos: -103.5,-1.5 parent: 2 - uid: 2704 components: - type: Transform - pos: -94.5,-10.5 + pos: -102.5,-1.5 parent: 2 - uid: 2705 components: - type: Transform - pos: -95.5,-11.5 + pos: -102.5,-2.5 parent: 2 - uid: 2706 components: - type: Transform - pos: -95.5,-10.5 + pos: -101.5,-0.5 parent: 2 - uid: 2707 components: - type: Transform - pos: -96.5,-11.5 + pos: -100.5,-0.5 parent: 2 - uid: 2708 components: - type: Transform - pos: -96.5,-10.5 + pos: -100.5,-1.5 parent: 2 - uid: 2709 components: - type: Transform - pos: -106.5,-11.5 + pos: -101.5,-1.5 parent: 2 - uid: 2710 components: - type: Transform - pos: -105.5,-11.5 + pos: -100.5,-2.5 parent: 2 - uid: 2711 components: - type: Transform - pos: -106.5,-12.5 + pos: -99.5,-0.5 parent: 2 - uid: 2712 components: - type: Transform - pos: -105.5,-12.5 + pos: -99.5,-1.5 parent: 2 - uid: 2713 components: - type: Transform - pos: -104.5,-12.5 + pos: -99.5,-2.5 parent: 2 - uid: 2714 components: - type: Transform - pos: -103.5,-11.5 + pos: -101.5,-2.5 parent: 2 - uid: 2715 components: - type: Transform - pos: -103.5,-12.5 + pos: -97.5,-4.5 parent: 2 - uid: 2716 components: - type: Transform - pos: -104.5,-11.5 + pos: -97.5,-2.5 parent: 2 - uid: 2717 components: - type: Transform - pos: -100.5,-10.5 + pos: -96.5,-4.5 parent: 2 - uid: 2718 components: - type: Transform - pos: -99.5,-10.5 + pos: -96.5,-3.5 parent: 2 - uid: 2719 components: - type: Transform - pos: -99.5,-11.5 + pos: -97.5,-3.5 parent: 2 - uid: 2720 components: - type: Transform - pos: -100.5,-11.5 + pos: -96.5,-2.5 parent: 2 - uid: 2721 components: - type: Transform - pos: -110.5,-10.5 + pos: -95.5,-4.5 parent: 2 - uid: 2722 components: - type: Transform - pos: -110.5,-12.5 + pos: -95.5,-3.5 parent: 2 - uid: 2723 components: - type: Transform - pos: -111.5,-10.5 + pos: -95.5,-2.5 parent: 2 - uid: 2724 components: - type: Transform - pos: -111.5,-11.5 + pos: -130.5,-7.5 parent: 2 - uid: 2725 components: - type: Transform - pos: -111.5,-12.5 + pos: -130.5,-5.5 parent: 2 - uid: 2726 components: - type: Transform - pos: -112.5,-10.5 + pos: -129.5,-7.5 parent: 2 - uid: 2727 components: - type: Transform - pos: -112.5,-11.5 + pos: -129.5,-6.5 parent: 2 - uid: 2728 components: - type: Transform - pos: -112.5,-12.5 + pos: -129.5,-5.5 parent: 2 - uid: 2729 components: - type: Transform - pos: -110.5,-11.5 + pos: -128.5,-7.5 parent: 2 - uid: 2730 components: - type: Transform - pos: -115.5,-11.5 + pos: -130.5,-6.5 parent: 2 - uid: 2731 components: - type: Transform - pos: -115.5,-9.5 + pos: -128.5,-6.5 parent: 2 - uid: 2732 components: - type: Transform - pos: -115.5,-8.5 + pos: -128.5,-5.5 parent: 2 - uid: 2733 components: - type: Transform - pos: -115.5,-10.5 + pos: -133.5,-1.5 parent: 2 - uid: 2734 components: - type: Transform - pos: -116.5,-11.5 + pos: -133.5,-3.5 parent: 2 - uid: 2735 components: - type: Transform - pos: -116.5,-10.5 + pos: -132.5,-1.5 parent: 2 - uid: 2736 components: - type: Transform - pos: -116.5,-9.5 + pos: -132.5,-2.5 parent: 2 - uid: 2737 components: - type: Transform - pos: -117.5,-11.5 + pos: -132.5,-3.5 parent: 2 - uid: 2738 components: - type: Transform - pos: -117.5,-10.5 + pos: -131.5,-1.5 parent: 2 - uid: 2739 components: - type: Transform - pos: -117.5,-9.5 + pos: -133.5,-2.5 parent: 2 - uid: 2740 components: - type: Transform - pos: -118.5,-11.5 + pos: -131.5,-2.5 parent: 2 - uid: 2741 components: - type: Transform - pos: -117.5,-8.5 + pos: -131.5,-3.5 parent: 2 - uid: 2742 components: - type: Transform - pos: -118.5,-10.5 + pos: -135.5,0.5 parent: 2 - uid: 2743 components: - type: Transform - pos: -118.5,-9.5 + pos: -135.5,2.5 parent: 2 - uid: 2744 components: - type: Transform - pos: -118.5,-8.5 + pos: -134.5,0.5 parent: 2 - uid: 2745 components: - type: Transform - pos: -116.5,-8.5 + pos: -135.5,1.5 parent: 2 - uid: 2746 components: - type: Transform - pos: -124.5,-7.5 + pos: -134.5,1.5 parent: 2 - uid: 2747 components: - type: Transform - pos: -124.5,-8.5 + pos: -134.5,2.5 parent: 2 - uid: 2748 components: - type: Transform - pos: -124.5,-9.5 + pos: -133.5,0.5 parent: 2 - uid: 2749 components: - type: Transform - pos: -124.5,-10.5 + pos: -133.5,1.5 parent: 2 - uid: 2750 components: - type: Transform - pos: -123.5,-7.5 + pos: -133.5,2.5 parent: 2 - uid: 2751 components: - type: Transform - pos: -123.5,-8.5 + pos: -133.5,6.5 parent: 2 - uid: 2752 components: - type: Transform - pos: -123.5,-10.5 + pos: -133.5,4.5 parent: 2 - uid: 2753 components: - type: Transform - pos: -122.5,-7.5 + pos: -132.5,6.5 parent: 2 - uid: 2754 components: - type: Transform - pos: -123.5,-9.5 + pos: -132.5,5.5 parent: 2 - uid: 2755 components: - type: Transform - pos: -122.5,-9.5 + pos: -132.5,4.5 parent: 2 - uid: 2756 components: - type: Transform - pos: -122.5,-8.5 + pos: -133.5,5.5 parent: 2 - uid: 2757 components: - type: Transform - pos: -122.5,-10.5 + pos: -126.5,-9.5 parent: 2 - uid: 2758 components: - type: Transform - pos: -121.5,-7.5 + pos: -126.5,-7.5 parent: 2 - uid: 2759 components: - type: Transform - pos: -121.5,-8.5 + pos: -126.5,-8.5 parent: 2 - uid: 2760 components: - type: Transform - pos: -121.5,-9.5 + pos: -120.5,-13.5 parent: 2 - uid: 2761 components: - type: Transform - pos: -121.5,-10.5 + pos: -118.5,-13.5 parent: 2 - uid: 2762 components: - type: Transform - pos: -120.5,-7.5 + pos: -119.5,-13.5 parent: 2 - uid: 2763 components: - type: Transform - pos: -120.5,-8.5 + pos: -131.5,-11.5 parent: 2 - uid: 2764 components: - type: Transform - pos: -120.5,-9.5 + pos: -131.5,-12.5 parent: 2 - uid: 2765 components: - type: Transform - pos: -120.5,-10.5 + pos: -131.5,-13.5 parent: 2 - uid: 2766 components: - type: Transform - pos: -125.5,-3.5 + pos: -130.5,-12.5 parent: 2 - uid: 2767 components: - type: Transform - pos: -125.5,-5.5 + pos: -133.5,-10.5 parent: 2 - uid: 2768 components: - type: Transform - pos: -124.5,-3.5 + pos: -134.5,-10.5 parent: 2 - uid: 2769 components: - type: Transform - pos: -124.5,-4.5 + pos: -134.5,-9.5 parent: 2 - uid: 2770 components: - type: Transform - pos: -125.5,-4.5 + pos: -135.5,-9.5 parent: 2 - uid: 2771 components: - type: Transform - pos: -124.5,-5.5 + pos: -136.5,-9.5 parent: 2 - uid: 2772 components: - type: Transform - pos: -123.5,-3.5 + pos: -137.5,-6.5 parent: 2 - uid: 2773 components: - type: Transform - pos: -123.5,-4.5 + pos: -137.5,-7.5 parent: 2 - uid: 2774 components: - type: Transform - pos: -123.5,-5.5 + pos: -136.5,-7.5 parent: 2 - uid: 2775 components: - type: Transform - pos: -122.5,-4.5 + pos: -136.5,-8.5 parent: 2 - uid: 2776 components: - type: Transform - pos: -122.5,-5.5 + pos: -141.5,-3.5 parent: 2 - uid: 2777 components: - type: Transform - pos: -122.5,-3.5 + pos: -139.5,-3.5 parent: 2 - uid: 2778 components: - type: Transform - pos: -120.5,-1.5 + pos: -140.5,-3.5 parent: 2 - uid: 2779 components: - type: Transform - pos: -120.5,-3.5 + pos: -139.5,-4.5 parent: 2 - uid: 2780 components: - type: Transform - pos: -120.5,-4.5 + pos: -138.5,-4.5 parent: 2 - uid: 2781 components: - type: Transform - pos: -119.5,-1.5 + pos: -141.5,-6.5 parent: 2 - uid: 2782 components: - type: Transform - pos: -119.5,-2.5 + pos: -141.5,-4.5 parent: 2 - uid: 2783 components: - type: Transform - pos: -120.5,-2.5 + pos: -141.5,-5.5 parent: 2 - uid: 2784 components: - type: Transform - pos: -119.5,-3.5 + pos: -53.5,-41.5 parent: 2 - uid: 2785 components: - type: Transform - pos: -118.5,-1.5 + pos: -141.5,-2.5 parent: 2 - uid: 2786 components: - type: Transform - pos: -118.5,-2.5 + pos: -141.5,-0.5 parent: 2 - uid: 2787 components: - type: Transform - pos: -118.5,-3.5 + pos: -141.5,0.5 parent: 2 - uid: 2788 components: - type: Transform - pos: -118.5,-4.5 + pos: -141.5,-1.5 parent: 2 - uid: 2789 components: - type: Transform - pos: -117.5,-1.5 + pos: -140.5,0.5 parent: 2 - uid: 2790 components: - type: Transform - pos: -119.5,-4.5 + pos: -138.5,0.5 parent: 2 - uid: 2791 components: - type: Transform - pos: -117.5,-2.5 + pos: -139.5,0.5 parent: 2 - uid: 2792 components: - type: Transform - pos: -117.5,-3.5 + pos: -138.5,1.5 parent: 2 - uid: 2793 components: - type: Transform - pos: -117.5,-4.5 + pos: -138.5,3.5 parent: 2 - uid: 2794 components: - type: Transform - pos: -114.5,-3.5 + pos: -138.5,2.5 parent: 2 - uid: 2795 components: - type: Transform - pos: -114.5,-5.5 + pos: -139.5,2.5 parent: 2 - uid: 2796 components: - type: Transform - pos: -114.5,-6.5 + pos: -141.5,2.5 parent: 2 - uid: 2797 components: - type: Transform - pos: -113.5,-3.5 + pos: -140.5,2.5 parent: 2 - uid: 2798 components: - type: Transform - pos: -113.5,-4.5 + pos: -123.5,12.5 parent: 2 - uid: 2799 components: - type: Transform - pos: -114.5,-4.5 + pos: -123.5,10.5 parent: 2 - uid: 2800 components: - type: Transform - pos: -113.5,-5.5 + pos: -122.5,12.5 parent: 2 - uid: 2801 components: - type: Transform - pos: -112.5,-3.5 + pos: -122.5,11.5 parent: 2 - uid: 2802 components: - type: Transform - pos: -112.5,-4.5 + pos: -122.5,10.5 parent: 2 - uid: 2803 components: - type: Transform - pos: -112.5,-5.5 + pos: -123.5,11.5 parent: 2 - uid: 2804 components: - type: Transform - pos: -112.5,-6.5 + pos: -121.5,12.5 parent: 2 - uid: 2805 components: - type: Transform - pos: -113.5,-6.5 + pos: -121.5,10.5 parent: 2 - uid: 2806 components: - type: Transform - pos: -112.5,-2.5 + pos: -121.5,11.5 parent: 2 - uid: 2807 components: - type: Transform - pos: -113.5,-2.5 + pos: -123.5,6.5 parent: 2 - uid: 2808 components: - type: Transform - pos: -112.5,-1.5 + pos: -123.5,8.5 parent: 2 - uid: 2809 components: - type: Transform - pos: -113.5,-1.5 + pos: -122.5,6.5 parent: 2 - uid: 2810 components: - type: Transform - pos: -114.5,-1.5 + pos: -122.5,7.5 parent: 2 - uid: 2811 components: - type: Transform - pos: -114.5,-2.5 + pos: -123.5,7.5 parent: 2 - uid: 2812 components: - type: Transform - pos: -108.5,-0.5 + pos: -122.5,8.5 parent: 2 - uid: 2813 components: - type: Transform - pos: -108.5,-2.5 + pos: -121.5,6.5 parent: 2 - uid: 2814 components: - type: Transform - pos: -107.5,-0.5 + pos: -121.5,7.5 parent: 2 - uid: 2815 components: - type: Transform - pos: -107.5,-1.5 + pos: -121.5,8.5 parent: 2 - uid: 2816 components: - type: Transform - pos: -107.5,-2.5 + pos: -122.5,1.5 parent: 2 - uid: 2817 components: - type: Transform - pos: -106.5,-0.5 + pos: -122.5,3.5 parent: 2 - uid: 2818 components: - type: Transform - pos: -106.5,-1.5 + pos: -121.5,1.5 parent: 2 - uid: 2819 components: - type: Transform - pos: -106.5,-2.5 + pos: -122.5,2.5 parent: 2 - uid: 2820 components: - type: Transform - pos: -108.5,-1.5 + pos: -121.5,2.5 parent: 2 - uid: 2821 components: - type: Transform - pos: -103.5,-0.5 + pos: -121.5,3.5 parent: 2 - uid: 2822 components: - type: Transform - pos: -103.5,-2.5 + pos: -120.5,1.5 parent: 2 - uid: 2823 components: - type: Transform - pos: -102.5,-0.5 + pos: -120.5,2.5 parent: 2 - uid: 2824 components: - type: Transform - pos: -103.5,-1.5 + pos: -120.5,3.5 parent: 2 - uid: 2825 components: - type: Transform - pos: -102.5,-1.5 + pos: -123.5,5.5 parent: 2 - uid: 2826 components: - type: Transform - pos: -102.5,-2.5 + pos: -122.5,5.5 parent: 2 - uid: 2827 components: - type: Transform - pos: -101.5,-0.5 + pos: -121.5,5.5 parent: 2 - uid: 2828 components: - type: Transform - pos: -100.5,-0.5 + pos: -130.5,19.5 parent: 2 - uid: 2829 components: - type: Transform - pos: -100.5,-1.5 + pos: -132.5,19.5 parent: 2 - uid: 2830 components: - type: Transform - pos: -101.5,-1.5 + pos: -135.5,17.5 parent: 2 - uid: 2831 components: - type: Transform - pos: -100.5,-2.5 + pos: -135.5,18.5 parent: 2 - uid: 2832 components: - type: Transform - pos: -99.5,-0.5 + pos: -135.5,16.5 parent: 2 - uid: 2833 components: - type: Transform - pos: -99.5,-1.5 + pos: -134.5,17.5 parent: 2 - uid: 2834 components: - type: Transform - pos: -99.5,-2.5 + pos: -134.5,18.5 parent: 2 - uid: 2835 components: - type: Transform - pos: -101.5,-2.5 + pos: -136.5,15.5 parent: 2 - uid: 2836 components: - type: Transform - pos: -97.5,-4.5 + pos: -136.5,16.5 parent: 2 - uid: 2837 components: - type: Transform - pos: -97.5,-2.5 + pos: -136.5,17.5 parent: 2 - uid: 2838 components: - type: Transform - pos: -96.5,-4.5 + pos: -130.5,18.5 parent: 2 - uid: 2839 components: - type: Transform - pos: -96.5,-3.5 + pos: -128.5,18.5 parent: 2 - uid: 2840 components: - type: Transform - pos: -97.5,-3.5 + pos: -129.5,18.5 parent: 2 - uid: 2841 components: - type: Transform - pos: -96.5,-2.5 + pos: -128.5,19.5 parent: 2 - uid: 2842 components: - type: Transform - pos: -95.5,-4.5 + pos: -126.5,19.5 parent: 2 - uid: 2843 components: - type: Transform - pos: -95.5,-3.5 + pos: -127.5,19.5 parent: 2 - uid: 2844 components: - type: Transform - pos: -95.5,-2.5 + pos: -126.5,15.5 parent: 2 - uid: 2845 components: - type: Transform - pos: -130.5,-7.5 + pos: -126.5,16.5 parent: 2 - uid: 2846 components: - type: Transform - pos: -130.5,-5.5 + pos: -126.5,14.5 parent: 2 - uid: 2847 components: - type: Transform - pos: -129.5,-7.5 + pos: -125.5,15.5 parent: 2 - uid: 2848 components: - type: Transform - pos: -129.5,-6.5 + pos: -124.5,14.5 parent: 2 - uid: 2849 components: - type: Transform - pos: -129.5,-5.5 + pos: -125.5,16.5 parent: 2 - uid: 2850 components: - type: Transform - pos: -128.5,-7.5 + pos: -124.5,15.5 parent: 2 - uid: 2851 components: - type: Transform - pos: -130.5,-6.5 + pos: -124.5,16.5 parent: 2 - uid: 2852 components: - type: Transform - pos: -128.5,-6.5 + pos: -125.5,14.5 parent: 2 - uid: 2853 components: - type: Transform - pos: -128.5,-5.5 + pos: -126.5,17.5 parent: 2 - uid: 2854 components: - type: Transform - pos: -133.5,-1.5 + pos: -124.5,17.5 parent: 2 - uid: 2855 components: - type: Transform - pos: -133.5,-3.5 + pos: -125.5,17.5 parent: 2 - uid: 2856 components: - type: Transform - pos: -132.5,-1.5 + pos: -122.5,15.5 parent: 2 - uid: 2857 components: - type: Transform - pos: -132.5,-2.5 + pos: -122.5,17.5 parent: 2 - uid: 2858 components: - type: Transform - pos: -132.5,-3.5 + pos: -122.5,18.5 parent: 2 - uid: 2859 components: - type: Transform - pos: -131.5,-1.5 + pos: -122.5,16.5 parent: 2 - uid: 2860 components: - type: Transform - pos: -133.5,-2.5 + pos: -121.5,16.5 parent: 2 - uid: 2861 components: - type: Transform - pos: -131.5,-2.5 + pos: -121.5,15.5 parent: 2 - uid: 2862 components: - type: Transform - pos: -131.5,-3.5 + pos: -121.5,17.5 parent: 2 - uid: 2863 components: - type: Transform - pos: -135.5,0.5 + pos: -121.5,18.5 parent: 2 - uid: 2864 components: - type: Transform - pos: -135.5,2.5 + pos: -120.5,16.5 parent: 2 - uid: 2865 components: - type: Transform - pos: -134.5,0.5 + pos: -120.5,17.5 parent: 2 - uid: 2866 components: - type: Transform - pos: -135.5,1.5 + pos: -120.5,18.5 parent: 2 - uid: 2867 components: - type: Transform - pos: -134.5,1.5 + pos: -119.5,15.5 parent: 2 - uid: 2868 components: - type: Transform - pos: -134.5,2.5 + pos: -119.5,16.5 parent: 2 - uid: 2869 components: - type: Transform - pos: -133.5,0.5 + pos: -120.5,15.5 parent: 2 - uid: 2870 components: - type: Transform - pos: -133.5,1.5 + pos: -119.5,17.5 parent: 2 - uid: 2871 components: - type: Transform - pos: -133.5,2.5 + pos: -119.5,18.5 parent: 2 - uid: 2872 components: - type: Transform - pos: -133.5,6.5 + pos: -121.5,23.5 parent: 2 - uid: 2873 components: - type: Transform - pos: -133.5,4.5 + pos: -121.5,21.5 parent: 2 - uid: 2874 components: - type: Transform - pos: -132.5,6.5 + pos: -120.5,23.5 parent: 2 - uid: 2875 components: - type: Transform - pos: -132.5,5.5 + pos: -120.5,22.5 parent: 2 - uid: 2876 components: - type: Transform - pos: -132.5,4.5 + pos: -120.5,21.5 parent: 2 - uid: 2877 components: - type: Transform - pos: -133.5,5.5 + pos: -119.5,23.5 parent: 2 - uid: 2878 components: - type: Transform - pos: -126.5,-9.5 + pos: -119.5,22.5 parent: 2 - uid: 2879 components: - type: Transform - pos: -126.5,-7.5 + pos: -121.5,22.5 parent: 2 - uid: 2880 components: - type: Transform - pos: -126.5,-8.5 + pos: -119.5,21.5 parent: 2 - uid: 2881 components: - type: Transform - pos: -120.5,-13.5 + pos: -128.5,11.5 parent: 2 - uid: 2882 components: - type: Transform - pos: -118.5,-13.5 + pos: -128.5,9.5 parent: 2 - uid: 2883 components: - type: Transform - pos: -119.5,-13.5 + pos: -128.5,8.5 parent: 2 - uid: 2884 components: - type: Transform - pos: -131.5,-11.5 + pos: -127.5,11.5 parent: 2 - uid: 2885 components: - type: Transform - pos: -131.5,-12.5 + pos: -127.5,10.5 parent: 2 - uid: 2886 components: - type: Transform - pos: -131.5,-13.5 + pos: -127.5,9.5 parent: 2 - uid: 2887 components: - type: Transform - pos: -130.5,-12.5 + pos: -128.5,10.5 parent: 2 - uid: 2888 components: - type: Transform - pos: -133.5,-10.5 + pos: -127.5,8.5 parent: 2 - uid: 2889 components: - type: Transform - pos: -134.5,-10.5 + pos: -126.5,11.5 parent: 2 - uid: 2890 components: - type: Transform - pos: -134.5,-9.5 + pos: -126.5,8.5 parent: 2 - uid: 2891 components: - type: Transform - pos: -135.5,-9.5 + pos: -126.5,9.5 parent: 2 - uid: 2892 components: - type: Transform - pos: -136.5,-9.5 + pos: -126.5,10.5 parent: 2 - uid: 2893 components: - type: Transform - pos: -137.5,-6.5 + pos: -128.5,6.5 parent: 2 - uid: 2894 components: - type: Transform - pos: -137.5,-7.5 + pos: -128.5,4.5 parent: 2 - uid: 2895 components: - type: Transform - pos: -136.5,-7.5 + pos: -127.5,6.5 parent: 2 - uid: 2896 components: - type: Transform - pos: -136.5,-8.5 + pos: -127.5,5.5 parent: 2 - uid: 2897 components: - type: Transform - pos: -141.5,-3.5 + pos: -127.5,4.5 parent: 2 - uid: 2898 components: - type: Transform - pos: -139.5,-3.5 + pos: -126.5,6.5 parent: 2 - uid: 2899 components: - type: Transform - pos: -140.5,-3.5 + pos: -128.5,5.5 parent: 2 - uid: 2900 components: - type: Transform - pos: -139.5,-4.5 + pos: -126.5,5.5 parent: 2 - uid: 2901 components: - type: Transform - pos: -138.5,-4.5 + pos: -126.5,4.5 parent: 2 - uid: 2902 components: - type: Transform - pos: -141.5,-6.5 + pos: -126.5,0.5 parent: 2 - uid: 2903 components: - type: Transform - pos: -141.5,-4.5 + pos: -126.5,0.5 parent: 2 - uid: 2904 components: - type: Transform - pos: -141.5,-5.5 + pos: -126.5,2.5 parent: 2 - uid: 2905 components: - type: Transform - pos: -53.5,-41.5 + pos: -125.5,0.5 parent: 2 - uid: 2906 components: - type: Transform - pos: -141.5,-2.5 + pos: -126.5,1.5 parent: 2 - uid: 2907 components: - type: Transform - pos: -141.5,-0.5 + pos: -125.5,2.5 parent: 2 - uid: 2908 components: - type: Transform - pos: -141.5,0.5 + pos: -125.5,1.5 parent: 2 - uid: 2909 components: - type: Transform - pos: -141.5,-1.5 + pos: -43.5,-27.5 parent: 2 - uid: 2910 components: - type: Transform - pos: -140.5,0.5 + pos: -42.5,-27.5 parent: 2 - uid: 2911 components: - type: Transform - pos: -138.5,0.5 + pos: -50.5,-25.5 parent: 2 - uid: 2912 components: - type: Transform - pos: -139.5,0.5 + pos: -53.5,-37.5 parent: 2 - uid: 2913 components: - type: Transform - pos: -138.5,1.5 + pos: -53.5,-39.5 parent: 2 - uid: 2914 components: - type: Transform - pos: -138.5,3.5 + pos: -53.5,-40.5 parent: 2 - uid: 2915 components: - type: Transform - pos: -138.5,2.5 + pos: -52.5,-37.5 parent: 2 - uid: 2916 components: - type: Transform - pos: -139.5,2.5 + pos: -53.5,-38.5 parent: 2 - uid: 2917 components: - type: Transform - pos: -141.5,2.5 + pos: -52.5,-38.5 parent: 2 - uid: 2918 components: - type: Transform - pos: -140.5,2.5 + pos: -52.5,-39.5 parent: 2 - uid: 2919 components: - type: Transform - pos: -123.5,12.5 + pos: -52.5,-40.5 parent: 2 - uid: 2920 components: - type: Transform - pos: -123.5,10.5 + pos: -49.5,-34.5 parent: 2 - uid: 2921 components: - type: Transform - pos: -122.5,12.5 + pos: -48.5,-34.5 parent: 2 - uid: 2922 components: - type: Transform - pos: -122.5,11.5 + pos: -48.5,-35.5 parent: 2 - uid: 2923 components: - type: Transform - pos: -122.5,10.5 + pos: -47.5,-34.5 parent: 2 - uid: 2924 components: - type: Transform - pos: -123.5,11.5 + pos: -47.5,-35.5 parent: 2 - uid: 2925 components: - type: Transform - pos: -121.5,12.5 + pos: -46.5,-34.5 parent: 2 - uid: 2926 components: - type: Transform - pos: -121.5,10.5 + pos: -49.5,-35.5 parent: 2 - uid: 2927 components: - type: Transform - pos: -121.5,11.5 + pos: -45.5,-35.5 parent: 2 - uid: 2928 components: - type: Transform - pos: -123.5,6.5 + pos: -45.5,-34.5 parent: 2 - uid: 2929 components: - type: Transform - pos: -123.5,8.5 + pos: -46.5,-35.5 parent: 2 - uid: 2930 components: - type: Transform - pos: -122.5,6.5 + pos: -50.5,-45.5 parent: 2 - uid: 2931 components: - type: Transform - pos: -122.5,7.5 + pos: -49.5,-45.5 parent: 2 - uid: 2932 components: - type: Transform - pos: -123.5,7.5 + pos: -37.5,-44.5 parent: 2 - uid: 2933 components: - type: Transform - pos: -122.5,8.5 + pos: -48.5,-45.5 parent: 2 - uid: 2934 components: - type: Transform - pos: -121.5,6.5 + pos: -37.5,-45.5 parent: 2 - uid: 2935 components: - type: Transform - pos: -121.5,7.5 + pos: -38.5,-44.5 parent: 2 - uid: 2936 components: - type: Transform - pos: -121.5,8.5 + pos: -47.5,-45.5 parent: 2 - uid: 2937 components: - type: Transform - pos: -122.5,1.5 + pos: -38.5,-42.5 parent: 2 - uid: 2938 components: - type: Transform - pos: -122.5,3.5 + pos: -46.5,-45.5 parent: 2 - uid: 2939 components: - type: Transform - pos: -121.5,1.5 + pos: -45.5,-45.5 parent: 2 - uid: 2940 components: - type: Transform - pos: -122.5,2.5 + pos: -38.5,-43.5 parent: 2 - uid: 2941 components: - type: Transform - pos: -121.5,2.5 + pos: -44.5,-45.5 parent: 2 - uid: 2942 components: - type: Transform - pos: -121.5,3.5 + pos: -38.5,-45.5 parent: 2 - uid: 2943 components: - type: Transform - pos: -120.5,1.5 + pos: -38.5,-41.5 parent: 2 - uid: 2944 components: - type: Transform - pos: -120.5,2.5 + pos: -42.5,-36.5 parent: 2 - uid: 2945 components: - type: Transform - pos: -120.5,3.5 + pos: -42.5,-38.5 parent: 2 - uid: 2946 components: - type: Transform - pos: -123.5,5.5 + pos: -42.5,-37.5 parent: 2 - uid: 2947 components: - type: Transform - pos: -122.5,5.5 + pos: -42.5,-39.5 parent: 2 - uid: 2948 components: - type: Transform - pos: -121.5,5.5 + pos: -42.5,-40.5 parent: 2 - uid: 2949 components: - type: Transform - pos: -130.5,19.5 + pos: -42.5,-41.5 parent: 2 - uid: 2950 components: - type: Transform - pos: -132.5,19.5 + pos: -42.5,-42.5 parent: 2 - uid: 2951 components: - type: Transform - pos: -135.5,17.5 + pos: -41.5,-36.5 parent: 2 - uid: 2952 components: - type: Transform - pos: -135.5,18.5 + pos: -41.5,-38.5 parent: 2 - uid: 2953 components: - type: Transform - pos: -135.5,16.5 + pos: -41.5,-39.5 parent: 2 - uid: 2954 components: - type: Transform - pos: -134.5,17.5 + pos: -41.5,-40.5 parent: 2 - uid: 2955 components: - type: Transform - pos: -134.5,18.5 + pos: -41.5,-41.5 parent: 2 - uid: 2956 components: - type: Transform - pos: -136.5,15.5 + pos: -41.5,-42.5 parent: 2 - uid: 2957 components: - type: Transform - pos: -136.5,16.5 + pos: -41.5,-37.5 parent: 2 - uid: 2958 components: - type: Transform - pos: -136.5,17.5 + pos: -52.5,-41.5 parent: 2 - uid: 2959 components: - type: Transform - pos: -130.5,18.5 + pos: -52.5,-42.5 parent: 2 - uid: 2960 components: - type: Transform - pos: -128.5,18.5 + pos: -53.5,-42.5 parent: 2 - uid: 2961 components: - type: Transform - pos: -129.5,18.5 + pos: -49.5,-38.5 parent: 2 - uid: 2962 components: - type: Transform - pos: -128.5,19.5 + pos: -49.5,-40.5 parent: 2 - uid: 2963 components: - type: Transform - pos: -126.5,19.5 + pos: -49.5,-41.5 parent: 2 - uid: 2964 components: - type: Transform - pos: -127.5,19.5 + pos: -49.5,-42.5 parent: 2 - uid: 2965 components: - type: Transform - pos: -126.5,15.5 + pos: -48.5,-38.5 parent: 2 - uid: 2966 components: - type: Transform - pos: -126.5,16.5 + pos: -48.5,-39.5 parent: 2 - uid: 2967 components: - type: Transform - pos: -126.5,14.5 + pos: -49.5,-39.5 parent: 2 - uid: 2968 components: - type: Transform - pos: -125.5,15.5 + pos: -48.5,-40.5 parent: 2 - uid: 2969 components: - type: Transform - pos: -124.5,14.5 + pos: -47.5,-38.5 parent: 2 - uid: 2970 components: - type: Transform - pos: -125.5,16.5 + pos: -47.5,-39.5 parent: 2 - uid: 2971 components: - type: Transform - pos: -124.5,15.5 + pos: -48.5,-41.5 parent: 2 - uid: 2972 components: - type: Transform - pos: -124.5,16.5 + pos: -48.5,-42.5 parent: 2 - uid: 2973 components: - type: Transform - pos: -125.5,14.5 + pos: -47.5,-41.5 parent: 2 - uid: 2974 components: - type: Transform - pos: -126.5,17.5 + pos: -47.5,-40.5 parent: 2 - uid: 2975 components: - type: Transform - pos: -124.5,17.5 + pos: -47.5,-42.5 parent: 2 - uid: 2976 components: - type: Transform - pos: -125.5,17.5 + pos: -46.5,-38.5 parent: 2 - uid: 2977 components: - type: Transform - pos: -122.5,15.5 + pos: -46.5,-39.5 parent: 2 - uid: 2978 components: - type: Transform - pos: -122.5,17.5 + pos: -46.5,-41.5 parent: 2 - uid: 2979 components: - type: Transform - pos: -122.5,18.5 + pos: -46.5,-40.5 parent: 2 - uid: 2980 components: - type: Transform - pos: -122.5,16.5 + pos: -45.5,-38.5 parent: 2 - uid: 2981 components: - type: Transform - pos: -121.5,16.5 + pos: -45.5,-40.5 parent: 2 - uid: 2982 components: - type: Transform - pos: -121.5,15.5 + pos: -46.5,-42.5 parent: 2 - uid: 2983 components: - type: Transform - pos: -121.5,17.5 + pos: -45.5,-41.5 parent: 2 - uid: 2984 components: - type: Transform - pos: -121.5,18.5 + pos: -45.5,-42.5 parent: 2 - uid: 2985 components: - type: Transform - pos: -120.5,16.5 + pos: -45.5,-39.5 parent: 2 - uid: 2986 components: - type: Transform - pos: -120.5,17.5 + pos: -53.5,-36.5 parent: 2 - uid: 2987 components: - type: Transform - pos: -120.5,18.5 + pos: -52.5,-36.5 parent: 2 - uid: 2988 components: - type: Transform - pos: -119.5,15.5 + pos: -49.5,-46.5 parent: 2 - uid: 2989 components: - type: Transform - pos: -119.5,16.5 + pos: -47.5,-46.5 parent: 2 - uid: 2990 components: - type: Transform - pos: -120.5,15.5 + pos: -46.5,-46.5 parent: 2 - uid: 2991 components: - type: Transform - pos: -119.5,17.5 + pos: -45.5,-46.5 parent: 2 - uid: 2992 components: - type: Transform - pos: -119.5,18.5 + pos: -44.5,-46.5 parent: 2 - uid: 2993 components: - type: Transform - pos: -121.5,23.5 + pos: -48.5,-46.5 parent: 2 - uid: 2994 components: - type: Transform - pos: -121.5,21.5 + pos: -37.5,-43.5 parent: 2 - uid: 2995 components: - type: Transform - pos: -120.5,23.5 + pos: -37.5,-42.5 parent: 2 - uid: 2996 components: - type: Transform - pos: -120.5,22.5 + pos: -37.5,-41.5 parent: 2 - uid: 2997 components: - type: Transform - pos: -120.5,21.5 + pos: -34.5,-45.5 parent: 2 - uid: 2998 components: - type: Transform - pos: -119.5,23.5 + pos: -34.5,-46.5 parent: 2 - uid: 2999 components: - type: Transform - pos: -119.5,22.5 + pos: -33.5,-46.5 parent: 2 - uid: 3000 components: - type: Transform - pos: -121.5,22.5 + pos: -33.5,-45.5 parent: 2 - uid: 3001 components: - type: Transform - pos: -119.5,21.5 + pos: -34.5,-44.5 parent: 2 - uid: 3002 components: - type: Transform - pos: -128.5,11.5 + pos: -33.5,-44.5 parent: 2 - uid: 3003 components: - type: Transform - pos: -128.5,9.5 + pos: -40.5,-51.5 parent: 2 - uid: 3004 components: - type: Transform - pos: -128.5,8.5 + pos: -38.5,-50.5 parent: 2 - uid: 3005 components: - type: Transform - pos: -127.5,11.5 + pos: -38.5,-49.5 parent: 2 - uid: 3006 components: - type: Transform - pos: -127.5,10.5 + pos: -37.5,-47.5 parent: 2 - uid: 3007 components: - type: Transform - pos: -127.5,9.5 + pos: -37.5,-53.5 parent: 2 - uid: 3008 components: - type: Transform - pos: -128.5,10.5 + pos: -37.5,-55.5 parent: 2 - uid: 3009 components: - type: Transform - pos: -127.5,8.5 + pos: -36.5,-53.5 parent: 2 - uid: 3010 components: - type: Transform - pos: -126.5,11.5 + pos: -36.5,-54.5 parent: 2 - uid: 3011 components: - type: Transform - pos: -126.5,8.5 + pos: -36.5,-55.5 parent: 2 - uid: 3012 components: - type: Transform - pos: -126.5,9.5 + pos: -35.5,-53.5 parent: 2 - uid: 3013 components: - type: Transform - pos: -126.5,10.5 + pos: -37.5,-54.5 parent: 2 - uid: 3014 components: - type: Transform - pos: -128.5,6.5 + pos: -35.5,-55.5 parent: 2 - uid: 3015 components: - type: Transform - pos: -128.5,4.5 + pos: -34.5,-54.5 parent: 2 - uid: 3016 components: - type: Transform - pos: -127.5,6.5 + pos: -34.5,-53.5 parent: 2 - uid: 3017 components: - type: Transform - pos: -127.5,5.5 + pos: -34.5,-55.5 parent: 2 - uid: 3018 components: - type: Transform - pos: -127.5,4.5 + pos: -35.5,-54.5 parent: 2 - uid: 3019 components: - type: Transform - pos: -126.5,6.5 + pos: -47.5,-53.5 parent: 2 - uid: 3020 components: - type: Transform - pos: -128.5,5.5 + pos: -47.5,-54.5 parent: 2 - uid: 3021 components: - type: Transform - pos: -126.5,5.5 + pos: -46.5,-53.5 parent: 2 - uid: 3022 components: - type: Transform - pos: -126.5,4.5 + pos: -46.5,-54.5 parent: 2 - uid: 3023 components: - type: Transform - pos: -126.5,0.5 + pos: -45.5,-53.5 parent: 2 - uid: 3024 components: - type: Transform - pos: -126.5,0.5 + pos: -45.5,-54.5 parent: 2 - uid: 3025 components: - type: Transform - pos: -126.5,2.5 + pos: -43.5,-55.5 parent: 2 - uid: 3026 components: - type: Transform - pos: -125.5,0.5 + pos: -43.5,-57.5 parent: 2 - uid: 3027 components: - type: Transform - pos: -126.5,1.5 + pos: -42.5,-55.5 parent: 2 - uid: 3028 components: - type: Transform - pos: -125.5,2.5 + pos: -42.5,-56.5 parent: 2 - uid: 3029 components: - type: Transform - pos: -125.5,1.5 + pos: -42.5,-57.5 parent: 2 - uid: 3030 components: - type: Transform - pos: -43.5,-27.5 + pos: -41.5,-55.5 parent: 2 - uid: 3031 components: - type: Transform - pos: -42.5,-27.5 + pos: -41.5,-56.5 parent: 2 - uid: 3032 components: - type: Transform - pos: -50.5,-25.5 + pos: -43.5,-56.5 parent: 2 - uid: 3033 components: - type: Transform - pos: -53.5,-37.5 + pos: -41.5,-57.5 parent: 2 - uid: 3034 components: - type: Transform - pos: -53.5,-39.5 + pos: -52.5,-51.5 parent: 2 - uid: 3035 components: - type: Transform - pos: -53.5,-40.5 + pos: -50.5,-51.5 parent: 2 - uid: 3036 components: - type: Transform - pos: -52.5,-37.5 + pos: -51.5,-51.5 parent: 2 - uid: 3037 components: - type: Transform - pos: -53.5,-38.5 + pos: -53.5,-49.5 parent: 2 - uid: 3038 components: - type: Transform - pos: -52.5,-38.5 + pos: -54.5,-49.5 parent: 2 - uid: 3039 components: - type: Transform - pos: -52.5,-39.5 + pos: -58.5,-45.5 parent: 2 - uid: 3040 components: - type: Transform - pos: -52.5,-40.5 + pos: -58.5,-46.5 parent: 2 - uid: 3041 components: - type: Transform - pos: -49.5,-34.5 + pos: -58.5,-47.5 parent: 2 - uid: 3042 components: - type: Transform - pos: -48.5,-34.5 + pos: -49.5,-53.5 parent: 2 - uid: 3043 components: - type: Transform - pos: -48.5,-35.5 + pos: -47.5,-56.5 parent: 2 - uid: 3044 components: - type: Transform - pos: -47.5,-34.5 + pos: -46.5,-56.5 parent: 2 - uid: 3045 components: - type: Transform - pos: -47.5,-35.5 + pos: -45.5,-56.5 parent: 2 - uid: 3046 components: - type: Transform - pos: -46.5,-34.5 + pos: -34.5,-62.5 parent: 2 - uid: 3047 components: - type: Transform - pos: -49.5,-35.5 + pos: -34.5,-63.5 parent: 2 - uid: 3048 components: - type: Transform - pos: -45.5,-35.5 + pos: -34.5,-64.5 parent: 2 - uid: 3049 components: - type: Transform - pos: -45.5,-34.5 + pos: -34.5,-65.5 parent: 2 - uid: 3050 components: - type: Transform - pos: -46.5,-35.5 + pos: -34.5,-66.5 parent: 2 - uid: 3051 components: - type: Transform - pos: -50.5,-45.5 + pos: -34.5,-67.5 parent: 2 - uid: 3052 components: - type: Transform - pos: -49.5,-45.5 + pos: -34.5,-68.5 parent: 2 - uid: 3053 components: - type: Transform - pos: -37.5,-44.5 + pos: -34.5,-69.5 parent: 2 - uid: 3054 components: - type: Transform - pos: -48.5,-45.5 + pos: -34.5,-70.5 parent: 2 - uid: 3055 components: - type: Transform - pos: -37.5,-45.5 + pos: -34.5,-71.5 parent: 2 - uid: 3056 components: - type: Transform - pos: -38.5,-44.5 + pos: -34.5,-72.5 parent: 2 - uid: 3057 components: - type: Transform - pos: -47.5,-45.5 + pos: -34.5,-73.5 parent: 2 - uid: 3058 components: - type: Transform - pos: -38.5,-42.5 + pos: -39.5,-67.5 parent: 2 - uid: 3059 components: - type: Transform - pos: -46.5,-45.5 + pos: -37.5,-67.5 parent: 2 - uid: 3060 components: - type: Transform - pos: -45.5,-45.5 + pos: -36.5,-67.5 parent: 2 - uid: 3061 components: - type: Transform - pos: -38.5,-43.5 + pos: -35.5,-67.5 parent: 2 - uid: 3062 components: - type: Transform - pos: -44.5,-45.5 + pos: -38.5,-67.5 parent: 2 - uid: 3063 components: - type: Transform - pos: -38.5,-45.5 + pos: -33.5,-67.5 parent: 2 - uid: 3064 components: - type: Transform - pos: -38.5,-41.5 + pos: -31.5,-67.5 parent: 2 - uid: 3065 components: - type: Transform - pos: -42.5,-36.5 + pos: -30.5,-67.5 parent: 2 - uid: 3066 components: - type: Transform - pos: -42.5,-38.5 + pos: -29.5,-67.5 parent: 2 - uid: 3067 components: - type: Transform - pos: -42.5,-37.5 + pos: -32.5,-67.5 parent: 2 - uid: 3068 components: - type: Transform - pos: -42.5,-39.5 + pos: -39.5,-65.5 parent: 2 - uid: 3069 components: - type: Transform - pos: -42.5,-40.5 + pos: -37.5,-65.5 parent: 2 - uid: 3070 components: - type: Transform - pos: -42.5,-41.5 + pos: -36.5,-65.5 parent: 2 - uid: 3071 components: - type: Transform - pos: -42.5,-42.5 + pos: -35.5,-65.5 parent: 2 - uid: 3072 components: - type: Transform - pos: -41.5,-36.5 + pos: -38.5,-65.5 parent: 2 - uid: 3073 components: - type: Transform - pos: -41.5,-38.5 + pos: -33.5,-65.5 parent: 2 - uid: 3074 components: - type: Transform - pos: -41.5,-39.5 + pos: -31.5,-65.5 parent: 2 - uid: 3075 components: - type: Transform - pos: -41.5,-40.5 + pos: -30.5,-65.5 parent: 2 - uid: 3076 components: - type: Transform - pos: -41.5,-41.5 + pos: -29.5,-65.5 parent: 2 - uid: 3077 components: - type: Transform - pos: -41.5,-42.5 + pos: -32.5,-65.5 parent: 2 - uid: 3078 components: - type: Transform - pos: -41.5,-37.5 + pos: -39.5,-69.5 parent: 2 - uid: 3079 components: - type: Transform - pos: -52.5,-41.5 + pos: -37.5,-69.5 parent: 2 - uid: 3080 components: - type: Transform - pos: -52.5,-42.5 + pos: -36.5,-69.5 parent: 2 - uid: 3081 components: - type: Transform - pos: -53.5,-42.5 + pos: -35.5,-69.5 parent: 2 - uid: 3082 components: - type: Transform - pos: -49.5,-38.5 + pos: -38.5,-69.5 parent: 2 - uid: 3083 components: - type: Transform - pos: -49.5,-40.5 + pos: -33.5,-69.5 parent: 2 - uid: 3084 components: - type: Transform - pos: -49.5,-41.5 + pos: -31.5,-69.5 parent: 2 - uid: 3085 components: - type: Transform - pos: -49.5,-42.5 + pos: -30.5,-69.5 parent: 2 - uid: 3086 components: - type: Transform - pos: -48.5,-38.5 + pos: -29.5,-69.5 parent: 2 - uid: 3087 components: - type: Transform - pos: -48.5,-39.5 + pos: -32.5,-69.5 parent: 2 - uid: 3088 components: - type: Transform - pos: -49.5,-39.5 + pos: -39.5,-71.5 parent: 2 - uid: 3089 components: - type: Transform - pos: -48.5,-40.5 + pos: -37.5,-71.5 parent: 2 - uid: 3090 components: - type: Transform - pos: -47.5,-38.5 + pos: -36.5,-71.5 parent: 2 - uid: 3091 components: - type: Transform - pos: -47.5,-39.5 + pos: -38.5,-71.5 parent: 2 - uid: 3092 components: - type: Transform - pos: -48.5,-41.5 + pos: -35.5,-71.5 parent: 2 - uid: 3093 components: - type: Transform - pos: -48.5,-42.5 + pos: -33.5,-71.5 parent: 2 - uid: 3094 components: - type: Transform - pos: -47.5,-41.5 + pos: -31.5,-71.5 parent: 2 - uid: 3095 components: - type: Transform - pos: -47.5,-40.5 + pos: -30.5,-71.5 parent: 2 - uid: 3096 components: - type: Transform - pos: -47.5,-42.5 + pos: -29.5,-71.5 parent: 2 - uid: 3097 components: - type: Transform - pos: -46.5,-38.5 + pos: -32.5,-71.5 parent: 2 - uid: 3098 components: - type: Transform - pos: -46.5,-39.5 + pos: -27.5,-70.5 parent: 2 - uid: 3099 components: - type: Transform - pos: -46.5,-41.5 + pos: -27.5,-68.5 parent: 2 - uid: 3100 components: - type: Transform - pos: -46.5,-40.5 + pos: -27.5,-69.5 parent: 2 - uid: 3101 components: - type: Transform - pos: -45.5,-38.5 + pos: -26.5,-70.5 parent: 2 - uid: 3102 components: - type: Transform - pos: -45.5,-40.5 + pos: -26.5,-69.5 parent: 2 - uid: 3103 components: - type: Transform - pos: -46.5,-42.5 + pos: -26.5,-68.5 parent: 2 - uid: 3104 components: - type: Transform - pos: -45.5,-41.5 + pos: -25.5,-71.5 parent: 2 - uid: 3105 components: - type: Transform - pos: -45.5,-42.5 + pos: -24.5,-71.5 parent: 2 - uid: 3106 components: - type: Transform - pos: -45.5,-39.5 + pos: -39.5,-58.5 parent: 2 - uid: 3107 components: - type: Transform - pos: -53.5,-36.5 + pos: -39.5,-59.5 parent: 2 - uid: 3108 components: - type: Transform - pos: -52.5,-36.5 + pos: -37.5,-57.5 parent: 2 - uid: 3109 components: - type: Transform - pos: -49.5,-46.5 + pos: -38.5,-61.5 parent: 2 - uid: 3110 components: - type: Transform - pos: -47.5,-46.5 + pos: -36.5,-57.5 parent: 2 - uid: 3111 components: - type: Transform - pos: -46.5,-46.5 + pos: -37.5,-61.5 parent: 2 - uid: 3112 components: - type: Transform - pos: -45.5,-46.5 + pos: -37.5,-62.5 parent: 2 - uid: 3113 components: - type: Transform - pos: -44.5,-46.5 + pos: -36.5,-61.5 parent: 2 - uid: 3114 components: - type: Transform - pos: -48.5,-46.5 + pos: -38.5,-62.5 parent: 2 - uid: 3115 components: - type: Transform - pos: -37.5,-43.5 + pos: -36.5,-62.5 parent: 2 - uid: 3116 components: - type: Transform - pos: -37.5,-42.5 + pos: -26.5,-53.5 parent: 2 - uid: 3117 components: - type: Transform - pos: -37.5,-41.5 + pos: -25.5,-53.5 parent: 2 - uid: 3118 components: - type: Transform - pos: -34.5,-45.5 + pos: -25.5,-54.5 parent: 2 - uid: 3119 components: - type: Transform - pos: -34.5,-46.5 + pos: -24.5,-53.5 parent: 2 - uid: 3120 components: - type: Transform - pos: -33.5,-46.5 + pos: -26.5,-54.5 parent: 2 - uid: 3121 components: - type: Transform - pos: -33.5,-45.5 + pos: -24.5,-54.5 parent: 2 - uid: 3122 components: - type: Transform - pos: -34.5,-44.5 + pos: -22.5,-54.5 parent: 2 - uid: 3123 components: - type: Transform - pos: -33.5,-44.5 + pos: -21.5,-54.5 parent: 2 - uid: 3124 components: - type: Transform - pos: -40.5,-51.5 + pos: -21.5,-55.5 parent: 2 - uid: 3125 components: - type: Transform - pos: -38.5,-50.5 + pos: -22.5,-55.5 parent: 2 - uid: 3126 components: - type: Transform - pos: -38.5,-49.5 + pos: -21.5,-57.5 parent: 2 - uid: 3127 components: - type: Transform - pos: -37.5,-47.5 + pos: -21.5,-59.5 parent: 2 - uid: 3128 components: - type: Transform - pos: -37.5,-53.5 + pos: -21.5,-60.5 parent: 2 - uid: 3129 components: - type: Transform - pos: -37.5,-55.5 + pos: -21.5,-61.5 parent: 2 - uid: 3130 components: - type: Transform - pos: -36.5,-53.5 + pos: -21.5,-62.5 parent: 2 - uid: 3131 components: - type: Transform - pos: -36.5,-54.5 + pos: -21.5,-63.5 parent: 2 - uid: 3132 components: - type: Transform - pos: -36.5,-55.5 + pos: -21.5,-64.5 parent: 2 - uid: 3133 components: - type: Transform - pos: -35.5,-53.5 + pos: -21.5,-58.5 parent: 2 - uid: 3134 components: - type: Transform - pos: -37.5,-54.5 + pos: -19.5,-66.5 parent: 2 - uid: 3135 components: - type: Transform - pos: -35.5,-55.5 + pos: -17.5,-66.5 parent: 2 - uid: 3136 components: - type: Transform - pos: -34.5,-54.5 + pos: -16.5,-66.5 parent: 2 - uid: 3137 components: - type: Transform - pos: -34.5,-53.5 + pos: -15.5,-66.5 parent: 2 - uid: 3138 components: - type: Transform - pos: -34.5,-55.5 + pos: -14.5,-66.5 parent: 2 - uid: 3139 components: - type: Transform - pos: -35.5,-54.5 + pos: -13.5,-66.5 parent: 2 - uid: 3140 components: - type: Transform - pos: -47.5,-53.5 + pos: -12.5,-66.5 parent: 2 - uid: 3141 components: - type: Transform - pos: -47.5,-54.5 + pos: -11.5,-66.5 parent: 2 - uid: 3142 components: - type: Transform - pos: -46.5,-53.5 + pos: -18.5,-66.5 parent: 2 - uid: 3143 components: - type: Transform - pos: -46.5,-54.5 + pos: -10.5,-66.5 parent: 2 - uid: 3144 components: - type: Transform - pos: -45.5,-53.5 + pos: -9.5,-66.5 parent: 2 - uid: 3145 components: - type: Transform - pos: -45.5,-54.5 + pos: -8.5,-66.5 parent: 2 - uid: 3146 components: - type: Transform - pos: -43.5,-55.5 + pos: -7.5,-66.5 parent: 2 - uid: 3147 components: - type: Transform - pos: -43.5,-57.5 + pos: -5.5,-66.5 parent: 2 - uid: 3148 components: - type: Transform - pos: -42.5,-55.5 + pos: -6.5,-66.5 parent: 2 - uid: 3149 components: - type: Transform - pos: -42.5,-56.5 + pos: -4.5,-66.5 parent: 2 - uid: 3150 components: - type: Transform - pos: -42.5,-57.5 + pos: -2.5,-66.5 parent: 2 - uid: 3151 components: - type: Transform - pos: -41.5,-55.5 + pos: -1.5,-66.5 parent: 2 - uid: 3152 components: - type: Transform - pos: -41.5,-56.5 + pos: -0.5,-66.5 parent: 2 - uid: 3153 components: - type: Transform - pos: -43.5,-56.5 + pos: 0.5,-66.5 parent: 2 - uid: 3154 components: - type: Transform - pos: -41.5,-57.5 + pos: -3.5,-66.5 parent: 2 - uid: 3155 components: - type: Transform - pos: -52.5,-51.5 + pos: 2.5,-66.5 parent: 2 - uid: 3156 components: - type: Transform - pos: -50.5,-51.5 + pos: 1.5,-66.5 parent: 2 - uid: 3157 components: - type: Transform - pos: -51.5,-51.5 + pos: 4.5,-64.5 parent: 2 - uid: 3158 components: - type: Transform - pos: -53.5,-49.5 + pos: 4.5,-62.5 parent: 2 - uid: 3159 components: - type: Transform - pos: -54.5,-49.5 + pos: 5.5,-64.5 parent: 2 - uid: 3160 components: - type: Transform - pos: -58.5,-45.5 + pos: 4.5,-63.5 parent: 2 - uid: 3161 components: - type: Transform - pos: -58.5,-46.5 + pos: 5.5,-63.5 parent: 2 - uid: 3162 components: - type: Transform - pos: -58.5,-47.5 + pos: 5.5,-62.5 parent: 2 - uid: 3163 components: - type: Transform - pos: -49.5,-53.5 + pos: 5.5,-59.5 parent: 2 - uid: 3164 components: - type: Transform - pos: -47.5,-56.5 + pos: 6.5,-59.5 parent: 2 - uid: 3165 components: - type: Transform - pos: -46.5,-56.5 + pos: 6.5,-60.5 parent: 2 - uid: 3166 components: - type: Transform - pos: -45.5,-56.5 + pos: 7.5,-59.5 parent: 2 - uid: 3167 components: - type: Transform - pos: -34.5,-62.5 + pos: 5.5,-60.5 parent: 2 - uid: 3168 components: - type: Transform - pos: -34.5,-63.5 + pos: 7.5,-60.5 parent: 2 - uid: 3169 components: - type: Transform - pos: -34.5,-64.5 + pos: 35.5,-57.5 parent: 2 - uid: 3170 components: - type: Transform - pos: -34.5,-65.5 + pos: 37.5,-57.5 parent: 2 - uid: 3171 components: - type: Transform - pos: -34.5,-66.5 + pos: 38.5,-57.5 parent: 2 - uid: 3172 components: - type: Transform - pos: -34.5,-67.5 + pos: 39.5,-57.5 parent: 2 - uid: 3173 components: - type: Transform - pos: -34.5,-68.5 + pos: 36.5,-57.5 parent: 2 - uid: 3174 components: - type: Transform - pos: -34.5,-69.5 + pos: 39.5,-58.5 parent: 2 - uid: 3175 components: - type: Transform - pos: -34.5,-70.5 + pos: 38.5,-58.5 parent: 2 - uid: 3176 components: - type: Transform - pos: -34.5,-71.5 + pos: 36.5,-58.5 parent: 2 - uid: 3177 components: - type: Transform - pos: -34.5,-72.5 + pos: 37.5,-58.5 parent: 2 - uid: 3178 components: - type: Transform - pos: -34.5,-73.5 + pos: 37.5,-59.5 parent: 2 - uid: 3179 components: - type: Transform - pos: -39.5,-67.5 + pos: 38.5,-59.5 parent: 2 - uid: 3180 components: - type: Transform - pos: -37.5,-67.5 + pos: 65.5,-56.5 parent: 2 - uid: 3181 components: - type: Transform - pos: -36.5,-67.5 + pos: 65.5,-57.5 parent: 2 - uid: 3182 components: - type: Transform - pos: -35.5,-67.5 + pos: 66.5,-56.5 parent: 2 - uid: 3183 components: - type: Transform - pos: -38.5,-67.5 + pos: 66.5,-57.5 parent: 2 - uid: 3184 components: - type: Transform - pos: -33.5,-67.5 + pos: 67.5,-56.5 parent: 2 - uid: 3185 components: - type: Transform - pos: -31.5,-67.5 + pos: 67.5,-57.5 parent: 2 - uid: 3186 components: - type: Transform - pos: -30.5,-67.5 + pos: 64.5,-57.5 parent: 2 - uid: 3187 components: - type: Transform - pos: -29.5,-67.5 + pos: 68.5,-57.5 parent: 2 - uid: 3188 components: - type: Transform - pos: -32.5,-67.5 + pos: 69.5,-57.5 parent: 2 - uid: 3189 components: - type: Transform - pos: -39.5,-65.5 + pos: 69.5,-56.5 parent: 2 - uid: 3190 components: - type: Transform - pos: -37.5,-65.5 + pos: 70.5,-57.5 parent: 2 - uid: 3191 components: - type: Transform - pos: -36.5,-65.5 + pos: 70.5,-56.5 parent: 2 - uid: 3192 components: - type: Transform - pos: -35.5,-65.5 + pos: 68.5,-56.5 parent: 2 - uid: 3193 components: - type: Transform - pos: -38.5,-65.5 + pos: 71.5,-55.5 parent: 2 - uid: 3194 components: - type: Transform - pos: -33.5,-65.5 + pos: 72.5,-55.5 parent: 2 - uid: 3195 components: - type: Transform - pos: -31.5,-65.5 + pos: 71.5,-56.5 parent: 2 - uid: 3196 components: - type: Transform - pos: -30.5,-65.5 + pos: 72.5,-56.5 parent: 2 - uid: 3197 components: - type: Transform - pos: -29.5,-65.5 + pos: 73.5,-55.5 parent: 2 - uid: 3198 components: - type: Transform - pos: -32.5,-65.5 + pos: 73.5,-56.5 parent: 2 - uid: 3199 components: - type: Transform - pos: -39.5,-69.5 + pos: 79.5,-10.5 parent: 2 - uid: 3200 components: - type: Transform - pos: -37.5,-69.5 + pos: 74.5,-54.5 parent: 2 - uid: 3201 components: - type: Transform - pos: -36.5,-69.5 + pos: 75.5,-54.5 parent: 2 - uid: 3202 components: - type: Transform - pos: -35.5,-69.5 + pos: 75.5,-53.5 parent: 2 - uid: 3203 components: - type: Transform - pos: -38.5,-69.5 + pos: 74.5,-53.5 parent: 2 - uid: 3204 components: - type: Transform - pos: -33.5,-69.5 + pos: 76.5,-51.5 parent: 2 - uid: 3205 components: - type: Transform - pos: -31.5,-69.5 + pos: 77.5,-51.5 parent: 2 - uid: 3206 components: - type: Transform - pos: -30.5,-69.5 + pos: 77.5,-50.5 parent: 2 - uid: 3207 components: - type: Transform - pos: -29.5,-69.5 + pos: 76.5,-50.5 parent: 2 - uid: 3208 components: - type: Transform - pos: -32.5,-69.5 + pos: 79.5,-50.5 parent: 2 - uid: 3209 components: - type: Transform - pos: -39.5,-71.5 + pos: 80.5,-50.5 parent: 2 - uid: 3210 components: - type: Transform - pos: -37.5,-71.5 + pos: 96.5,-26.5 parent: 2 - uid: 3211 components: - type: Transform - pos: -36.5,-71.5 + pos: 97.5,-26.5 parent: 2 - uid: 3212 components: - type: Transform - pos: -38.5,-71.5 + pos: 97.5,-25.5 parent: 2 - uid: 3213 components: - type: Transform - pos: -35.5,-71.5 + pos: 96.5,-25.5 parent: 2 - uid: 3214 components: - type: Transform - pos: -33.5,-71.5 + pos: 96.5,-20.5 parent: 2 - uid: 3215 components: - type: Transform - pos: -31.5,-71.5 + pos: 97.5,-20.5 parent: 2 - uid: 3216 components: - type: Transform - pos: -30.5,-71.5 + pos: 96.5,-23.5 parent: 2 - uid: 3217 components: - type: Transform - pos: -29.5,-71.5 + pos: 97.5,-23.5 parent: 2 - uid: 3218 components: - type: Transform - pos: -32.5,-71.5 + pos: 95.5,-20.5 parent: 2 - uid: 3219 components: - type: Transform - pos: -27.5,-70.5 + pos: 95.5,-22.5 parent: 2 - uid: 3220 components: - type: Transform - pos: -27.5,-68.5 + pos: 95.5,-23.5 parent: 2 - uid: 3221 components: - type: Transform - pos: -27.5,-69.5 + pos: 95.5,-21.5 parent: 2 - uid: 3222 components: - type: Transform - pos: -26.5,-70.5 + pos: 92.5,-17.5 parent: 2 - uid: 3223 components: - type: Transform - pos: -26.5,-69.5 + pos: 93.5,-17.5 parent: 2 - uid: 3224 components: - type: Transform - pos: -26.5,-68.5 + pos: 94.5,-15.5 parent: 2 - uid: 3225 components: - type: Transform - pos: -25.5,-71.5 + pos: 95.5,-15.5 parent: 2 - uid: 3226 components: - type: Transform - pos: -24.5,-71.5 + pos: 90.5,-13.5 parent: 2 - uid: 3227 components: - type: Transform - pos: -39.5,-58.5 + pos: 90.5,-15.5 parent: 2 - uid: 3228 components: - type: Transform - pos: -39.5,-59.5 + pos: 90.5,-14.5 parent: 2 - uid: 3229 components: - type: Transform - pos: -37.5,-57.5 + pos: 80.5,-10.5 parent: 2 - uid: 3230 components: - type: Transform - pos: -38.5,-61.5 + pos: 71.5,-10.5 parent: 2 - uid: 3231 components: - type: Transform - pos: -36.5,-57.5 + pos: 73.5,-10.5 parent: 2 - uid: 3232 components: - type: Transform - pos: -37.5,-61.5 + pos: 72.5,-10.5 parent: 2 - uid: 3233 components: - type: Transform - pos: -37.5,-62.5 + pos: 71.5,-20.5 parent: 2 - uid: 3234 components: - type: Transform - pos: -36.5,-61.5 + pos: 73.5,-20.5 parent: 2 - uid: 3235 components: - type: Transform - pos: -38.5,-62.5 + pos: 72.5,-20.5 parent: 2 - uid: 3236 components: - type: Transform - pos: -36.5,-62.5 + pos: 79.5,-20.5 parent: 2 - uid: 3237 components: - type: Transform - pos: -26.5,-53.5 + pos: 80.5,-20.5 parent: 2 - uid: 3238 components: - type: Transform - pos: -25.5,-53.5 + pos: 86.5,-20.5 parent: 2 - uid: 3239 components: - type: Transform - pos: -25.5,-54.5 + pos: 87.5,-20.5 parent: 2 - uid: 3240 components: - type: Transform - pos: -24.5,-53.5 + pos: 88.5,-20.5 parent: 2 - uid: 3241 components: - type: Transform - pos: -26.5,-54.5 + pos: 53.5,-16.5 parent: 2 - uid: 3242 components: - type: Transform - pos: -24.5,-54.5 + pos: 55.5,-16.5 parent: 2 - uid: 3243 components: - type: Transform - pos: -22.5,-54.5 + pos: 56.5,-16.5 parent: 2 - uid: 3244 components: - type: Transform - pos: -21.5,-54.5 + pos: 57.5,-16.5 parent: 2 - uid: 3245 components: - type: Transform - pos: -21.5,-55.5 + pos: 54.5,-16.5 parent: 2 - uid: 3246 components: - type: Transform - pos: -22.5,-55.5 + pos: 69.5,13.5 parent: 2 - uid: 3247 components: - type: Transform - pos: -21.5,-57.5 + pos: 54.5,19.5 parent: 2 - uid: 3248 components: - type: Transform - pos: -21.5,-59.5 + pos: 55.5,19.5 parent: 2 - uid: 3249 components: - type: Transform - pos: -21.5,-60.5 + pos: 61.5,30.5 parent: 2 - uid: 3250 components: - type: Transform - pos: -21.5,-61.5 + pos: 42.5,33.5 parent: 2 - uid: 3251 components: - type: Transform - pos: -21.5,-62.5 + pos: 43.5,33.5 parent: 2 - uid: 3252 components: - type: Transform - pos: -21.5,-63.5 + pos: -84.5,63.5 parent: 2 - uid: 3253 components: - type: Transform - pos: -21.5,-64.5 + pos: -85.5,64.5 parent: 2 - uid: 3254 components: - type: Transform - pos: -21.5,-58.5 + pos: -87.5,64.5 parent: 2 - uid: 3255 components: - type: Transform - pos: -19.5,-66.5 + pos: -87.5,69.5 parent: 2 - uid: 3256 components: - type: Transform - pos: -17.5,-66.5 + pos: -85.5,69.5 parent: 2 - uid: 3257 components: - type: Transform - pos: -16.5,-66.5 + pos: -86.5,69.5 parent: 2 - uid: 3258 components: - type: Transform - pos: -15.5,-66.5 + pos: -91.5,63.5 parent: 2 - uid: 3259 components: - type: Transform - pos: -14.5,-66.5 + pos: -91.5,65.5 parent: 2 - uid: 3260 components: - type: Transform - pos: -13.5,-66.5 + pos: -91.5,64.5 parent: 2 - uid: 3261 components: - type: Transform - pos: -12.5,-66.5 + pos: -30.5,-48.5 parent: 2 - uid: 3262 components: - type: Transform - pos: -11.5,-66.5 + pos: -30.5,-49.5 parent: 2 - uid: 3263 components: - type: Transform - pos: -18.5,-66.5 + pos: -26.5,30.5 parent: 2 - uid: 3264 components: - type: Transform - pos: -10.5,-66.5 + pos: -25.5,30.5 parent: 2 - uid: 3265 components: - type: Transform - pos: -9.5,-66.5 + pos: -59.5,-21.5 parent: 2 - uid: 3266 components: - type: Transform - pos: -8.5,-66.5 + pos: -59.5,-20.5 parent: 2 - uid: 3267 components: - type: Transform - pos: -7.5,-66.5 + pos: -29.5,-50.5 parent: 2 - uid: 3268 components: - type: Transform - pos: -5.5,-66.5 + pos: -28.5,-50.5 parent: 2 - uid: 3269 components: - type: Transform - pos: -6.5,-66.5 + pos: 36.5,-39.5 parent: 2 - uid: 3270 components: - type: Transform - pos: -4.5,-66.5 + pos: 36.5,-41.5 parent: 2 - uid: 3271 components: - type: Transform - pos: -2.5,-66.5 + pos: 37.5,-39.5 parent: 2 - uid: 3272 components: - type: Transform - pos: -1.5,-66.5 + pos: 37.5,-40.5 parent: 2 - uid: 3273 components: - type: Transform - pos: -0.5,-66.5 + pos: 37.5,-41.5 parent: 2 - uid: 3274 components: - type: Transform - pos: 0.5,-66.5 + pos: 36.5,-40.5 parent: 2 - uid: 3275 components: - type: Transform - pos: -3.5,-66.5 + pos: 38.5,-39.5 parent: 2 - uid: 3276 components: - type: Transform - pos: 2.5,-66.5 + pos: 38.5,-41.5 parent: 2 - uid: 3277 components: - type: Transform - pos: 1.5,-66.5 + pos: 38.5,-40.5 parent: 2 - uid: 3278 components: - type: Transform - pos: 4.5,-64.5 + pos: 44.5,-39.5 parent: 2 - uid: 3279 components: - type: Transform - pos: 4.5,-62.5 + pos: 44.5,-40.5 parent: 2 - uid: 3280 components: - type: Transform - pos: 5.5,-64.5 + pos: 44.5,-41.5 parent: 2 - uid: 3281 components: - type: Transform - pos: 4.5,-63.5 + pos: 43.5,-39.5 parent: 2 - uid: 3282 components: - type: Transform - pos: 5.5,-63.5 + pos: 43.5,-41.5 parent: 2 - uid: 3283 components: - type: Transform - pos: 5.5,-62.5 + pos: 42.5,-39.5 parent: 2 - uid: 3284 components: - type: Transform - pos: 5.5,-59.5 + pos: 42.5,-40.5 parent: 2 - uid: 3285 components: - type: Transform - pos: 6.5,-59.5 + pos: 42.5,-41.5 parent: 2 - uid: 3286 components: - type: Transform - pos: 6.5,-60.5 + pos: 43.5,-40.5 parent: 2 - uid: 3287 components: - type: Transform - pos: 7.5,-59.5 + pos: 40.5,-40.5 parent: 2 - uid: 3288 components: - type: Transform - pos: 5.5,-60.5 + pos: 40.5,-36.5 parent: 2 - uid: 3289 components: - type: Transform - pos: 7.5,-60.5 + pos: 35.5,-35.5 parent: 2 - uid: 3290 components: - type: Transform - pos: 35.5,-57.5 + pos: 37.5,-35.5 parent: 2 - uid: 3291 components: - type: Transform - pos: 37.5,-57.5 + pos: 36.5,-35.5 parent: 2 - uid: 3292 components: - type: Transform - pos: 38.5,-57.5 + pos: 43.5,-43.5 parent: 2 - uid: 3293 components: - type: Transform - pos: 39.5,-57.5 + pos: 44.5,-43.5 parent: 2 - uid: 3294 components: - type: Transform - pos: 36.5,-57.5 + pos: 44.5,-44.5 parent: 2 - uid: 3295 components: - type: Transform - pos: 39.5,-58.5 + pos: 43.5,-44.5 parent: 2 - uid: 3296 components: - type: Transform - pos: 38.5,-58.5 + pos: 67.5,-17.5 parent: 2 - uid: 3297 components: - type: Transform - pos: 36.5,-58.5 + pos: 67.5,-19.5 parent: 2 - uid: 3298 components: - type: Transform - pos: 37.5,-58.5 + pos: 67.5,-9.5 parent: 2 - uid: 3299 components: - type: Transform - pos: 37.5,-59.5 + pos: 86.5,-7.5 parent: 2 - uid: 3300 components: - type: Transform - pos: 38.5,-59.5 + pos: 86.5,-8.5 parent: 2 - uid: 3301 components: - type: Transform - pos: 65.5,-56.5 + pos: 101.5,-21.5 parent: 2 - uid: 3302 components: - type: Transform - pos: 65.5,-57.5 + pos: 87.5,-7.5 parent: 2 - uid: 3303 components: - type: Transform - pos: 66.5,-56.5 + pos: 101.5,-28.5 parent: 2 - uid: 3304 components: - type: Transform - pos: 66.5,-57.5 + pos: 33.5,7.5 parent: 2 - uid: 3305 components: - type: Transform - pos: 67.5,-56.5 + pos: 32.5,7.5 parent: 2 - uid: 3306 components: - type: Transform - pos: 67.5,-57.5 + pos: 32.5,10.5 parent: 2 - uid: 3307 components: - type: Transform - pos: 64.5,-57.5 + pos: 33.5,10.5 parent: 2 - uid: 3308 components: - type: Transform - pos: 68.5,-57.5 + pos: 33.5,11.5 parent: 2 - uid: 3309 components: - type: Transform - pos: 69.5,-57.5 + pos: 32.5,11.5 parent: 2 - uid: 3310 components: - type: Transform - pos: 69.5,-56.5 + pos: 40.5,6.5 parent: 2 - uid: 3311 components: - type: Transform - pos: 70.5,-57.5 + pos: 41.5,6.5 parent: 2 - uid: 3312 components: - type: Transform - pos: 70.5,-56.5 + pos: 41.5,5.5 parent: 2 - uid: 3313 components: - type: Transform - pos: 68.5,-56.5 + pos: 42.5,6.5 parent: 2 - uid: 3314 components: - type: Transform - pos: 71.5,-55.5 + pos: 42.5,5.5 parent: 2 - uid: 3315 components: - type: Transform - pos: 72.5,-55.5 + pos: 40.5,5.5 parent: 2 - uid: 3316 components: - type: Transform - pos: 71.5,-56.5 + pos: 38.5,2.5 parent: 2 - uid: 3317 components: - type: Transform - pos: 72.5,-56.5 + pos: 38.5,1.5 parent: 2 - uid: 3318 components: - type: Transform - pos: 73.5,-55.5 + pos: 39.5,2.5 parent: 2 - uid: 3319 components: - type: Transform - pos: 73.5,-56.5 + pos: 39.5,1.5 parent: 2 - uid: 3320 components: - type: Transform - pos: 79.5,-10.5 + pos: 33.5,-6.5 parent: 2 - uid: 3321 components: - type: Transform - pos: 74.5,-54.5 + pos: 33.5,-7.5 parent: 2 - uid: 3322 components: - type: Transform - pos: 75.5,-54.5 + pos: 34.5,-6.5 parent: 2 - uid: 3323 components: - type: Transform - pos: 75.5,-53.5 + pos: 34.5,-7.5 parent: 2 - uid: 3324 components: - type: Transform - pos: 74.5,-53.5 + pos: 35.5,-6.5 parent: 2 - uid: 3325 components: - type: Transform - pos: 76.5,-51.5 + pos: 35.5,-7.5 parent: 2 - uid: 3326 components: - type: Transform - pos: 77.5,-51.5 + pos: 30.5,-5.5 parent: 2 - uid: 3327 components: - type: Transform - pos: 77.5,-50.5 + pos: 30.5,-9.5 parent: 2 - uid: 3328 components: - type: Transform - pos: 76.5,-50.5 + pos: 30.5,-3.5 parent: 2 - uid: 3329 components: - type: Transform - pos: 79.5,-50.5 + pos: 30.5,-11.5 parent: 2 - uid: 3330 components: - type: Transform - pos: 80.5,-50.5 + pos: 29.5,-14.5 parent: 2 - uid: 3331 components: - type: Transform - pos: 96.5,-26.5 + pos: 33.5,-25.5 parent: 2 - uid: 3332 components: - type: Transform - pos: 97.5,-26.5 + pos: 33.5,-21.5 parent: 2 - uid: 3333 components: - type: Transform - pos: 97.5,-25.5 + pos: 33.5,-24.5 parent: 2 - uid: 3334 components: - type: Transform - pos: 96.5,-25.5 + pos: 33.5,-22.5 parent: 2 - uid: 3335 components: - type: Transform - pos: 96.5,-20.5 + pos: 34.5,-25.5 parent: 2 - uid: 3336 components: - type: Transform - pos: 97.5,-20.5 + pos: 34.5,-24.5 parent: 2 - uid: 3337 components: - type: Transform - pos: 96.5,-23.5 + pos: 36.5,-22.5 parent: 2 - uid: 3338 components: - type: Transform - pos: 97.5,-23.5 + pos: 38.5,-22.5 parent: 2 - uid: 3339 components: - type: Transform - pos: 95.5,-20.5 + pos: 37.5,-22.5 parent: 2 - uid: 3340 components: - type: Transform - pos: 95.5,-22.5 + pos: 51.5,-33.5 parent: 2 - uid: 3341 components: - type: Transform - pos: 95.5,-23.5 + rot: 1.5707963267948966 rad + pos: 44.5,-19.5 parent: 2 - uid: 3342 components: - type: Transform - pos: 95.5,-21.5 + rot: 1.5707963267948966 rad + pos: 38.5,-10.5 parent: 2 - uid: 3343 components: - type: Transform - pos: 92.5,-17.5 + rot: 1.5707963267948966 rad + pos: 39.5,-10.5 parent: 2 - uid: 3344 components: - type: Transform - pos: 93.5,-17.5 + rot: 1.5707963267948966 rad + pos: 38.5,-11.5 parent: 2 - uid: 3345 components: - type: Transform - pos: 94.5,-15.5 + rot: 1.5707963267948966 rad + pos: 39.5,-11.5 parent: 2 - uid: 3346 components: - type: Transform - pos: 95.5,-15.5 + rot: 1.5707963267948966 rad + pos: 38.5,-12.5 parent: 2 - uid: 3347 components: - type: Transform - pos: 90.5,-13.5 + rot: 1.5707963267948966 rad + pos: 39.5,-12.5 parent: 2 - uid: 3348 components: - type: Transform - pos: 90.5,-15.5 + pos: 61.5,24.5 parent: 2 - uid: 3349 components: - type: Transform - pos: 90.5,-14.5 + pos: -56.5,74.5 parent: 2 - uid: 3350 components: - type: Transform - pos: 80.5,-10.5 + pos: 29.5,65.5 parent: 2 - uid: 3351 components: - type: Transform - pos: 71.5,-10.5 + pos: -40.5,47.5 parent: 2 - uid: 3352 components: - type: Transform - pos: 73.5,-10.5 + rot: 1.5707963267948966 rad + pos: 42.5,-4.5 parent: 2 - uid: 3353 components: - type: Transform - pos: 72.5,-10.5 + rot: 1.5707963267948966 rad + pos: 43.5,-4.5 parent: 2 - uid: 3354 components: - type: Transform - pos: 71.5,-20.5 + rot: 1.5707963267948966 rad + pos: 43.5,-5.5 parent: 2 - uid: 3355 components: - type: Transform - pos: 73.5,-20.5 + rot: 1.5707963267948966 rad + pos: 44.5,-4.5 parent: 2 - uid: 3356 components: - type: Transform - pos: 72.5,-20.5 + rot: 1.5707963267948966 rad + pos: 44.5,-5.5 parent: 2 - uid: 3357 components: - type: Transform - pos: 79.5,-20.5 + rot: 1.5707963267948966 rad + pos: 45.5,-4.5 parent: 2 - uid: 3358 components: - type: Transform - pos: 80.5,-20.5 + rot: 1.5707963267948966 rad + pos: 42.5,-5.5 parent: 2 - uid: 3359 components: - type: Transform - pos: 86.5,-20.5 + rot: 1.5707963267948966 rad + pos: 45.5,-5.5 parent: 2 - uid: 3360 components: - type: Transform - pos: 87.5,-20.5 + rot: 1.5707963267948966 rad + pos: 16.5,-25.5 parent: 2 - uid: 3361 components: - type: Transform - pos: 88.5,-20.5 + rot: 1.5707963267948966 rad + pos: 17.5,-25.5 parent: 2 - uid: 3362 components: - type: Transform - pos: 53.5,-16.5 + rot: 1.5707963267948966 rad + pos: 17.5,-26.5 parent: 2 - uid: 3363 components: - type: Transform - pos: 55.5,-16.5 + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 parent: 2 - uid: 3364 components: - type: Transform - pos: 56.5,-16.5 + rot: 1.5707963267948966 rad + pos: 18.5,-26.5 parent: 2 - uid: 3365 components: - type: Transform - pos: 57.5,-16.5 + rot: 1.5707963267948966 rad + pos: 16.5,-26.5 parent: 2 - uid: 3366 components: - type: Transform - pos: 54.5,-16.5 + rot: 1.5707963267948966 rad + pos: 10.5,-26.5 parent: 2 - uid: 3367 components: - type: Transform - pos: 69.5,13.5 + rot: 1.5707963267948966 rad + pos: 11.5,-26.5 parent: 2 - uid: 3368 components: - type: Transform - pos: 54.5,19.5 + rot: 1.5707963267948966 rad + pos: 11.5,-27.5 parent: 2 - uid: 3369 components: - type: Transform - pos: 55.5,19.5 + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 parent: 2 - uid: 3370 components: - type: Transform - pos: 61.5,30.5 + rot: 1.5707963267948966 rad + pos: 9.5,-23.5 parent: 2 - uid: 3371 components: - type: Transform - pos: 42.5,33.5 + rot: 1.5707963267948966 rad + pos: 9.5,-21.5 parent: 2 - uid: 3372 components: - type: Transform - pos: 43.5,33.5 + rot: 1.5707963267948966 rad + pos: 9.5,-20.5 parent: 2 - uid: 3373 components: - type: Transform - pos: -89.5,67.5 + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 parent: 2 - uid: 3374 components: - type: Transform - pos: -87.5,67.5 + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 parent: 2 - uid: 3375 components: - type: Transform - pos: -86.5,67.5 + rot: 1.5707963267948966 rad + pos: 16.5,-21.5 parent: 2 - uid: 3376 components: - type: Transform - pos: -88.5,67.5 + rot: 1.5707963267948966 rad + pos: 16.5,-20.5 parent: 2 - uid: 3377 components: - type: Transform - pos: -87.5,69.5 + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 parent: 2 - uid: 3378 components: - type: Transform - pos: -85.5,69.5 + rot: 1.5707963267948966 rad + pos: 6.5,-30.5 parent: 2 - uid: 3379 components: - type: Transform - pos: -86.5,69.5 + rot: 1.5707963267948966 rad + pos: 8.5,-30.5 parent: 2 - uid: 3380 components: - type: Transform - pos: -91.5,63.5 + rot: 1.5707963267948966 rad + pos: 7.5,-30.5 parent: 2 - uid: 3381 components: - type: Transform - pos: -91.5,65.5 + rot: 1.5707963267948966 rad + pos: 4.5,-30.5 parent: 2 - uid: 3382 components: - type: Transform - pos: -91.5,64.5 + rot: 1.5707963267948966 rad + pos: 5.5,-30.5 parent: 2 - uid: 3383 components: - type: Transform - pos: -30.5,-48.5 + rot: 1.5707963267948966 rad + pos: 12.5,-26.5 parent: 2 - uid: 3384 components: - type: Transform - pos: -30.5,-49.5 + rot: 1.5707963267948966 rad + pos: 12.5,-27.5 parent: 2 - uid: 3385 components: - type: Transform - pos: -26.5,30.5 + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 parent: 2 - uid: 3386 components: - type: Transform - pos: -25.5,30.5 + rot: 1.5707963267948966 rad + pos: 23.5,-22.5 parent: 2 - uid: 3387 components: - type: Transform - pos: -59.5,-21.5 + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 parent: 2 - uid: 3388 components: - type: Transform - pos: -59.5,-20.5 + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 parent: 2 - uid: 3389 components: - type: Transform - pos: -29.5,-50.5 + rot: 1.5707963267948966 rad + pos: 28.5,-16.5 parent: 2 - uid: 3390 components: - type: Transform - pos: -28.5,-50.5 + rot: 1.5707963267948966 rad + pos: 30.5,-16.5 parent: 2 - uid: 3391 components: - type: Transform - pos: 36.5,-39.5 + rot: 1.5707963267948966 rad + pos: 29.5,-16.5 parent: 2 - uid: 3392 components: - type: Transform - pos: 36.5,-41.5 + rot: 1.5707963267948966 rad + pos: 39.5,-20.5 parent: 2 - uid: 3393 components: - type: Transform - pos: 37.5,-39.5 + rot: 1.5707963267948966 rad + pos: 39.5,-22.5 parent: 2 - uid: 3394 components: - type: Transform - pos: 37.5,-40.5 + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 parent: 2 - uid: 3395 components: - type: Transform - pos: 37.5,-41.5 + rot: 1.5707963267948966 rad + pos: 40.5,2.5 parent: 2 - uid: 3396 components: - type: Transform - pos: 36.5,-40.5 + rot: 1.5707963267948966 rad + pos: 40.5,0.5 parent: 2 - uid: 3397 components: - type: Transform - pos: 38.5,-39.5 + rot: 1.5707963267948966 rad + pos: 40.5,-0.5 parent: 2 - uid: 3398 components: - type: Transform - pos: 38.5,-41.5 + rot: 1.5707963267948966 rad + pos: 40.5,-1.5 parent: 2 - uid: 3399 components: - type: Transform - pos: 38.5,-40.5 + rot: 1.5707963267948966 rad + pos: 41.5,2.5 parent: 2 - uid: 3400 components: - type: Transform - pos: 44.5,-39.5 + rot: 1.5707963267948966 rad + pos: 41.5,1.5 parent: 2 - uid: 3401 components: - type: Transform - pos: 44.5,-40.5 + rot: 1.5707963267948966 rad + pos: 41.5,0.5 parent: 2 - uid: 3402 components: - type: Transform - pos: 44.5,-41.5 + rot: 1.5707963267948966 rad + pos: 41.5,-1.5 parent: 2 - uid: 3403 components: - type: Transform - pos: 43.5,-39.5 + rot: 1.5707963267948966 rad + pos: 40.5,1.5 parent: 2 - uid: 3404 components: - type: Transform - pos: 43.5,-41.5 + rot: 1.5707963267948966 rad + pos: 41.5,-0.5 parent: 2 - uid: 3405 components: - type: Transform - pos: 42.5,-39.5 + rot: 1.5707963267948966 rad + pos: 35.5,4.5 parent: 2 - uid: 3406 components: - type: Transform - pos: 42.5,-40.5 + rot: 1.5707963267948966 rad + pos: 35.5,2.5 parent: 2 - uid: 3407 components: - type: Transform - pos: 42.5,-41.5 + rot: 1.5707963267948966 rad + pos: 35.5,3.5 parent: 2 - uid: 3408 components: - type: Transform - pos: 43.5,-40.5 + rot: 1.5707963267948966 rad + pos: -4.5,27.5 parent: 2 - uid: 3409 components: - type: Transform - pos: 40.5,-40.5 + rot: 1.5707963267948966 rad + pos: -4.5,27.5 parent: 2 - uid: 3410 components: - type: Transform - pos: 40.5,-36.5 + rot: 1.5707963267948966 rad + pos: -4.5,28.5 parent: 2 - uid: 3411 components: - type: Transform - pos: 35.5,-35.5 + rot: 1.5707963267948966 rad + pos: -4.5,29.5 parent: 2 - uid: 3412 components: - type: Transform - pos: 37.5,-35.5 + rot: 1.5707963267948966 rad + pos: -3.5,29.5 parent: 2 - uid: 3413 components: - type: Transform - pos: 36.5,-35.5 + rot: 1.5707963267948966 rad + pos: -2.5,29.5 parent: 2 - uid: 3414 components: - type: Transform - pos: 43.5,-43.5 + rot: 1.5707963267948966 rad + pos: -4.5,26.5 parent: 2 - uid: 3415 components: - type: Transform - pos: 44.5,-43.5 + rot: 1.5707963267948966 rad + pos: -2.5,26.5 parent: 2 - uid: 3416 components: - type: Transform - pos: 44.5,-44.5 + rot: 1.5707963267948966 rad + pos: -3.5,26.5 parent: 2 - uid: 3417 components: - type: Transform - pos: 43.5,-44.5 + rot: 1.5707963267948966 rad + pos: -10.5,26.5 parent: 2 - uid: 3418 components: - type: Transform - pos: 67.5,-17.5 + rot: 1.5707963267948966 rad + pos: -8.5,26.5 parent: 2 - uid: 3419 components: - type: Transform - pos: 67.5,-19.5 + rot: 1.5707963267948966 rad + pos: -7.5,26.5 parent: 2 - uid: 3420 components: - type: Transform - pos: 67.5,-9.5 + rot: 1.5707963267948966 rad + pos: -9.5,26.5 parent: 2 - uid: 3421 components: - type: Transform - pos: 86.5,-7.5 + rot: 1.5707963267948966 rad + pos: -14.5,30.5 parent: 2 - uid: 3422 components: - type: Transform - pos: 86.5,-8.5 + rot: 1.5707963267948966 rad + pos: -13.5,30.5 parent: 2 - uid: 3423 components: - type: Transform - pos: 101.5,-21.5 + rot: 1.5707963267948966 rad + pos: -13.5,29.5 parent: 2 - uid: 3424 components: - type: Transform - pos: 87.5,-7.5 + rot: 1.5707963267948966 rad + pos: -12.5,30.5 parent: 2 - uid: 3425 components: - type: Transform - pos: 101.5,-28.5 + rot: 1.5707963267948966 rad + pos: -12.5,29.5 parent: 2 - uid: 3426 components: - type: Transform - pos: 33.5,7.5 + rot: 1.5707963267948966 rad + pos: -14.5,29.5 parent: 2 - uid: 3427 components: - type: Transform - pos: 32.5,7.5 + rot: 1.5707963267948966 rad + pos: -13.5,31.5 parent: 2 - uid: 3428 components: - type: Transform - pos: 32.5,10.5 + rot: 1.5707963267948966 rad + pos: -14.5,26.5 parent: 2 - uid: 3429 components: - type: Transform - pos: 33.5,10.5 + rot: 1.5707963267948966 rad + pos: -13.5,26.5 parent: 2 - uid: 3430 components: - type: Transform - pos: 33.5,11.5 + rot: 1.5707963267948966 rad + pos: -13.5,25.5 parent: 2 - uid: 3431 components: - type: Transform - pos: 32.5,11.5 + rot: 1.5707963267948966 rad + pos: -14.5,25.5 parent: 2 - uid: 3432 components: - type: Transform - pos: 40.5,6.5 + rot: 1.5707963267948966 rad + pos: -20.5,69.5 parent: 2 - uid: 3433 components: - type: Transform - pos: 41.5,6.5 + rot: 1.5707963267948966 rad + pos: -19.5,68.5 parent: 2 - uid: 3434 components: - type: Transform - pos: 41.5,5.5 + rot: 1.5707963267948966 rad + pos: -18.5,67.5 parent: 2 - uid: 3435 components: - type: Transform - pos: 42.5,6.5 + rot: 1.5707963267948966 rad + pos: -23.5,69.5 parent: 2 - uid: 3436 components: - type: Transform - pos: 42.5,5.5 + rot: 1.5707963267948966 rad + pos: -25.5,69.5 parent: 2 - uid: 3437 components: - type: Transform - pos: 40.5,5.5 + rot: 1.5707963267948966 rad + pos: -24.5,69.5 parent: 2 - uid: 3438 components: - type: Transform - pos: 38.5,2.5 + rot: 1.5707963267948966 rad + pos: -26.5,66.5 parent: 2 - uid: 3439 components: - type: Transform - pos: 38.5,1.5 + rot: 1.5707963267948966 rad + pos: -26.5,65.5 parent: 2 - uid: 3440 components: - type: Transform - pos: 39.5,2.5 + rot: 1.5707963267948966 rad + pos: -26.5,67.5 parent: 2 - uid: 3441 components: - type: Transform - pos: 39.5,1.5 + rot: 1.5707963267948966 rad + pos: -27.5,65.5 parent: 2 - uid: 3442 components: - type: Transform - pos: 33.5,-6.5 + rot: 1.5707963267948966 rad + pos: -25.5,64.5 parent: 2 - uid: 3443 components: - type: Transform - pos: 33.5,-7.5 + rot: 1.5707963267948966 rad + pos: -23.5,64.5 parent: 2 - uid: 3444 components: - type: Transform - pos: 34.5,-6.5 + rot: 1.5707963267948966 rad + pos: -24.5,64.5 parent: 2 - uid: 3445 components: - type: Transform - pos: 34.5,-7.5 + rot: 1.5707963267948966 rad + pos: -23.5,65.5 parent: 2 - uid: 3446 components: - type: Transform - pos: 35.5,-6.5 + rot: 1.5707963267948966 rad + pos: -21.5,65.5 parent: 2 - uid: 3447 components: - type: Transform - pos: 35.5,-7.5 + rot: 1.5707963267948966 rad + pos: -22.5,65.5 parent: 2 - uid: 3448 components: - type: Transform - pos: 30.5,-5.5 + rot: 1.5707963267948966 rad + pos: -19.5,65.5 parent: 2 - uid: 3449 components: - type: Transform - pos: 30.5,-9.5 + rot: 1.5707963267948966 rad + pos: -18.5,64.5 parent: 2 - uid: 3450 components: - type: Transform - pos: 30.5,-3.5 + rot: 1.5707963267948966 rad + pos: -16.5,64.5 parent: 2 - uid: 3451 components: - type: Transform - pos: 30.5,-11.5 + rot: 1.5707963267948966 rad + pos: -17.5,64.5 parent: 2 - uid: 3452 components: - type: Transform - pos: 29.5,-14.5 + rot: 1.5707963267948966 rad + pos: -17.5,63.5 parent: 2 - uid: 3453 components: - type: Transform - pos: 33.5,-25.5 + rot: 1.5707963267948966 rad + pos: -21.5,63.5 parent: 2 - uid: 3454 components: - type: Transform - pos: 33.5,-21.5 + rot: 1.5707963267948966 rad + pos: -29.5,65.5 parent: 2 - uid: 3455 components: - type: Transform - pos: 33.5,-24.5 + rot: 1.5707963267948966 rad + pos: -27.5,62.5 parent: 2 - uid: 3456 components: - type: Transform - pos: 33.5,-22.5 + rot: 1.5707963267948966 rad + pos: -27.5,60.5 parent: 2 - uid: 3457 components: - type: Transform - pos: 34.5,-25.5 + rot: 1.5707963267948966 rad + pos: -27.5,59.5 parent: 2 - uid: 3458 components: - type: Transform - pos: 34.5,-24.5 + rot: 1.5707963267948966 rad + pos: -27.5,61.5 parent: 2 - uid: 3459 components: - type: Transform - pos: 36.5,-22.5 + rot: 1.5707963267948966 rad + pos: -28.5,61.5 parent: 2 - uid: 3460 components: - type: Transform - pos: 38.5,-22.5 + pos: -89.5,28.5 parent: 2 - uid: 3461 components: - type: Transform - pos: 37.5,-22.5 + pos: -89.5,26.5 parent: 2 - uid: 3462 components: - type: Transform - pos: 51.5,-33.5 + pos: 48.5,45.5 parent: 2 - uid: 3463 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-19.5 + pos: -31.5,61.5 parent: 2 - uid: 3464 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-10.5 + pos: -31.5,59.5 parent: 2 - uid: 3465 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-10.5 + pos: -31.5,58.5 parent: 2 - uid: 3466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-11.5 + pos: -31.5,60.5 parent: 2 - uid: 3467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-11.5 + pos: -30.5,58.5 parent: 2 - uid: 3468 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-12.5 + pos: -30.5,60.5 parent: 2 - uid: 3469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-12.5 + pos: -30.5,59.5 parent: 2 - uid: 3470 components: - type: Transform - pos: 61.5,24.5 + rot: 1.5707963267948966 rad + pos: -31.5,55.5 parent: 2 - uid: 3471 components: - type: Transform - pos: -56.5,74.5 + rot: 1.5707963267948966 rad + pos: -30.5,55.5 parent: 2 - uid: 3472 components: - type: Transform - pos: 29.5,65.5 + rot: 1.5707963267948966 rad + pos: -30.5,54.5 parent: 2 - uid: 3473 components: - type: Transform - pos: -40.5,47.5 + rot: 1.5707963267948966 rad + pos: -31.5,54.5 parent: 2 - uid: 3474 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-4.5 + pos: -34.5,54.5 parent: 2 - uid: 3475 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-4.5 + pos: -34.5,53.5 parent: 2 - uid: 3476 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-5.5 + pos: -33.5,53.5 parent: 2 - uid: 3477 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-4.5 + pos: -33.5,54.5 parent: 2 - uid: 3478 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-5.5 + pos: -34.5,52.5 parent: 2 - uid: 3479 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-4.5 + pos: -32.5,53.5 parent: 2 - uid: 3480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-5.5 + pos: -31.5,53.5 parent: 2 - uid: 3481 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-5.5 + pos: -33.5,49.5 parent: 2 - uid: 3482 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-25.5 + pos: -31.5,49.5 parent: 2 - uid: 3483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-25.5 + pos: -32.5,49.5 parent: 2 - uid: 3484 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-26.5 + pos: -32.5,48.5 parent: 2 - uid: 3485 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-25.5 + pos: -31.5,48.5 parent: 2 - uid: 3486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-26.5 + pos: -34.5,57.5 parent: 2 - uid: 3487 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-26.5 + pos: -33.5,57.5 parent: 2 - uid: 3488 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-26.5 + pos: -33.5,56.5 parent: 2 - uid: 3489 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-26.5 + pos: -34.5,56.5 parent: 2 - uid: 3490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-27.5 + pos: -34.5,58.5 parent: 2 - uid: 3491 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-27.5 + pos: -35.5,56.5 parent: 2 - uid: 3492 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-23.5 + pos: -40.5,58.5 parent: 2 - uid: 3493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-21.5 + pos: -40.5,57.5 parent: 2 - uid: 3494 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-20.5 + pos: -39.5,58.5 parent: 2 - uid: 3495 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-22.5 + pos: -39.5,57.5 parent: 2 - uid: 3496 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-23.5 + pos: -38.5,58.5 parent: 2 - uid: 3497 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-21.5 + pos: -38.5,57.5 parent: 2 - uid: 3498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-20.5 + pos: -40.5,59.5 parent: 2 - uid: 3499 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-22.5 + pos: -40.5,60.5 parent: 2 - uid: 3500 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,-30.5 + pos: -40.5,61.5 parent: 2 - uid: 3501 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-30.5 + pos: -41.5,61.5 parent: 2 - uid: 3502 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-30.5 + pos: -39.5,62.5 parent: 2 - uid: 3503 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-30.5 + pos: -38.5,62.5 parent: 2 - uid: 3504 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-30.5 + pos: -38.5,61.5 parent: 2 - uid: 3505 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-26.5 + pos: -39.5,61.5 parent: 2 - uid: 3506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-27.5 + pos: -37.5,61.5 parent: 2 - uid: 3507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-22.5 + pos: -37.5,60.5 parent: 2 - uid: 3508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-22.5 + pos: -36.5,61.5 parent: 2 - uid: 3509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-23.5 + pos: -36.5,60.5 parent: 2 - uid: 3510 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-23.5 + pos: -38.5,56.5 parent: 2 - uid: 3511 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-16.5 + pos: -37.5,56.5 parent: 2 - uid: 3512 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-16.5 + pos: -41.5,56.5 parent: 2 - uid: 3513 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-16.5 + pos: -41.5,54.5 parent: 2 - uid: 3514 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-20.5 + pos: -41.5,53.5 parent: 2 - uid: 3515 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-22.5 + pos: -41.5,52.5 parent: 2 - uid: 3516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-21.5 + pos: -41.5,55.5 parent: 2 - uid: 3517 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,2.5 + pos: -42.5,52.5 parent: 2 - uid: 3518 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,0.5 + pos: -40.5,52.5 parent: 2 - uid: 3519 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-0.5 + pos: -40.5,53.5 parent: 2 - uid: 3520 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-1.5 + pos: -40.5,54.5 parent: 2 - uid: 3521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,2.5 + pos: -38.5,55.5 parent: 2 - uid: 3522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,1.5 + pos: -38.5,54.5 parent: 2 - uid: 3523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 + pos: -39.5,54.5 parent: 2 - uid: 3524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-1.5 + pos: -42.5,55.5 parent: 2 - uid: 3525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,1.5 + pos: -44.5,55.5 parent: 2 - uid: 3526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-0.5 + pos: -45.5,55.5 parent: 2 - uid: 3527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,4.5 + pos: -43.5,55.5 parent: 2 - uid: 3528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,2.5 + pos: -45.5,54.5 parent: 2 - uid: 3529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,3.5 + pos: -45.5,53.5 parent: 2 - uid: 3530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,27.5 + pos: -43.5,52.5 parent: 2 - uid: 3531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,27.5 + pos: -43.5,51.5 parent: 2 - uid: 3532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,28.5 + pos: -39.5,51.5 parent: 2 - uid: 3533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,29.5 + pos: -38.5,51.5 parent: 2 - uid: 3534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,29.5 + pos: -38.5,50.5 parent: 2 - uid: 3535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,29.5 + pos: -39.5,50.5 parent: 2 - uid: 3536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,26.5 + pos: -37.5,50.5 parent: 2 - uid: 3537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,26.5 + pos: -37.5,49.5 parent: 2 - uid: 3538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,26.5 + pos: -38.5,48.5 parent: 2 - uid: 3539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,26.5 + pos: -42.5,47.5 parent: 2 - uid: 3540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,26.5 + pos: -43.5,47.5 parent: 2 - uid: 3541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,26.5 + pos: -44.5,47.5 parent: 2 - uid: 3542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,26.5 + pos: -41.5,47.5 parent: 2 - uid: 3543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 + pos: -43.5,48.5 parent: 2 - uid: 3544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,30.5 + pos: -44.5,48.5 parent: 2 - uid: 3545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,29.5 + pos: -43.5,49.5 parent: 2 - uid: 3546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,30.5 + pos: -43.5,46.5 parent: 2 - uid: 3547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,29.5 + pos: -44.5,46.5 parent: 2 - uid: 3548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,29.5 + pos: -44.5,45.5 parent: 2 - uid: 3549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,31.5 + pos: -45.5,44.5 parent: 2 - uid: 3550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,26.5 + pos: -45.5,43.5 parent: 2 - uid: 3551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,26.5 + pos: -46.5,43.5 parent: 2 - uid: 3552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,25.5 + pos: -45.5,47.5 parent: 2 - uid: 3553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,25.5 + pos: -46.5,47.5 parent: 2 - uid: 3554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,69.5 + pos: -47.5,47.5 parent: 2 - uid: 3555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,68.5 + pos: -48.5,47.5 parent: 2 - uid: 3556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,67.5 + pos: -48.5,46.5 parent: 2 - uid: 3557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,69.5 + pos: -50.5,46.5 parent: 2 - uid: 3558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,69.5 + pos: -49.5,46.5 parent: 2 - uid: 3559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,69.5 + pos: -51.5,47.5 parent: 2 - uid: 3560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,68.5 + pos: -51.5,49.5 parent: 2 - uid: 3561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,66.5 + pos: -51.5,48.5 parent: 2 - uid: 3562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,65.5 + pos: -50.5,49.5 parent: 2 - uid: 3563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,67.5 + pos: -50.5,50.5 parent: 2 - uid: 3564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,65.5 + pos: -50.5,51.5 parent: 2 - uid: 3565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,64.5 + pos: -52.5,49.5 parent: 2 - uid: 3566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,64.5 + pos: -52.5,50.5 parent: 2 - uid: 3567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,64.5 + pos: -51.5,51.5 parent: 2 - uid: 3568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,65.5 + pos: -52.5,52.5 parent: 2 - uid: 3569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,65.5 + pos: -51.5,53.5 parent: 2 - uid: 3570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,65.5 + pos: -49.5,53.5 parent: 2 - uid: 3571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,65.5 + pos: -48.5,53.5 parent: 2 - uid: 3572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,64.5 + pos: -50.5,53.5 parent: 2 - uid: 3573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,64.5 + pos: -47.5,53.5 parent: 2 - uid: 3574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,64.5 + pos: -49.5,54.5 parent: 2 - uid: 3575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,63.5 + pos: -51.5,58.5 parent: 2 - uid: 3576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,63.5 + pos: -49.5,58.5 parent: 2 - uid: 3577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,68.5 + pos: -48.5,58.5 parent: 2 - uid: 3578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,66.5 + pos: -50.5,58.5 parent: 2 - uid: 3579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,65.5 + pos: -51.5,57.5 parent: 2 - uid: 3580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,67.5 + pos: -50.5,56.5 parent: 2 - uid: 3581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,69.5 + pos: -49.5,56.5 parent: 2 - uid: 3582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,69.5 + pos: -48.5,57.5 parent: 2 - uid: 3583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,69.5 + pos: -47.5,57.5 parent: 2 - uid: 3584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,69.5 + pos: -45.5,58.5 parent: 2 - uid: 3585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,68.5 + pos: -45.5,59.5 parent: 2 - uid: 3586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,66.5 + pos: -46.5,59.5 parent: 2 - uid: 3587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,70.5 + pos: -46.5,60.5 parent: 2 - uid: 3588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,70.5 + pos: -45.5,62.5 parent: 2 - uid: 3589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,73.5 + pos: -43.5,62.5 parent: 2 - uid: 3590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,73.5 + pos: -42.5,62.5 parent: 2 - uid: 3591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,72.5 + pos: -44.5,62.5 parent: 2 - uid: 3592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,62.5 + pos: -44.5,63.5 parent: 2 - uid: 3593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,60.5 + pos: -43.5,63.5 parent: 2 - uid: 3594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,59.5 + pos: -52.5,61.5 parent: 2 - uid: 3595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,61.5 + pos: -52.5,60.5 parent: 2 - uid: 3596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,61.5 + pos: -52.5,63.5 parent: 2 - uid: 3597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,59.5 + pos: -51.5,63.5 parent: 2 - uid: 3598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,59.5 + pos: -51.5,64.5 parent: 2 - uid: 3599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,59.5 + pos: -52.5,64.5 parent: 2 - uid: 3600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,60.5 + pos: -52.5,68.5 parent: 2 - uid: 3601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,63.5 + pos: -52.5,67.5 parent: 2 - uid: 3602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,61.5 + pos: -51.5,67.5 parent: 2 - uid: 3603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,59.5 + pos: -50.5,68.5 parent: 2 - uid: 3604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,58.5 + pos: -50.5,67.5 parent: 2 - uid: 3605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,60.5 + pos: -49.5,68.5 parent: 2 - uid: 3606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,58.5 + pos: -49.5,67.5 parent: 2 - uid: 3607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,60.5 + pos: -51.5,68.5 parent: 2 - uid: 3608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,59.5 + pos: -58.5,63.5 parent: 2 - uid: 3609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,55.5 + pos: -56.5,63.5 parent: 2 - uid: 3610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,55.5 + pos: -55.5,63.5 parent: 2 - uid: 3611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,54.5 + pos: -54.5,63.5 parent: 2 - uid: 3612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,54.5 + pos: -57.5,63.5 parent: 2 - uid: 3613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,54.5 + pos: -56.5,64.5 parent: 2 - uid: 3614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,53.5 + pos: -56.5,66.5 parent: 2 - uid: 3615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,53.5 + pos: -56.5,67.5 parent: 2 - uid: 3616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,54.5 + pos: -56.5,65.5 parent: 2 - uid: 3617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,52.5 + pos: -59.5,66.5 parent: 2 - uid: 3618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,53.5 + pos: -59.5,67.5 parent: 2 - uid: 3619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,53.5 + pos: -58.5,67.5 parent: 2 - uid: 3620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,49.5 + pos: -57.5,67.5 parent: 2 - uid: 3621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,49.5 + pos: -55.5,67.5 parent: 2 - uid: 3622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,49.5 + pos: -54.5,67.5 parent: 2 - uid: 3623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,48.5 + pos: -64.5,66.5 parent: 2 - uid: 3624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,48.5 + pos: -62.5,66.5 parent: 2 - uid: 3625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,57.5 + pos: -61.5,66.5 parent: 2 - uid: 3626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,57.5 + pos: -63.5,66.5 parent: 2 - uid: 3627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,56.5 + pos: -63.5,65.5 parent: 2 - uid: 3628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,56.5 + pos: -61.5,65.5 parent: 2 - uid: 3629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,58.5 + pos: -62.5,65.5 parent: 2 - uid: 3630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,56.5 + pos: -60.5,69.5 parent: 2 - uid: 3631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,58.5 + pos: -60.5,70.5 parent: 2 - uid: 3632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,57.5 + pos: -59.5,70.5 parent: 2 - uid: 3633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,58.5 + pos: -58.5,69.5 parent: 2 - uid: 3634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,57.5 + pos: -58.5,70.5 parent: 2 - uid: 3635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,58.5 + pos: -57.5,69.5 parent: 2 - uid: 3636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,57.5 + pos: -57.5,70.5 parent: 2 - uid: 3637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,59.5 + pos: -56.5,69.5 parent: 2 - uid: 3638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,60.5 + pos: -56.5,70.5 parent: 2 - uid: 3639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,61.5 + pos: -59.5,69.5 parent: 2 - uid: 3640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,61.5 + pos: -59.5,71.5 parent: 2 - uid: 3641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,62.5 + pos: -59.5,73.5 parent: 2 - uid: 3642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,62.5 + pos: -59.5,74.5 parent: 2 - uid: 3643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,61.5 + pos: -59.5,75.5 parent: 2 - uid: 3644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,61.5 + pos: -59.5,72.5 parent: 2 - uid: 3645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,61.5 + pos: -59.5,76.5 parent: 2 - uid: 3646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,60.5 + pos: -63.5,78.5 parent: 2 - uid: 3647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,61.5 + pos: -63.5,76.5 parent: 2 - uid: 3648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,60.5 + pos: -64.5,78.5 parent: 2 - uid: 3649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,56.5 + pos: -64.5,77.5 parent: 2 - uid: 3650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,56.5 + pos: -63.5,77.5 parent: 2 - uid: 3651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,56.5 + pos: -64.5,76.5 parent: 2 - uid: 3652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,54.5 + pos: -65.5,78.5 parent: 2 - uid: 3653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,53.5 + pos: -65.5,77.5 parent: 2 - uid: 3654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,52.5 + pos: -65.5,76.5 parent: 2 - uid: 3655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,55.5 + pos: -66.5,78.5 parent: 2 - uid: 3656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,52.5 + pos: -66.5,77.5 parent: 2 - uid: 3657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,52.5 + pos: -66.5,76.5 parent: 2 - uid: 3658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,53.5 + pos: -67.5,77.5 parent: 2 - uid: 3659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,54.5 + pos: -67.5,76.5 parent: 2 - uid: 3660 components: - type: Transform - pos: -38.5,55.5 + pos: -67.5,75.5 parent: 2 - uid: 3661 components: - type: Transform - pos: -38.5,54.5 + pos: -68.5,76.5 parent: 2 - uid: 3662 components: - type: Transform - pos: -39.5,54.5 + pos: -69.5,76.5 parent: 2 - uid: 3663 components: - type: Transform - pos: -42.5,55.5 + pos: -69.5,75.5 parent: 2 - uid: 3664 components: - type: Transform - pos: -44.5,55.5 + pos: -68.5,75.5 parent: 2 - uid: 3665 components: - type: Transform - pos: -45.5,55.5 + pos: -70.5,75.5 parent: 2 - uid: 3666 components: - type: Transform - pos: -43.5,55.5 + pos: -71.5,76.5 parent: 2 - uid: 3667 components: - type: Transform - pos: -45.5,54.5 + pos: -70.5,76.5 parent: 2 - uid: 3668 components: - type: Transform - pos: -45.5,53.5 + pos: -71.5,75.5 parent: 2 - uid: 3669 components: - type: Transform - pos: -43.5,52.5 + pos: -72.5,76.5 parent: 2 - uid: 3670 components: - type: Transform - pos: -43.5,51.5 + pos: -72.5,75.5 parent: 2 - uid: 3671 components: - type: Transform - pos: -39.5,51.5 + pos: -73.5,75.5 parent: 2 - uid: 3672 components: - type: Transform - pos: -38.5,51.5 + pos: -74.5,76.5 parent: 2 - uid: 3673 components: - type: Transform - pos: -38.5,50.5 + pos: -74.5,75.5 parent: 2 - uid: 3674 components: - type: Transform - pos: -39.5,50.5 + pos: -75.5,76.5 parent: 2 - uid: 3675 components: - type: Transform - pos: -37.5,50.5 + pos: -75.5,75.5 parent: 2 - uid: 3676 components: - type: Transform - pos: -37.5,49.5 + pos: -73.5,76.5 parent: 2 - uid: 3677 components: - type: Transform - pos: -38.5,48.5 + pos: -75.5,74.5 parent: 2 - uid: 3678 components: - type: Transform - pos: -42.5,47.5 + pos: -75.5,72.5 parent: 2 - uid: 3679 components: - type: Transform - pos: -43.5,47.5 + pos: -75.5,71.5 parent: 2 - uid: 3680 components: - type: Transform - pos: -44.5,47.5 + pos: -75.5,73.5 parent: 2 - uid: 3681 components: - type: Transform - pos: -41.5,47.5 + pos: -75.5,70.5 parent: 2 - uid: 3682 components: - type: Transform - pos: -43.5,48.5 + pos: -75.5,69.5 parent: 2 - uid: 3683 components: - type: Transform - pos: -44.5,48.5 + pos: -76.5,72.5 parent: 2 - uid: 3684 components: - type: Transform - pos: -43.5,49.5 + pos: -76.5,70.5 parent: 2 - uid: 3685 components: - type: Transform - pos: -43.5,46.5 + pos: -76.5,69.5 parent: 2 - uid: 3686 components: - type: Transform - pos: -44.5,46.5 + pos: -76.5,71.5 parent: 2 - uid: 3687 components: - type: Transform - pos: -44.5,45.5 + pos: -74.5,73.5 parent: 2 - uid: 3688 components: - type: Transform - pos: -45.5,44.5 + pos: -74.5,73.5 parent: 2 - uid: 3689 components: - type: Transform - pos: -45.5,43.5 + pos: -72.5,73.5 parent: 2 - uid: 3690 components: - type: Transform - pos: -46.5,43.5 + pos: -71.5,73.5 parent: 2 - uid: 3691 components: - type: Transform - pos: -45.5,47.5 + pos: -70.5,73.5 parent: 2 - uid: 3692 components: - type: Transform - pos: -46.5,47.5 + pos: -73.5,73.5 parent: 2 - uid: 3693 components: - type: Transform - pos: -47.5,47.5 + pos: -69.5,73.5 parent: 2 - uid: 3694 components: - type: Transform - pos: -48.5,47.5 + pos: -68.5,73.5 parent: 2 - uid: 3695 components: - type: Transform - pos: -48.5,46.5 + pos: -67.5,73.5 parent: 2 - uid: 3696 components: - type: Transform - pos: -50.5,46.5 + pos: -65.5,73.5 parent: 2 - uid: 3697 components: - type: Transform - pos: -49.5,46.5 + pos: -66.5,73.5 parent: 2 - uid: 3698 components: - type: Transform - pos: -51.5,47.5 + pos: -66.5,75.5 parent: 2 - uid: 3699 components: - type: Transform - pos: -51.5,49.5 + pos: -65.5,75.5 parent: 2 - uid: 3700 components: - type: Transform - pos: -51.5,48.5 + pos: -65.5,74.5 parent: 2 - uid: 3701 components: - type: Transform - pos: -50.5,49.5 + pos: -66.5,74.5 parent: 2 - uid: 3702 components: - type: Transform - pos: -50.5,50.5 + pos: -65.5,72.5 parent: 2 - uid: 3703 components: - type: Transform - pos: -50.5,51.5 + pos: -65.5,70.5 parent: 2 - uid: 3704 components: - type: Transform - pos: -52.5,49.5 + pos: -65.5,71.5 parent: 2 - uid: 3705 components: - type: Transform - pos: -52.5,50.5 + pos: -65.5,69.5 parent: 2 - uid: 3706 components: - type: Transform - pos: -51.5,51.5 + pos: -66.5,72.5 parent: 2 - uid: 3707 components: - type: Transform - pos: -52.5,52.5 + pos: -66.5,71.5 parent: 2 - uid: 3708 components: - type: Transform - pos: -51.5,53.5 + pos: -66.5,70.5 parent: 2 - uid: 3709 components: - type: Transform - pos: -49.5,53.5 + pos: -66.5,69.5 parent: 2 - uid: 3710 components: - type: Transform - pos: -48.5,53.5 + pos: -67.5,71.5 parent: 2 - uid: 3711 components: - type: Transform - pos: -50.5,53.5 + pos: -69.5,71.5 parent: 2 - uid: 3712 components: - type: Transform - pos: -47.5,53.5 + pos: -70.5,71.5 parent: 2 - uid: 3713 components: - type: Transform - pos: -49.5,54.5 + pos: -71.5,71.5 parent: 2 - uid: 3714 components: - type: Transform - pos: -51.5,58.5 + pos: -72.5,71.5 parent: 2 - uid: 3715 components: - type: Transform - pos: -49.5,58.5 + pos: -73.5,71.5 parent: 2 - uid: 3716 components: - type: Transform - pos: -48.5,58.5 + pos: -68.5,71.5 parent: 2 - uid: 3717 components: - type: Transform - pos: -50.5,58.5 + pos: -74.5,71.5 parent: 2 - uid: 3718 components: - type: Transform - pos: -51.5,57.5 + pos: -74.5,70.5 parent: 2 - uid: 3719 components: - type: Transform - pos: -50.5,56.5 + pos: -72.5,70.5 parent: 2 - uid: 3720 components: - type: Transform - pos: -49.5,56.5 + pos: -71.5,70.5 parent: 2 - uid: 3721 components: - type: Transform - pos: -48.5,57.5 + pos: -70.5,70.5 parent: 2 - uid: 3722 components: - type: Transform - pos: -47.5,57.5 + pos: -69.5,70.5 parent: 2 - uid: 3723 components: - type: Transform - pos: -45.5,58.5 + pos: -73.5,70.5 parent: 2 - uid: 3724 components: - type: Transform - pos: -45.5,59.5 + pos: -74.5,68.5 parent: 2 - uid: 3725 components: - type: Transform - pos: -46.5,59.5 + pos: -78.5,72.5 parent: 2 - uid: 3726 components: - type: Transform - pos: -46.5,60.5 + pos: -77.5,71.5 parent: 2 - uid: 3727 components: - type: Transform - pos: -45.5,62.5 + pos: -65.5,68.5 parent: 2 - uid: 3728 components: - type: Transform - pos: -43.5,62.5 + pos: -64.5,70.5 parent: 2 - uid: 3729 components: - type: Transform - pos: -42.5,62.5 + pos: -62.5,70.5 parent: 2 - uid: 3730 components: - type: Transform - pos: -44.5,62.5 + pos: -61.5,70.5 parent: 2 - uid: 3731 components: - type: Transform - pos: -44.5,63.5 + pos: -63.5,70.5 parent: 2 - uid: 3732 components: - type: Transform - pos: -43.5,63.5 + pos: -63.5,71.5 parent: 2 - uid: 3733 components: - type: Transform - pos: -52.5,61.5 + pos: -63.5,73.5 parent: 2 - uid: 3734 components: - type: Transform - pos: -52.5,60.5 + pos: -63.5,74.5 parent: 2 - uid: 3735 components: - type: Transform - pos: -52.5,63.5 + pos: -63.5,75.5 parent: 2 - uid: 3736 components: - type: Transform - pos: -51.5,63.5 + pos: -63.5,72.5 parent: 2 - uid: 3737 components: - type: Transform - pos: -51.5,64.5 + pos: -62.5,76.5 parent: 2 - uid: 3738 components: - type: Transform - pos: -52.5,64.5 + pos: -60.5,76.5 parent: 2 - uid: 3739 components: - type: Transform - pos: -52.5,68.5 + pos: -61.5,76.5 parent: 2 - uid: 3740 components: - type: Transform - pos: -52.5,67.5 + pos: -71.5,77.5 parent: 2 - uid: 3741 components: - type: Transform - pos: -51.5,67.5 + pos: -59.5,78.5 parent: 2 - uid: 3742 components: - type: Transform - pos: -50.5,68.5 + pos: -58.5,78.5 parent: 2 - uid: 3743 components: - type: Transform - pos: -50.5,67.5 + pos: -58.5,77.5 parent: 2 - uid: 3744 components: - type: Transform - pos: -49.5,68.5 + pos: -59.5,77.5 parent: 2 - uid: 3745 components: - type: Transform - pos: -49.5,67.5 + pos: -57.5,78.5 parent: 2 - uid: 3746 components: - type: Transform - pos: -51.5,68.5 + pos: -57.5,77.5 parent: 2 - uid: 3747 components: - type: Transform - pos: -58.5,63.5 + pos: -62.5,77.5 parent: 2 - uid: 3748 components: - type: Transform - pos: -56.5,63.5 + pos: -61.5,77.5 parent: 2 - uid: 3749 components: - type: Transform - pos: -55.5,63.5 + pos: -60.5,77.5 parent: 2 - uid: 3750 components: - type: Transform - pos: -54.5,63.5 + pos: -61.5,75.5 parent: 2 - uid: 3751 components: - type: Transform - pos: -57.5,63.5 + pos: -61.5,73.5 parent: 2 - uid: 3752 components: - type: Transform - pos: -56.5,64.5 + pos: -61.5,72.5 parent: 2 - uid: 3753 components: - type: Transform - pos: -56.5,66.5 + pos: -61.5,71.5 parent: 2 - uid: 3754 components: - type: Transform - pos: -56.5,67.5 + pos: -61.5,74.5 parent: 2 - uid: 3755 components: - type: Transform - pos: -56.5,65.5 + pos: -58.5,76.5 parent: 2 - uid: 3756 components: - type: Transform - pos: -59.5,66.5 + pos: -56.5,76.5 parent: 2 - uid: 3757 components: - type: Transform - pos: -59.5,67.5 + pos: -55.5,76.5 parent: 2 - uid: 3758 components: - type: Transform - pos: -58.5,67.5 + pos: -54.5,76.5 parent: 2 - uid: 3759 components: - type: Transform - pos: -57.5,67.5 + pos: -53.5,76.5 parent: 2 - uid: 3760 components: - type: Transform - pos: -55.5,67.5 + pos: -52.5,76.5 parent: 2 - uid: 3761 components: - type: Transform - pos: -54.5,67.5 + pos: -57.5,76.5 parent: 2 - uid: 3762 components: - type: Transform - pos: -64.5,66.5 + pos: -51.5,76.5 parent: 2 - uid: 3763 components: - type: Transform - pos: -62.5,66.5 + pos: -49.5,76.5 parent: 2 - uid: 3764 components: - type: Transform - pos: -61.5,66.5 + pos: -50.5,76.5 parent: 2 - uid: 3765 components: - type: Transform - pos: -63.5,66.5 + pos: -48.5,76.5 parent: 2 - uid: 3766 components: - type: Transform - pos: -63.5,65.5 + pos: -47.5,76.5 parent: 2 - uid: 3767 components: - type: Transform - pos: -61.5,65.5 + pos: -47.5,75.5 parent: 2 - uid: 3768 components: - type: Transform - pos: -62.5,65.5 + pos: -49.5,75.5 parent: 2 - uid: 3769 components: - type: Transform - pos: -60.5,69.5 + pos: -50.5,75.5 parent: 2 - uid: 3770 components: - type: Transform - pos: -60.5,70.5 + pos: -48.5,75.5 parent: 2 - uid: 3771 components: - type: Transform - pos: -59.5,70.5 + pos: -51.5,75.5 parent: 2 - uid: 3772 components: - type: Transform - pos: -58.5,69.5 + pos: -52.5,75.5 parent: 2 - uid: 3773 components: - type: Transform - pos: -58.5,70.5 + pos: -53.5,75.5 parent: 2 - uid: 3774 components: - type: Transform - pos: -57.5,69.5 + pos: -54.5,75.5 parent: 2 - uid: 3775 components: - type: Transform - pos: -57.5,70.5 + pos: -56.5,75.5 parent: 2 - uid: 3776 components: - type: Transform - pos: -56.5,69.5 + pos: -55.5,75.5 parent: 2 - uid: 3777 components: - type: Transform - pos: -56.5,70.5 + pos: -56.5,73.5 parent: 2 - uid: 3778 components: - type: Transform - pos: -59.5,69.5 + pos: -56.5,72.5 parent: 2 - uid: 3779 components: - type: Transform - pos: -59.5,71.5 + pos: -56.5,71.5 parent: 2 - uid: 3780 components: - type: Transform - pos: -59.5,73.5 + pos: -55.5,73.5 parent: 2 - uid: 3781 components: - type: Transform - pos: -59.5,74.5 + pos: -55.5,71.5 parent: 2 - uid: 3782 components: - type: Transform - pos: -59.5,75.5 + pos: -54.5,71.5 parent: 2 - uid: 3783 components: - type: Transform - pos: -59.5,72.5 + pos: -54.5,70.5 parent: 2 - uid: 3784 components: - type: Transform - pos: -59.5,76.5 + pos: -53.5,71.5 parent: 2 - uid: 3785 components: - type: Transform - pos: -63.5,78.5 + pos: -53.5,70.5 parent: 2 - uid: 3786 components: - type: Transform - pos: -63.5,76.5 + pos: -55.5,70.5 parent: 2 - uid: 3787 components: - type: Transform - pos: -64.5,78.5 + pos: -52.5,70.5 parent: 2 - uid: 3788 components: - type: Transform - pos: -64.5,77.5 + pos: -52.5,71.5 parent: 2 - uid: 3789 components: - type: Transform - pos: -63.5,77.5 + pos: -53.5,73.5 parent: 2 - uid: 3790 components: - type: Transform - pos: -64.5,76.5 + pos: -52.5,73.5 parent: 2 - uid: 3791 components: - type: Transform - pos: -65.5,78.5 + pos: -51.5,73.5 parent: 2 - uid: 3792 components: - type: Transform - pos: -65.5,77.5 + pos: -50.5,73.5 parent: 2 - uid: 3793 components: - type: Transform - pos: -65.5,76.5 + pos: -49.5,73.5 parent: 2 - uid: 3794 components: - type: Transform - pos: -66.5,78.5 + pos: -54.5,73.5 parent: 2 - uid: 3795 components: - type: Transform - pos: -66.5,77.5 + pos: -48.5,73.5 parent: 2 - uid: 3796 components: - type: Transform - pos: -66.5,76.5 + pos: -48.5,74.5 parent: 2 - uid: 3797 components: - type: Transform - pos: -67.5,77.5 + pos: -47.5,74.5 parent: 2 - uid: 3798 components: - type: Transform - pos: -67.5,76.5 + pos: -46.5,74.5 parent: 2 - uid: 3799 components: - type: Transform - pos: -67.5,75.5 + pos: -45.5,74.5 parent: 2 - uid: 3800 components: - type: Transform - pos: -68.5,76.5 + pos: -45.5,75.5 parent: 2 - uid: 3801 components: - type: Transform - pos: -69.5,76.5 + pos: -44.5,75.5 parent: 2 - uid: 3802 components: - type: Transform - pos: -69.5,75.5 + pos: -48.5,77.5 parent: 2 - uid: 3803 components: - type: Transform - pos: -68.5,75.5 + pos: -50.5,77.5 parent: 2 - uid: 3804 components: - type: Transform - pos: -70.5,75.5 + pos: -49.5,77.5 parent: 2 - uid: 3805 components: - type: Transform - pos: -71.5,76.5 + pos: -54.5,77.5 parent: 2 - uid: 3806 components: - type: Transform - pos: -70.5,76.5 + pos: -55.5,77.5 parent: 2 - uid: 3807 components: - type: Transform - pos: -71.5,75.5 + pos: -56.5,77.5 parent: 2 - uid: 3808 components: - type: Transform - pos: -72.5,76.5 + pos: -51.5,71.5 parent: 2 - uid: 3809 components: - type: Transform - pos: -72.5,75.5 + pos: -49.5,71.5 parent: 2 - uid: 3810 components: - type: Transform - pos: -73.5,75.5 + pos: -48.5,71.5 parent: 2 - uid: 3811 components: - type: Transform - pos: -74.5,76.5 + pos: -47.5,71.5 parent: 2 - uid: 3812 components: - type: Transform - pos: -74.5,75.5 + pos: -50.5,71.5 parent: 2 - uid: 3813 components: - type: Transform - pos: -75.5,76.5 + pos: -46.5,71.5 parent: 2 - uid: 3814 components: - type: Transform - pos: -75.5,75.5 + pos: -48.5,70.5 parent: 2 - uid: 3815 components: - type: Transform - pos: -73.5,76.5 + pos: -47.5,70.5 parent: 2 - uid: 3816 components: - type: Transform - pos: -75.5,74.5 + pos: -47.5,72.5 parent: 2 - uid: 3817 components: - type: Transform - pos: -75.5,72.5 + pos: -47.5,73.5 parent: 2 - uid: 3818 components: - type: Transform - pos: -75.5,71.5 + pos: -28.5,63.5 parent: 2 - uid: 3819 components: - type: Transform - pos: -75.5,73.5 + pos: -28.5,62.5 parent: 2 - uid: 3820 components: - type: Transform - pos: -75.5,70.5 + pos: -29.5,61.5 parent: 2 - uid: 3821 components: - type: Transform - pos: -75.5,69.5 + pos: 22.5,69.5 parent: 2 - uid: 3822 components: - type: Transform - pos: -76.5,72.5 + pos: 24.5,69.5 parent: 2 - uid: 3823 components: - type: Transform - pos: -76.5,70.5 + pos: 23.5,69.5 parent: 2 - uid: 3824 components: - type: Transform - pos: -76.5,69.5 + pos: 25.5,69.5 parent: 2 - uid: 3825 components: - type: Transform - pos: -76.5,71.5 + pos: 23.5,68.5 parent: 2 - uid: 3826 components: - type: Transform - pos: -74.5,73.5 + pos: 25.5,68.5 parent: 2 - uid: 3827 components: - type: Transform - pos: -74.5,73.5 + pos: 26.5,68.5 parent: 2 - uid: 3828 components: - type: Transform - pos: -72.5,73.5 + pos: 24.5,68.5 parent: 2 - uid: 3829 components: - type: Transform - pos: -71.5,73.5 + pos: 27.5,68.5 parent: 2 - uid: 3830 components: - type: Transform - pos: -70.5,73.5 + pos: 28.5,68.5 parent: 2 - uid: 3831 components: - type: Transform - pos: -73.5,73.5 + pos: 26.5,67.5 parent: 2 - uid: 3832 components: - type: Transform - pos: -69.5,73.5 + pos: 27.5,67.5 parent: 2 - uid: 3833 components: - type: Transform - pos: -68.5,73.5 + pos: 29.5,67.5 parent: 2 - uid: 3834 components: - type: Transform - pos: -67.5,73.5 + pos: 31.5,67.5 parent: 2 - uid: 3835 components: - type: Transform - pos: -65.5,73.5 + pos: 30.5,67.5 parent: 2 - uid: 3836 components: - type: Transform - pos: -66.5,73.5 + pos: 28.5,67.5 parent: 2 - uid: 3837 components: - type: Transform - pos: -66.5,75.5 + pos: 27.5,66.5 parent: 2 - uid: 3838 components: - type: Transform - pos: -65.5,75.5 + pos: 27.5,64.5 parent: 2 - uid: 3839 components: - type: Transform - pos: -65.5,74.5 + pos: 28.5,66.5 parent: 2 - uid: 3840 components: - type: Transform - pos: -66.5,74.5 + pos: 28.5,65.5 parent: 2 - uid: 3841 components: - type: Transform - pos: -65.5,72.5 + pos: 27.5,65.5 parent: 2 - uid: 3842 components: - type: Transform - pos: -65.5,70.5 + pos: 28.5,64.5 parent: 2 - uid: 3843 components: - type: Transform - pos: -65.5,71.5 + pos: 26.5,65.5 parent: 2 - uid: 3844 components: - type: Transform - pos: -65.5,69.5 + pos: 25.5,65.5 parent: 2 - uid: 3845 components: - type: Transform - pos: -66.5,72.5 + pos: 25.5,64.5 parent: 2 - uid: 3846 components: - type: Transform - pos: -66.5,71.5 + pos: 24.5,65.5 parent: 2 - uid: 3847 components: - type: Transform - pos: -66.5,70.5 + pos: 26.5,64.5 parent: 2 - uid: 3848 components: - type: Transform - pos: -66.5,69.5 + pos: 24.5,64.5 parent: 2 - uid: 3849 components: - type: Transform - pos: -67.5,71.5 + pos: 23.5,65.5 parent: 2 - uid: 3850 components: - type: Transform - pos: -69.5,71.5 + pos: 23.5,66.5 parent: 2 - uid: 3851 components: - type: Transform - pos: -70.5,71.5 + pos: 22.5,66.5 parent: 2 - uid: 3852 components: - type: Transform - pos: -71.5,71.5 + pos: 31.5,65.5 parent: 2 - uid: 3853 components: - type: Transform - pos: -72.5,71.5 + pos: 32.5,65.5 parent: 2 - uid: 3854 components: - type: Transform - pos: -73.5,71.5 + pos: 30.5,65.5 parent: 2 - uid: 3855 components: - type: Transform - pos: -68.5,71.5 + pos: 30.5,64.5 parent: 2 - uid: 3856 components: - type: Transform - pos: -74.5,71.5 + pos: 32.5,64.5 parent: 2 - uid: 3857 components: - type: Transform - pos: -74.5,70.5 + pos: 33.5,64.5 parent: 2 - uid: 3858 components: - type: Transform - pos: -72.5,70.5 + pos: 31.5,64.5 parent: 2 - uid: 3859 components: - type: Transform - pos: -71.5,70.5 + pos: 34.5,64.5 parent: 2 - uid: 3860 components: - type: Transform - pos: -70.5,70.5 + pos: 33.5,63.5 parent: 2 - uid: 3861 components: - type: Transform - pos: -69.5,70.5 + pos: 32.5,63.5 parent: 2 - uid: 3862 components: - type: Transform - pos: -73.5,70.5 + pos: 32.5,61.5 parent: 2 - uid: 3863 components: - type: Transform - pos: -74.5,68.5 + pos: 32.5,60.5 parent: 2 - uid: 3864 components: - type: Transform - pos: -78.5,72.5 + pos: 32.5,62.5 parent: 2 - uid: 3865 components: - type: Transform - pos: -77.5,71.5 + pos: 32.5,59.5 parent: 2 - uid: 3866 components: - type: Transform - pos: -65.5,68.5 + pos: 33.5,59.5 parent: 2 - uid: 3867 components: - type: Transform - pos: -64.5,70.5 + pos: 34.5,59.5 parent: 2 - uid: 3868 components: - type: Transform - pos: -62.5,70.5 + pos: 33.5,58.5 parent: 2 - uid: 3869 components: - type: Transform - pos: -61.5,70.5 + pos: 33.5,56.5 parent: 2 - uid: 3870 components: - type: Transform - pos: -63.5,70.5 + pos: 33.5,55.5 parent: 2 - uid: 3871 components: - type: Transform - pos: -63.5,71.5 + pos: 33.5,57.5 parent: 2 - uid: 3872 components: - type: Transform - pos: -63.5,73.5 + pos: 33.5,54.5 parent: 2 - uid: 3873 components: - type: Transform - pos: -63.5,74.5 + pos: 32.5,55.5 parent: 2 - uid: 3874 components: - type: Transform - pos: -63.5,75.5 + pos: 34.5,55.5 parent: 2 - uid: 3875 components: - type: Transform - pos: -63.5,72.5 + pos: 34.5,57.5 parent: 2 - uid: 3876 components: - type: Transform - pos: -62.5,76.5 + pos: 35.5,55.5 parent: 2 - uid: 3877 components: - type: Transform - pos: -60.5,76.5 + pos: 35.5,56.5 parent: 2 - uid: 3878 components: - type: Transform - pos: -61.5,76.5 + pos: 35.5,57.5 parent: 2 - uid: 3879 components: - type: Transform - pos: -71.5,77.5 + pos: 34.5,56.5 parent: 2 - uid: 3880 components: - type: Transform - pos: -59.5,78.5 + pos: 35.5,58.5 parent: 2 - uid: 3881 components: - type: Transform - pos: -58.5,78.5 + pos: 37.5,58.5 parent: 2 - uid: 3882 components: - type: Transform - pos: -58.5,77.5 + pos: 36.5,58.5 parent: 2 - uid: 3883 components: - type: Transform - pos: -59.5,77.5 + pos: 37.5,57.5 parent: 2 - uid: 3884 components: - type: Transform - pos: -57.5,78.5 + pos: 39.5,57.5 parent: 2 - uid: 3885 components: - type: Transform - pos: -57.5,77.5 + pos: 38.5,57.5 parent: 2 - uid: 3886 components: - type: Transform - pos: -62.5,77.5 + pos: 39.5,58.5 parent: 2 - uid: 3887 components: - type: Transform - pos: -61.5,77.5 + pos: 40.5,58.5 parent: 2 - uid: 3888 components: - type: Transform - pos: -60.5,77.5 + pos: 40.5,59.5 parent: 2 - uid: 3889 components: - type: Transform - pos: -61.5,75.5 + pos: 13.5,45.5 parent: 2 - uid: 3890 components: - type: Transform - pos: -61.5,73.5 + pos: 13.5,43.5 parent: 2 - uid: 3891 components: - type: Transform - pos: -61.5,72.5 + pos: 13.5,44.5 parent: 2 - uid: 3892 components: - type: Transform - pos: -61.5,71.5 + pos: 14.5,43.5 parent: 2 - uid: 3893 components: - type: Transform - pos: -61.5,74.5 + pos: 16.5,44.5 parent: 2 - uid: 3894 components: - type: Transform - pos: -58.5,76.5 + pos: 16.5,45.5 parent: 2 - uid: 3895 components: - type: Transform - pos: -56.5,76.5 + pos: 17.5,45.5 parent: 2 - uid: 3896 components: - type: Transform - pos: -55.5,76.5 + pos: 17.5,46.5 parent: 2 - uid: 3897 components: - type: Transform - pos: -54.5,76.5 + pos: 19.5,47.5 parent: 2 - uid: 3898 components: - type: Transform - pos: -53.5,76.5 + pos: 21.5,47.5 parent: 2 - uid: 3899 components: - type: Transform - pos: -52.5,76.5 + pos: 22.5,47.5 parent: 2 - uid: 3900 components: - type: Transform - pos: -57.5,76.5 + pos: 20.5,47.5 parent: 2 - uid: 3901 components: - type: Transform - pos: -51.5,76.5 + pos: 21.5,48.5 parent: 2 - uid: 3902 components: - type: Transform - pos: -49.5,76.5 + pos: 23.5,48.5 parent: 2 - uid: 3903 components: - type: Transform - pos: -50.5,76.5 + pos: 24.5,48.5 parent: 2 - uid: 3904 components: - type: Transform - pos: -48.5,76.5 + pos: 22.5,48.5 parent: 2 - uid: 3905 components: - type: Transform - pos: -47.5,76.5 + pos: 21.5,46.5 parent: 2 - uid: 3906 components: - type: Transform - pos: -47.5,75.5 + pos: 20.5,46.5 parent: 2 - uid: 3907 components: - type: Transform - pos: -49.5,75.5 + pos: 22.5,46.5 parent: 2 - uid: 3908 components: - type: Transform - pos: -50.5,75.5 + pos: 26.5,47.5 parent: 2 - uid: 3909 components: - type: Transform - pos: -48.5,75.5 + pos: 26.5,46.5 parent: 2 - uid: 3910 components: - type: Transform - pos: -51.5,75.5 + pos: 27.5,46.5 parent: 2 - uid: 3911 components: - type: Transform - pos: -52.5,75.5 + pos: 28.5,46.5 parent: 2 - uid: 3912 components: - type: Transform - pos: -53.5,75.5 + pos: 28.5,47.5 parent: 2 - uid: 3913 components: - type: Transform - pos: -54.5,75.5 + pos: 30.5,47.5 parent: 2 - uid: 3914 components: - type: Transform - pos: -56.5,75.5 + pos: 29.5,47.5 parent: 2 - uid: 3915 components: - type: Transform - pos: -55.5,75.5 + pos: 29.5,45.5 parent: 2 - uid: 3916 components: - type: Transform - pos: -56.5,73.5 + pos: 30.5,45.5 parent: 2 - uid: 3917 components: - type: Transform - pos: -56.5,72.5 + pos: 30.5,46.5 parent: 2 - uid: 3918 components: - type: Transform - pos: -56.5,71.5 + pos: 31.5,46.5 parent: 2 - uid: 3919 components: - type: Transform - pos: -55.5,73.5 + pos: 30.5,44.5 parent: 2 - uid: 3920 components: - type: Transform - pos: -55.5,71.5 + pos: 32.5,43.5 parent: 2 - uid: 3921 components: - type: Transform - pos: -54.5,71.5 + pos: 34.5,43.5 parent: 2 - uid: 3922 components: - type: Transform - pos: -54.5,70.5 + pos: 33.5,43.5 parent: 2 - uid: 3923 components: - type: Transform - pos: -53.5,71.5 + pos: 34.5,42.5 parent: 2 - uid: 3924 components: - type: Transform - pos: -53.5,70.5 + pos: 33.5,42.5 parent: 2 - uid: 3925 components: - type: Transform - pos: -55.5,70.5 + pos: 33.5,46.5 parent: 2 - uid: 3926 components: - type: Transform - pos: -52.5,70.5 + pos: 34.5,46.5 parent: 2 - uid: 3927 components: - type: Transform - pos: -52.5,71.5 + pos: 33.5,45.5 parent: 2 - uid: 3928 components: - type: Transform - pos: -53.5,73.5 + pos: 33.5,44.5 parent: 2 - uid: 3929 components: - type: Transform - pos: -52.5,73.5 + pos: 34.5,44.5 parent: 2 - uid: 3930 components: - type: Transform - pos: -51.5,73.5 + pos: 35.5,44.5 parent: 2 - uid: 3931 components: - type: Transform - pos: -50.5,73.5 + pos: 36.5,44.5 parent: 2 - uid: 3932 components: - type: Transform - pos: -49.5,73.5 + pos: 35.5,45.5 parent: 2 - uid: 3933 components: - type: Transform - pos: -54.5,73.5 + pos: 37.5,44.5 parent: 2 - uid: 3934 components: - type: Transform - pos: -48.5,73.5 + pos: 37.5,42.5 parent: 2 - uid: 3935 components: - type: Transform - pos: -48.5,74.5 + pos: 37.5,41.5 parent: 2 - uid: 3936 components: - type: Transform - pos: -47.5,74.5 + pos: 37.5,40.5 parent: 2 - uid: 3937 components: - type: Transform - pos: -46.5,74.5 + pos: 37.5,39.5 parent: 2 - uid: 3938 components: - type: Transform - pos: -45.5,74.5 + pos: 37.5,43.5 parent: 2 - uid: 3939 components: - type: Transform - pos: -45.5,75.5 + pos: 36.5,40.5 parent: 2 - uid: 3940 components: - type: Transform - pos: -44.5,75.5 + pos: 36.5,39.5 parent: 2 - uid: 3941 components: - type: Transform - pos: -48.5,77.5 + pos: 37.5,38.5 parent: 2 - uid: 3942 components: - type: Transform - pos: -50.5,77.5 + pos: 35.5,37.5 parent: 2 - uid: 3943 components: - type: Transform - pos: -49.5,77.5 + pos: 36.5,37.5 parent: 2 - uid: 3944 components: - type: Transform - pos: -54.5,77.5 + pos: 38.5,37.5 parent: 2 - uid: 3945 components: - type: Transform - pos: -55.5,77.5 + pos: 38.5,35.5 parent: 2 - uid: 3946 components: - type: Transform - pos: -56.5,77.5 + pos: 38.5,34.5 parent: 2 - uid: 3947 components: - type: Transform - pos: -51.5,71.5 + pos: 38.5,36.5 parent: 2 - uid: 3948 components: - type: Transform - pos: -49.5,71.5 + pos: 37.5,35.5 parent: 2 - uid: 3949 components: - type: Transform - pos: -48.5,71.5 + pos: 37.5,33.5 parent: 2 - uid: 3950 components: - type: Transform - pos: -47.5,71.5 + pos: 37.5,32.5 parent: 2 - uid: 3951 components: - type: Transform - pos: -50.5,71.5 + pos: 37.5,31.5 parent: 2 - uid: 3952 components: - type: Transform - pos: -46.5,71.5 + pos: 37.5,34.5 parent: 2 - uid: 3953 components: - type: Transform - pos: -48.5,70.5 + pos: 36.5,34.5 parent: 2 - uid: 3954 components: - type: Transform - pos: -47.5,70.5 + pos: 36.5,33.5 parent: 2 - uid: 3955 components: - type: Transform - pos: -47.5,72.5 + pos: 39.5,31.5 parent: 2 - uid: 3956 components: - type: Transform - pos: -47.5,73.5 + pos: 38.5,31.5 parent: 2 - uid: 3957 components: - type: Transform - pos: -28.5,63.5 + pos: 40.5,32.5 parent: 2 - uid: 3958 components: - type: Transform - pos: -28.5,62.5 + pos: 41.5,32.5 parent: 2 - uid: 3959 components: - type: Transform - pos: -29.5,61.5 + pos: 41.5,33.5 parent: 2 - uid: 3960 components: - type: Transform - pos: 22.5,69.5 + pos: 42.5,34.5 parent: 2 - uid: 3961 components: - type: Transform - pos: 24.5,69.5 + pos: 43.5,34.5 parent: 2 - uid: 3962 components: - type: Transform - pos: 23.5,69.5 + pos: 44.5,33.5 parent: 2 - uid: 3963 components: - type: Transform - pos: 25.5,69.5 + pos: 44.5,32.5 parent: 2 - uid: 3964 components: - type: Transform - pos: 23.5,68.5 + pos: 45.5,33.5 parent: 2 - uid: 3965 components: - type: Transform - pos: 25.5,68.5 + pos: 45.5,32.5 parent: 2 - uid: 3966 components: - type: Transform - pos: 26.5,68.5 + pos: 43.5,38.5 parent: 2 - uid: 3967 components: - type: Transform - pos: 24.5,68.5 + pos: 42.5,37.5 parent: 2 - uid: 3968 components: - type: Transform - pos: 27.5,68.5 + pos: 45.5,38.5 parent: 2 - uid: 3969 components: - type: Transform - pos: 28.5,68.5 + pos: 46.5,37.5 parent: 2 - uid: 3970 components: - type: Transform - pos: 26.5,67.5 + pos: 47.5,37.5 parent: 2 - uid: 3971 components: - type: Transform - pos: 27.5,67.5 + pos: 48.5,37.5 parent: 2 - uid: 3972 components: - type: Transform - pos: 29.5,67.5 + pos: 49.5,37.5 parent: 2 - uid: 3973 components: - type: Transform - pos: 31.5,67.5 + pos: 50.5,38.5 parent: 2 - uid: 3974 components: - type: Transform - pos: 30.5,67.5 + pos: 50.5,39.5 parent: 2 - uid: 3975 components: - type: Transform - pos: 28.5,67.5 + pos: 38.5,44.5 parent: 2 - uid: 3976 components: - type: Transform - pos: 27.5,66.5 + pos: 38.5,43.5 parent: 2 - uid: 3977 components: - type: Transform - pos: 27.5,64.5 + pos: 38.5,42.5 parent: 2 - uid: 3978 components: - type: Transform - pos: 28.5,66.5 + pos: 39.5,45.5 parent: 2 - uid: 3979 components: - type: Transform - pos: 28.5,65.5 + pos: 41.5,45.5 parent: 2 - uid: 3980 components: - type: Transform - pos: 27.5,65.5 + pos: 40.5,45.5 parent: 2 - uid: 3981 components: - type: Transform - pos: 28.5,64.5 + pos: 41.5,46.5 parent: 2 - uid: 3982 components: - type: Transform - pos: 26.5,65.5 + pos: 43.5,45.5 parent: 2 - uid: 3983 components: - type: Transform - pos: 25.5,65.5 + pos: 43.5,43.5 parent: 2 - uid: 3984 components: - type: Transform - pos: 25.5,64.5 + pos: 43.5,42.5 parent: 2 - uid: 3985 components: - type: Transform - pos: 24.5,65.5 + pos: 43.5,44.5 parent: 2 - uid: 3986 components: - type: Transform - pos: 26.5,64.5 + pos: 44.5,44.5 parent: 2 - uid: 3987 components: - type: Transform - pos: 24.5,64.5 + pos: 44.5,42.5 parent: 2 - uid: 3988 components: - type: Transform - pos: 23.5,65.5 + pos: 44.5,43.5 parent: 2 - uid: 3989 components: - type: Transform - pos: 23.5,66.5 + pos: 45.5,44.5 parent: 2 - uid: 3990 components: - type: Transform - pos: 22.5,66.5 + pos: 45.5,42.5 parent: 2 - uid: 3991 components: - type: Transform - pos: 31.5,65.5 + pos: 46.5,42.5 parent: 2 - uid: 3992 components: - type: Transform - pos: 32.5,65.5 + pos: 46.5,43.5 parent: 2 - uid: 3993 components: - type: Transform - pos: 30.5,65.5 + pos: 46.5,41.5 parent: 2 - uid: 3994 components: - type: Transform - pos: 30.5,64.5 + pos: 48.5,41.5 parent: 2 - uid: 3995 components: - type: Transform - pos: 32.5,64.5 + pos: 49.5,41.5 parent: 2 - uid: 3996 components: - type: Transform - pos: 33.5,64.5 + pos: 47.5,41.5 parent: 2 - uid: 3997 components: - type: Transform - pos: 31.5,64.5 + pos: 51.5,44.5 parent: 2 - uid: 3998 components: - type: Transform - pos: 34.5,64.5 + pos: 51.5,42.5 parent: 2 - uid: 3999 components: - type: Transform - pos: 33.5,63.5 + pos: 52.5,44.5 parent: 2 - uid: 4000 components: - type: Transform - pos: 32.5,63.5 + pos: 51.5,43.5 parent: 2 - uid: 4001 components: - type: Transform - pos: 32.5,61.5 + pos: 52.5,42.5 parent: 2 - uid: 4002 components: - type: Transform - pos: 32.5,60.5 + pos: 52.5,43.5 parent: 2 - uid: 4003 components: - type: Transform - pos: 32.5,62.5 + pos: 50.5,47.5 parent: 2 - uid: 4004 components: - type: Transform - pos: 32.5,59.5 + pos: 50.5,45.5 parent: 2 - uid: 4005 components: - type: Transform - pos: 33.5,59.5 + pos: 50.5,46.5 parent: 2 - uid: 4006 components: - type: Transform - pos: 34.5,59.5 + pos: 51.5,46.5 parent: 2 - uid: 4007 components: - type: Transform - pos: 33.5,58.5 + pos: 51.5,45.5 parent: 2 - uid: 4008 components: - type: Transform - pos: 33.5,56.5 + pos: 52.5,45.5 parent: 2 - uid: 4009 components: - type: Transform - pos: 33.5,55.5 + pos: 52.5,49.5 parent: 2 - uid: 4010 components: - type: Transform - pos: 33.5,57.5 + pos: 54.5,49.5 parent: 2 - uid: 4011 components: - type: Transform - pos: 33.5,54.5 + pos: 55.5,49.5 parent: 2 - uid: 4012 components: - type: Transform - pos: 32.5,55.5 + pos: 53.5,49.5 parent: 2 - uid: 4013 components: - type: Transform - pos: 34.5,55.5 + pos: 53.5,48.5 parent: 2 - uid: 4014 components: - type: Transform - pos: 34.5,57.5 + pos: 51.5,56.5 parent: 2 - uid: 4015 components: - type: Transform - pos: 35.5,55.5 + pos: 51.5,55.5 parent: 2 - uid: 4016 components: - type: Transform - pos: 35.5,56.5 + pos: 52.5,55.5 parent: 2 - uid: 4017 components: - type: Transform - pos: 35.5,57.5 + pos: 52.5,54.5 parent: 2 - uid: 4018 components: - type: Transform - pos: 34.5,56.5 + pos: 53.5,54.5 parent: 2 - uid: 4019 components: - type: Transform - pos: 35.5,58.5 + pos: 54.5,43.5 parent: 2 - uid: 4020 components: - type: Transform - pos: 37.5,58.5 + pos: 54.5,42.5 parent: 2 - uid: 4021 components: - type: Transform - pos: 36.5,58.5 + pos: 57.5,42.5 parent: 2 - uid: 4022 components: - type: Transform - pos: 37.5,57.5 + pos: 57.5,41.5 parent: 2 - uid: 4023 components: - type: Transform - pos: 39.5,57.5 + pos: 56.5,41.5 parent: 2 - uid: 4024 components: - type: Transform - pos: 38.5,57.5 + pos: 56.5,38.5 parent: 2 - uid: 4025 components: - type: Transform - pos: 39.5,58.5 + pos: 58.5,38.5 parent: 2 - uid: 4026 components: - type: Transform - pos: 40.5,58.5 + pos: 59.5,38.5 parent: 2 - uid: 4027 components: - type: Transform - pos: 40.5,59.5 + pos: 60.5,38.5 parent: 2 - uid: 4028 components: - type: Transform - pos: 13.5,45.5 + pos: 57.5,38.5 parent: 2 - uid: 4029 components: - type: Transform - pos: 13.5,43.5 + pos: 61.5,38.5 parent: 2 - uid: 4030 components: - type: Transform - pos: 13.5,44.5 + pos: 59.5,39.5 parent: 2 - uid: 4031 components: - type: Transform - pos: 14.5,43.5 + pos: 63.5,36.5 parent: 2 - uid: 4032 components: - type: Transform - pos: 16.5,44.5 + pos: 63.5,35.5 parent: 2 - uid: 4033 components: - type: Transform - pos: 16.5,45.5 + pos: 67.5,35.5 parent: 2 - uid: 4034 components: - type: Transform - pos: 17.5,45.5 + pos: 67.5,33.5 parent: 2 - uid: 4035 components: - type: Transform - pos: 17.5,46.5 + pos: 61.5,35.5 parent: 2 - uid: 4036 components: - type: Transform - pos: 19.5,47.5 + pos: 61.5,33.5 parent: 2 - uid: 4037 components: - type: Transform - pos: 21.5,47.5 + pos: 61.5,34.5 parent: 2 - uid: 4038 components: - type: Transform - pos: 22.5,47.5 + pos: 60.5,35.5 parent: 2 - uid: 4039 components: - type: Transform - pos: 20.5,47.5 + pos: 60.5,34.5 parent: 2 - uid: 4040 components: - type: Transform - pos: 21.5,48.5 + pos: 59.5,34.5 parent: 2 - uid: 4041 components: - type: Transform - pos: 23.5,48.5 + pos: 57.5,33.5 parent: 2 - uid: 4042 components: - type: Transform - pos: 24.5,48.5 + pos: 57.5,31.5 parent: 2 - uid: 4043 components: - type: Transform - pos: 22.5,48.5 + pos: 56.5,33.5 parent: 2 - uid: 4044 components: - type: Transform - pos: 21.5,46.5 + pos: 56.5,32.5 parent: 2 - uid: 4045 components: - type: Transform - pos: 20.5,46.5 + pos: 56.5,31.5 parent: 2 - uid: 4046 components: - type: Transform - pos: 22.5,46.5 + pos: 57.5,32.5 parent: 2 - uid: 4047 components: - type: Transform - pos: 26.5,47.5 + pos: 52.5,33.5 parent: 2 - uid: 4048 components: - type: Transform - pos: 26.5,46.5 + pos: 52.5,32.5 parent: 2 - uid: 4049 components: - type: Transform - pos: 27.5,46.5 + pos: 52.5,31.5 parent: 2 - uid: 4050 components: - type: Transform - pos: 28.5,46.5 + pos: 45.5,31.5 parent: 2 - uid: 4051 components: - type: Transform - pos: 28.5,47.5 + pos: 46.5,32.5 parent: 2 - uid: 4052 components: - type: Transform - pos: 30.5,47.5 + pos: 47.5,32.5 parent: 2 - uid: 4053 components: - type: Transform - pos: 29.5,47.5 + pos: 48.5,31.5 parent: 2 - uid: 4054 components: - type: Transform - pos: 29.5,45.5 + pos: 48.5,29.5 parent: 2 - uid: 4055 components: - type: Transform - pos: 30.5,45.5 + pos: 48.5,30.5 parent: 2 - uid: 4056 components: - type: Transform - pos: 30.5,46.5 + pos: 46.5,29.5 parent: 2 - uid: 4057 components: - type: Transform - pos: 31.5,46.5 + pos: 47.5,29.5 parent: 2 - uid: 4058 components: - type: Transform - pos: 30.5,44.5 + pos: 49.5,30.5 parent: 2 - uid: 4059 components: - type: Transform - pos: 32.5,43.5 + pos: 50.5,29.5 parent: 2 - uid: 4060 components: - type: Transform - pos: 34.5,43.5 + pos: 50.5,27.5 parent: 2 - uid: 4061 components: - type: Transform - pos: 33.5,43.5 + pos: 50.5,28.5 parent: 2 - uid: 4062 components: - type: Transform - pos: 34.5,42.5 + pos: 49.5,28.5 parent: 2 - uid: 4063 components: - type: Transform - pos: 33.5,42.5 + pos: 49.5,26.5 parent: 2 - uid: 4064 components: - type: Transform - pos: 33.5,46.5 + pos: 49.5,27.5 parent: 2 - uid: 4065 components: - type: Transform - pos: 34.5,46.5 + pos: 51.5,27.5 parent: 2 - uid: 4066 components: - type: Transform - pos: 33.5,45.5 + pos: 50.5,24.5 parent: 2 - uid: 4067 components: - type: Transform - pos: 33.5,44.5 + pos: 51.5,24.5 parent: 2 - uid: 4068 components: - type: Transform - pos: 34.5,44.5 + pos: 52.5,24.5 parent: 2 - uid: 4069 components: - type: Transform - pos: 35.5,44.5 + pos: 52.5,23.5 parent: 2 - uid: 4070 components: - type: Transform - pos: 36.5,44.5 + pos: 52.5,21.5 parent: 2 - uid: 4071 components: - type: Transform - pos: 35.5,45.5 + pos: 52.5,22.5 parent: 2 - uid: 4072 components: - type: Transform - pos: 37.5,44.5 + pos: 51.5,22.5 parent: 2 - uid: 4073 components: - type: Transform - pos: 37.5,42.5 + pos: 51.5,21.5 parent: 2 - uid: 4074 components: - type: Transform - pos: 37.5,41.5 + pos: 50.5,18.5 parent: 2 - uid: 4075 components: - type: Transform - pos: 37.5,40.5 + pos: 51.5,17.5 parent: 2 - uid: 4076 components: - type: Transform - pos: 37.5,39.5 + pos: 53.5,18.5 parent: 2 - uid: 4077 components: - type: Transform - pos: 37.5,43.5 + pos: 53.5,19.5 parent: 2 - uid: 4078 components: - type: Transform - pos: 36.5,40.5 + pos: 54.5,18.5 parent: 2 - uid: 4079 components: - type: Transform - pos: 36.5,39.5 + pos: 55.5,18.5 parent: 2 - uid: 4080 components: - type: Transform - pos: 37.5,38.5 + pos: 55.5,21.5 parent: 2 - uid: 4081 components: - type: Transform - pos: 35.5,37.5 + pos: 56.5,21.5 parent: 2 - uid: 4082 components: - type: Transform - pos: 36.5,37.5 + pos: 56.5,20.5 parent: 2 - uid: 4083 components: - type: Transform - pos: 38.5,37.5 + pos: 55.5,20.5 parent: 2 - uid: 4084 components: - type: Transform - pos: 38.5,35.5 + pos: 56.5,19.5 parent: 2 - uid: 4085 components: - type: Transform - pos: 38.5,34.5 + pos: 60.5,18.5 parent: 2 - uid: 4086 components: - type: Transform - pos: 38.5,36.5 + pos: 60.5,20.5 parent: 2 - uid: 4087 components: - type: Transform - pos: 37.5,35.5 + pos: 60.5,21.5 parent: 2 - uid: 4088 components: - type: Transform - pos: 37.5,33.5 + pos: 60.5,22.5 parent: 2 - uid: 4089 components: - type: Transform - pos: 37.5,32.5 + pos: 60.5,23.5 parent: 2 - uid: 4090 components: - type: Transform - pos: 37.5,31.5 + pos: 60.5,24.5 parent: 2 - uid: 4091 components: - type: Transform - pos: 37.5,34.5 + pos: 60.5,19.5 parent: 2 - uid: 4092 components: - type: Transform - pos: 36.5,34.5 + pos: 59.5,24.5 parent: 2 - uid: 4093 components: - type: Transform - pos: 36.5,33.5 + pos: 59.5,22.5 parent: 2 - uid: 4094 components: - type: Transform - pos: 39.5,31.5 + pos: 59.5,23.5 parent: 2 - uid: 4095 components: - type: Transform - pos: 38.5,31.5 + pos: 58.5,23.5 parent: 2 - uid: 4096 components: - type: Transform - pos: 40.5,32.5 + pos: 58.5,22.5 parent: 2 - uid: 4097 components: - type: Transform - pos: 41.5,32.5 + pos: 54.5,28.5 parent: 2 - uid: 4098 components: - type: Transform - pos: 41.5,33.5 + pos: 54.5,27.5 parent: 2 - uid: 4099 components: - type: Transform - pos: 42.5,34.5 + pos: 55.5,27.5 parent: 2 - uid: 4100 components: - type: Transform - pos: 43.5,34.5 + pos: 55.5,26.5 parent: 2 - uid: 4101 components: - type: Transform - pos: 44.5,33.5 + pos: 56.5,26.5 parent: 2 - uid: 4102 components: - type: Transform - pos: 44.5,32.5 + pos: 57.5,27.5 parent: 2 - uid: 4103 components: - type: Transform - pos: 45.5,33.5 + pos: 57.5,26.5 parent: 2 - uid: 4104 components: - type: Transform - pos: 45.5,32.5 + pos: 56.5,27.5 parent: 2 - uid: 4105 components: - type: Transform - pos: 43.5,38.5 + pos: 56.5,25.5 parent: 2 - uid: 4106 components: - type: Transform - pos: 42.5,37.5 + pos: 56.5,25.5 parent: 2 - uid: 4107 components: - type: Transform - pos: 45.5,38.5 + pos: 56.5,24.5 parent: 2 - uid: 4108 components: - type: Transform - pos: 46.5,37.5 + pos: 54.5,24.5 parent: 2 - uid: 4109 components: - type: Transform - pos: 47.5,37.5 + pos: 55.5,24.5 parent: 2 - uid: 4110 components: - type: Transform - pos: 48.5,37.5 + pos: 55.5,23.5 parent: 2 - uid: 4111 components: - type: Transform - pos: 49.5,37.5 + pos: 61.5,22.5 parent: 2 - uid: 4112 components: - type: Transform - pos: 50.5,38.5 + pos: 61.5,23.5 parent: 2 - uid: 4113 components: - type: Transform - pos: 50.5,39.5 + pos: 59.5,28.5 parent: 2 - uid: 4114 components: - type: Transform - pos: 38.5,44.5 + pos: 59.5,27.5 parent: 2 - uid: 4115 components: - type: Transform - pos: 38.5,43.5 + pos: 60.5,27.5 parent: 2 - uid: 4116 components: - type: Transform - pos: 38.5,42.5 + pos: 61.5,28.5 parent: 2 - uid: 4117 components: - type: Transform - pos: 39.5,45.5 + pos: 61.5,27.5 parent: 2 - uid: 4118 components: - type: Transform - pos: 41.5,45.5 + pos: 60.5,28.5 parent: 2 - uid: 4119 components: - type: Transform - pos: 40.5,45.5 + pos: 59.5,31.5 parent: 2 - uid: 4120 components: - type: Transform - pos: 41.5,46.5 + pos: 61.5,31.5 parent: 2 - uid: 4121 components: - type: Transform - pos: 43.5,45.5 + pos: 62.5,31.5 parent: 2 - uid: 4122 components: - type: Transform - pos: 43.5,43.5 + pos: 60.5,31.5 parent: 2 - uid: 4123 components: - type: Transform - pos: 43.5,42.5 + pos: 58.5,33.5 parent: 2 - uid: 4124 components: - type: Transform - pos: 43.5,44.5 + pos: 58.5,32.5 parent: 2 - uid: 4125 components: - type: Transform - pos: 44.5,44.5 + pos: 60.5,30.5 parent: 2 - uid: 4126 components: - type: Transform - pos: 44.5,42.5 + pos: 60.5,29.5 parent: 2 - uid: 4127 components: - type: Transform - pos: 44.5,43.5 + pos: 62.5,30.5 parent: 2 - uid: 4128 components: - type: Transform - pos: 45.5,44.5 + pos: 62.5,28.5 parent: 2 - uid: 4129 components: - type: Transform - pos: 45.5,42.5 + pos: 62.5,29.5 parent: 2 - uid: 4130 components: - type: Transform - pos: 46.5,42.5 + pos: 63.5,30.5 parent: 2 - uid: 4131 components: - type: Transform - pos: 46.5,43.5 + pos: 63.5,31.5 parent: 2 - uid: 4132 components: - type: Transform - pos: 46.5,41.5 + pos: 62.5,32.5 parent: 2 - uid: 4133 components: - type: Transform - pos: 48.5,41.5 + pos: 61.5,32.5 parent: 2 - uid: 4134 components: - type: Transform - pos: 49.5,41.5 + pos: 62.5,33.5 parent: 2 - uid: 4135 components: - type: Transform - pos: 47.5,41.5 + pos: 65.5,29.5 parent: 2 - uid: 4136 components: - type: Transform - pos: 51.5,44.5 + pos: 66.5,29.5 parent: 2 - uid: 4137 components: - type: Transform - pos: 51.5,42.5 + pos: 66.5,28.5 parent: 2 - uid: 4138 components: - type: Transform - pos: 52.5,44.5 + pos: 65.5,28.5 parent: 2 - uid: 4139 components: - type: Transform - pos: 51.5,43.5 + pos: 67.5,29.5 parent: 2 - uid: 4140 components: - type: Transform - pos: 52.5,42.5 + pos: 67.5,28.5 parent: 2 - uid: 4141 components: - type: Transform - pos: 52.5,43.5 + pos: 64.5,30.5 parent: 2 - uid: 4142 components: - type: Transform - pos: 50.5,47.5 + pos: 68.5,29.5 parent: 2 - uid: 4143 components: - type: Transform - pos: 50.5,45.5 + pos: 68.5,30.5 parent: 2 - uid: 4144 components: - type: Transform - pos: 50.5,46.5 + pos: 66.5,27.5 parent: 2 - uid: 4145 components: - type: Transform - pos: 51.5,46.5 + pos: 67.5,25.5 parent: 2 - uid: 4146 components: - type: Transform - pos: 51.5,45.5 + pos: 66.5,25.5 parent: 2 - uid: 4147 components: - type: Transform - pos: 52.5,45.5 + pos: 64.5,25.5 parent: 2 - uid: 4148 components: - type: Transform - pos: 52.5,49.5 + pos: 65.5,24.5 parent: 2 - uid: 4149 components: - type: Transform - pos: 54.5,49.5 + pos: 69.5,25.5 parent: 2 - uid: 4150 components: - type: Transform - pos: 55.5,49.5 + pos: 71.5,25.5 parent: 2 - uid: 4151 components: - type: Transform - pos: 53.5,49.5 + pos: 72.5,25.5 parent: 2 - uid: 4152 components: - type: Transform - pos: 53.5,48.5 + pos: 70.5,25.5 parent: 2 - uid: 4153 components: - type: Transform - pos: 51.5,56.5 + pos: 73.5,25.5 parent: 2 - uid: 4154 components: - type: Transform - pos: 51.5,55.5 + pos: 71.5,24.5 parent: 2 - uid: 4155 components: - type: Transform - pos: 52.5,55.5 + pos: 70.5,26.5 parent: 2 - uid: 4156 components: - type: Transform - pos: 52.5,54.5 + pos: 70.5,27.5 parent: 2 - uid: 4157 components: - type: Transform - pos: 53.5,54.5 + pos: 74.5,24.5 parent: 2 - uid: 4158 components: - type: Transform - pos: 54.5,43.5 + pos: 75.5,24.5 parent: 2 - uid: 4159 components: - type: Transform - pos: 54.5,42.5 + pos: 75.5,23.5 parent: 2 - uid: 4160 components: - type: Transform - pos: 57.5,42.5 + pos: 76.5,24.5 parent: 2 - uid: 4161 components: - type: Transform - pos: 57.5,41.5 + pos: 76.5,23.5 parent: 2 - uid: 4162 components: - type: Transform - pos: 56.5,41.5 + pos: 74.5,23.5 parent: 2 - uid: 4163 components: - type: Transform - pos: 56.5,38.5 + pos: 73.5,22.5 parent: 2 - uid: 4164 components: - type: Transform - pos: 58.5,38.5 + pos: 75.5,22.5 parent: 2 - uid: 4165 components: - type: Transform - pos: 59.5,38.5 + pos: 74.5,22.5 parent: 2 - uid: 4166 components: - type: Transform - pos: 60.5,38.5 + pos: 75.5,21.5 parent: 2 - uid: 4167 components: - type: Transform - pos: 57.5,38.5 + pos: 78.5,21.5 parent: 2 - uid: 4168 components: - type: Transform - pos: 61.5,38.5 + pos: 78.5,19.5 parent: 2 - uid: 4169 components: - type: Transform - pos: 59.5,39.5 + pos: 78.5,18.5 parent: 2 - uid: 4170 components: - type: Transform - pos: 63.5,36.5 + pos: 78.5,20.5 parent: 2 - uid: 4171 components: - type: Transform - pos: 63.5,35.5 + pos: 77.5,20.5 parent: 2 - uid: 4172 components: - type: Transform - pos: 67.5,35.5 + pos: 77.5,18.5 parent: 2 - uid: 4173 components: - type: Transform - pos: 67.5,33.5 + pos: 77.5,17.5 parent: 2 - uid: 4174 components: - type: Transform - pos: 61.5,35.5 + pos: 77.5,19.5 parent: 2 - uid: 4175 components: - type: Transform - pos: 61.5,33.5 + pos: 76.5,20.5 parent: 2 - uid: 4176 components: - type: Transform - pos: 61.5,34.5 + pos: 76.5,19.5 parent: 2 - uid: 4177 components: - type: Transform - pos: 60.5,35.5 + pos: 75.5,19.5 parent: 2 - uid: 4178 components: - type: Transform - pos: 60.5,34.5 + pos: 74.5,18.5 parent: 2 - uid: 4179 components: - type: Transform - pos: 59.5,34.5 + pos: 74.5,17.5 parent: 2 - uid: 4180 components: - type: Transform - pos: 57.5,33.5 + pos: 74.5,16.5 parent: 2 - uid: 4181 components: - type: Transform - pos: 57.5,31.5 + pos: 74.5,15.5 parent: 2 - uid: 4182 components: - type: Transform - pos: 56.5,33.5 + pos: 73.5,17.5 parent: 2 - uid: 4183 components: - type: Transform - pos: 56.5,32.5 + pos: 73.5,15.5 parent: 2 - uid: 4184 components: - type: Transform - pos: 56.5,31.5 + pos: 73.5,16.5 parent: 2 - uid: 4185 components: - type: Transform - pos: 57.5,32.5 + pos: 72.5,16.5 parent: 2 - uid: 4186 components: - type: Transform - pos: 52.5,33.5 + pos: 72.5,18.5 parent: 2 - uid: 4187 components: - type: Transform - pos: 52.5,32.5 + pos: 72.5,17.5 parent: 2 - uid: 4188 components: - type: Transform - pos: 52.5,31.5 + pos: 71.5,18.5 parent: 2 - uid: 4189 components: - type: Transform - pos: 45.5,31.5 + pos: 71.5,19.5 parent: 2 - uid: 4190 components: - type: Transform - pos: 46.5,32.5 + pos: 76.5,16.5 parent: 2 - uid: 4191 components: - type: Transform - pos: 47.5,32.5 + pos: 73.5,14.5 parent: 2 - uid: 4192 components: - type: Transform - pos: 48.5,31.5 + pos: 72.5,13.5 parent: 2 - uid: 4193 components: - type: Transform - pos: 48.5,29.5 + pos: 70.5,13.5 parent: 2 - uid: 4194 components: - type: Transform - pos: 48.5,30.5 + pos: 71.5,13.5 parent: 2 - uid: 4195 components: - type: Transform - pos: 46.5,29.5 + pos: 68.5,12.5 parent: 2 - uid: 4196 components: - type: Transform - pos: 47.5,29.5 + pos: 68.5,14.5 parent: 2 - uid: 4197 components: - type: Transform - pos: 49.5,30.5 + pos: 68.5,15.5 parent: 2 - uid: 4198 components: - type: Transform - pos: 50.5,29.5 + pos: 68.5,13.5 parent: 2 - uid: 4199 components: - type: Transform - pos: 50.5,27.5 + pos: 68.5,17.5 parent: 2 - uid: 4200 components: - type: Transform - pos: 50.5,28.5 + pos: 68.5,16.5 parent: 2 - uid: 4201 components: - type: Transform - pos: 49.5,28.5 + pos: 69.5,15.5 parent: 2 - uid: 4202 components: - type: Transform - pos: 49.5,26.5 + pos: 69.5,14.5 parent: 2 - uid: 4203 components: - type: Transform - pos: 49.5,27.5 + pos: 70.5,14.5 parent: 2 - uid: 4204 components: - type: Transform - pos: 51.5,27.5 + pos: 67.5,13.5 parent: 2 - uid: 4205 components: - type: Transform - pos: 50.5,24.5 + pos: 65.5,14.5 parent: 2 - uid: 4206 components: - type: Transform - pos: 51.5,24.5 + pos: 65.5,16.5 parent: 2 - uid: 4207 components: - type: Transform - pos: 52.5,24.5 + pos: 65.5,17.5 parent: 2 - uid: 4208 components: - type: Transform - pos: 52.5,23.5 + pos: 64.5,14.5 parent: 2 - uid: 4209 components: - type: Transform - pos: 52.5,21.5 + pos: 65.5,15.5 parent: 2 - uid: 4210 components: - type: Transform - pos: 52.5,22.5 + pos: 64.5,15.5 parent: 2 - uid: 4211 components: - type: Transform - pos: 51.5,22.5 + pos: 64.5,16.5 parent: 2 - uid: 4212 components: - type: Transform - pos: 51.5,21.5 + pos: 64.5,17.5 parent: 2 - uid: 4213 components: - type: Transform - pos: 50.5,18.5 + pos: 66.5,17.5 parent: 2 - uid: 4214 components: - type: Transform - pos: 51.5,17.5 + pos: 67.5,17.5 parent: 2 - uid: 4215 components: - type: Transform - pos: 53.5,18.5 + pos: 64.5,18.5 parent: 2 - uid: 4216 components: - type: Transform - pos: 53.5,19.5 + pos: 63.5,16.5 parent: 2 - uid: 4217 components: - type: Transform - pos: 54.5,18.5 + pos: 61.5,17.5 parent: 2 - uid: 4218 components: - type: Transform - pos: 55.5,18.5 + pos: 61.5,19.5 parent: 2 - uid: 4219 components: - type: Transform - pos: 55.5,21.5 + pos: 61.5,20.5 parent: 2 - uid: 4220 components: - type: Transform - pos: 56.5,21.5 + pos: 61.5,18.5 parent: 2 - uid: 4221 components: - type: Transform - pos: 56.5,20.5 + pos: 63.5,19.5 parent: 2 - uid: 4222 components: - type: Transform - pos: 55.5,20.5 + pos: 62.5,19.5 parent: 2 - uid: 4223 components: - type: Transform - pos: 56.5,19.5 + pos: 59.5,18.5 parent: 2 - uid: 4224 components: - type: Transform - pos: 60.5,18.5 + pos: 58.5,18.5 parent: 2 - uid: 4225 components: - type: Transform - pos: 60.5,20.5 + pos: 70.5,12.5 parent: 2 - uid: 4226 components: - type: Transform - pos: 60.5,21.5 + pos: 71.5,12.5 parent: 2 - uid: 4227 components: - type: Transform - pos: 60.5,22.5 + pos: 71.5,11.5 parent: 2 - uid: 4228 components: - type: Transform - pos: 60.5,23.5 + pos: 70.5,11.5 parent: 2 - uid: 4229 components: - type: Transform - pos: 60.5,24.5 + pos: 69.5,11.5 parent: 2 - uid: 4230 components: - type: Transform - pos: 60.5,19.5 + pos: 69.5,10.5 parent: 2 - uid: 4231 components: - type: Transform - pos: 59.5,24.5 + pos: 72.5,10.5 parent: 2 - uid: 4232 components: - type: Transform - pos: 59.5,22.5 + pos: 72.5,8.5 parent: 2 - uid: 4233 components: - type: Transform - pos: 59.5,23.5 + pos: 72.5,7.5 parent: 2 - uid: 4234 components: - type: Transform - pos: 58.5,23.5 + pos: 72.5,6.5 parent: 2 - uid: 4235 components: - type: Transform - pos: 58.5,22.5 + pos: 72.5,9.5 parent: 2 - uid: 4236 components: - type: Transform - pos: 54.5,28.5 + pos: 71.5,7.5 parent: 2 - uid: 4237 components: - type: Transform - pos: 54.5,27.5 + pos: 71.5,6.5 parent: 2 - uid: 4238 components: - type: Transform - pos: 55.5,27.5 + pos: 70.5,7.5 parent: 2 - uid: 4239 components: - type: Transform - pos: 55.5,26.5 + pos: 70.5,6.5 parent: 2 - uid: 4240 components: - type: Transform - pos: 56.5,26.5 + pos: 69.5,7.5 parent: 2 - uid: 4241 components: - type: Transform - pos: 57.5,27.5 + pos: 69.5,6.5 parent: 2 - uid: 4242 components: - type: Transform - pos: 57.5,26.5 + pos: 71.5,5.5 parent: 2 - uid: 4243 components: - type: Transform - pos: 56.5,27.5 + pos: 73.5,6.5 parent: 2 - uid: 4244 components: - type: Transform - pos: 56.5,25.5 + pos: 74.5,5.5 parent: 2 - uid: 4245 components: - type: Transform - pos: 56.5,25.5 + pos: 74.5,4.5 parent: 2 - uid: 4246 components: - type: Transform - pos: 56.5,24.5 + pos: 74.5,3.5 parent: 2 - uid: 4247 components: - type: Transform - pos: 54.5,24.5 + pos: 71.5,2.5 parent: 2 - uid: 4248 components: - type: Transform - pos: 55.5,24.5 + pos: 72.5,2.5 parent: 2 - uid: 4249 components: - type: Transform - pos: 55.5,23.5 + pos: 71.5,1.5 parent: 2 - uid: 4250 components: - type: Transform - pos: 61.5,22.5 + pos: 72.5,1.5 parent: 2 - uid: 4251 components: - type: Transform - pos: 61.5,23.5 + pos: 69.5,1.5 parent: 2 - uid: 4252 components: - type: Transform - pos: 59.5,28.5 + pos: 70.5,1.5 parent: 2 - uid: 4253 components: - type: Transform - pos: 59.5,27.5 + pos: 68.5,0.5 parent: 2 - uid: 4254 components: - type: Transform - pos: 60.5,27.5 + pos: 68.5,-0.5 parent: 2 - uid: 4255 components: - type: Transform - pos: 61.5,28.5 + pos: 68.5,-2.5 parent: 2 - uid: 4256 components: - type: Transform - pos: 61.5,27.5 + pos: 68.5,-1.5 parent: 2 - uid: 4257 components: - type: Transform - pos: 60.5,28.5 + pos: 68.5,-3.5 parent: 2 - uid: 4258 components: - type: Transform - pos: 59.5,31.5 + pos: 68.5,-4.5 parent: 2 - uid: 4259 components: - type: Transform - pos: 61.5,31.5 + pos: 69.5,-3.5 parent: 2 - uid: 4260 components: - type: Transform - pos: 62.5,31.5 + pos: 71.5,-3.5 parent: 2 - uid: 4261 components: - type: Transform - pos: 60.5,31.5 + pos: 72.5,-3.5 parent: 2 - uid: 4262 components: - type: Transform - pos: 58.5,33.5 + pos: 70.5,-3.5 parent: 2 - uid: 4263 components: - type: Transform - pos: 58.5,32.5 + pos: 72.5,-1.5 parent: 2 - uid: 4264 components: - type: Transform - pos: 60.5,30.5 + pos: 72.5,-2.5 parent: 2 - uid: 4265 components: - type: Transform - pos: 60.5,29.5 + pos: 73.5,-1.5 parent: 2 - uid: 4266 components: - type: Transform - pos: 62.5,30.5 + pos: 73.5,-2.5 parent: 2 - uid: 4267 components: - type: Transform - pos: 62.5,28.5 + pos: 72.5,0.5 parent: 2 - uid: 4268 components: - type: Transform - pos: 62.5,29.5 + pos: 72.5,-0.5 parent: 2 - uid: 4269 components: - type: Transform - pos: 63.5,30.5 + pos: 74.5,-2.5 parent: 2 - uid: 4270 components: - type: Transform - pos: 63.5,31.5 + pos: 75.5,-2.5 parent: 2 - uid: 4271 components: - type: Transform - pos: 62.5,32.5 + pos: 75.5,-3.5 parent: 2 - uid: 4272 components: - type: Transform - pos: 61.5,32.5 + pos: 75.5,-4.5 parent: 2 - uid: 4273 components: - type: Transform - pos: 62.5,33.5 + pos: 72.5,-4.5 parent: 2 - uid: 4274 components: - type: Transform - pos: 65.5,29.5 + pos: 73.5,-5.5 parent: 2 - uid: 4275 components: - type: Transform - pos: 66.5,29.5 + pos: 74.5,-5.5 parent: 2 - uid: 4276 components: - type: Transform - pos: 66.5,28.5 + pos: 78.5,-2.5 parent: 2 - uid: 4277 components: - type: Transform - pos: 65.5,28.5 + pos: 79.5,-2.5 parent: 2 - uid: 4278 components: - type: Transform - pos: 67.5,29.5 + pos: 79.5,-1.5 parent: 2 - uid: 4279 components: - type: Transform - pos: 67.5,28.5 + pos: 82.5,-0.5 parent: 2 - uid: 4280 components: - type: Transform - pos: 64.5,30.5 + pos: 84.5,-0.5 parent: 2 - uid: 4281 components: - type: Transform - pos: 68.5,29.5 + pos: 85.5,-0.5 parent: 2 - uid: 4282 components: - type: Transform - pos: 68.5,30.5 + pos: 83.5,-0.5 parent: 2 - uid: 4283 components: - type: Transform - pos: 66.5,27.5 + pos: 83.5,-1.5 parent: 2 - uid: 4284 components: - type: Transform - pos: 67.5,25.5 + pos: 85.5,-1.5 parent: 2 - uid: 4285 components: - type: Transform - pos: 66.5,25.5 + pos: 85.5,-3.5 parent: 2 - uid: 4286 components: - type: Transform - pos: 64.5,25.5 + pos: 85.5,-4.5 parent: 2 - uid: 4287 components: - type: Transform - pos: 65.5,24.5 + pos: 85.5,-2.5 parent: 2 - uid: 4288 components: - type: Transform - pos: 69.5,25.5 + pos: 83.5,-3.5 parent: 2 - uid: 4289 components: - type: Transform - pos: 71.5,25.5 + pos: 84.5,-3.5 parent: 2 - uid: 4290 components: - type: Transform - pos: 72.5,25.5 + pos: 85.5,-5.5 parent: 2 - uid: 4291 components: - type: Transform - pos: 70.5,25.5 + pos: 86.5,-3.5 parent: 2 - uid: 4292 components: - type: Transform - pos: 73.5,25.5 + pos: 87.5,-3.5 parent: 2 - uid: 4293 components: - type: Transform - pos: 71.5,24.5 + pos: 89.5,-0.5 parent: 2 - uid: 4294 components: - type: Transform - pos: 70.5,26.5 + pos: 89.5,-2.5 parent: 2 - uid: 4295 components: - type: Transform - pos: 70.5,27.5 + pos: 89.5,-3.5 parent: 2 - uid: 4296 components: - type: Transform - pos: 74.5,24.5 + pos: 89.5,-1.5 parent: 2 - uid: 4297 components: - type: Transform - pos: 75.5,24.5 + pos: 91.5,-1.5 parent: 2 - uid: 4298 components: - type: Transform - pos: 75.5,23.5 + pos: 91.5,-0.5 parent: 2 - uid: 4299 components: - type: Transform - pos: 76.5,24.5 + pos: 87.5,0.5 parent: 2 - uid: 4300 components: - type: Transform - pos: 76.5,23.5 + pos: 87.5,1.5 parent: 2 - uid: 4301 components: - type: Transform - pos: 74.5,23.5 + pos: 88.5,1.5 parent: 2 - uid: 4302 components: - type: Transform - pos: 73.5,22.5 + pos: 87.5,3.5 parent: 2 - uid: 4303 components: - type: Transform - pos: 75.5,22.5 + pos: 87.5,5.5 parent: 2 - uid: 4304 components: - type: Transform - pos: 74.5,22.5 + pos: 87.5,4.5 parent: 2 - uid: 4305 components: - type: Transform - pos: 75.5,21.5 + pos: 86.5,4.5 parent: 2 - uid: 4306 components: - type: Transform - pos: 78.5,21.5 + pos: 89.5,3.5 parent: 2 - uid: 4307 components: - type: Transform - pos: 78.5,19.5 + pos: 91.5,3.5 parent: 2 - uid: 4308 components: - type: Transform - pos: 78.5,18.5 + pos: 90.5,3.5 parent: 2 - uid: 4309 components: - type: Transform - pos: 78.5,20.5 + pos: 91.5,4.5 parent: 2 - uid: 4310 components: - type: Transform - pos: 77.5,20.5 + pos: 92.5,4.5 parent: 2 - uid: 4311 components: - type: Transform - pos: 77.5,18.5 + pos: 94.5,4.5 parent: 2 - uid: 4312 components: - type: Transform - pos: 77.5,17.5 + pos: 95.5,4.5 parent: 2 - uid: 4313 components: - type: Transform - pos: 77.5,19.5 + pos: 95.5,5.5 parent: 2 - uid: 4314 components: - type: Transform - pos: 76.5,20.5 + pos: 95.5,6.5 parent: 2 - uid: 4315 components: - type: Transform - pos: 76.5,19.5 + pos: 96.5,6.5 parent: 2 - uid: 4316 components: - type: Transform - pos: 75.5,19.5 + pos: 98.5,6.5 parent: 2 - uid: 4317 components: - type: Transform - pos: 74.5,18.5 + pos: 97.5,6.5 parent: 2 - uid: 4318 components: - type: Transform - pos: 74.5,17.5 + pos: 99.5,6.5 parent: 2 - uid: 4319 components: - type: Transform - pos: 74.5,16.5 + pos: 100.5,6.5 parent: 2 - uid: 4320 components: - type: Transform - pos: 74.5,15.5 + pos: 101.5,6.5 parent: 2 - uid: 4321 components: - type: Transform - pos: 73.5,17.5 + pos: 98.5,7.5 parent: 2 - uid: 4322 components: - type: Transform - pos: 73.5,15.5 + pos: 99.5,7.5 parent: 2 - uid: 4323 components: - type: Transform - pos: 73.5,16.5 + pos: 100.5,7.5 parent: 2 - uid: 4324 components: - type: Transform - pos: 72.5,16.5 + pos: 94.5,2.5 parent: 2 - uid: 4325 components: - type: Transform - pos: 72.5,18.5 + pos: 94.5,1.5 parent: 2 - uid: 4326 components: - type: Transform - pos: 72.5,17.5 + pos: 95.5,1.5 parent: 2 - uid: 4327 components: - type: Transform - pos: 71.5,18.5 + pos: 95.5,2.5 parent: 2 - uid: 4328 components: - type: Transform - pos: 71.5,19.5 + pos: 95.5,0.5 parent: 2 - uid: 4329 components: - type: Transform - pos: 76.5,16.5 + pos: 97.5,0.5 parent: 2 - uid: 4330 components: - type: Transform - pos: 73.5,14.5 + pos: 98.5,0.5 parent: 2 - uid: 4331 components: - type: Transform - pos: 72.5,13.5 + pos: 96.5,0.5 parent: 2 - uid: 4332 components: - type: Transform - pos: 70.5,13.5 + pos: 99.5,0.5 parent: 2 - uid: 4333 components: - type: Transform - pos: 71.5,13.5 + pos: 100.5,0.5 parent: 2 - uid: 4334 components: - type: Transform - pos: 68.5,12.5 + pos: 101.5,0.5 parent: 2 - uid: 4335 components: - type: Transform - pos: 68.5,14.5 + pos: 96.5,-0.5 parent: 2 - uid: 4336 components: - type: Transform - pos: 68.5,15.5 + pos: 98.5,-0.5 parent: 2 - uid: 4337 components: - type: Transform - pos: 68.5,13.5 + pos: 99.5,-0.5 parent: 2 - uid: 4338 components: - type: Transform - pos: 68.5,17.5 + pos: 97.5,-0.5 parent: 2 - uid: 4339 components: - type: Transform - pos: 68.5,16.5 + pos: 100.5,-0.5 parent: 2 - uid: 4340 components: - type: Transform - pos: 69.5,15.5 + pos: 102.5,1.5 parent: 2 - uid: 4341 components: - type: Transform - pos: 69.5,14.5 + pos: 102.5,3.5 parent: 2 - uid: 4342 components: - type: Transform - pos: 70.5,14.5 + pos: 102.5,4.5 parent: 2 - uid: 4343 components: - type: Transform - pos: 67.5,13.5 + pos: 103.5,1.5 parent: 2 - uid: 4344 components: - type: Transform - pos: 65.5,14.5 + pos: 102.5,2.5 parent: 2 - uid: 4345 components: - type: Transform - pos: 65.5,16.5 + pos: 103.5,2.5 parent: 2 - uid: 4346 components: - type: Transform - pos: 65.5,17.5 + pos: 103.5,3.5 parent: 2 - uid: 4347 components: - type: Transform - pos: 64.5,14.5 + pos: 103.5,4.5 parent: 2 - uid: 4348 components: - type: Transform - pos: 65.5,15.5 + pos: 102.5,5.5 parent: 2 - uid: 4349 components: - type: Transform - pos: 64.5,15.5 + pos: 94.5,-5.5 parent: 2 - uid: 4350 components: - type: Transform - pos: 64.5,16.5 + pos: 94.5,-6.5 parent: 2 - uid: 4351 components: - type: Transform - pos: 64.5,17.5 + pos: 101.5,-7.5 parent: 2 - uid: 4352 components: - type: Transform - pos: 66.5,17.5 + pos: 103.5,-7.5 parent: 2 - uid: 4353 components: - type: Transform - pos: 67.5,17.5 + pos: 102.5,-7.5 parent: 2 - uid: 4354 components: - type: Transform - pos: 64.5,18.5 + pos: 106.5,-6.5 parent: 2 - uid: 4355 components: - type: Transform - pos: 63.5,16.5 + pos: 109.5,-4.5 parent: 2 - uid: 4356 components: - type: Transform - pos: 61.5,17.5 + pos: 110.5,-2.5 parent: 2 - uid: 4357 components: - type: Transform - pos: 61.5,19.5 + pos: 101.5,-11.5 parent: 2 - uid: 4358 components: - type: Transform - pos: 61.5,20.5 + pos: 101.5,-13.5 parent: 2 - uid: 4359 components: - type: Transform - pos: 61.5,18.5 + pos: 101.5,-12.5 parent: 2 - uid: 4360 components: - type: Transform - pos: 63.5,19.5 + pos: 96.5,-13.5 parent: 2 - uid: 4361 components: - type: Transform - pos: 62.5,19.5 + pos: 96.5,-15.5 parent: 2 - uid: 4362 components: - type: Transform - pos: 59.5,18.5 + pos: 96.5,-16.5 parent: 2 - uid: 4363 components: - type: Transform - pos: 58.5,18.5 + pos: 96.5,-14.5 parent: 2 - uid: 4364 components: - type: Transform - pos: 70.5,12.5 + pos: 97.5,-13.5 parent: 2 - uid: 4365 components: - type: Transform - pos: 71.5,12.5 + pos: 96.5,-17.5 parent: 2 - uid: 4366 components: - type: Transform - pos: 71.5,11.5 + pos: 97.5,-14.5 parent: 2 - uid: 4367 components: - type: Transform - pos: 70.5,11.5 + pos: 97.5,-15.5 parent: 2 - uid: 4368 components: - type: Transform - pos: 69.5,11.5 + pos: 97.5,-16.5 parent: 2 - uid: 4369 components: - type: Transform - pos: 69.5,10.5 + pos: 98.5,-14.5 parent: 2 - uid: 4370 components: - type: Transform - pos: 72.5,10.5 + pos: 97.5,-17.5 parent: 2 - uid: 4371 components: - type: Transform - pos: 72.5,8.5 + pos: 98.5,-15.5 parent: 2 - uid: 4372 components: - type: Transform - pos: 72.5,7.5 + pos: 98.5,-16.5 parent: 2 - uid: 4373 components: - type: Transform - pos: 72.5,6.5 + pos: 98.5,-17.5 parent: 2 - uid: 4374 components: - type: Transform - pos: 72.5,9.5 + pos: 99.5,-13.5 parent: 2 - uid: 4375 components: - type: Transform - pos: 71.5,7.5 + pos: 99.5,-14.5 parent: 2 - uid: 4376 components: - type: Transform - pos: 71.5,6.5 + pos: 98.5,-13.5 parent: 2 - uid: 4377 components: - type: Transform - pos: 70.5,7.5 + pos: 99.5,-15.5 parent: 2 - uid: 4378 components: - type: Transform - pos: 70.5,6.5 + pos: 99.5,-16.5 parent: 2 - uid: 4379 components: - type: Transform - pos: 69.5,7.5 + pos: 100.5,-13.5 parent: 2 - uid: 4380 components: - type: Transform - pos: 69.5,6.5 + pos: 100.5,-14.5 parent: 2 - uid: 4381 components: - type: Transform - pos: 71.5,5.5 + pos: 99.5,-17.5 parent: 2 - uid: 4382 components: - type: Transform - pos: 73.5,6.5 + pos: 100.5,-15.5 parent: 2 - uid: 4383 components: - type: Transform - pos: 74.5,5.5 + pos: 100.5,-16.5 parent: 2 - uid: 4384 components: - type: Transform - pos: 74.5,4.5 + pos: 100.5,-17.5 parent: 2 - uid: 4385 components: - type: Transform - pos: 74.5,3.5 + pos: 102.5,-16.5 parent: 2 - uid: 4386 components: - type: Transform - pos: 71.5,2.5 + pos: 99.5,-18.5 parent: 2 - uid: 4387 components: - type: Transform - pos: 72.5,2.5 + pos: 98.5,-18.5 parent: 2 - uid: 4388 components: - type: Transform - pos: 71.5,1.5 + pos: 97.5,-18.5 parent: 2 - uid: 4389 components: - type: Transform - pos: 72.5,1.5 + pos: 96.5,-18.5 parent: 2 - uid: 4390 components: - type: Transform - pos: 69.5,1.5 + pos: 95.5,-18.5 parent: 2 - uid: 4391 components: - type: Transform - pos: 70.5,1.5 + pos: 94.5,-18.5 parent: 2 - uid: 4392 components: - type: Transform - pos: 68.5,0.5 + pos: 94.5,-16.5 parent: 2 - uid: 4393 components: - type: Transform - pos: 68.5,-0.5 + pos: 95.5,-16.5 parent: 2 - uid: 4394 components: - type: Transform - pos: 68.5,-2.5 + pos: 95.5,-17.5 parent: 2 - uid: 4395 components: - type: Transform - pos: 68.5,-1.5 + pos: 94.5,-17.5 parent: 2 - uid: 4396 components: - type: Transform - pos: 68.5,-3.5 + pos: 92.5,-14.5 parent: 2 - uid: 4397 components: - type: Transform - pos: 68.5,-4.5 + pos: 92.5,-15.5 parent: 2 - uid: 4398 components: - type: Transform - pos: 69.5,-3.5 + pos: 92.5,-16.5 parent: 2 - uid: 4399 components: - type: Transform - pos: 71.5,-3.5 + pos: 93.5,-14.5 parent: 2 - uid: 4400 components: - type: Transform - pos: 72.5,-3.5 + pos: 93.5,-15.5 parent: 2 - uid: 4401 components: - type: Transform - pos: 70.5,-3.5 + pos: 93.5,-16.5 parent: 2 - uid: 4402 components: - type: Transform - pos: 72.5,-1.5 + pos: 91.5,-18.5 parent: 2 - uid: 4403 components: - type: Transform - pos: 72.5,-2.5 + pos: 91.5,-16.5 parent: 2 - uid: 4404 components: - type: Transform - pos: 73.5,-1.5 + pos: 91.5,-15.5 parent: 2 - uid: 4405 components: - type: Transform - pos: 73.5,-2.5 + pos: 91.5,-14.5 parent: 2 - uid: 4406 components: - type: Transform - pos: 72.5,0.5 + pos: 91.5,-17.5 parent: 2 - uid: 4407 components: - type: Transform - pos: 72.5,-0.5 + pos: 90.5,-16.5 parent: 2 - uid: 4408 components: - type: Transform - pos: 74.5,-2.5 + pos: 90.5,-18.5 parent: 2 - uid: 4409 components: - type: Transform - pos: 75.5,-2.5 + pos: 90.5,-19.5 parent: 2 - uid: 4410 components: - type: Transform - pos: 75.5,-3.5 + pos: 90.5,-20.5 parent: 2 - uid: 4411 components: - type: Transform - pos: 75.5,-4.5 + pos: 90.5,-17.5 parent: 2 - uid: 4412 components: - type: Transform - pos: 72.5,-4.5 + pos: 91.5,-19.5 parent: 2 - uid: 4413 components: - type: Transform - pos: 73.5,-5.5 + pos: 92.5,-19.5 parent: 2 - uid: 4414 components: - type: Transform - pos: 74.5,-5.5 + pos: 92.5,-20.5 parent: 2 - uid: 4415 components: - type: Transform - pos: 78.5,-2.5 + pos: 93.5,-19.5 parent: 2 - uid: 4416 components: - type: Transform - pos: 79.5,-2.5 + pos: 91.5,-20.5 parent: 2 - uid: 4417 components: - type: Transform - pos: 79.5,-1.5 + pos: 93.5,-20.5 parent: 2 - uid: 4418 components: - type: Transform - pos: 82.5,-0.5 + pos: 94.5,-20.5 parent: 2 - uid: 4419 components: - type: Transform - pos: 84.5,-0.5 + pos: 94.5,-19.5 parent: 2 - uid: 4420 components: - type: Transform - pos: 85.5,-0.5 + pos: 95.5,-19.5 parent: 2 - uid: 4421 components: - type: Transform - pos: 83.5,-0.5 + pos: 97.5,-19.5 parent: 2 - uid: 4422 components: - type: Transform - pos: 83.5,-1.5 + pos: 98.5,-19.5 parent: 2 - uid: 4423 components: - type: Transform - pos: 85.5,-1.5 + pos: 96.5,-19.5 parent: 2 - uid: 4424 components: - type: Transform - pos: 85.5,-3.5 + pos: 98.5,-20.5 parent: 2 - uid: 4425 components: - type: Transform - pos: 85.5,-4.5 + pos: 98.5,-21.5 parent: 2 - uid: 4426 components: - type: Transform - pos: 85.5,-2.5 + pos: 98.5,-23.5 parent: 2 - uid: 4427 components: - type: Transform - pos: 83.5,-3.5 + pos: 98.5,-24.5 parent: 2 - uid: 4428 components: - type: Transform - pos: 84.5,-3.5 + pos: 98.5,-25.5 parent: 2 - uid: 4429 components: - type: Transform - pos: 85.5,-5.5 + pos: 98.5,-22.5 parent: 2 - uid: 4430 components: - type: Transform - pos: 86.5,-3.5 + pos: 98.5,-26.5 parent: 2 - uid: 4431 components: - type: Transform - pos: 87.5,-3.5 + pos: 98.5,-27.5 parent: 2 - uid: 4432 components: - type: Transform - pos: 89.5,-0.5 + pos: 99.5,-20.5 parent: 2 - uid: 4433 components: - type: Transform - pos: 89.5,-2.5 + pos: 99.5,-22.5 parent: 2 - uid: 4434 components: - type: Transform - pos: 89.5,-3.5 + pos: 99.5,-23.5 parent: 2 - uid: 4435 components: - type: Transform - pos: 89.5,-1.5 + pos: 99.5,-21.5 parent: 2 - uid: 4436 components: - type: Transform - pos: 91.5,-1.5 + pos: 99.5,-24.5 parent: 2 - uid: 4437 components: - type: Transform - pos: 91.5,-0.5 + pos: 99.5,-25.5 parent: 2 - uid: 4438 components: - type: Transform - pos: 87.5,0.5 + pos: 99.5,-27.5 parent: 2 - uid: 4439 components: - type: Transform - pos: 87.5,1.5 + pos: 99.5,-26.5 parent: 2 - uid: 4440 components: - type: Transform - pos: 88.5,1.5 + pos: 100.5,-22.5 parent: 2 - uid: 4441 components: - type: Transform - pos: 87.5,3.5 + pos: 100.5,-23.5 parent: 2 - uid: 4442 components: - type: Transform - pos: 87.5,5.5 + pos: 101.5,-22.5 parent: 2 - uid: 4443 components: - type: Transform - pos: 87.5,4.5 + pos: 101.5,-23.5 parent: 2 - uid: 4444 components: - type: Transform - pos: 86.5,4.5 + pos: 102.5,-22.5 parent: 2 - uid: 4445 components: - type: Transform - pos: 89.5,3.5 + pos: 102.5,-23.5 parent: 2 - uid: 4446 components: - type: Transform - pos: 91.5,3.5 + pos: 100.5,-20.5 parent: 2 - uid: 4447 components: - type: Transform - pos: 90.5,3.5 + pos: 102.5,-20.5 parent: 2 - uid: 4448 components: - type: Transform - pos: 91.5,4.5 + pos: 101.5,-20.5 parent: 2 - uid: 4449 components: - type: Transform - pos: 92.5,4.5 + pos: 95.5,-24.5 parent: 2 - uid: 4450 components: - type: Transform - pos: 94.5,4.5 + pos: 95.5,-25.5 parent: 2 - uid: 4451 components: - type: Transform - pos: 95.5,4.5 + pos: 96.5,-24.5 parent: 2 - uid: 4452 components: - type: Transform - pos: 95.5,5.5 + pos: 97.5,-24.5 parent: 2 - uid: 4453 components: - type: Transform - pos: 95.5,6.5 + pos: 96.5,-27.5 parent: 2 - uid: 4454 components: - type: Transform - pos: 96.5,6.5 + pos: 97.5,-27.5 parent: 2 - uid: 4455 components: - type: Transform - pos: 98.5,6.5 + pos: 97.5,-28.5 parent: 2 - uid: 4456 components: - type: Transform - pos: 97.5,6.5 + pos: 100.5,-27.5 parent: 2 - uid: 4457 components: - type: Transform - pos: 99.5,6.5 + pos: 100.5,-29.5 parent: 2 - uid: 4458 components: - type: Transform - pos: 100.5,6.5 + pos: 100.5,-30.5 parent: 2 - uid: 4459 components: - type: Transform - pos: 101.5,6.5 + pos: 100.5,-28.5 parent: 2 - uid: 4460 components: - type: Transform - pos: 98.5,7.5 + pos: 101.5,-27.5 parent: 2 - uid: 4461 components: - type: Transform - pos: 99.5,7.5 + pos: 103.5,-27.5 parent: 2 - uid: 4462 components: - type: Transform - pos: 100.5,7.5 + pos: 102.5,-27.5 parent: 2 - uid: 4463 components: - type: Transform - pos: 94.5,2.5 + pos: 101.5,-29.5 parent: 2 - uid: 4464 components: - type: Transform - pos: 94.5,1.5 + pos: 102.5,-29.5 parent: 2 - uid: 4465 components: - type: Transform - pos: 95.5,1.5 + pos: 102.5,-28.5 parent: 2 - uid: 4466 components: - type: Transform - pos: 95.5,2.5 + pos: 103.5,-28.5 parent: 2 - uid: 4467 components: - type: Transform - pos: 95.5,0.5 + pos: 103.5,-29.5 parent: 2 - uid: 4468 components: - type: Transform - pos: 97.5,0.5 + pos: 100.5,-33.5 parent: 2 - uid: 4469 components: - type: Transform - pos: 98.5,0.5 + pos: 100.5,-34.5 parent: 2 - uid: 4470 components: - type: Transform - pos: 96.5,0.5 + pos: 101.5,-33.5 parent: 2 - uid: 4471 components: - type: Transform - pos: 99.5,0.5 + pos: 101.5,-34.5 parent: 2 - uid: 4472 components: - type: Transform - pos: 100.5,0.5 + pos: 102.5,-33.5 parent: 2 - uid: 4473 components: - type: Transform - pos: 101.5,0.5 + pos: 102.5,-34.5 parent: 2 - uid: 4474 components: - type: Transform - pos: 96.5,-0.5 + pos: 100.5,-35.5 parent: 2 - uid: 4475 components: - type: Transform - pos: 98.5,-0.5 + pos: 100.5,-36.5 parent: 2 - uid: 4476 components: - type: Transform - pos: 99.5,-0.5 + pos: 100.5,-37.5 parent: 2 - uid: 4477 components: - type: Transform - pos: 97.5,-0.5 + pos: 101.5,-37.5 parent: 2 - uid: 4478 components: - type: Transform - pos: 100.5,-0.5 + pos: 102.5,-37.5 parent: 2 - uid: 4479 components: - type: Transform - pos: 102.5,1.5 + pos: 103.5,-37.5 parent: 2 - uid: 4480 components: - type: Transform - pos: 102.5,3.5 + pos: 87.5,-42.5 parent: 2 - uid: 4481 components: - type: Transform - pos: 102.5,4.5 + pos: 87.5,-44.5 parent: 2 - uid: 4482 components: - type: Transform - pos: 103.5,1.5 + pos: 87.5,-43.5 parent: 2 - uid: 4483 components: - type: Transform - pos: 102.5,2.5 + pos: 88.5,-42.5 parent: 2 - uid: 4484 components: - type: Transform - pos: 103.5,2.5 + pos: 90.5,-42.5 parent: 2 - uid: 4485 components: - type: Transform - pos: 103.5,3.5 + pos: 89.5,-42.5 parent: 2 - uid: 4486 components: - type: Transform - pos: 103.5,4.5 + pos: 91.5,-42.5 parent: 2 - uid: 4487 components: - type: Transform - pos: 102.5,5.5 + pos: 91.5,-43.5 parent: 2 - uid: 4488 components: - type: Transform - pos: 94.5,-5.5 + pos: 90.5,-43.5 parent: 2 - uid: 4489 components: - type: Transform - pos: 94.5,-6.5 + pos: 90.5,-44.5 parent: 2 - uid: 4490 components: - type: Transform - pos: 101.5,-7.5 + pos: 91.5,-44.5 parent: 2 - uid: 4491 components: - type: Transform - pos: 103.5,-7.5 + pos: 92.5,-44.5 parent: 2 - uid: 4492 components: - type: Transform - pos: 102.5,-7.5 + pos: 92.5,-45.5 parent: 2 - uid: 4493 components: - type: Transform - pos: 106.5,-6.5 + pos: 93.5,-44.5 parent: 2 - uid: 4494 components: - type: Transform - pos: 109.5,-4.5 + pos: 92.5,-41.5 parent: 2 - uid: 4495 components: - type: Transform - pos: 110.5,-2.5 + pos: 92.5,-39.5 parent: 2 - uid: 4496 components: - type: Transform - pos: 101.5,-11.5 + pos: 92.5,-38.5 parent: 2 - uid: 4497 components: - type: Transform - pos: 101.5,-13.5 + pos: 92.5,-40.5 parent: 2 - uid: 4498 components: - type: Transform - pos: 101.5,-12.5 + pos: 93.5,-41.5 parent: 2 - uid: 4499 components: - type: Transform - pos: 96.5,-13.5 + pos: 93.5,-40.5 parent: 2 - uid: 4500 components: - type: Transform - pos: 96.5,-15.5 + pos: 93.5,-39.5 parent: 2 - uid: 4501 components: - type: Transform - pos: 96.5,-16.5 + pos: 93.5,-38.5 parent: 2 - uid: 4502 components: - type: Transform - pos: 96.5,-14.5 + pos: 94.5,-41.5 parent: 2 - uid: 4503 components: - type: Transform - pos: 97.5,-13.5 + pos: 94.5,-40.5 parent: 2 - uid: 4504 components: - type: Transform - pos: 96.5,-17.5 + pos: 94.5,-38.5 parent: 2 - uid: 4505 components: - type: Transform - pos: 97.5,-14.5 + pos: 94.5,-39.5 parent: 2 - uid: 4506 components: - type: Transform - pos: 97.5,-15.5 + pos: 91.5,-38.5 parent: 2 - uid: 4507 components: - type: Transform - pos: 97.5,-16.5 + pos: 91.5,-39.5 parent: 2 - uid: 4508 components: - type: Transform - pos: 98.5,-14.5 + pos: 92.5,-37.5 parent: 2 - uid: 4509 components: - type: Transform - pos: 97.5,-17.5 + pos: 90.5,-38.5 parent: 2 - uid: 4510 components: - type: Transform - pos: 98.5,-15.5 + pos: 92.5,-35.5 parent: 2 - uid: 4511 components: - type: Transform - pos: 98.5,-16.5 + pos: 92.5,-34.5 parent: 2 - uid: 4512 components: - type: Transform - pos: 98.5,-17.5 + pos: 93.5,-37.5 parent: 2 - uid: 4513 components: - type: Transform - pos: 99.5,-13.5 + pos: 93.5,-36.5 parent: 2 - uid: 4514 components: - type: Transform - pos: 99.5,-14.5 + pos: 93.5,-35.5 parent: 2 - uid: 4515 components: - type: Transform - pos: 98.5,-13.5 + pos: 93.5,-34.5 parent: 2 - uid: 4516 components: - type: Transform - pos: 99.5,-15.5 + pos: 92.5,-36.5 parent: 2 - uid: 4517 components: - type: Transform - pos: 99.5,-16.5 + pos: 92.5,-32.5 parent: 2 - uid: 4518 components: - type: Transform - pos: 100.5,-13.5 + pos: 92.5,-33.5 parent: 2 - uid: 4519 components: - type: Transform - pos: 100.5,-14.5 + pos: 91.5,-33.5 parent: 2 - uid: 4520 components: - type: Transform - pos: 99.5,-17.5 + pos: 91.5,-35.5 parent: 2 - uid: 4521 components: - type: Transform - pos: 100.5,-15.5 + pos: 91.5,-34.5 parent: 2 - uid: 4522 components: - type: Transform - pos: 100.5,-16.5 + pos: 90.5,-35.5 parent: 2 - uid: 4523 components: - type: Transform - pos: 100.5,-17.5 + pos: 89.5,-36.5 parent: 2 - uid: 4524 components: - type: Transform - pos: 102.5,-16.5 + pos: 89.5,-37.5 parent: 2 - uid: 4525 components: - type: Transform - pos: 99.5,-18.5 + pos: 94.5,-34.5 parent: 2 - uid: 4526 components: - type: Transform - pos: 98.5,-18.5 + pos: 95.5,-34.5 parent: 2 - uid: 4527 components: - type: Transform - pos: 97.5,-18.5 + pos: 95.5,-35.5 parent: 2 - uid: 4528 components: - type: Transform - pos: 96.5,-18.5 + pos: 96.5,-34.5 parent: 2 - uid: 4529 components: - type: Transform - pos: 95.5,-18.5 + pos: 94.5,-35.5 parent: 2 - uid: 4530 components: - type: Transform - pos: 94.5,-18.5 + pos: 96.5,-35.5 parent: 2 - uid: 4531 components: - type: Transform - pos: 94.5,-16.5 + pos: 95.5,-33.5 parent: 2 - uid: 4532 components: - type: Transform - pos: 95.5,-16.5 + pos: 96.5,-36.5 parent: 2 - uid: 4533 components: - type: Transform - pos: 95.5,-17.5 + pos: 96.5,-38.5 parent: 2 - uid: 4534 components: - type: Transform - pos: 94.5,-17.5 + pos: 96.5,-37.5 parent: 2 - uid: 4535 components: - type: Transform - pos: 92.5,-14.5 + pos: 95.5,-38.5 parent: 2 - uid: 4536 components: - type: Transform - pos: 92.5,-15.5 + pos: 95.5,-39.5 parent: 2 - uid: 4537 components: - type: Transform - pos: 92.5,-16.5 + pos: 83.5,-21.5 parent: 2 - uid: 4538 components: - type: Transform - pos: 93.5,-14.5 + pos: 83.5,-23.5 parent: 2 - uid: 4539 components: - type: Transform - pos: 93.5,-15.5 + pos: 83.5,-24.5 parent: 2 - uid: 4540 components: - type: Transform - pos: 93.5,-16.5 + pos: 83.5,-22.5 parent: 2 - uid: 4541 components: - type: Transform - pos: 91.5,-18.5 + pos: 83.5,-25.5 parent: 2 - uid: 4542 components: - type: Transform - pos: 91.5,-16.5 + pos: 83.5,-26.5 parent: 2 - uid: 4543 components: - type: Transform - pos: 91.5,-15.5 + pos: 84.5,-21.5 parent: 2 - uid: 4544 components: - type: Transform - pos: 91.5,-14.5 + pos: 84.5,-22.5 parent: 2 - uid: 4545 components: - type: Transform - pos: 91.5,-17.5 + pos: 84.5,-23.5 parent: 2 - uid: 4546 components: - type: Transform - pos: 90.5,-16.5 + pos: 84.5,-25.5 parent: 2 - uid: 4547 components: - type: Transform - pos: 90.5,-18.5 + pos: 84.5,-26.5 parent: 2 - uid: 4548 components: - type: Transform - pos: 90.5,-19.5 + pos: 85.5,-21.5 parent: 2 - uid: 4549 components: - type: Transform - pos: 90.5,-20.5 + pos: 84.5,-24.5 parent: 2 - uid: 4550 components: - type: Transform - pos: 90.5,-17.5 + pos: 85.5,-22.5 parent: 2 - uid: 4551 components: - type: Transform - pos: 91.5,-19.5 + pos: 85.5,-23.5 parent: 2 - uid: 4552 components: - type: Transform - pos: 92.5,-19.5 + pos: 85.5,-24.5 parent: 2 - uid: 4553 components: - type: Transform - pos: 92.5,-20.5 + pos: 85.5,-25.5 parent: 2 - uid: 4554 components: - type: Transform - pos: 93.5,-19.5 + pos: 85.5,-26.5 parent: 2 - uid: 4555 components: - type: Transform - pos: 91.5,-20.5 + pos: 85.5,-27.5 parent: 2 - uid: 4556 components: - type: Transform - pos: 93.5,-20.5 + pos: 84.5,-27.5 parent: 2 - uid: 4557 components: - type: Transform - pos: 94.5,-20.5 + pos: 79.5,-27.5 parent: 2 - uid: 4558 components: - type: Transform - pos: 94.5,-19.5 + pos: 79.5,-25.5 parent: 2 - uid: 4559 components: - type: Transform - pos: 95.5,-19.5 + pos: 80.5,-27.5 parent: 2 - uid: 4560 components: - type: Transform - pos: 97.5,-19.5 + pos: 80.5,-26.5 parent: 2 - uid: 4561 components: - type: Transform - pos: 98.5,-19.5 + pos: 80.5,-25.5 parent: 2 - uid: 4562 components: - type: Transform - pos: 96.5,-19.5 + pos: 79.5,-26.5 parent: 2 - uid: 4563 components: - type: Transform - pos: 98.5,-20.5 + pos: 81.5,-25.5 parent: 2 - uid: 4564 components: - type: Transform - pos: 98.5,-21.5 + pos: 82.5,-25.5 parent: 2 - uid: 4565 components: - type: Transform - pos: 98.5,-23.5 + pos: 82.5,-26.5 parent: 2 - uid: 4566 components: - type: Transform - pos: 98.5,-24.5 + pos: 81.5,-26.5 parent: 2 - uid: 4567 components: - type: Transform - pos: 98.5,-25.5 + pos: 79.5,-21.5 parent: 2 - uid: 4568 components: - type: Transform - pos: 98.5,-22.5 + pos: 79.5,-23.5 parent: 2 - uid: 4569 components: - type: Transform - pos: 98.5,-26.5 + pos: 79.5,-24.5 parent: 2 - uid: 4570 components: - type: Transform - pos: 98.5,-27.5 + pos: 79.5,-22.5 parent: 2 - uid: 4571 components: - type: Transform - pos: 99.5,-20.5 + pos: 80.5,-23.5 parent: 2 - uid: 4572 components: - type: Transform - pos: 99.5,-22.5 + pos: 80.5,-21.5 parent: 2 - uid: 4573 components: - type: Transform - pos: 99.5,-23.5 + pos: 80.5,-22.5 parent: 2 - uid: 4574 components: - type: Transform - pos: 99.5,-21.5 + pos: 78.5,-20.5 parent: 2 - uid: 4575 components: - type: Transform - pos: 99.5,-24.5 + pos: 78.5,-22.5 parent: 2 - uid: 4576 components: - type: Transform - pos: 99.5,-25.5 + pos: 78.5,-23.5 parent: 2 - uid: 4577 components: - type: Transform - pos: 99.5,-27.5 + pos: 78.5,-24.5 parent: 2 - uid: 4578 components: - type: Transform - pos: 99.5,-26.5 + pos: 78.5,-25.5 parent: 2 - uid: 4579 components: - type: Transform - pos: 100.5,-22.5 + pos: 78.5,-26.5 parent: 2 - uid: 4580 components: - type: Transform - pos: 100.5,-23.5 + pos: 78.5,-21.5 parent: 2 - uid: 4581 components: - type: Transform - pos: 101.5,-22.5 + pos: 75.5,-21.5 parent: 2 - uid: 4582 components: - type: Transform - pos: 101.5,-23.5 + pos: 75.5,-23.5 parent: 2 - uid: 4583 components: - type: Transform - pos: 102.5,-22.5 + pos: 75.5,-24.5 parent: 2 - uid: 4584 components: - type: Transform - pos: 102.5,-23.5 + pos: 75.5,-25.5 parent: 2 - uid: 4585 components: - type: Transform - pos: 100.5,-20.5 + pos: 76.5,-21.5 parent: 2 - uid: 4586 components: - type: Transform - pos: 102.5,-20.5 + pos: 76.5,-22.5 parent: 2 - uid: 4587 components: - type: Transform - pos: 101.5,-20.5 + pos: 76.5,-24.5 parent: 2 - uid: 4588 components: - type: Transform - pos: 95.5,-24.5 + pos: 75.5,-22.5 parent: 2 - uid: 4589 components: - type: Transform - pos: 95.5,-25.5 + pos: 76.5,-25.5 parent: 2 - uid: 4590 components: - type: Transform - pos: 96.5,-24.5 + pos: 77.5,-21.5 parent: 2 - uid: 4591 components: - type: Transform - pos: 97.5,-24.5 + pos: 77.5,-22.5 parent: 2 - uid: 4592 components: - type: Transform - pos: 96.5,-27.5 + pos: 76.5,-23.5 parent: 2 - uid: 4593 components: - type: Transform - pos: 97.5,-27.5 + pos: 77.5,-23.5 parent: 2 - uid: 4594 components: - type: Transform - pos: 97.5,-28.5 + pos: 77.5,-24.5 parent: 2 - uid: 4595 components: - type: Transform - pos: 100.5,-27.5 + pos: 77.5,-25.5 parent: 2 - uid: 4596 components: - type: Transform - pos: 100.5,-29.5 + pos: 77.5,-26.5 parent: 2 - uid: 4597 components: - type: Transform - pos: 100.5,-30.5 + pos: 74.5,-25.5 parent: 2 - uid: 4598 components: - type: Transform - pos: 100.5,-28.5 + pos: 73.5,-25.5 parent: 2 - uid: 4599 components: - type: Transform - pos: 101.5,-27.5 + pos: 74.5,-24.5 parent: 2 - uid: 4600 components: - type: Transform - pos: 103.5,-27.5 + pos: 73.5,-24.5 parent: 2 - uid: 4601 components: - type: Transform - pos: 102.5,-27.5 + pos: 72.5,-27.5 parent: 2 - uid: 4602 components: - type: Transform - pos: 101.5,-29.5 + pos: 71.5,-27.5 parent: 2 - uid: 4603 components: - type: Transform - pos: 102.5,-29.5 + pos: 71.5,-24.5 parent: 2 - uid: 4604 components: - type: Transform - pos: 102.5,-28.5 + pos: 71.5,-22.5 parent: 2 - uid: 4605 components: - type: Transform - pos: 103.5,-28.5 + pos: 71.5,-21.5 parent: 2 - uid: 4606 components: - type: Transform - pos: 103.5,-29.5 + pos: 72.5,-24.5 parent: 2 - uid: 4607 components: - type: Transform - pos: 100.5,-33.5 + pos: 72.5,-23.5 parent: 2 - uid: 4608 components: - type: Transform - pos: 100.5,-34.5 + pos: 71.5,-23.5 parent: 2 - uid: 4609 components: - type: Transform - pos: 101.5,-33.5 + pos: 72.5,-22.5 parent: 2 - uid: 4610 components: - type: Transform - pos: 101.5,-34.5 + pos: 72.5,-21.5 parent: 2 - uid: 4611 components: - type: Transform - pos: 102.5,-33.5 + pos: 74.5,-21.5 parent: 2 - uid: 4612 components: - type: Transform - pos: 102.5,-34.5 + pos: 73.5,-21.5 parent: 2 - uid: 4613 components: - type: Transform - pos: 100.5,-35.5 + pos: 74.5,-20.5 parent: 2 - uid: 4614 components: - type: Transform - pos: 100.5,-36.5 + pos: 70.5,-21.5 parent: 2 - uid: 4615 components: - type: Transform - pos: 100.5,-37.5 + pos: 70.5,-23.5 parent: 2 - uid: 4616 components: - type: Transform - pos: 101.5,-37.5 + pos: 70.5,-24.5 parent: 2 - uid: 4617 components: - type: Transform - pos: 102.5,-37.5 + pos: 69.5,-21.5 parent: 2 - uid: 4618 components: - type: Transform - pos: 103.5,-37.5 + pos: 69.5,-22.5 parent: 2 - uid: 4619 components: - type: Transform - pos: 87.5,-42.5 + pos: 69.5,-23.5 parent: 2 - uid: 4620 components: - type: Transform - pos: 87.5,-44.5 + pos: 69.5,-24.5 parent: 2 - uid: 4621 components: - type: Transform - pos: 87.5,-43.5 + pos: 70.5,-22.5 parent: 2 - uid: 4622 components: - type: Transform - pos: 88.5,-42.5 + pos: 70.5,-20.5 parent: 2 - uid: 4623 components: - type: Transform - pos: 90.5,-42.5 + pos: 69.5,-20.5 parent: 2 - uid: 4624 components: - type: Transform - pos: 89.5,-42.5 + pos: 69.5,-19.5 parent: 2 - uid: 4625 components: - type: Transform - pos: 91.5,-42.5 + pos: 66.5,-20.5 parent: 2 - uid: 4626 components: - type: Transform - pos: 91.5,-43.5 + pos: 67.5,-20.5 parent: 2 - uid: 4627 components: - type: Transform - pos: 90.5,-43.5 + pos: 67.5,-21.5 parent: 2 - uid: 4628 components: - type: Transform - pos: 90.5,-44.5 + pos: 66.5,-21.5 parent: 2 - uid: 4629 components: - type: Transform - pos: 91.5,-44.5 + pos: 68.5,-20.5 parent: 2 - uid: 4630 components: - type: Transform - pos: 92.5,-44.5 + pos: 68.5,-21.5 parent: 2 - uid: 4631 components: - type: Transform - pos: 92.5,-45.5 + pos: 66.5,-22.5 parent: 2 - uid: 4632 components: - type: Transform - pos: 93.5,-44.5 + pos: 66.5,-24.5 parent: 2 - uid: 4633 components: - type: Transform - pos: 92.5,-41.5 + pos: 66.5,-23.5 parent: 2 - uid: 4634 components: - type: Transform - pos: 92.5,-39.5 + pos: 86.5,-9.5 parent: 2 - uid: 4635 components: - type: Transform - pos: 92.5,-38.5 + pos: 67.5,-24.5 parent: 2 - uid: 4636 components: - type: Transform - pos: 92.5,-40.5 + pos: 68.5,-24.5 parent: 2 - uid: 4637 components: - type: Transform - pos: 93.5,-41.5 + pos: 66.5,-19.5 parent: 2 - uid: 4638 components: - type: Transform - pos: 93.5,-40.5 + pos: 66.5,-17.5 parent: 2 - uid: 4639 components: - type: Transform - pos: 93.5,-39.5 + pos: 66.5,-16.5 parent: 2 - uid: 4640 components: - type: Transform - pos: 93.5,-38.5 + pos: 66.5,-18.5 parent: 2 - uid: 4641 components: - type: Transform - pos: 94.5,-41.5 + pos: 65.5,-19.5 parent: 2 - uid: 4642 components: - type: Transform - pos: 94.5,-40.5 + pos: 65.5,-18.5 parent: 2 - uid: 4643 components: - type: Transform - pos: 94.5,-38.5 + pos: 65.5,-17.5 parent: 2 - uid: 4644 components: - type: Transform - pos: 94.5,-39.5 + pos: 65.5,-16.5 parent: 2 - uid: 4645 components: - type: Transform - pos: 91.5,-38.5 + pos: 67.5,-2.5 parent: 2 - uid: 4646 components: - type: Transform - pos: 91.5,-39.5 + pos: 67.5,-16.5 parent: 2 - uid: 4647 components: - type: Transform - pos: 92.5,-37.5 + pos: 68.5,-16.5 parent: 2 - uid: 4648 components: - type: Transform - pos: 90.5,-38.5 + pos: 68.5,-18.5 parent: 2 - uid: 4649 components: - type: Transform - pos: 92.5,-35.5 + pos: 68.5,-17.5 parent: 2 - uid: 4650 components: - type: Transform - pos: 92.5,-34.5 + pos: 68.5,-19.5 parent: 2 - uid: 4651 components: - type: Transform - pos: 93.5,-37.5 + pos: 65.5,-15.5 parent: 2 - uid: 4652 components: - type: Transform - pos: 93.5,-36.5 + pos: 65.5,-14.5 parent: 2 - uid: 4653 components: - type: Transform - pos: 93.5,-35.5 + pos: 65.5,-13.5 parent: 2 - uid: 4654 components: - type: Transform - pos: 93.5,-34.5 + pos: 64.5,-15.5 parent: 2 - uid: 4655 components: - type: Transform - pos: 92.5,-36.5 + pos: 64.5,-14.5 parent: 2 - uid: 4656 components: - type: Transform - pos: 92.5,-32.5 + pos: 64.5,-13.5 parent: 2 - uid: 4657 components: - type: Transform - pos: 92.5,-33.5 + pos: 65.5,-12.5 parent: 2 - uid: 4658 components: - type: Transform - pos: 91.5,-33.5 + pos: 65.5,-11.5 parent: 2 - uid: 4659 components: - type: Transform - pos: 91.5,-35.5 + pos: 66.5,-11.5 parent: 2 - uid: 4660 components: - type: Transform - pos: 91.5,-34.5 + pos: 67.5,-11.5 parent: 2 - uid: 4661 components: - type: Transform - pos: 90.5,-35.5 + pos: 67.5,-10.5 parent: 2 - uid: 4662 components: - type: Transform - pos: 89.5,-36.5 + pos: 66.5,-10.5 parent: 2 - uid: 4663 components: - type: Transform - pos: 89.5,-37.5 + pos: 68.5,-10.5 parent: 2 - uid: 4664 components: - type: Transform - pos: 94.5,-34.5 + pos: 68.5,-11.5 parent: 2 - uid: 4665 components: - type: Transform - pos: 95.5,-34.5 + pos: 66.5,-9.5 parent: 2 - uid: 4666 components: - type: Transform - pos: 95.5,-35.5 + pos: 68.5,-9.5 parent: 2 - uid: 4667 components: - type: Transform - pos: 96.5,-34.5 + pos: 69.5,-11.5 parent: 2 - uid: 4668 components: - type: Transform - pos: 94.5,-35.5 + pos: 70.5,-10.5 parent: 2 - uid: 4669 components: - type: Transform - pos: 96.5,-35.5 + pos: 70.5,-9.5 parent: 2 - uid: 4670 components: - type: Transform - pos: 95.5,-33.5 + pos: 69.5,-9.5 parent: 2 - uid: 4671 components: - type: Transform - pos: 96.5,-36.5 + pos: 68.5,-8.5 parent: 2 - uid: 4672 components: - type: Transform - pos: 96.5,-38.5 + pos: 69.5,-8.5 parent: 2 - uid: 4673 components: - type: Transform - pos: 96.5,-37.5 + pos: 70.5,-8.5 parent: 2 - uid: 4674 components: - type: Transform - pos: 95.5,-38.5 + pos: 70.5,-7.5 parent: 2 - uid: 4675 components: - type: Transform - pos: 95.5,-39.5 + pos: 71.5,-7.5 parent: 2 - uid: 4676 components: - type: Transform - pos: 83.5,-21.5 + pos: 73.5,-7.5 parent: 2 - uid: 4677 components: - type: Transform - pos: 83.5,-23.5 + pos: 72.5,-7.5 parent: 2 - uid: 4678 components: - type: Transform - pos: 83.5,-24.5 + pos: 69.5,-7.5 parent: 2 - uid: 4679 components: - type: Transform - pos: 83.5,-22.5 + pos: 71.5,-9.5 parent: 2 - uid: 4680 components: - type: Transform - pos: 83.5,-25.5 + pos: 73.5,-9.5 parent: 2 - uid: 4681 components: - type: Transform - pos: 83.5,-26.5 + pos: 72.5,-9.5 parent: 2 - uid: 4682 components: - type: Transform - pos: 84.5,-21.5 + pos: 72.5,-8.5 parent: 2 - uid: 4683 components: - type: Transform - pos: 84.5,-22.5 + pos: 73.5,-8.5 parent: 2 - uid: 4684 components: - type: Transform - pos: 84.5,-23.5 + pos: 74.5,-10.5 parent: 2 - uid: 4685 components: - type: Transform - pos: 84.5,-25.5 + pos: 74.5,-9.5 parent: 2 - uid: 4686 components: - type: Transform - pos: 84.5,-26.5 + pos: 75.5,-9.5 parent: 2 - uid: 4687 components: - type: Transform - pos: 85.5,-21.5 + pos: 76.5,-9.5 parent: 2 - uid: 4688 components: - type: Transform - pos: 84.5,-24.5 + pos: 77.5,-9.5 parent: 2 - uid: 4689 components: - type: Transform - pos: 85.5,-22.5 + pos: 78.5,-10.5 parent: 2 - uid: 4690 components: - type: Transform - pos: 85.5,-23.5 + pos: 81.5,-10.5 parent: 2 - uid: 4691 components: - type: Transform - pos: 85.5,-24.5 + pos: 79.5,-9.5 parent: 2 - uid: 4692 components: - type: Transform - pos: 85.5,-25.5 + pos: 79.5,-7.5 parent: 2 - uid: 4693 components: - type: Transform - pos: 85.5,-26.5 + pos: 80.5,-9.5 parent: 2 - uid: 4694 components: - type: Transform - pos: 85.5,-27.5 + pos: 79.5,-8.5 parent: 2 - uid: 4695 components: - type: Transform - pos: 84.5,-27.5 + pos: 80.5,-7.5 parent: 2 - uid: 4696 components: - type: Transform - pos: 79.5,-27.5 + pos: 80.5,-8.5 parent: 2 - uid: 4697 components: - type: Transform - pos: 79.5,-25.5 + pos: 76.5,-8.5 parent: 2 - uid: 4698 components: - type: Transform - pos: 80.5,-27.5 + pos: 76.5,-6.5 parent: 2 - uid: 4699 components: - type: Transform - pos: 80.5,-26.5 + pos: 77.5,-8.5 parent: 2 - uid: 4700 components: - type: Transform - pos: 80.5,-25.5 + pos: 77.5,-7.5 parent: 2 - uid: 4701 components: - type: Transform - pos: 79.5,-26.5 + pos: 77.5,-6.5 parent: 2 - uid: 4702 components: - type: Transform - pos: 81.5,-25.5 + pos: 76.5,-7.5 parent: 2 - uid: 4703 components: - type: Transform - pos: 82.5,-25.5 + pos: 81.5,-6.5 parent: 2 - uid: 4704 components: - type: Transform - pos: 82.5,-26.5 + pos: 82.5,-6.5 parent: 2 - uid: 4705 components: - type: Transform - pos: 81.5,-26.5 + pos: 84.5,-6.5 parent: 2 - uid: 4706 components: - type: Transform - pos: 79.5,-21.5 + pos: 85.5,-6.5 parent: 2 - uid: 4707 components: - type: Transform - pos: 79.5,-23.5 + pos: 86.5,-6.5 parent: 2 - uid: 4708 components: - type: Transform - pos: 79.5,-24.5 + pos: 87.5,-6.5 parent: 2 - uid: 4709 components: - type: Transform - pos: 79.5,-22.5 + pos: 88.5,-6.5 parent: 2 - uid: 4710 components: - type: Transform - pos: 80.5,-23.5 + pos: 83.5,-6.5 parent: 2 - uid: 4711 components: - type: Transform - pos: 80.5,-21.5 + pos: 84.5,-7.5 parent: 2 - uid: 4712 components: - type: Transform - pos: 80.5,-22.5 + pos: 84.5,-9.5 parent: 2 - uid: 4713 components: - type: Transform - pos: 78.5,-20.5 + pos: 85.5,-7.5 parent: 2 - uid: 4714 components: - type: Transform - pos: 78.5,-22.5 + pos: 85.5,-8.5 parent: 2 - uid: 4715 components: - type: Transform - pos: 78.5,-23.5 + pos: 85.5,-9.5 parent: 2 - uid: 4716 components: - type: Transform - pos: 78.5,-24.5 + pos: 84.5,-8.5 parent: 2 - uid: 4717 components: - type: Transform - pos: 78.5,-25.5 + pos: 82.5,-9.5 parent: 2 - uid: 4718 components: - type: Transform - pos: 78.5,-26.5 + pos: 83.5,-9.5 parent: 2 - uid: 4719 components: - type: Transform - pos: 78.5,-21.5 + pos: 85.5,-10.5 parent: 2 - uid: 4720 components: - type: Transform - pos: 75.5,-21.5 + pos: 87.5,-10.5 parent: 2 - uid: 4721 components: - type: Transform - pos: 75.5,-23.5 + pos: 88.5,-10.5 parent: 2 - uid: 4722 components: - type: Transform - pos: 75.5,-24.5 + pos: 89.5,-10.5 parent: 2 - uid: 4723 components: - type: Transform - pos: 75.5,-25.5 + pos: 90.5,-10.5 parent: 2 - uid: 4724 components: - type: Transform - pos: 76.5,-21.5 + pos: 86.5,-10.5 parent: 2 - uid: 4725 components: - type: Transform - pos: 76.5,-22.5 + pos: 90.5,-12.5 parent: 2 - uid: 4726 components: - type: Transform - pos: 76.5,-24.5 + pos: 90.5,-11.5 parent: 2 - uid: 4727 components: - type: Transform - pos: 75.5,-22.5 + pos: 88.5,-9.5 parent: 2 - uid: 4728 components: - type: Transform - pos: 76.5,-25.5 + pos: 89.5,-9.5 parent: 2 - uid: 4729 components: - type: Transform - pos: 77.5,-21.5 + pos: 90.5,-9.5 parent: 2 - uid: 4730 components: - type: Transform - pos: 77.5,-22.5 + pos: 87.5,-9.5 parent: 2 - uid: 4731 components: - type: Transform - pos: 76.5,-23.5 + pos: 90.5,-8.5 parent: 2 - uid: 4732 components: - type: Transform - pos: 77.5,-23.5 + pos: 89.5,-8.5 parent: 2 - uid: 4733 components: - type: Transform - pos: 77.5,-24.5 + pos: 89.5,-7.5 parent: 2 - uid: 4734 components: - type: Transform - pos: 77.5,-25.5 + pos: 88.5,-8.5 parent: 2 - uid: 4735 components: - type: Transform - pos: 77.5,-26.5 + pos: 88.5,-7.5 parent: 2 - uid: 4736 components: - type: Transform - pos: 74.5,-25.5 + pos: 90.5,-7.5 parent: 2 - uid: 4737 components: - type: Transform - pos: 73.5,-25.5 + pos: 65.5,-5.5 parent: 2 - uid: 4738 components: - type: Transform - pos: 74.5,-24.5 + pos: 65.5,-7.5 parent: 2 - uid: 4739 components: - type: Transform - pos: 73.5,-24.5 + pos: 64.5,-5.5 parent: 2 - uid: 4740 components: - type: Transform - pos: 72.5,-27.5 + pos: 64.5,-6.5 parent: 2 - uid: 4741 components: - type: Transform - pos: 71.5,-27.5 + pos: 64.5,-7.5 parent: 2 - uid: 4742 components: - type: Transform - pos: 71.5,-24.5 + pos: 65.5,-6.5 parent: 2 - uid: 4743 components: - type: Transform - pos: 71.5,-22.5 + pos: 66.5,-6.5 parent: 2 - uid: 4744 components: - type: Transform - pos: 71.5,-21.5 + pos: 66.5,-3.5 parent: 2 - uid: 4745 components: - type: Transform - pos: 72.5,-24.5 + pos: 67.5,-3.5 parent: 2 - uid: 4746 components: - type: Transform - pos: 72.5,-23.5 + pos: 61.5,-4.5 parent: 2 - uid: 4747 components: - type: Transform - pos: 71.5,-23.5 + pos: 61.5,-5.5 parent: 2 - uid: 4748 components: - type: Transform - pos: 72.5,-22.5 + pos: 59.5,-7.5 parent: 2 - uid: 4749 components: - type: Transform - pos: 72.5,-21.5 + pos: 60.5,-7.5 parent: 2 - uid: 4750 components: - type: Transform - pos: 74.5,-21.5 + pos: 61.5,-8.5 parent: 2 - uid: 4751 components: - type: Transform - pos: 73.5,-21.5 + pos: 61.5,-10.5 parent: 2 - uid: 4752 components: - type: Transform - pos: 74.5,-20.5 + pos: 62.5,-8.5 parent: 2 - uid: 4753 components: - type: Transform - pos: 70.5,-21.5 + pos: 61.5,-9.5 parent: 2 - uid: 4754 components: - type: Transform - pos: 70.5,-23.5 + pos: 62.5,-9.5 parent: 2 - uid: 4755 components: - type: Transform - pos: 70.5,-24.5 + pos: 62.5,-10.5 parent: 2 - uid: 4756 components: - type: Transform - pos: 69.5,-21.5 + pos: 63.5,-8.5 parent: 2 - uid: 4757 components: - type: Transform - pos: 69.5,-22.5 + pos: 62.5,-12.5 parent: 2 - uid: 4758 components: - type: Transform - pos: 69.5,-23.5 + pos: 62.5,-14.5 parent: 2 - uid: 4759 components: - type: Transform - pos: 69.5,-24.5 + pos: 62.5,-13.5 parent: 2 - uid: 4760 components: - type: Transform - pos: 70.5,-22.5 + pos: 60.5,-14.5 parent: 2 - uid: 4761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-9.5 + pos: 60.5,-16.5 parent: 2 - uid: 4762 components: - type: Transform - pos: 70.5,-20.5 + pos: 60.5,-15.5 parent: 2 - uid: 4763 components: - type: Transform - pos: 69.5,-20.5 + pos: 60.5,-17.5 parent: 2 - uid: 4764 components: - type: Transform - pos: 69.5,-19.5 + pos: 60.5,-18.5 parent: 2 - uid: 4765 components: - type: Transform - pos: 66.5,-20.5 + pos: 61.5,-16.5 parent: 2 - uid: 4766 components: - type: Transform - pos: 67.5,-20.5 + pos: 61.5,-15.5 parent: 2 - uid: 4767 components: - type: Transform - pos: 67.5,-21.5 + pos: 61.5,-19.5 parent: 2 - uid: 4768 components: - type: Transform - pos: 66.5,-21.5 + pos: 61.5,-20.5 parent: 2 - uid: 4769 components: - type: Transform - pos: 68.5,-20.5 + pos: 62.5,-19.5 parent: 2 - uid: 4770 components: - type: Transform - pos: 68.5,-21.5 + pos: 60.5,-11.5 parent: 2 - uid: 4771 components: - type: Transform - pos: 66.5,-22.5 + pos: 58.5,-11.5 parent: 2 - uid: 4772 components: - type: Transform - pos: 66.5,-24.5 + pos: 59.5,-11.5 parent: 2 - uid: 4773 components: - type: Transform - pos: 66.5,-23.5 + pos: 58.5,-12.5 parent: 2 - uid: 4774 components: - type: Transform - pos: 86.5,-9.5 + pos: 59.5,-12.5 parent: 2 - uid: 4775 components: - type: Transform - pos: 67.5,-24.5 + pos: 53.5,-15.5 parent: 2 - uid: 4776 components: - type: Transform - pos: 68.5,-24.5 + pos: 55.5,-15.5 parent: 2 - uid: 4777 components: - type: Transform - pos: 66.5,-19.5 + pos: 56.5,-15.5 parent: 2 - uid: 4778 components: - type: Transform - pos: 66.5,-17.5 + pos: 57.5,-15.5 parent: 2 - uid: 4779 components: - type: Transform - pos: 66.5,-16.5 + pos: 54.5,-15.5 parent: 2 - uid: 4780 components: - type: Transform - pos: 66.5,-18.5 + pos: 57.5,-14.5 parent: 2 - uid: 4781 components: - type: Transform - pos: 65.5,-19.5 + pos: 57.5,-13.5 parent: 2 - uid: 4782 components: - type: Transform - pos: 65.5,-18.5 + pos: 53.5,-17.5 parent: 2 - uid: 4783 components: - type: Transform - pos: 65.5,-17.5 + pos: 55.5,-17.5 parent: 2 - uid: 4784 components: - type: Transform - pos: 65.5,-16.5 + pos: 56.5,-17.5 parent: 2 - uid: 4785 components: - type: Transform - pos: 67.5,-2.5 + pos: 57.5,-17.5 parent: 2 - uid: 4786 components: - type: Transform - pos: 67.5,-16.5 + pos: 54.5,-17.5 parent: 2 - uid: 4787 components: - type: Transform - pos: 68.5,-16.5 + pos: 49.5,-19.5 parent: 2 - uid: 4788 components: - type: Transform - pos: 68.5,-18.5 + pos: 50.5,-19.5 parent: 2 - uid: 4789 components: - type: Transform - pos: 68.5,-17.5 + pos: 49.5,-20.5 parent: 2 - uid: 4790 components: - type: Transform - pos: 68.5,-19.5 + pos: 47.5,-19.5 parent: 2 - uid: 4791 components: - type: Transform - pos: 65.5,-15.5 + pos: 47.5,-20.5 parent: 2 - uid: 4792 components: - type: Transform - pos: 65.5,-14.5 + pos: 48.5,-19.5 parent: 2 - uid: 4793 components: - type: Transform - pos: 65.5,-13.5 + pos: 44.5,-18.5 parent: 2 - uid: 4794 components: - type: Transform - pos: 64.5,-15.5 + pos: 45.5,-18.5 parent: 2 - uid: 4795 components: - type: Transform - pos: 64.5,-14.5 + pos: 44.5,-20.5 parent: 2 - uid: 4796 components: - type: Transform - pos: 64.5,-13.5 + pos: 45.5,-20.5 parent: 2 - uid: 4797 components: - type: Transform - pos: 65.5,-12.5 + rot: 1.5707963267948966 rad + pos: 41.5,-16.5 parent: 2 - uid: 4798 components: - type: Transform - pos: 65.5,-11.5 + rot: 1.5707963267948966 rad + pos: 41.5,-17.5 parent: 2 - uid: 4799 components: - type: Transform - pos: 66.5,-11.5 + rot: 1.5707963267948966 rad + pos: 41.5,-15.5 parent: 2 - uid: 4800 components: - type: Transform - pos: 67.5,-11.5 + rot: 1.5707963267948966 rad + pos: 41.5,-14.5 parent: 2 - uid: 4801 components: - type: Transform - pos: 67.5,-10.5 + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 parent: 2 - uid: 4802 components: - type: Transform - pos: 66.5,-10.5 + rot: 1.5707963267948966 rad + pos: 41.5,-12.5 parent: 2 - uid: 4803 components: - type: Transform - pos: 68.5,-10.5 + rot: 1.5707963267948966 rad + pos: 41.5,-11.5 parent: 2 - uid: 4804 components: - type: Transform - pos: 68.5,-11.5 + rot: 1.5707963267948966 rad + pos: 41.5,-10.5 parent: 2 - uid: 4805 components: - type: Transform - pos: 66.5,-9.5 + rot: 1.5707963267948966 rad + pos: 41.5,-9.5 parent: 2 - uid: 4806 components: - type: Transform - pos: 68.5,-9.5 + rot: 1.5707963267948966 rad + pos: 40.5,-17.5 parent: 2 - uid: 4807 components: - type: Transform - pos: 69.5,-11.5 + rot: 1.5707963267948966 rad + pos: 40.5,-16.5 parent: 2 - uid: 4808 components: - type: Transform - pos: 70.5,-10.5 + rot: 1.5707963267948966 rad + pos: 40.5,-15.5 parent: 2 - uid: 4809 components: - type: Transform - pos: 70.5,-9.5 + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 parent: 2 - uid: 4810 components: - type: Transform - pos: 69.5,-9.5 + rot: 1.5707963267948966 rad + pos: 40.5,-13.5 parent: 2 - uid: 4811 components: - type: Transform - pos: 68.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,-12.5 parent: 2 - uid: 4812 components: - type: Transform - pos: 69.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,-11.5 parent: 2 - uid: 4813 components: - type: Transform - pos: 70.5,-8.5 + rot: 1.5707963267948966 rad + pos: 40.5,-10.5 parent: 2 - uid: 4814 components: - type: Transform - pos: 70.5,-7.5 + rot: 1.5707963267948966 rad + pos: 40.5,-9.5 parent: 2 - uid: 4815 components: - type: Transform - pos: 71.5,-7.5 + rot: 1.5707963267948966 rad + pos: 42.5,-11.5 parent: 2 - uid: 4816 components: - type: Transform - pos: 73.5,-7.5 + rot: 1.5707963267948966 rad + pos: 42.5,-9.5 parent: 2 - uid: 4817 components: - type: Transform - pos: 72.5,-7.5 + rot: 1.5707963267948966 rad + pos: 42.5,-8.5 parent: 2 - uid: 4818 components: - type: Transform - pos: 69.5,-7.5 + rot: 1.5707963267948966 rad + pos: 42.5,-7.5 parent: 2 - uid: 4819 components: - type: Transform - pos: 71.5,-9.5 + rot: 1.5707963267948966 rad + pos: 42.5,-6.5 parent: 2 - uid: 4820 components: - type: Transform - pos: 73.5,-9.5 + rot: 1.5707963267948966 rad + pos: 42.5,-10.5 parent: 2 - uid: 4821 components: - type: Transform - pos: 72.5,-9.5 + rot: 1.5707963267948966 rad + pos: 43.5,-6.5 parent: 2 - uid: 4822 components: - type: Transform - pos: 72.5,-8.5 + rot: 1.5707963267948966 rad + pos: 44.5,-6.5 parent: 2 - uid: 4823 components: - type: Transform - pos: 73.5,-8.5 + rot: 1.5707963267948966 rad + pos: 43.5,-7.5 parent: 2 - uid: 4824 components: - type: Transform - pos: 74.5,-10.5 + rot: 1.5707963267948966 rad + pos: 39.5,-9.5 parent: 2 - uid: 4825 components: - type: Transform - pos: 74.5,-9.5 + rot: 1.5707963267948966 rad + pos: 39.5,-9.5 parent: 2 - uid: 4826 components: - type: Transform - pos: 75.5,-9.5 + rot: 1.5707963267948966 rad + pos: 39.5,-7.5 parent: 2 - uid: 4827 components: - type: Transform - pos: 76.5,-9.5 + rot: 1.5707963267948966 rad + pos: 39.5,-6.5 parent: 2 - uid: 4828 components: - type: Transform - pos: 77.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-9.5 parent: 2 - uid: 4829 components: - type: Transform - pos: 78.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,-8.5 parent: 2 - uid: 4830 components: - type: Transform - pos: 81.5,-10.5 + rot: 1.5707963267948966 rad + pos: 38.5,-7.5 parent: 2 - uid: 4831 components: - type: Transform - pos: 79.5,-9.5 + rot: 1.5707963267948966 rad + pos: 39.5,-8.5 parent: 2 - uid: 4832 components: - type: Transform - pos: 79.5,-7.5 + rot: 1.5707963267948966 rad + pos: 38.5,-6.5 parent: 2 - uid: 4833 components: - type: Transform - pos: 80.5,-9.5 + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 parent: 2 - uid: 4834 components: - type: Transform - pos: 79.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-8.5 parent: 2 - uid: 4835 components: - type: Transform - pos: 80.5,-7.5 + rot: 1.5707963267948966 rad + pos: 37.5,-6.5 parent: 2 - uid: 4836 components: - type: Transform - pos: 80.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-7.5 parent: 2 - uid: 4837 components: - type: Transform - pos: 76.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-10.5 parent: 2 - uid: 4838 components: - type: Transform - pos: 76.5,-6.5 + rot: 1.5707963267948966 rad + pos: 37.5,-12.5 parent: 2 - uid: 4839 components: - type: Transform - pos: 77.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-13.5 parent: 2 - uid: 4840 components: - type: Transform - pos: 77.5,-7.5 + rot: 1.5707963267948966 rad + pos: 37.5,-14.5 parent: 2 - uid: 4841 components: - type: Transform - pos: 77.5,-6.5 + rot: 1.5707963267948966 rad + pos: 37.5,-15.5 parent: 2 - uid: 4842 components: - type: Transform - pos: 76.5,-7.5 + rot: 1.5707963267948966 rad + pos: 37.5,-16.5 parent: 2 - uid: 4843 components: - type: Transform - pos: 81.5,-6.5 + rot: 1.5707963267948966 rad + pos: 37.5,-11.5 parent: 2 - uid: 4844 components: - type: Transform - pos: 82.5,-6.5 + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 parent: 2 - uid: 4845 components: - type: Transform - pos: 84.5,-6.5 + rot: 1.5707963267948966 rad + pos: 37.5,-18.5 parent: 2 - uid: 4846 components: - type: Transform - pos: 85.5,-6.5 + rot: 1.5707963267948966 rad + pos: 37.5,-19.5 parent: 2 - uid: 4847 components: - type: Transform - pos: 86.5,-6.5 + rot: 1.5707963267948966 rad + pos: 38.5,-18.5 parent: 2 - uid: 4848 components: - type: Transform - pos: 87.5,-6.5 + rot: 1.5707963267948966 rad + pos: 39.5,-18.5 parent: 2 - uid: 4849 components: - type: Transform - pos: 88.5,-6.5 + rot: 1.5707963267948966 rad + pos: 39.5,-19.5 parent: 2 - uid: 4850 components: - type: Transform - pos: 83.5,-6.5 + rot: 1.5707963267948966 rad + pos: 40.5,-18.5 parent: 2 - uid: 4851 components: - type: Transform - pos: 84.5,-7.5 + rot: 1.5707963267948966 rad + pos: 38.5,-19.5 parent: 2 - uid: 4852 components: - type: Transform - pos: 84.5,-9.5 + rot: 1.5707963267948966 rad + pos: 40.5,-19.5 parent: 2 - uid: 4853 components: - type: Transform - pos: 85.5,-7.5 + rot: 1.5707963267948966 rad + pos: 41.5,-18.5 parent: 2 - uid: 4854 components: - type: Transform - pos: 85.5,-8.5 + rot: 1.5707963267948966 rad + pos: 41.5,-19.5 parent: 2 - uid: 4855 components: - type: Transform - pos: 85.5,-9.5 + rot: 1.5707963267948966 rad + pos: 42.5,-19.5 parent: 2 - uid: 4856 components: - type: Transform - pos: 84.5,-8.5 + rot: 1.5707963267948966 rad + pos: 42.5,-21.5 parent: 2 - uid: 4857 components: - type: Transform - pos: 82.5,-9.5 + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 parent: 2 - uid: 4858 components: - type: Transform - pos: 83.5,-9.5 + rot: 1.5707963267948966 rad + pos: 40.5,-20.5 parent: 2 - uid: 4859 components: - type: Transform - pos: 85.5,-10.5 + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 parent: 2 - uid: 4860 components: - type: Transform - pos: 87.5,-10.5 + rot: 1.5707963267948966 rad + pos: 41.5,-21.5 parent: 2 - uid: 4861 components: - type: Transform - pos: 88.5,-10.5 + rot: 1.5707963267948966 rad + pos: 40.5,-21.5 parent: 2 - uid: 4862 components: - type: Transform - pos: 89.5,-10.5 + rot: 1.5707963267948966 rad + pos: 40.5,-22.5 parent: 2 - uid: 4863 components: - type: Transform - pos: 90.5,-10.5 + rot: 1.5707963267948966 rad + pos: 40.5,-23.5 parent: 2 - uid: 4864 components: - type: Transform - pos: 86.5,-10.5 + rot: 1.5707963267948966 rad + pos: 39.5,-23.5 parent: 2 - uid: 4865 components: - type: Transform - pos: 90.5,-12.5 + rot: 1.5707963267948966 rad + pos: 41.5,-24.5 parent: 2 - uid: 4866 components: - type: Transform - pos: 90.5,-11.5 + rot: 1.5707963267948966 rad + pos: 43.5,-24.5 parent: 2 - uid: 4867 components: - type: Transform - pos: 88.5,-9.5 + rot: 1.5707963267948966 rad + pos: 42.5,-24.5 parent: 2 - uid: 4868 components: - type: Transform - pos: 89.5,-9.5 + rot: 1.5707963267948966 rad + pos: 43.5,-23.5 parent: 2 - uid: 4869 components: - type: Transform - pos: 90.5,-9.5 + rot: 1.5707963267948966 rad + pos: 43.5,-22.5 parent: 2 - uid: 4870 components: - type: Transform - pos: 87.5,-9.5 + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 parent: 2 - uid: 4871 components: - type: Transform - pos: 90.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-23.5 parent: 2 - uid: 4872 components: - type: Transform - pos: 89.5,-8.5 + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 parent: 2 - uid: 4873 components: - type: Transform - pos: 89.5,-7.5 + rot: 1.5707963267948966 rad + pos: 35.5,-23.5 parent: 2 - uid: 4874 components: - type: Transform - pos: 88.5,-8.5 + rot: 1.5707963267948966 rad + pos: 33.5,-23.5 parent: 2 - uid: 4875 components: - type: Transform - pos: 88.5,-7.5 + rot: 1.5707963267948966 rad + pos: 32.5,-23.5 parent: 2 - uid: 4876 components: - type: Transform - pos: 90.5,-7.5 + rot: 1.5707963267948966 rad + pos: 31.5,-23.5 parent: 2 - uid: 4877 components: - type: Transform - pos: 65.5,-5.5 + rot: 1.5707963267948966 rad + pos: 30.5,-23.5 parent: 2 - uid: 4878 components: - type: Transform - pos: 65.5,-7.5 + rot: 1.5707963267948966 rad + pos: 29.5,-23.5 parent: 2 - uid: 4879 components: - type: Transform - pos: 64.5,-5.5 + rot: 1.5707963267948966 rad + pos: 34.5,-23.5 parent: 2 - uid: 4880 components: - type: Transform - pos: 64.5,-6.5 + rot: 1.5707963267948966 rad + pos: 29.5,-24.5 parent: 2 - uid: 4881 components: - type: Transform - pos: 64.5,-7.5 + rot: 1.5707963267948966 rad + pos: 31.5,-24.5 parent: 2 - uid: 4882 components: - type: Transform - pos: 65.5,-6.5 + rot: 1.5707963267948966 rad + pos: 32.5,-24.5 parent: 2 - uid: 4883 components: - type: Transform - pos: 66.5,-6.5 + rot: 1.5707963267948966 rad + pos: 33.5,-24.5 parent: 2 - uid: 4884 components: - type: Transform - pos: 66.5,-3.5 + rot: 1.5707963267948966 rad + pos: 30.5,-24.5 parent: 2 - uid: 4885 components: - type: Transform - pos: 67.5,-3.5 + rot: 1.5707963267948966 rad + pos: 32.5,-25.5 parent: 2 - uid: 4886 components: - type: Transform - pos: 61.5,-4.5 + rot: 1.5707963267948966 rad + pos: 33.5,-26.5 parent: 2 - uid: 4887 components: - type: Transform - pos: 61.5,-5.5 + rot: 1.5707963267948966 rad + pos: 34.5,-26.5 parent: 2 - uid: 4888 components: - type: Transform - pos: 59.5,-7.5 + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 parent: 2 - uid: 4889 components: - type: Transform - pos: 60.5,-7.5 + rot: 1.5707963267948966 rad + pos: 36.5,-25.5 parent: 2 - uid: 4890 components: - type: Transform - pos: 61.5,-8.5 + rot: 1.5707963267948966 rad + pos: 36.5,-24.5 parent: 2 - uid: 4891 components: - type: Transform - pos: 61.5,-10.5 + rot: 1.5707963267948966 rad + pos: 35.5,-24.5 parent: 2 - uid: 4892 components: - type: Transform - pos: 62.5,-8.5 + rot: 1.5707963267948966 rad + pos: 37.5,-24.5 parent: 2 - uid: 4893 components: - type: Transform - pos: 61.5,-9.5 + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 parent: 2 - uid: 4894 components: - type: Transform - pos: 62.5,-9.5 + rot: 1.5707963267948966 rad + pos: 35.5,-20.5 parent: 2 - uid: 4895 components: - type: Transform - pos: 62.5,-10.5 + rot: 1.5707963267948966 rad + pos: 35.5,-19.5 parent: 2 - uid: 4896 components: - type: Transform - pos: 63.5,-8.5 + rot: 1.5707963267948966 rad + pos: 35.5,-21.5 parent: 2 - uid: 4897 components: - type: Transform - pos: 62.5,-12.5 + rot: 1.5707963267948966 rad + pos: 35.5,-18.5 parent: 2 - uid: 4898 components: - type: Transform - pos: 62.5,-14.5 + rot: 1.5707963267948966 rad + pos: 35.5,-17.5 parent: 2 - uid: 4899 components: - type: Transform - pos: 62.5,-13.5 + rot: 1.5707963267948966 rad + pos: 35.5,-16.5 parent: 2 - uid: 4900 components: - type: Transform - pos: 60.5,-14.5 + rot: 1.5707963267948966 rad + pos: 34.5,-22.5 parent: 2 - uid: 4901 components: - type: Transform - pos: 60.5,-16.5 + rot: 1.5707963267948966 rad + pos: 34.5,-21.5 parent: 2 - uid: 4902 components: - type: Transform - pos: 60.5,-15.5 + rot: 1.5707963267948966 rad + pos: 34.5,-20.5 parent: 2 - uid: 4903 components: - type: Transform - pos: 60.5,-17.5 + rot: 1.5707963267948966 rad + pos: 34.5,-19.5 parent: 2 - uid: 4904 components: - type: Transform - pos: 60.5,-18.5 + rot: 1.5707963267948966 rad + pos: 34.5,-18.5 parent: 2 - uid: 4905 components: - type: Transform - pos: 61.5,-16.5 + rot: 1.5707963267948966 rad + pos: 34.5,-17.5 parent: 2 - uid: 4906 components: - type: Transform - pos: 61.5,-15.5 + rot: 1.5707963267948966 rad + pos: 34.5,-16.5 parent: 2 - uid: 4907 components: - type: Transform - pos: 61.5,-19.5 + rot: 1.5707963267948966 rad + pos: 34.5,-15.5 parent: 2 - uid: 4908 components: - type: Transform - pos: 61.5,-20.5 + rot: 1.5707963267948966 rad + pos: 35.5,-15.5 parent: 2 - uid: 4909 components: - type: Transform - pos: 62.5,-19.5 + rot: 1.5707963267948966 rad + pos: 35.5,-14.5 parent: 2 - uid: 4910 components: - type: Transform - pos: 60.5,-11.5 + rot: 1.5707963267948966 rad + pos: 36.5,-14.5 parent: 2 - uid: 4911 components: - type: Transform - pos: 58.5,-11.5 + rot: 1.5707963267948966 rad + pos: 33.5,-15.5 parent: 2 - uid: 4912 components: - type: Transform - pos: 59.5,-11.5 + rot: 1.5707963267948966 rad + pos: 33.5,-19.5 parent: 2 - uid: 4913 components: - type: Transform - pos: 58.5,-10.5 + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 parent: 2 - uid: 4914 components: - type: Transform - pos: 59.5,-10.5 + rot: 1.5707963267948966 rad + pos: 33.5,-18.5 parent: 2 - uid: 4915 components: - type: Transform - pos: 58.5,-12.5 + rot: 1.5707963267948966 rad + pos: 33.5,-17.5 parent: 2 - uid: 4916 components: - type: Transform - pos: 59.5,-12.5 + rot: 1.5707963267948966 rad + pos: 33.5,-20.5 parent: 2 - uid: 4917 components: - type: Transform - pos: 53.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.5,-20.5 parent: 2 - uid: 4918 components: - type: Transform - pos: 55.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.5,-19.5 parent: 2 - uid: 4919 components: - type: Transform - pos: 56.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.5,-18.5 parent: 2 - uid: 4920 components: - type: Transform - pos: 57.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.5,-17.5 parent: 2 - uid: 4921 components: - type: Transform - pos: 54.5,-15.5 + rot: 1.5707963267948966 rad + pos: 32.5,-16.5 parent: 2 - uid: 4922 components: - type: Transform - pos: 57.5,-14.5 + rot: 1.5707963267948966 rad + pos: 32.5,-15.5 parent: 2 - uid: 4923 components: - type: Transform - pos: 57.5,-13.5 + rot: 1.5707963267948966 rad + pos: 31.5,-20.5 parent: 2 - uid: 4924 components: - type: Transform - pos: 53.5,-17.5 + rot: 1.5707963267948966 rad + pos: 31.5,-19.5 parent: 2 - uid: 4925 components: - type: Transform - pos: 55.5,-17.5 + rot: 1.5707963267948966 rad + pos: 31.5,-18.5 parent: 2 - uid: 4926 components: - type: Transform - pos: 56.5,-17.5 + rot: 1.5707963267948966 rad + pos: 31.5,-17.5 parent: 2 - uid: 4927 components: - type: Transform - pos: 57.5,-17.5 + rot: 1.5707963267948966 rad + pos: 31.5,-16.5 parent: 2 - uid: 4928 components: - type: Transform - pos: 54.5,-17.5 + rot: 1.5707963267948966 rad + pos: 31.5,-15.5 parent: 2 - uid: 4929 components: - type: Transform - pos: 54.5,-11.5 + rot: 1.5707963267948966 rad + pos: 30.5,-15.5 parent: 2 - uid: 4930 components: - type: Transform - pos: 54.5,-10.5 + rot: 1.5707963267948966 rad + pos: 30.5,-13.5 parent: 2 - uid: 4931 components: - type: Transform - pos: 55.5,-11.5 + rot: 1.5707963267948966 rad + pos: 30.5,-12.5 parent: 2 - uid: 4932 components: - type: Transform - pos: 51.5,-12.5 + rot: 1.5707963267948966 rad + pos: 30.5,-14.5 parent: 2 - uid: 4933 components: - type: Transform - pos: 51.5,-11.5 + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 parent: 2 - uid: 4934 components: - type: Transform - pos: 50.5,-11.5 + rot: 1.5707963267948966 rad + pos: 28.5,-13.5 parent: 2 - uid: 4935 components: - type: Transform - pos: 49.5,-11.5 + rot: 1.5707963267948966 rad + pos: 29.5,-15.5 parent: 2 - uid: 4936 components: - type: Transform - pos: 50.5,-10.5 + rot: 1.5707963267948966 rad + pos: 28.5,-15.5 parent: 2 - uid: 4937 components: - type: Transform - pos: 49.5,-10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-14.5 parent: 2 - uid: 4938 components: - type: Transform - pos: 49.5,-9.5 + rot: 1.5707963267948966 rad + pos: 27.5,-16.5 parent: 2 - uid: 4939 components: - type: Transform - pos: 47.5,-10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-17.5 parent: 2 - uid: 4940 components: - type: Transform - pos: 47.5,-10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-18.5 parent: 2 - uid: 4941 components: - type: Transform - pos: 48.5,-10.5 + rot: 1.5707963267948966 rad + pos: 27.5,-19.5 parent: 2 - uid: 4942 components: - type: Transform - pos: 46.5,-11.5 + rot: 1.5707963267948966 rad + pos: 27.5,-15.5 parent: 2 - uid: 4943 components: - type: Transform - pos: 47.5,-14.5 + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 parent: 2 - uid: 4944 components: - type: Transform - pos: 47.5,-16.5 + rot: 1.5707963267948966 rad + pos: 27.5,-22.5 parent: 2 - uid: 4945 components: - type: Transform - pos: 47.5,-15.5 + rot: 1.5707963267948966 rad + pos: 28.5,-20.5 parent: 2 - uid: 4946 components: - type: Transform - pos: 46.5,-15.5 + rot: 1.5707963267948966 rad + pos: 27.5,-21.5 parent: 2 - uid: 4947 components: - type: Transform - pos: 46.5,-16.5 + rot: 1.5707963267948966 rad + pos: 28.5,-21.5 parent: 2 - uid: 4948 components: - type: Transform - pos: 48.5,-16.5 + rot: 1.5707963267948966 rad + pos: 28.5,-22.5 parent: 2 - uid: 4949 components: - type: Transform - pos: 47.5,-19.5 + rot: 1.5707963267948966 rad + pos: 29.5,-20.5 parent: 2 - uid: 4950 components: - type: Transform - pos: 47.5,-20.5 + rot: 1.5707963267948966 rad + pos: 29.5,-21.5 parent: 2 - uid: 4951 components: - type: Transform - pos: 48.5,-19.5 + rot: 1.5707963267948966 rad + pos: 29.5,-22.5 parent: 2 - uid: 4952 components: - type: Transform - pos: 44.5,-18.5 + rot: 1.5707963267948966 rad + pos: 30.5,-20.5 parent: 2 - uid: 4953 components: - type: Transform - pos: 45.5,-18.5 + rot: 1.5707963267948966 rad + pos: 30.5,-21.5 parent: 2 - uid: 4954 components: - type: Transform - pos: 44.5,-20.5 + rot: 1.5707963267948966 rad + pos: 30.5,-22.5 parent: 2 - uid: 4955 components: - type: Transform - pos: 45.5,-20.5 + rot: 1.5707963267948966 rad + pos: 26.5,-21.5 parent: 2 - uid: 4956 components: - type: Transform - pos: 43.5,-16.5 + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 parent: 2 - uid: 4957 components: - type: Transform - pos: 44.5,-16.5 + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 parent: 2 - uid: 4958 components: - type: Transform - pos: 45.5,-16.5 + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 parent: 2 - uid: 4959 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-16.5 + pos: 24.5,-22.5 parent: 2 - uid: 4960 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-17.5 + pos: 24.5,-23.5 parent: 2 - uid: 4961 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-15.5 + pos: 24.5,-24.5 parent: 2 - uid: 4962 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-14.5 + pos: 25.5,-23.5 parent: 2 - uid: 4963 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-13.5 + pos: 25.5,-24.5 parent: 2 - uid: 4964 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-12.5 + pos: 26.5,-25.5 parent: 2 - uid: 4965 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-11.5 + pos: 27.5,-25.5 parent: 2 - uid: 4966 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-10.5 + pos: 27.5,-26.5 parent: 2 - uid: 4967 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-9.5 + pos: 28.5,-25.5 parent: 2 - uid: 4968 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-17.5 + pos: 28.5,-26.5 parent: 2 - uid: 4969 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-16.5 + pos: 26.5,-26.5 parent: 2 - uid: 4970 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-15.5 + pos: 23.5,-24.5 parent: 2 - uid: 4971 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-14.5 + pos: 21.5,-24.5 parent: 2 - uid: 4972 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-13.5 + pos: 20.5,-24.5 parent: 2 - uid: 4973 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-12.5 + pos: 22.5,-24.5 parent: 2 - uid: 4974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-11.5 + pos: 19.5,-24.5 parent: 2 - uid: 4975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-10.5 + pos: 18.5,-24.5 parent: 2 - uid: 4976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-9.5 + pos: 17.5,-24.5 parent: 2 - uid: 4977 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-11.5 + pos: 18.5,-23.5 parent: 2 - uid: 4978 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-9.5 + pos: 18.5,-21.5 parent: 2 - uid: 4979 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-8.5 + pos: 18.5,-20.5 parent: 2 - uid: 4980 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-7.5 + pos: 17.5,-23.5 parent: 2 - uid: 4981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-6.5 + pos: 18.5,-22.5 parent: 2 - uid: 4982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-10.5 + pos: 17.5,-22.5 parent: 2 - uid: 4983 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-6.5 + pos: 17.5,-21.5 parent: 2 - uid: 4984 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-6.5 + pos: 17.5,-20.5 parent: 2 - uid: 4985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-7.5 + pos: 17.5,-19.5 parent: 2 - uid: 4986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-7.5 + pos: 15.5,-19.5 parent: 2 - uid: 4987 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-10.5 + pos: 14.5,-19.5 parent: 2 - uid: 4988 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-9.5 + pos: 13.5,-19.5 parent: 2 - uid: 4989 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-9.5 + pos: 16.5,-19.5 parent: 2 - uid: 4990 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-7.5 + pos: 12.5,-19.5 parent: 2 - uid: 4991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-6.5 + pos: 11.5,-19.5 parent: 2 - uid: 4992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-9.5 + pos: 10.5,-19.5 parent: 2 - uid: 4993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-8.5 + pos: 9.5,-19.5 parent: 2 - uid: 4994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-7.5 + pos: 8.5,-19.5 parent: 2 - uid: 4995 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-8.5 + pos: 7.5,-19.5 parent: 2 - uid: 4996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-6.5 + pos: 7.5,-20.5 parent: 2 - uid: 4997 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-9.5 + pos: 7.5,-21.5 parent: 2 - uid: 4998 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-8.5 + pos: 7.5,-22.5 parent: 2 - uid: 4999 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-6.5 + pos: 7.5,-23.5 parent: 2 - uid: 5000 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-7.5 + pos: 7.5,-24.5 parent: 2 - uid: 5001 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-10.5 + pos: 8.5,-20.5 parent: 2 - uid: 5002 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-12.5 + pos: 8.5,-21.5 parent: 2 - uid: 5003 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-13.5 + pos: 8.5,-22.5 parent: 2 - uid: 5004 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-14.5 + pos: 8.5,-23.5 parent: 2 - uid: 5005 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-15.5 + pos: 8.5,-24.5 parent: 2 - uid: 5006 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-16.5 + pos: 9.5,-24.5 parent: 2 - uid: 5007 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-11.5 + pos: 9.5,-25.5 parent: 2 - uid: 5008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-17.5 + pos: 10.5,-25.5 parent: 2 - uid: 5009 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-18.5 + pos: 11.5,-24.5 parent: 2 - uid: 5010 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-19.5 + pos: 11.5,-25.5 parent: 2 - uid: 5011 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-18.5 + pos: 10.5,-24.5 parent: 2 - uid: 5012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-18.5 + pos: 12.5,-25.5 parent: 2 - uid: 5013 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-19.5 + pos: 12.5,-24.5 parent: 2 - uid: 5014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-18.5 + pos: 13.5,-24.5 parent: 2 - uid: 5015 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-19.5 + pos: 13.5,-25.5 parent: 2 - uid: 5016 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-19.5 + pos: 14.5,-24.5 parent: 2 - uid: 5017 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-18.5 + pos: 15.5,-24.5 parent: 2 - uid: 5018 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-19.5 + pos: 14.5,-25.5 parent: 2 - uid: 5019 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-19.5 + pos: 15.5,-25.5 parent: 2 - uid: 5020 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-21.5 + pos: 16.5,-24.5 parent: 2 - uid: 5021 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-20.5 + pos: 15.5,-26.5 parent: 2 - uid: 5022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-20.5 + pos: 15.5,-28.5 parent: 2 - uid: 5023 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-20.5 + pos: 15.5,-27.5 parent: 2 - uid: 5024 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-21.5 + pos: 16.5,-27.5 parent: 2 - uid: 5025 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-21.5 + pos: 16.5,-28.5 parent: 2 - uid: 5026 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-22.5 + pos: 12.5,-30.5 parent: 2 - uid: 5027 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-23.5 + pos: 12.5,-28.5 parent: 2 - uid: 5028 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,-23.5 + pos: 12.5,-29.5 parent: 2 - uid: 5029 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-24.5 + pos: 11.5,-28.5 parent: 2 - uid: 5030 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-24.5 + pos: 10.5,-28.5 parent: 2 - uid: 5031 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-24.5 + pos: 10.5,-29.5 parent: 2 - uid: 5032 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-23.5 + pos: 11.5,-29.5 parent: 2 - uid: 5033 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-22.5 + pos: 8.5,-26.5 parent: 2 - uid: 5034 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-23.5 + pos: 8.5,-28.5 parent: 2 - uid: 5035 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-23.5 + pos: 8.5,-27.5 parent: 2 - uid: 5036 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-23.5 + pos: 8.5,-29.5 parent: 2 - uid: 5037 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-23.5 + pos: 9.5,-26.5 parent: 2 - uid: 5038 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-23.5 + pos: 9.5,-27.5 parent: 2 - uid: 5039 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-23.5 + pos: 9.5,-29.5 parent: 2 - uid: 5040 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-23.5 + pos: 9.5,-28.5 parent: 2 - uid: 5041 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-23.5 + pos: 9.5,-30.5 parent: 2 - uid: 5042 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-23.5 + pos: 7.5,-29.5 parent: 2 - uid: 5043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-23.5 + pos: 5.5,-29.5 parent: 2 - uid: 5044 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-24.5 + pos: 4.5,-29.5 parent: 2 - uid: 5045 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-24.5 + pos: 3.5,-29.5 parent: 2 - uid: 5046 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-24.5 + pos: 6.5,-29.5 parent: 2 - uid: 5047 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-24.5 + pos: 3.5,-30.5 parent: 2 - uid: 5048 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-24.5 + pos: 4.5,-28.5 parent: 2 - uid: 5049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-25.5 + pos: 5.5,-28.5 parent: 2 - uid: 5050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-26.5 + pos: 5.5,-27.5 parent: 2 - uid: 5051 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-26.5 + pos: 4.5,-27.5 parent: 2 - uid: 5052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-25.5 + pos: 5.5,-26.5 parent: 2 - uid: 5053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-25.5 + pos: 7.5,-26.5 parent: 2 - uid: 5054 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-24.5 + pos: 6.5,-26.5 parent: 2 - uid: 5055 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-24.5 + pos: 6.5,-25.5 parent: 2 - uid: 5056 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-24.5 + pos: 8.5,-25.5 parent: 2 - uid: 5057 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-22.5 + pos: 7.5,-25.5 parent: 2 - uid: 5058 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-20.5 + pos: 13.5,-28.5 parent: 2 - uid: 5059 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-19.5 + pos: 14.5,-28.5 parent: 2 - uid: 5060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-21.5 + pos: 17.5,-27.5 parent: 2 - uid: 5061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-18.5 + pos: 18.5,-27.5 parent: 2 - uid: 5062 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-17.5 + pos: 19.5,-26.5 parent: 2 - uid: 5063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-16.5 + pos: 20.5,-26.5 parent: 2 - uid: 5064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-22.5 + pos: 20.5,-25.5 parent: 2 - uid: 5065 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-21.5 + pos: 19.5,-25.5 parent: 2 - uid: 5066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-20.5 + pos: 19.5,-21.5 parent: 2 - uid: 5067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-19.5 + pos: 21.5,-21.5 parent: 2 - uid: 5068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-18.5 + pos: 20.5,-21.5 parent: 2 - uid: 5069 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-17.5 + pos: 32.5,-31.5 parent: 2 - uid: 5070 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-16.5 + pos: 33.5,-31.5 parent: 2 - uid: 5071 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-15.5 + pos: 33.5,-30.5 parent: 2 - uid: 5072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-15.5 + pos: 34.5,-30.5 parent: 2 - uid: 5073 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-14.5 + pos: 36.5,-30.5 parent: 2 - uid: 5074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-14.5 + pos: 36.5,-29.5 parent: 2 - uid: 5075 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-15.5 + pos: 37.5,-29.5 parent: 2 - uid: 5076 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-19.5 + pos: 38.5,-29.5 parent: 2 - uid: 5077 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-16.5 + pos: 39.5,-27.5 parent: 2 - uid: 5078 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-18.5 + pos: 40.5,-27.5 parent: 2 - uid: 5079 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-17.5 + pos: 39.5,-26.5 parent: 2 - uid: 5080 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-20.5 + pos: 40.5,-26.5 parent: 2 - uid: 5081 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-20.5 + pos: 41.5,-27.5 parent: 2 - uid: 5082 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-19.5 + pos: 43.5,-29.5 parent: 2 - uid: 5083 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-18.5 + pos: 44.5,-29.5 parent: 2 - uid: 5084 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-17.5 + pos: 44.5,-28.5 parent: 2 - uid: 5085 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-16.5 + pos: 45.5,-29.5 parent: 2 - uid: 5086 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-15.5 + pos: 45.5,-28.5 parent: 2 - uid: 5087 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-20.5 + pos: 43.5,-28.5 parent: 2 - uid: 5088 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-19.5 + pos: 46.5,-28.5 parent: 2 - uid: 5089 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-18.5 + pos: 48.5,-30.5 parent: 2 - uid: 5090 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-17.5 + pos: 48.5,-32.5 parent: 2 - uid: 5091 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-16.5 + pos: 48.5,-33.5 parent: 2 - uid: 5092 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-15.5 + pos: 48.5,-31.5 parent: 2 - uid: 5093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-15.5 + pos: 47.5,-31.5 parent: 2 - uid: 5094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-13.5 + pos: 47.5,-33.5 parent: 2 - uid: 5095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-12.5 + pos: 47.5,-32.5 parent: 2 - uid: 5096 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-14.5 + pos: 49.5,-31.5 parent: 2 - uid: 5097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-13.5 + pos: 48.5,-35.5 parent: 2 - uid: 5098 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-13.5 + pos: 50.5,-34.5 parent: 2 - uid: 5099 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-15.5 + pos: 50.5,-36.5 parent: 2 - uid: 5100 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-15.5 + pos: 50.5,-35.5 parent: 2 - uid: 5101 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-14.5 + pos: 51.5,-35.5 parent: 2 - uid: 5102 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-16.5 + pos: 51.5,-34.5 parent: 2 - uid: 5103 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-17.5 + pos: 51.5,-32.5 parent: 2 - uid: 5104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-18.5 + pos: 51.5,-31.5 parent: 2 - uid: 5105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-19.5 + pos: 50.5,-29.5 parent: 2 - uid: 5106 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-15.5 + pos: 50.5,-28.5 parent: 2 - uid: 5107 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-20.5 + pos: 51.5,-27.5 parent: 2 - uid: 5108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-22.5 + pos: 52.5,-27.5 parent: 2 - uid: 5109 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-20.5 + pos: 52.5,-26.5 parent: 2 - uid: 5110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-21.5 + pos: 51.5,-26.5 parent: 2 - uid: 5111 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-21.5 + pos: 52.5,-28.5 parent: 2 - uid: 5112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-22.5 + pos: 52.5,-30.5 parent: 2 - uid: 5113 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-20.5 + pos: 52.5,-29.5 parent: 2 - uid: 5114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-21.5 + pos: 52.5,-31.5 parent: 2 - uid: 5115 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-22.5 + pos: 52.5,-32.5 parent: 2 - uid: 5116 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-20.5 + pos: 52.5,-33.5 parent: 2 - uid: 5117 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-21.5 + pos: 40.5,-31.5 parent: 2 - uid: 5118 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-22.5 + pos: 41.5,-31.5 parent: 2 - uid: 5119 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-21.5 + pos: 41.5,-32.5 parent: 2 - uid: 5120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-21.5 + pos: 42.5,-31.5 parent: 2 - uid: 5121 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-22.5 + pos: 40.5,-32.5 parent: 2 - uid: 5122 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-22.5 + pos: 43.5,-31.5 parent: 2 - uid: 5123 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-22.5 + pos: 44.5,-31.5 parent: 2 - uid: 5124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-23.5 + pos: 44.5,-32.5 parent: 2 - uid: 5125 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-24.5 + pos: 43.5,-32.5 parent: 2 - uid: 5126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-23.5 + pos: 42.5,-32.5 parent: 2 - uid: 5127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-24.5 + pos: 41.5,-33.5 parent: 2 - uid: 5128 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-25.5 + pos: 43.5,-33.5 parent: 2 - uid: 5129 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-25.5 + pos: 42.5,-33.5 parent: 2 - uid: 5130 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-26.5 + pos: 44.5,-33.5 parent: 2 - uid: 5131 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-25.5 + pos: 40.5,-30.5 parent: 2 - uid: 5132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-26.5 + pos: 41.5,-30.5 parent: 2 - uid: 5133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-26.5 + pos: 39.5,-35.5 parent: 2 - uid: 5134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-24.5 + pos: 39.5,-37.5 parent: 2 - uid: 5135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-24.5 + pos: 39.5,-38.5 parent: 2 - uid: 5136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-24.5 + pos: 39.5,-39.5 parent: 2 - uid: 5137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-24.5 + pos: 39.5,-40.5 parent: 2 - uid: 5138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-24.5 + pos: 39.5,-41.5 parent: 2 - uid: 5139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-24.5 + pos: 39.5,-42.5 parent: 2 - uid: 5140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-24.5 + pos: 39.5,-36.5 parent: 2 - uid: 5141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 + pos: 39.5,-43.5 parent: 2 - uid: 5142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 + pos: 40.5,-37.5 parent: 2 - uid: 5143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-20.5 + pos: 40.5,-39.5 parent: 2 - uid: 5144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-23.5 + pos: 40.5,-38.5 parent: 2 - uid: 5145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 + pos: 41.5,-39.5 parent: 2 - uid: 5146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 + pos: 41.5,-37.5 parent: 2 - uid: 5147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-21.5 + pos: 41.5,-38.5 parent: 2 - uid: 5148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-20.5 + pos: 37.5,-38.5 parent: 2 - uid: 5149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-19.5 + pos: 35.5,-38.5 parent: 2 - uid: 5150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-19.5 + pos: 36.5,-38.5 parent: 2 - uid: 5151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-19.5 + pos: 35.5,-36.5 parent: 2 - uid: 5152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-19.5 + pos: 37.5,-36.5 parent: 2 - uid: 5153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-19.5 + pos: 36.5,-36.5 parent: 2 - uid: 5154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-19.5 + pos: 35.5,-34.5 parent: 2 - uid: 5155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-19.5 + pos: 36.5,-34.5 parent: 2 - uid: 5156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 + pos: 37.5,-34.5 parent: 2 - uid: 5157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 + pos: 36.5,-37.5 parent: 2 - uid: 5158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-19.5 + pos: 35.5,-39.5 parent: 2 - uid: 5159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-19.5 + pos: 35.5,-40.5 parent: 2 - uid: 5160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-20.5 + pos: 35.5,-41.5 parent: 2 - uid: 5161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-21.5 + pos: 35.5,-43.5 parent: 2 - uid: 5162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-22.5 + pos: 35.5,-42.5 parent: 2 - uid: 5163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 + pos: 36.5,-42.5 parent: 2 - uid: 5164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 + pos: 36.5,-43.5 parent: 2 - uid: 5165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-20.5 + pos: 37.5,-42.5 parent: 2 - uid: 5166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-21.5 + pos: 37.5,-43.5 parent: 2 - uid: 5167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 + pos: 38.5,-42.5 parent: 2 - uid: 5168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 + pos: 38.5,-43.5 parent: 2 - uid: 5169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-24.5 + pos: 40.5,-43.5 parent: 2 - uid: 5170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-24.5 + pos: 40.5,-42.5 parent: 2 - uid: 5171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-25.5 + pos: 40.5,-41.5 parent: 2 - uid: 5172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-25.5 + pos: 41.5,-43.5 parent: 2 - uid: 5173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-24.5 + pos: 41.5,-42.5 parent: 2 - uid: 5174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-25.5 + pos: 41.5,-41.5 parent: 2 - uid: 5175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-24.5 + pos: 42.5,-42.5 parent: 2 - uid: 5176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-25.5 + pos: 44.5,-42.5 parent: 2 - uid: 5177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-24.5 + pos: 45.5,-42.5 parent: 2 - uid: 5178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-24.5 + pos: 43.5,-42.5 parent: 2 - uid: 5179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-25.5 + pos: 42.5,-43.5 parent: 2 - uid: 5180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-24.5 + pos: 42.5,-45.5 parent: 2 - uid: 5181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-24.5 + pos: 42.5,-44.5 parent: 2 - uid: 5182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-25.5 + pos: 43.5,-45.5 parent: 2 - uid: 5183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-25.5 + pos: 44.5,-45.5 parent: 2 - uid: 5184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 + pos: 45.5,-43.5 parent: 2 - uid: 5185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-26.5 + pos: 45.5,-44.5 parent: 2 - uid: 5186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-28.5 + pos: 45.5,-41.5 parent: 2 - uid: 5187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-27.5 + pos: 45.5,-40.5 parent: 2 - uid: 5188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-27.5 + pos: 45.5,-39.5 parent: 2 - uid: 5189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-28.5 + pos: 45.5,-37.5 parent: 2 - uid: 5190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-30.5 + pos: 45.5,-38.5 parent: 2 - uid: 5191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-28.5 + pos: 43.5,-37.5 parent: 2 - uid: 5192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-29.5 + pos: 44.5,-37.5 parent: 2 - uid: 5193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-28.5 + pos: 44.5,-38.5 parent: 2 - uid: 5194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-28.5 + pos: 43.5,-38.5 parent: 2 - uid: 5195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-29.5 + pos: 42.5,-38.5 parent: 2 - uid: 5196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-29.5 + pos: 49.5,-48.5 parent: 2 - uid: 5197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-26.5 + pos: 50.5,-48.5 parent: 2 - uid: 5198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-28.5 + pos: 50.5,-49.5 parent: 2 - uid: 5199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-27.5 + pos: 51.5,-49.5 parent: 2 - uid: 5200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 + pos: 51.5,-50.5 parent: 2 - uid: 5201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-26.5 + pos: 49.5,-50.5 parent: 2 - uid: 5202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-27.5 + pos: 48.5,-50.5 parent: 2 - uid: 5203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-29.5 + pos: 50.5,-50.5 parent: 2 - uid: 5204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-28.5 + pos: 47.5,-50.5 parent: 2 - uid: 5205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-30.5 + pos: 47.5,-49.5 parent: 2 - uid: 5206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-29.5 + pos: 48.5,-49.5 parent: 2 - uid: 5207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-29.5 + pos: 48.5,-48.5 parent: 2 - uid: 5208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-29.5 + pos: 47.5,-48.5 parent: 2 - uid: 5209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-29.5 + pos: 49.5,-49.5 parent: 2 - uid: 5210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-29.5 + pos: 27.5,-61.5 parent: 2 - uid: 5211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-30.5 + pos: 28.5,-61.5 parent: 2 - uid: 5212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-28.5 + pos: 26.5,-60.5 parent: 2 - uid: 5213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-28.5 + pos: 4.5,-58.5 parent: 2 - uid: 5214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-27.5 + pos: 4.5,-59.5 parent: 2 - uid: 5215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-27.5 + pos: 4.5,-60.5 parent: 2 - uid: 5216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-26.5 + pos: 4.5,-61.5 parent: 2 - uid: 5217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-26.5 + pos: 5.5,-61.5 parent: 2 - uid: 5218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-26.5 + pos: 6.5,-61.5 parent: 2 - uid: 5219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-25.5 + pos: 6.5,-62.5 parent: 2 - uid: 5220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-25.5 + pos: 5.5,-58.5 parent: 2 - uid: 5221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-25.5 + pos: 7.5,-58.5 parent: 2 - uid: 5222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-28.5 + pos: 8.5,-58.5 parent: 2 - uid: 5223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-28.5 + pos: 6.5,-58.5 parent: 2 - uid: 5224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-27.5 + pos: 8.5,-59.5 parent: 2 - uid: 5225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-27.5 + pos: 8.5,-60.5 parent: 2 - uid: 5226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-26.5 + pos: 4.5,-65.5 parent: 2 - uid: 5227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-26.5 + pos: 5.5,-65.5 parent: 2 - uid: 5228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-25.5 + pos: 4.5,-66.5 parent: 2 - uid: 5229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-25.5 + pos: 3.5,-66.5 parent: 2 - uid: 5230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-21.5 + pos: -20.5,-66.5 parent: 2 - uid: 5231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-21.5 + pos: -22.5,-66.5 parent: 2 - uid: 5232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 + pos: -21.5,-66.5 parent: 2 - uid: 5233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-31.5 + pos: -22.5,-65.5 parent: 2 - uid: 5234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-31.5 + pos: -21.5,-65.5 parent: 2 - uid: 5235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-30.5 + pos: -21.5,-56.5 parent: 2 - uid: 5236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-30.5 + pos: -21.5,-53.5 parent: 2 - uid: 5237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-30.5 + pos: -22.5,-53.5 parent: 2 - uid: 5238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-29.5 + pos: -23.5,-53.5 parent: 2 - uid: 5239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-29.5 + pos: -23.5,-55.5 parent: 2 - uid: 5240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-29.5 + pos: -25.5,-55.5 parent: 2 - uid: 5241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-27.5 + pos: -26.5,-55.5 parent: 2 - uid: 5242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-27.5 + pos: -24.5,-55.5 parent: 2 - uid: 5243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-26.5 + pos: -27.5,-54.5 parent: 2 - uid: 5244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-26.5 + pos: -27.5,-53.5 parent: 2 - uid: 5245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-27.5 + pos: -29.5,-48.5 parent: 2 - uid: 5246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-29.5 + pos: -29.5,-49.5 parent: 2 - uid: 5247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-29.5 + pos: -28.5,-49.5 parent: 2 - uid: 5248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-28.5 + pos: -38.5,-53.5 parent: 2 - uid: 5249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-29.5 + pos: -38.5,-54.5 parent: 2 - uid: 5250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-28.5 + pos: -37.5,-52.5 parent: 2 - uid: 5251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-28.5 + pos: -35.5,-52.5 parent: 2 - uid: 5252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-28.5 + pos: -34.5,-52.5 parent: 2 - uid: 5253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-30.5 + pos: -36.5,-52.5 parent: 2 - uid: 5254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-32.5 + pos: -33.5,-53.5 parent: 2 - uid: 5255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-33.5 + pos: -33.5,-55.5 parent: 2 - uid: 5256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-31.5 + pos: -33.5,-54.5 parent: 2 - uid: 5257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-31.5 + pos: -34.5,-56.5 parent: 2 - uid: 5258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 + pos: -35.5,-56.5 parent: 2 - uid: 5259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-32.5 + pos: -36.5,-56.5 parent: 2 - uid: 5260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-31.5 + pos: -38.5,-57.5 parent: 2 - uid: 5261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-35.5 + pos: -40.5,-57.5 parent: 2 - uid: 5262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-34.5 + pos: -39.5,-57.5 parent: 2 - uid: 5263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 + pos: -40.5,-55.5 parent: 2 - uid: 5264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-35.5 + pos: -40.5,-56.5 parent: 2 - uid: 5265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-35.5 + pos: -44.5,-58.5 parent: 2 - uid: 5266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-34.5 + pos: -43.5,-58.5 parent: 2 - uid: 5267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-32.5 + pos: -42.5,-58.5 parent: 2 - uid: 5268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-31.5 + pos: -40.5,-58.5 parent: 2 - uid: 5269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-29.5 + pos: -41.5,-58.5 parent: 2 - uid: 5270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-28.5 + pos: -42.5,-59.5 parent: 2 - uid: 5271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-27.5 + pos: -40.5,-59.5 parent: 2 - uid: 5272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-27.5 + pos: -41.5,-59.5 parent: 2 - uid: 5273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-26.5 + pos: -40.5,-60.5 parent: 2 - uid: 5274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-26.5 + pos: -40.5,-62.5 parent: 2 - uid: 5275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-28.5 + pos: -40.5,-61.5 parent: 2 - uid: 5276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-30.5 + pos: -40.5,-63.5 parent: 2 - uid: 5277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-29.5 + pos: -40.5,-64.5 parent: 2 - uid: 5278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-31.5 + pos: -40.5,-65.5 parent: 2 - uid: 5279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-32.5 + pos: -40.5,-66.5 parent: 2 - uid: 5280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-33.5 + pos: -40.5,-68.5 parent: 2 - uid: 5281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 + pos: -40.5,-70.5 parent: 2 - uid: 5282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-31.5 + pos: -40.5,-71.5 parent: 2 - uid: 5283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-32.5 + pos: -40.5,-69.5 parent: 2 - uid: 5284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-31.5 + pos: -40.5,-72.5 parent: 2 - uid: 5285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-32.5 + pos: -40.5,-73.5 parent: 2 - uid: 5286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-31.5 + pos: -40.5,-74.5 parent: 2 - uid: 5287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-31.5 + pos: -40.5,-67.5 parent: 2 - uid: 5288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-32.5 + pos: -41.5,-72.5 parent: 2 - uid: 5289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-32.5 + pos: -41.5,-70.5 parent: 2 - uid: 5290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-32.5 + pos: -41.5,-69.5 parent: 2 - uid: 5291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-33.5 + pos: -41.5,-68.5 parent: 2 - uid: 5292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-33.5 + pos: -41.5,-67.5 parent: 2 - uid: 5293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-33.5 + pos: -41.5,-71.5 parent: 2 - uid: 5294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-33.5 + pos: -41.5,-66.5 parent: 2 - uid: 5295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-30.5 + pos: -41.5,-65.5 parent: 2 - uid: 5296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-30.5 + pos: -41.5,-64.5 parent: 2 - uid: 5297 components: - type: Transform - pos: 39.5,-35.5 + pos: -39.5,-63.5 parent: 2 - uid: 5298 components: - type: Transform - pos: 39.5,-37.5 + pos: -38.5,-63.5 parent: 2 - uid: 5299 components: - type: Transform - pos: 39.5,-38.5 + pos: -38.5,-64.5 parent: 2 - uid: 5300 components: - type: Transform - pos: 39.5,-39.5 + pos: -37.5,-63.5 parent: 2 - uid: 5301 components: - type: Transform - pos: 39.5,-40.5 + pos: -39.5,-64.5 parent: 2 - uid: 5302 components: - type: Transform - pos: 39.5,-41.5 + pos: -37.5,-64.5 parent: 2 - uid: 5303 components: - type: Transform - pos: 39.5,-42.5 + pos: -36.5,-63.5 parent: 2 - uid: 5304 components: - type: Transform - pos: 39.5,-36.5 + pos: -35.5,-63.5 parent: 2 - uid: 5305 components: - type: Transform - pos: 39.5,-43.5 + pos: -35.5,-64.5 parent: 2 - uid: 5306 components: - type: Transform - pos: 40.5,-37.5 + pos: -36.5,-64.5 parent: 2 - uid: 5307 components: - type: Transform - pos: 40.5,-39.5 + pos: -39.5,-62.5 parent: 2 - uid: 5308 components: - type: Transform - pos: 40.5,-38.5 + pos: -39.5,-60.5 parent: 2 - uid: 5309 components: - type: Transform - pos: 41.5,-39.5 + pos: -39.5,-61.5 parent: 2 - uid: 5310 components: - type: Transform - pos: 41.5,-37.5 + pos: -38.5,-59.5 parent: 2 - uid: 5311 components: - type: Transform - pos: 41.5,-38.5 + pos: -38.5,-60.5 parent: 2 - uid: 5312 components: - type: Transform - pos: 37.5,-38.5 + pos: -37.5,-60.5 parent: 2 - uid: 5313 components: - type: Transform - pos: 35.5,-38.5 + pos: -36.5,-60.5 parent: 2 - uid: 5314 components: - type: Transform - pos: 36.5,-38.5 + pos: -35.5,-61.5 parent: 2 - uid: 5315 components: - type: Transform - pos: 35.5,-36.5 + pos: -35.5,-62.5 parent: 2 - uid: 5316 components: - type: Transform - pos: 37.5,-36.5 + pos: -34.5,-61.5 parent: 2 - uid: 5317 components: - type: Transform - pos: 36.5,-36.5 + pos: -33.5,-61.5 parent: 2 - uid: 5318 components: - type: Transform - pos: 35.5,-34.5 + pos: -33.5,-62.5 parent: 2 - uid: 5319 components: - type: Transform - pos: 36.5,-34.5 + pos: -33.5,-64.5 parent: 2 - uid: 5320 components: - type: Transform - pos: 37.5,-34.5 + pos: -32.5,-62.5 parent: 2 - uid: 5321 components: - type: Transform - pos: 36.5,-37.5 + pos: -33.5,-63.5 parent: 2 - uid: 5322 components: - type: Transform - pos: 35.5,-39.5 + pos: -32.5,-63.5 parent: 2 - uid: 5323 components: - type: Transform - pos: 35.5,-40.5 + pos: -32.5,-64.5 parent: 2 - uid: 5324 components: - type: Transform - pos: 35.5,-41.5 + pos: -31.5,-63.5 parent: 2 - uid: 5325 components: - type: Transform - pos: 35.5,-43.5 + pos: -31.5,-64.5 parent: 2 - uid: 5326 components: - type: Transform - pos: 35.5,-42.5 + pos: -31.5,-62.5 parent: 2 - uid: 5327 components: - type: Transform - pos: 36.5,-42.5 + pos: -30.5,-63.5 parent: 2 - uid: 5328 components: - type: Transform - pos: 36.5,-43.5 + pos: -30.5,-64.5 parent: 2 - uid: 5329 components: - type: Transform - pos: 37.5,-42.5 + pos: -29.5,-64.5 parent: 2 - uid: 5330 components: - type: Transform - pos: 37.5,-43.5 + pos: -28.5,-64.5 parent: 2 - uid: 5331 components: - type: Transform - pos: 38.5,-42.5 + pos: -39.5,-66.5 parent: 2 - uid: 5332 components: - type: Transform - pos: 38.5,-43.5 + pos: -37.5,-66.5 parent: 2 - uid: 5333 components: - type: Transform - pos: 40.5,-43.5 + pos: -36.5,-66.5 parent: 2 - uid: 5334 components: - type: Transform - pos: 40.5,-42.5 + pos: -35.5,-66.5 parent: 2 - uid: 5335 components: - type: Transform - pos: 40.5,-41.5 + pos: -38.5,-66.5 parent: 2 - uid: 5336 components: - type: Transform - pos: 41.5,-43.5 + pos: -39.5,-68.5 parent: 2 - uid: 5337 components: - type: Transform - pos: 41.5,-42.5 + pos: -37.5,-68.5 parent: 2 - uid: 5338 components: - type: Transform - pos: 41.5,-41.5 + pos: -36.5,-68.5 parent: 2 - uid: 5339 components: - type: Transform - pos: 42.5,-42.5 + pos: -38.5,-68.5 parent: 2 - uid: 5340 components: - type: Transform - pos: 44.5,-42.5 + pos: -35.5,-68.5 parent: 2 - uid: 5341 components: - type: Transform - pos: 45.5,-42.5 + pos: -39.5,-70.5 parent: 2 - uid: 5342 components: - type: Transform - pos: 43.5,-42.5 + pos: -36.5,-70.5 parent: 2 - uid: 5343 components: - type: Transform - pos: 42.5,-43.5 + pos: -38.5,-70.5 parent: 2 - uid: 5344 components: - type: Transform - pos: 42.5,-45.5 + pos: -35.5,-70.5 parent: 2 - uid: 5345 components: - type: Transform - pos: 42.5,-44.5 + pos: -37.5,-70.5 parent: 2 - uid: 5346 components: - type: Transform - pos: 43.5,-45.5 + pos: -39.5,-72.5 parent: 2 - uid: 5347 components: - type: Transform - pos: 44.5,-45.5 + pos: -39.5,-74.5 parent: 2 - uid: 5348 components: - type: Transform - pos: 45.5,-43.5 + pos: -38.5,-72.5 parent: 2 - uid: 5349 components: - type: Transform - pos: 45.5,-44.5 + pos: -38.5,-73.5 parent: 2 - uid: 5350 components: - type: Transform - pos: 45.5,-41.5 + pos: -38.5,-74.5 parent: 2 - uid: 5351 components: - type: Transform - pos: 45.5,-40.5 + pos: -37.5,-72.5 parent: 2 - uid: 5352 components: - type: Transform - pos: 45.5,-39.5 + pos: -39.5,-73.5 parent: 2 - uid: 5353 components: - type: Transform - pos: 45.5,-37.5 + pos: -37.5,-73.5 parent: 2 - uid: 5354 components: - type: Transform - pos: 45.5,-38.5 + pos: -37.5,-74.5 parent: 2 - uid: 5355 components: - type: Transform - pos: 43.5,-37.5 + pos: -36.5,-72.5 parent: 2 - uid: 5356 components: - type: Transform - pos: 44.5,-37.5 + pos: -36.5,-74.5 parent: 2 - uid: 5357 components: - type: Transform - pos: 44.5,-38.5 + pos: -35.5,-72.5 parent: 2 - uid: 5358 components: - type: Transform - pos: 43.5,-38.5 + pos: -35.5,-73.5 parent: 2 - uid: 5359 components: - type: Transform - pos: 42.5,-38.5 + pos: -35.5,-74.5 parent: 2 - uid: 5360 components: - type: Transform - pos: 49.5,-48.5 + pos: -36.5,-73.5 parent: 2 - uid: 5361 components: - type: Transform - pos: 50.5,-48.5 + pos: -34.5,-74.5 parent: 2 - uid: 5362 components: - type: Transform - pos: 50.5,-49.5 + pos: -32.5,-74.5 parent: 2 - uid: 5363 components: - type: Transform - pos: 51.5,-49.5 + pos: -31.5,-74.5 parent: 2 - uid: 5364 components: - type: Transform - pos: 51.5,-50.5 + pos: -30.5,-74.5 parent: 2 - uid: 5365 components: - type: Transform - pos: 49.5,-50.5 + pos: -29.5,-74.5 parent: 2 - uid: 5366 components: - type: Transform - pos: 48.5,-50.5 + pos: -33.5,-74.5 parent: 2 - uid: 5367 components: - type: Transform - pos: 50.5,-50.5 + pos: -28.5,-74.5 parent: 2 - uid: 5368 components: - type: Transform - pos: 47.5,-50.5 + pos: -28.5,-73.5 parent: 2 - uid: 5369 components: - type: Transform - pos: 47.5,-49.5 + pos: -28.5,-72.5 parent: 2 - uid: 5370 components: - type: Transform - pos: 48.5,-49.5 + pos: -29.5,-73.5 parent: 2 - uid: 5371 components: - type: Transform - pos: 48.5,-48.5 + pos: -29.5,-72.5 parent: 2 - uid: 5372 components: - type: Transform - pos: 47.5,-48.5 + pos: -30.5,-73.5 parent: 2 - uid: 5373 components: - type: Transform - pos: 49.5,-49.5 + pos: -30.5,-72.5 parent: 2 - uid: 5374 components: - type: Transform - pos: 27.5,-61.5 + pos: -31.5,-73.5 parent: 2 - uid: 5375 components: - type: Transform - pos: 28.5,-61.5 + pos: -31.5,-72.5 parent: 2 - uid: 5376 components: - type: Transform - pos: 26.5,-60.5 + pos: -32.5,-73.5 parent: 2 - uid: 5377 components: - type: Transform - pos: 4.5,-58.5 + pos: -32.5,-72.5 parent: 2 - uid: 5378 components: - type: Transform - pos: 4.5,-59.5 + pos: -33.5,-73.5 parent: 2 - uid: 5379 components: - type: Transform - pos: 4.5,-60.5 + pos: -33.5,-72.5 parent: 2 - uid: 5380 components: - type: Transform - pos: 4.5,-61.5 + pos: -33.5,-70.5 parent: 2 - uid: 5381 components: - type: Transform - pos: 5.5,-61.5 + pos: -31.5,-70.5 parent: 2 - uid: 5382 components: - type: Transform - pos: 6.5,-61.5 + pos: -30.5,-70.5 parent: 2 - uid: 5383 components: - type: Transform - pos: 6.5,-62.5 + pos: -29.5,-70.5 parent: 2 - uid: 5384 components: - type: Transform - pos: 5.5,-58.5 + pos: -32.5,-70.5 parent: 2 - uid: 5385 components: - type: Transform - pos: 7.5,-58.5 + pos: -28.5,-70.5 parent: 2 - uid: 5386 components: - type: Transform - pos: 8.5,-58.5 + pos: -28.5,-69.5 parent: 2 - uid: 5387 components: - type: Transform - pos: 6.5,-58.5 + pos: -28.5,-67.5 parent: 2 - uid: 5388 components: - type: Transform - pos: 8.5,-59.5 + pos: -28.5,-66.5 parent: 2 - uid: 5389 components: - type: Transform - pos: 8.5,-60.5 + pos: -28.5,-65.5 parent: 2 - uid: 5390 components: - type: Transform - pos: 4.5,-65.5 + pos: -33.5,-66.5 parent: 2 - uid: 5391 components: - type: Transform - pos: 5.5,-65.5 + pos: -28.5,-68.5 parent: 2 - uid: 5392 components: - type: Transform - pos: 4.5,-66.5 + pos: -29.5,-68.5 parent: 2 - uid: 5393 components: - type: Transform - pos: 3.5,-66.5 + pos: -29.5,-66.5 parent: 2 - uid: 5394 components: - type: Transform - pos: -20.5,-66.5 + pos: -29.5,-65.5 parent: 2 - uid: 5395 components: - type: Transform - pos: -22.5,-66.5 + pos: -31.5,-66.5 parent: 2 - uid: 5396 components: - type: Transform - pos: -21.5,-66.5 + pos: -30.5,-66.5 parent: 2 - uid: 5397 components: - type: Transform - pos: -22.5,-65.5 + pos: -32.5,-66.5 parent: 2 - uid: 5398 components: - type: Transform - pos: -21.5,-65.5 + pos: -33.5,-68.5 parent: 2 - uid: 5399 components: - type: Transform - pos: -21.5,-56.5 + pos: -32.5,-68.5 parent: 2 - uid: 5400 components: - type: Transform - pos: -21.5,-53.5 + pos: -31.5,-68.5 parent: 2 - uid: 5401 components: - type: Transform - pos: -22.5,-53.5 + pos: -30.5,-68.5 parent: 2 - uid: 5402 components: - type: Transform - pos: -23.5,-53.5 + pos: -28.5,-71.5 parent: 2 - uid: 5403 components: - type: Transform - pos: -23.5,-55.5 + pos: -27.5,-71.5 parent: 2 - uid: 5404 components: - type: Transform - pos: -25.5,-55.5 + pos: -26.5,-71.5 parent: 2 - uid: 5405 components: - type: Transform - pos: -26.5,-55.5 + pos: -27.5,-72.5 parent: 2 - uid: 5406 components: - type: Transform - pos: -24.5,-55.5 + pos: -25.5,-70.5 parent: 2 - uid: 5407 components: - type: Transform - pos: -27.5,-54.5 + pos: -25.5,-68.5 parent: 2 - uid: 5408 components: - type: Transform - pos: -27.5,-53.5 + pos: -25.5,-69.5 parent: 2 - uid: 5409 components: - type: Transform - pos: -29.5,-48.5 + pos: -26.5,-67.5 parent: 2 - uid: 5410 components: - type: Transform - pos: -29.5,-49.5 + pos: -27.5,-67.5 parent: 2 - uid: 5411 components: - type: Transform - pos: -28.5,-49.5 + pos: -27.5,-66.5 parent: 2 - uid: 5412 components: - type: Transform - pos: -38.5,-53.5 + pos: -24.5,-70.5 parent: 2 - uid: 5413 components: - type: Transform - pos: -38.5,-54.5 + pos: -23.5,-71.5 parent: 2 - uid: 5414 components: - type: Transform - pos: -37.5,-52.5 + pos: -23.5,-72.5 parent: 2 - uid: 5415 components: - type: Transform - pos: -35.5,-52.5 + pos: -22.5,-72.5 parent: 2 - uid: 5416 components: - type: Transform - pos: -34.5,-52.5 + pos: -44.5,-53.5 parent: 2 - uid: 5417 components: - type: Transform - pos: -36.5,-52.5 + pos: -43.5,-53.5 parent: 2 - uid: 5418 components: - type: Transform - pos: -33.5,-53.5 + pos: -43.5,-54.5 parent: 2 - uid: 5419 components: - type: Transform - pos: -33.5,-55.5 + pos: -42.5,-53.5 parent: 2 - uid: 5420 components: - type: Transform - pos: -33.5,-54.5 + pos: -44.5,-54.5 parent: 2 - uid: 5421 components: - type: Transform - pos: -34.5,-56.5 + pos: -42.5,-54.5 parent: 2 - uid: 5422 components: - type: Transform - pos: -35.5,-56.5 + pos: -41.5,-53.5 parent: 2 - uid: 5423 components: - type: Transform - pos: -36.5,-56.5 + pos: -41.5,-54.5 parent: 2 - uid: 5424 components: - type: Transform - pos: -38.5,-57.5 + pos: -41.5,-52.5 parent: 2 - uid: 5425 components: - type: Transform - pos: -40.5,-57.5 + pos: -41.5,-51.5 parent: 2 - uid: 5426 components: - type: Transform - pos: -39.5,-57.5 + pos: -40.5,-50.5 parent: 2 - uid: 5427 components: - type: Transform - pos: -40.5,-55.5 + pos: -39.5,-50.5 parent: 2 - uid: 5428 components: - type: Transform - pos: -40.5,-56.5 + pos: -37.5,-49.5 parent: 2 - uid: 5429 components: - type: Transform - pos: -44.5,-58.5 + pos: -37.5,-48.5 parent: 2 - uid: 5430 components: - type: Transform - pos: -43.5,-58.5 + pos: -38.5,-48.5 parent: 2 - uid: 5431 components: - type: Transform - pos: -42.5,-58.5 + pos: -37.5,-46.5 parent: 2 - uid: 5432 components: - type: Transform - pos: -40.5,-58.5 + pos: -36.5,-46.5 parent: 2 - uid: 5433 components: - type: Transform - pos: -41.5,-58.5 + pos: -36.5,-44.5 parent: 2 - uid: 5434 components: - type: Transform - pos: -42.5,-59.5 + pos: -36.5,-45.5 parent: 2 - uid: 5435 components: - type: Transform - pos: -40.5,-59.5 + pos: -35.5,-44.5 parent: 2 - uid: 5436 components: - type: Transform - pos: -41.5,-59.5 + pos: -35.5,-46.5 parent: 2 - uid: 5437 components: - type: Transform - pos: -40.5,-60.5 + pos: -35.5,-45.5 parent: 2 - uid: 5438 components: - type: Transform - pos: -40.5,-62.5 + pos: -34.5,-43.5 parent: 2 - uid: 5439 components: - type: Transform - pos: -40.5,-61.5 + pos: -33.5,-43.5 parent: 2 - uid: 5440 components: - type: Transform - pos: -40.5,-63.5 + pos: -32.5,-43.5 parent: 2 - uid: 5441 components: - type: Transform - pos: -40.5,-64.5 + pos: -32.5,-44.5 parent: 2 - uid: 5442 components: - type: Transform - pos: -40.5,-65.5 + pos: -32.5,-46.5 parent: 2 - uid: 5443 components: - type: Transform - pos: -40.5,-66.5 + pos: -32.5,-47.5 parent: 2 - uid: 5444 components: - type: Transform - pos: -40.5,-68.5 + pos: -32.5,-45.5 parent: 2 - uid: 5445 components: - type: Transform - pos: -40.5,-70.5 + pos: -33.5,-47.5 parent: 2 - uid: 5446 components: - type: Transform - pos: -40.5,-71.5 + pos: -34.5,-47.5 parent: 2 - uid: 5447 components: - type: Transform - pos: -40.5,-69.5 + pos: -39.5,-44.5 parent: 2 - uid: 5448 components: - type: Transform - pos: -40.5,-72.5 + pos: -39.5,-42.5 parent: 2 - uid: 5449 components: - type: Transform - pos: -40.5,-73.5 + pos: -39.5,-41.5 parent: 2 - uid: 5450 components: - type: Transform - pos: -40.5,-74.5 + pos: -39.5,-40.5 parent: 2 - uid: 5451 components: - type: Transform - pos: -40.5,-67.5 + pos: -39.5,-39.5 parent: 2 - uid: 5452 components: - type: Transform - pos: -41.5,-72.5 + pos: -39.5,-38.5 parent: 2 - uid: 5453 components: - type: Transform - pos: -41.5,-70.5 + pos: -39.5,-43.5 parent: 2 - uid: 5454 components: - type: Transform - pos: -41.5,-69.5 + pos: -39.5,-37.5 parent: 2 - uid: 5455 components: - type: Transform - pos: -41.5,-68.5 + pos: -40.5,-42.5 parent: 2 - uid: 5456 components: - type: Transform - pos: -41.5,-67.5 + pos: -40.5,-43.5 parent: 2 - uid: 5457 components: - type: Transform - pos: -41.5,-71.5 + pos: -40.5,-41.5 parent: 2 - uid: 5458 components: - type: Transform - pos: -41.5,-66.5 + pos: -40.5,-40.5 parent: 2 - uid: 5459 components: - type: Transform - pos: -41.5,-65.5 + pos: -40.5,-39.5 parent: 2 - uid: 5460 components: - type: Transform - pos: -41.5,-64.5 + pos: -40.5,-38.5 parent: 2 - uid: 5461 components: - type: Transform - pos: -39.5,-63.5 + pos: -40.5,-44.5 parent: 2 - uid: 5462 components: - type: Transform - pos: -38.5,-63.5 + pos: -40.5,-37.5 parent: 2 - uid: 5463 components: - type: Transform - pos: -38.5,-64.5 + pos: -38.5,-38.5 parent: 2 - uid: 5464 components: - type: Transform - pos: -37.5,-63.5 + pos: -38.5,-39.5 parent: 2 - uid: 5465 components: - type: Transform - pos: -39.5,-64.5 + pos: -37.5,-39.5 parent: 2 - uid: 5466 components: - type: Transform - pos: -37.5,-64.5 + pos: -36.5,-39.5 parent: 2 - uid: 5467 components: - type: Transform - pos: -36.5,-63.5 + pos: -36.5,-40.5 parent: 2 - uid: 5468 components: - type: Transform - pos: -35.5,-63.5 + pos: -37.5,-40.5 parent: 2 - uid: 5469 components: - type: Transform - pos: -35.5,-64.5 + pos: -38.5,-40.5 parent: 2 - uid: 5470 components: - type: Transform - pos: -36.5,-64.5 + pos: -36.5,-41.5 parent: 2 - uid: 5471 components: - type: Transform - pos: -39.5,-62.5 + pos: -41.5,-45.5 parent: 2 - uid: 5472 components: - type: Transform - pos: -39.5,-60.5 + pos: -41.5,-44.5 parent: 2 - uid: 5473 components: - type: Transform - pos: -39.5,-61.5 + pos: -42.5,-45.5 parent: 2 - uid: 5474 components: - type: Transform - pos: -38.5,-59.5 + pos: -42.5,-44.5 parent: 2 - uid: 5475 components: - type: Transform - pos: -38.5,-60.5 + pos: -42.5,-43.5 parent: 2 - uid: 5476 components: - type: Transform - pos: -37.5,-60.5 + pos: -41.5,-43.5 parent: 2 - uid: 5477 components: - type: Transform - pos: -36.5,-60.5 + pos: -43.5,-45.5 parent: 2 - uid: 5478 components: - type: Transform - pos: -35.5,-61.5 + pos: -43.5,-44.5 parent: 2 - uid: 5479 components: - type: Transform - pos: -35.5,-62.5 + pos: -43.5,-43.5 parent: 2 - uid: 5480 components: - type: Transform - pos: -34.5,-61.5 + pos: -43.5,-42.5 parent: 2 - uid: 5481 components: - type: Transform - pos: -33.5,-61.5 + pos: -43.5,-40.5 parent: 2 - uid: 5482 components: - type: Transform - pos: -33.5,-62.5 + pos: -43.5,-39.5 parent: 2 - uid: 5483 components: - type: Transform - pos: -33.5,-64.5 + pos: -43.5,-38.5 parent: 2 - uid: 5484 components: - type: Transform - pos: -32.5,-62.5 + pos: -43.5,-41.5 parent: 2 - uid: 5485 components: - type: Transform - pos: -33.5,-63.5 + pos: -43.5,-37.5 parent: 2 - uid: 5486 components: - type: Transform - pos: -32.5,-63.5 + pos: -43.5,-36.5 parent: 2 - uid: 5487 components: - type: Transform - pos: -32.5,-64.5 + pos: -43.5,-35.5 parent: 2 - uid: 5488 components: - type: Transform - pos: -31.5,-63.5 + pos: -44.5,-42.5 parent: 2 - uid: 5489 components: - type: Transform - pos: -31.5,-64.5 + pos: -44.5,-40.5 parent: 2 - uid: 5490 components: - type: Transform - pos: -31.5,-62.5 + pos: -44.5,-39.5 parent: 2 - uid: 5491 components: - type: Transform - pos: -30.5,-63.5 + pos: -44.5,-41.5 parent: 2 - uid: 5492 components: - type: Transform - pos: -30.5,-64.5 + pos: -44.5,-38.5 parent: 2 - uid: 5493 components: - type: Transform - pos: -29.5,-64.5 + pos: -44.5,-37.5 parent: 2 - uid: 5494 components: - type: Transform - pos: -28.5,-64.5 + pos: -44.5,-35.5 parent: 2 - uid: 5495 components: - type: Transform - pos: -39.5,-66.5 + pos: -44.5,-36.5 parent: 2 - uid: 5496 components: - type: Transform - pos: -37.5,-66.5 + pos: -44.5,-34.5 parent: 2 - uid: 5497 components: - type: Transform - pos: -36.5,-66.5 + pos: -45.5,-36.5 parent: 2 - uid: 5498 components: - type: Transform - pos: -35.5,-66.5 + pos: -46.5,-36.5 parent: 2 - uid: 5499 components: - type: Transform - pos: -38.5,-66.5 + pos: -46.5,-37.5 parent: 2 - uid: 5500 components: - type: Transform - pos: -39.5,-68.5 + pos: -47.5,-36.5 parent: 2 - uid: 5501 components: - type: Transform - pos: -37.5,-68.5 + pos: -47.5,-37.5 parent: 2 - uid: 5502 components: - type: Transform - pos: -36.5,-68.5 + pos: -45.5,-37.5 parent: 2 - uid: 5503 components: - type: Transform - pos: -38.5,-68.5 + pos: -48.5,-36.5 parent: 2 - uid: 5504 components: - type: Transform - pos: -35.5,-68.5 + pos: -49.5,-36.5 parent: 2 - uid: 5505 components: - type: Transform - pos: -39.5,-70.5 + pos: -49.5,-37.5 parent: 2 - uid: 5506 components: - type: Transform - pos: -36.5,-70.5 + pos: -50.5,-36.5 parent: 2 - uid: 5507 components: - type: Transform - pos: -38.5,-70.5 + pos: -50.5,-37.5 parent: 2 - uid: 5508 components: - type: Transform - pos: -35.5,-70.5 + pos: -51.5,-36.5 parent: 2 - uid: 5509 components: - type: Transform - pos: -37.5,-70.5 + pos: -51.5,-37.5 parent: 2 - uid: 5510 components: - type: Transform - pos: -39.5,-72.5 + pos: -48.5,-37.5 parent: 2 - uid: 5511 components: - type: Transform - pos: -39.5,-74.5 + pos: -52.5,-35.5 parent: 2 - uid: 5512 components: - type: Transform - pos: -38.5,-72.5 + pos: -51.5,-35.5 parent: 2 - uid: 5513 components: - type: Transform - pos: -38.5,-73.5 + pos: -51.5,-34.5 parent: 2 - uid: 5514 components: - type: Transform - pos: -38.5,-74.5 + pos: -50.5,-35.5 parent: 2 - uid: 5515 components: - type: Transform - pos: -37.5,-72.5 + pos: -50.5,-34.5 parent: 2 - uid: 5516 components: - type: Transform - pos: -39.5,-73.5 + pos: -52.5,-34.5 parent: 2 - uid: 5517 components: - type: Transform - pos: -37.5,-73.5 + pos: -50.5,-33.5 parent: 2 - uid: 5518 components: - type: Transform - pos: -37.5,-74.5 + pos: -49.5,-33.5 parent: 2 - uid: 5519 components: - type: Transform - pos: -36.5,-72.5 + pos: -47.5,-33.5 parent: 2 - uid: 5520 components: - type: Transform - pos: -36.5,-74.5 + pos: -46.5,-33.5 parent: 2 - uid: 5521 components: - type: Transform - pos: -35.5,-72.5 + pos: -48.5,-33.5 parent: 2 - uid: 5522 components: - type: Transform - pos: -35.5,-73.5 + pos: -51.5,-38.5 parent: 2 - uid: 5523 components: - type: Transform - pos: -35.5,-74.5 + pos: -51.5,-40.5 parent: 2 - uid: 5524 components: - type: Transform - pos: -36.5,-73.5 + pos: -51.5,-41.5 parent: 2 - uid: 5525 components: - type: Transform - pos: -34.5,-74.5 + pos: -51.5,-42.5 parent: 2 - uid: 5526 components: - type: Transform - pos: -32.5,-74.5 + pos: -51.5,-39.5 parent: 2 - uid: 5527 components: - type: Transform - pos: -31.5,-74.5 + pos: -51.5,-43.5 parent: 2 - uid: 5528 components: - type: Transform - pos: -30.5,-74.5 + pos: -50.5,-38.5 parent: 2 - uid: 5529 components: - type: Transform - pos: -29.5,-74.5 + pos: -50.5,-39.5 parent: 2 - uid: 5530 components: - type: Transform - pos: -33.5,-74.5 + pos: -50.5,-40.5 parent: 2 - uid: 5531 components: - type: Transform - pos: -28.5,-74.5 + pos: -50.5,-41.5 parent: 2 - uid: 5532 components: - type: Transform - pos: -28.5,-73.5 + pos: -50.5,-42.5 parent: 2 - uid: 5533 components: - type: Transform - pos: -28.5,-72.5 + pos: -50.5,-44.5 parent: 2 - uid: 5534 components: - type: Transform - pos: -29.5,-73.5 + pos: -50.5,-43.5 parent: 2 - uid: 5535 components: - type: Transform - pos: -29.5,-72.5 + pos: -51.5,-44.5 parent: 2 - uid: 5536 components: - type: Transform - pos: -30.5,-73.5 + pos: -53.5,-43.5 parent: 2 - uid: 5537 components: - type: Transform - pos: -30.5,-72.5 + pos: -52.5,-43.5 parent: 2 - uid: 5538 components: - type: Transform - pos: -31.5,-73.5 + pos: -52.5,-44.5 parent: 2 - uid: 5539 components: - type: Transform - pos: -31.5,-72.5 + pos: -53.5,-44.5 parent: 2 - uid: 5540 components: - type: Transform - pos: -32.5,-73.5 + pos: -52.5,-45.5 parent: 2 - uid: 5541 components: - type: Transform - pos: -32.5,-72.5 + pos: -51.5,-45.5 parent: 2 - uid: 5542 components: - type: Transform - pos: -33.5,-73.5 + pos: -49.5,-43.5 parent: 2 - uid: 5543 components: - type: Transform - pos: -33.5,-72.5 + pos: -49.5,-44.5 parent: 2 - uid: 5544 components: - type: Transform - pos: -33.5,-70.5 + pos: -48.5,-43.5 parent: 2 - uid: 5545 components: - type: Transform - pos: -31.5,-70.5 + pos: -48.5,-44.5 parent: 2 - uid: 5546 components: - type: Transform - pos: -30.5,-70.5 + pos: -47.5,-43.5 parent: 2 - uid: 5547 components: - type: Transform - pos: -29.5,-70.5 + pos: -47.5,-44.5 parent: 2 - uid: 5548 components: - type: Transform - pos: -32.5,-70.5 + pos: -46.5,-43.5 parent: 2 - uid: 5549 components: - type: Transform - pos: -28.5,-70.5 + pos: -46.5,-44.5 parent: 2 - uid: 5550 components: - type: Transform - pos: -28.5,-69.5 + pos: -45.5,-43.5 parent: 2 - uid: 5551 components: - type: Transform - pos: -28.5,-67.5 + pos: -45.5,-44.5 parent: 2 - uid: 5552 components: - type: Transform - pos: -28.5,-66.5 + pos: -44.5,-43.5 parent: 2 - uid: 5553 components: - type: Transform - pos: -28.5,-65.5 + pos: -44.5,-44.5 parent: 2 - uid: 5554 components: - type: Transform - pos: -33.5,-66.5 + pos: -47.5,-47.5 parent: 2 - uid: 5555 components: - type: Transform - pos: -28.5,-68.5 + pos: -45.5,-47.5 parent: 2 - uid: 5556 components: - type: Transform - pos: -29.5,-68.5 + pos: -46.5,-47.5 parent: 2 - uid: 5557 components: - type: Transform - pos: -29.5,-66.5 + pos: -43.5,-46.5 parent: 2 - uid: 5558 components: - type: Transform - pos: -29.5,-65.5 + pos: -54.5,-41.5 parent: 2 - uid: 5559 components: - type: Transform - pos: -31.5,-66.5 + pos: -54.5,-40.5 parent: 2 - uid: 5560 components: - type: Transform - pos: -30.5,-66.5 + pos: -54.5,-38.5 parent: 2 - uid: 5561 components: - type: Transform - pos: -32.5,-66.5 + pos: -54.5,-37.5 parent: 2 - uid: 5562 components: - type: Transform - pos: -33.5,-68.5 + pos: -54.5,-39.5 parent: 2 - uid: 5563 components: - type: Transform - pos: -32.5,-68.5 + pos: -54.5,-26.5 parent: 2 - uid: 5564 components: - type: Transform - pos: -31.5,-68.5 + pos: -54.5,-24.5 parent: 2 - uid: 5565 components: - type: Transform - pos: -30.5,-68.5 + pos: -54.5,-23.5 parent: 2 - uid: 5566 components: - type: Transform - pos: -28.5,-71.5 + pos: -54.5,-25.5 parent: 2 - uid: 5567 components: - type: Transform - pos: -27.5,-71.5 + pos: -55.5,-22.5 parent: 2 - uid: 5568 components: - type: Transform - pos: -26.5,-71.5 + pos: -55.5,-24.5 parent: 2 - uid: 5569 components: - type: Transform - pos: -27.5,-72.5 + pos: -55.5,-25.5 parent: 2 - uid: 5570 components: - type: Transform - pos: -25.5,-70.5 + pos: -55.5,-23.5 parent: 2 - uid: 5571 components: - type: Transform - pos: -25.5,-68.5 + pos: -56.5,-24.5 parent: 2 - uid: 5572 components: - type: Transform - pos: -25.5,-69.5 + pos: -56.5,-25.5 parent: 2 - uid: 5573 components: - type: Transform - pos: -26.5,-67.5 + pos: -53.5,-23.5 parent: 2 - uid: 5574 components: - type: Transform - pos: -27.5,-67.5 + pos: -52.5,-26.5 parent: 2 - uid: 5575 components: - type: Transform - pos: -27.5,-66.5 + pos: -50.5,-26.5 parent: 2 - uid: 5576 components: - type: Transform - pos: -24.5,-70.5 + pos: -49.5,-26.5 parent: 2 - uid: 5577 components: - type: Transform - pos: -23.5,-71.5 + pos: -51.5,-26.5 parent: 2 - uid: 5578 components: - type: Transform - pos: -23.5,-72.5 + pos: -51.5,-24.5 parent: 2 - uid: 5579 components: - type: Transform - pos: -22.5,-72.5 + pos: -51.5,-25.5 parent: 2 - uid: 5580 components: - type: Transform - pos: -44.5,-53.5 + pos: -50.5,-24.5 parent: 2 - uid: 5581 components: - type: Transform - pos: -43.5,-53.5 + pos: -49.5,-24.5 parent: 2 - uid: 5582 components: - type: Transform - pos: -43.5,-54.5 + pos: -49.5,-25.5 parent: 2 - uid: 5583 components: - type: Transform - pos: -42.5,-53.5 + pos: -49.5,-27.5 parent: 2 - uid: 5584 components: - type: Transform - pos: -44.5,-54.5 + pos: -48.5,-27.5 parent: 2 - uid: 5585 components: - type: Transform - pos: -42.5,-54.5 + pos: -47.5,-27.5 parent: 2 - uid: 5586 components: - type: Transform - pos: -41.5,-53.5 + pos: -46.5,-27.5 parent: 2 - uid: 5587 components: - type: Transform - pos: -41.5,-54.5 + pos: -45.5,-27.5 parent: 2 - uid: 5588 components: - type: Transform - pos: -41.5,-52.5 + pos: -44.5,-27.5 parent: 2 - uid: 5589 components: - type: Transform - pos: -41.5,-51.5 + pos: -45.5,-26.5 parent: 2 - uid: 5590 components: - type: Transform - pos: -40.5,-50.5 + pos: -45.5,-24.5 parent: 2 - uid: 5591 components: - type: Transform - pos: -39.5,-50.5 + pos: -45.5,-25.5 parent: 2 - uid: 5592 components: - type: Transform - pos: -37.5,-49.5 + pos: -45.5,-23.5 parent: 2 - uid: 5593 components: - type: Transform - pos: -37.5,-48.5 + pos: -48.5,-23.5 parent: 2 - uid: 5594 components: - type: Transform - pos: -38.5,-48.5 + pos: -46.5,-23.5 parent: 2 - uid: 5595 components: - type: Transform - pos: -37.5,-46.5 + pos: -47.5,-23.5 parent: 2 - uid: 5596 components: - type: Transform - pos: -36.5,-46.5 + pos: -47.5,-22.5 parent: 2 - uid: 5597 components: - type: Transform - pos: -36.5,-44.5 + pos: -46.5,-22.5 parent: 2 - uid: 5598 components: - type: Transform - pos: -36.5,-45.5 + pos: -44.5,-24.5 parent: 2 - uid: 5599 components: - type: Transform - pos: -35.5,-44.5 + pos: -44.5,-23.5 parent: 2 - uid: 5600 components: - type: Transform - pos: -35.5,-46.5 + pos: -42.5,-26.5 parent: 2 - uid: 5601 components: - type: Transform - pos: -35.5,-45.5 + pos: -41.5,-26.5 parent: 2 - uid: 5602 components: - type: Transform - pos: -34.5,-43.5 + pos: -41.5,-27.5 parent: 2 - uid: 5603 components: - type: Transform - pos: -33.5,-43.5 + pos: -41.5,-29.5 parent: 2 - uid: 5604 components: - type: Transform - pos: -32.5,-43.5 + pos: -41.5,-30.5 parent: 2 - uid: 5605 components: - type: Transform - pos: -32.5,-44.5 + pos: -41.5,-28.5 parent: 2 - uid: 5606 components: - type: Transform - pos: -32.5,-46.5 + pos: -42.5,-28.5 parent: 2 - uid: 5607 components: - type: Transform - pos: -32.5,-47.5 + pos: -40.5,-27.5 parent: 2 - uid: 5608 components: - type: Transform - pos: -32.5,-45.5 + pos: -39.5,-27.5 parent: 2 - uid: 5609 components: - type: Transform - pos: -33.5,-47.5 + pos: -40.5,-31.5 parent: 2 - uid: 5610 components: - type: Transform - pos: -34.5,-47.5 + pos: -39.5,-31.5 parent: 2 - uid: 5611 components: - type: Transform - pos: -39.5,-44.5 + pos: -37.5,-31.5 parent: 2 - uid: 5612 components: - type: Transform - pos: -39.5,-42.5 + pos: -38.5,-31.5 parent: 2 - uid: 5613 components: - type: Transform - pos: -39.5,-41.5 + pos: -37.5,-29.5 parent: 2 - uid: 5614 components: - type: Transform - pos: -39.5,-40.5 + pos: -37.5,-30.5 parent: 2 - uid: 5615 components: - type: Transform - pos: -39.5,-39.5 + pos: -39.5,-32.5 parent: 2 - uid: 5616 components: - type: Transform - pos: -39.5,-38.5 + pos: -37.5,-32.5 parent: 2 - uid: 5617 components: - type: Transform - pos: -39.5,-43.5 + pos: -38.5,-32.5 parent: 2 - uid: 5618 components: - type: Transform - pos: -39.5,-37.5 + pos: -37.5,-33.5 parent: 2 - uid: 5619 components: - type: Transform - pos: -40.5,-42.5 + pos: -35.5,-33.5 parent: 2 - uid: 5620 components: - type: Transform - pos: -40.5,-43.5 + pos: -34.5,-33.5 parent: 2 - uid: 5621 components: - type: Transform - pos: -40.5,-41.5 + pos: -33.5,-33.5 parent: 2 - uid: 5622 components: - type: Transform - pos: -40.5,-40.5 + pos: -32.5,-33.5 parent: 2 - uid: 5623 components: - type: Transform - pos: -40.5,-39.5 + pos: -36.5,-33.5 parent: 2 - uid: 5624 components: - type: Transform - pos: -40.5,-38.5 + pos: -31.5,-33.5 parent: 2 - uid: 5625 components: - type: Transform - pos: -40.5,-44.5 + pos: -30.5,-33.5 parent: 2 - uid: 5626 components: - type: Transform - pos: -40.5,-37.5 + pos: -31.5,-32.5 parent: 2 - uid: 5627 components: - type: Transform - pos: -38.5,-38.5 + pos: -31.5,-30.5 parent: 2 - uid: 5628 components: - type: Transform - pos: -38.5,-39.5 + pos: -31.5,-31.5 parent: 2 - uid: 5629 components: - type: Transform - pos: -37.5,-39.5 + pos: -31.5,-29.5 parent: 2 - uid: 5630 components: - type: Transform - pos: -36.5,-39.5 + pos: -30.5,-29.5 parent: 2 - uid: 5631 components: - type: Transform - pos: -36.5,-40.5 + pos: -29.5,-29.5 parent: 2 - uid: 5632 components: - type: Transform - pos: -37.5,-40.5 + pos: -29.5,-30.5 parent: 2 - uid: 5633 components: - type: Transform - pos: -38.5,-40.5 + pos: -30.5,-30.5 parent: 2 - uid: 5634 components: - type: Transform - pos: -36.5,-41.5 + pos: -30.5,-32.5 parent: 2 - uid: 5635 components: - type: Transform - pos: -41.5,-45.5 + pos: -29.5,-32.5 parent: 2 - uid: 5636 components: - type: Transform - pos: -41.5,-44.5 + pos: -28.5,-32.5 parent: 2 - uid: 5637 components: - type: Transform - pos: -42.5,-45.5 + pos: -29.5,-31.5 parent: 2 - uid: 5638 components: - type: Transform - pos: -42.5,-44.5 + pos: -28.5,-31.5 parent: 2 - uid: 5639 components: - type: Transform - pos: -42.5,-43.5 + pos: -28.5,-26.5 parent: 2 - uid: 5640 components: - type: Transform - pos: -41.5,-43.5 + pos: -27.5,-26.5 parent: 2 - uid: 5641 components: - type: Transform - pos: -43.5,-45.5 + pos: -29.5,-26.5 parent: 2 - uid: 5642 components: - type: Transform - pos: -43.5,-44.5 + pos: -28.5,-28.5 parent: 2 - uid: 5643 components: - type: Transform - pos: -43.5,-43.5 + pos: -28.5,-27.5 parent: 2 - uid: 5644 components: - type: Transform - pos: -43.5,-42.5 + pos: -28.5,-25.5 parent: 2 - uid: 5645 components: - type: Transform - pos: -43.5,-40.5 + pos: -26.5,-25.5 parent: 2 - uid: 5646 components: - type: Transform - pos: -43.5,-39.5 + pos: -25.5,-25.5 parent: 2 - uid: 5647 components: - type: Transform - pos: -43.5,-38.5 + pos: -24.5,-25.5 parent: 2 - uid: 5648 components: - type: Transform - pos: -43.5,-41.5 + pos: -23.5,-25.5 parent: 2 - uid: 5649 components: - type: Transform - pos: -43.5,-37.5 + pos: -27.5,-25.5 parent: 2 - uid: 5650 components: - type: Transform - pos: -43.5,-36.5 + pos: -21.5,-26.5 parent: 2 - uid: 5651 components: - type: Transform - pos: -43.5,-35.5 + pos: -20.5,-26.5 parent: 2 - uid: 5652 components: - type: Transform - pos: -44.5,-42.5 + pos: -20.5,-27.5 parent: 2 - uid: 5653 components: - type: Transform - pos: -44.5,-40.5 + pos: -21.5,-27.5 parent: 2 - uid: 5654 components: - type: Transform - pos: -44.5,-39.5 + pos: -19.5,-27.5 parent: 2 - uid: 5655 components: - type: Transform - pos: -44.5,-41.5 + pos: -20.5,-25.5 parent: 2 - uid: 5656 components: - type: Transform - pos: -44.5,-38.5 + pos: -18.5,-25.5 parent: 2 - uid: 5657 components: - type: Transform - pos: -44.5,-37.5 + pos: -19.5,-25.5 parent: 2 - uid: 5658 components: - type: Transform - pos: -44.5,-35.5 + pos: -18.5,-24.5 parent: 2 - uid: 5659 components: - type: Transform - pos: -44.5,-36.5 + pos: -18.5,-26.5 parent: 2 - uid: 5660 components: - type: Transform - pos: -44.5,-34.5 + pos: -17.5,-26.5 parent: 2 - uid: 5661 components: - type: Transform - pos: -45.5,-36.5 + pos: -16.5,-24.5 parent: 2 - uid: 5662 components: - type: Transform - pos: -46.5,-36.5 + pos: -17.5,-21.5 parent: 2 - uid: 5663 components: - type: Transform - pos: -46.5,-37.5 + pos: -17.5,-19.5 parent: 2 - uid: 5664 components: - type: Transform - pos: -47.5,-36.5 + pos: -17.5,-20.5 parent: 2 - uid: 5665 components: - type: Transform - pos: -47.5,-37.5 + pos: -18.5,-29.5 parent: 2 - uid: 5666 components: - type: Transform - pos: -45.5,-37.5 + pos: -18.5,-30.5 parent: 2 - uid: 5667 components: - type: Transform - pos: -48.5,-36.5 + pos: -18.5,-31.5 parent: 2 - uid: 5668 components: - type: Transform - pos: -49.5,-36.5 + pos: -20.5,-30.5 parent: 2 - uid: 5669 components: - type: Transform - pos: -49.5,-37.5 + pos: -19.5,-30.5 parent: 2 - uid: 5670 components: - type: Transform - pos: -50.5,-36.5 + pos: -17.5,-30.5 parent: 2 - uid: 5671 components: - type: Transform - pos: -50.5,-37.5 + pos: -17.5,-31.5 parent: 2 - uid: 5672 components: - type: Transform - pos: -51.5,-36.5 + pos: -16.5,-31.5 parent: 2 - uid: 5673 components: - type: Transform - pos: -51.5,-37.5 + pos: -13.5,-33.5 parent: 2 - uid: 5674 components: - type: Transform - pos: -48.5,-37.5 + pos: -13.5,-32.5 parent: 2 - uid: 5675 components: - type: Transform - pos: -52.5,-35.5 + pos: -12.5,-32.5 parent: 2 - uid: 5676 components: - type: Transform - pos: -51.5,-35.5 + pos: -36.5,-34.5 parent: 2 - uid: 5677 components: - type: Transform - pos: -51.5,-34.5 + pos: -34.5,-34.5 parent: 2 - uid: 5678 components: - type: Transform - pos: -50.5,-35.5 + pos: -35.5,-34.5 parent: 2 - uid: 5679 components: - type: Transform - pos: -50.5,-34.5 + pos: -41.5,-22.5 parent: 2 - uid: 5680 components: - type: Transform - pos: -52.5,-34.5 + pos: -41.5,-23.5 parent: 2 - uid: 5681 components: - type: Transform - pos: -50.5,-33.5 + pos: -40.5,-22.5 parent: 2 - uid: 5682 components: - type: Transform - pos: -49.5,-33.5 + pos: -40.5,-23.5 parent: 2 - uid: 5683 components: - type: Transform - pos: -47.5,-33.5 + pos: -39.5,-22.5 parent: 2 - uid: 5684 components: - type: Transform - pos: -46.5,-33.5 + pos: -37.5,-22.5 parent: 2 - uid: 5685 components: - type: Transform - pos: -48.5,-33.5 + pos: -38.5,-22.5 parent: 2 - uid: 5686 components: - type: Transform - pos: -51.5,-38.5 + pos: -37.5,-24.5 parent: 2 - uid: 5687 components: - type: Transform - pos: -51.5,-40.5 + pos: -58.5,-44.5 parent: 2 - uid: 5688 components: - type: Transform - pos: -51.5,-41.5 + pos: -57.5,-47.5 parent: 2 - uid: 5689 components: - type: Transform - pos: -51.5,-42.5 + pos: -57.5,-46.5 parent: 2 - uid: 5690 components: - type: Transform - pos: -51.5,-39.5 + pos: -58.5,-48.5 parent: 2 - uid: 5691 components: - type: Transform - pos: -51.5,-43.5 + pos: -56.5,-48.5 parent: 2 - uid: 5692 components: - type: Transform - pos: -50.5,-38.5 + pos: -55.5,-48.5 parent: 2 - uid: 5693 components: - type: Transform - pos: -50.5,-39.5 + pos: -57.5,-48.5 parent: 2 - uid: 5694 components: - type: Transform - pos: -50.5,-40.5 + pos: -55.5,-50.5 parent: 2 - uid: 5695 components: - type: Transform - pos: -50.5,-41.5 + pos: -53.5,-50.5 parent: 2 - uid: 5696 components: - type: Transform - pos: -50.5,-42.5 + pos: -52.5,-50.5 parent: 2 - uid: 5697 components: - type: Transform - pos: -50.5,-44.5 + pos: -51.5,-50.5 parent: 2 - uid: 5698 components: - type: Transform - pos: -50.5,-43.5 + pos: -54.5,-50.5 parent: 2 - uid: 5699 components: - type: Transform - pos: -51.5,-44.5 + pos: -54.5,-51.5 parent: 2 - uid: 5700 components: - type: Transform - pos: -53.5,-43.5 + pos: -53.5,-51.5 parent: 2 - uid: 5701 components: - type: Transform - pos: -52.5,-43.5 + pos: -49.5,-51.5 parent: 2 - uid: 5702 components: - type: Transform - pos: -52.5,-44.5 + pos: -49.5,-52.5 parent: 2 - uid: 5703 components: - type: Transform - pos: -53.5,-44.5 + pos: -51.5,-52.5 parent: 2 - uid: 5704 components: - type: Transform - pos: -52.5,-45.5 + pos: -50.5,-52.5 parent: 2 - uid: 5705 components: - type: Transform - pos: -51.5,-45.5 + pos: -50.5,-53.5 parent: 2 - uid: 5706 components: - type: Transform - pos: -49.5,-43.5 + pos: -51.5,-53.5 parent: 2 - uid: 5707 components: - type: Transform - pos: -49.5,-44.5 + pos: -50.5,-54.5 parent: 2 - uid: 5708 components: - type: Transform - pos: -48.5,-43.5 + pos: -48.5,-54.5 parent: 2 - uid: 5709 components: - type: Transform - pos: -48.5,-44.5 + pos: -49.5,-54.5 parent: 2 - uid: 5710 components: - type: Transform - pos: -47.5,-43.5 + pos: -48.5,-53.5 parent: 2 - uid: 5711 components: - type: Transform - pos: -47.5,-44.5 + pos: -48.5,-52.5 parent: 2 - uid: 5712 components: - type: Transform - pos: -46.5,-43.5 + pos: -49.5,-55.5 parent: 2 - uid: 5713 components: - type: Transform - pos: -46.5,-44.5 + pos: -47.5,-55.5 parent: 2 - uid: 5714 components: - type: Transform - pos: -45.5,-43.5 + pos: -46.5,-55.5 parent: 2 - uid: 5715 components: - type: Transform - pos: -45.5,-44.5 + pos: -48.5,-55.5 parent: 2 - uid: 5716 components: - type: Transform - pos: -44.5,-43.5 + pos: -44.5,-55.5 parent: 2 - uid: 5717 components: - type: Transform - pos: -44.5,-44.5 + pos: -45.5,-55.5 parent: 2 - uid: 5718 components: - type: Transform - pos: -47.5,-47.5 + pos: -48.5,-56.5 parent: 2 - uid: 5719 components: - type: Transform - pos: -45.5,-47.5 + pos: -44.5,-56.5 parent: 2 - uid: 5720 components: - type: Transform - pos: -46.5,-47.5 + pos: -44.5,-57.5 parent: 2 - uid: 5721 components: - type: Transform - pos: -43.5,-46.5 + pos: -67.5,-22.5 parent: 2 - uid: 5722 components: - type: Transform - pos: -54.5,-41.5 + pos: -66.5,-23.5 parent: 2 - uid: 5723 components: - type: Transform - pos: -54.5,-40.5 + pos: -66.5,-25.5 parent: 2 - uid: 5724 components: - type: Transform - pos: -54.5,-38.5 + pos: -67.5,-25.5 parent: 2 - uid: 5725 components: - type: Transform - pos: -54.5,-37.5 + pos: -65.5,-25.5 parent: 2 - uid: 5726 components: - type: Transform - pos: -54.5,-39.5 + pos: -61.5,-23.5 parent: 2 - uid: 5727 components: - type: Transform - pos: -54.5,-26.5 + pos: -60.5,-23.5 parent: 2 - uid: 5728 components: - type: Transform - pos: -54.5,-24.5 + pos: -60.5,-24.5 parent: 2 - uid: 5729 components: - type: Transform - pos: -54.5,-23.5 + pos: -71.5,-24.5 parent: 2 - uid: 5730 components: - type: Transform - pos: -54.5,-25.5 + pos: -73.5,-22.5 parent: 2 - uid: 5731 components: - type: Transform - pos: -55.5,-22.5 + pos: -74.5,-24.5 parent: 2 - uid: 5732 components: - type: Transform - pos: -55.5,-24.5 + pos: -75.5,-24.5 parent: 2 - uid: 5733 components: - type: Transform - pos: -55.5,-25.5 + pos: -77.5,-21.5 parent: 2 - uid: 5734 components: - type: Transform - pos: -55.5,-23.5 + pos: -76.5,-22.5 parent: 2 - uid: 5735 components: - type: Transform - pos: -56.5,-24.5 + pos: -71.5,-14.5 parent: 2 - uid: 5736 components: - type: Transform - pos: -56.5,-25.5 + pos: -71.5,-16.5 parent: 2 - uid: 5737 components: - type: Transform - pos: -53.5,-23.5 + pos: -71.5,-17.5 parent: 2 - uid: 5738 components: - type: Transform - pos: -52.5,-26.5 + pos: -71.5,-15.5 parent: 2 - uid: 5739 components: - type: Transform - pos: -50.5,-26.5 + pos: -71.5,-18.5 parent: 2 - uid: 5740 components: - type: Transform - pos: -49.5,-26.5 + pos: -71.5,-19.5 parent: 2 - uid: 5741 components: - type: Transform - pos: -51.5,-26.5 + pos: -70.5,-14.5 parent: 2 - uid: 5742 components: - type: Transform - pos: -51.5,-24.5 + pos: -70.5,-15.5 parent: 2 - uid: 5743 components: - type: Transform - pos: -51.5,-25.5 + pos: -70.5,-16.5 parent: 2 - uid: 5744 components: - type: Transform - pos: -50.5,-24.5 + pos: -70.5,-17.5 parent: 2 - uid: 5745 components: - type: Transform - pos: -49.5,-24.5 + pos: -70.5,-18.5 parent: 2 - uid: 5746 components: - type: Transform - pos: -49.5,-25.5 + pos: -70.5,-19.5 parent: 2 - uid: 5747 components: - type: Transform - pos: -49.5,-27.5 + pos: -69.5,-14.5 parent: 2 - uid: 5748 components: - type: Transform - pos: -48.5,-27.5 + pos: -68.5,-14.5 parent: 2 - uid: 5749 components: - type: Transform - pos: -47.5,-27.5 + pos: -68.5,-15.5 parent: 2 - uid: 5750 components: - type: Transform - pos: -46.5,-27.5 + pos: -69.5,-15.5 parent: 2 - uid: 5751 components: - type: Transform - pos: -45.5,-27.5 + pos: -72.5,-18.5 parent: 2 - uid: 5752 components: - type: Transform - pos: -44.5,-27.5 + pos: -73.5,-18.5 parent: 2 - uid: 5753 components: - type: Transform - pos: -45.5,-26.5 + pos: -73.5,-19.5 parent: 2 - uid: 5754 components: - type: Transform - pos: -45.5,-24.5 + pos: -72.5,-19.5 parent: 2 - uid: 5755 components: - type: Transform - pos: -45.5,-25.5 + pos: -69.5,-19.5 parent: 2 - uid: 5756 components: - type: Transform - pos: -45.5,-23.5 + pos: -65.5,-17.5 parent: 2 - uid: 5757 components: - type: Transform - pos: -48.5,-23.5 + pos: -65.5,-19.5 parent: 2 - uid: 5758 components: - type: Transform - pos: -46.5,-23.5 + pos: -65.5,-20.5 parent: 2 - uid: 5759 components: - type: Transform - pos: -47.5,-23.5 + pos: -65.5,-18.5 parent: 2 - uid: 5760 components: - type: Transform - pos: -47.5,-22.5 + pos: -67.5,-20.5 parent: 2 - uid: 5761 components: - type: Transform - pos: -46.5,-22.5 + pos: -67.5,-20.5 parent: 2 - uid: 5762 components: - type: Transform - pos: -44.5,-24.5 + pos: -66.5,-20.5 parent: 2 - uid: 5763 components: - type: Transform - pos: -44.5,-23.5 + pos: -64.5,-18.5 parent: 2 - uid: 5764 components: - type: Transform - pos: -42.5,-26.5 + pos: -64.5,-20.5 parent: 2 - uid: 5765 components: - type: Transform - pos: -41.5,-26.5 + pos: -64.5,-21.5 parent: 2 - uid: 5766 components: - type: Transform - pos: -41.5,-27.5 + pos: -64.5,-19.5 parent: 2 - uid: 5767 components: - type: Transform - pos: -41.5,-29.5 + pos: -63.5,-18.5 parent: 2 - uid: 5768 components: - type: Transform - pos: -41.5,-30.5 + pos: -62.5,-18.5 parent: 2 - uid: 5769 components: - type: Transform - pos: -41.5,-28.5 + pos: -61.5,-18.5 parent: 2 - uid: 5770 components: - type: Transform - pos: -42.5,-28.5 + pos: -60.5,-18.5 parent: 2 - uid: 5771 components: - type: Transform - pos: -40.5,-27.5 + pos: -63.5,-17.5 parent: 2 - uid: 5772 components: - type: Transform - pos: -39.5,-27.5 + pos: -59.5,-18.5 parent: 2 - uid: 5773 components: - type: Transform - pos: -40.5,-31.5 + pos: -59.5,-16.5 parent: 2 - uid: 5774 components: - type: Transform - pos: -39.5,-31.5 + pos: -58.5,-16.5 parent: 2 - uid: 5775 components: - type: Transform - pos: -37.5,-31.5 + pos: -60.5,-16.5 parent: 2 - uid: 5776 components: - type: Transform - pos: -38.5,-31.5 + pos: -61.5,-17.5 parent: 2 - uid: 5777 components: - type: Transform - pos: -37.5,-29.5 + pos: -59.5,-15.5 parent: 2 - uid: 5778 components: - type: Transform - pos: -37.5,-30.5 + pos: -56.5,-14.5 parent: 2 - uid: 5779 components: - type: Transform - pos: -39.5,-32.5 + pos: -57.5,-14.5 parent: 2 - uid: 5780 components: - type: Transform - pos: -37.5,-32.5 + pos: -56.5,-16.5 parent: 2 - uid: 5781 components: - type: Transform - pos: -38.5,-32.5 + pos: -55.5,-16.5 parent: 2 - uid: 5782 components: - type: Transform - pos: -37.5,-33.5 + pos: -57.5,-13.5 parent: 2 - uid: 5783 components: - type: Transform - pos: -35.5,-33.5 + pos: -60.5,-19.5 parent: 2 - uid: 5784 components: - type: Transform - pos: -34.5,-33.5 + pos: -60.5,-21.5 parent: 2 - uid: 5785 components: - type: Transform - pos: -33.5,-33.5 + pos: -60.5,-20.5 parent: 2 - uid: 5786 components: - type: Transform - pos: -32.5,-33.5 + pos: -59.5,-19.5 parent: 2 - uid: 5787 components: - type: Transform - pos: -36.5,-33.5 + pos: -58.5,-19.5 parent: 2 - uid: 5788 components: - type: Transform - pos: -31.5,-33.5 + pos: -58.5,-20.5 parent: 2 - uid: 5789 components: - type: Transform - pos: -30.5,-33.5 + pos: -58.5,-22.5 parent: 2 - uid: 5790 components: - type: Transform - pos: -31.5,-32.5 + pos: -58.5,-21.5 parent: 2 - uid: 5791 components: - type: Transform - pos: -31.5,-30.5 + pos: -59.5,-22.5 parent: 2 - uid: 5792 components: - type: Transform - pos: -31.5,-31.5 + pos: -57.5,-20.5 parent: 2 - uid: 5793 components: - type: Transform - pos: -31.5,-29.5 + pos: -74.5,-18.5 parent: 2 - uid: 5794 components: - type: Transform - pos: -30.5,-29.5 + pos: -56.5,-20.5 parent: 2 - uid: 5795 components: - type: Transform - pos: -29.5,-29.5 + pos: -76.5,-18.5 parent: 2 - uid: 5796 components: - type: Transform - pos: -29.5,-30.5 + pos: -77.5,-18.5 parent: 2 - uid: 5797 components: - type: Transform - pos: -30.5,-30.5 + pos: -78.5,-18.5 parent: 2 - uid: 5798 components: - type: Transform - pos: -30.5,-32.5 + pos: -75.5,-18.5 parent: 2 - uid: 5799 components: - type: Transform - pos: -29.5,-32.5 + pos: -78.5,-17.5 parent: 2 - uid: 5800 components: - type: Transform - pos: -28.5,-32.5 + pos: -78.5,-15.5 parent: 2 - uid: 5801 components: - type: Transform - pos: -29.5,-31.5 + pos: -78.5,-14.5 parent: 2 - uid: 5802 components: - type: Transform - pos: -28.5,-31.5 + pos: -78.5,-13.5 parent: 2 - uid: 5803 components: - type: Transform - pos: -28.5,-26.5 + pos: -78.5,-12.5 parent: 2 - uid: 5804 components: - type: Transform - pos: -27.5,-26.5 + pos: -78.5,-16.5 parent: 2 - uid: 5805 components: - type: Transform - pos: -29.5,-26.5 + pos: -77.5,-12.5 parent: 2 - uid: 5806 components: - type: Transform - pos: -28.5,-28.5 + pos: -76.5,-12.5 parent: 2 - uid: 5807 components: - type: Transform - pos: -28.5,-27.5 + pos: -76.5,-13.5 parent: 2 - uid: 5808 components: - type: Transform - pos: -28.5,-25.5 + pos: -75.5,-12.5 parent: 2 - uid: 5809 components: - type: Transform - pos: -26.5,-25.5 + pos: -75.5,-13.5 parent: 2 - uid: 5810 components: - type: Transform - pos: -25.5,-25.5 + pos: -77.5,-13.5 parent: 2 - uid: 5811 components: - type: Transform - pos: -24.5,-25.5 + pos: -74.5,-12.5 parent: 2 - uid: 5812 components: - type: Transform - pos: -23.5,-25.5 + pos: -74.5,-13.5 parent: 2 - uid: 5813 components: - type: Transform - pos: -27.5,-25.5 + pos: -76.5,-14.5 parent: 2 - uid: 5814 components: - type: Transform - pos: -21.5,-26.5 + pos: -76.5,-16.5 parent: 2 - uid: 5815 components: - type: Transform - pos: -20.5,-26.5 + pos: -76.5,-17.5 parent: 2 - uid: 5816 components: - type: Transform - pos: -20.5,-27.5 + pos: -76.5,-15.5 parent: 2 - uid: 5817 components: - type: Transform - pos: -21.5,-27.5 + pos: -73.5,-13.5 parent: 2 - uid: 5818 components: - type: Transform - pos: -19.5,-27.5 + pos: -79.5,-16.5 parent: 2 - uid: 5819 components: - type: Transform - pos: -20.5,-25.5 + pos: -80.5,-16.5 parent: 2 - uid: 5820 components: - type: Transform - pos: -18.5,-25.5 + pos: -80.5,-17.5 parent: 2 - uid: 5821 components: - type: Transform - pos: -19.5,-25.5 + pos: -79.5,-17.5 parent: 2 - uid: 5822 components: - type: Transform - pos: -18.5,-24.5 + pos: -81.5,-16.5 parent: 2 - uid: 5823 components: - type: Transform - pos: -18.5,-26.5 + pos: -83.5,-16.5 parent: 2 - uid: 5824 components: - type: Transform - pos: -17.5,-26.5 + pos: -84.5,-16.5 parent: 2 - uid: 5825 components: - type: Transform - pos: -16.5,-24.5 + pos: -85.5,-16.5 parent: 2 - uid: 5826 components: - type: Transform - pos: -17.5,-21.5 + pos: -82.5,-16.5 parent: 2 - uid: 5827 components: - type: Transform - pos: -17.5,-19.5 + pos: -83.5,-15.5 parent: 2 - uid: 5828 components: - type: Transform - pos: -17.5,-20.5 + pos: -83.5,-14.5 parent: 2 - uid: 5829 components: - type: Transform - pos: -18.5,-29.5 + pos: -83.5,-13.5 parent: 2 - uid: 5830 components: - type: Transform - pos: -18.5,-30.5 + pos: -83.5,-12.5 parent: 2 - uid: 5831 components: - type: Transform - pos: -18.5,-31.5 + pos: -83.5,-10.5 parent: 2 - uid: 5832 components: - type: Transform - pos: -20.5,-30.5 + pos: -83.5,-11.5 parent: 2 - uid: 5833 components: - type: Transform - pos: -19.5,-30.5 + pos: -82.5,-10.5 parent: 2 - uid: 5834 components: - type: Transform - pos: -17.5,-30.5 + pos: -82.5,-11.5 parent: 2 - uid: 5835 components: - type: Transform - pos: -17.5,-31.5 + pos: -80.5,-11.5 parent: 2 - uid: 5836 components: - type: Transform - pos: -16.5,-31.5 + pos: -79.5,-11.5 parent: 2 - uid: 5837 components: - type: Transform - pos: -13.5,-33.5 + pos: -81.5,-11.5 parent: 2 - uid: 5838 components: - type: Transform - pos: -13.5,-32.5 + pos: -79.5,-10.5 parent: 2 - uid: 5839 components: - type: Transform - pos: -12.5,-32.5 + pos: -79.5,-9.5 parent: 2 - uid: 5840 components: - type: Transform - pos: -36.5,-34.5 + pos: -84.5,-13.5 parent: 2 - uid: 5841 components: - type: Transform - pos: -34.5,-34.5 + pos: -85.5,-13.5 parent: 2 - uid: 5842 components: - type: Transform - pos: -35.5,-34.5 + pos: -86.5,-13.5 parent: 2 - uid: 5843 components: - type: Transform - pos: -41.5,-22.5 + pos: -87.5,-13.5 parent: 2 - uid: 5844 components: - type: Transform - pos: -41.5,-23.5 + pos: -87.5,-14.5 parent: 2 - uid: 5845 components: - type: Transform - pos: -40.5,-22.5 + pos: -86.5,-14.5 parent: 2 - uid: 5846 components: - type: Transform - pos: -40.5,-23.5 + pos: -88.5,-12.5 parent: 2 - uid: 5847 components: - type: Transform - pos: -39.5,-22.5 + pos: -88.5,-11.5 parent: 2 - uid: 5848 components: - type: Transform - pos: -37.5,-22.5 + pos: -88.5,-9.5 parent: 2 - uid: 5849 components: - type: Transform - pos: -38.5,-22.5 + pos: -88.5,-8.5 parent: 2 - uid: 5850 components: - type: Transform - pos: -37.5,-24.5 + pos: -88.5,-7.5 parent: 2 - uid: 5851 components: - type: Transform - pos: -58.5,-44.5 + pos: -88.5,-10.5 parent: 2 - uid: 5852 components: - type: Transform - pos: -57.5,-47.5 + pos: -87.5,-7.5 parent: 2 - uid: 5853 components: - type: Transform - pos: -57.5,-46.5 + pos: -87.5,-8.5 parent: 2 - uid: 5854 components: - type: Transform - pos: -58.5,-48.5 + pos: -89.5,-11.5 parent: 2 - uid: 5855 components: - type: Transform - pos: -56.5,-48.5 + pos: -89.5,-7.5 parent: 2 - uid: 5856 components: - type: Transform - pos: -55.5,-48.5 + pos: -91.5,-7.5 parent: 2 - uid: 5857 components: - type: Transform - pos: -57.5,-48.5 + pos: -92.5,-7.5 parent: 2 - uid: 5858 components: - type: Transform - pos: -55.5,-50.5 + pos: -90.5,-7.5 parent: 2 - uid: 5859 components: - type: Transform - pos: -53.5,-50.5 + pos: -93.5,-7.5 parent: 2 - uid: 5860 components: - type: Transform - pos: -52.5,-50.5 + pos: -94.5,-7.5 parent: 2 - uid: 5861 components: - type: Transform - pos: -51.5,-50.5 + pos: -92.5,-6.5 parent: 2 - uid: 5862 components: - type: Transform - pos: -54.5,-50.5 + pos: -91.5,-6.5 parent: 2 - uid: 5863 components: - type: Transform - pos: -54.5,-51.5 + pos: -94.5,-8.5 parent: 2 - uid: 5864 components: - type: Transform - pos: -53.5,-51.5 + pos: -93.5,-8.5 parent: 2 - uid: 5865 components: - type: Transform - pos: -49.5,-51.5 + pos: -93.5,-9.5 parent: 2 - uid: 5866 components: - type: Transform - pos: -49.5,-52.5 + pos: -94.5,-9.5 parent: 2 - uid: 5867 components: - type: Transform - pos: -51.5,-52.5 + pos: -93.5,-10.5 parent: 2 - uid: 5868 components: - type: Transform - pos: -50.5,-52.5 + pos: -93.5,-11.5 parent: 2 - uid: 5869 components: - type: Transform - pos: -50.5,-53.5 + pos: -92.5,-11.5 parent: 2 - uid: 5870 components: - type: Transform - pos: -51.5,-53.5 + pos: -92.5,-10.5 parent: 2 - uid: 5871 components: - type: Transform - pos: -50.5,-54.5 + pos: -91.5,-11.5 parent: 2 - uid: 5872 components: - type: Transform - pos: -48.5,-54.5 + pos: -87.5,-6.5 parent: 2 - uid: 5873 components: - type: Transform - pos: -49.5,-54.5 + pos: -86.5,-6.5 parent: 2 - uid: 5874 components: - type: Transform - pos: -48.5,-53.5 + pos: -86.5,-5.5 parent: 2 - uid: 5875 components: - type: Transform - pos: -48.5,-52.5 + pos: -86.5,-4.5 parent: 2 - uid: 5876 components: - type: Transform - pos: -49.5,-55.5 + pos: -90.5,-4.5 parent: 2 - uid: 5877 components: - type: Transform - pos: -47.5,-55.5 + pos: -90.5,-3.5 parent: 2 - uid: 5878 components: - type: Transform - pos: -46.5,-55.5 + pos: -90.5,-2.5 parent: 2 - uid: 5879 components: - type: Transform - pos: -48.5,-55.5 + pos: -91.5,-2.5 parent: 2 - uid: 5880 components: - type: Transform - pos: -44.5,-55.5 + pos: -89.5,-2.5 parent: 2 - uid: 5881 components: - type: Transform - pos: -45.5,-55.5 + pos: -88.5,-2.5 parent: 2 - uid: 5882 components: - type: Transform - pos: -48.5,-56.5 + pos: -88.5,-1.5 parent: 2 - uid: 5883 components: - type: Transform - pos: -44.5,-56.5 + pos: -92.5,-0.5 parent: 2 - uid: 5884 components: - type: Transform - pos: -44.5,-57.5 + pos: -91.5,0.5 parent: 2 - uid: 5885 components: - type: Transform - pos: -67.5,-22.5 + pos: -91.5,1.5 parent: 2 - uid: 5886 components: - type: Transform - pos: -66.5,-23.5 + pos: -90.5,0.5 parent: 2 - uid: 5887 components: - type: Transform - pos: -66.5,-25.5 + pos: -94.5,-3.5 parent: 2 - uid: 5888 components: - type: Transform - pos: -67.5,-25.5 + pos: -94.5,-5.5 parent: 2 - uid: 5889 components: - type: Transform - pos: -65.5,-25.5 + pos: -94.5,-4.5 parent: 2 - uid: 5890 components: - type: Transform - pos: -61.5,-23.5 + pos: -96.5,-1.5 parent: 2 - uid: 5891 components: - type: Transform - pos: -60.5,-23.5 + pos: -97.5,-1.5 parent: 2 - uid: 5892 components: - type: Transform - pos: -60.5,-24.5 + pos: -96.5,-0.5 parent: 2 - uid: 5893 components: - type: Transform - pos: -71.5,-24.5 + pos: -97.5,-0.5 parent: 2 - uid: 5894 components: - type: Transform - pos: -73.5,-22.5 + pos: -98.5,-1.5 parent: 2 - uid: 5895 components: - type: Transform - pos: -74.5,-24.5 + pos: -98.5,-0.5 parent: 2 - uid: 5896 components: - type: Transform - pos: -75.5,-24.5 + pos: -98.5,-2.5 parent: 2 - uid: 5897 components: - type: Transform - pos: -77.5,-21.5 + pos: -86.5,3.5 parent: 2 - uid: 5898 components: - type: Transform - pos: -76.5,-22.5 + pos: -85.5,3.5 parent: 2 - uid: 5899 components: - type: Transform - pos: -71.5,-14.5 + pos: -84.5,1.5 parent: 2 - uid: 5900 components: - type: Transform - pos: -71.5,-16.5 + pos: -84.5,-0.5 parent: 2 - uid: 5901 components: - type: Transform - pos: -71.5,-17.5 + pos: -84.5,0.5 parent: 2 - uid: 5902 components: - type: Transform - pos: -71.5,-15.5 + pos: -82.5,-2.5 parent: 2 - uid: 5903 components: - type: Transform - pos: -71.5,-18.5 + pos: -81.5,-3.5 parent: 2 - uid: 5904 components: - type: Transform - pos: -71.5,-19.5 + pos: -79.5,-3.5 parent: 2 - uid: 5905 components: - type: Transform - pos: -70.5,-14.5 + pos: -80.5,-3.5 parent: 2 - uid: 5906 components: - type: Transform - pos: -70.5,-15.5 + pos: -79.5,-4.5 parent: 2 - uid: 5907 components: - type: Transform - pos: -70.5,-16.5 + pos: -82.5,3.5 parent: 2 - uid: 5908 components: - type: Transform - pos: -70.5,-17.5 + pos: -80.5,3.5 parent: 2 - uid: 5909 components: - type: Transform - pos: -70.5,-18.5 + pos: -79.5,3.5 parent: 2 - uid: 5910 components: - type: Transform - pos: -70.5,-19.5 + pos: -78.5,3.5 parent: 2 - uid: 5911 components: - type: Transform - pos: -69.5,-14.5 + pos: -81.5,3.5 parent: 2 - uid: 5912 components: - type: Transform - pos: -68.5,-14.5 + pos: -81.5,2.5 parent: 2 - uid: 5913 components: - type: Transform - pos: -68.5,-15.5 + pos: -80.5,2.5 parent: 2 - uid: 5914 components: - type: Transform - pos: -69.5,-15.5 + pos: -79.5,2.5 parent: 2 - uid: 5915 components: - type: Transform - pos: -72.5,-18.5 + pos: -78.5,2.5 parent: 2 - uid: 5916 components: - type: Transform - pos: -73.5,-18.5 + pos: -80.5,4.5 parent: 2 - uid: 5917 components: - type: Transform - pos: -73.5,-19.5 + pos: -79.5,4.5 parent: 2 - uid: 5918 components: - type: Transform - pos: -72.5,-19.5 + pos: -81.5,6.5 parent: 2 - uid: 5919 components: - type: Transform - pos: -69.5,-19.5 + pos: -81.5,5.5 parent: 2 - uid: 5920 components: - type: Transform - pos: -65.5,-17.5 + pos: -80.5,5.5 parent: 2 - uid: 5921 components: - type: Transform - pos: -65.5,-19.5 + pos: -79.5,5.5 parent: 2 - uid: 5922 components: - type: Transform - pos: -65.5,-20.5 + pos: -81.5,8.5 parent: 2 - uid: 5923 components: - type: Transform - pos: -65.5,-18.5 + pos: -81.5,9.5 parent: 2 - uid: 5924 components: - type: Transform - pos: -67.5,-20.5 + pos: -75.5,7.5 parent: 2 - uid: 5925 components: - type: Transform - pos: -67.5,-20.5 + pos: -73.5,6.5 parent: 2 - uid: 5926 components: - type: Transform - pos: -66.5,-20.5 + pos: -72.5,6.5 parent: 2 - uid: 5927 components: - type: Transform - pos: -64.5,-18.5 + pos: -44.5,28.5 parent: 2 - uid: 5928 components: - type: Transform - pos: -64.5,-20.5 + pos: -85.5,8.5 parent: 2 - uid: 5929 components: - type: Transform - pos: -64.5,-21.5 + pos: -86.5,7.5 parent: 2 - uid: 5930 components: - type: Transform - pos: -64.5,-19.5 + pos: -97.5,-10.5 parent: 2 - uid: 5931 components: - type: Transform - pos: -63.5,-18.5 + pos: -98.5,-10.5 parent: 2 - uid: 5932 components: - type: Transform - pos: -62.5,-18.5 + pos: -98.5,-11.5 parent: 2 - uid: 5933 components: - type: Transform - pos: -61.5,-18.5 + pos: -97.5,-11.5 parent: 2 - uid: 5934 components: - type: Transform - pos: -60.5,-18.5 + pos: -101.5,-10.5 parent: 2 - uid: 5935 components: - type: Transform - pos: -63.5,-17.5 + pos: -101.5,-12.5 parent: 2 - uid: 5936 components: - type: Transform - pos: -59.5,-18.5 + pos: -102.5,-10.5 parent: 2 - uid: 5937 components: - type: Transform - pos: -59.5,-16.5 + pos: -102.5,-11.5 parent: 2 - uid: 5938 components: - type: Transform - pos: -58.5,-16.5 + pos: -102.5,-12.5 parent: 2 - uid: 5939 components: - type: Transform - pos: -60.5,-16.5 + pos: -101.5,-11.5 parent: 2 - uid: 5940 components: - type: Transform - pos: -61.5,-17.5 + pos: -103.5,-10.5 parent: 2 - uid: 5941 components: - type: Transform - pos: -59.5,-15.5 + pos: -105.5,-10.5 parent: 2 - uid: 5942 components: - type: Transform - pos: -56.5,-14.5 + pos: -106.5,-10.5 parent: 2 - uid: 5943 components: - type: Transform - pos: -57.5,-14.5 + pos: -104.5,-10.5 parent: 2 - uid: 5944 components: - type: Transform - pos: -56.5,-16.5 + pos: -108.5,-10.5 parent: 2 - uid: 5945 components: - type: Transform - pos: -55.5,-16.5 + pos: -107.5,-10.5 parent: 2 - uid: 5946 components: - type: Transform - pos: -57.5,-13.5 + pos: -109.5,-10.5 parent: 2 - uid: 5947 components: - type: Transform - pos: -60.5,-19.5 + pos: -109.5,-12.5 parent: 2 - uid: 5948 components: - type: Transform - pos: -60.5,-21.5 + pos: -109.5,-11.5 parent: 2 - uid: 5949 components: - type: Transform - pos: -60.5,-20.5 + pos: -108.5,-11.5 parent: 2 - uid: 5950 components: - type: Transform - pos: -59.5,-19.5 + pos: -108.5,-12.5 parent: 2 - uid: 5951 components: - type: Transform - pos: -58.5,-19.5 + pos: -107.5,-11.5 parent: 2 - uid: 5952 components: - type: Transform - pos: -58.5,-20.5 + pos: -107.5,-12.5 parent: 2 - uid: 5953 components: - type: Transform - pos: -58.5,-22.5 + pos: -112.5,-9.5 parent: 2 - uid: 5954 components: - type: Transform - pos: -58.5,-21.5 + pos: -112.5,-7.5 parent: 2 - uid: 5955 components: - type: Transform - pos: -59.5,-22.5 + pos: -113.5,-9.5 parent: 2 - uid: 5956 components: - type: Transform - pos: -57.5,-20.5 + pos: -113.5,-8.5 parent: 2 - uid: 5957 components: - type: Transform - pos: -74.5,-18.5 + pos: -113.5,-7.5 parent: 2 - uid: 5958 components: - type: Transform - pos: -56.5,-20.5 + pos: -114.5,-9.5 parent: 2 - uid: 5959 components: - type: Transform - pos: -76.5,-18.5 + pos: -114.5,-8.5 parent: 2 - uid: 5960 components: - type: Transform - pos: -77.5,-18.5 + pos: -114.5,-7.5 parent: 2 - uid: 5961 components: - type: Transform - pos: -78.5,-18.5 + pos: -112.5,-8.5 parent: 2 - uid: 5962 components: - type: Transform - pos: -75.5,-18.5 + pos: -114.5,-10.5 parent: 2 - uid: 5963 components: - type: Transform - pos: -78.5,-17.5 + pos: -114.5,-12.5 parent: 2 - uid: 5964 components: - type: Transform - pos: -78.5,-15.5 + pos: -114.5,-13.5 parent: 2 - uid: 5965 components: - type: Transform - pos: -78.5,-14.5 + pos: -114.5,-11.5 parent: 2 - uid: 5966 components: - type: Transform - pos: -78.5,-13.5 + pos: -113.5,-10.5 parent: 2 - uid: 5967 components: - type: Transform - pos: -78.5,-12.5 + pos: -113.5,-12.5 parent: 2 - uid: 5968 components: - type: Transform - pos: -78.5,-16.5 + pos: -113.5,-11.5 parent: 2 - uid: 5969 components: - type: Transform - pos: -77.5,-12.5 + pos: -113.5,-13.5 parent: 2 - uid: 5970 components: - type: Transform - pos: -76.5,-12.5 + pos: -112.5,-13.5 parent: 2 - uid: 5971 components: - type: Transform - pos: -76.5,-13.5 + pos: -115.5,-13.5 parent: 2 - uid: 5972 components: - type: Transform - pos: -75.5,-12.5 + pos: -116.5,-13.5 parent: 2 - uid: 5973 components: - type: Transform - pos: -75.5,-13.5 + pos: -116.5,-12.5 parent: 2 - uid: 5974 components: - type: Transform - pos: -77.5,-13.5 + pos: -115.5,-12.5 parent: 2 - uid: 5975 components: - type: Transform - pos: -74.5,-12.5 + pos: -117.5,-13.5 parent: 2 - uid: 5976 components: - type: Transform - pos: -74.5,-13.5 + pos: -117.5,-12.5 parent: 2 - uid: 5977 components: - type: Transform - pos: -76.5,-14.5 + pos: -118.5,-12.5 parent: 2 - uid: 5978 components: - type: Transform - pos: -76.5,-16.5 + pos: -119.5,-12.5 parent: 2 - uid: 5979 components: - type: Transform - pos: -76.5,-17.5 + pos: -120.5,-12.5 parent: 2 - uid: 5980 components: - type: Transform - pos: -76.5,-15.5 + pos: -121.5,-12.5 parent: 2 - uid: 5981 components: - type: Transform - pos: -73.5,-13.5 + pos: -122.5,-12.5 parent: 2 - uid: 5982 components: - type: Transform - pos: -79.5,-16.5 + pos: -123.5,-12.5 parent: 2 - uid: 5983 components: - type: Transform - pos: -80.5,-16.5 + pos: -124.5,-11.5 parent: 2 - uid: 5984 components: - type: Transform - pos: -80.5,-17.5 + pos: -123.5,-11.5 parent: 2 - uid: 5985 components: - type: Transform - pos: -79.5,-17.5 + pos: -122.5,-11.5 parent: 2 - uid: 5986 components: - type: Transform - pos: -81.5,-16.5 + pos: -121.5,-11.5 parent: 2 - uid: 5987 components: - type: Transform - pos: -83.5,-16.5 + pos: -120.5,-11.5 parent: 2 - uid: 5988 components: - type: Transform - pos: -84.5,-16.5 + pos: -119.5,-11.5 parent: 2 - uid: 5989 components: - type: Transform - pos: -85.5,-16.5 + pos: -121.5,-13.5 parent: 2 - uid: 5990 components: - type: Transform - pos: -82.5,-16.5 + pos: -119.5,-10.5 parent: 2 - uid: 5991 components: - type: Transform - pos: -83.5,-15.5 + pos: -119.5,-8.5 parent: 2 - uid: 5992 components: - type: Transform - pos: -83.5,-14.5 + pos: -119.5,-7.5 parent: 2 - uid: 5993 components: - type: Transform - pos: -83.5,-13.5 + pos: -119.5,-9.5 parent: 2 - uid: 5994 components: - type: Transform - pos: -83.5,-12.5 + pos: -118.5,-7.5 parent: 2 - uid: 5995 components: - type: Transform - pos: -83.5,-10.5 + pos: -118.5,-5.5 parent: 2 - uid: 5996 components: - type: Transform - pos: -83.5,-11.5 + pos: -118.5,-6.5 parent: 2 - uid: 5997 components: - type: Transform - pos: -82.5,-10.5 + pos: -117.5,-6.5 parent: 2 - uid: 5998 components: - type: Transform - pos: -82.5,-11.5 + pos: -117.5,-5.5 parent: 2 - uid: 5999 components: - type: Transform - pos: -80.5,-11.5 + pos: -116.5,-7.5 parent: 2 - uid: 6000 components: - type: Transform - pos: -79.5,-11.5 + pos: -116.5,-6.5 parent: 2 - uid: 6001 components: - type: Transform - pos: -81.5,-11.5 + pos: -117.5,-7.5 parent: 2 - uid: 6002 components: - type: Transform - pos: -79.5,-10.5 + pos: -116.5,-5.5 parent: 2 - uid: 6003 components: - type: Transform - pos: -79.5,-9.5 + pos: -115.5,-6.5 parent: 2 - uid: 6004 components: - type: Transform - pos: -84.5,-13.5 + pos: -115.5,-5.5 parent: 2 - uid: 6005 components: - type: Transform - pos: -85.5,-13.5 + pos: -115.5,-7.5 parent: 2 - uid: 6006 components: - type: Transform - pos: -86.5,-13.5 + pos: -115.5,-4.5 parent: 2 - uid: 6007 components: - type: Transform - pos: -87.5,-13.5 + pos: -115.5,-3.5 parent: 2 - uid: 6008 components: - type: Transform - pos: -87.5,-14.5 + pos: -116.5,-4.5 parent: 2 - uid: 6009 components: - type: Transform - pos: -86.5,-14.5 + pos: -116.5,-3.5 parent: 2 - uid: 6010 components: - type: Transform - pos: -88.5,-12.5 + pos: -112.5,-0.5 parent: 2 - uid: 6011 components: - type: Transform - pos: -88.5,-11.5 + pos: -111.5,-0.5 parent: 2 - uid: 6012 components: - type: Transform - pos: -88.5,-9.5 + pos: -110.5,-0.5 parent: 2 - uid: 6013 components: - type: Transform - pos: -88.5,-8.5 + pos: -109.5,-0.5 parent: 2 - uid: 6014 components: - type: Transform - pos: -88.5,-7.5 + pos: -113.5,-0.5 parent: 2 - uid: 6015 components: - type: Transform - pos: -88.5,-10.5 + pos: -109.5,-1.5 parent: 2 - uid: 6016 components: - type: Transform - pos: -87.5,-7.5 + pos: -110.5,-1.5 parent: 2 - uid: 6017 components: - type: Transform - pos: -87.5,-8.5 + pos: -110.5,-2.5 parent: 2 - uid: 6018 components: - type: Transform - pos: -89.5,-11.5 + pos: -111.5,-1.5 parent: 2 - uid: 6019 components: - type: Transform - pos: -89.5,-7.5 + pos: -111.5,-2.5 parent: 2 - uid: 6020 components: - type: Transform - pos: -91.5,-7.5 + pos: -109.5,-2.5 parent: 2 - uid: 6021 components: - type: Transform - pos: -92.5,-7.5 + pos: -105.5,-0.5 parent: 2 - uid: 6022 components: - type: Transform - pos: -90.5,-7.5 + pos: -105.5,-2.5 parent: 2 - uid: 6023 components: - type: Transform - pos: -93.5,-7.5 + pos: -104.5,-0.5 parent: 2 - uid: 6024 components: - type: Transform - pos: -94.5,-7.5 + pos: -104.5,-1.5 parent: 2 - uid: 6025 components: - type: Transform - pos: -92.5,-6.5 + pos: -105.5,-1.5 parent: 2 - uid: 6026 components: - type: Transform - pos: -91.5,-6.5 + pos: -104.5,-2.5 parent: 2 - uid: 6027 components: - type: Transform - pos: -94.5,-8.5 + pos: -119.5,-0.5 parent: 2 - uid: 6028 components: - type: Transform - pos: -93.5,-8.5 + pos: -120.5,-0.5 parent: 2 - uid: 6029 components: - type: Transform - pos: -93.5,-9.5 + pos: -121.5,-0.5 parent: 2 - uid: 6030 components: - type: Transform - pos: -94.5,-9.5 + pos: -122.5,-0.5 parent: 2 - uid: 6031 components: - type: Transform - pos: -93.5,-10.5 + pos: -123.5,-0.5 parent: 2 - uid: 6032 components: - type: Transform - pos: -93.5,-11.5 + pos: -124.5,-0.5 parent: 2 - uid: 6033 components: - type: Transform - pos: -92.5,-11.5 + pos: -126.5,-0.5 parent: 2 - uid: 6034 components: - type: Transform - pos: -92.5,-10.5 + pos: -125.5,-0.5 parent: 2 - uid: 6035 components: - type: Transform - pos: -91.5,-11.5 + pos: -126.5,-1.5 parent: 2 - uid: 6036 components: - type: Transform - pos: -87.5,-6.5 + pos: -124.5,-1.5 parent: 2 - uid: 6037 components: - type: Transform - pos: -86.5,-6.5 + pos: -123.5,-1.5 parent: 2 - uid: 6038 components: - type: Transform - pos: -86.5,-5.5 + pos: -122.5,-1.5 parent: 2 - uid: 6039 components: - type: Transform - pos: -86.5,-4.5 + pos: -125.5,-1.5 parent: 2 - uid: 6040 components: - type: Transform - pos: -90.5,-4.5 + pos: -121.5,-1.5 parent: 2 - uid: 6041 components: - type: Transform - pos: -90.5,-3.5 + pos: -121.5,-2.5 parent: 2 - uid: 6042 components: - type: Transform - pos: -90.5,-2.5 + pos: -125.5,-2.5 parent: 2 - uid: 6043 components: - type: Transform - pos: -91.5,-2.5 + pos: -123.5,-2.5 parent: 2 - uid: 6044 components: - type: Transform - pos: -89.5,-2.5 + pos: -122.5,-2.5 parent: 2 - uid: 6045 components: - type: Transform - pos: -88.5,-2.5 + pos: -124.5,-2.5 parent: 2 - uid: 6046 components: - type: Transform - pos: -88.5,-1.5 + pos: -121.5,-3.5 parent: 2 - uid: 6047 components: - type: Transform - pos: -92.5,-0.5 + pos: -121.5,-4.5 parent: 2 - uid: 6048 components: - type: Transform - pos: -91.5,0.5 + pos: -119.5,-5.5 parent: 2 - uid: 6049 components: - type: Transform - pos: -91.5,1.5 + pos: -120.5,-5.5 parent: 2 - uid: 6050 components: - type: Transform - pos: -90.5,0.5 + pos: -121.5,-5.5 parent: 2 - uid: 6051 components: - type: Transform - pos: -94.5,-3.5 + pos: -119.5,-6.5 parent: 2 - uid: 6052 components: - type: Transform - pos: -94.5,-5.5 + pos: -121.5,-6.5 parent: 2 - uid: 6053 components: - type: Transform - pos: -94.5,-4.5 + pos: -120.5,-6.5 parent: 2 - uid: 6054 components: - type: Transform - pos: -96.5,-1.5 + pos: -122.5,-6.5 parent: 2 - uid: 6055 components: - type: Transform - pos: -97.5,-1.5 + pos: -124.5,-6.5 parent: 2 - uid: 6056 components: - type: Transform - pos: -96.5,-0.5 + pos: -125.5,-6.5 parent: 2 - uid: 6057 components: - type: Transform - pos: -97.5,-0.5 + pos: -126.5,-6.5 parent: 2 - uid: 6058 components: - type: Transform - pos: -98.5,-1.5 + pos: -123.5,-6.5 parent: 2 - uid: 6059 components: - type: Transform - pos: -98.5,-0.5 + pos: -127.5,-6.5 parent: 2 - uid: 6060 components: - type: Transform - pos: -98.5,-2.5 + pos: -127.5,-5.5 parent: 2 - uid: 6061 components: - type: Transform - pos: -86.5,3.5 + pos: -126.5,-5.5 parent: 2 - uid: 6062 components: - type: Transform - pos: -85.5,3.5 + pos: -126.5,-4.5 parent: 2 - uid: 6063 components: - type: Transform - pos: -84.5,1.5 + pos: -127.5,-4.5 parent: 2 - uid: 6064 components: - type: Transform - pos: -84.5,-0.5 + pos: -126.5,-3.5 parent: 2 - uid: 6065 components: - type: Transform - pos: -84.5,0.5 + pos: -125.5,-7.5 parent: 2 - uid: 6066 components: - type: Transform - pos: -82.5,-2.5 + pos: -125.5,-9.5 parent: 2 - uid: 6067 components: - type: Transform - pos: -81.5,-3.5 + pos: -125.5,-10.5 parent: 2 - uid: 6068 components: - type: Transform - pos: -79.5,-3.5 + pos: -125.5,-8.5 parent: 2 - uid: 6069 components: - type: Transform - pos: -80.5,-3.5 + pos: -127.5,-9.5 parent: 2 - uid: 6070 components: - type: Transform - pos: -79.5,-4.5 + pos: -127.5,-7.5 parent: 2 - uid: 6071 components: - type: Transform - pos: -82.5,3.5 + pos: -127.5,-8.5 parent: 2 - uid: 6072 components: - type: Transform - pos: -80.5,3.5 + pos: -128.5,-8.5 parent: 2 - uid: 6073 components: - type: Transform - pos: -79.5,3.5 + pos: -128.5,-9.5 parent: 2 - uid: 6074 components: - type: Transform - pos: -78.5,3.5 + pos: -131.5,-5.5 parent: 2 - uid: 6075 components: - type: Transform - pos: -81.5,3.5 + pos: -131.5,-6.5 parent: 2 - uid: 6076 components: - type: Transform - pos: -81.5,2.5 + pos: -131.5,-4.5 parent: 2 - uid: 6077 components: - type: Transform - pos: -80.5,2.5 + pos: -133.5,-4.5 parent: 2 - uid: 6078 components: - type: Transform - pos: -79.5,2.5 + pos: -132.5,-4.5 parent: 2 - uid: 6079 components: - type: Transform - pos: -78.5,2.5 + pos: -132.5,-5.5 parent: 2 - uid: 6080 components: - type: Transform - pos: -80.5,4.5 + pos: -133.5,-5.5 parent: 2 - uid: 6081 components: - type: Transform - pos: -79.5,4.5 + pos: -130.5,-4.5 parent: 2 - uid: 6082 components: - type: Transform - pos: -81.5,6.5 + pos: -130.5,-2.5 parent: 2 - uid: 6083 components: - type: Transform - pos: -81.5,5.5 + pos: -130.5,-3.5 parent: 2 - uid: 6084 components: - type: Transform - pos: -80.5,5.5 + pos: -129.5,-4.5 parent: 2 - uid: 6085 components: - type: Transform - pos: -79.5,5.5 + pos: -128.5,-4.5 parent: 2 - uid: 6086 components: - type: Transform - pos: -81.5,8.5 + pos: -134.5,-2.5 parent: 2 - uid: 6087 components: - type: Transform - pos: -81.5,9.5 + pos: -134.5,-1.5 parent: 2 - uid: 6088 components: - type: Transform - pos: -75.5,7.5 + pos: -135.5,-1.5 parent: 2 - uid: 6089 components: - type: Transform - pos: -73.5,6.5 + pos: -134.5,-0.5 parent: 2 - uid: 6090 components: - type: Transform - pos: -72.5,6.5 + pos: -133.5,-0.5 parent: 2 - uid: 6091 components: - type: Transform - pos: -79.5,10.5 + pos: -132.5,-0.5 parent: 2 - uid: 6092 components: - type: Transform - pos: -85.5,8.5 + pos: -131.5,-0.5 parent: 2 - uid: 6093 components: - type: Transform - pos: -86.5,7.5 + pos: -132.5,0.5 parent: 2 - uid: 6094 components: - type: Transform - pos: -97.5,-10.5 + pos: -132.5,2.5 parent: 2 - uid: 6095 components: - type: Transform - pos: -98.5,-10.5 + pos: -132.5,3.5 parent: 2 - uid: 6096 components: - type: Transform - pos: -98.5,-11.5 + pos: -132.5,1.5 parent: 2 - uid: 6097 components: - type: Transform - pos: -97.5,-11.5 + pos: -133.5,3.5 parent: 2 - uid: 6098 components: - type: Transform - pos: -101.5,-10.5 + pos: -135.5,3.5 parent: 2 - uid: 6099 components: - type: Transform - pos: -101.5,-12.5 + pos: -134.5,3.5 parent: 2 - uid: 6100 components: - type: Transform - pos: -102.5,-10.5 + pos: -134.5,4.5 parent: 2 - uid: 6101 components: - type: Transform - pos: -102.5,-11.5 + pos: -134.5,5.5 parent: 2 - uid: 6102 components: - type: Transform - pos: -102.5,-12.5 + pos: -131.5,4.5 parent: 2 - uid: 6103 components: - type: Transform - pos: -101.5,-11.5 + pos: -131.5,3.5 parent: 2 - uid: 6104 components: - type: Transform - pos: -103.5,-10.5 + pos: -136.5,3.5 parent: 2 - uid: 6105 components: - type: Transform - pos: -105.5,-10.5 + pos: -137.5,3.5 parent: 2 - uid: 6106 components: - type: Transform - pos: -106.5,-10.5 + pos: -142.5,3.5 parent: 2 - uid: 6107 components: - type: Transform - pos: -104.5,-10.5 + pos: -142.5,2.5 parent: 2 - uid: 6108 components: - type: Transform - pos: -108.5,-10.5 + pos: -141.5,3.5 parent: 2 - uid: 6109 components: - type: Transform - pos: -107.5,-10.5 + pos: -138.5,-0.5 parent: 2 - uid: 6110 components: - type: Transform - pos: -109.5,-10.5 + pos: -138.5,-1.5 parent: 2 - uid: 6111 components: - type: Transform - pos: -109.5,-12.5 + pos: -139.5,-1.5 parent: 2 - uid: 6112 components: - type: Transform - pos: -109.5,-11.5 + pos: -142.5,-0.5 parent: 2 - uid: 6113 components: - type: Transform - pos: -108.5,-11.5 + pos: -142.5,-2.5 parent: 2 - uid: 6114 components: - type: Transform - pos: -108.5,-12.5 + pos: -142.5,-1.5 parent: 2 - uid: 6115 components: - type: Transform - pos: -107.5,-11.5 + pos: -140.5,-6.5 parent: 2 - uid: 6116 components: - type: Transform - pos: -107.5,-12.5 + pos: -140.5,-7.5 parent: 2 - uid: 6117 components: - type: Transform - pos: -112.5,-9.5 + pos: -138.5,-5.5 parent: 2 - uid: 6118 components: - type: Transform - pos: -112.5,-7.5 + pos: -138.5,-6.5 parent: 2 - uid: 6119 components: - type: Transform - pos: -113.5,-9.5 + pos: -136.5,-6.5 parent: 2 - uid: 6120 components: - type: Transform - pos: -113.5,-8.5 + pos: -133.5,-11.5 parent: 2 - uid: 6121 components: - type: Transform - pos: -113.5,-7.5 + pos: -132.5,-11.5 parent: 2 - uid: 6122 components: - type: Transform - pos: -114.5,-9.5 + pos: -129.5,-12.5 parent: 2 - uid: 6123 components: - type: Transform - pos: -114.5,-8.5 + pos: -127.5,-14.5 parent: 2 - uid: 6124 components: - type: Transform - pos: -114.5,-7.5 + pos: -127.5,-15.5 parent: 2 - uid: 6125 components: - type: Transform - pos: -112.5,-8.5 + pos: -126.5,-14.5 parent: 2 - uid: 6126 components: - type: Transform - pos: -114.5,-10.5 + pos: -126.5,-15.5 parent: 2 - uid: 6127 components: - type: Transform - pos: -114.5,-12.5 + pos: -60.5,-12.5 parent: 2 - uid: 6128 components: - type: Transform - pos: -114.5,-13.5 + pos: -59.5,-11.5 parent: 2 - uid: 6129 components: - type: Transform - pos: -114.5,-11.5 + pos: -64.5,-11.5 parent: 2 - uid: 6130 components: - type: Transform - pos: -113.5,-10.5 + pos: -63.5,-11.5 parent: 2 - uid: 6131 components: - type: Transform - pos: -113.5,-12.5 + pos: -67.5,-10.5 parent: 2 - uid: 6132 components: - type: Transform - pos: -113.5,-11.5 + pos: -66.5,-10.5 parent: 2 - uid: 6133 components: - type: Transform - pos: -113.5,-13.5 + pos: -67.5,-12.5 parent: 2 - uid: 6134 components: - type: Transform - pos: -112.5,-13.5 + pos: -66.5,-12.5 parent: 2 - uid: 6135 components: - type: Transform - pos: -115.5,-13.5 + pos: -66.5,-13.5 parent: 2 - uid: 6136 components: - type: Transform - pos: -116.5,-13.5 + pos: -65.5,-13.5 parent: 2 - uid: 6137 components: - type: Transform - pos: -116.5,-12.5 + pos: -61.5,-9.5 parent: 2 - uid: 6138 components: - type: Transform - pos: -115.5,-12.5 + pos: -61.5,-7.5 parent: 2 - uid: 6139 components: - type: Transform - pos: -117.5,-13.5 + pos: -61.5,-8.5 parent: 2 - uid: 6140 components: - type: Transform - pos: -117.5,-12.5 + pos: -59.5,-8.5 parent: 2 - uid: 6141 components: - type: Transform - pos: -118.5,-12.5 + pos: -59.5,-6.5 parent: 2 - uid: 6142 components: - type: Transform - pos: -119.5,-12.5 + pos: -59.5,-5.5 parent: 2 - uid: 6143 components: - type: Transform - pos: -120.5,-12.5 + pos: -59.5,-4.5 parent: 2 - uid: 6144 components: - type: Transform - pos: -121.5,-12.5 + pos: -61.5,-4.5 parent: 2 - uid: 6145 components: - type: Transform - pos: -122.5,-12.5 + pos: -61.5,0.5 parent: 2 - uid: 6146 components: - type: Transform - pos: -123.5,-12.5 + pos: -63.5,3.5 parent: 2 - uid: 6147 components: - type: Transform - pos: -124.5,-11.5 + pos: -65.5,3.5 parent: 2 - uid: 6148 components: - type: Transform - pos: -123.5,-11.5 + pos: -66.5,4.5 parent: 2 - uid: 6149 components: - type: Transform - pos: -122.5,-11.5 + pos: -66.5,5.5 parent: 2 - uid: 6150 components: - type: Transform - pos: -121.5,-11.5 + pos: -64.5,5.5 parent: 2 - uid: 6151 components: - type: Transform - pos: -120.5,-11.5 + pos: -67.5,7.5 parent: 2 - uid: 6152 components: - type: Transform - pos: -119.5,-11.5 + pos: -69.5,7.5 parent: 2 - uid: 6153 components: - type: Transform - pos: -121.5,-13.5 + pos: -68.5,7.5 parent: 2 - uid: 6154 components: - type: Transform - pos: -119.5,-10.5 + pos: -65.5,10.5 parent: 2 - uid: 6155 components: - type: Transform - pos: -119.5,-8.5 + pos: -63.5,10.5 parent: 2 - uid: 6156 components: - type: Transform - pos: -119.5,-7.5 + pos: -64.5,10.5 parent: 2 - uid: 6157 components: - type: Transform - pos: -119.5,-9.5 + pos: -63.5,8.5 parent: 2 - uid: 6158 components: - type: Transform - pos: -118.5,-7.5 + pos: -62.5,9.5 parent: 2 - uid: 6159 components: - type: Transform - pos: -118.5,-5.5 + pos: -65.5,11.5 parent: 2 - uid: 6160 components: - type: Transform - pos: -118.5,-6.5 + pos: -65.5,12.5 parent: 2 - uid: 6161 components: - type: Transform - pos: -117.5,-6.5 + pos: -68.5,13.5 parent: 2 - uid: 6162 components: - type: Transform - pos: -117.5,-5.5 + pos: -66.5,13.5 parent: 2 - uid: 6163 components: - type: Transform - pos: -116.5,-7.5 + pos: -67.5,13.5 parent: 2 - uid: 6164 components: - type: Transform - pos: -116.5,-6.5 + pos: -68.5,14.5 parent: 2 - uid: 6165 components: - type: Transform - pos: -117.5,-7.5 + pos: -64.5,14.5 parent: 2 - uid: 6166 components: - type: Transform - pos: -116.5,-5.5 + pos: -64.5,13.5 parent: 2 - uid: 6167 components: - type: Transform - pos: -115.5,-6.5 + pos: -63.5,16.5 parent: 2 - uid: 6168 components: - type: Transform - pos: -115.5,-5.5 + pos: -62.5,14.5 parent: 2 - uid: 6169 components: - type: Transform - pos: -115.5,-7.5 + pos: -61.5,15.5 parent: 2 - uid: 6170 components: - type: Transform - pos: -115.5,-4.5 + pos: -61.5,16.5 parent: 2 - uid: 6171 components: - type: Transform - pos: -115.5,-3.5 + pos: -8.5,4.5 parent: 2 - uid: 6172 components: - type: Transform - pos: -115.5,-2.5 + pos: -8.5,6.5 parent: 2 - uid: 6173 components: - type: Transform - pos: -115.5,-1.5 + pos: -8.5,7.5 parent: 2 - uid: 6174 components: - type: Transform - pos: -115.5,-0.5 + pos: -8.5,8.5 parent: 2 - uid: 6175 components: - type: Transform - pos: -116.5,-4.5 + pos: -7.5,4.5 parent: 2 - uid: 6176 components: - type: Transform - pos: -116.5,-3.5 + pos: -8.5,5.5 parent: 2 - uid: 6177 components: - type: Transform - pos: -116.5,-2.5 + pos: -7.5,5.5 parent: 2 - uid: 6178 components: - type: Transform - pos: -116.5,-1.5 + pos: -7.5,6.5 parent: 2 - uid: 6179 components: - type: Transform - pos: -116.5,-0.5 + pos: -7.5,8.5 parent: 2 - uid: 6180 components: - type: Transform - pos: -114.5,-0.5 + pos: -6.5,4.5 parent: 2 - uid: 6181 components: - type: Transform - pos: -112.5,-0.5 + pos: -6.5,6.5 parent: 2 - uid: 6182 components: - type: Transform - pos: -111.5,-0.5 + pos: -6.5,5.5 parent: 2 - uid: 6183 components: - type: Transform - pos: -110.5,-0.5 + pos: -6.5,7.5 parent: 2 - uid: 6184 components: - type: Transform - pos: -109.5,-0.5 + pos: -7.5,7.5 parent: 2 - uid: 6185 components: - type: Transform - pos: -113.5,-0.5 + pos: -6.5,8.5 parent: 2 - uid: 6186 components: - type: Transform - pos: -109.5,-1.5 + pos: -5.5,7.5 parent: 2 - uid: 6187 components: - type: Transform - pos: -110.5,-1.5 + pos: -5.5,6.5 parent: 2 - uid: 6188 components: - type: Transform - pos: -110.5,-2.5 + pos: -5.5,5.5 parent: 2 - uid: 6189 components: - type: Transform - pos: -111.5,-1.5 + pos: -5.5,4.5 parent: 2 - uid: 6190 components: - type: Transform - pos: -111.5,-2.5 + pos: -4.5,5.5 parent: 2 - uid: 6191 components: - type: Transform - pos: -109.5,-2.5 + pos: -4.5,7.5 parent: 2 - uid: 6192 components: - type: Transform - pos: -105.5,-0.5 + pos: -3.5,5.5 parent: 2 - uid: 6193 components: - type: Transform - pos: -105.5,-2.5 + pos: -3.5,6.5 parent: 2 - uid: 6194 components: - type: Transform - pos: -104.5,-0.5 + pos: -3.5,7.5 parent: 2 - uid: 6195 components: - type: Transform - pos: -104.5,-1.5 + pos: -4.5,6.5 parent: 2 - uid: 6196 components: - type: Transform - pos: -105.5,-1.5 + pos: -2.5,5.5 parent: 2 - uid: 6197 components: - type: Transform - pos: -104.5,-2.5 + pos: -2.5,7.5 parent: 2 - uid: 6198 components: - type: Transform - pos: -117.5,-0.5 + pos: -2.5,6.5 parent: 2 - uid: 6199 components: - type: Transform - pos: -119.5,-0.5 + pos: -1.5,5.5 parent: 2 - uid: 6200 components: - type: Transform - pos: -118.5,-0.5 + pos: -1.5,7.5 parent: 2 - uid: 6201 components: - type: Transform - pos: -120.5,-0.5 + pos: -1.5,6.5 parent: 2 - uid: 6202 components: - type: Transform - pos: -121.5,-0.5 + pos: -1.5,8.5 parent: 2 - uid: 6203 components: - type: Transform - pos: -122.5,-0.5 + pos: -0.5,6.5 parent: 2 - uid: 6204 components: - type: Transform - pos: -123.5,-0.5 + pos: -0.5,8.5 parent: 2 - uid: 6205 components: - type: Transform - pos: -124.5,-0.5 + pos: -0.5,7.5 parent: 2 - uid: 6206 components: - type: Transform - pos: -126.5,-0.5 + pos: 0.5,6.5 parent: 2 - uid: 6207 components: - type: Transform - pos: -125.5,-0.5 + pos: 0.5,8.5 parent: 2 - uid: 6208 components: - type: Transform - pos: -126.5,-1.5 + pos: 0.5,7.5 parent: 2 - uid: 6209 components: - type: Transform - pos: -124.5,-1.5 + pos: 1.5,8.5 parent: 2 - uid: 6210 components: - type: Transform - pos: -123.5,-1.5 + pos: 2.5,8.5 parent: 2 - uid: 6211 components: - type: Transform - pos: -122.5,-1.5 + pos: 2.5,7.5 parent: 2 - uid: 6212 components: - type: Transform - pos: -125.5,-1.5 + pos: 1.5,7.5 parent: 2 - uid: 6213 components: - type: Transform - pos: -121.5,-1.5 + pos: 3.5,8.5 parent: 2 - uid: 6214 components: - type: Transform - pos: -121.5,-2.5 + pos: 3.5,7.5 parent: 2 - uid: 6215 components: - type: Transform - pos: -125.5,-2.5 + pos: 4.5,8.5 parent: 2 - uid: 6216 components: - type: Transform - pos: -123.5,-2.5 + pos: 5.5,8.5 parent: 2 - uid: 6217 components: - type: Transform - pos: -122.5,-2.5 + pos: 5.5,7.5 parent: 2 - uid: 6218 components: - type: Transform - pos: -124.5,-2.5 + pos: 6.5,8.5 parent: 2 - uid: 6219 components: - type: Transform - pos: -121.5,-3.5 + pos: 6.5,7.5 parent: 2 - uid: 6220 components: - type: Transform - pos: -121.5,-4.5 + pos: 4.5,7.5 parent: 2 - uid: 6221 components: - type: Transform - pos: -119.5,-5.5 + pos: 4.5,6.5 parent: 2 - uid: 6222 components: - type: Transform - pos: -120.5,-5.5 + pos: 6.5,6.5 parent: 2 - uid: 6223 components: - type: Transform - pos: -121.5,-5.5 + pos: 5.5,6.5 parent: 2 - uid: 6224 components: - type: Transform - pos: -119.5,-6.5 + pos: 6.5,5.5 parent: 2 - uid: 6225 components: - type: Transform - pos: -121.5,-6.5 + pos: 7.5,7.5 parent: 2 - uid: 6226 components: - type: Transform - pos: -120.5,-6.5 + pos: 7.5,5.5 parent: 2 - uid: 6227 components: - type: Transform - pos: -122.5,-6.5 + pos: 8.5,7.5 parent: 2 - uid: 6228 components: - type: Transform - pos: -124.5,-6.5 + pos: 8.5,6.5 parent: 2 - uid: 6229 components: - type: Transform - pos: -125.5,-6.5 + pos: 8.5,5.5 parent: 2 - uid: 6230 components: - type: Transform - pos: -126.5,-6.5 + pos: 9.5,7.5 parent: 2 - uid: 6231 components: - type: Transform - pos: -123.5,-6.5 + pos: 7.5,6.5 parent: 2 - uid: 6232 components: - type: Transform - pos: -127.5,-6.5 + pos: 9.5,6.5 parent: 2 - uid: 6233 components: - type: Transform - pos: -127.5,-5.5 + pos: 10.5,7.5 parent: 2 - uid: 6234 components: - type: Transform - pos: -126.5,-5.5 + pos: 10.5,6.5 parent: 2 - uid: 6235 components: - type: Transform - pos: -126.5,-4.5 + pos: 10.5,5.5 parent: 2 - uid: 6236 components: - type: Transform - pos: -127.5,-4.5 + pos: 9.5,5.5 parent: 2 - uid: 6237 components: - type: Transform - pos: -126.5,-3.5 + pos: 11.5,7.5 parent: 2 - uid: 6238 components: - type: Transform - pos: -125.5,-7.5 + pos: 11.5,6.5 parent: 2 - uid: 6239 components: - type: Transform - pos: -125.5,-9.5 + pos: 11.5,5.5 parent: 2 - uid: 6240 components: - type: Transform - pos: -125.5,-10.5 + pos: 12.5,7.5 parent: 2 - uid: 6241 components: - type: Transform - pos: -125.5,-8.5 + pos: 12.5,6.5 parent: 2 - uid: 6242 components: - type: Transform - pos: -127.5,-9.5 + pos: 12.5,5.5 parent: 2 - uid: 6243 components: - type: Transform - pos: -127.5,-7.5 + pos: 13.5,6.5 parent: 2 - uid: 6244 components: - type: Transform - pos: -127.5,-8.5 + pos: 13.5,5.5 parent: 2 - uid: 6245 components: - type: Transform - pos: -128.5,-8.5 + pos: 13.5,7.5 parent: 2 - uid: 6246 components: - type: Transform - pos: -128.5,-9.5 + pos: 10.5,4.5 parent: 2 - uid: 6247 components: - type: Transform - pos: -131.5,-5.5 + pos: 12.5,4.5 parent: 2 - uid: 6248 components: - type: Transform - pos: -131.5,-6.5 + pos: 13.5,4.5 parent: 2 - uid: 6249 components: - type: Transform - pos: -131.5,-4.5 + pos: 11.5,4.5 parent: 2 - uid: 6250 components: - type: Transform - pos: -133.5,-4.5 + pos: 13.5,8.5 parent: 2 - uid: 6251 components: - type: Transform - pos: -132.5,-4.5 + pos: 11.5,8.5 parent: 2 - uid: 6252 components: - type: Transform - pos: -132.5,-5.5 + pos: 12.5,8.5 parent: 2 - uid: 6253 components: - type: Transform - pos: -133.5,-5.5 + pos: 12.5,9.5 parent: 2 - uid: 6254 components: - type: Transform - pos: -130.5,-4.5 + pos: 12.5,11.5 parent: 2 - uid: 6255 components: - type: Transform - pos: -130.5,-2.5 + pos: 12.5,12.5 parent: 2 - uid: 6256 components: - type: Transform - pos: -130.5,-3.5 + pos: 12.5,10.5 parent: 2 - uid: 6257 components: - type: Transform - pos: -129.5,-4.5 + pos: 11.5,11.5 parent: 2 - uid: 6258 components: - type: Transform - pos: -128.5,-4.5 + pos: -7.5,9.5 parent: 2 - uid: 6259 components: - type: Transform - pos: -134.5,-2.5 + pos: -7.5,10.5 parent: 2 - uid: 6260 components: - type: Transform - pos: -134.5,-1.5 + pos: -7.5,11.5 parent: 2 - uid: 6261 components: - type: Transform - pos: -135.5,-1.5 + pos: -7.5,13.5 parent: 2 - uid: 6262 components: - type: Transform - pos: -134.5,-0.5 + pos: -7.5,12.5 parent: 2 - uid: 6263 components: - type: Transform - pos: -133.5,-0.5 + pos: -6.5,11.5 parent: 2 - uid: 6264 components: - type: Transform - pos: -132.5,-0.5 + rot: 1.5707963267948966 rad + pos: -10.5,21.5 parent: 2 - uid: 6265 components: - type: Transform - pos: -131.5,-0.5 + rot: 1.5707963267948966 rad + pos: -10.5,23.5 parent: 2 - uid: 6266 components: - type: Transform - pos: -132.5,0.5 + rot: 1.5707963267948966 rad + pos: -10.5,24.5 parent: 2 - uid: 6267 components: - type: Transform - pos: -132.5,2.5 + rot: 1.5707963267948966 rad + pos: -10.5,25.5 parent: 2 - uid: 6268 components: - type: Transform - pos: -132.5,3.5 + rot: 1.5707963267948966 rad + pos: -9.5,21.5 parent: 2 - uid: 6269 components: - type: Transform - pos: -132.5,1.5 + rot: 1.5707963267948966 rad + pos: -9.5,22.5 parent: 2 - uid: 6270 components: - type: Transform - pos: -133.5,3.5 + rot: 1.5707963267948966 rad + pos: -9.5,23.5 parent: 2 - uid: 6271 components: - type: Transform - pos: -135.5,3.5 + rot: 1.5707963267948966 rad + pos: -10.5,22.5 parent: 2 - uid: 6272 components: - type: Transform - pos: -134.5,3.5 + rot: 1.5707963267948966 rad + pos: -9.5,24.5 parent: 2 - uid: 6273 components: - type: Transform - pos: -134.5,4.5 + rot: 1.5707963267948966 rad + pos: -9.5,25.5 parent: 2 - uid: 6274 components: - type: Transform - pos: -134.5,5.5 + rot: 1.5707963267948966 rad + pos: -8.5,23.5 parent: 2 - uid: 6275 components: - type: Transform - pos: -131.5,4.5 + rot: 1.5707963267948966 rad + pos: -8.5,25.5 parent: 2 - uid: 6276 components: - type: Transform - pos: -131.5,3.5 + rot: 1.5707963267948966 rad + pos: -8.5,24.5 parent: 2 - uid: 6277 components: - type: Transform - pos: -136.5,3.5 + rot: 1.5707963267948966 rad + pos: -7.5,25.5 parent: 2 - uid: 6278 components: - type: Transform - pos: -137.5,3.5 + rot: 1.5707963267948966 rad + pos: -6.5,25.5 parent: 2 - uid: 6279 components: - type: Transform - pos: -142.5,3.5 + rot: 1.5707963267948966 rad + pos: -6.5,24.5 parent: 2 - uid: 6280 components: - type: Transform - pos: -142.5,2.5 + rot: 1.5707963267948966 rad + pos: -7.5,24.5 parent: 2 - uid: 6281 components: - type: Transform - pos: -141.5,3.5 + rot: 1.5707963267948966 rad + pos: -5.5,25.5 parent: 2 - uid: 6282 components: - type: Transform - pos: -138.5,-0.5 + rot: 1.5707963267948966 rad + pos: -5.5,24.5 parent: 2 - uid: 6283 components: - type: Transform - pos: -138.5,-1.5 + rot: 1.5707963267948966 rad + pos: -4.5,25.5 parent: 2 - uid: 6284 components: - type: Transform - pos: -139.5,-1.5 + rot: 1.5707963267948966 rad + pos: -4.5,24.5 parent: 2 - uid: 6285 components: - type: Transform - pos: -142.5,-0.5 + rot: 1.5707963267948966 rad + pos: -3.5,25.5 parent: 2 - uid: 6286 components: - type: Transform - pos: -142.5,-2.5 + rot: 1.5707963267948966 rad + pos: -3.5,24.5 parent: 2 - uid: 6287 components: - type: Transform - pos: -142.5,-1.5 + rot: 1.5707963267948966 rad + pos: -2.5,25.5 parent: 2 - uid: 6288 components: - type: Transform - pos: -140.5,-6.5 + rot: 1.5707963267948966 rad + pos: -1.5,25.5 parent: 2 - uid: 6289 components: - type: Transform - pos: -140.5,-7.5 + rot: 1.5707963267948966 rad + pos: -1.5,24.5 parent: 2 - uid: 6290 components: - type: Transform - pos: -138.5,-5.5 + rot: 1.5707963267948966 rad + pos: -0.5,25.5 parent: 2 - uid: 6291 components: - type: Transform - pos: -138.5,-6.5 + rot: 1.5707963267948966 rad + pos: -0.5,24.5 parent: 2 - uid: 6292 components: - type: Transform - pos: -136.5,-6.5 + rot: 1.5707963267948966 rad + pos: -2.5,24.5 parent: 2 - uid: 6293 components: - type: Transform - pos: -133.5,-11.5 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - uid: 6294 components: - type: Transform - pos: -132.5,-11.5 + rot: 1.5707963267948966 rad + pos: 2.5,24.5 parent: 2 - uid: 6295 components: - type: Transform - pos: -129.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,24.5 parent: 2 - uid: 6296 components: - type: Transform - pos: -127.5,-14.5 + rot: 1.5707963267948966 rad + pos: 4.5,24.5 parent: 2 - uid: 6297 components: - type: Transform - pos: -127.5,-15.5 + rot: 1.5707963267948966 rad + pos: 1.5,24.5 parent: 2 - uid: 6298 components: - type: Transform - pos: -126.5,-14.5 + rot: 1.5707963267948966 rad + pos: 5.5,24.5 parent: 2 - uid: 6299 components: - type: Transform - pos: -126.5,-15.5 + rot: 1.5707963267948966 rad + pos: 5.5,25.5 parent: 2 - uid: 6300 components: - type: Transform - pos: -60.5,-12.5 + rot: 1.5707963267948966 rad + pos: 5.5,26.5 parent: 2 - uid: 6301 components: - type: Transform - pos: -59.5,-11.5 + rot: 1.5707963267948966 rad + pos: 5.5,27.5 parent: 2 - uid: 6302 components: - type: Transform - pos: -64.5,-11.5 + rot: 1.5707963267948966 rad + pos: 5.5,28.5 parent: 2 - uid: 6303 components: - type: Transform - pos: -63.5,-11.5 + rot: 1.5707963267948966 rad + pos: 4.5,25.5 parent: 2 - uid: 6304 components: - type: Transform - pos: -67.5,-10.5 + rot: 1.5707963267948966 rad + pos: 4.5,26.5 parent: 2 - uid: 6305 components: - type: Transform - pos: -66.5,-10.5 + rot: 1.5707963267948966 rad + pos: 4.5,27.5 parent: 2 - uid: 6306 components: - type: Transform - pos: -67.5,-12.5 + rot: 1.5707963267948966 rad + pos: 4.5,28.5 parent: 2 - uid: 6307 components: - type: Transform - pos: -66.5,-12.5 + rot: 1.5707963267948966 rad + pos: 3.5,25.5 parent: 2 - uid: 6308 components: - type: Transform - pos: -66.5,-13.5 + rot: 1.5707963267948966 rad + pos: 3.5,26.5 parent: 2 - uid: 6309 components: - type: Transform - pos: -65.5,-13.5 + rot: 1.5707963267948966 rad + pos: 3.5,27.5 parent: 2 - uid: 6310 components: - type: Transform - pos: -61.5,-9.5 + rot: 1.5707963267948966 rad + pos: 3.5,28.5 parent: 2 - uid: 6311 components: - type: Transform - pos: -61.5,-7.5 + rot: 1.5707963267948966 rad + pos: 2.5,28.5 parent: 2 - uid: 6312 components: - type: Transform - pos: -61.5,-8.5 + rot: 1.5707963267948966 rad + pos: 0.5,28.5 parent: 2 - uid: 6313 components: - type: Transform - pos: -59.5,-8.5 + rot: 1.5707963267948966 rad + pos: -0.5,28.5 parent: 2 - uid: 6314 components: - type: Transform - pos: -59.5,-6.5 + rot: 1.5707963267948966 rad + pos: -1.5,28.5 parent: 2 - uid: 6315 components: - type: Transform - pos: -59.5,-5.5 + rot: 1.5707963267948966 rad + pos: 1.5,28.5 parent: 2 - uid: 6316 components: - type: Transform - pos: -59.5,-4.5 + rot: 1.5707963267948966 rad + pos: -1.5,27.5 parent: 2 - uid: 6317 components: - type: Transform - pos: -61.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,27.5 parent: 2 - uid: 6318 components: - type: Transform - pos: -61.5,0.5 + rot: 1.5707963267948966 rad + pos: -0.5,26.5 parent: 2 - uid: 6319 components: - type: Transform - pos: -63.5,3.5 + rot: 1.5707963267948966 rad + pos: -1.5,26.5 parent: 2 - uid: 6320 components: - type: Transform - pos: -65.5,3.5 + rot: 1.5707963267948966 rad + pos: -0.5,29.5 parent: 2 - uid: 6321 components: - type: Transform - pos: -66.5,4.5 + rot: 1.5707963267948966 rad + pos: -1.5,29.5 parent: 2 - uid: 6322 components: - type: Transform - pos: -66.5,5.5 + rot: 1.5707963267948966 rad + pos: -1.5,30.5 parent: 2 - uid: 6323 components: - type: Transform - pos: -64.5,5.5 + rot: 1.5707963267948966 rad + pos: -0.5,30.5 parent: 2 - uid: 6324 components: - type: Transform - pos: -67.5,7.5 + rot: 1.5707963267948966 rad + pos: -2.5,30.5 parent: 2 - uid: 6325 components: - type: Transform - pos: -69.5,7.5 + rot: 1.5707963267948966 rad + pos: -2.5,31.5 parent: 2 - uid: 6326 components: - type: Transform - pos: -68.5,7.5 + rot: 1.5707963267948966 rad + pos: -2.5,32.5 parent: 2 - uid: 6327 components: - type: Transform - pos: -65.5,10.5 + rot: 1.5707963267948966 rad + pos: -3.5,30.5 parent: 2 - uid: 6328 components: - type: Transform - pos: -63.5,10.5 + rot: 1.5707963267948966 rad + pos: -3.5,31.5 parent: 2 - uid: 6329 components: - type: Transform - pos: -64.5,10.5 + rot: 1.5707963267948966 rad + pos: -3.5,32.5 parent: 2 - uid: 6330 components: - type: Transform - pos: -63.5,8.5 + rot: 1.5707963267948966 rad + pos: -2.5,33.5 parent: 2 - uid: 6331 components: - type: Transform - pos: -62.5,9.5 + rot: 1.5707963267948966 rad + pos: -2.5,34.5 parent: 2 - uid: 6332 components: - type: Transform - pos: -65.5,11.5 + rot: 1.5707963267948966 rad + pos: -1.5,34.5 parent: 2 - uid: 6333 components: - type: Transform - pos: -65.5,12.5 + rot: 1.5707963267948966 rad + pos: -0.5,34.5 parent: 2 - uid: 6334 components: - type: Transform - pos: -68.5,13.5 + rot: 1.5707963267948966 rad + pos: -0.5,33.5 parent: 2 - uid: 6335 components: - type: Transform - pos: -66.5,13.5 + rot: 1.5707963267948966 rad + pos: -0.5,32.5 parent: 2 - uid: 6336 components: - type: Transform - pos: -67.5,13.5 + rot: 1.5707963267948966 rad + pos: -0.5,31.5 parent: 2 - uid: 6337 components: - type: Transform - pos: -68.5,14.5 + rot: 1.5707963267948966 rad + pos: -4.5,31.5 parent: 2 - uid: 6338 components: - type: Transform - pos: -64.5,14.5 + rot: 1.5707963267948966 rad + pos: -5.5,31.5 parent: 2 - uid: 6339 components: - type: Transform - pos: -64.5,13.5 + rot: 1.5707963267948966 rad + pos: -5.5,30.5 parent: 2 - uid: 6340 components: - type: Transform - pos: -63.5,16.5 + rot: 1.5707963267948966 rad + pos: -4.5,30.5 parent: 2 - uid: 6341 components: - type: Transform - pos: -62.5,14.5 + rot: 1.5707963267948966 rad + pos: -6.5,31.5 parent: 2 - uid: 6342 components: - type: Transform - pos: -61.5,15.5 + rot: 1.5707963267948966 rad + pos: -6.5,30.5 parent: 2 - uid: 6343 components: - type: Transform - pos: -61.5,16.5 + rot: 1.5707963267948966 rad + pos: -6.5,29.5 parent: 2 - uid: 6344 components: - type: Transform - pos: -8.5,4.5 + rot: 1.5707963267948966 rad + pos: -6.5,27.5 parent: 2 - uid: 6345 components: - type: Transform - pos: -8.5,6.5 + rot: 1.5707963267948966 rad + pos: -6.5,26.5 parent: 2 - uid: 6346 components: - type: Transform - pos: -8.5,7.5 + rot: 1.5707963267948966 rad + pos: -5.5,29.5 parent: 2 - uid: 6347 components: - type: Transform - pos: -8.5,8.5 + rot: 1.5707963267948966 rad + pos: -6.5,28.5 parent: 2 - uid: 6348 components: - type: Transform - pos: -7.5,4.5 + rot: 1.5707963267948966 rad + pos: -5.5,28.5 parent: 2 - uid: 6349 components: - type: Transform - pos: -8.5,5.5 + rot: 1.5707963267948966 rad + pos: -5.5,26.5 parent: 2 - uid: 6350 components: - type: Transform - pos: -7.5,5.5 + rot: 1.5707963267948966 rad + pos: -5.5,27.5 parent: 2 - uid: 6351 components: - type: Transform - pos: -7.5,6.5 + rot: 1.5707963267948966 rad + pos: -7.5,30.5 parent: 2 - uid: 6352 components: - type: Transform - pos: -7.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.5,30.5 parent: 2 - uid: 6353 components: - type: Transform - pos: -6.5,4.5 + rot: 1.5707963267948966 rad + pos: -8.5,31.5 parent: 2 - uid: 6354 components: - type: Transform - pos: -6.5,6.5 + rot: 1.5707963267948966 rad + pos: -9.5,30.5 parent: 2 - uid: 6355 components: - type: Transform - pos: -6.5,5.5 + rot: 1.5707963267948966 rad + pos: -9.5,31.5 parent: 2 - uid: 6356 components: - type: Transform - pos: -6.5,7.5 + rot: 1.5707963267948966 rad + pos: -7.5,31.5 parent: 2 - uid: 6357 components: - type: Transform - pos: -7.5,7.5 + rot: 1.5707963267948966 rad + pos: -10.5,30.5 parent: 2 - uid: 6358 components: - type: Transform - pos: -6.5,8.5 + rot: 1.5707963267948966 rad + pos: -11.5,30.5 parent: 2 - uid: 6359 components: - type: Transform - pos: -5.5,7.5 + rot: 1.5707963267948966 rad + pos: -11.5,31.5 parent: 2 - uid: 6360 components: - type: Transform - pos: -5.5,6.5 + rot: 1.5707963267948966 rad + pos: -10.5,31.5 parent: 2 - uid: 6361 components: - type: Transform - pos: -5.5,5.5 + rot: 1.5707963267948966 rad + pos: -11.5,29.5 parent: 2 - uid: 6362 components: - type: Transform - pos: -5.5,4.5 + rot: 1.5707963267948966 rad + pos: -11.5,27.5 parent: 2 - uid: 6363 components: - type: Transform - pos: -4.5,5.5 + rot: 1.5707963267948966 rad + pos: -11.5,26.5 parent: 2 - uid: 6364 components: - type: Transform - pos: -4.5,7.5 + rot: 1.5707963267948966 rad + pos: -11.5,28.5 parent: 2 - uid: 6365 components: - type: Transform - pos: -3.5,5.5 + rot: 1.5707963267948966 rad + pos: -11.5,25.5 parent: 2 - uid: 6366 components: - type: Transform - pos: -3.5,6.5 + rot: 1.5707963267948966 rad + pos: -11.5,24.5 parent: 2 - uid: 6367 components: - type: Transform - pos: -3.5,7.5 + rot: 1.5707963267948966 rad + pos: -12.5,24.5 parent: 2 - uid: 6368 components: - type: Transform - pos: -4.5,6.5 + rot: 1.5707963267948966 rad + pos: -12.5,26.5 parent: 2 - uid: 6369 components: - type: Transform - pos: -2.5,5.5 + rot: 1.5707963267948966 rad + pos: -12.5,25.5 parent: 2 - uid: 6370 components: - type: Transform - pos: -2.5,7.5 + rot: 1.5707963267948966 rad + pos: -12.5,27.5 parent: 2 - uid: 6371 components: - type: Transform - pos: -2.5,6.5 + rot: 1.5707963267948966 rad + pos: -12.5,28.5 parent: 2 - uid: 6372 components: - type: Transform - pos: -1.5,5.5 + rot: 1.5707963267948966 rad + pos: -13.5,27.5 parent: 2 - uid: 6373 components: - type: Transform - pos: -1.5,7.5 + rot: 1.5707963267948966 rad + pos: -14.5,27.5 parent: 2 - uid: 6374 components: - type: Transform - pos: -1.5,6.5 + rot: 1.5707963267948966 rad + pos: -14.5,28.5 parent: 2 - uid: 6375 components: - type: Transform - pos: -1.5,8.5 + rot: 1.5707963267948966 rad + pos: -13.5,28.5 parent: 2 - uid: 6376 components: - type: Transform - pos: -0.5,6.5 + rot: 1.5707963267948966 rad + pos: -15.5,27.5 parent: 2 - uid: 6377 components: - type: Transform - pos: -0.5,8.5 + rot: 1.5707963267948966 rad + pos: -15.5,28.5 parent: 2 - uid: 6378 components: - type: Transform - pos: -0.5,7.5 + rot: 1.5707963267948966 rad + pos: -15.5,26.5 parent: 2 - uid: 6379 components: - type: Transform - pos: 0.5,6.5 + rot: 1.5707963267948966 rad + pos: -15.5,24.5 parent: 2 - uid: 6380 components: - type: Transform - pos: 0.5,8.5 + rot: 1.5707963267948966 rad + pos: -15.5,23.5 parent: 2 - uid: 6381 components: - type: Transform - pos: 0.5,7.5 + rot: 1.5707963267948966 rad + pos: -15.5,22.5 parent: 2 - uid: 6382 components: - type: Transform - pos: 1.5,8.5 + rot: 1.5707963267948966 rad + pos: -15.5,25.5 parent: 2 - uid: 6383 components: - type: Transform - pos: 2.5,8.5 + rot: 1.5707963267948966 rad + pos: -14.5,24.5 parent: 2 - uid: 6384 components: - type: Transform - pos: 2.5,7.5 + rot: 1.5707963267948966 rad + pos: -14.5,22.5 parent: 2 - uid: 6385 components: - type: Transform - pos: 1.5,7.5 + rot: 1.5707963267948966 rad + pos: -14.5,21.5 parent: 2 - uid: 6386 components: - type: Transform - pos: 3.5,8.5 + rot: 1.5707963267948966 rad + pos: -13.5,24.5 parent: 2 - uid: 6387 components: - type: Transform - pos: 3.5,7.5 + rot: 1.5707963267948966 rad + pos: -14.5,23.5 parent: 2 - uid: 6388 components: - type: Transform - pos: 4.5,8.5 + rot: 1.5707963267948966 rad + pos: -13.5,21.5 parent: 2 - uid: 6389 components: - type: Transform - pos: 5.5,8.5 + rot: 1.5707963267948966 rad + pos: -13.5,22.5 parent: 2 - uid: 6390 components: - type: Transform - pos: 5.5,7.5 + rot: 1.5707963267948966 rad + pos: -13.5,23.5 parent: 2 - uid: 6391 components: - type: Transform - pos: 6.5,8.5 + rot: 1.5707963267948966 rad + pos: -12.5,21.5 parent: 2 - uid: 6392 components: - type: Transform - pos: 6.5,7.5 + rot: 1.5707963267948966 rad + pos: -11.5,21.5 parent: 2 - uid: 6393 components: - type: Transform - pos: 4.5,7.5 + rot: 1.5707963267948966 rad + pos: -15.5,29.5 parent: 2 - uid: 6394 components: - type: Transform - pos: 4.5,6.5 + rot: 1.5707963267948966 rad + pos: -15.5,30.5 parent: 2 - uid: 6395 components: - type: Transform - pos: 6.5,6.5 + rot: 1.5707963267948966 rad + pos: -16.5,30.5 parent: 2 - uid: 6396 components: - type: Transform - pos: 5.5,6.5 + rot: 1.5707963267948966 rad + pos: -16.5,31.5 parent: 2 - uid: 6397 components: - type: Transform - pos: 6.5,5.5 + rot: 1.5707963267948966 rad + pos: -12.5,31.5 parent: 2 - uid: 6398 components: - type: Transform - pos: 7.5,7.5 + rot: 1.5707963267948966 rad + pos: -12.5,32.5 parent: 2 - uid: 6399 components: - type: Transform - pos: 7.5,5.5 + rot: 1.5707963267948966 rad + pos: -13.5,32.5 parent: 2 - uid: 6400 components: - type: Transform - pos: 8.5,7.5 + rot: 1.5707963267948966 rad + pos: -13.5,33.5 parent: 2 - uid: 6401 components: - type: Transform - pos: 8.5,6.5 + rot: 1.5707963267948966 rad + pos: -14.5,33.5 parent: 2 - uid: 6402 components: - type: Transform - pos: 8.5,5.5 + rot: 1.5707963267948966 rad + pos: -14.5,34.5 parent: 2 - uid: 6403 components: - type: Transform - pos: 9.5,7.5 + rot: 1.5707963267948966 rad + pos: -15.5,34.5 parent: 2 - uid: 6404 components: - type: Transform - pos: 7.5,6.5 + rot: 1.5707963267948966 rad + pos: -16.5,34.5 parent: 2 - uid: 6405 components: - type: Transform - pos: 9.5,6.5 + rot: 1.5707963267948966 rad + pos: -16.5,35.5 parent: 2 - uid: 6406 components: - type: Transform - pos: 10.5,7.5 + rot: 1.5707963267948966 rad + pos: -17.5,35.5 parent: 2 - uid: 6407 components: - type: Transform - pos: 10.5,6.5 + rot: 1.5707963267948966 rad + pos: -17.5,34.5 parent: 2 - uid: 6408 components: - type: Transform - pos: 10.5,5.5 + rot: 1.5707963267948966 rad + pos: -17.5,33.5 parent: 2 - uid: 6409 components: - type: Transform - pos: 9.5,5.5 + rot: 1.5707963267948966 rad + pos: -17.5,32.5 parent: 2 - uid: 6410 components: - type: Transform - pos: 11.5,7.5 + rot: 1.5707963267948966 rad + pos: -18.5,33.5 parent: 2 - uid: 6411 components: - type: Transform - pos: 11.5,6.5 + rot: 1.5707963267948966 rad + pos: -19.5,33.5 parent: 2 - uid: 6412 components: - type: Transform - pos: 11.5,5.5 + rot: 1.5707963267948966 rad + pos: -18.5,35.5 parent: 2 - uid: 6413 components: - type: Transform - pos: 12.5,7.5 + rot: 1.5707963267948966 rad + pos: -19.5,35.5 parent: 2 - uid: 6414 components: - type: Transform - pos: 12.5,6.5 + rot: 1.5707963267948966 rad + pos: -20.5,34.5 parent: 2 - uid: 6415 components: - type: Transform - pos: 12.5,5.5 + rot: 1.5707963267948966 rad + pos: -20.5,36.5 parent: 2 - uid: 6416 components: - type: Transform - pos: 13.5,6.5 + rot: 1.5707963267948966 rad + pos: -21.5,34.5 parent: 2 - uid: 6417 components: - type: Transform - pos: 13.5,5.5 + rot: 1.5707963267948966 rad + pos: -20.5,35.5 parent: 2 - uid: 6418 components: - type: Transform - pos: 13.5,7.5 + rot: 1.5707963267948966 rad + pos: -21.5,35.5 parent: 2 - uid: 6419 components: - type: Transform - pos: 10.5,4.5 + rot: 1.5707963267948966 rad + pos: -21.5,36.5 parent: 2 - uid: 6420 components: - type: Transform - pos: 12.5,4.5 + rot: 1.5707963267948966 rad + pos: -21.5,37.5 parent: 2 - uid: 6421 components: - type: Transform - pos: 13.5,4.5 + rot: 1.5707963267948966 rad + pos: -21.5,38.5 parent: 2 - uid: 6422 components: - type: Transform - pos: 11.5,4.5 + rot: 1.5707963267948966 rad + pos: -20.5,39.5 parent: 2 - uid: 6423 components: - type: Transform - pos: 13.5,8.5 + rot: 1.5707963267948966 rad + pos: -19.5,39.5 parent: 2 - uid: 6424 components: - type: Transform - pos: 11.5,8.5 + rot: 1.5707963267948966 rad + pos: -19.5,38.5 parent: 2 - uid: 6425 components: - type: Transform - pos: 12.5,8.5 + rot: 1.5707963267948966 rad + pos: -22.5,38.5 parent: 2 - uid: 6426 components: - type: Transform - pos: 12.5,9.5 + rot: 1.5707963267948966 rad + pos: -23.5,38.5 parent: 2 - uid: 6427 components: - type: Transform - pos: 12.5,11.5 + rot: 1.5707963267948966 rad + pos: -23.5,37.5 parent: 2 - uid: 6428 components: - type: Transform - pos: 12.5,12.5 + rot: 1.5707963267948966 rad + pos: -22.5,37.5 parent: 2 - uid: 6429 components: - type: Transform - pos: 12.5,10.5 + rot: 1.5707963267948966 rad + pos: -23.5,36.5 parent: 2 - uid: 6430 components: - type: Transform - pos: 11.5,11.5 + rot: 1.5707963267948966 rad + pos: -25.5,36.5 parent: 2 - uid: 6431 components: - type: Transform - pos: -7.5,9.5 + rot: 1.5707963267948966 rad + pos: -24.5,36.5 parent: 2 - uid: 6432 components: - type: Transform - pos: -7.5,10.5 + pos: -24.5,39.5 parent: 2 - uid: 6433 components: - type: Transform - pos: -7.5,11.5 + pos: -25.5,39.5 parent: 2 - uid: 6434 components: - type: Transform - pos: -7.5,13.5 + pos: -27.5,39.5 parent: 2 - uid: 6435 components: - type: Transform - pos: -7.5,12.5 + pos: -28.5,39.5 parent: 2 - uid: 6436 components: - type: Transform - pos: -6.5,11.5 + pos: -29.5,39.5 parent: 2 - uid: 6437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,21.5 + pos: -30.5,39.5 parent: 2 - uid: 6438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,23.5 + pos: -26.5,39.5 parent: 2 - uid: 6439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,24.5 + pos: -30.5,38.5 parent: 2 - uid: 6440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,25.5 + pos: -28.5,38.5 parent: 2 - uid: 6441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,21.5 + pos: -29.5,38.5 parent: 2 - uid: 6442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,22.5 + pos: -32.5,39.5 parent: 2 - uid: 6443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,23.5 + pos: -32.5,41.5 parent: 2 - uid: 6444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,22.5 + pos: -31.5,39.5 parent: 2 - uid: 6445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,24.5 + pos: -31.5,40.5 parent: 2 - uid: 6446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,25.5 + pos: -32.5,40.5 parent: 2 - uid: 6447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 + pos: -31.5,41.5 parent: 2 - uid: 6448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,25.5 + pos: -30.5,41.5 parent: 2 - uid: 6449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,24.5 + pos: -30.5,40.5 parent: 2 - uid: 6450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,25.5 + pos: -29.5,40.5 parent: 2 - uid: 6451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,25.5 + pos: -33.5,41.5 parent: 2 - uid: 6452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,24.5 + pos: -33.5,42.5 parent: 2 - uid: 6453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,24.5 + pos: -34.5,41.5 parent: 2 - uid: 6454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,25.5 + pos: -34.5,42.5 parent: 2 - uid: 6455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,24.5 + pos: -36.5,41.5 parent: 2 - uid: 6456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,25.5 + pos: -36.5,39.5 parent: 2 - uid: 6457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,24.5 + pos: -36.5,38.5 parent: 2 - uid: 6458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,25.5 + pos: -35.5,41.5 parent: 2 - uid: 6459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,24.5 + pos: -35.5,39.5 parent: 2 - uid: 6460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,25.5 + pos: -36.5,40.5 parent: 2 - uid: 6461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 + pos: -35.5,38.5 parent: 2 - uid: 6462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,24.5 + pos: -35.5,40.5 parent: 2 - uid: 6463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,25.5 + pos: -39.5,35.5 parent: 2 - uid: 6464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,24.5 + pos: -39.5,33.5 parent: 2 - uid: 6465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,24.5 + pos: -39.5,34.5 parent: 2 - uid: 6466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,24.5 + pos: -37.5,35.5 parent: 2 - uid: 6467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,24.5 + pos: -37.5,36.5 parent: 2 - uid: 6468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,24.5 + pos: -37.5,34.5 parent: 2 - uid: 6469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,24.5 + pos: -38.5,36.5 parent: 2 - uid: 6470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,24.5 + pos: -36.5,36.5 parent: 2 - uid: 6471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,24.5 + pos: -36.5,35.5 parent: 2 - uid: 6472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,25.5 + pos: -35.5,36.5 parent: 2 - uid: 6473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,26.5 + pos: -33.5,35.5 parent: 2 - uid: 6474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,27.5 + pos: -33.5,36.5 parent: 2 - uid: 6475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,28.5 + pos: -39.5,40.5 parent: 2 - uid: 6476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,25.5 + pos: -40.5,40.5 parent: 2 - uid: 6477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,26.5 + pos: -38.5,40.5 parent: 2 - uid: 6478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,27.5 + pos: -39.5,39.5 parent: 2 - uid: 6479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,28.5 + pos: -40.5,39.5 parent: 2 - uid: 6480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,25.5 + pos: -40.5,38.5 parent: 2 - uid: 6481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,26.5 + pos: -41.5,39.5 parent: 2 - uid: 6482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,27.5 + pos: -41.5,38.5 parent: 2 - uid: 6483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,28.5 + pos: -39.5,38.5 parent: 2 - uid: 6484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,28.5 + pos: -41.5,37.5 parent: 2 - uid: 6485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,28.5 + pos: -40.5,37.5 parent: 2 - uid: 6486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,28.5 + pos: -39.5,37.5 parent: 2 - uid: 6487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,28.5 + pos: -40.5,36.5 parent: 2 - uid: 6488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,28.5 + pos: -41.5,36.5 parent: 2 - uid: 6489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,27.5 + pos: -41.5,35.5 parent: 2 - uid: 6490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,27.5 + pos: -41.5,34.5 parent: 2 - uid: 6491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,26.5 + pos: -41.5,33.5 parent: 2 - uid: 6492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,26.5 + pos: -41.5,32.5 parent: 2 - uid: 6493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,29.5 + pos: -42.5,33.5 parent: 2 - uid: 6494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,29.5 + pos: -44.5,33.5 parent: 2 - uid: 6495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,30.5 + pos: -45.5,33.5 parent: 2 - uid: 6496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,30.5 + pos: -43.5,33.5 parent: 2 - uid: 6497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,30.5 + pos: -45.5,34.5 parent: 2 - uid: 6498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,31.5 + pos: -45.5,36.5 parent: 2 - uid: 6499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,32.5 + pos: -45.5,37.5 parent: 2 - uid: 6500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,30.5 + pos: -45.5,38.5 parent: 2 - uid: 6501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,31.5 + pos: -45.5,35.5 parent: 2 - uid: 6502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,32.5 + pos: -43.5,38.5 parent: 2 - uid: 6503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 + pos: -44.5,38.5 parent: 2 - uid: 6504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,34.5 + pos: -42.5,38.5 parent: 2 - uid: 6505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,34.5 + pos: -46.5,38.5 parent: 2 - uid: 6506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,34.5 + pos: -46.5,36.5 parent: 2 - uid: 6507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,33.5 + pos: -46.5,35.5 parent: 2 - uid: 6508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,32.5 + pos: -46.5,34.5 parent: 2 - uid: 6509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,31.5 + pos: -46.5,37.5 parent: 2 - uid: 6510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,31.5 + pos: -47.5,37.5 parent: 2 - uid: 6511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,31.5 + pos: -47.5,36.5 parent: 2 - uid: 6512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,30.5 + pos: -47.5,35.5 parent: 2 - uid: 6513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,30.5 + pos: -47.5,34.5 parent: 2 - uid: 6514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,31.5 + pos: -48.5,36.5 parent: 2 - uid: 6515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,30.5 + pos: -48.5,35.5 parent: 2 - uid: 6516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,29.5 + pos: -49.5,36.5 parent: 2 - uid: 6517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,27.5 + pos: -50.5,36.5 parent: 2 - uid: 6518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,26.5 + pos: -52.5,35.5 parent: 2 - uid: 6519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,29.5 + pos: -54.5,35.5 parent: 2 - uid: 6520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,28.5 + pos: -53.5,35.5 parent: 2 - uid: 6521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,28.5 + pos: -54.5,36.5 parent: 2 - uid: 6522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,26.5 + pos: -54.5,37.5 parent: 2 - uid: 6523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,27.5 + pos: -55.5,37.5 parent: 2 - uid: 6524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,30.5 + pos: -57.5,37.5 parent: 2 - uid: 6525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,30.5 + pos: -58.5,37.5 parent: 2 - uid: 6526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,31.5 + pos: -59.5,37.5 parent: 2 - uid: 6527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,30.5 + pos: -56.5,37.5 parent: 2 - uid: 6528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,31.5 + pos: -60.5,43.5 parent: 2 - uid: 6529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,31.5 + pos: -59.5,43.5 parent: 2 - uid: 6530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,30.5 + pos: -54.5,44.5 parent: 2 - uid: 6531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,30.5 + pos: -57.5,42.5 parent: 2 - uid: 6532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,31.5 + pos: -56.5,42.5 parent: 2 - uid: 6533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,31.5 + pos: -60.5,38.5 parent: 2 - uid: 6534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,29.5 + pos: -59.5,36.5 parent: 2 - uid: 6535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,27.5 + pos: -59.5,34.5 parent: 2 - uid: 6536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,26.5 + pos: -59.5,33.5 parent: 2 - uid: 6537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,28.5 + pos: -59.5,32.5 parent: 2 - uid: 6538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,25.5 + pos: -58.5,36.5 parent: 2 - uid: 6539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,24.5 + pos: -58.5,35.5 parent: 2 - uid: 6540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,24.5 + pos: -58.5,34.5 parent: 2 - uid: 6541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,26.5 + pos: -59.5,35.5 parent: 2 - uid: 6542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,25.5 + pos: -58.5,33.5 parent: 2 - uid: 6543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,27.5 + pos: -57.5,36.5 parent: 2 - uid: 6544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,28.5 + pos: -57.5,35.5 parent: 2 - uid: 6545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,27.5 + pos: -57.5,33.5 parent: 2 - uid: 6546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,27.5 + pos: -57.5,34.5 parent: 2 - uid: 6547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,28.5 + pos: -57.5,32.5 parent: 2 - uid: 6548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,28.5 + pos: -58.5,32.5 parent: 2 - uid: 6549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,27.5 + pos: -61.5,33.5 parent: 2 - uid: 6550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,28.5 + pos: -60.5,33.5 parent: 2 - uid: 6551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,26.5 + pos: -60.5,32.5 parent: 2 - uid: 6552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,24.5 + pos: -56.5,33.5 parent: 2 - uid: 6553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,23.5 + pos: -55.5,33.5 parent: 2 - uid: 6554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,22.5 + pos: -54.5,34.5 parent: 2 - uid: 6555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,25.5 + pos: -63.5,34.5 parent: 2 - uid: 6556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,24.5 + pos: -63.5,36.5 parent: 2 - uid: 6557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,22.5 + pos: -63.5,37.5 parent: 2 - uid: 6558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,21.5 + pos: -63.5,35.5 parent: 2 - uid: 6559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,24.5 + pos: -64.5,37.5 parent: 2 - uid: 6560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,23.5 + pos: -64.5,35.5 parent: 2 - uid: 6561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,21.5 + pos: -64.5,36.5 parent: 2 - uid: 6562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,22.5 + pos: -67.5,35.5 parent: 2 - uid: 6563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,23.5 + pos: -65.5,35.5 parent: 2 - uid: 6564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,21.5 + pos: -66.5,35.5 parent: 2 - uid: 6565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,21.5 + pos: -66.5,34.5 parent: 2 - uid: 6566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,29.5 + pos: -65.5,34.5 parent: 2 - uid: 6567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,30.5 + pos: -64.5,33.5 parent: 2 - uid: 6568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,30.5 + pos: -68.5,38.5 parent: 2 - uid: 6569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,31.5 + pos: -68.5,36.5 parent: 2 - uid: 6570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,31.5 + pos: -68.5,39.5 parent: 2 - uid: 6571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,32.5 + pos: -66.5,39.5 parent: 2 - uid: 6572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,32.5 + pos: -65.5,39.5 parent: 2 - uid: 6573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 + pos: -67.5,39.5 parent: 2 - uid: 6574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,33.5 + pos: -65.5,40.5 parent: 2 - uid: 6575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,34.5 + pos: -65.5,40.5 parent: 2 - uid: 6576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,34.5 + pos: -65.5,42.5 parent: 2 - uid: 6577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,34.5 + pos: -65.5,41.5 parent: 2 - uid: 6578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,35.5 + pos: -67.5,42.5 parent: 2 - uid: 6579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,35.5 + pos: -66.5,42.5 parent: 2 - uid: 6580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,34.5 + pos: -66.5,43.5 parent: 2 - uid: 6581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,33.5 + pos: -67.5,43.5 parent: 2 - uid: 6582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,32.5 + pos: -67.5,41.5 parent: 2 - uid: 6583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,33.5 + pos: -67.5,40.5 parent: 2 - uid: 6584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,33.5 + pos: -66.5,40.5 parent: 2 - uid: 6585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,35.5 + pos: -63.5,42.5 parent: 2 - uid: 6586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,35.5 + pos: -62.5,42.5 parent: 2 - uid: 6587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,34.5 + pos: -72.5,43.5 parent: 2 - uid: 6588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,36.5 + pos: -72.5,45.5 parent: 2 - uid: 6589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,34.5 + pos: -71.5,43.5 parent: 2 - uid: 6590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,35.5 + pos: -71.5,44.5 parent: 2 - uid: 6591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,35.5 + pos: -71.5,45.5 parent: 2 - uid: 6592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,36.5 + pos: -72.5,44.5 parent: 2 - uid: 6593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,37.5 + pos: -73.5,45.5 parent: 2 - uid: 6594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,38.5 + pos: -73.5,44.5 parent: 2 - uid: 6595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,39.5 + pos: -74.5,44.5 parent: 2 - uid: 6596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,39.5 + pos: -69.5,44.5 parent: 2 - uid: 6597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,38.5 + pos: -70.5,44.5 parent: 2 - uid: 6598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,38.5 + pos: -127.5,7.5 parent: 2 - uid: 6599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,38.5 + pos: -126.5,7.5 parent: 2 - uid: 6600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,37.5 + pos: -75.5,46.5 parent: 2 - uid: 6601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,37.5 + pos: -77.5,45.5 parent: 2 - uid: 6602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,36.5 + pos: -77.5,44.5 parent: 2 - uid: 6603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,36.5 + pos: -76.5,44.5 parent: 2 - uid: 6604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,36.5 + pos: -78.5,45.5 parent: 2 - uid: 6605 components: - type: Transform - pos: -24.5,39.5 + pos: -82.5,48.5 parent: 2 - uid: 6606 components: - type: Transform - pos: -25.5,39.5 + pos: -85.5,46.5 parent: 2 - uid: 6607 components: - type: Transform - pos: -27.5,39.5 + pos: -85.5,48.5 parent: 2 - uid: 6608 components: - type: Transform - pos: -28.5,39.5 + pos: -85.5,47.5 parent: 2 - uid: 6609 components: - type: Transform - pos: -29.5,39.5 + pos: -86.5,52.5 parent: 2 - uid: 6610 components: - type: Transform - pos: -30.5,39.5 + pos: -85.5,52.5 parent: 2 - uid: 6611 components: - type: Transform - pos: -26.5,39.5 + pos: -83.5,53.5 parent: 2 - uid: 6612 components: - type: Transform - pos: -30.5,38.5 + pos: -81.5,52.5 parent: 2 - uid: 6613 components: - type: Transform - pos: -28.5,38.5 + pos: -81.5,53.5 parent: 2 - uid: 6614 components: - type: Transform - pos: -29.5,38.5 + pos: -82.5,55.5 parent: 2 - uid: 6615 components: - type: Transform - pos: -32.5,39.5 + pos: -82.5,56.5 parent: 2 - uid: 6616 components: - type: Transform - pos: -32.5,41.5 + pos: -81.5,58.5 parent: 2 - uid: 6617 components: - type: Transform - pos: -31.5,39.5 + pos: -81.5,60.5 parent: 2 - uid: 6618 components: - type: Transform - pos: -31.5,40.5 + pos: -83.5,62.5 parent: 2 - uid: 6619 components: - type: Transform - pos: -32.5,40.5 + pos: -82.5,61.5 parent: 2 - uid: 6620 components: - type: Transform - pos: -31.5,41.5 + pos: -83.5,63.5 parent: 2 - uid: 6621 components: - type: Transform - pos: -30.5,41.5 + pos: -82.5,63.5 parent: 2 - uid: 6622 components: - type: Transform - pos: -30.5,40.5 + pos: -86.5,66.5 parent: 2 - uid: 6623 components: - type: Transform - pos: -29.5,40.5 + pos: -91.5,62.5 parent: 2 - uid: 6624 components: - type: Transform - pos: -33.5,41.5 + pos: -91.5,66.5 parent: 2 - uid: 6625 components: - type: Transform - pos: -33.5,42.5 + pos: -88.5,69.5 parent: 2 - uid: 6626 components: - type: Transform - pos: -34.5,41.5 + pos: -84.5,68.5 parent: 2 - uid: 6627 components: - type: Transform - pos: -34.5,42.5 + pos: -86.5,63.5 parent: 2 - uid: 6628 components: - type: Transform - pos: -36.5,41.5 + pos: -84.5,65.5 parent: 2 - uid: 6629 components: - type: Transform - pos: -36.5,39.5 + pos: -79.5,60.5 parent: 2 - uid: 6630 components: - type: Transform - pos: -36.5,38.5 + pos: -79.5,59.5 parent: 2 - uid: 6631 components: - type: Transform - pos: -35.5,41.5 + pos: -78.5,60.5 parent: 2 - uid: 6632 components: - type: Transform - pos: -35.5,39.5 + pos: -78.5,61.5 parent: 2 - uid: 6633 components: - type: Transform - pos: -36.5,40.5 + pos: -79.5,62.5 parent: 2 - uid: 6634 components: - type: Transform - pos: -35.5,38.5 + pos: -77.5,61.5 parent: 2 - uid: 6635 components: - type: Transform - pos: -35.5,40.5 + pos: -78.5,63.5 parent: 2 - uid: 6636 components: - type: Transform - pos: -39.5,35.5 + pos: -76.5,63.5 parent: 2 - uid: 6637 components: - type: Transform - pos: -39.5,33.5 + pos: -75.5,63.5 parent: 2 - uid: 6638 components: - type: Transform - pos: -39.5,34.5 + pos: -77.5,63.5 parent: 2 - uid: 6639 components: - type: Transform - pos: -37.5,35.5 + pos: -74.5,63.5 parent: 2 - uid: 6640 components: - type: Transform - pos: -37.5,36.5 + pos: -73.5,63.5 parent: 2 - uid: 6641 components: - type: Transform - pos: -37.5,34.5 + pos: -72.5,62.5 parent: 2 - uid: 6642 components: - type: Transform - pos: -38.5,36.5 + pos: -75.5,61.5 parent: 2 - uid: 6643 components: - type: Transform - pos: -36.5,36.5 + pos: -74.5,61.5 parent: 2 - uid: 6644 components: - type: Transform - pos: -36.5,35.5 + pos: -74.5,60.5 parent: 2 - uid: 6645 components: - type: Transform - pos: -35.5,36.5 + pos: -72.5,60.5 parent: 2 - uid: 6646 components: - type: Transform - pos: -33.5,35.5 + pos: -83.5,48.5 parent: 2 - uid: 6647 components: - type: Transform - pos: -33.5,36.5 + pos: -83.5,47.5 parent: 2 - uid: 6648 components: - type: Transform - pos: -39.5,40.5 + pos: -88.5,46.5 parent: 2 - uid: 6649 components: - type: Transform - pos: -40.5,40.5 + pos: -88.5,45.5 parent: 2 - uid: 6650 components: - type: Transform - pos: -38.5,40.5 + pos: -76.5,39.5 parent: 2 - uid: 6651 components: - type: Transform - pos: -39.5,39.5 + pos: -74.5,40.5 parent: 2 - uid: 6652 components: - type: Transform - pos: -40.5,39.5 + pos: -74.5,39.5 parent: 2 - uid: 6653 components: - type: Transform - pos: -40.5,38.5 + pos: -75.5,39.5 parent: 2 - uid: 6654 components: - type: Transform - pos: -41.5,39.5 + pos: -73.5,39.5 parent: 2 - uid: 6655 components: - type: Transform - pos: -41.5,38.5 + pos: -72.5,39.5 parent: 2 - uid: 6656 components: - type: Transform - pos: -39.5,38.5 + pos: -72.5,40.5 parent: 2 - uid: 6657 components: - type: Transform - pos: -41.5,37.5 + pos: -72.5,38.5 parent: 2 - uid: 6658 components: - type: Transform - pos: -40.5,37.5 + pos: -71.5,38.5 parent: 2 - uid: 6659 components: - type: Transform - pos: -39.5,37.5 + pos: -73.5,35.5 parent: 2 - uid: 6660 components: - type: Transform - pos: -40.5,36.5 + pos: -77.5,36.5 parent: 2 - uid: 6661 components: - type: Transform - pos: -41.5,36.5 + pos: -77.5,38.5 parent: 2 - uid: 6662 components: - type: Transform - pos: -41.5,35.5 + pos: -77.5,37.5 parent: 2 - uid: 6663 components: - type: Transform - pos: -41.5,34.5 + pos: -65.5,31.5 parent: 2 - uid: 6664 components: - type: Transform - pos: -41.5,33.5 + pos: -65.5,29.5 parent: 2 - uid: 6665 components: - type: Transform - pos: -41.5,32.5 + pos: -65.5,30.5 parent: 2 - uid: 6666 components: - type: Transform - pos: -42.5,33.5 + pos: -64.5,31.5 parent: 2 - uid: 6667 components: - type: Transform - pos: -44.5,33.5 + pos: -63.5,30.5 parent: 2 - uid: 6668 components: - type: Transform - pos: -45.5,33.5 + pos: -63.5,28.5 parent: 2 - uid: 6669 components: - type: Transform - pos: -43.5,33.5 + pos: -63.5,29.5 parent: 2 - uid: 6670 components: - type: Transform - pos: -45.5,34.5 + pos: -63.5,27.5 parent: 2 - uid: 6671 components: - type: Transform - pos: -45.5,36.5 + pos: -63.5,26.5 parent: 2 - uid: 6672 components: - type: Transform - pos: -45.5,37.5 + pos: -64.5,26.5 parent: 2 - uid: 6673 components: - type: Transform - pos: -45.5,38.5 + pos: -64.5,25.5 parent: 2 - uid: 6674 components: - type: Transform - pos: -45.5,35.5 + pos: -88.5,34.5 parent: 2 - uid: 6675 components: - type: Transform - pos: -43.5,38.5 + pos: -90.5,34.5 parent: 2 - uid: 6676 components: - type: Transform - pos: -44.5,38.5 + pos: -94.5,34.5 parent: 2 - uid: 6677 components: - type: Transform - pos: -42.5,38.5 + pos: -94.5,32.5 parent: 2 - uid: 6678 components: - type: Transform - pos: -46.5,38.5 + pos: -94.5,31.5 parent: 2 - uid: 6679 components: - type: Transform - pos: -46.5,36.5 + pos: -95.5,31.5 parent: 2 - uid: 6680 components: - type: Transform - pos: -46.5,35.5 + pos: -98.5,36.5 parent: 2 - uid: 6681 components: - type: Transform - pos: -46.5,34.5 + pos: -98.5,35.5 parent: 2 - uid: 6682 components: - type: Transform - pos: -46.5,37.5 + pos: -100.5,34.5 parent: 2 - uid: 6683 components: - type: Transform - pos: -47.5,37.5 + pos: -100.5,36.5 parent: 2 - uid: 6684 components: - type: Transform - pos: -47.5,36.5 + pos: -105.5,37.5 parent: 2 - uid: 6685 components: - type: Transform - pos: -47.5,35.5 + pos: -107.5,37.5 parent: 2 - uid: 6686 components: - type: Transform - pos: -47.5,34.5 + pos: -109.5,37.5 parent: 2 - uid: 6687 components: - type: Transform - pos: -48.5,36.5 + pos: -110.5,37.5 parent: 2 - uid: 6688 components: - type: Transform - pos: -48.5,35.5 + pos: -111.5,37.5 parent: 2 - uid: 6689 components: - type: Transform - pos: -49.5,36.5 + pos: -112.5,37.5 parent: 2 - uid: 6690 components: - type: Transform - pos: -50.5,36.5 + pos: -108.5,37.5 parent: 2 - uid: 6691 components: - type: Transform - pos: -52.5,35.5 + pos: -114.5,37.5 parent: 2 - uid: 6692 components: - type: Transform - pos: -54.5,35.5 + pos: -116.5,35.5 parent: 2 - uid: 6693 components: - type: Transform - pos: -53.5,35.5 + pos: -118.5,35.5 parent: 2 - uid: 6694 components: - type: Transform - pos: -54.5,36.5 + pos: -118.5,34.5 parent: 2 - uid: 6695 components: - type: Transform - pos: -54.5,37.5 + pos: -116.5,37.5 parent: 2 - uid: 6696 components: - type: Transform - pos: -55.5,37.5 + pos: -117.5,33.5 parent: 2 - uid: 6697 components: - type: Transform - pos: -57.5,37.5 + pos: -119.5,27.5 parent: 2 - uid: 6698 components: - type: Transform - pos: -58.5,37.5 + pos: -119.5,24.5 parent: 2 - uid: 6699 components: - type: Transform - pos: -59.5,37.5 + pos: -120.5,24.5 parent: 2 - uid: 6700 components: - type: Transform - pos: -56.5,37.5 + pos: -122.5,21.5 parent: 2 - uid: 6701 components: - type: Transform - pos: -60.5,43.5 + pos: -122.5,19.5 parent: 2 - uid: 6702 components: - type: Transform - pos: -58.5,43.5 + pos: -122.5,20.5 parent: 2 - uid: 6703 components: - type: Transform - pos: -59.5,43.5 + pos: -123.5,20.5 parent: 2 - uid: 6704 components: - type: Transform - pos: -58.5,44.5 + pos: -123.5,19.5 parent: 2 - uid: 6705 components: - type: Transform - pos: -57.5,42.5 + pos: -123.5,18.5 parent: 2 - uid: 6706 components: - type: Transform - pos: -56.5,42.5 + pos: -123.5,16.5 parent: 2 - uid: 6707 components: - type: Transform - pos: -55.5,42.5 + pos: -123.5,17.5 parent: 2 - uid: 6708 components: - type: Transform - pos: -55.5,41.5 + pos: -123.5,15.5 parent: 2 - uid: 6709 components: - type: Transform - pos: -60.5,38.5 + pos: -123.5,14.5 parent: 2 - uid: 6710 components: - type: Transform - pos: -54.5,45.5 + pos: -122.5,14.5 parent: 2 - uid: 6711 components: - type: Transform - pos: -55.5,46.5 + pos: -121.5,14.5 parent: 2 - uid: 6712 components: - type: Transform - pos: -56.5,46.5 + pos: -121.5,13.5 parent: 2 - uid: 6713 components: - type: Transform - pos: -59.5,36.5 + pos: -120.5,14.5 parent: 2 - uid: 6714 components: - type: Transform - pos: -59.5,34.5 + pos: -120.5,13.5 parent: 2 - uid: 6715 components: - type: Transform - pos: -59.5,33.5 + pos: -119.5,14.5 parent: 2 - uid: 6716 components: - type: Transform - pos: -59.5,32.5 + pos: -119.5,13.5 parent: 2 - uid: 6717 components: - type: Transform - pos: -58.5,36.5 + pos: -122.5,13.5 parent: 2 - uid: 6718 components: - type: Transform - pos: -58.5,35.5 + pos: -127.5,15.5 parent: 2 - uid: 6719 components: - type: Transform - pos: -58.5,34.5 + pos: -127.5,14.5 parent: 2 - uid: 6720 components: - type: Transform - pos: -59.5,35.5 + pos: -127.5,12.5 parent: 2 - uid: 6721 components: - type: Transform - pos: -58.5,33.5 + pos: -127.5,13.5 parent: 2 - uid: 6722 components: - type: Transform - pos: -57.5,36.5 + pos: -128.5,12.5 parent: 2 - uid: 6723 components: - type: Transform - pos: -57.5,35.5 + pos: -119.5,12.5 parent: 2 - uid: 6724 components: - type: Transform - pos: -57.5,33.5 + pos: -119.5,10.5 parent: 2 - uid: 6725 components: - type: Transform - pos: -57.5,34.5 + pos: -119.5,9.5 parent: 2 - uid: 6726 components: - type: Transform - pos: -57.5,32.5 + pos: -119.5,8.5 parent: 2 - uid: 6727 components: - type: Transform - pos: -58.5,32.5 + pos: -119.5,6.5 parent: 2 - uid: 6728 components: - type: Transform - pos: -61.5,33.5 + pos: -119.5,5.5 parent: 2 - uid: 6729 components: - type: Transform - pos: -60.5,33.5 + pos: -119.5,11.5 parent: 2 - uid: 6730 components: - type: Transform - pos: -60.5,32.5 + pos: -119.5,7.5 parent: 2 - uid: 6731 components: - type: Transform - pos: -56.5,33.5 + pos: -119.5,4.5 parent: 2 - uid: 6732 components: - type: Transform - pos: -55.5,33.5 + pos: -120.5,12.5 parent: 2 - uid: 6733 components: - type: Transform - pos: -54.5,34.5 + pos: -120.5,11.5 parent: 2 - uid: 6734 components: - type: Transform - pos: -63.5,34.5 + pos: -120.5,10.5 parent: 2 - uid: 6735 components: - type: Transform - pos: -63.5,36.5 + pos: -120.5,9.5 parent: 2 - uid: 6736 components: - type: Transform - pos: -63.5,37.5 + pos: -120.5,8.5 parent: 2 - uid: 6737 components: - type: Transform - pos: -63.5,35.5 + pos: -120.5,7.5 parent: 2 - uid: 6738 components: - type: Transform - pos: -64.5,37.5 + pos: -120.5,6.5 parent: 2 - uid: 6739 components: - type: Transform - pos: -64.5,35.5 + pos: -120.5,5.5 parent: 2 - uid: 6740 components: - type: Transform - pos: -64.5,36.5 + pos: -120.5,4.5 parent: 2 - uid: 6741 components: - type: Transform - pos: -67.5,35.5 + pos: -129.5,11.5 parent: 2 - uid: 6742 components: - type: Transform - pos: -65.5,35.5 + pos: -129.5,9.5 parent: 2 - uid: 6743 components: - type: Transform - pos: -66.5,35.5 + pos: -129.5,8.5 parent: 2 - uid: 6744 components: - type: Transform - pos: -66.5,34.5 + pos: -129.5,10.5 parent: 2 - uid: 6745 components: - type: Transform - pos: -65.5,34.5 + pos: -119.5,3.5 parent: 2 - uid: 6746 components: - type: Transform - pos: -64.5,33.5 + pos: -119.5,1.5 parent: 2 - uid: 6747 components: - type: Transform - pos: -68.5,38.5 + pos: -119.5,2.5 parent: 2 - uid: 6748 components: - type: Transform - pos: -68.5,36.5 + pos: -119.5,0.5 parent: 2 - uid: 6749 components: - type: Transform - pos: -68.5,39.5 + pos: -126.5,13.5 parent: 2 - uid: 6750 components: - type: Transform - pos: -66.5,39.5 + pos: -126.5,12.5 parent: 2 - uid: 6751 components: - type: Transform - pos: -65.5,39.5 + pos: -125.5,13.5 parent: 2 - uid: 6752 components: - type: Transform - pos: -67.5,39.5 + pos: -125.5,12.5 parent: 2 - uid: 6753 components: - type: Transform - pos: -65.5,40.5 + pos: -120.5,0.5 parent: 2 - uid: 6754 components: - type: Transform - pos: -65.5,40.5 + pos: -121.5,0.5 parent: 2 - uid: 6755 components: - type: Transform - pos: -65.5,42.5 + pos: -122.5,0.5 parent: 2 - uid: 6756 components: - type: Transform - pos: -65.5,41.5 + pos: -123.5,0.5 parent: 2 - uid: 6757 components: - type: Transform - pos: -67.5,42.5 + pos: -124.5,0.5 parent: 2 - uid: 6758 components: - type: Transform - pos: -66.5,42.5 + pos: -125.5,11.5 parent: 2 - uid: 6759 components: - type: Transform - pos: -66.5,43.5 + pos: -123.5,1.5 parent: 2 - uid: 6760 components: - type: Transform - pos: -67.5,43.5 + pos: -123.5,3.5 parent: 2 - uid: 6761 components: - type: Transform - pos: -67.5,41.5 + pos: -123.5,4.5 parent: 2 - uid: 6762 components: - type: Transform - pos: -67.5,40.5 + pos: -123.5,2.5 parent: 2 - uid: 6763 components: - type: Transform - pos: -66.5,40.5 + pos: -124.5,1.5 parent: 2 - uid: 6764 components: - type: Transform - pos: -63.5,42.5 + pos: -124.5,3.5 parent: 2 - uid: 6765 components: - type: Transform - pos: -62.5,42.5 + pos: -124.5,4.5 parent: 2 - uid: 6766 components: - type: Transform - pos: -72.5,43.5 + pos: -124.5,2.5 parent: 2 - uid: 6767 components: - type: Transform - pos: -72.5,45.5 + pos: -122.5,4.5 parent: 2 - uid: 6768 components: - type: Transform - pos: -71.5,43.5 + pos: -121.5,4.5 parent: 2 - uid: 6769 components: - type: Transform - pos: -71.5,44.5 + pos: -123.5,13.5 parent: 2 - uid: 6770 components: - type: Transform - pos: -71.5,45.5 + pos: -124.5,13.5 parent: 2 - uid: 6771 components: - type: Transform - pos: -72.5,44.5 + pos: -124.5,12.5 parent: 2 - uid: 6772 components: - type: Transform - pos: -73.5,45.5 + pos: -124.5,11.5 parent: 2 - uid: 6773 components: - type: Transform - pos: -73.5,44.5 + pos: -124.5,10.5 parent: 2 - uid: 6774 components: - type: Transform - pos: -74.5,44.5 + pos: -125.5,3.5 parent: 2 - uid: 6775 components: - type: Transform - pos: -69.5,44.5 + pos: -125.5,5.5 parent: 2 - uid: 6776 components: - type: Transform - pos: -70.5,44.5 + pos: -125.5,6.5 parent: 2 - uid: 6777 components: - type: Transform - pos: -127.5,7.5 + pos: -125.5,7.5 parent: 2 - uid: 6778 components: - type: Transform - pos: -126.5,7.5 + pos: -125.5,8.5 parent: 2 - uid: 6779 components: - type: Transform - pos: -75.5,46.5 + pos: -125.5,9.5 parent: 2 - uid: 6780 components: - type: Transform - pos: -77.5,45.5 + pos: -125.5,10.5 parent: 2 - uid: 6781 components: - type: Transform - pos: -77.5,44.5 + pos: -125.5,4.5 parent: 2 - uid: 6782 components: - type: Transform - pos: -76.5,44.5 + pos: -124.5,5.5 parent: 2 - uid: 6783 components: - type: Transform - pos: -78.5,45.5 + pos: -124.5,6.5 parent: 2 - uid: 6784 components: - type: Transform - pos: -82.5,48.5 + pos: -124.5,8.5 parent: 2 - uid: 6785 components: - type: Transform - pos: -85.5,46.5 + pos: -124.5,9.5 parent: 2 - uid: 6786 components: - type: Transform - pos: -85.5,48.5 + pos: -124.5,7.5 parent: 2 - uid: 6787 components: - type: Transform - pos: -85.5,47.5 + pos: -127.5,1.5 parent: 2 - uid: 6788 components: - type: Transform - pos: -86.5,52.5 + pos: -123.5,9.5 parent: 2 - uid: 6789 components: - type: Transform - pos: -85.5,52.5 + pos: -121.5,9.5 parent: 2 - uid: 6790 components: - type: Transform - pos: -83.5,53.5 + pos: -122.5,9.5 parent: 2 - uid: 6791 components: - type: Transform - pos: -81.5,52.5 + pos: -127.5,2.5 parent: 2 - uid: 6792 components: - type: Transform - pos: -81.5,53.5 + pos: -128.5,3.5 parent: 2 - uid: 6793 components: - type: Transform - pos: -82.5,55.5 + pos: -127.5,3.5 parent: 2 - uid: 6794 components: - type: Transform - pos: -82.5,56.5 + pos: -126.5,3.5 parent: 2 - uid: 6795 components: - type: Transform - pos: -81.5,58.5 + pos: -131.5,18.5 parent: 2 - uid: 6796 components: - type: Transform - pos: -81.5,60.5 + pos: -131.5,17.5 parent: 2 - uid: 6797 components: - type: Transform - pos: -83.5,62.5 + pos: -129.5,17.5 parent: 2 - uid: 6798 components: - type: Transform - pos: -82.5,61.5 + pos: -126.5,18.5 parent: 2 - uid: 6799 components: - type: Transform - pos: -83.5,63.5 + pos: -125.5,18.5 parent: 2 - uid: 6800 components: - type: Transform - pos: -82.5,63.5 + pos: -134.5,19.5 parent: 2 - uid: 6801 components: - type: Transform - pos: -84.5,63.5 + pos: -136.5,18.5 parent: 2 - uid: 6802 components: - type: Transform - pos: -89.5,62.5 + pos: -137.5,16.5 parent: 2 - uid: 6803 components: - type: Transform - pos: -91.5,62.5 + pos: -137.5,15.5 parent: 2 - uid: 6804 components: - type: Transform - pos: -91.5,66.5 + pos: -42.5,-35.5 parent: 2 - uid: 6805 components: - type: Transform - pos: -90.5,66.5 + pos: -59.5,2.5 parent: 2 - uid: 6806 components: - type: Transform - pos: -90.5,67.5 + pos: -59.5,4.5 parent: 2 - uid: 6807 components: - type: Transform - pos: -90.5,68.5 + pos: -59.5,5.5 parent: 2 - uid: 6808 components: - type: Transform - pos: -89.5,68.5 + pos: -60.5,2.5 parent: 2 - uid: 6809 components: - type: Transform - pos: -88.5,69.5 + pos: -59.5,3.5 parent: 2 - uid: 6810 components: - type: Transform - pos: -84.5,68.5 + pos: -60.5,3.5 parent: 2 - uid: 6811 components: - type: Transform - pos: -86.5,66.5 + pos: -60.5,4.5 parent: 2 - uid: 6812 components: - type: Transform - pos: -86.5,65.5 + pos: -60.5,5.5 parent: 2 - uid: 6813 components: - type: Transform - pos: -87.5,65.5 + pos: -59.5,6.5 parent: 2 - uid: 6814 components: - type: Transform - pos: -88.5,65.5 + pos: -58.5,6.5 parent: 2 - uid: 6815 components: - type: Transform - pos: -85.5,62.5 + pos: -57.5,6.5 parent: 2 - uid: 6816 components: - type: Transform - pos: -79.5,60.5 + pos: -56.5,6.5 parent: 2 - uid: 6817 components: - type: Transform - pos: -79.5,59.5 + pos: -55.5,6.5 parent: 2 - uid: 6818 components: - type: Transform - pos: -78.5,60.5 + pos: -54.5,6.5 parent: 2 - uid: 6819 components: - type: Transform - pos: -78.5,61.5 + pos: -52.5,6.5 parent: 2 - uid: 6820 components: - type: Transform - pos: -79.5,62.5 + pos: -53.5,6.5 parent: 2 - uid: 6821 components: - type: Transform - pos: -77.5,61.5 + pos: -53.5,5.5 parent: 2 - uid: 6822 components: - type: Transform - pos: -78.5,63.5 + pos: -52.5,5.5 parent: 2 - uid: 6823 components: - type: Transform - pos: -76.5,63.5 + pos: -52.5,4.5 parent: 2 - uid: 6824 components: - type: Transform - pos: -75.5,63.5 + pos: -52.5,2.5 parent: 2 - uid: 6825 components: - type: Transform - pos: -77.5,63.5 + pos: -52.5,1.5 parent: 2 - uid: 6826 components: - type: Transform - pos: -74.5,63.5 + pos: -52.5,0.5 parent: 2 - uid: 6827 components: - type: Transform - pos: -73.5,63.5 + pos: -52.5,3.5 parent: 2 - uid: 6828 components: - type: Transform - pos: -72.5,62.5 + pos: -52.5,-0.5 parent: 2 - uid: 6829 components: - type: Transform - pos: -75.5,61.5 + pos: -53.5,0.5 parent: 2 - uid: 6830 components: - type: Transform - pos: -74.5,61.5 + pos: -53.5,-0.5 parent: 2 - uid: 6831 components: - type: Transform - pos: -74.5,60.5 + pos: -54.5,0.5 parent: 2 - uid: 6832 components: - type: Transform - pos: -75.5,58.5 + pos: -55.5,0.5 parent: 2 - uid: 6833 components: - type: Transform - pos: -77.5,56.5 + pos: -55.5,-0.5 parent: 2 - uid: 6834 components: - type: Transform - pos: -75.5,55.5 + pos: -56.5,0.5 parent: 2 - uid: 6835 components: - type: Transform - pos: -72.5,60.5 + pos: -56.5,-0.5 parent: 2 - uid: 6836 components: - type: Transform - pos: -83.5,48.5 + pos: -57.5,0.5 parent: 2 - uid: 6837 components: - type: Transform - pos: -83.5,47.5 + pos: -57.5,-0.5 parent: 2 - uid: 6838 components: - type: Transform - pos: -88.5,46.5 + pos: -58.5,0.5 parent: 2 - uid: 6839 components: - type: Transform - pos: -76.5,41.5 + pos: -58.5,-0.5 parent: 2 - uid: 6840 components: - type: Transform - pos: -88.5,45.5 + pos: -54.5,-0.5 parent: 2 - uid: 6841 components: - type: Transform - pos: -76.5,40.5 + pos: -1.5,-3.5 parent: 2 - uid: 6842 components: - type: Transform - pos: -76.5,39.5 + pos: -1.5,-4.5 parent: 2 - uid: 6843 components: - type: Transform - pos: -75.5,40.5 + pos: -57.5,-1.5 parent: 2 - uid: 6844 components: - type: Transform - pos: -74.5,40.5 + pos: -58.5,7.5 parent: 2 - uid: 6845 components: - type: Transform - pos: -74.5,39.5 + pos: -0.5,-4.5 parent: 2 - uid: 6846 components: - type: Transform - pos: -75.5,39.5 + pos: 1.5,-4.5 parent: 2 - uid: 6847 components: - type: Transform - pos: -73.5,39.5 + pos: 2.5,-4.5 parent: 2 - uid: 6848 components: - type: Transform - pos: -72.5,39.5 + pos: 3.5,-4.5 parent: 2 - uid: 6849 components: - type: Transform - pos: -72.5,40.5 + pos: 4.5,-4.5 parent: 2 - uid: 6850 components: - type: Transform - pos: -72.5,38.5 + pos: 5.5,-4.5 parent: 2 - uid: 6851 components: - type: Transform - pos: -72.5,37.5 + pos: 0.5,-4.5 parent: 2 - uid: 6852 components: - type: Transform - pos: -71.5,38.5 + pos: 6.5,-4.5 parent: 2 - uid: 6853 components: - type: Transform - pos: -73.5,35.5 + pos: 6.5,-3.5 parent: 2 - uid: 6854 components: - type: Transform - pos: -77.5,36.5 + pos: -1.5,-6.5 parent: 2 - uid: 6855 components: - type: Transform - pos: -77.5,38.5 + pos: 0.5,-6.5 parent: 2 - uid: 6856 components: - type: Transform - pos: -77.5,37.5 + pos: 1.5,-6.5 parent: 2 - uid: 6857 components: - type: Transform - pos: -65.5,31.5 + pos: 2.5,-6.5 parent: 2 - uid: 6858 components: - type: Transform - pos: -65.5,29.5 + pos: 3.5,-6.5 parent: 2 - uid: 6859 components: - type: Transform - pos: -65.5,30.5 + pos: -0.5,-6.5 parent: 2 - uid: 6860 components: - type: Transform - pos: -64.5,31.5 + pos: 4.5,-6.5 parent: 2 - uid: 6861 components: - type: Transform - pos: -63.5,30.5 + pos: 5.5,-6.5 parent: 2 - uid: 6862 components: - type: Transform - pos: -63.5,28.5 + pos: 6.5,-6.5 parent: 2 - uid: 6863 components: - type: Transform - pos: -63.5,29.5 + pos: 6.5,-12.5 parent: 2 - uid: 6864 components: - type: Transform - pos: -63.5,27.5 + pos: 6.5,-10.5 parent: 2 - uid: 6865 components: - type: Transform - pos: -63.5,26.5 + pos: 6.5,-9.5 parent: 2 - uid: 6866 components: - type: Transform - pos: -64.5,26.5 + pos: 6.5,-8.5 parent: 2 - uid: 6867 components: - type: Transform - pos: -64.5,25.5 + pos: 6.5,-11.5 parent: 2 - uid: 6868 components: - type: Transform - pos: -88.5,34.5 + pos: 6.5,-7.5 parent: 2 - uid: 6869 components: - type: Transform - pos: -90.5,34.5 + pos: -58.5,22.5 parent: 2 - uid: 6870 components: - type: Transform - pos: -94.5,34.5 + pos: -57.5,26.5 parent: 2 - uid: 6871 components: - type: Transform - pos: -94.5,32.5 + pos: -55.5,25.5 parent: 2 - uid: 6872 components: - type: Transform - pos: -94.5,31.5 + pos: -55.5,24.5 parent: 2 - uid: 6873 components: - type: Transform - pos: -95.5,31.5 + pos: -1.5,-7.5 parent: 2 - uid: 6874 components: - type: Transform - pos: -98.5,36.5 + pos: -1.5,-9.5 parent: 2 - uid: 6875 components: - type: Transform - pos: -98.5,35.5 + pos: -1.5,-10.5 parent: 2 - uid: 6876 components: - type: Transform - pos: -100.5,34.5 + pos: -1.5,-11.5 parent: 2 - uid: 6877 components: - type: Transform - pos: -100.5,36.5 + pos: -1.5,-12.5 parent: 2 - uid: 6878 components: - type: Transform - pos: -105.5,37.5 + pos: -1.5,-8.5 parent: 2 - uid: 6879 components: - type: Transform - pos: -107.5,37.5 + pos: -62.5,23.5 parent: 2 - uid: 6880 components: - type: Transform - pos: -109.5,37.5 + pos: -64.5,23.5 parent: 2 - uid: 6881 components: - type: Transform - pos: -110.5,37.5 + pos: -47.5,20.5 parent: 2 - uid: 6882 components: - type: Transform - pos: -111.5,37.5 + pos: -53.5,25.5 parent: 2 - uid: 6883 components: - type: Transform - pos: -112.5,37.5 + pos: -46.5,27.5 parent: 2 - uid: 6884 components: - type: Transform - pos: -108.5,37.5 + pos: -45.5,27.5 parent: 2 - uid: 6885 components: - type: Transform - pos: -114.5,37.5 + pos: -43.5,27.5 parent: 2 - uid: 6886 components: - type: Transform - pos: -116.5,35.5 + pos: -37.5,31.5 parent: 2 - uid: 6887 components: - type: Transform - pos: -118.5,35.5 + pos: -44.5,27.5 parent: 2 - uid: 6888 components: - type: Transform - pos: -118.5,34.5 + pos: -38.5,30.5 parent: 2 - uid: 6889 components: - type: Transform - pos: -116.5,37.5 + pos: -36.5,30.5 parent: 2 - uid: 6890 components: - type: Transform - pos: -117.5,33.5 + pos: -36.5,29.5 parent: 2 - uid: 6891 components: - type: Transform - pos: -119.5,27.5 + pos: -44.5,32.5 parent: 2 - uid: 6892 components: - type: Transform - pos: -119.5,24.5 + pos: -47.5,29.5 parent: 2 - uid: 6893 components: - type: Transform - pos: -120.5,24.5 + pos: -43.5,32.5 parent: 2 - uid: 6894 components: - type: Transform - pos: -122.5,21.5 + pos: -46.5,29.5 parent: 2 - uid: 6895 components: - type: Transform - pos: -122.5,19.5 + pos: -45.5,31.5 parent: 2 - uid: 6896 components: - type: Transform - pos: -122.5,20.5 + pos: -44.5,31.5 parent: 2 - uid: 6897 components: - type: Transform - pos: -123.5,20.5 + pos: -44.5,30.5 parent: 2 - uid: 6898 components: - type: Transform - pos: -123.5,19.5 + pos: -46.5,26.5 parent: 2 - uid: 6899 components: - type: Transform - pos: -123.5,18.5 + pos: -46.5,24.5 parent: 2 - uid: 6900 components: - type: Transform - pos: -123.5,16.5 + pos: -46.5,25.5 parent: 2 - uid: 6901 components: - type: Transform - pos: -123.5,17.5 + pos: -43.5,24.5 parent: 2 - uid: 6902 components: - type: Transform - pos: -123.5,15.5 + pos: -43.5,26.5 parent: 2 - uid: 6903 components: - type: Transform - pos: -123.5,14.5 + pos: -42.5,24.5 parent: 2 - uid: 6904 components: - type: Transform - pos: -122.5,14.5 + pos: -41.5,26.5 parent: 2 - uid: 6905 components: - type: Transform - pos: -121.5,14.5 + pos: -39.5,26.5 parent: 2 - uid: 6906 components: - type: Transform - pos: -121.5,13.5 + pos: -38.5,26.5 parent: 2 - uid: 6907 components: - type: Transform - pos: -120.5,14.5 + pos: -37.5,26.5 parent: 2 - uid: 6908 components: - type: Transform - pos: -120.5,13.5 + pos: -40.5,26.5 parent: 2 - uid: 6909 components: - type: Transform - pos: -119.5,14.5 + pos: -36.5,26.5 parent: 2 - uid: 6910 components: - type: Transform - pos: -119.5,13.5 + pos: -35.5,26.5 parent: 2 - uid: 6911 components: - type: Transform - pos: -122.5,13.5 + pos: -34.5,26.5 parent: 2 - uid: 6912 components: - type: Transform - pos: -127.5,15.5 + pos: -41.5,21.5 parent: 2 - uid: 6913 components: - type: Transform - pos: -127.5,14.5 + pos: -27.5,29.5 parent: 2 - uid: 6914 components: - type: Transform - pos: -127.5,12.5 + pos: -27.5,30.5 parent: 2 - uid: 6915 components: - type: Transform - pos: -127.5,13.5 + pos: -27.5,31.5 parent: 2 - uid: 6916 components: - type: Transform - pos: -128.5,12.5 + pos: -24.5,31.5 parent: 2 - uid: 6917 components: - type: Transform - pos: -119.5,12.5 + pos: -25.5,31.5 parent: 2 - uid: 6918 components: - type: Transform - pos: -119.5,10.5 + pos: -38.5,23.5 parent: 2 - uid: 6919 components: - type: Transform - pos: -119.5,9.5 + pos: -38.5,24.5 parent: 2 - uid: 6920 components: - type: Transform - pos: -119.5,8.5 + pos: -34.5,23.5 parent: 2 - uid: 6921 components: - type: Transform - pos: -119.5,6.5 + pos: -34.5,22.5 parent: 2 - uid: 6922 components: - type: Transform - pos: -119.5,5.5 + pos: -34.5,21.5 parent: 2 - uid: 6923 components: - type: Transform - pos: -119.5,11.5 + pos: -35.5,21.5 parent: 2 - uid: 6924 components: - type: Transform - pos: -119.5,7.5 + pos: -37.5,21.5 parent: 2 - uid: 6925 components: - type: Transform - pos: -119.5,4.5 + pos: -38.5,21.5 parent: 2 - uid: 6926 components: - type: Transform - pos: -120.5,12.5 + pos: -36.5,21.5 parent: 2 - uid: 6927 components: - type: Transform - pos: -120.5,11.5 + pos: -38.5,22.5 parent: 2 - uid: 6928 components: - type: Transform - pos: -120.5,10.5 + pos: -33.5,25.5 parent: 2 - uid: 6929 components: - type: Transform - pos: -120.5,9.5 + pos: -32.5,25.5 parent: 2 - uid: 6930 components: - type: Transform - pos: -120.5,8.5 + pos: -32.5,26.5 parent: 2 - uid: 6931 components: - type: Transform - pos: -120.5,7.5 + pos: -32.5,27.5 parent: 2 - uid: 6932 components: - type: Transform - pos: -120.5,6.5 + pos: -33.5,28.5 parent: 2 - uid: 6933 components: - type: Transform - pos: -120.5,5.5 + pos: -33.5,30.5 parent: 2 - uid: 6934 components: - type: Transform - pos: -120.5,4.5 + pos: -29.5,30.5 parent: 2 - uid: 6935 components: - type: Transform - pos: -129.5,11.5 + pos: -74.5,21.5 parent: 2 - uid: 6936 components: - type: Transform - pos: -129.5,9.5 + pos: -30.5,27.5 parent: 2 - uid: 6937 components: - type: Transform - pos: -129.5,8.5 + pos: -29.5,28.5 parent: 2 - uid: 6938 components: - type: Transform - pos: -129.5,10.5 + pos: -29.5,27.5 parent: 2 - uid: 6939 components: - type: Transform - pos: -119.5,3.5 + pos: -30.5,26.5 parent: 2 - uid: 6940 components: - type: Transform - pos: -119.5,1.5 + pos: -30.5,25.5 parent: 2 - uid: 6941 components: - type: Transform - pos: -119.5,2.5 + pos: 56.5,-56.5 parent: 2 - uid: 6942 components: - type: Transform - pos: -119.5,0.5 + pos: 55.5,-56.5 parent: 2 - uid: 6943 components: - type: Transform - pos: -126.5,13.5 + pos: 55.5,-57.5 parent: 2 - uid: 6944 components: - type: Transform - pos: -126.5,12.5 + pos: 55.5,-59.5 parent: 2 - uid: 6945 components: - type: Transform - pos: -125.5,13.5 + pos: 55.5,-60.5 parent: 2 - uid: 6946 components: - type: Transform - pos: -125.5,12.5 + pos: 55.5,-61.5 parent: 2 - uid: 6947 components: - type: Transform - pos: -120.5,0.5 + pos: 55.5,-58.5 parent: 2 - uid: 6948 components: - type: Transform - pos: -121.5,0.5 + pos: 54.5,-61.5 parent: 2 - uid: 6949 components: - type: Transform - pos: -122.5,0.5 + pos: 54.5,-62.5 parent: 2 - uid: 6950 components: - type: Transform - pos: -123.5,0.5 + pos: 53.5,-62.5 parent: 2 - uid: 6951 components: - type: Transform - pos: -124.5,0.5 + pos: 52.5,-62.5 parent: 2 - uid: 6952 components: - type: Transform - pos: -125.5,11.5 + pos: 29.5,-12.5 parent: 2 - uid: 6953 components: - type: Transform - pos: -123.5,1.5 + pos: 29.5,-11.5 parent: 2 - uid: 6954 components: - type: Transform - pos: -123.5,3.5 + pos: 29.5,-10.5 parent: 2 - uid: 6955 components: - type: Transform - pos: -123.5,4.5 + pos: 29.5,-9.5 parent: 2 - uid: 6956 components: - type: Transform - pos: -123.5,2.5 + pos: 29.5,-8.5 parent: 2 - uid: 6957 components: - type: Transform - pos: -124.5,1.5 + pos: 29.5,-7.5 parent: 2 - uid: 6958 components: - type: Transform - pos: -124.5,3.5 + pos: 29.5,-6.5 parent: 2 - uid: 6959 components: - type: Transform - pos: -124.5,4.5 + pos: 29.5,-5.5 parent: 2 - uid: 6960 components: - type: Transform - pos: -124.5,2.5 + pos: 29.5,-4.5 parent: 2 - uid: 6961 components: - type: Transform - pos: -122.5,4.5 + pos: 29.5,-3.5 parent: 2 - uid: 6962 components: - type: Transform - pos: -121.5,4.5 + pos: 29.5,-2.5 parent: 2 - uid: 6963 components: - type: Transform - pos: -123.5,13.5 + pos: 29.5,-1.5 parent: 2 - uid: 6964 components: - type: Transform - pos: -124.5,13.5 + pos: 28.5,-1.5 parent: 2 - uid: 6965 components: - type: Transform - pos: -124.5,12.5 + pos: 28.5,-2.5 parent: 2 - uid: 6966 components: - type: Transform - pos: -124.5,11.5 + pos: 27.5,-1.5 parent: 2 - uid: 6967 components: - type: Transform - pos: -124.5,10.5 + pos: 27.5,-0.5 parent: 2 - uid: 6968 components: - type: Transform - pos: -125.5,3.5 + pos: 27.5,0.5 parent: 2 - uid: 6969 components: - type: Transform - pos: -125.5,5.5 + pos: 27.5,1.5 parent: 2 - uid: 6970 components: - type: Transform - pos: -125.5,6.5 + pos: 27.5,2.5 parent: 2 - uid: 6971 components: - type: Transform - pos: -125.5,7.5 + pos: 28.5,2.5 parent: 2 - uid: 6972 components: - type: Transform - pos: -125.5,8.5 + pos: 29.5,2.5 parent: 2 - uid: 6973 components: - type: Transform - pos: -125.5,9.5 + pos: 31.5,2.5 parent: 2 - uid: 6974 components: - type: Transform - pos: -125.5,10.5 + pos: 30.5,2.5 parent: 2 - uid: 6975 components: - type: Transform - pos: -125.5,4.5 + pos: 30.5,3.5 parent: 2 - uid: 6976 components: - type: Transform - pos: -124.5,5.5 + pos: 31.5,3.5 parent: 2 - uid: 6977 components: - type: Transform - pos: -124.5,6.5 + pos: 30.5,1.5 parent: 2 - uid: 6978 components: - type: Transform - pos: -124.5,8.5 + pos: 30.5,-0.5 parent: 2 - uid: 6979 components: - type: Transform - pos: -124.5,9.5 + pos: 30.5,-1.5 parent: 2 - uid: 6980 components: - type: Transform - pos: -124.5,7.5 + pos: 30.5,-2.5 parent: 2 - uid: 6981 components: - type: Transform - pos: -127.5,1.5 + pos: 31.5,1.5 parent: 2 - uid: 6982 components: - type: Transform - pos: -123.5,9.5 + pos: 30.5,0.5 parent: 2 - uid: 6983 components: - type: Transform - pos: -121.5,9.5 + pos: 31.5,0.5 parent: 2 - uid: 6984 components: - type: Transform - pos: -122.5,9.5 + pos: 31.5,-1.5 parent: 2 - uid: 6985 components: - type: Transform - pos: -127.5,2.5 + pos: 31.5,-2.5 parent: 2 - uid: 6986 components: - type: Transform - pos: -128.5,3.5 + pos: 31.5,-0.5 parent: 2 - uid: 6987 components: - type: Transform - pos: -127.5,3.5 + pos: 31.5,-3.5 parent: 2 - uid: 6988 components: - type: Transform - pos: -126.5,3.5 + pos: 31.5,-4.5 parent: 2 - uid: 6989 components: - type: Transform - pos: -131.5,18.5 + pos: 31.5,-6.5 parent: 2 - uid: 6990 components: - type: Transform - pos: -131.5,17.5 + pos: 31.5,-7.5 parent: 2 - uid: 6991 components: - type: Transform - pos: -129.5,17.5 + pos: 31.5,-5.5 parent: 2 - uid: 6992 components: - type: Transform - pos: -126.5,18.5 + pos: 32.5,-6.5 parent: 2 - uid: 6993 components: - type: Transform - pos: -125.5,18.5 + pos: 32.5,-7.5 parent: 2 - uid: 6994 components: - type: Transform - pos: -134.5,19.5 + pos: 30.5,-6.5 parent: 2 - uid: 6995 components: - type: Transform - pos: -136.5,18.5 + pos: 30.5,-7.5 parent: 2 - uid: 6996 components: - type: Transform - pos: -137.5,16.5 + pos: 30.5,-8.5 parent: 2 - uid: 6997 components: - type: Transform - pos: -137.5,15.5 + pos: 36.5,-6.5 parent: 2 - uid: 6998 components: - type: Transform - pos: -42.5,-35.5 + pos: 36.5,-7.5 parent: 2 - uid: 6999 components: - type: Transform - pos: -59.5,2.5 + pos: 41.5,-6.5 parent: 2 - uid: 7000 components: - type: Transform - pos: -59.5,4.5 + pos: 41.5,-5.5 parent: 2 - uid: 7001 components: - type: Transform - pos: -59.5,5.5 + pos: 41.5,-3.5 parent: 2 - uid: 7002 components: - type: Transform - pos: -60.5,2.5 + pos: 41.5,-4.5 parent: 2 - uid: 7003 components: - type: Transform - pos: -59.5,3.5 + pos: 41.5,-2.5 parent: 2 - uid: 7004 components: - type: Transform - pos: -60.5,3.5 + pos: 40.5,-6.5 parent: 2 - uid: 7005 components: - type: Transform - pos: -60.5,4.5 + pos: 40.5,-5.5 parent: 2 - uid: 7006 components: - type: Transform - pos: -60.5,5.5 + pos: 40.5,-4.5 parent: 2 - uid: 7007 components: - type: Transform - pos: -59.5,6.5 + pos: 40.5,-3.5 parent: 2 - uid: 7008 components: - type: Transform - pos: -58.5,6.5 + pos: 40.5,-2.5 parent: 2 - uid: 7009 components: - type: Transform - pos: -57.5,6.5 + pos: 47.5,-5.5 parent: 2 - uid: 7010 components: - type: Transform - pos: -56.5,6.5 + pos: 47.5,-3.5 parent: 2 - uid: 7011 components: - type: Transform - pos: -55.5,6.5 + pos: 47.5,-2.5 parent: 2 - uid: 7012 components: - type: Transform - pos: -54.5,6.5 + pos: 46.5,-5.5 parent: 2 - uid: 7013 components: - type: Transform - pos: -52.5,6.5 + pos: 46.5,-4.5 parent: 2 - uid: 7014 components: - type: Transform - pos: -53.5,6.5 + pos: 47.5,-4.5 parent: 2 - uid: 7015 components: - type: Transform - pos: -53.5,5.5 + pos: 46.5,-3.5 parent: 2 - uid: 7016 components: - type: Transform - pos: -52.5,5.5 + pos: 46.5,-2.5 parent: 2 - uid: 7017 components: - type: Transform - pos: -52.5,4.5 + pos: 45.5,-3.5 parent: 2 - uid: 7018 components: - type: Transform - pos: -52.5,2.5 + pos: 44.5,-2.5 parent: 2 - uid: 7019 components: - type: Transform - pos: -52.5,1.5 + pos: 44.5,-3.5 parent: 2 - uid: 7020 components: - type: Transform - pos: -52.5,0.5 + pos: 43.5,-2.5 parent: 2 - uid: 7021 components: - type: Transform - pos: -52.5,3.5 + pos: 45.5,-2.5 parent: 2 - uid: 7022 components: - type: Transform - pos: -52.5,-0.5 + pos: 43.5,-3.5 parent: 2 - uid: 7023 components: - type: Transform - pos: -53.5,0.5 + pos: 42.5,-2.5 parent: 2 - uid: 7024 components: - type: Transform - pos: -53.5,-0.5 + pos: 42.5,-3.5 parent: 2 - uid: 7025 components: - type: Transform - pos: -54.5,0.5 + pos: 42.5,-1.5 parent: 2 - uid: 7026 components: - type: Transform - pos: -55.5,0.5 + pos: 42.5,-0.5 parent: 2 - uid: 7027 components: - type: Transform - pos: -55.5,-0.5 + pos: 42.5,1.5 parent: 2 - uid: 7028 components: - type: Transform - pos: -56.5,0.5 + pos: 42.5,2.5 parent: 2 - uid: 7029 components: - type: Transform - pos: -56.5,-0.5 + pos: 42.5,3.5 parent: 2 - uid: 7030 components: - type: Transform - pos: -57.5,0.5 + pos: 42.5,4.5 parent: 2 - uid: 7031 components: - type: Transform - pos: -57.5,-0.5 + pos: 42.5,0.5 parent: 2 - uid: 7032 components: - type: Transform - pos: -58.5,0.5 + pos: 44.5,4.5 parent: 2 - uid: 7033 components: - type: Transform - pos: -58.5,-0.5 + pos: 45.5,4.5 parent: 2 - uid: 7034 components: - type: Transform - pos: -54.5,-0.5 + pos: 46.5,4.5 parent: 2 - uid: 7035 components: - type: Transform - pos: -1.5,-3.5 + pos: 43.5,4.5 parent: 2 - uid: 7036 components: - type: Transform - pos: -1.5,-4.5 + pos: 47.5,4.5 parent: 2 - uid: 7037 components: - type: Transform - pos: -57.5,-1.5 + pos: 48.5,4.5 parent: 2 - uid: 7038 components: - type: Transform - pos: -58.5,7.5 + pos: 48.5,3.5 parent: 2 - uid: 7039 components: - type: Transform - pos: -0.5,-4.5 + pos: 48.5,1.5 parent: 2 - uid: 7040 components: - type: Transform - pos: 1.5,-4.5 + pos: 48.5,0.5 parent: 2 - uid: 7041 components: - type: Transform - pos: 2.5,-4.5 + pos: 48.5,-1.5 parent: 2 - uid: 7042 components: - type: Transform - pos: 3.5,-4.5 + pos: 47.5,3.5 parent: 2 - uid: 7043 components: - type: Transform - pos: 4.5,-4.5 + pos: 47.5,1.5 parent: 2 - uid: 7044 components: - type: Transform - pos: 5.5,-4.5 + pos: 48.5,2.5 parent: 2 - uid: 7045 components: - type: Transform - pos: 0.5,-4.5 + pos: 47.5,0.5 parent: 2 - uid: 7046 components: - type: Transform - pos: 6.5,-4.5 + pos: 47.5,2.5 parent: 2 - uid: 7047 components: - type: Transform - pos: 6.5,-3.5 + pos: 48.5,-0.5 parent: 2 - uid: 7048 components: - type: Transform - pos: -1.5,-6.5 + pos: 47.5,-0.5 parent: 2 - uid: 7049 components: - type: Transform - pos: 0.5,-6.5 + pos: 47.5,-1.5 parent: 2 - uid: 7050 components: - type: Transform - pos: 1.5,-6.5 + pos: 48.5,-2.5 parent: 2 - uid: 7051 components: - type: Transform - pos: 2.5,-6.5 + pos: 49.5,-2.5 parent: 2 - uid: 7052 components: - type: Transform - pos: 3.5,-6.5 + pos: 49.5,-1.5 parent: 2 - uid: 7053 components: - type: Transform - pos: -0.5,-6.5 + pos: 49.5,-0.5 parent: 2 - uid: 7054 components: - type: Transform - pos: 4.5,-6.5 + pos: 49.5,1.5 parent: 2 - uid: 7055 components: - type: Transform - pos: 5.5,-6.5 + pos: 49.5,2.5 parent: 2 - uid: 7056 components: - type: Transform - pos: 6.5,-6.5 + pos: 49.5,3.5 parent: 2 - uid: 7057 components: - type: Transform - pos: 6.5,-12.5 + pos: 49.5,4.5 parent: 2 - uid: 7058 components: - type: Transform - pos: 6.5,-10.5 + pos: 50.5,-2.5 parent: 2 - uid: 7059 components: - type: Transform - pos: 6.5,-9.5 + pos: 50.5,-1.5 parent: 2 - uid: 7060 components: - type: Transform - pos: 6.5,-8.5 + pos: 50.5,-0.5 parent: 2 - uid: 7061 components: - type: Transform - pos: 6.5,-11.5 + pos: 49.5,0.5 parent: 2 - uid: 7062 components: - type: Transform - pos: 6.5,-7.5 + pos: 50.5,1.5 parent: 2 - uid: 7063 components: - type: Transform - pos: -58.5,22.5 + pos: 50.5,3.5 parent: 2 - uid: 7064 components: - type: Transform - pos: -57.5,26.5 + pos: 50.5,4.5 parent: 2 - uid: 7065 components: - type: Transform - pos: -55.5,25.5 + pos: 50.5,2.5 parent: 2 - uid: 7066 components: - type: Transform - pos: -55.5,24.5 + pos: 50.5,0.5 parent: 2 - uid: 7067 components: - type: Transform - pos: -1.5,-7.5 + pos: 51.5,4.5 parent: 2 - uid: 7068 components: - type: Transform - pos: -1.5,-9.5 + pos: 51.5,3.5 parent: 2 - uid: 7069 components: - type: Transform - pos: -1.5,-10.5 + pos: 52.5,3.5 parent: 2 - uid: 7070 components: - type: Transform - pos: -1.5,-11.5 + pos: 52.5,4.5 parent: 2 - uid: 7071 components: - type: Transform - pos: -1.5,-12.5 + pos: 53.5,4.5 parent: 2 - uid: 7072 components: - type: Transform - pos: -1.5,-8.5 + pos: 53.5,3.5 parent: 2 - uid: 7073 components: - type: Transform - pos: -62.5,23.5 + pos: 53.5,2.5 parent: 2 - uid: 7074 components: - type: Transform - pos: -64.5,23.5 + pos: 53.5,1.5 parent: 2 - uid: 7075 components: - type: Transform - pos: -47.5,20.5 + pos: 53.5,-0.5 parent: 2 - uid: 7076 components: - type: Transform - pos: -51.5,24.5 + pos: 53.5,-1.5 parent: 2 - uid: 7077 components: - type: Transform - pos: -51.5,25.5 + pos: 53.5,-2.5 parent: 2 - uid: 7078 components: - type: Transform - pos: -53.5,25.5 + pos: 53.5,0.5 parent: 2 - uid: 7079 components: - type: Transform - pos: -46.5,27.5 + pos: 52.5,-1.5 parent: 2 - uid: 7080 components: - type: Transform - pos: -45.5,27.5 + pos: 52.5,-2.5 parent: 2 - uid: 7081 components: - type: Transform - pos: -43.5,27.5 + pos: 51.5,-1.5 parent: 2 - uid: 7082 components: - type: Transform - pos: -37.5,31.5 + pos: 51.5,-2.5 parent: 2 - uid: 7083 components: - type: Transform - pos: -44.5,27.5 + pos: 55.5,-2.5 parent: 2 - uid: 7084 components: - type: Transform - pos: -38.5,30.5 + pos: 55.5,-1.5 parent: 2 - uid: 7085 components: - type: Transform - pos: -36.5,30.5 + pos: 56.5,-1.5 parent: 2 - uid: 7086 components: - type: Transform - pos: -36.5,29.5 + pos: 57.5,-2.5 parent: 2 - uid: 7087 components: - type: Transform - pos: -44.5,32.5 + pos: 57.5,-1.5 parent: 2 - uid: 7088 components: - type: Transform - pos: -47.5,29.5 + pos: 56.5,-2.5 parent: 2 - uid: 7089 components: - type: Transform - pos: -43.5,32.5 + pos: 57.5,-0.5 parent: 2 - uid: 7090 components: - type: Transform - pos: -46.5,29.5 + pos: 57.5,1.5 parent: 2 - uid: 7091 components: - type: Transform - pos: -45.5,31.5 + pos: 57.5,2.5 parent: 2 - uid: 7092 components: - type: Transform - pos: -44.5,31.5 + pos: 57.5,0.5 parent: 2 - uid: 7093 components: - type: Transform - pos: -44.5,30.5 + pos: 57.5,3.5 parent: 2 - uid: 7094 components: - type: Transform - pos: -46.5,26.5 + pos: 56.5,3.5 parent: 2 - uid: 7095 components: - type: Transform - pos: -46.5,24.5 + pos: 56.5,4.5 parent: 2 - uid: 7096 components: - type: Transform - pos: -46.5,25.5 + pos: 55.5,3.5 parent: 2 - uid: 7097 components: - type: Transform - pos: -43.5,24.5 + pos: 57.5,4.5 parent: 2 - uid: 7098 components: - type: Transform - pos: -43.5,26.5 + pos: 55.5,4.5 parent: 2 - uid: 7099 components: - type: Transform - pos: -42.5,24.5 + pos: 47.5,5.5 parent: 2 - uid: 7100 components: - type: Transform - pos: -41.5,26.5 + pos: 46.5,5.5 parent: 2 - uid: 7101 components: - type: Transform - pos: -39.5,26.5 + pos: 45.5,5.5 parent: 2 - uid: 7102 components: - type: Transform - pos: -38.5,26.5 + pos: 45.5,6.5 parent: 2 - uid: 7103 components: - type: Transform - pos: -37.5,26.5 + pos: 44.5,6.5 parent: 2 - uid: 7104 components: - type: Transform - pos: -40.5,26.5 + pos: 43.5,5.5 parent: 2 - uid: 7105 components: - type: Transform - pos: -36.5,26.5 + pos: 43.5,6.5 parent: 2 - uid: 7106 components: - type: Transform - pos: -35.5,26.5 + pos: 44.5,5.5 parent: 2 - uid: 7107 components: - type: Transform - pos: -34.5,26.5 + pos: 44.5,8.5 parent: 2 - uid: 7108 components: - type: Transform - pos: -41.5,21.5 + pos: 44.5,7.5 parent: 2 - uid: 7109 components: - type: Transform - pos: -27.5,29.5 + pos: 43.5,7.5 parent: 2 - uid: 7110 components: - type: Transform - pos: -27.5,30.5 + pos: 42.5,7.5 parent: 2 - uid: 7111 components: - type: Transform - pos: -27.5,31.5 + pos: 41.5,7.5 parent: 2 - uid: 7112 components: - type: Transform - pos: -24.5,31.5 + pos: 40.5,7.5 parent: 2 - uid: 7113 components: - type: Transform - pos: -25.5,31.5 + pos: 39.5,7.5 parent: 2 - uid: 7114 components: - type: Transform - pos: -38.5,23.5 + pos: 38.5,7.5 parent: 2 - uid: 7115 components: - type: Transform - pos: -38.5,24.5 + pos: 41.5,4.5 parent: 2 - uid: 7116 components: - type: Transform - pos: -34.5,23.5 + pos: 40.5,4.5 parent: 2 - uid: 7117 components: - type: Transform - pos: -34.5,22.5 + pos: 40.5,3.5 parent: 2 - uid: 7118 components: - type: Transform - pos: -34.5,21.5 + pos: 39.5,4.5 parent: 2 - uid: 7119 components: - type: Transform - pos: -35.5,21.5 + pos: 41.5,3.5 parent: 2 - uid: 7120 components: - type: Transform - pos: -37.5,21.5 + pos: 39.5,3.5 parent: 2 - uid: 7121 components: - type: Transform - pos: -38.5,21.5 + pos: 38.5,4.5 parent: 2 - uid: 7122 components: - type: Transform - pos: -36.5,21.5 + pos: 38.5,3.5 parent: 2 - uid: 7123 components: - type: Transform - pos: -38.5,22.5 + pos: 32.5,1.5 parent: 2 - uid: 7124 components: - type: Transform - pos: -33.5,25.5 + pos: 33.5,1.5 parent: 2 - uid: 7125 components: - type: Transform - pos: -32.5,25.5 + pos: 33.5,0.5 parent: 2 - uid: 7126 components: - type: Transform - pos: -32.5,26.5 + pos: 32.5,0.5 parent: 2 - uid: 7127 components: - type: Transform - pos: -32.5,27.5 + pos: 34.5,0.5 parent: 2 - uid: 7128 components: - type: Transform - pos: -33.5,28.5 + pos: 34.5,1.5 parent: 2 - uid: 7129 components: - type: Transform - pos: -33.5,30.5 + pos: 35.5,1.5 parent: 2 - uid: 7130 components: - type: Transform - pos: -29.5,30.5 + pos: 36.5,1.5 parent: 2 - uid: 7131 components: - type: Transform - pos: -74.5,21.5 + pos: 36.5,3.5 parent: 2 - uid: 7132 components: - type: Transform - pos: -30.5,27.5 + pos: 36.5,4.5 parent: 2 - uid: 7133 components: - type: Transform - pos: -29.5,28.5 + pos: 37.5,1.5 parent: 2 - uid: 7134 components: - type: Transform - pos: -29.5,27.5 + pos: 36.5,2.5 parent: 2 - uid: 7135 components: - type: Transform - pos: -30.5,26.5 + pos: 37.5,2.5 parent: 2 - uid: 7136 components: - type: Transform - pos: -30.5,25.5 + pos: 37.5,4.5 parent: 2 - uid: 7137 components: - type: Transform - pos: 56.5,-56.5 + pos: 37.5,3.5 parent: 2 - uid: 7138 components: - type: Transform - pos: 55.5,-56.5 + pos: 37.5,5.5 parent: 2 - uid: 7139 components: - type: Transform - pos: 55.5,-57.5 + pos: 36.5,5.5 parent: 2 - uid: 7140 components: - type: Transform - pos: 55.5,-59.5 + pos: 36.5,6.5 parent: 2 - uid: 7141 components: - type: Transform - pos: 55.5,-60.5 + pos: 35.5,5.5 parent: 2 - uid: 7142 components: - type: Transform - pos: 55.5,-61.5 + pos: 35.5,6.5 parent: 2 - uid: 7143 components: - type: Transform - pos: 55.5,-58.5 + pos: 34.5,5.5 parent: 2 - uid: 7144 components: - type: Transform - pos: 54.5,-61.5 + pos: 34.5,6.5 parent: 2 - uid: 7145 components: - type: Transform - pos: 54.5,-62.5 + pos: 37.5,6.5 parent: 2 - uid: 7146 components: - type: Transform - pos: 53.5,-62.5 + pos: 33.5,5.5 parent: 2 - uid: 7147 components: - type: Transform - pos: 52.5,-62.5 + pos: 32.5,5.5 parent: 2 - uid: 7148 components: - type: Transform - pos: 29.5,-12.5 + pos: 33.5,6.5 parent: 2 - uid: 7149 components: - type: Transform - pos: 29.5,-11.5 + pos: 32.5,6.5 parent: 2 - uid: 7150 components: - type: Transform - pos: 29.5,-10.5 + pos: 31.5,4.5 parent: 2 - uid: 7151 components: - type: Transform - pos: 29.5,-9.5 + pos: 31.5,5.5 parent: 2 - uid: 7152 components: - type: Transform - pos: 29.5,-8.5 + pos: 31.5,7.5 parent: 2 - uid: 7153 components: - type: Transform - pos: 29.5,-7.5 + pos: 31.5,6.5 parent: 2 - uid: 7154 components: - type: Transform - pos: 29.5,-6.5 + pos: 30.5,8.5 parent: 2 - uid: 7155 components: - type: Transform - pos: 29.5,-5.5 + pos: 30.5,9.5 parent: 2 - uid: 7156 components: - type: Transform - pos: 29.5,-4.5 + pos: 30.5,10.5 parent: 2 - uid: 7157 components: - type: Transform - pos: 29.5,-3.5 + pos: 30.5,11.5 parent: 2 - uid: 7158 components: - type: Transform - pos: 29.5,-2.5 + pos: 30.5,13.5 parent: 2 - uid: 7159 components: - type: Transform - pos: 29.5,-1.5 + pos: 30.5,14.5 parent: 2 - uid: 7160 components: - type: Transform - pos: 28.5,-1.5 + pos: 30.5,15.5 parent: 2 - uid: 7161 components: - type: Transform - pos: 28.5,-2.5 + pos: 31.5,8.5 parent: 2 - uid: 7162 components: - type: Transform - pos: 27.5,-1.5 + pos: 31.5,9.5 parent: 2 - uid: 7163 components: - type: Transform - pos: 27.5,-0.5 + pos: 31.5,10.5 parent: 2 - uid: 7164 components: - type: Transform - pos: 27.5,0.5 + pos: 30.5,12.5 parent: 2 - uid: 7165 components: - type: Transform - pos: 27.5,1.5 + pos: 31.5,11.5 parent: 2 - uid: 7166 components: - type: Transform - pos: 27.5,2.5 + pos: 31.5,15.5 parent: 2 - uid: 7167 components: - type: Transform - pos: 28.5,2.5 + pos: 31.5,13.5 parent: 2 - uid: 7168 components: - type: Transform - pos: 29.5,2.5 + pos: 31.5,14.5 parent: 2 - uid: 7169 components: - type: Transform - pos: 31.5,2.5 + pos: 31.5,12.5 parent: 2 - uid: 7170 components: - type: Transform - pos: 30.5,2.5 + pos: 32.5,15.5 parent: 2 - uid: 7171 components: - type: Transform - pos: 30.5,3.5 + pos: 33.5,15.5 parent: 2 - uid: 7172 components: - type: Transform - pos: 31.5,3.5 + pos: 34.5,15.5 parent: 2 - uid: 7173 components: - type: Transform - pos: 30.5,1.5 + pos: 35.5,15.5 parent: 2 - uid: 7174 components: - type: Transform - pos: 30.5,-0.5 + pos: 34.5,14.5 parent: 2 - uid: 7175 components: - type: Transform - pos: 30.5,-1.5 + pos: 34.5,13.5 parent: 2 - uid: 7176 components: - type: Transform - pos: 30.5,-2.5 + pos: 34.5,11.5 parent: 2 - uid: 7177 components: - type: Transform - pos: 31.5,1.5 + pos: 34.5,10.5 parent: 2 - uid: 7178 components: - type: Transform - pos: 30.5,0.5 + pos: 34.5,9.5 parent: 2 - uid: 7179 components: - type: Transform - pos: 31.5,0.5 + pos: 34.5,8.5 parent: 2 - uid: 7180 components: - type: Transform - pos: 31.5,-1.5 + pos: 34.5,7.5 parent: 2 - uid: 7181 components: - type: Transform - pos: 31.5,-2.5 + pos: 34.5,12.5 parent: 2 - uid: 7182 components: - type: Transform - pos: 31.5,-0.5 + pos: 35.5,14.5 parent: 2 - uid: 7183 components: - type: Transform - pos: 31.5,-3.5 + pos: 35.5,13.5 parent: 2 - uid: 7184 components: - type: Transform - pos: 31.5,-4.5 + pos: 35.5,12.5 parent: 2 - uid: 7185 components: - type: Transform - pos: 31.5,-6.5 + pos: 35.5,11.5 parent: 2 - uid: 7186 components: - type: Transform - pos: 31.5,-7.5 + pos: 35.5,10.5 parent: 2 - uid: 7187 components: - type: Transform - pos: 31.5,-5.5 + pos: 35.5,9.5 parent: 2 - uid: 7188 components: - type: Transform - pos: 32.5,-6.5 + pos: 35.5,8.5 parent: 2 - uid: 7189 components: - type: Transform - pos: 32.5,-7.5 + pos: 35.5,7.5 parent: 2 - uid: 7190 components: - type: Transform - pos: 30.5,-6.5 + pos: 36.5,14.5 parent: 2 - uid: 7191 components: - type: Transform - pos: 30.5,-7.5 + pos: 36.5,13.5 parent: 2 - uid: 7192 components: - type: Transform - pos: 30.5,-8.5 + pos: 36.5,12.5 parent: 2 - uid: 7193 components: - type: Transform - pos: 36.5,-6.5 + pos: 36.5,11.5 parent: 2 - uid: 7194 components: - type: Transform - pos: 36.5,-7.5 + pos: 36.5,10.5 parent: 2 - uid: 7195 components: - type: Transform - pos: 41.5,-6.5 + pos: 36.5,9.5 parent: 2 - uid: 7196 components: - type: Transform - pos: 41.5,-5.5 + pos: 36.5,8.5 parent: 2 - uid: 7197 components: - type: Transform - pos: 41.5,-3.5 + pos: 36.5,7.5 parent: 2 - uid: 7198 components: - type: Transform - pos: 41.5,-4.5 + pos: 37.5,7.5 parent: 2 - uid: 7199 components: - type: Transform - pos: 41.5,-2.5 + pos: 37.5,8.5 parent: 2 - uid: 7200 components: - type: Transform - pos: 40.5,-6.5 + pos: 37.5,9.5 parent: 2 - uid: 7201 components: - type: Transform - pos: 40.5,-5.5 + pos: 32.5,12.5 parent: 2 - uid: 7202 components: - type: Transform - pos: 40.5,-4.5 + pos: 33.5,12.5 parent: 2 - uid: 7203 components: - type: Transform - pos: 40.5,-3.5 + pos: 33.5,12.5 parent: 2 - uid: 7204 components: - type: Transform - pos: 40.5,-2.5 + pos: -65.5,21.5 parent: 2 - uid: 7205 components: - type: Transform - pos: 47.5,-5.5 + pos: -64.5,21.5 parent: 2 - uid: 7206 components: - type: Transform - pos: 47.5,-3.5 + pos: -64.5,20.5 parent: 2 - uid: 7207 components: - type: Transform - pos: 47.5,-2.5 + pos: -65.5,20.5 parent: 2 - uid: 7208 components: - type: Transform - pos: 46.5,-5.5 + pos: -69.5,19.5 parent: 2 - uid: 7209 components: - type: Transform - pos: 46.5,-4.5 + pos: -68.5,19.5 parent: 2 - uid: 7210 components: - type: Transform - pos: 47.5,-4.5 + pos: -70.5,17.5 parent: 2 - uid: 7211 components: - type: Transform - pos: 46.5,-3.5 + pos: -68.5,16.5 parent: 2 - uid: 7212 components: - type: Transform - pos: 46.5,-2.5 + pos: -69.5,15.5 parent: 2 - uid: 7213 components: - type: Transform - pos: 45.5,-3.5 + pos: -67.5,10.5 parent: 2 - uid: 7214 components: - type: Transform - pos: 44.5,-2.5 + pos: -33.5,-29.5 parent: 2 - uid: 7215 components: - type: Transform - pos: 44.5,-3.5 + pos: -32.5,-29.5 parent: 2 - uid: 7216 components: - type: Transform - pos: 43.5,-2.5 + pos: 10.5,-42.5 parent: 2 - uid: 7217 components: - type: Transform - pos: 45.5,-2.5 + pos: 11.5,-42.5 parent: 2 - uid: 7218 components: - type: Transform - pos: 43.5,-3.5 + pos: 11.5,-43.5 parent: 2 - uid: 7219 components: - type: Transform - pos: 42.5,-2.5 + pos: 10.5,-43.5 parent: 2 - uid: 7220 components: - type: Transform - pos: 42.5,-3.5 + pos: 12.5,-42.5 parent: 2 - uid: 7221 components: - type: Transform - pos: 42.5,-1.5 + pos: 12.5,-43.5 parent: 2 - uid: 7222 components: - type: Transform - pos: 42.5,-0.5 + pos: 13.5,-42.5 parent: 2 - uid: 7223 components: - type: Transform - pos: 42.5,1.5 + pos: 13.5,-41.5 parent: 2 - uid: 7224 components: - type: Transform - pos: 42.5,2.5 + pos: 12.5,-41.5 parent: 2 - uid: 7225 components: - type: Transform - pos: 42.5,3.5 + pos: 66.5,-55.5 parent: 2 - uid: 7226 components: - type: Transform - pos: 42.5,4.5 + pos: 68.5,-55.5 parent: 2 - uid: 7227 components: - type: Transform - pos: 42.5,0.5 + pos: 69.5,-55.5 parent: 2 - uid: 7228 components: - type: Transform - pos: 44.5,4.5 + pos: 67.5,-55.5 parent: 2 - uid: 7229 components: - type: Transform - pos: 45.5,4.5 + pos: 70.5,-55.5 parent: 2 - uid: 7230 components: - type: Transform - pos: 46.5,4.5 + pos: 67.5,-58.5 parent: 2 - uid: 7231 components: - type: Transform - pos: 43.5,4.5 + pos: 68.5,-58.5 parent: 2 - uid: 7232 components: - type: Transform - pos: 47.5,4.5 + pos: 72.5,-54.5 parent: 2 - uid: 7233 components: - type: Transform - pos: 48.5,4.5 + pos: 73.5,-54.5 parent: 2 - uid: 7234 components: - type: Transform - pos: 48.5,3.5 + pos: 74.5,-55.5 parent: 2 - uid: 7235 components: - type: Transform - pos: 48.5,1.5 + pos: 75.5,-51.5 parent: 2 - uid: 7236 components: - type: Transform - pos: 48.5,0.5 + pos: 75.5,-52.5 parent: 2 - uid: 7237 components: - type: Transform - pos: 48.5,-1.5 + pos: 76.5,-52.5 parent: 2 - uid: 7238 components: - type: Transform - pos: 47.5,3.5 + pos: 76.5,-53.5 parent: 2 - uid: 7239 components: - type: Transform - pos: 47.5,1.5 + pos: 78.5,-50.5 parent: 2 - uid: 7240 components: - type: Transform - pos: 48.5,2.5 + pos: 81.5,-50.5 parent: 2 - uid: 7241 components: - type: Transform - pos: 47.5,0.5 + pos: 83.5,-49.5 parent: 2 - uid: 7242 components: - type: Transform - pos: 47.5,2.5 + pos: 87.5,-48.5 parent: 2 - uid: 7243 components: - type: Transform - pos: 48.5,-0.5 + pos: 94.5,-21.5 parent: 2 - uid: 7244 components: - type: Transform - pos: 47.5,-0.5 + pos: 94.5,-23.5 parent: 2 - uid: 7245 components: - type: Transform - pos: 47.5,-1.5 + pos: 93.5,-21.5 parent: 2 - uid: 7246 components: - type: Transform - pos: 48.5,-2.5 + pos: 93.5,-22.5 parent: 2 - uid: 7247 components: - type: Transform - pos: 49.5,-2.5 + pos: 93.5,-23.5 parent: 2 - uid: 7248 components: - type: Transform - pos: 49.5,-1.5 + pos: 92.5,-21.5 parent: 2 - uid: 7249 components: - type: Transform - pos: 49.5,-0.5 + pos: 94.5,-22.5 parent: 2 - uid: 7250 components: - type: Transform - pos: 49.5,1.5 + pos: 92.5,-22.5 parent: 2 - uid: 7251 components: - type: Transform - pos: 49.5,2.5 + pos: 92.5,-23.5 parent: 2 - uid: 7252 components: - type: Transform - pos: 49.5,3.5 + pos: 90.5,-20.5 parent: 2 - uid: 7253 components: - type: Transform - pos: 49.5,4.5 + pos: 89.5,-20.5 parent: 2 - uid: 7254 components: - type: Transform - pos: 50.5,-2.5 + pos: 85.5,-20.5 parent: 2 - uid: 7255 components: - type: Transform - pos: 50.5,-1.5 + pos: 86.5,-21.5 parent: 2 - uid: 7256 components: - type: Transform - pos: 50.5,-0.5 + pos: 86.5,-23.5 parent: 2 - uid: 7257 components: - type: Transform - pos: 49.5,0.5 + pos: 87.5,-21.5 parent: 2 - uid: 7258 components: - type: Transform - pos: 50.5,1.5 + pos: 87.5,-22.5 parent: 2 - uid: 7259 components: - type: Transform - pos: 50.5,3.5 + pos: 86.5,-22.5 parent: 2 - uid: 7260 components: - type: Transform - pos: 50.5,4.5 + pos: 87.5,-23.5 parent: 2 - uid: 7261 components: - type: Transform - pos: 50.5,2.5 + pos: 88.5,-21.5 parent: 2 - uid: 7262 components: - type: Transform - pos: 50.5,0.5 + pos: 88.5,-22.5 parent: 2 - uid: 7263 components: - type: Transform - pos: 51.5,4.5 + pos: 88.5,-23.5 parent: 2 - uid: 7264 components: - type: Transform - pos: 51.5,3.5 + pos: 89.5,-21.5 parent: 2 - uid: 7265 components: - type: Transform - pos: 52.5,3.5 + pos: 89.5,-22.5 parent: 2 - uid: 7266 components: - type: Transform - pos: 52.5,4.5 + pos: 89.5,-23.5 parent: 2 - uid: 7267 components: - type: Transform - pos: 53.5,4.5 + pos: 90.5,-23.5 parent: 2 - uid: 7268 components: - type: Transform - pos: 53.5,3.5 + pos: 91.5,-23.5 parent: 2 - uid: 7269 components: - type: Transform - pos: 53.5,2.5 + pos: 81.5,-20.5 parent: 2 - uid: 7270 components: - type: Transform - pos: 53.5,1.5 + pos: 82.5,-21.5 parent: 2 - uid: 7271 components: - type: Transform - pos: 53.5,-0.5 + pos: -27.5,66.5 parent: 2 - uid: 7272 components: - type: Transform - pos: 53.5,-1.5 + pos: 13.5,54.5 parent: 2 - uid: 7273 components: - type: Transform - pos: 53.5,-2.5 + pos: 13.5,52.5 parent: 2 - uid: 7274 components: - type: Transform - pos: 53.5,0.5 + pos: 13.5,53.5 parent: 2 - uid: 7275 components: - type: Transform - pos: 52.5,-1.5 + pos: 14.5,54.5 parent: 2 - uid: 7276 components: - type: Transform - pos: 52.5,-2.5 + pos: 10.5,58.5 parent: 2 - uid: 7277 components: - type: Transform - pos: 51.5,-1.5 + pos: 9.5,58.5 parent: 2 - uid: 7278 components: - type: Transform - pos: 51.5,-2.5 + pos: 9.5,57.5 parent: 2 - uid: 7279 components: - type: Transform - pos: 55.5,-2.5 + pos: 10.5,57.5 parent: 2 - uid: 7280 components: - type: Transform - pos: 55.5,-1.5 + pos: 9.5,56.5 parent: 2 - uid: 7281 components: - type: Transform - pos: 56.5,-1.5 + pos: 11.5,56.5 parent: 2 - uid: 7282 components: - type: Transform - pos: 57.5,-2.5 + pos: 10.5,56.5 parent: 2 - uid: 7283 components: - type: Transform - pos: 57.5,-1.5 + pos: 8.5,58.5 parent: 2 - uid: 7284 components: - type: Transform - pos: 56.5,-2.5 + pos: 7.5,58.5 parent: 2 - uid: 7285 components: - type: Transform - pos: 57.5,-0.5 + pos: 6.5,58.5 parent: 2 - uid: 7286 components: - type: Transform - pos: 57.5,1.5 + pos: 5.5,58.5 parent: 2 - uid: 7287 components: - type: Transform - pos: 57.5,2.5 + pos: 4.5,58.5 parent: 2 - uid: 7288 components: - type: Transform - pos: 57.5,0.5 + pos: 4.5,57.5 parent: 2 - uid: 7289 components: - type: Transform - pos: 57.5,3.5 + pos: 4.5,56.5 parent: 2 - uid: 7290 components: - type: Transform - pos: 56.5,3.5 + pos: 8.5,57.5 parent: 2 - uid: 7291 components: - type: Transform - pos: 56.5,4.5 + pos: 8.5,56.5 parent: 2 - uid: 7292 components: - type: Transform - pos: 55.5,3.5 + pos: 18.5,52.5 parent: 2 - uid: 7293 components: - type: Transform - pos: 57.5,4.5 + pos: 19.5,52.5 parent: 2 - uid: 7294 components: - type: Transform - pos: 55.5,4.5 + pos: 22.5,51.5 parent: 2 - uid: 7295 components: - type: Transform - pos: 47.5,5.5 + pos: 22.5,52.5 parent: 2 - uid: 7296 components: - type: Transform - pos: 46.5,5.5 + pos: 23.5,51.5 parent: 2 - uid: 7297 components: - type: Transform - pos: 45.5,5.5 + pos: 24.5,51.5 parent: 2 - uid: 7298 components: - type: Transform - pos: 45.5,6.5 + pos: 24.5,52.5 parent: 2 - uid: 7299 components: - type: Transform - pos: 44.5,6.5 + pos: 25.5,51.5 parent: 2 - uid: 7300 components: - type: Transform - pos: 43.5,5.5 + pos: 25.5,52.5 parent: 2 - uid: 7301 components: - type: Transform - pos: 43.5,6.5 + pos: 23.5,52.5 parent: 2 - uid: 7302 components: - type: Transform - pos: 44.5,5.5 + pos: 25.5,54.5 parent: 2 - uid: 7303 components: - type: Transform - pos: 44.5,8.5 + pos: 25.5,53.5 parent: 2 - uid: 7304 components: - type: Transform - pos: 44.5,7.5 + pos: 22.5,54.5 parent: 2 - uid: 7305 components: - type: Transform - pos: 43.5,7.5 + pos: 22.5,53.5 parent: 2 - uid: 7306 components: - type: Transform - pos: 42.5,7.5 + pos: 23.5,58.5 parent: 2 - uid: 7307 components: - type: Transform - pos: 41.5,7.5 + pos: 23.5,57.5 parent: 2 - uid: 7308 components: - type: Transform - pos: 40.5,7.5 + pos: 23.5,56.5 parent: 2 - uid: 7309 components: - type: Transform - pos: 39.5,7.5 + pos: 24.5,56.5 parent: 2 - uid: 7310 components: - type: Transform - pos: 38.5,7.5 + pos: 25.5,58.5 parent: 2 - uid: 7311 components: - type: Transform - pos: 41.5,4.5 + pos: 25.5,57.5 parent: 2 - uid: 7312 components: - type: Transform - pos: 40.5,4.5 + pos: 25.5,56.5 parent: 2 - uid: 7313 components: - type: Transform - pos: 40.5,3.5 + pos: 26.5,56.5 parent: 2 - uid: 7314 components: - type: Transform - pos: 39.5,4.5 + pos: 26.5,58.5 parent: 2 - uid: 7315 components: - type: Transform - pos: 41.5,3.5 + pos: 26.5,57.5 parent: 2 - uid: 7316 components: - type: Transform - pos: 39.5,3.5 + pos: 12.5,56.5 parent: 2 - uid: 7317 components: - type: Transform - pos: 38.5,4.5 + pos: 14.5,56.5 parent: 2 - uid: 7318 components: - type: Transform - pos: 38.5,3.5 + pos: 13.5,56.5 parent: 2 - uid: 7319 components: - type: Transform - pos: 32.5,1.5 + pos: 13.5,58.5 parent: 2 - uid: 7320 components: - type: Transform - pos: 33.5,1.5 + pos: 14.5,58.5 parent: 2 - uid: 7321 components: - type: Transform - pos: 33.5,0.5 + pos: 14.5,57.5 parent: 2 - uid: 7322 components: - type: Transform - pos: 32.5,0.5 + pos: 13.5,57.5 parent: 2 - uid: 7323 components: - type: Transform - pos: 34.5,0.5 + pos: 15.5,58.5 parent: 2 - uid: 7324 components: - type: Transform - pos: 34.5,1.5 + pos: 15.5,57.5 parent: 2 - uid: 7325 components: - type: Transform - pos: 35.5,1.5 + pos: 16.5,57.5 parent: 2 - uid: 7326 components: - type: Transform - pos: 36.5,1.5 + pos: 16.5,58.5 parent: 2 - uid: 7327 components: - type: Transform - pos: 36.5,3.5 + pos: 15.5,56.5 parent: 2 - uid: 7328 components: - type: Transform - pos: 36.5,4.5 + pos: 17.5,56.5 parent: 2 - uid: 7329 components: - type: Transform - pos: 37.5,1.5 + pos: 18.5,56.5 parent: 2 - uid: 7330 components: - type: Transform - pos: 36.5,2.5 + pos: 16.5,56.5 parent: 2 - uid: 7331 components: - type: Transform - pos: 37.5,2.5 + pos: 19.5,56.5 parent: 2 - uid: 7332 components: - type: Transform - pos: 37.5,4.5 + pos: 20.5,56.5 parent: 2 - uid: 7333 components: - type: Transform - pos: 37.5,3.5 + pos: 21.5,56.5 parent: 2 - uid: 7334 components: - type: Transform - pos: 37.5,5.5 + pos: 21.5,58.5 parent: 2 - uid: 7335 components: - type: Transform - pos: 36.5,5.5 + pos: 21.5,57.5 parent: 2 - uid: 7336 components: - type: Transform - pos: 36.5,6.5 + pos: 20.5,58.5 parent: 2 - uid: 7337 components: - type: Transform - pos: 35.5,5.5 + pos: 19.5,58.5 parent: 2 - uid: 7338 components: - type: Transform - pos: 35.5,6.5 + pos: 19.5,57.5 parent: 2 - uid: 7339 components: - type: Transform - pos: 34.5,5.5 + pos: 20.5,57.5 parent: 2 - uid: 7340 components: - type: Transform - pos: 34.5,6.5 + pos: 16.5,64.5 parent: 2 - uid: 7341 components: - type: Transform - pos: 37.5,6.5 + pos: 16.5,63.5 parent: 2 - uid: 7342 components: - type: Transform - pos: 33.5,5.5 + pos: 16.5,62.5 parent: 2 - uid: 7343 components: - type: Transform - pos: 32.5,5.5 + pos: 16.5,61.5 parent: 2 - uid: 7344 components: - type: Transform - pos: 33.5,6.5 + pos: 16.5,60.5 parent: 2 - uid: 7345 components: - type: Transform - pos: 32.5,6.5 + pos: 27.5,56.5 parent: 2 - uid: 7346 components: - type: Transform - pos: 31.5,4.5 + pos: 29.5,56.5 parent: 2 - uid: 7347 components: - type: Transform - pos: 31.5,5.5 + pos: 28.5,56.5 parent: 2 - uid: 7348 components: - type: Transform - pos: 31.5,7.5 + pos: 29.5,57.5 parent: 2 - uid: 7349 components: - type: Transform - pos: 31.5,6.5 + pos: 29.5,58.5 parent: 2 - uid: 7350 components: - type: Transform - pos: 30.5,8.5 + pos: 29.5,60.5 parent: 2 - uid: 7351 components: - type: Transform - pos: 30.5,9.5 + pos: 29.5,61.5 parent: 2 - uid: 7352 components: - type: Transform - pos: 30.5,10.5 + pos: 29.5,59.5 parent: 2 - uid: 7353 components: - type: Transform - pos: 30.5,11.5 + pos: 28.5,61.5 parent: 2 - uid: 7354 components: - type: Transform - pos: 30.5,13.5 + pos: 28.5,60.5 parent: 2 - uid: 7355 components: - type: Transform - pos: 30.5,14.5 + pos: 27.5,61.5 parent: 2 - uid: 7356 components: - type: Transform - pos: 30.5,15.5 + pos: 27.5,60.5 parent: 2 - uid: 7357 components: - type: Transform - pos: 31.5,8.5 + pos: 25.5,60.5 parent: 2 - uid: 7358 components: - type: Transform - pos: 31.5,9.5 + pos: 25.5,61.5 parent: 2 - uid: 7359 components: - type: Transform - pos: 31.5,10.5 + pos: 24.5,61.5 parent: 2 - uid: 7360 components: - type: Transform - pos: 30.5,12.5 + pos: 23.5,61.5 parent: 2 - uid: 7361 components: - type: Transform - pos: 31.5,11.5 + pos: 23.5,60.5 parent: 2 - uid: 7362 components: - type: Transform - pos: 31.5,15.5 + pos: 10.5,63.5 parent: 2 - uid: 7363 components: - type: Transform - pos: 31.5,13.5 + pos: 8.5,63.5 parent: 2 - uid: 7364 components: - type: Transform - pos: 31.5,14.5 + pos: 9.5,63.5 parent: 2 - uid: 7365 components: - type: Transform - pos: 31.5,12.5 + pos: 8.5,64.5 parent: 2 - uid: 7366 components: - type: Transform - pos: 32.5,15.5 + pos: 8.5,65.5 parent: 2 - uid: 7367 components: - type: Transform - pos: 33.5,15.5 + pos: 8.5,61.5 parent: 2 - uid: 7368 components: - type: Transform - pos: 34.5,15.5 + pos: 8.5,60.5 parent: 2 - uid: 7369 components: - type: Transform - pos: 35.5,15.5 + pos: 10.5,61.5 parent: 2 - uid: 7370 components: - type: Transform - pos: 34.5,14.5 + pos: 10.5,60.5 parent: 2 - uid: 7371 components: - type: Transform - pos: 34.5,13.5 + pos: 11.5,60.5 parent: 2 - uid: 7372 components: - type: Transform - pos: 34.5,11.5 + pos: 11.5,61.5 parent: 2 - uid: 7373 components: - type: Transform - pos: 34.5,10.5 + pos: 9.5,62.5 parent: 2 - uid: 7374 components: - type: Transform - pos: 34.5,9.5 + pos: 14.5,61.5 parent: 2 - uid: 7375 components: - type: Transform - pos: 34.5,8.5 + pos: 14.5,60.5 parent: 2 - uid: 7376 components: - type: Transform - pos: 34.5,7.5 + pos: 11.5,59.5 parent: 2 - uid: 7377 components: - type: Transform - pos: 34.5,12.5 + pos: 17.5,64.5 parent: 2 - uid: 7378 components: - type: Transform - pos: 35.5,14.5 + pos: 18.5,64.5 parent: 2 - uid: 7379 components: - type: Transform - pos: 35.5,13.5 + pos: 18.5,61.5 parent: 2 - uid: 7380 components: - type: Transform - pos: 35.5,12.5 + pos: 17.5,60.5 parent: 2 - uid: 7381 components: - type: Transform - pos: 35.5,11.5 + pos: 18.5,60.5 parent: 2 - uid: 7382 components: - type: Transform - pos: 35.5,10.5 + pos: 19.5,60.5 parent: 2 - uid: 7383 components: - type: Transform - pos: 35.5,9.5 + pos: 18.5,62.5 parent: 2 - uid: 7384 components: - type: Transform - pos: 35.5,8.5 + pos: 18.5,63.5 parent: 2 - uid: 7385 components: - type: Transform - pos: 35.5,7.5 + pos: 19.5,64.5 parent: 2 - uid: 7386 components: - type: Transform - pos: 36.5,14.5 + pos: 19.5,61.5 parent: 2 - uid: 7387 components: - type: Transform - pos: 36.5,13.5 + pos: 21.5,61.5 parent: 2 - uid: 7388 components: - type: Transform - pos: 36.5,12.5 + pos: 20.5,61.5 parent: 2 - uid: 7389 components: - type: Transform - pos: 36.5,11.5 + pos: 20.5,60.5 parent: 2 - uid: 7390 components: - type: Transform - pos: 36.5,10.5 + pos: 21.5,60.5 parent: 2 - uid: 7391 components: - type: Transform - pos: 36.5,9.5 + pos: 13.5,62.5 parent: 2 - uid: 7392 components: - type: Transform - pos: 36.5,8.5 + pos: 12.5,65.5 parent: 2 - uid: 7393 components: - type: Transform - pos: 36.5,7.5 + pos: 14.5,65.5 parent: 2 - uid: 7394 components: - type: Transform - pos: 37.5,7.5 + pos: 13.5,65.5 parent: 2 - uid: 7395 components: - type: Transform - pos: 37.5,8.5 + pos: 15.5,52.5 parent: 2 - uid: 7396 components: - type: Transform - pos: 37.5,9.5 + pos: 14.5,50.5 parent: 2 - uid: 7397 components: - type: Transform - pos: 32.5,12.5 + pos: 14.5,63.5 parent: 2 - uid: 7398 components: - type: Transform - pos: 33.5,12.5 + pos: 15.5,63.5 parent: 2 - uid: 7399 components: - type: Transform - pos: 33.5,12.5 + pos: 12.5,54.5 parent: 2 - uid: 7400 components: - type: Transform - pos: -65.5,21.5 + pos: 20.5,50.5 parent: 2 - uid: 7401 components: - type: Transform - pos: -64.5,21.5 + pos: 15.5,55.5 parent: 2 - uid: 7402 components: - type: Transform - pos: -64.5,20.5 + pos: 22.5,57.5 parent: 2 - uid: 7403 components: - type: Transform - pos: -65.5,20.5 + pos: 23.5,55.5 parent: 2 - uid: 7404 components: - type: Transform - pos: -69.5,19.5 + pos: 18.5,59.5 parent: 2 - uid: 7405 components: - type: Transform - pos: -68.5,19.5 + pos: 19.5,59.5 parent: 2 - uid: 7406 components: - type: Transform - pos: -70.5,17.5 + pos: 17.5,59.5 parent: 2 - uid: 7407 components: - type: Transform - pos: -72.5,18.5 + pos: 24.5,55.5 parent: 2 - uid: 7408 components: - type: Transform - pos: -72.5,17.5 + pos: 24.5,59.5 parent: 2 - uid: 7409 components: - type: Transform - pos: -68.5,16.5 + pos: 9.5,59.5 parent: 2 - uid: 7410 components: - type: Transform - pos: -69.5,15.5 + pos: -73.5,21.5 parent: 2 - uid: 7411 components: - type: Transform - pos: -67.5,10.5 + pos: -74.5,27.5 parent: 2 - uid: 7412 components: - type: Transform - pos: -33.5,-29.5 + pos: -74.5,26.5 parent: 2 - uid: 7413 components: - type: Transform - pos: -32.5,-29.5 + pos: -73.5,26.5 parent: 2 - uid: 7414 components: - type: Transform - pos: 10.5,-42.5 + pos: -70.5,28.5 parent: 2 - uid: 7415 components: - type: Transform - pos: 11.5,-42.5 + pos: -68.5,26.5 parent: 2 - uid: 7416 components: - type: Transform - pos: 11.5,-43.5 + pos: -79.5,26.5 parent: 2 - uid: 7417 components: - type: Transform - pos: 10.5,-43.5 + pos: -78.5,26.5 parent: 2 - uid: 7418 components: - type: Transform - pos: 12.5,-42.5 + pos: -80.5,27.5 parent: 2 - uid: 7419 components: - type: Transform - pos: 12.5,-43.5 + pos: -80.5,29.5 parent: 2 - uid: 7420 components: - type: Transform - pos: 13.5,-42.5 + pos: -80.5,28.5 parent: 2 - uid: 7421 components: - type: Transform - pos: 13.5,-41.5 + pos: -83.5,28.5 parent: 2 - uid: 7422 components: - type: Transform - pos: 12.5,-41.5 + pos: -83.5,30.5 parent: 2 - uid: 7423 components: - type: Transform - pos: 66.5,-55.5 + pos: -80.5,23.5 parent: 2 - uid: 7424 components: - type: Transform - pos: 68.5,-55.5 + pos: -80.5,23.5 parent: 2 - uid: 7425 components: - type: Transform - pos: 69.5,-55.5 + pos: -81.5,20.5 parent: 2 - uid: 7426 components: - type: Transform - pos: 67.5,-55.5 + pos: -86.5,24.5 parent: 2 - uid: 7427 components: - type: Transform - pos: 70.5,-55.5 + pos: -81.5,19.5 parent: 2 - uid: 7428 components: - type: Transform - pos: 67.5,-58.5 + pos: -85.5,24.5 parent: 2 - uid: 7429 components: - type: Transform - pos: 68.5,-58.5 + pos: -84.5,23.5 parent: 2 - uid: 7430 components: - type: Transform - pos: 72.5,-54.5 + pos: -83.5,23.5 parent: 2 - uid: 7431 components: - type: Transform - pos: 73.5,-54.5 + pos: -95.5,17.5 parent: 2 - uid: 7432 components: - type: Transform - pos: 74.5,-55.5 + pos: -92.5,17.5 parent: 2 - uid: 7433 components: - type: Transform - pos: 75.5,-51.5 + pos: -91.5,17.5 parent: 2 - uid: 7434 components: - type: Transform - pos: 75.5,-52.5 + pos: -92.5,20.5 parent: 2 - uid: 7435 components: - type: Transform - pos: 76.5,-52.5 + pos: -95.5,20.5 parent: 2 - uid: 7436 components: - type: Transform - pos: 76.5,-53.5 + pos: -94.5,20.5 parent: 2 - uid: 7437 components: - type: Transform - pos: 78.5,-50.5 + pos: -92.5,22.5 parent: 2 - uid: 7438 components: - type: Transform - pos: 81.5,-50.5 + pos: -88.5,19.5 parent: 2 - uid: 7439 components: - type: Transform - pos: 83.5,-49.5 + pos: -87.5,19.5 parent: 2 - uid: 7440 components: - type: Transform - pos: 87.5,-48.5 + pos: -88.5,16.5 parent: 2 - uid: 7441 components: - type: Transform - pos: 94.5,-21.5 + pos: -86.5,15.5 parent: 2 - uid: 7442 components: - type: Transform - pos: 94.5,-23.5 + pos: -85.5,15.5 parent: 2 - uid: 7443 components: - type: Transform - pos: 93.5,-21.5 + pos: -90.5,24.5 parent: 2 - uid: 7444 components: - type: Transform - pos: 93.5,-22.5 + pos: -90.5,23.5 parent: 2 - uid: 7445 components: - type: Transform - pos: 93.5,-23.5 + pos: -91.5,24.5 parent: 2 - uid: 7446 components: - type: Transform - pos: 92.5,-21.5 + pos: -89.5,24.5 parent: 2 - uid: 7447 components: - type: Transform - pos: 94.5,-22.5 + pos: -88.5,24.5 parent: 2 - uid: 7448 components: - type: Transform - pos: 92.5,-22.5 + pos: -87.5,24.5 parent: 2 - uid: 7449 components: - type: Transform - pos: 92.5,-23.5 + pos: -89.5,25.5 parent: 2 - uid: 7450 components: - type: Transform - pos: 90.5,-20.5 + pos: -88.5,25.5 parent: 2 - uid: 7451 components: - type: Transform - pos: 89.5,-20.5 + pos: -87.5,25.5 parent: 2 - uid: 7452 components: - type: Transform - pos: 85.5,-20.5 + pos: -82.5,14.5 parent: 2 - uid: 7453 components: - type: Transform - pos: 86.5,-21.5 + pos: -82.5,13.5 parent: 2 - uid: 7454 components: - type: Transform - pos: 86.5,-23.5 + pos: -82.5,12.5 parent: 2 - uid: 7455 components: - type: Transform - pos: 87.5,-21.5 + pos: -83.5,13.5 parent: 2 - uid: 7456 components: - type: Transform - pos: 87.5,-22.5 + rot: -1.5707963267948966 rad + pos: 92.5,13.5 parent: 2 - uid: 7457 components: - type: Transform - pos: 86.5,-22.5 + rot: -1.5707963267948966 rad + pos: 93.5,13.5 parent: 2 - uid: 7458 components: - type: Transform - pos: 87.5,-23.5 + pos: 36.5,-56.5 parent: 2 - uid: 7459 components: - type: Transform - pos: 88.5,-21.5 + pos: 38.5,-56.5 parent: 2 - uid: 7460 components: - type: Transform - pos: 88.5,-22.5 + pos: 37.5,-56.5 parent: 2 - uid: 7461 components: - type: Transform - pos: 88.5,-23.5 + rot: -1.5707963267948966 rad + pos: 97.5,-40.5 parent: 2 - uid: 7462 components: - type: Transform - pos: 89.5,-21.5 + rot: -1.5707963267948966 rad + pos: 99.5,-40.5 parent: 2 - uid: 7463 components: - type: Transform - pos: 89.5,-22.5 + rot: -1.5707963267948966 rad + pos: 98.5,-40.5 parent: 2 - uid: 7464 components: - type: Transform - pos: 89.5,-23.5 + rot: -1.5707963267948966 rad + pos: 100.5,-40.5 parent: 2 - uid: 7465 components: - type: Transform - pos: 90.5,-23.5 + rot: -1.5707963267948966 rad + pos: 101.5,-40.5 parent: 2 - uid: 7466 components: - type: Transform - pos: 91.5,-23.5 + rot: -1.5707963267948966 rad + pos: 98.5,-39.5 parent: 2 - uid: 7467 components: - type: Transform - pos: 81.5,-20.5 + rot: -1.5707963267948966 rad + pos: 100.5,-39.5 parent: 2 - uid: 7468 components: - type: Transform - pos: 82.5,-21.5 + rot: -1.5707963267948966 rad + pos: 99.5,-39.5 parent: 2 - uid: 7469 components: - type: Transform - pos: -27.5,66.5 + rot: -1.5707963267948966 rad + pos: 99.5,-38.5 parent: 2 - uid: 7470 components: - type: Transform - pos: 13.5,54.5 + rot: -1.5707963267948966 rad + pos: 101.5,-38.5 parent: 2 - uid: 7471 components: - type: Transform - pos: 13.5,52.5 + rot: -1.5707963267948966 rad + pos: 102.5,-38.5 parent: 2 - uid: 7472 components: - type: Transform - pos: 13.5,53.5 + rot: -1.5707963267948966 rad + pos: 103.5,-38.5 parent: 2 - uid: 7473 components: - type: Transform - pos: 14.5,54.5 + rot: -1.5707963267948966 rad + pos: 100.5,-38.5 parent: 2 - uid: 7474 components: - type: Transform - pos: 10.5,58.5 + rot: -1.5707963267948966 rad + pos: 102.5,-40.5 parent: 2 - uid: 7475 components: - type: Transform - pos: 9.5,58.5 + rot: -1.5707963267948966 rad + pos: 103.5,-39.5 parent: 2 - uid: 7476 components: - type: Transform - pos: 9.5,57.5 + rot: -1.5707963267948966 rad + pos: 103.5,-40.5 parent: 2 - uid: 7477 components: - type: Transform - pos: 10.5,57.5 + rot: -1.5707963267948966 rad + pos: 104.5,-41.5 parent: 2 - uid: 7478 components: - type: Transform - pos: 9.5,56.5 + rot: -1.5707963267948966 rad + pos: 104.5,-43.5 parent: 2 - uid: 7479 components: - type: Transform - pos: 11.5,56.5 + rot: -1.5707963267948966 rad + pos: 104.5,-44.5 parent: 2 - uid: 7480 components: - type: Transform - pos: 10.5,56.5 + rot: -1.5707963267948966 rad + pos: 104.5,-45.5 parent: 2 - uid: 7481 components: - type: Transform - pos: 8.5,58.5 + rot: -1.5707963267948966 rad + pos: 104.5,-46.5 parent: 2 - uid: 7482 components: - type: Transform - pos: 7.5,58.5 + rot: -1.5707963267948966 rad + pos: 104.5,-42.5 parent: 2 - uid: 7483 components: - type: Transform - pos: 6.5,58.5 + rot: -1.5707963267948966 rad + pos: 102.5,-45.5 parent: 2 - uid: 7484 components: - type: Transform - pos: 5.5,58.5 + rot: -1.5707963267948966 rad + pos: 102.5,-46.5 parent: 2 - uid: 7485 components: - type: Transform - pos: 4.5,58.5 + rot: -1.5707963267948966 rad + pos: 101.5,-46.5 parent: 2 - uid: 7486 components: - type: Transform - pos: 4.5,57.5 + rot: -1.5707963267948966 rad + pos: 99.5,-46.5 parent: 2 - uid: 7487 components: - type: Transform - pos: 4.5,56.5 + rot: -1.5707963267948966 rad + pos: 98.5,-46.5 parent: 2 - uid: 7488 components: - type: Transform - pos: 8.5,57.5 + rot: -1.5707963267948966 rad + pos: 100.5,-46.5 parent: 2 - uid: 7489 components: - type: Transform - pos: 8.5,56.5 + rot: -1.5707963267948966 rad + pos: 97.5,-46.5 parent: 2 - uid: 7490 components: - type: Transform - pos: 18.5,52.5 + rot: -1.5707963267948966 rad + pos: 98.5,-47.5 parent: 2 - uid: 7491 components: - type: Transform - pos: 19.5,52.5 + rot: -1.5707963267948966 rad + pos: 95.5,-45.5 parent: 2 - uid: 7492 components: - type: Transform - pos: 22.5,51.5 + rot: -1.5707963267948966 rad + pos: 97.5,-45.5 parent: 2 - uid: 7493 components: - type: Transform - pos: 22.5,52.5 + rot: -1.5707963267948966 rad + pos: 98.5,-45.5 parent: 2 - uid: 7494 components: - type: Transform - pos: 23.5,51.5 + rot: -1.5707963267948966 rad + pos: 99.5,-45.5 parent: 2 - uid: 7495 components: - type: Transform - pos: 24.5,51.5 + rot: -1.5707963267948966 rad + pos: 100.5,-45.5 parent: 2 - uid: 7496 components: - type: Transform - pos: 24.5,52.5 + rot: -1.5707963267948966 rad + pos: 96.5,-45.5 parent: 2 - uid: 7497 components: - type: Transform - pos: 25.5,51.5 + rot: -1.5707963267948966 rad + pos: 103.5,-46.5 parent: 2 - uid: 7498 components: - type: Transform - pos: 25.5,52.5 + rot: -1.5707963267948966 rad + pos: 97.5,-44.5 parent: 2 - uid: 7499 components: - type: Transform - pos: 23.5,52.5 + rot: -1.5707963267948966 rad + pos: 97.5,-43.5 parent: 2 - uid: 7500 components: - type: Transform - pos: 25.5,54.5 + rot: -1.5707963267948966 rad + pos: 96.5,-43.5 parent: 2 - uid: 7501 components: - type: Transform - pos: 25.5,53.5 + rot: -1.5707963267948966 rad + pos: 96.5,-42.5 parent: 2 - uid: 7502 components: - type: Transform - pos: 22.5,54.5 + rot: -1.5707963267948966 rad + pos: 97.5,-42.5 parent: 2 - uid: 7503 components: - type: Transform - pos: 22.5,53.5 + rot: -1.5707963267948966 rad + pos: 99.5,-42.5 parent: 2 - uid: 7504 components: - type: Transform - pos: 23.5,58.5 + rot: -1.5707963267948966 rad + pos: 99.5,-44.5 parent: 2 - uid: 7505 components: - type: Transform - pos: 23.5,57.5 + rot: -1.5707963267948966 rad + pos: 99.5,-43.5 parent: 2 - uid: 7506 components: - type: Transform - pos: 23.5,56.5 + rot: -1.5707963267948966 rad + pos: 99.5,-41.5 parent: 2 - uid: 7507 components: - type: Transform - pos: 24.5,56.5 + rot: -1.5707963267948966 rad + pos: 101.5,-44.5 parent: 2 - uid: 7508 components: - type: Transform - pos: 25.5,58.5 + rot: -1.5707963267948966 rad + pos: 101.5,-43.5 parent: 2 - uid: 7509 components: - type: Transform - pos: 25.5,57.5 + rot: -1.5707963267948966 rad + pos: 101.5,-42.5 parent: 2 - uid: 7510 components: - type: Transform - pos: 25.5,56.5 + rot: -1.5707963267948966 rad + pos: 102.5,-42.5 parent: 2 - uid: 7511 components: - type: Transform - pos: 26.5,56.5 + rot: -1.5707963267948966 rad + pos: 102.5,-43.5 parent: 2 - uid: 7512 components: - type: Transform - pos: 26.5,58.5 + rot: -1.5707963267948966 rad + pos: 98.5,-42.5 parent: 2 - uid: 7513 components: - type: Transform - pos: 26.5,57.5 + rot: -1.5707963267948966 rad + pos: 94.5,-44.5 parent: 2 - uid: 7514 components: - type: Transform - pos: 12.5,56.5 + rot: -1.5707963267948966 rad + pos: 94.5,-42.5 parent: 2 - uid: 7515 components: - type: Transform - pos: 14.5,56.5 + rot: -1.5707963267948966 rad + pos: 95.5,-41.5 parent: 2 - uid: 7516 components: - type: Transform - pos: 13.5,56.5 + rot: -1.5707963267948966 rad + pos: 95.5,-40.5 parent: 2 - uid: 7517 components: - type: Transform - pos: 13.5,58.5 + rot: -1.5707963267948966 rad + pos: 96.5,-39.5 parent: 2 - uid: 7518 components: - type: Transform - pos: 14.5,58.5 + pos: -32.5,47.5 parent: 2 - uid: 7519 components: - type: Transform - pos: 14.5,57.5 + pos: -32.5,46.5 parent: 2 - uid: 7520 components: - type: Transform - pos: 13.5,57.5 + pos: -32.5,45.5 parent: 2 - uid: 7521 components: - type: Transform - pos: 15.5,58.5 + pos: -31.5,45.5 parent: 2 - uid: 7522 components: - type: Transform - pos: 15.5,57.5 + pos: -31.5,46.5 parent: 2 - uid: 7523 components: - type: Transform - pos: 16.5,57.5 + pos: -31.5,44.5 parent: 2 - uid: 7524 components: - type: Transform - pos: 16.5,58.5 + pos: -31.5,43.5 parent: 2 - uid: 7525 components: - type: Transform - pos: 15.5,56.5 + pos: -30.5,44.5 parent: 2 - uid: 7526 components: - type: Transform - pos: 17.5,56.5 + pos: -30.5,43.5 parent: 2 - uid: 7527 components: - type: Transform - pos: 18.5,56.5 + pos: -30.5,42.5 parent: 2 - uid: 7528 components: - type: Transform - pos: 16.5,56.5 + pos: 30.5,5.5 parent: 2 - uid: 7529 components: - type: Transform - pos: 19.5,56.5 + pos: 30.5,4.5 parent: 2 - uid: 7530 components: - type: Transform - pos: 20.5,56.5 + pos: 54.5,-20.5 parent: 2 - uid: 7531 components: - type: Transform - pos: 21.5,56.5 + pos: 55.5,-20.5 parent: 2 - uid: 7532 components: - type: Transform - pos: 21.5,58.5 + pos: 30.5,7.5 parent: 2 - uid: 7533 components: - type: Transform - pos: 21.5,57.5 + pos: 51.5,-20.5 parent: 2 - uid: 7534 components: - type: Transform - pos: 20.5,58.5 + pos: 59.5,-19.5 parent: 2 - uid: 7535 components: - type: Transform - pos: 19.5,58.5 + pos: 43.5,-9.5 parent: 2 - uid: 7536 components: - type: Transform - pos: 19.5,57.5 + pos: 30.5,6.5 parent: 2 - uid: 7537 components: - type: Transform - pos: 20.5,57.5 + pos: 58.5,-19.5 parent: 2 - uid: 7538 components: - type: Transform - pos: 16.5,64.5 + pos: 60.5,-20.5 parent: 2 - uid: 7539 components: - type: Transform - pos: 16.5,63.5 + pos: 57.5,-19.5 parent: 2 - uid: 7540 components: - type: Transform - pos: 16.5,62.5 + pos: 57.5,-20.5 parent: 2 - uid: 7541 components: - type: Transform - pos: 16.5,61.5 + pos: 48.5,-20.5 parent: 2 - uid: 7542 components: - type: Transform - pos: 16.5,60.5 + pos: 50.5,-20.5 parent: 2 - uid: 7543 components: - type: Transform - pos: 27.5,56.5 + pos: 60.5,-19.5 parent: 2 - uid: 7544 components: - type: Transform - pos: 29.5,56.5 + pos: 56.5,-19.5 parent: 2 - uid: 7545 components: - type: Transform - pos: 28.5,56.5 + pos: 56.5,-20.5 parent: 2 - uid: 7546 components: - type: Transform - pos: 29.5,57.5 + pos: 43.5,-8.5 parent: 2 - uid: 7547 components: - type: Transform - pos: 29.5,58.5 + pos: -55.5,42.5 parent: 2 - uid: 7548 components: - type: Transform - pos: 29.5,60.5 + pos: -55.5,44.5 parent: 2 - uid: 7549 components: - type: Transform - pos: 29.5,61.5 + pos: -57.5,43.5 parent: 2 - uid: 7550 components: - type: Transform - pos: 29.5,59.5 + pos: -55.5,43.5 parent: 2 - uid: 7551 components: - type: Transform - pos: 28.5,61.5 + pos: -75.5,20.5 parent: 2 - uid: 7552 components: - type: Transform - pos: 28.5,60.5 + pos: -55.5,45.5 parent: 2 - uid: 7553 components: - type: Transform - pos: 27.5,61.5 + pos: -55.5,41.5 parent: 2 - uid: 7554 components: - type: Transform - pos: 27.5,60.5 + pos: -74.5,20.5 parent: 2 - uid: 7555 components: - type: Transform - pos: 25.5,60.5 + pos: -73.5,20.5 parent: 2 - uid: 7556 components: - type: Transform - pos: 25.5,61.5 + pos: -75.5,21.5 parent: 2 - uid: 7557 components: - type: Transform - pos: 24.5,61.5 + pos: -58.5,43.5 parent: 2 - uid: 7558 components: - type: Transform - pos: 23.5,61.5 + pos: -79.5,20.5 parent: 2 - uid: 7559 components: - type: Transform - pos: 23.5,60.5 + pos: -78.5,21.5 parent: 2 - uid: 7560 components: - type: Transform - pos: 10.5,63.5 + pos: -97.5,35.5 parent: 2 - uid: 7561 components: - type: Transform - pos: 8.5,63.5 + pos: -64.5,49.5 parent: 2 - uid: 7562 components: - type: Transform - pos: 9.5,63.5 + pos: -90.5,68.5 parent: 2 - uid: 7563 components: - type: Transform - pos: 8.5,64.5 + pos: -89.5,66.5 parent: 2 - uid: 7564 components: - type: Transform - pos: 8.5,65.5 + pos: -89.5,68.5 parent: 2 - uid: 7565 components: - type: Transform - pos: 8.5,61.5 + pos: -64.5,52.5 parent: 2 - uid: 7566 components: - type: Transform - pos: 8.5,60.5 + pos: -58.5,49.5 parent: 2 - uid: 7567 components: - type: Transform - pos: 10.5,61.5 + pos: -64.5,45.5 parent: 2 - uid: 7568 components: - type: Transform - pos: 10.5,60.5 + pos: -88.5,67.5 parent: 2 - uid: 7569 components: - type: Transform - pos: 11.5,60.5 + pos: -64.5,47.5 parent: 2 - uid: 7570 components: - type: Transform - pos: 11.5,61.5 + pos: -116.5,49.5 parent: 2 - uid: 7571 components: - type: Transform - pos: 9.5,62.5 + pos: -41.5,71.5 parent: 2 - uid: 7572 components: - type: Transform - pos: 14.5,61.5 + pos: -64.5,46.5 parent: 2 - uid: 7573 components: - type: Transform - pos: 14.5,60.5 + pos: -65.5,53.5 parent: 2 - uid: 7574 components: - type: Transform - pos: 11.5,59.5 + pos: -64.5,48.5 parent: 2 - uid: 7575 components: - type: Transform - pos: 17.5,64.5 + pos: -67.5,54.5 parent: 2 - uid: 7576 components: - type: Transform - pos: 18.5,64.5 + pos: -65.5,45.5 parent: 2 - uid: 7577 components: - type: Transform - pos: 18.5,61.5 + pos: -68.5,50.5 parent: 2 - uid: 7578 components: - type: Transform - pos: 17.5,60.5 + pos: -35.5,65.5 parent: 2 - uid: 7579 components: - type: Transform - pos: 18.5,60.5 + pos: -35.5,64.5 parent: 2 - uid: 7580 components: - type: Transform - pos: 19.5,60.5 + pos: 77.5,-27.5 parent: 2 - uid: 7581 components: - type: Transform - pos: 18.5,62.5 + pos: -41.5,68.5 parent: 2 - uid: 7582 components: - type: Transform - pos: 18.5,63.5 + pos: -41.5,67.5 parent: 2 - uid: 7583 components: - type: Transform - pos: 19.5,64.5 + pos: -90.5,67.5 parent: 2 - uid: 7584 components: - type: Transform - pos: 19.5,61.5 + pos: -133.5,18.5 parent: 2 - uid: 7585 components: - type: Transform - pos: 21.5,61.5 + pos: -60.5,48.5 parent: 2 - uid: 7586 components: - type: Transform - pos: 20.5,61.5 + pos: 49.5,45.5 parent: 2 - uid: 7587 components: - type: Transform - pos: 20.5,60.5 + pos: -90.5,66.5 parent: 2 - uid: 7588 components: - type: Transform - pos: 21.5,60.5 + pos: -63.5,48.5 parent: 2 - uid: 7589 components: - type: Transform - pos: 13.5,62.5 + pos: -88.5,68.5 parent: 2 - uid: 7590 components: - type: Transform - pos: 12.5,65.5 + pos: -88.5,66.5 parent: 2 - uid: 7591 components: - type: Transform - pos: 14.5,65.5 + pos: -34.5,64.5 parent: 2 - uid: 7592 components: - type: Transform - pos: 13.5,65.5 + pos: -95.5,35.5 parent: 2 - uid: 7593 components: - type: Transform - pos: 15.5,52.5 + pos: -59.5,49.5 parent: 2 - uid: 7594 components: - type: Transform - pos: 14.5,50.5 + pos: -95.5,34.5 parent: 2 - uid: 7595 components: - type: Transform - pos: 14.5,63.5 + pos: 77.5,-30.5 parent: 2 - uid: 7596 components: - type: Transform - pos: 15.5,63.5 + pos: -89.5,67.5 parent: 2 - uid: 7597 components: - type: Transform - pos: 12.5,54.5 + pos: -65.5,54.5 parent: 2 - uid: 7598 components: - type: Transform - pos: 20.5,50.5 + pos: -66.5,50.5 parent: 2 - uid: 7599 components: - type: Transform - pos: 15.5,55.5 + pos: -66.5,48.5 parent: 2 - uid: 7600 components: - type: Transform - pos: 22.5,57.5 + pos: -68.5,48.5 parent: 2 - uid: 7601 components: - type: Transform - pos: 23.5,55.5 + pos: -66.5,49.5 parent: 2 - uid: 7602 components: - type: Transform - pos: 18.5,59.5 + pos: -66.5,46.5 parent: 2 - uid: 7603 components: - type: Transform - pos: 19.5,59.5 + pos: -67.5,48.5 parent: 2 - uid: 7604 components: - type: Transform - pos: 17.5,59.5 + pos: -68.5,47.5 parent: 2 - uid: 7605 components: - type: Transform - pos: 24.5,55.5 + pos: -69.5,47.5 parent: 2 - uid: 7606 components: - type: Transform - pos: 24.5,59.5 + pos: -34.5,70.5 parent: 2 - uid: 7607 components: - type: Transform - pos: 9.5,59.5 + pos: -38.5,63.5 parent: 2 - uid: 7608 components: - type: Transform - pos: -73.5,21.5 + pos: -37.5,67.5 parent: 2 - uid: 7609 components: - type: Transform - pos: -74.5,27.5 + pos: -37.5,69.5 parent: 2 - uid: 7610 components: - type: Transform - pos: -74.5,26.5 + pos: -38.5,66.5 parent: 2 - uid: 7611 components: - type: Transform - pos: -73.5,26.5 + pos: -36.5,70.5 parent: 2 - uid: 7612 components: - type: Transform - pos: -70.5,28.5 + pos: -37.5,64.5 parent: 2 - uid: 7613 components: - type: Transform - pos: -68.5,26.5 + pos: -26.5,69.5 parent: 2 - uid: 7614 components: - type: Transform - pos: -79.5,26.5 + pos: -35.5,71.5 parent: 2 - uid: 7615 components: - type: Transform - pos: -78.5,26.5 + pos: -39.5,67.5 parent: 2 - uid: 7616 components: - type: Transform - pos: -80.5,27.5 + pos: -97.5,34.5 parent: 2 - uid: 7617 components: - type: Transform - pos: -80.5,29.5 + pos: -96.5,34.5 parent: 2 - uid: 7618 components: - type: Transform - pos: -80.5,28.5 + pos: -41.5,66.5 parent: 2 - uid: 7619 components: - type: Transform - pos: -83.5,28.5 + pos: -35.5,63.5 parent: 2 - uid: 7620 components: - type: Transform - pos: -83.5,30.5 + pos: -41.5,65.5 parent: 2 - uid: 7621 components: - type: Transform - pos: -80.5,23.5 + pos: -40.5,67.5 parent: 2 - uid: 7622 components: - type: Transform - pos: -80.5,23.5 + pos: -40.5,66.5 parent: 2 - uid: 7623 components: - type: Transform - pos: -81.5,20.5 + pos: -27.5,68.5 parent: 2 - uid: 7624 components: - type: Transform - pos: -86.5,24.5 + pos: -40.5,70.5 parent: 2 - uid: 7625 components: - type: Transform - pos: -81.5,19.5 + pos: -26.5,71.5 parent: 2 - uid: 7626 components: - type: Transform - pos: -85.5,24.5 + pos: -40.5,65.5 parent: 2 - uid: 7627 components: - type: Transform - pos: -84.5,23.5 + pos: -39.5,71.5 parent: 2 - uid: 7628 components: - type: Transform - pos: -83.5,23.5 + pos: -30.5,67.5 parent: 2 - uid: 7629 components: - type: Transform - pos: -80.5,17.5 + pos: -38.5,69.5 parent: 2 - uid: 7630 components: - type: Transform - pos: -80.5,16.5 + pos: -38.5,70.5 parent: 2 - uid: 7631 components: - type: Transform - pos: -95.5,17.5 + pos: -39.5,64.5 parent: 2 - uid: 7632 components: - type: Transform - pos: -92.5,17.5 + pos: -37.5,68.5 parent: 2 - uid: 7633 components: - type: Transform - pos: -91.5,17.5 + pos: -39.5,65.5 parent: 2 - uid: 7634 components: - type: Transform - pos: -92.5,20.5 + pos: -37.5,70.5 parent: 2 - uid: 7635 components: - type: Transform - pos: -95.5,20.5 + pos: -25.5,71.5 parent: 2 - uid: 7636 components: - type: Transform - pos: -94.5,20.5 + pos: -29.5,67.5 parent: 2 - uid: 7637 components: - type: Transform - pos: -92.5,22.5 + pos: -29.5,68.5 parent: 2 - uid: 7638 components: - type: Transform - pos: -88.5,19.5 + pos: -36.5,64.5 parent: 2 - uid: 7639 components: - type: Transform - pos: -87.5,19.5 + pos: -35.5,66.5 parent: 2 - uid: 7640 components: - type: Transform - pos: -88.5,16.5 + pos: -38.5,67.5 parent: 2 - uid: 7641 components: - type: Transform - pos: -86.5,15.5 + pos: -37.5,66.5 parent: 2 - uid: 7642 components: - type: Transform - pos: -85.5,15.5 + pos: -36.5,69.5 parent: 2 - uid: 7643 components: - type: Transform - pos: -90.5,24.5 + pos: -36.5,63.5 parent: 2 - uid: 7644 components: - type: Transform - pos: -90.5,23.5 + pos: -37.5,63.5 parent: 2 - uid: 7645 components: - type: Transform - pos: -91.5,24.5 + pos: -37.5,65.5 parent: 2 - uid: 7646 components: - type: Transform - pos: -89.5,24.5 + pos: -38.5,65.5 parent: 2 - uid: 7647 components: - type: Transform - pos: -88.5,24.5 + pos: -35.5,60.5 parent: 2 - uid: 7648 components: - type: Transform - pos: -87.5,24.5 + pos: -38.5,64.5 parent: 2 - uid: 7649 components: - type: Transform - pos: -89.5,25.5 + pos: -36.5,65.5 parent: 2 - uid: 7650 components: - type: Transform - pos: -88.5,25.5 + pos: -65.5,52.5 parent: 2 - uid: 7651 components: - type: Transform - pos: -87.5,25.5 + pos: -96.5,35.5 parent: 2 - uid: 7652 components: - type: Transform - pos: -82.5,14.5 + pos: -62.5,48.5 parent: 2 - uid: 7653 components: - type: Transform - pos: -82.5,13.5 + pos: -62.5,49.5 parent: 2 - uid: 7654 components: - type: Transform - pos: -82.5,12.5 + pos: -65.5,51.5 parent: 2 - uid: 7655 components: - type: Transform - pos: -83.5,13.5 + pos: -62.5,52.5 parent: 2 - uid: 7656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,13.5 + pos: -66.5,55.5 parent: 2 - uid: 7657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,13.5 + pos: -67.5,55.5 parent: 2 - uid: 7658 components: - type: Transform - pos: 36.5,-56.5 + pos: -65.5,55.5 parent: 2 - uid: 7659 components: - type: Transform - pos: 38.5,-56.5 + pos: -32.5,63.5 parent: 2 - uid: 7660 components: - type: Transform - pos: 37.5,-56.5 + pos: -62.5,54.5 parent: 2 - uid: 7661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-40.5 + pos: -67.5,50.5 parent: 2 - uid: 7662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-40.5 + pos: -65.5,48.5 parent: 2 - uid: 7663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-40.5 + pos: -33.5,68.5 parent: 2 - uid: 7664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-40.5 + pos: -66.5,47.5 parent: 2 - uid: 7665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-40.5 + pos: -33.5,64.5 parent: 2 - uid: 7666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-39.5 + pos: -70.5,52.5 parent: 2 - uid: 7667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-39.5 + pos: -32.5,64.5 parent: 2 - uid: 7668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-39.5 + pos: -66.5,51.5 parent: 2 - uid: 7669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-38.5 + pos: -66.5,53.5 parent: 2 - uid: 7670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-38.5 + pos: -62.5,53.5 parent: 2 - uid: 7671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-38.5 + pos: -62.5,47.5 parent: 2 - uid: 7672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-38.5 + pos: -67.5,52.5 parent: 2 - uid: 7673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-38.5 + pos: -66.5,54.5 parent: 2 - uid: 7674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-40.5 + pos: -65.5,47.5 parent: 2 - uid: 7675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-39.5 + pos: -64.5,55.5 parent: 2 - uid: 7676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-40.5 + pos: -64.5,54.5 parent: 2 - uid: 7677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-41.5 + pos: -35.5,69.5 parent: 2 - uid: 7678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-43.5 + pos: -35.5,70.5 parent: 2 - uid: 7679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-44.5 + pos: -42.5,70.5 parent: 2 - uid: 7680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-45.5 + pos: -42.5,71.5 parent: 2 - uid: 7681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-46.5 + pos: -36.5,66.5 parent: 2 - uid: 7682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 104.5,-42.5 + pos: -39.5,63.5 parent: 2 - uid: 7683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-45.5 + pos: -39.5,69.5 parent: 2 - uid: 7684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-46.5 + pos: -39.5,68.5 parent: 2 - uid: 7685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-46.5 + pos: -39.5,70.5 parent: 2 - uid: 7686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-46.5 + pos: -27.5,67.5 parent: 2 - uid: 7687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-46.5 + pos: -29.5,69.5 parent: 2 - uid: 7688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-46.5 + pos: -40.5,68.5 parent: 2 - uid: 7689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-46.5 + pos: -41.5,69.5 parent: 2 - uid: 7690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-47.5 + pos: -42.5,69.5 parent: 2 - uid: 7691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-45.5 + pos: -38.5,68.5 parent: 2 - uid: 7692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-45.5 + pos: -37.5,71.5 parent: 2 - uid: 7693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-45.5 + pos: -39.5,66.5 parent: 2 - uid: 7694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-45.5 + pos: -68.5,-23.5 parent: 2 - uid: 7695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-45.5 + pos: -67.5,-23.5 parent: 2 - uid: 7696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-45.5 + pos: -66.5,52.5 parent: 2 - uid: 7697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-46.5 + pos: -40.5,64.5 parent: 2 - uid: 7698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-44.5 + pos: -36.5,71.5 parent: 2 - uid: 7699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-43.5 + pos: -36.5,67.5 parent: 2 - uid: 7700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-43.5 + pos: -41.5,72.5 parent: 2 - uid: 7701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-42.5 + pos: -36.5,68.5 parent: 2 - uid: 7702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-42.5 + pos: -62.5,50.5 parent: 2 - uid: 7703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-42.5 + pos: -33.5,67.5 parent: 2 - uid: 7704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-44.5 + pos: -28.5,67.5 parent: 2 - uid: 7705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-43.5 + pos: -28.5,66.5 parent: 2 - uid: 7706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-41.5 + pos: -28.5,68.5 parent: 2 - uid: 7707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-44.5 + pos: -27.5,69.5 parent: 2 - uid: 7708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-43.5 + pos: -62.5,51.5 parent: 2 - uid: 7709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-42.5 + pos: -65.5,46.5 parent: 2 - uid: 7710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-42.5 + pos: -63.5,55.5 parent: 2 - uid: 7711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-43.5 + pos: -34.5,63.5 parent: 2 - uid: 7712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-42.5 + pos: -40.5,69.5 parent: 2 - uid: 7713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-44.5 + pos: -87.5,67.5 parent: 2 - uid: 7714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-42.5 + pos: -87.5,66.5 parent: 2 - uid: 7715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-41.5 + pos: -87.5,68.5 parent: 2 - uid: 7716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-40.5 + pos: -34.5,68.5 parent: 2 - uid: 7717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-39.5 + pos: -33.5,63.5 parent: 2 - uid: 7718 components: - type: Transform - pos: -32.5,47.5 + pos: -33.5,65.5 parent: 2 - uid: 7719 components: - type: Transform - pos: -32.5,46.5 + pos: -34.5,66.5 parent: 2 - uid: 7720 components: - type: Transform - pos: -32.5,45.5 + pos: -34.5,69.5 parent: 2 - uid: 7721 components: - type: Transform - pos: -31.5,45.5 + pos: -41.5,70.5 parent: 2 - uid: 7722 components: - type: Transform - pos: -31.5,46.5 + pos: -34.5,67.5 parent: 2 - uid: 7723 components: - type: Transform - pos: -31.5,44.5 + pos: -36.5,72.5 parent: 2 - uid: 7724 components: - type: Transform - pos: -31.5,43.5 + pos: 77.5,-31.5 parent: 2 - uid: 7725 components: - type: Transform - pos: -30.5,44.5 + pos: 77.5,-28.5 parent: 2 - uid: 7726 components: - type: Transform - pos: -30.5,43.5 + pos: 77.5,-29.5 parent: 2 - uid: 7727 components: - type: Transform - pos: -30.5,42.5 + pos: 78.5,-27.5 parent: 2 -- proto: AtmosFixNitrogenMarker - entities: - uid: 7728 components: - type: Transform - pos: -24.5,-63.5 + rot: -1.5707963267948966 rad + pos: -32.5,58.5 parent: 2 - uid: 7729 components: - type: Transform - pos: -23.5,-61.5 + rot: -1.5707963267948966 rad + pos: -33.5,58.5 parent: 2 - uid: 7730 components: - type: Transform - pos: -23.5,-62.5 + pos: -32.5,60.5 parent: 2 - uid: 7731 components: - type: Transform - pos: -23.5,-63.5 + pos: -32.5,61.5 parent: 2 - uid: 7732 components: - type: Transform - pos: -25.5,-63.5 + pos: -64.5,50.5 parent: 2 - uid: 7733 components: - type: Transform - pos: -25.5,-62.5 + pos: -63.5,54.5 parent: 2 - uid: 7734 components: - type: Transform - pos: -25.5,-61.5 + pos: -63.5,50.5 parent: 2 - uid: 7735 components: - type: Transform - pos: -24.5,-62.5 + pos: -65.5,50.5 parent: 2 - uid: 7736 components: - type: Transform - pos: -24.5,-61.5 + pos: -65.5,49.5 parent: 2 -- proto: AtmosFixOxygenMarker - entities: - uid: 7737 components: - type: Transform - pos: -23.5,-57.5 + pos: -63.5,51.5 parent: 2 - uid: 7738 components: - type: Transform - pos: -23.5,-58.5 + pos: -64.5,51.5 parent: 2 - uid: 7739 components: - type: Transform - pos: -23.5,-59.5 + pos: -35.5,67.5 parent: 2 - uid: 7740 components: - type: Transform - pos: -24.5,-57.5 + pos: -59.5,48.5 parent: 2 - uid: 7741 components: - type: Transform - pos: -25.5,-57.5 + pos: -33.5,66.5 parent: 2 - uid: 7742 components: - type: Transform - pos: -24.5,-58.5 + pos: -86.5,68.5 parent: 2 - uid: 7743 components: - type: Transform - pos: -25.5,-58.5 + pos: -34.5,65.5 parent: 2 - uid: 7744 components: - type: Transform - pos: -25.5,-59.5 + pos: -29.5,66.5 parent: 2 - uid: 7745 components: - type: Transform - pos: -24.5,-59.5 + pos: -35.5,68.5 parent: 2 - uid: 7746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,23.5 + pos: -68.5,51.5 parent: 2 - uid: 7747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-46.5 + pos: -67.5,51.5 parent: 2 - uid: 7748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,47.5 + pos: -67.5,53.5 parent: 2 - - uid: 40245 - components: - - type: Transform - pos: 63.5,63.5 - parent: 40203 - - uid: 40246 - components: - - type: Transform - pos: 64.5,63.5 - parent: 40203 -- proto: AtmosFixPlasmaMarker - entities: - uid: 7749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-68.5 + pos: -69.5,51.5 parent: 2 - uid: 7750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-69.5 + pos: -70.5,51.5 parent: 2 - uid: 7751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-70.5 + pos: -68.5,54.5 parent: 2 - uid: 7752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-68.5 + pos: -69.5,52.5 parent: 2 - uid: 7753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-69.5 + pos: -69.5,54.5 parent: 2 - uid: 7754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-70.5 + pos: -68.5,52.5 parent: 2 - uid: 7755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-68.5 + pos: -69.5,53.5 parent: 2 - uid: 7756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-69.5 + pos: -61.5,49.5 parent: 2 - uid: 7757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-70.5 + pos: -68.5,53.5 parent: 2 - - uid: 40247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,61.5 - parent: 40203 - - uid: 40248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,61.5 - parent: 40203 -- proto: Autolathe - entities: - uid: 7758 components: - type: Transform - pos: -6.5,-38.5 + pos: -60.5,49.5 parent: 2 - uid: 7759 components: - type: Transform - pos: 27.5,-9.5 + pos: -58.5,50.5 parent: 2 - uid: 7760 components: - type: Transform - pos: 30.5,-42.5 + pos: -58.5,52.5 parent: 2 - uid: 7761 components: - type: Transform - pos: 19.5,-32.5 + pos: -58.5,51.5 parent: 2 -- proto: AutolatheMachineCircuitboard - entities: - uid: 7762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.515812,4.3300877 + pos: -58.5,53.5 parent: 2 -- proto: BackgammonBoard - entities: - uid: 7763 components: - type: Transform - pos: 22.519558,48.63322 + pos: -58.5,54.5 parent: 2 - uid: 7764 components: - type: Transform - pos: -98.44138,2.1198368 + pos: -58.5,55.5 parent: 2 - uid: 7765 components: - type: Transform - pos: -31.46262,29.587063 + pos: -59.5,51.5 parent: 2 -- proto: BananaPhoneInstrument - entities: - uid: 7766 components: - type: Transform - pos: 51.64417,12.640625 + pos: -59.5,53.5 parent: 2 -- proto: BannerCargo - entities: - uid: 7767 components: - type: Transform - pos: 62.5,-34.5 + pos: -59.5,52.5 parent: 2 -- proto: BannerEngineering - entities: - uid: 7768 components: - type: Transform - pos: -8.5,-40.5 + pos: -59.5,55.5 parent: 2 - uid: 7769 components: - type: Transform - pos: -10.5,-40.5 + pos: -59.5,54.5 parent: 2 -- proto: BannerMedical - entities: - uid: 7770 components: - type: Transform - pos: -2.5,34.5 + pos: -60.5,54.5 parent: 2 - uid: 7771 components: - type: Transform - pos: -0.5,34.5 + pos: -60.5,52.5 parent: 2 -- proto: BannerNanotrasen - entities: - uid: 7772 components: - type: Transform - pos: 0.5,-2.5 + pos: -60.5,51.5 parent: 2 - uid: 7773 components: - type: Transform - pos: 4.5,-2.5 + pos: -57.5,52.5 parent: 2 -- proto: BannerScience - entities: - uid: 7774 components: - type: Transform - pos: 26.5,-26.5 + pos: -57.5,53.5 parent: 2 - uid: 7775 components: - type: Transform - pos: 28.5,-26.5 + pos: -57.5,55.5 parent: 2 -- proto: BannerSecurity - entities: - uid: 7776 components: - type: Transform - pos: -19.5,-13.5 + pos: -56.5,52.5 parent: 2 - uid: 7777 components: - type: Transform - pos: -19.5,-21.5 + pos: -56.5,53.5 parent: 2 - uid: 7778 components: - type: Transform - pos: -33.5,-21.5 + pos: -56.5,54.5 parent: 2 - uid: 7779 components: - type: Transform - pos: -24.5,-0.5 + pos: -56.5,55.5 parent: 2 -- proto: BannerSyndicate - entities: - uid: 7780 components: - type: Transform - pos: -58.5,49.5 + pos: -57.5,54.5 parent: 2 - uid: 7781 components: - type: Transform - pos: -118.5,34.5 + pos: -56.5,51.5 parent: 2 - uid: 7782 components: - type: Transform - pos: 29.5,51.5 + pos: -56.5,50.5 parent: 2 - uid: 7783 components: - type: Transform - pos: 29.5,54.5 + pos: -90.5,27.5 parent: 2 -- proto: BarberScissors - entities: - uid: 7784 components: - type: Transform - pos: -10.344313,34.624786 + pos: -88.5,27.5 parent: 2 - uid: 7785 components: - type: Transform - pos: -9.963448,34.560623 + pos: 58.5,26.5 parent: 2 -- proto: Barricade - entities: - uid: 7786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,25.5 + pos: 58.5,25.5 parent: 2 - uid: 7787 components: - type: Transform - pos: 41.5,-37.5 + pos: -53.5,-15.5 parent: 2 - uid: 7788 components: - type: Transform - pos: 43.5,-43.5 + pos: -53.5,-16.5 parent: 2 - uid: 7789 components: - type: Transform - pos: 37.5,-43.5 + pos: -53.5,-14.5 parent: 2 - uid: 7790 components: - type: Transform - pos: 38.5,-38.5 + pos: -53.5,-13.5 parent: 2 - uid: 7791 components: - type: Transform - pos: 43.5,-44.5 + pos: -53.5,-12.5 parent: 2 - uid: 7792 components: - type: Transform - pos: 38.5,-43.5 + pos: -52.5,-15.5 parent: 2 - uid: 7793 components: - type: Transform - pos: 38.5,-39.5 + pos: -54.5,-12.5 parent: 2 - uid: 7794 components: - type: Transform - pos: 40.5,-42.5 + pos: -54.5,-10.5 parent: 2 - uid: 7795 components: - type: Transform - pos: 37.5,-42.5 + pos: -54.5,-9.5 parent: 2 - uid: 7796 components: - type: Transform - pos: 36.5,-42.5 + pos: -54.5,-11.5 parent: 2 - uid: 7797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-41.5 + pos: -55.5,-11.5 parent: 2 - uid: 7798 components: - type: Transform - pos: 42.5,-43.5 + pos: -55.5,-10.5 parent: 2 - uid: 7799 components: - type: Transform - pos: 41.5,-40.5 + pos: -71.5,17.5 parent: 2 - uid: 7800 components: - type: Transform - pos: 37.5,-29.5 + pos: -95.5,49.5 parent: 2 - uid: 7801 components: - type: Transform - pos: 10.5,60.5 + pos: -95.5,51.5 parent: 2 - uid: 7802 components: - type: Transform - pos: 25.5,56.5 + pos: -96.5,49.5 parent: 2 - uid: 7803 components: - type: Transform - pos: 28.5,59.5 + pos: -96.5,50.5 parent: 2 - uid: 7804 components: - type: Transform - pos: 25.5,52.5 + pos: -95.5,50.5 parent: 2 - uid: 7805 components: - type: Transform - pos: 26.5,57.5 + pos: -96.5,51.5 parent: 2 - uid: 7806 components: - type: Transform - pos: 27.5,58.5 + pos: -94.5,52.5 parent: 2 - uid: 7807 components: - type: Transform - pos: 25.5,58.5 + pos: -93.5,52.5 parent: 2 - uid: 7808 components: - type: Transform - pos: 10.5,56.5 + pos: -96.5,46.5 parent: 2 - uid: 7809 components: - type: Transform - pos: 7.5,56.5 + pos: -96.5,47.5 parent: 2 - uid: 7810 components: - type: Transform - pos: 16.5,56.5 + pos: -97.5,46.5 parent: 2 - uid: 7811 components: - type: Transform - pos: 7.5,58.5 + pos: -97.5,47.5 parent: 2 - uid: 7812 components: - type: Transform - pos: 18.5,60.5 + pos: -97.5,48.5 parent: 2 - uid: 7813 components: - type: Transform - pos: 19.5,61.5 + pos: -96.5,48.5 parent: 2 - uid: 7814 components: - type: Transform - pos: 17.5,60.5 + pos: -97.5,49.5 parent: 2 - uid: 7815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,57.5 + pos: -98.5,44.5 parent: 2 - uid: 7816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,57.5 + pos: -98.5,46.5 parent: 2 - uid: 7817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,58.5 + pos: -98.5,47.5 parent: 2 - uid: 7818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,51.5 + pos: -98.5,45.5 parent: 2 - uid: 7819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,53.5 + pos: -99.5,44.5 parent: 2 - uid: 7820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,57.5 + pos: -99.5,46.5 parent: 2 - uid: 7821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,64.5 + pos: -99.5,45.5 parent: 2 - uid: 7822 components: - type: Transform - pos: 20.5,52.5 + pos: -97.5,45.5 parent: 2 - uid: 7823 components: - type: Transform - pos: 18.5,63.5 + pos: -100.5,43.5 parent: 2 - uid: 7824 components: - type: Transform - pos: 21.5,61.5 + pos: -100.5,45.5 parent: 2 - uid: 7825 components: - type: Transform - pos: 19.5,64.5 + pos: -100.5,44.5 parent: 2 - uid: 7826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,37.5 + pos: -101.5,43.5 parent: 2 - uid: 7827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,38.5 + pos: -101.5,44.5 parent: 2 - uid: 7828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,36.5 + pos: -101.5,45.5 parent: 2 - uid: 7829 components: - type: Transform - pos: 52.5,45.5 + pos: -102.5,44.5 parent: 2 - uid: 7830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,45.5 + pos: -102.5,42.5 parent: 2 - uid: 7831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,45.5 + pos: -102.5,43.5 parent: 2 - uid: 7832 components: - type: Transform - pos: -44.5,31.5 + pos: -101.5,42.5 parent: 2 - uid: 7833 components: - type: Transform - pos: 50.5,46.5 + pos: -105.5,51.5 parent: 2 - uid: 7834 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-40.5 + pos: -105.5,50.5 parent: 2 - uid: 7835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,32.5 + pos: -105.5,49.5 parent: 2 - uid: 7836 components: - type: Transform - pos: 64.5,30.5 + pos: -105.5,48.5 parent: 2 - uid: 7837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,33.5 + pos: -105.5,46.5 parent: 2 - uid: 7838 components: - type: Transform - pos: -68.5,47.5 + pos: -105.5,47.5 parent: 2 - uid: 7839 components: - type: Transform - pos: -69.5,47.5 + pos: -106.5,51.5 parent: 2 - uid: 7840 components: - type: Transform - pos: -60.5,-16.5 + pos: -106.5,50.5 parent: 2 - uid: 7841 components: - type: Transform - pos: 89.5,3.5 + pos: -106.5,49.5 parent: 2 - uid: 7842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-0.5 + pos: -106.5,48.5 parent: 2 - uid: 7843 components: - type: Transform - pos: -54.5,-27.5 + pos: -106.5,47.5 parent: 2 - uid: 7844 components: - type: Transform - pos: -117.5,33.5 + pos: -106.5,46.5 parent: 2 - uid: 7845 components: - type: Transform - pos: -104.5,36.5 + pos: -107.5,51.5 parent: 2 - uid: 7846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,45.5 + pos: -107.5,50.5 parent: 2 - uid: 7847 components: - type: Transform - pos: -136.5,3.5 + pos: -107.5,49.5 parent: 2 - uid: 7848 components: - type: Transform - pos: -132.5,-11.5 + pos: -107.5,47.5 parent: 2 - uid: 7849 components: - type: Transform - pos: -32.5,47.5 + pos: -107.5,48.5 parent: 2 - uid: 7850 components: - type: Transform - pos: 11.5,59.5 - parent: 2 - - uid: 15637 - components: - - type: Transform - pos: 12.5,-29.5 + pos: -108.5,51.5 parent: 2 - - uid: 40249 - components: - - type: Transform - pos: 51.5,58.5 - parent: 40203 - - uid: 40250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,70.5 - parent: 40203 - - uid: 40251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,30.5 - parent: 40203 - - uid: 40252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,26.5 - parent: 40203 - - uid: 40253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,33.5 - parent: 40203 - - uid: 40254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,29.5 - parent: 40203 - - uid: 40255 - components: - - type: Transform - pos: 64.5,40.5 - parent: 40203 - - uid: 40256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,28.5 - parent: 40203 - - uid: 40257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,24.5 - parent: 40203 - - uid: 40258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,35.5 - parent: 40203 - - uid: 40259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,31.5 - parent: 40203 - - uid: 40260 - components: - - type: Transform - pos: 38.5,66.5 - parent: 40203 -- proto: BarricadeBlock - entities: - uid: 7851 components: - type: Transform - pos: 46.5,-19.5 + pos: -107.5,46.5 parent: 2 - uid: 7852 components: - type: Transform - pos: 41.5,-37.5 + pos: -108.5,50.5 parent: 2 - uid: 7853 components: - type: Transform - pos: 39.5,-37.5 + pos: -108.5,48.5 parent: 2 - uid: 7854 components: - type: Transform - pos: 37.5,-44.5 + pos: -108.5,49.5 parent: 2 - uid: 7855 components: - type: Transform - pos: 24.5,55.5 + pos: -108.5,47.5 parent: 2 - uid: 7856 components: - type: Transform - pos: 18.5,59.5 + pos: -108.5,46.5 parent: 2 - uid: 7857 components: - type: Transform - pos: 13.5,55.5 + pos: -109.5,51.5 parent: 2 - uid: 7858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,57.5 + pos: -109.5,50.5 parent: 2 - uid: 7859 components: - type: Transform - pos: -46.5,-10.5 + pos: -109.5,49.5 parent: 2 - uid: 7860 components: - type: Transform - pos: -59.5,43.5 + pos: -109.5,48.5 parent: 2 - uid: 7861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,42.5 + pos: -109.5,47.5 parent: 2 - uid: 7862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,5.5 + pos: -110.5,51.5 parent: 2 - uid: 7863 components: - type: Transform - pos: 86.5,-25.5 + pos: -110.5,50.5 parent: 2 - uid: 7864 components: - type: Transform - pos: 41.5,47.5 + pos: -109.5,46.5 parent: 2 - uid: 7865 components: - type: Transform - pos: -73.5,18.5 + pos: -110.5,49.5 parent: 2 - uid: 7866 components: - type: Transform - pos: 85.5,-5.5 + pos: -110.5,48.5 parent: 2 - uid: 7867 components: - type: Transform - pos: 58.5,32.5 + pos: -110.5,47.5 parent: 2 - uid: 7868 components: - type: Transform - pos: -54.5,-27.5 + pos: -110.5,46.5 parent: 2 - uid: 7869 components: - type: Transform - pos: -95.5,51.5 + pos: -111.5,51.5 parent: 2 - uid: 7870 components: - type: Transform - pos: -87.5,59.5 + pos: -111.5,50.5 parent: 2 - uid: 7871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,59.5 + pos: -111.5,49.5 parent: 2 - uid: 7872 components: - type: Transform - pos: -30.5,42.5 + pos: -111.5,48.5 parent: 2 - - uid: 40261 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,73.5 - parent: 40203 - - uid: 40262 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,67.5 - parent: 40203 - - uid: 40263 - components: - - type: Transform - pos: 63.5,76.5 - parent: 40203 - - uid: 40264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,75.5 - parent: 40203 - - uid: 40265 - components: - - type: Transform - pos: 34.5,28.5 - parent: 40203 - - uid: 40266 - components: - - type: Transform - pos: 43.5,67.5 - parent: 40203 -- proto: BarricadeDirectional - entities: - uid: 7873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,58.5 + pos: -111.5,47.5 parent: 2 - uid: 7874 components: - type: Transform - pos: -44.5,32.5 + pos: -111.5,46.5 parent: 2 - uid: 7875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-29.5 + pos: -112.5,51.5 parent: 2 - uid: 7876 components: - type: Transform - pos: -51.5,35.5 + pos: -65.5,-9.5 parent: 2 - uid: 7877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,35.5 + pos: -63.5,-9.5 parent: 2 - uid: 7878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,43.5 + pos: -112.5,48.5 parent: 2 - uid: 7879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,5.5 + pos: -112.5,47.5 parent: 2 - uid: 7880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 85.5,-25.5 + pos: -112.5,46.5 parent: 2 - uid: 7881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,36.5 + pos: -72.5,24.5 parent: 2 - uid: 7882 components: - type: Transform - pos: 6.5,56.5 + pos: -73.5,24.5 parent: 2 - uid: 7883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,56.5 + pos: -64.5,-9.5 parent: 2 - uid: 7884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,45.5 + pos: -113.5,47.5 parent: 2 - uid: 7885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,44.5 + pos: -113.5,46.5 parent: 2 - uid: 7886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,44.5 + pos: -114.5,51.5 parent: 2 - uid: 7887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,44.5 + pos: -114.5,47.5 parent: 2 - uid: 7888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,18.5 + pos: -114.5,46.5 parent: 2 - uid: 7889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,17.5 + pos: -66.5,-9.5 parent: 2 - uid: 7890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,64.5 + pos: -115.5,51.5 parent: 2 - uid: 7891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,32.5 + pos: -115.5,50.5 parent: 2 - uid: 7892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,30.5 + pos: -115.5,48.5 parent: 2 - uid: 7893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,47.5 + pos: -115.5,47.5 parent: 2 - uid: 7894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-17.5 + pos: -115.5,46.5 parent: 2 - uid: 7895 components: - type: Transform - pos: -75.5,58.5 + pos: -114.5,52.5 parent: 2 - uid: 7896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,54.5 + pos: -112.5,52.5 parent: 2 - uid: 7897 components: - type: Transform - pos: 19.5,52.5 + pos: -111.5,52.5 parent: 2 - uid: 7898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,52.5 + pos: -110.5,52.5 parent: 2 - uid: 7899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,58.5 + pos: -108.5,52.5 parent: 2 - uid: 7900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,58.5 + pos: -113.5,52.5 parent: 2 - uid: 7901 components: - type: Transform - pos: 9.5,58.5 + pos: -109.5,52.5 parent: 2 - uid: 7902 components: - type: Transform - pos: -54.5,-26.5 + pos: -107.5,52.5 parent: 2 - uid: 7903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,38.5 + pos: -106.5,52.5 parent: 2 - uid: 7904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,45.5 + pos: -107.5,53.5 parent: 2 - uid: 7905 components: - type: Transform - pos: -69.5,16.5 + pos: -108.5,53.5 parent: 2 - uid: 7906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,14.5 + pos: -109.5,53.5 parent: 2 - uid: 7907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,17.5 + pos: -110.5,53.5 parent: 2 - uid: 7908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,28.5 + pos: -111.5,53.5 parent: 2 - uid: 7909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,28.5 + pos: -112.5,53.5 parent: 2 - uid: 7910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,28.5 + pos: -109.5,54.5 parent: 2 - uid: 7911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -140.5,-3.5 + pos: -116.5,46.5 parent: 2 - uid: 7912 components: - type: Transform - pos: -87.5,60.5 + pos: -116.5,45.5 parent: 2 - uid: 7913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,58.5 + pos: -116.5,44.5 parent: 2 - - uid: 8366 + - uid: 7914 components: - type: Transform - pos: 16.5,-28.5 + pos: -116.5,43.5 parent: 2 - - uid: 15634 + - uid: 7915 components: - type: Transform - pos: 13.5,-28.5 + pos: -116.5,42.5 parent: 2 - - uid: 15643 + - uid: 7916 components: - type: Transform - pos: 15.5,-28.5 + pos: -116.5,41.5 parent: 2 - - uid: 24009 + - uid: 7917 components: - type: Transform - pos: 14.5,-28.5 + pos: -116.5,40.5 parent: 2 - - uid: 40267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,69.5 - parent: 40203 - - uid: 40268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,75.5 - parent: 40203 - - uid: 40269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,75.5 - parent: 40203 - - uid: 40270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,74.5 - parent: 40203 - - uid: 40271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,65.5 - parent: 40203 - - uid: 40272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,65.5 - parent: 40203 - - uid: 40273 - components: - - type: Transform - pos: 51.5,65.5 - parent: 40203 - - uid: 40274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,63.5 - parent: 40203 - - uid: 40275 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,52.5 - parent: 40203 - - uid: 40276 - components: - - type: Transform - pos: 36.5,65.5 - parent: 40203 - - uid: 40277 - components: - - type: Transform - pos: 69.5,71.5 - parent: 40203 - - uid: 40278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,71.5 - parent: 40203 -- proto: BarSign - entities: - - uid: 7914 + - uid: 7918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,21.5 + pos: -117.5,46.5 parent: 2 -- proto: BarSignAlcoholic - entities: - - uid: 7915 + - uid: 7919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,11.5 + pos: -117.5,45.5 parent: 2 -- proto: BarSpoon - entities: - - uid: 7916 + - uid: 7920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.55655,12.65694 + pos: -117.5,44.5 parent: 2 - - uid: 44993 + - uid: 7921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.508722,3.128951 - parent: 44970 -- proto: BaseBallBat - entities: - - uid: 7917 + pos: -117.5,42.5 + parent: 2 + - uid: 7922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.49264,-1.5160983 + pos: -117.5,43.5 parent: 2 - - uid: 7918 + - uid: 7923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.417473,-12.29352 + pos: -117.5,41.5 parent: 2 - - uid: 7919 + - uid: 7924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.69568,0.6326761 + pos: -117.5,40.5 parent: 2 - - uid: 7920 + - uid: 7925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.38337,-4.3371034 + pos: -115.5,45.5 parent: 2 - - uid: 40280 + - uid: 7926 components: - type: Transform - parent: 40279 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40284 + pos: -115.5,44.5 + parent: 2 + - uid: 7927 components: - type: Transform - parent: 40283 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BaseChemistryEmptyVial - entities: - - uid: 7921 + pos: -115.5,42.5 + parent: 2 + - uid: 7928 components: - type: Transform - pos: -4.469272,42.68606 + pos: -114.5,45.5 parent: 2 - - uid: 7922 + - uid: 7929 components: - type: Transform - pos: -4.610928,42.69104 + pos: -114.5,44.5 parent: 2 - - uid: 7923 + - uid: 7930 components: - type: Transform - pos: -4.3387656,42.69449 + pos: -114.5,43.5 parent: 2 - - uid: 7924 + - uid: 7931 components: - type: Transform - pos: -88.622665,55.732727 + pos: -114.5,42.5 parent: 2 - - uid: 7925 + - uid: 7932 components: - type: Transform - pos: -88.466415,55.810852 + pos: -113.5,45.5 parent: 2 - - uid: 7926 + - uid: 7933 components: - type: Transform - pos: -88.29454,55.842102 + pos: -113.5,44.5 parent: 2 -- proto: BaseComputer - entities: - - uid: 7927 + - uid: 7934 components: - - type: MetaData - desc: На нём установлен Линукс... Мерзость. - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,42.5 + pos: -113.5,43.5 parent: 2 - - uid: 40290 + - uid: 7935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,50.5 - parent: 40203 - - uid: 40291 + pos: -113.5,42.5 + parent: 2 + - uid: 7936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,59.5 - parent: 40203 - - uid: 40292 + pos: -112.5,45.5 + parent: 2 + - uid: 7937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,51.5 - parent: 40203 -- proto: BaseGasCondenser - entities: - - uid: 7928 + pos: -115.5,43.5 + parent: 2 + - uid: 7938 components: - type: Transform - pos: -12.5,-55.5 + pos: -112.5,44.5 parent: 2 - - uid: 7929 + - uid: 7939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,43.5 + pos: -112.5,42.5 parent: 2 -- proto: BaseSecretDoorAssembly - entities: - - uid: 7930 + - uid: 7940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,52.5 + pos: -112.5,43.5 parent: 2 -- proto: Basketball - entities: - - uid: 7931 + - uid: 7941 components: - type: Transform - pos: -123.53486,7.405521 + pos: -111.5,45.5 parent: 2 -- proto: BassGuitarInstrument - entities: - - uid: 7932 + - uid: 7942 components: - type: Transform - pos: 53.432663,-6.975881 + pos: -111.5,43.5 parent: 2 -- proto: BeachBall - entities: - - uid: 7934 + - uid: 7943 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Beaker - entities: + pos: -111.5,44.5 + parent: 2 - uid: 7944 components: - type: Transform - pos: 7.6055145,33.100613 + pos: -111.5,42.5 parent: 2 - uid: 7945 components: - type: Transform - pos: 43.57924,-45.40308 + pos: -110.5,45.5 parent: 2 - uid: 7946 components: - type: Transform - pos: -6.8848934,42.630035 + pos: -110.5,43.5 parent: 2 - uid: 7947 components: - type: Transform - pos: -88.090454,55.61201 + pos: -110.5,44.5 parent: 2 - - uid: 40293 - components: - - type: Transform - pos: 56.8386,26.811739 - parent: 40203 -- proto: Bed - entities: - uid: 7948 components: - type: Transform - pos: 55.5,13.5 + pos: -110.5,42.5 parent: 2 - uid: 7949 components: - type: Transform - pos: 64.5,12.5 + pos: -109.5,45.5 parent: 2 - uid: 7950 components: - type: Transform - pos: 49.5,11.5 + pos: -111.5,41.5 parent: 2 - uid: 7951 components: - type: Transform - pos: 48.5,22.5 + pos: -112.5,41.5 parent: 2 - uid: 7952 components: - type: Transform - pos: 29.5,6.5 + pos: -113.5,41.5 parent: 2 - uid: 7953 components: - type: Transform - pos: -13.5,-12.5 + pos: -114.5,41.5 parent: 2 - uid: 7954 components: - type: Transform - pos: -26.5,5.5 + pos: -115.5,41.5 parent: 2 - uid: 7955 components: - type: Transform - pos: 27.5,-57.5 + pos: -115.5,40.5 parent: 2 - uid: 7956 components: - type: Transform - pos: 37.5,-4.5 + pos: -118.5,40.5 parent: 2 - uid: 7957 components: - type: Transform - pos: 34.5,-12.5 + pos: -118.5,41.5 parent: 2 - uid: 7958 components: - type: Transform - pos: 34.5,-9.5 + pos: -118.5,43.5 parent: 2 - uid: 7959 components: - type: Transform - pos: 42.5,10.5 + pos: -118.5,42.5 parent: 2 - uid: 7960 components: - type: Transform - pos: 39.5,10.5 + pos: -118.5,45.5 parent: 2 - uid: 7961 components: - type: Transform - pos: 18.5,-8.5 + pos: -118.5,44.5 parent: 2 - uid: 7962 components: - type: Transform - pos: 8.5,-46.5 + pos: -117.5,48.5 parent: 2 - uid: 7963 components: - type: Transform - pos: 22.5,51.5 + pos: -116.5,48.5 parent: 2 - uid: 7964 components: - type: Transform - pos: -40.5,7.5 + pos: -117.5,47.5 parent: 2 - uid: 7965 components: - type: Transform - pos: -49.5,17.5 + pos: -116.5,47.5 parent: 2 - uid: 7966 components: - type: Transform - pos: -41.5,17.5 + pos: -104.5,49.5 parent: 2 - uid: 7967 components: - type: Transform - pos: -45.5,17.5 + pos: -104.5,48.5 parent: 2 +- proto: AtmosFixNitrogenMarker + entities: - uid: 7968 components: - type: Transform - pos: 78.5,-41.5 + pos: -24.5,-63.5 parent: 2 - uid: 7969 components: - type: Transform - pos: 88.5,-28.5 + pos: -23.5,-61.5 parent: 2 - uid: 7970 components: - type: Transform - pos: -59.5,54.5 + pos: -23.5,-62.5 parent: 2 - uid: 7971 components: - type: Transform - pos: -58.5,54.5 + pos: -23.5,-63.5 parent: 2 - uid: 7972 components: - type: Transform - pos: -52.5,16.5 + pos: -25.5,-63.5 parent: 2 - uid: 7973 components: - type: Transform - pos: 4.5,54.5 + pos: -25.5,-62.5 parent: 2 - uid: 7974 components: - type: Transform - pos: -15.5,62.5 + pos: -25.5,-61.5 parent: 2 - uid: 7975 components: - type: Transform - pos: 6.5,18.5 + pos: -24.5,-62.5 parent: 2 - uid: 7976 components: - type: Transform - pos: -41.5,-19.5 + pos: -24.5,-61.5 parent: 2 +- proto: AtmosFixOxygenMarker + entities: - uid: 7977 components: - type: Transform - pos: -23.5,22.5 + pos: -23.5,-57.5 parent: 2 - uid: 7978 components: - type: Transform - pos: 39.5,54.5 + pos: -23.5,-58.5 parent: 2 - uid: 7979 components: - type: Transform - pos: -49.5,63.5 + pos: -23.5,-59.5 parent: 2 - uid: 7980 components: - type: Transform - pos: -74.5,16.5 + pos: -24.5,-57.5 parent: 2 - uid: 7981 components: - type: Transform - pos: -74.5,14.5 + pos: -25.5,-57.5 parent: 2 - uid: 7982 components: - type: Transform - pos: -117.5,25.5 + pos: -24.5,-58.5 parent: 2 - uid: 7983 components: - type: Transform - pos: -117.5,21.5 + pos: -25.5,-58.5 parent: 2 - uid: 7984 components: - type: Transform - pos: -117.5,17.5 + pos: -25.5,-59.5 parent: 2 - uid: 7985 components: - type: Transform - pos: -117.5,19.5 + pos: -24.5,-59.5 parent: 2 - uid: 7986 components: - type: Transform - pos: -117.5,23.5 + rot: -1.5707963267948966 rad + pos: -97.5,23.5 parent: 2 - - uid: 40294 - components: - - type: Transform - pos: 59.5,79.5 - parent: 40203 - - uid: 40295 - components: - - type: Transform - pos: 68.5,79.5 - parent: 40203 - - uid: 40296 - components: - - type: Transform - pos: 65.5,79.5 - parent: 40203 - - uid: 40297 - components: - - type: Transform - pos: 62.5,79.5 - parent: 40203 - - uid: 40298 - components: - - type: Transform - pos: 75.5,77.5 - parent: 40203 - - uid: 40299 - components: - - type: Transform - pos: 44.5,23.5 - parent: 40203 - - uid: 40300 - components: - - type: Transform - pos: 44.5,28.5 - parent: 40203 - - uid: 40301 - components: - - type: Transform - pos: 42.5,28.5 - parent: 40203 - - uid: 40302 - components: - - type: Transform - pos: 46.5,23.5 - parent: 40203 - - uid: 40303 - components: - - type: Transform - pos: 68.5,39.5 - parent: 40203 - - uid: 40304 - components: - - type: Transform - pos: 37.5,37.5 - parent: 40203 - - uid: 40305 - components: - - type: Transform - pos: 38.5,37.5 - parent: 40203 - - uid: 40306 - components: - - type: Transform - pos: 80.5,32.5 - parent: 40203 - - uid: 40307 + - uid: 40643 components: - type: Transform - pos: 75.5,25.5 - parent: 40203 - - uid: 44994 + pos: 63.5,63.5 + parent: 40599 + - uid: 40644 components: - type: Transform - pos: 7.5,9.5 - parent: 44970 -- proto: BedsheetBlack + pos: 64.5,63.5 + parent: 40599 +- proto: AtmosFixPlasmaMarker entities: - uid: 7987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,6.5 + pos: -15.5,-68.5 parent: 2 - uid: 7988 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-19.5 + rot: -1.5707963267948966 rad + pos: -15.5,-69.5 parent: 2 - - uid: 40308 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.427826,23.512056 - parent: 40203 -- proto: BedsheetBrigmedic - entities: - uid: 7989 components: - type: Transform - pos: -52.5,16.5 + rot: -1.5707963267948966 rad + pos: -15.5,-70.5 parent: 2 - uid: 7990 components: - type: Transform - pos: -74.5,16.5 + rot: -1.5707963267948966 rad + pos: -14.5,-68.5 parent: 2 -- proto: BedsheetBrown - entities: - uid: 7991 components: - type: Transform - pos: 48.5,22.5 + rot: -1.5707963267948966 rad + pos: -14.5,-69.5 parent: 2 - uid: 7992 components: - type: Transform - pos: -26.5,5.5 + rot: -1.5707963267948966 rad + pos: -14.5,-70.5 parent: 2 - uid: 7993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.363357,34.665207 + rot: -1.5707963267948966 rad + pos: -13.5,-68.5 parent: 2 -- proto: BedsheetCaptain - entities: - uid: 7994 components: - type: Transform - pos: 18.5,-8.5 + rot: -1.5707963267948966 rad + pos: -13.5,-69.5 parent: 2 -- proto: BedsheetCE - entities: - uid: 7995 components: - type: Transform - pos: 8.5,-46.5 + rot: -1.5707963267948966 rad + pos: -13.5,-70.5 parent: 2 -- proto: BedsheetClown + - uid: 40645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,61.5 + parent: 40599 + - uid: 40646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,61.5 + parent: 40599 +- proto: Autolathe entities: - uid: 7996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,11.5 + pos: -6.5,-38.5 parent: 2 -- proto: BedsheetCMO - entities: - uid: 7997 components: - type: Transform - pos: -15.5,62.5 + pos: 27.5,-9.5 parent: 2 -- proto: BedsheetCosmos - entities: - uid: 7998 components: - type: Transform - pos: 55.5,13.5 + pos: 30.5,-42.5 parent: 2 - - uid: 40309 - components: - - type: Transform - pos: 80.5,32.5 - parent: 40203 -- proto: BedsheetGreen - entities: - uid: 7999 components: - type: Transform - pos: 9.583846,-36.36953 + pos: 19.5,-32.5 parent: 2 - - uid: 40310 - components: - - type: Transform - pos: 75.5,25.5 - parent: 40203 -- proto: BedsheetHOP +- proto: AutolatheMachineCircuitboard entities: - uid: 8000 components: - type: Transform - pos: -13.5,-12.5 + rot: 3.141592653589793 rad + pos: 18.515812,4.3300877 parent: 2 -- proto: BedsheetHOS +- proto: BackgammonBoard entities: - uid: 8001 components: - type: Transform - pos: -40.5,7.5 + pos: 22.519558,48.63322 parent: 2 -- proto: BedsheetMedical - entities: - uid: 8002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,51.5 + pos: -98.44138,2.1198368 parent: 2 - uid: 8003 components: - type: Transform - pos: -52.5,13.5 + pos: -31.46262,29.587063 parent: 2 +- proto: BalloonElite + entities: - uid: 8004 components: - type: Transform - pos: -52.5,12.5 + pos: -57.487144,55.403725 parent: 2 + - type: Foldable + folded: False + - type: RandomWalk + maxStepCooldown: 3 + minStepCooldown: 1 + maxSpeed: 5 + minSpeed: 3 +- proto: BananaPhoneInstrument + entities: - uid: 8005 components: - type: Transform - pos: -16.5,49.5 + pos: 51.64417,12.640625 parent: 2 +- proto: BannerEngineering + entities: - uid: 8006 components: - type: Transform - pos: -14.5,53.5 + pos: -8.5,-40.5 parent: 2 - uid: 8007 components: - type: Transform - pos: -16.5,52.5 + pos: -10.5,-40.5 parent: 2 +- proto: BannerMedical + entities: - uid: 8008 components: - type: Transform - pos: -16.5,50.5 + pos: -2.5,34.5 parent: 2 - uid: 8009 components: - type: Transform - pos: -16.5,53.5 + pos: -0.5,34.5 parent: 2 +- proto: BannerNanotrasen + entities: - uid: 8010 components: - type: Transform - pos: -14.5,52.5 + pos: 0.5,-2.5 parent: 2 - uid: 8011 components: - type: Transform - pos: -14.5,50.5 + pos: 4.5,-2.5 parent: 2 +- proto: BannerScience + entities: - uid: 8012 components: - type: Transform - pos: -14.5,49.5 + pos: 26.5,-26.5 parent: 2 - uid: 8013 components: - type: Transform - pos: 4.5,54.5 + pos: 28.5,-26.5 parent: 2 +- proto: BannerSecurity + entities: - uid: 8014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,4.5 + pos: -19.5,-13.5 parent: 2 - uid: 8015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,50.5 + pos: -19.5,-21.5 parent: 2 - uid: 8016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,52.5 + pos: -33.5,-21.5 parent: 2 -- proto: BedsheetMime - entities: - uid: 8017 components: - type: Transform - pos: 64.5,12.5 + pos: -24.5,-0.5 parent: 2 -- proto: BedsheetOrange +- proto: BannerSyndicate entities: - uid: 8018 components: - type: Transform - pos: -41.5,17.5 + pos: 29.5,51.5 parent: 2 - uid: 8019 components: - type: Transform - pos: -45.5,17.5 + pos: 29.5,54.5 parent: 2 - uid: 8020 components: - type: Transform - pos: -49.5,17.5 + pos: -57.5,53.5 parent: 2 +- proto: BarberScissors + entities: - uid: 8021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,18.5 + pos: -10.344313,34.624786 parent: 2 - uid: 8022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,25.5 + pos: -9.963448,34.560623 parent: 2 +- proto: Barricade + entities: - uid: 8023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,21.5 + rot: -1.5707963267948966 rad + pos: -86.5,25.5 parent: 2 - uid: 8024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,17.5 + pos: 41.5,-37.5 parent: 2 - uid: 8025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,23.5 + pos: 43.5,-43.5 parent: 2 - uid: 8026 components: - type: Transform - pos: -117.5,19.5 + pos: 37.5,-43.5 parent: 2 -- proto: BedsheetPurple - entities: - uid: 8027 components: - type: Transform - pos: -74.5,14.5 + pos: 38.5,-38.5 parent: 2 - - uid: 44995 - components: - - type: Transform - pos: 7.5,9.5 - parent: 44970 -- proto: BedsheetQM - entities: - uid: 8028 components: - type: Transform - pos: 78.5,-41.5 + pos: 43.5,-44.5 parent: 2 -- proto: BedsheetRD - entities: - uid: 8029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-57.5 + pos: 38.5,-43.5 parent: 2 -- proto: BedsheetRed - entities: - uid: 8030 components: - type: Transform - pos: 9.755721,-36.166405 + pos: 38.5,-39.5 parent: 2 - uid: 8031 components: - type: Transform - pos: -23.5,22.5 + pos: 40.5,-42.5 parent: 2 -- proto: BedsheetSpawner - entities: - uid: 8032 components: - type: Transform - pos: 37.5,-4.5 + pos: 37.5,-42.5 parent: 2 - uid: 8033 components: - type: Transform - pos: 34.5,-12.5 + pos: 36.5,-42.5 parent: 2 - uid: 8034 components: - type: Transform - pos: 34.5,-9.5 + rot: -1.5707963267948966 rad + pos: 40.5,-41.5 parent: 2 - uid: 8035 components: - type: Transform - pos: 39.5,10.5 + pos: 42.5,-43.5 parent: 2 - uid: 8036 components: - type: Transform - pos: 42.5,10.5 + pos: 41.5,-40.5 parent: 2 - uid: 8037 components: - type: Transform - pos: -59.5,54.5 + pos: 37.5,-29.5 parent: 2 - uid: 8038 components: - type: Transform - pos: -49.5,63.5 + pos: 10.5,60.5 parent: 2 - - uid: 40311 + - uid: 8039 components: - type: Transform - pos: 62.5,79.5 - parent: 40203 - - uid: 40312 + pos: 25.5,52.5 + parent: 2 + - uid: 8040 components: - type: Transform - pos: 68.5,79.5 - parent: 40203 - - uid: 40313 + pos: 25.5,58.5 + parent: 2 + - uid: 8041 components: - type: Transform - pos: 65.5,79.5 - parent: 40203 - - uid: 40314 + pos: 7.5,56.5 + parent: 2 + - uid: 8042 components: - type: Transform - pos: 59.5,79.5 - parent: 40203 - - uid: 40315 + pos: 16.5,56.5 + parent: 2 + - uid: 8043 components: - type: Transform - pos: 75.5,77.5 - parent: 40203 - - uid: 40316 + pos: 7.5,58.5 + parent: 2 + - uid: 8044 components: - type: Transform - pos: 42.5,28.5 - parent: 40203 - - uid: 40317 + pos: 18.5,60.5 + parent: 2 + - uid: 8045 components: - type: Transform - pos: 44.5,28.5 - parent: 40203 - - uid: 40318 + pos: 19.5,61.5 + parent: 2 + - uid: 8046 components: - type: Transform - pos: 44.5,23.5 - parent: 40203 -- proto: BedsheetSyndie - entities: - - uid: 8039 + pos: 17.5,60.5 + parent: 2 + - uid: 8047 components: - type: Transform - pos: 88.5,-28.5 + rot: -1.5707963267948966 rad + pos: 21.5,58.5 parent: 2 - - uid: 8040 - components: - - type: Transform - pos: -58.5,54.5 - parent: 2 -- proto: BedsheetWhite - entities: - - uid: 8041 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.363357,34.930832 - parent: 2 -- proto: BedsheetWiz - entities: - - uid: 8042 - components: - - type: Transform - pos: 39.5,54.5 - parent: 2 -- proto: BenchBlueComfy - entities: - - uid: 8043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,49.5 - parent: 2 - - uid: 44996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 44970 - - uid: 44997 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,11.5 - parent: 44970 - - uid: 44998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 44970 -- proto: BenchComfy - entities: - - uid: 8044 - components: - - type: Transform - pos: 4.5,-53.5 - parent: 2 - - uid: 8045 - components: - - type: Transform - pos: 5.5,-53.5 - parent: 2 - - uid: 44999 - components: - - type: Transform - pos: 0.5,9.5 - parent: 44970 - - uid: 45000 - components: - - type: Transform - pos: -0.5,9.5 - parent: 44970 - - uid: 45001 - components: - - type: Transform - pos: -1.5,9.5 - parent: 44970 -- proto: BenchRedComfy - entities: - - uid: 45002 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,11.5 - parent: 44970 - - uid: 45003 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 44970 - - uid: 45004 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 44970 -- proto: Bible - entities: - - uid: 8046 - components: - - type: Transform - pos: 26.520212,9.464598 - parent: 2 -- proto: BikeHornInstrument - entities: - - uid: 8047 + - uid: 8048 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.771782,12.337828 - parent: 2 -- proto: BiomassReclaimer - entities: - - uid: 8048 - components: - - type: Transform - pos: -18.5,42.5 + pos: 18.5,51.5 parent: 2 -- proto: BlackKnight - entities: - uid: 8049 components: - - type: MetaData - desc: > - ​​​Ты правда хочешь, чтобы я сказал правду о тебе? Знать самого себя, значит отвечать за свои поступки. Совсем недавно ты натворил немало бед... - name: Дон Жуан - type: Transform - pos: -70.412544,-3.4028215 + rot: -1.5707963267948966 rad + pos: 14.5,53.5 parent: 2 -- proto: BlastDoor - entities: - uid: 8050 components: - type: Transform - pos: 37.5,-56.5 + rot: -1.5707963267948966 rad + pos: 14.5,64.5 parent: 2 - uid: 8051 components: - type: Transform - pos: 38.5,-56.5 + pos: 20.5,52.5 parent: 2 - uid: 8052 components: - type: Transform - pos: 36.5,-56.5 + pos: 18.5,63.5 parent: 2 - uid: 8053 components: - type: Transform - pos: -20.5,-55.5 + pos: 21.5,61.5 parent: 2 - uid: 8054 components: - type: Transform - pos: 36.5,-37.5 + pos: 19.5,64.5 parent: 2 - uid: 8055 components: - type: Transform - pos: 9.5,62.5 + rot: 3.141592653589793 rad + pos: -22.5,37.5 parent: 2 - uid: 8056 components: - type: Transform - pos: 13.5,62.5 + rot: 3.141592653589793 rad + pos: -22.5,38.5 parent: 2 - uid: 8057 components: - type: Transform - pos: 67.5,-54.5 + rot: 3.141592653589793 rad + pos: -49.5,36.5 parent: 2 - uid: 8058 components: - type: Transform - pos: 68.5,-54.5 + pos: 52.5,45.5 parent: 2 + - type: Airtight - uid: 8059 components: - type: Transform - pos: 69.5,-54.5 + rot: -1.5707963267948966 rad + pos: 50.5,45.5 parent: 2 + - type: Airtight - uid: 8060 components: - type: Transform - pos: -25.5,-47.5 + rot: -1.5707963267948966 rad + pos: 51.5,45.5 parent: 2 + - type: Airtight - uid: 8061 components: - type: Transform - pos: -24.5,-47.5 + pos: -44.5,31.5 parent: 2 - uid: 8062 components: - type: Transform - pos: -23.5,-47.5 + pos: 50.5,46.5 parent: 2 + - type: Airtight - uid: 8063 components: - type: Transform - pos: -38.5,-5.5 + rot: 3.141592653589793 rad + pos: 37.5,-40.5 parent: 2 - uid: 8064 components: - type: Transform - pos: -43.5,-5.5 + rot: -1.5707963267948966 rad + pos: 57.5,32.5 parent: 2 - uid: 8065 components: - type: Transform - pos: -46.5,-5.5 + pos: 64.5,30.5 parent: 2 - uid: 8066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,71.5 + rot: -1.5707963267948966 rad + pos: 58.5,33.5 parent: 2 - uid: 8067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,69.5 + pos: -68.5,47.5 parent: 2 - uid: 8068 components: - type: Transform - pos: -26.5,18.5 + pos: -69.5,47.5 parent: 2 - uid: 8069 components: - type: Transform - pos: -26.5,19.5 + pos: -60.5,-16.5 parent: 2 - uid: 8070 components: - type: Transform - pos: -26.5,20.5 + pos: 89.5,3.5 parent: 2 - uid: 8071 components: - type: Transform - pos: -14.5,5.5 + rot: -1.5707963267948966 rad + pos: 88.5,-0.5 parent: 2 - uid: 8072 components: - type: Transform - pos: -14.5,6.5 + pos: -104.5,36.5 parent: 2 - uid: 8073 components: - type: Transform rot: 1.5707963267948966 rad - pos: 95.5,-46.5 + pos: -78.5,45.5 parent: 2 - uid: 8074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-45.5 + pos: -136.5,3.5 parent: 2 - - uid: 40319 - components: - - type: Transform - pos: 53.5,46.5 - parent: 40203 - - uid: 40320 + - uid: 8075 components: - type: Transform - pos: 52.5,46.5 - parent: 40203 - - uid: 40321 + pos: -132.5,-11.5 + parent: 2 + - uid: 8076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,61.5 - parent: 40203 - - uid: 40322 + pos: -32.5,47.5 + parent: 2 + - uid: 8077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,62.5 - parent: 40203 - - uid: 40323 + pos: 11.5,59.5 + parent: 2 + - uid: 8078 components: - type: Transform - pos: 51.5,46.5 - parent: 40203 - - uid: 40324 + pos: 12.5,-29.5 + parent: 2 + - uid: 8079 components: - type: Transform - pos: 58.5,50.5 - parent: 40203 - - uid: 40325 + pos: -73.5,18.5 + parent: 2 + - uid: 40647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,59.5 - parent: 40203 - - uid: 40326 + pos: 51.5,58.5 + parent: 40599 + - uid: 40648 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,56.5 - parent: 40203 - - uid: 40327 - components: - - type: Transform - pos: 70.5,51.5 - parent: 40203 - - uid: 40328 + pos: 30.5,30.5 + parent: 40599 + - uid: 40649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,58.5 - parent: 40203 - - uid: 40329 + pos: 32.5,26.5 + parent: 40599 + - uid: 40650 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,58.5 - parent: 40203 - - uid: 40330 - components: - - type: Transform - pos: 47.5,61.5 - parent: 40203 - - uid: 40331 + pos: 41.5,33.5 + parent: 40599 + - uid: 40651 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,58.5 - parent: 40203 - - uid: 40332 - components: - - type: Transform - pos: 47.5,60.5 - parent: 40203 - - uid: 40333 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,60.5 - parent: 40203 - - uid: 40334 - components: - - type: Transform - pos: 47.5,62.5 - parent: 40203 - - uid: 40335 - components: - - type: Transform - pos: 59.5,50.5 - parent: 40203 - - uid: 40336 - components: - - type: Transform - pos: 60.5,50.5 - parent: 40203 - - uid: 40337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,52.5 - parent: 40203 - - uid: 40338 - components: - - type: Transform - pos: 72.5,57.5 - parent: 40203 - - uid: 40339 - components: - - type: Transform - pos: 65.5,67.5 - parent: 40203 - - uid: 40340 + pos: 42.5,29.5 + parent: 40599 + - uid: 40652 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,75.5 - parent: 40203 - - uid: 40341 + pos: 64.5,40.5 + parent: 40599 + - uid: 40653 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,78.5 - parent: 40203 - - uid: 40342 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,55.5 - parent: 40203 - - uid: 40343 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,56.5 - parent: 40203 -- proto: BlastDoorFrame - entities: - - uid: 8075 + pos: 47.5,28.5 + parent: 40599 + - uid: 40654 components: - type: Transform - anchored: True - pos: 40.5,-37.5 - parent: 2 - - uid: 8076 + rot: 1.5707963267948966 rad + pos: 72.5,24.5 + parent: 40599 + - uid: 40655 components: - type: Transform - anchored: True - pos: 103.5,-46.5 - parent: 2 - - uid: 8077 + rot: 1.5707963267948966 rad + pos: 81.5,35.5 + parent: 40599 + - uid: 40656 components: - type: Transform - anchored: True - pos: 95.5,-45.5 - parent: 2 - - uid: 40344 + rot: 1.5707963267948966 rad + pos: 81.5,31.5 + parent: 40599 + - uid: 40657 components: - type: Transform - anchored: True - pos: 59.5,65.5 - parent: 40203 - - uid: 40345 + pos: 38.5,66.5 + parent: 40599 + - uid: 46945 components: - type: Transform - anchored: True - pos: 62.5,66.5 - parent: 40203 -- proto: BlastDoorOpen + pos: 6.5,-6.5 + parent: 46943 +- proto: BarricadeBlock entities: - - uid: 8078 - components: - - type: Transform - pos: -31.5,-2.5 - parent: 2 - - uid: 8079 - components: - - type: Transform - pos: -31.5,-4.5 - parent: 2 - uid: 8080 components: - type: Transform - pos: -26.5,-2.5 + pos: 46.5,-19.5 parent: 2 - uid: 8081 components: - type: Transform - pos: -26.5,-4.5 + pos: 41.5,-37.5 parent: 2 - uid: 8082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 + pos: 39.5,-37.5 parent: 2 - uid: 8083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,14.5 + pos: 37.5,-44.5 parent: 2 - uid: 8084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,14.5 + pos: 24.5,55.5 parent: 2 - uid: 8085 components: - type: Transform - pos: -114.5,20.5 + pos: 18.5,59.5 parent: 2 - uid: 8086 components: - type: Transform - pos: -114.5,24.5 + pos: 13.5,55.5 parent: 2 - uid: 8087 components: - type: Transform - pos: -114.5,16.5 + rot: -1.5707963267948966 rad + pos: 3.5,57.5 parent: 2 - uid: 8088 components: - type: Transform - pos: 10.5,-1.5 + pos: -46.5,-10.5 parent: 2 - uid: 8089 components: - type: Transform - pos: 13.5,0.5 + rot: -1.5707963267948966 rad + pos: -62.5,42.5 parent: 2 - uid: 8090 components: - type: Transform - pos: 13.5,1.5 + rot: 1.5707963267948966 rad + pos: 75.5,5.5 parent: 2 - uid: 8091 components: - type: Transform - pos: -8.5,0.5 + pos: 86.5,-25.5 parent: 2 - uid: 8092 components: - type: Transform - pos: -8.5,1.5 + pos: 85.5,-5.5 parent: 2 - uid: 8093 components: - type: Transform - pos: -5.5,-1.5 + pos: 58.5,32.5 parent: 2 - uid: 8094 components: - type: Transform - pos: -106.5,13.5 + rot: 3.141592653589793 rad + pos: -80.5,59.5 parent: 2 - uid: 8095 components: - type: Transform - pos: -105.5,13.5 + pos: -30.5,42.5 parent: 2 -- proto: BlockGameArcade - entities: - uid: 8096 components: - type: Transform - pos: 15.5,29.5 + pos: -72.5,18.5 parent: 2 - uid: 8097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-33.5 + pos: -74.5,19.5 parent: 2 - uid: 8098 components: - type: Transform - pos: 42.5,-31.5 + pos: -73.5,19.5 parent: 2 - uid: 8099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-32.5 + pos: -78.5,13.5 parent: 2 - uid: 8100 + components: + - type: Transform + pos: -78.5,19.5 + parent: 2 + - uid: 8101 components: - type: Transform rot: 1.5707963267948966 rad - pos: -110.5,4.5 + pos: -53.5,-13.5 parent: 2 -- proto: Bloodpack - entities: - - uid: 8102 + - uid: 40658 components: - type: Transform - parent: 8101 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40346 + rot: -1.5707963267948966 rad + pos: 32.5,73.5 + parent: 40599 + - uid: 40659 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.53585,59.53942 - parent: 40203 -- proto: BlueprintFulton - entities: - - uid: 40347 + pos: 55.5,67.5 + parent: 40599 + - uid: 40660 components: - type: Transform - rot: 1.3788101090755203 rad - pos: 55.475758,56.6203 - parent: 40203 -- proto: BluespaceBeaker - entities: - - uid: 40349 + pos: 63.5,76.5 + parent: 40599 + - uid: 40661 components: - type: Transform - parent: 40348 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BodyBagFolded + rot: 3.141592653589793 rad + pos: 52.5,75.5 + parent: 40599 + - uid: 40662 + components: + - type: Transform + pos: 34.5,28.5 + parent: 40599 + - uid: 40663 + components: + - type: Transform + pos: 43.5,67.5 + parent: 40599 +- proto: BarricadeDirectional entities: + - uid: 8102 + components: + - type: Transform + pos: 25.5,56.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,58.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-29.5 + parent: 2 - uid: 8106 components: - type: Transform - pos: 74.64151,-48.547718 + pos: -51.5,35.5 parent: 2 - uid: 8107 components: - type: Transform - pos: 74.57901,-48.516468 + rot: 3.141592653589793 rad + pos: -53.5,35.5 parent: 2 -- proto: Bonfire - entities: - uid: 8108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-14.5 + pos: 74.5,5.5 parent: 2 - uid: 8109 components: - type: Transform - pos: -63.5,53.5 + rot: 1.5707963267948966 rad + pos: 85.5,-25.5 parent: 2 - uid: 8110 components: - type: Transform - pos: -55.5,44.5 + rot: -1.5707963267948966 rad + pos: -51.5,36.5 parent: 2 - uid: 8111 components: - type: Transform - pos: -35.5,-54.5 + pos: 6.5,56.5 parent: 2 - uid: 8112 components: - type: Transform - pos: 7.5,52.5 + rot: 1.5707963267948966 rad + pos: 6.5,56.5 parent: 2 - uid: 8113 components: - type: Transform - pos: -79.5,3.5 + rot: 1.5707963267948966 rad + pos: 49.5,45.5 parent: 2 - uid: 8114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-28.5 + rot: 3.141592653589793 rad + pos: 52.5,44.5 parent: 2 - uid: 8115 components: - type: Transform - pos: -101.5,47.5 + rot: 3.141592653589793 rad + pos: 51.5,44.5 parent: 2 - uid: 8116 components: - type: Transform rot: 3.141592653589793 rad - pos: -89.5,27.5 + pos: 50.5,44.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,64.5 parent: 2 -- proto: BookAtmosAirAlarms - entities: - uid: 8118 components: - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookAurora - entities: - - uid: 8127 + rot: -1.5707963267948966 rad + pos: 59.5,32.5 + parent: 2 + - uid: 8119 components: - type: Transform - pos: -7.6703634,18.566603 + rot: 1.5707963267948966 rad + pos: 63.5,30.5 parent: 2 -- proto: BookBartendersManual - entities: - - uid: 8128 + - uid: 8120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.9664,21.602427 + pos: -70.5,47.5 parent: 2 - - uid: 8129 + - uid: 8121 components: - type: Transform - pos: -103.534546,7.627344 + rot: 3.141592653589793 rad + pos: -60.5,-17.5 parent: 2 - - uid: 8130 + - uid: 8122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.48176,21.614859 + rot: 3.141592653589793 rad + pos: 13.5,54.5 parent: 2 -- proto: BookBase - entities: - - uid: 8131 + - uid: 8123 components: - - type: MetaData - name: Карательная психиатрия - type: Transform - pos: -5.1924324,70.55311 + pos: 19.5,52.5 parent: 2 - - type: Paper - content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n- галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" - - uid: 45005 + - uid: 8124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,52.5 + parent: 2 + - uid: 8125 components: - - type: MetaData - name: книга отзывов - type: Transform rot: 3.141592653589793 rad - pos: -2.6589403,-2.419702 - parent: 44970 - - type: Paper - content: >- - Книга отзывов " - - - __________________________________________________________ - - Джо-Доун - 5 из 5. - - Крайне хорошие источники, помогают очень сильно против болей в спине. - - __________________________________________________________ - - Кирилл Блимпанченко - 4 из 5. - - Блааамп... - - __________________________________________________________ -- proto: BookBusido - entities: - - uid: 8119 + pos: 9.5,58.5 + parent: 2 + - uid: 8126 components: - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8132 + rot: 1.5707963267948966 rad + pos: 9.5,58.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: 9.5,58.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -79.5,45.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + pos: -69.5,16.5 + parent: 2 + - uid: 8130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,14.5 + parent: 2 + - uid: 8131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.64481,42.324806 + pos: -97.5,17.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,28.5 parent: 2 -- proto: BookChemicalCompendium - entities: - uid: 8133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.528511,38.619408 + rot: 3.141592653589793 rad + pos: -87.5,28.5 parent: 2 -- proto: BookDAM - entities: - uid: 8134 components: - type: Transform - pos: -30.603775,-42.403282 + rot: 3.141592653589793 rad + pos: -90.5,28.5 parent: 2 -- proto: BookEarth - entities: - uid: 8135 components: - type: Transform - pos: -3.5396852,20.361399 + rot: -1.5707963267948966 rad + pos: -140.5,-3.5 parent: 2 -- proto: BookHowToCookForFortySpaceman - entities: - uid: 8136 components: - type: Transform - pos: 29.51162,32.529366 + pos: 16.5,-28.5 parent: 2 - uid: 8137 components: - type: Transform - pos: -113.51274,9.532264 + pos: 13.5,-28.5 parent: 2 -- proto: BookHowToSurvive - entities: - uid: 8138 components: - type: Transform - pos: -7.5715055,19.074017 + pos: 15.5,-28.5 parent: 2 -- proto: BookJanitorTale - entities: - uid: 8139 components: - type: Transform - pos: -7.5402555,18.542767 + pos: 14.5,-28.5 parent: 2 -- proto: BookLeafLoversSecret - entities: - - uid: 8120 - components: - - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 8140 components: - type: Transform - pos: 7.470997,41.388527 + rot: -1.5707963267948966 rad + pos: -71.5,18.5 parent: 2 - uid: 8141 components: - type: Transform - pos: -103.49124,11.561365 + pos: -74.5,20.5 parent: 2 -- proto: BookMap - entities: - uid: 8142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.4928102,19.470774 + pos: -78.5,20.5 parent: 2 -- proto: BookMedicalOfficer - entities: - uid: 8143 components: - type: Transform - pos: -3.5709352,20.486399 + pos: -73.5,20.5 parent: 2 -- proto: BookMedicalReferenceBook - entities: - uid: 8144 components: - type: Transform - pos: -56.472412,17.594555 + rot: 3.141592653589793 rad + pos: -73.5,17.5 parent: 2 - uid: 8145 components: - type: Transform - pos: 3.5217957,43.586117 + rot: 1.5707963267948966 rad + pos: -79.5,13.5 parent: 2 - uid: 8146 components: - type: Transform - pos: -26.53267,54.551678 + rot: 3.141592653589793 rad + pos: -78.5,18.5 parent: 2 - uid: 8147 components: - type: Transform - pos: -104.511604,4.6345177 + rot: 1.5707963267948966 rad + pos: -74.5,18.5 parent: 2 -- proto: BookNames - entities: - uid: 8148 components: - type: Transform - pos: -7.7797384,18.610325 + rot: 3.141592653589793 rad + pos: -74.5,18.5 parent: 2 -- proto: BookNarsieLegend - entities: - - uid: 8121 + - uid: 40664 components: - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookNooc - entities: - - uid: 40356 + rot: 3.141592653589793 rad + pos: 62.5,75.5 + parent: 40599 + - uid: 40665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.578255,60.51876 - parent: 40203 -- proto: BookPetr - entities: - - uid: 8149 + rot: 3.141592653589793 rad + pos: 63.5,75.5 + parent: 40599 + - uid: 40666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.435703,13.576222 - parent: 2 -- proto: BookRandom - entities: - - uid: 8150 + rot: 3.141592653589793 rad + pos: 50.5,74.5 + parent: 40599 + - uid: 40667 components: - - type: MetaData - desc: Хотите чтобы ваши речи звучали таинственно и вселяли ужас? Прочитайте эту книгу! - name: Страшные заклинания на латыни в 3-х томах - type: Transform rot: 3.141592653589793 rad - pos: 27.96601,4.582797 - parent: 2 - - uid: 8151 + pos: 38.5,65.5 + parent: 40599 + - uid: 40668 components: - - type: MetaData - name: вскрытие тел для чайников - type: Transform rot: 1.5707963267948966 rad - pos: -22.436766,45.516586 - parent: 2 - - uid: 8152 + pos: 38.5,65.5 + parent: 40599 + - uid: 40669 components: - - type: MetaData - name: вскрытие тел для чайников - type: Transform - pos: -12.623554,43.605488 - parent: 2 -- proto: BookRandomStory - entities: - - uid: 8153 + pos: 51.5,65.5 + parent: 40599 + - uid: 40670 components: - type: Transform - pos: -8.495374,62.577507 - parent: 2 - - uid: 8154 + rot: 3.141592653589793 rad + pos: 50.5,63.5 + parent: 40599 + - uid: 40671 components: - type: Transform - rot: -1.0471975511965976 rad - pos: -23.495863,23.875908 - parent: 2 -- proto: BookScientistsGuidebook + rot: 3.141592653589793 rad + pos: 58.5,52.5 + parent: 40599 + - uid: 40672 + components: + - type: Transform + pos: 36.5,65.5 + parent: 40599 + - uid: 40673 + components: + - type: Transform + pos: 69.5,71.5 + parent: 40599 + - uid: 40674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,71.5 + parent: 40599 + - uid: 46946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 46943 +- proto: BarSign entities: - - uid: 8155 + - uid: 8149 components: - type: Transform - pos: -6.2752457,22.716452 + rot: -1.5707963267948966 rad + pos: 44.5,21.5 parent: 2 -- proto: BookSecurity +- proto: BarSignAlcoholic entities: - - uid: 8156 + - uid: 8150 components: - type: Transform - pos: -6.509035,22.602947 + rot: 1.5707963267948966 rad + pos: -111.5,11.5 parent: 2 -- proto: Bookshelf +- proto: BarSpoon entities: - - uid: 8157 + - uid: 8151 components: - type: Transform - pos: 6.5,-46.5 + rot: -1.5707963267948966 rad + pos: -107.55655,12.65694 parent: 2 - - uid: 8158 + - uid: 45378 components: - type: Transform - pos: 5.5,18.5 - parent: 2 - missingComponents: - - Occluder - - uid: 8159 + rot: -1.5707963267948966 rad + pos: 7.508722,3.128951 + parent: 45355 +- proto: BaseBallBat + entities: + - uid: 8152 components: - type: Transform - pos: -52.5,64.5 + rot: 3.141592653589793 rad + pos: 59.49264,-1.5160983 parent: 2 - - uid: 8160 + - uid: 8153 components: - type: Transform - pos: -52.5,65.5 + rot: 3.141592653589793 rad + pos: -46.417473,-12.29352 parent: 2 - - uid: 8161 + - uid: 8154 components: - type: Transform - pos: -115.5,25.5 + rot: 1.5707963267948966 rad + pos: 95.69568,0.6326761 parent: 2 - missingComponents: - - Occluder - - uid: 8162 + - uid: 40676 components: - type: Transform - pos: -115.5,21.5 - parent: 2 - missingComponents: - - Occluder - - uid: 8163 + parent: 40675 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40680 components: - type: Transform - pos: -115.5,17.5 - parent: 2 - missingComponents: - - Occluder - - uid: 8164 + parent: 40679 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BaseChemistryEmptyVial + entities: + - uid: 8155 components: - type: Transform - pos: -88.5,61.5 + pos: -4.469272,42.68606 parent: 2 - - uid: 8165 + - uid: 8156 components: - type: Transform - pos: -86.5,61.5 + pos: -4.610928,42.69104 parent: 2 - - uid: 8166 + - uid: 8157 components: - type: Transform - pos: -87.5,61.5 + pos: -4.3387656,42.69449 parent: 2 -- proto: BookshelfFilled +- proto: BaseComputer entities: - - uid: 8167 + - uid: 8158 components: + - type: MetaData + desc: На нём установлен Линукс... Мерзость. - type: Transform - pos: 6.5,-47.5 + rot: 3.141592653589793 rad + pos: -28.5,42.5 parent: 2 - - uid: 8168 + - uid: 40686 components: - type: Transform - pos: -9.5,-2.5 - parent: 2 - missingComponents: - - Occluder - - uid: 8169 + rot: 1.5707963267948966 rad + pos: 63.5,50.5 + parent: 40599 + - uid: 40687 components: - type: Transform - pos: -8.5,-2.5 - parent: 2 - missingComponents: - - Occluder - - uid: 8170 + rot: 3.141592653589793 rad + pos: 36.5,59.5 + parent: 40599 + - uid: 40688 components: - type: Transform - pos: 11.5,22.5 + rot: 3.141592653589793 rad + pos: 50.5,51.5 + parent: 40599 +- proto: BaseGasCondenser + entities: + - uid: 8159 + components: + - type: Transform + pos: -12.5,-55.5 parent: 2 - missingComponents: - - Occluder - - uid: 8171 + - uid: 8160 components: - type: Transform - pos: 6.5,62.5 + rot: 1.5707963267948966 rad + pos: -7.5,43.5 parent: 2 - missingComponents: - - Occluder - - uid: 8172 +- proto: Basketball + entities: + - uid: 8161 components: - type: Transform - pos: -3.5,22.5 + pos: -123.53486,7.405521 parent: 2 - missingComponents: - - Occluder - - uid: 8173 +- proto: BassGuitarInstrument + entities: + - uid: 8162 components: - type: Transform - pos: -4.5,19.5 + pos: 53.432663,-6.975881 parent: 2 - missingComponents: - - Occluder +- proto: BeachBall + entities: + - uid: 8164 + components: + - type: Transform + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Beaker + entities: - uid: 8174 components: - type: Transform - pos: -4.5,22.5 + pos: 7.6055145,33.100613 parent: 2 - missingComponents: - - Occluder - uid: 8175 components: - type: Transform - pos: -1.5,22.5 + pos: 43.57924,-45.40308 parent: 2 - missingComponents: - - Occluder - uid: 8176 components: - type: Transform - pos: -4.5,18.5 + pos: -6.8848934,42.630035 parent: 2 - missingComponents: - - Occluder + - uid: 40689 + components: + - type: Transform + pos: 56.8386,26.811739 + parent: 40599 +- proto: Bed + entities: - uid: 8177 components: - type: Transform - pos: -0.5,22.5 + pos: -79.5,18.5 parent: 2 - missingComponents: - - Occluder - uid: 8178 components: - type: Transform - pos: -4.5,20.5 + pos: 55.5,13.5 parent: 2 - missingComponents: - - Occluder - uid: 8179 components: - type: Transform - pos: -7.5,20.5 + pos: 64.5,12.5 parent: 2 - missingComponents: - - Occluder - uid: 8180 components: - type: Transform - pos: -5.5,22.5 + pos: 49.5,11.5 parent: 2 - missingComponents: - - Occluder - uid: 8181 components: - type: Transform - pos: -7.5,21.5 + pos: 48.5,22.5 parent: 2 - missingComponents: - - Occluder - uid: 8182 components: - type: Transform - pos: 12.5,22.5 + pos: -13.5,-12.5 parent: 2 - missingComponents: - - Occluder - uid: 8183 components: - type: Transform - pos: -10.5,59.5 + pos: -26.5,5.5 parent: 2 - missingComponents: - - Occluder - uid: 8184 components: - type: Transform - pos: -10.5,56.5 + pos: 27.5,-57.5 parent: 2 - missingComponents: - - Occluder - uid: 8185 components: - type: Transform - pos: -77.5,16.5 + pos: 37.5,-4.5 parent: 2 - uid: 8186 components: - type: Transform - pos: -78.5,16.5 + pos: 34.5,-12.5 parent: 2 - uid: 8187 components: - type: Transform - pos: -103.5,8.5 + pos: 34.5,-9.5 parent: 2 - missingComponents: - - Occluder - uid: 8188 components: - type: Transform - pos: -103.5,10.5 + pos: 42.5,10.5 parent: 2 - missingComponents: - - Occluder - uid: 8189 components: - type: Transform - pos: -103.5,9.5 + pos: 39.5,10.5 parent: 2 - missingComponents: - - Occluder - - uid: 40357 - components: - - type: Transform - pos: 79.5,32.5 - parent: 40203 - - uid: 40358 - components: - - type: Transform - pos: 75.5,75.5 - parent: 40203 - missingComponents: - - Occluder -- proto: BookSpaceEncyclopedia - entities: - - uid: 8122 - components: - - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 8190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.434834,-2.945673 + pos: 18.5,-8.5 parent: 2 -- proto: BookSpaceLaw - entities: - - uid: 8123 - components: - - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 8191 components: - type: Transform - pos: -21.466648,26.57753 + pos: 8.5,-46.5 parent: 2 -- proto: BookStationsAndAgents - entities: - uid: 8192 components: - type: Transform - pos: 1.6417177,20.05874 + pos: 22.5,51.5 parent: 2 - uid: 8193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.357918,24.47778 + pos: -40.5,7.5 parent: 2 -- proto: BookTemple - entities: - - uid: 8124 + - uid: 8194 components: - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookTheBookOfControl - entities: - - uid: 8125 + pos: -49.5,17.5 + parent: 2 + - uid: 8195 components: - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BookUmpor - entities: - - uid: 40359 + pos: -41.5,17.5 + parent: 2 + - uid: 8196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.62558,79.7487 - parent: 40203 -- proto: BookVitz - entities: - - uid: 40360 + pos: -45.5,17.5 + parent: 2 + - uid: 8197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.609955,77.54558 - parent: 40203 -- proto: BookWatched - entities: - - uid: 8126 + pos: 78.5,-41.5 + parent: 2 + - uid: 8198 components: - type: Transform - parent: 8117 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoozeDispenser - entities: - - uid: 8194 + pos: 88.5,-28.5 + parent: 2 + - uid: 8199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,20.5 + pos: -52.5,16.5 parent: 2 - - uid: 8195 + - uid: 8200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,11.5 + pos: 4.5,54.5 parent: 2 -- proto: BoozeDispenserEmpty - entities: - - uid: 8196 + - uid: 8201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,21.5 + pos: -15.5,62.5 parent: 2 - - uid: 45006 + - uid: 8202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,4.5 - parent: 44970 -- proto: BorgCharger - entities: - - uid: 8197 + pos: 6.5,18.5 + parent: 2 + - uid: 8203 components: - type: Transform - pos: 24.5,-38.5 + pos: -41.5,-19.5 parent: 2 - - uid: 8198 + - uid: 8204 components: - type: Transform - pos: 24.5,-36.5 + pos: -23.5,22.5 parent: 2 - - uid: 8199 + - uid: 8205 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-37.5 + pos: -49.5,63.5 parent: 2 - - uid: 8200 + - uid: 8206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 + pos: -117.5,25.5 parent: 2 -- proto: BoxBeaker - entities: - - uid: 8202 + - uid: 8207 components: - type: Transform - parent: 8201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxBeanbag - entities: + pos: -117.5,21.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: -117.5,17.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + pos: -117.5,19.5 + parent: 2 - uid: 8210 components: - type: Transform - pos: 45.449398,23.447855 + pos: -117.5,23.5 parent: 2 - uid: 8211 components: - type: Transform - pos: -36.467125,-6.3831277 + pos: -58.5,55.5 parent: 2 - uid: 8212 components: - type: Transform - pos: -36.4515,-6.4768777 + pos: -59.5,55.5 parent: 2 + - uid: 40690 + components: + - type: Transform + pos: 59.5,79.5 + parent: 40599 + - uid: 40691 + components: + - type: Transform + pos: 68.5,79.5 + parent: 40599 + - uid: 40692 + components: + - type: Transform + pos: 65.5,79.5 + parent: 40599 + - uid: 40693 + components: + - type: Transform + pos: 62.5,79.5 + parent: 40599 + - uid: 40694 + components: + - type: Transform + pos: 75.5,77.5 + parent: 40599 + - uid: 40695 + components: + - type: Transform + pos: 44.5,23.5 + parent: 40599 + - uid: 40696 + components: + - type: Transform + pos: 44.5,28.5 + parent: 40599 + - uid: 40697 + components: + - type: Transform + pos: 42.5,28.5 + parent: 40599 + - uid: 40698 + components: + - type: Transform + pos: 46.5,23.5 + parent: 40599 + - uid: 40699 + components: + - type: Transform + pos: 68.5,39.5 + parent: 40599 + - uid: 40700 + components: + - type: Transform + pos: 37.5,37.5 + parent: 40599 + - uid: 40701 + components: + - type: Transform + pos: 38.5,37.5 + parent: 40599 + - uid: 40702 + components: + - type: Transform + pos: 80.5,32.5 + parent: 40599 + - uid: 40703 + components: + - type: Transform + pos: 75.5,25.5 + parent: 40599 + - uid: 45379 + components: + - type: Transform + pos: 7.5,9.5 + parent: 45355 + - uid: 46947 + components: + - type: Transform + pos: -2.5,9.5 + parent: 46943 +- proto: BedsheetBlack + entities: - uid: 8213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.33562,9.771734 + rot: 3.141592653589793 rad + pos: -41.5,-19.5 + parent: 2 + - uid: 40704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.427826,23.512056 + parent: 40599 +- proto: BedsheetBrigmedic + entities: + - uid: 8214 + components: + - type: Transform + pos: -52.5,16.5 parent: 2 +- proto: BedsheetBrown + entities: - uid: 8215 components: - type: Transform - parent: 8214 - - type: Physics - canCollide: False - - uid: 45008 + pos: -79.5,18.5 + parent: 2 + - uid: 8216 components: - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxBodyBag + pos: 48.5,22.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: -26.5,5.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.363357,34.665207 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 8219 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 2 +- proto: BedsheetCE entities: - uid: 8220 components: - type: Transform - pos: -12.355973,43.63522 + pos: 8.5,-46.5 parent: 2 +- proto: BedsheetClown + entities: - uid: 8221 components: - type: Transform - pos: -56.51647,8.564518 + rot: -1.5707963267948966 rad + pos: 49.5,11.5 parent: 2 +- proto: BedsheetCMO + entities: - uid: 8222 components: - type: Transform - pos: -21.13811,57.520542 + pos: -15.5,62.5 parent: 2 +- proto: BedsheetCosmos + entities: - uid: 8223 components: - type: Transform - pos: 2.4998355,38.494568 + pos: 55.5,13.5 parent: 2 + - uid: 40705 + components: + - type: Transform + pos: 80.5,32.5 + parent: 40599 +- proto: BedsheetCult + entities: + - uid: 46948 + components: + - type: Transform + pos: -2.5,9.5 + parent: 46943 +- proto: BedsheetGreen + entities: - uid: 8224 components: - type: Transform - pos: 19.494806,22.52466 + pos: 9.583846,-36.36953 parent: 2 + - uid: 40706 + components: + - type: Transform + pos: 75.5,25.5 + parent: 40599 +- proto: BedsheetHOP + entities: - uid: 8225 components: - type: Transform - pos: -103.421036,4.802936 + pos: -13.5,-12.5 parent: 2 -- proto: BoxCandle +- proto: BedsheetHOS entities: - uid: 8226 components: - type: Transform - pos: 24.503378,15.564428 + pos: -40.5,7.5 parent: 2 -- proto: BoxCandleSmall +- proto: BedsheetMedical entities: - uid: 8227 components: - type: Transform - pos: 24.800253,15.548803 + rot: -1.5707963267948966 rad + pos: 22.5,51.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + pos: -52.5,13.5 parent: 2 -- proto: BoxCardboard - entities: - uid: 8229 components: - - type: MetaData - desc: Мой завтрак! Не трогать. - name: чей-то завтрак - type: Transform - parent: 8228 - - type: Storage - storedItems: - 8231: - position: 0,0 - _rotation: South - 8230: - position: 1,0 - _rotation: South - 8232: - position: 2,0 - _rotation: North - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 8231 - - 8230 - - 8232 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40361 + pos: -52.5,12.5 + parent: 2 + - uid: 8230 components: - type: Transform - rot: -0.8203047484373349 rad - pos: 72.24388,78.74391 - parent: 40203 -- proto: BoxCartridgeCap - entities: + pos: -16.5,49.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 - uid: 8234 components: - type: Transform - pos: -21.479862,-21.154022 + pos: -16.5,53.5 parent: 2 -- proto: BoxDarts - entities: - uid: 8235 components: - type: Transform - pos: 97.51395,-25.281971 + pos: -14.5,52.5 parent: 2 - uid: 8236 components: - type: Transform - pos: -30.440361,27.630081 + pos: -14.5,50.5 parent: 2 - uid: 8237 components: - type: Transform - pos: -24.309763,-9.985966 + pos: -14.5,49.5 parent: 2 -- proto: BoxEvidenceMarkers - entities: - uid: 8238 components: - type: Transform - pos: -23.478168,10.530624 + pos: 4.5,54.5 parent: 2 -- proto: BoxFolderBase - entities: - uid: 8239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.470516,-2.5518813 + rot: -1.5707963267948966 rad + pos: -105.5,4.5 parent: 2 - uid: 8240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.658016,-2.4268813 + rot: -1.5707963267948966 rad + pos: -18.5,50.5 parent: 2 -- proto: BoxFolderBlack - entities: - uid: 8241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.673156,44.614933 + pos: -18.5,52.5 parent: 2 - - type: Storage - storedItems: - 8242: - position: 0,0 - _rotation: South - 8243: - position: 1,0 - _rotation: South - 8244: - position: 2,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 8242 - - 8243 - - 8244 - - uid: 8245 +- proto: BedsheetMime + entities: + - uid: 8242 components: - type: Transform - pos: -32.38348,7.9108744 + pos: 64.5,12.5 parent: 2 - - uid: 8246 +- proto: BedsheetOrange + entities: + - uid: 8243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.518757,15.4776535 + pos: -41.5,17.5 parent: 2 - - uid: 40362 + - uid: 8244 components: - type: Transform - rot: 3.5255650890285457 rad - pos: 37.983856,59.592476 - parent: 40203 - - uid: 40363 + pos: -45.5,17.5 + parent: 2 + - uid: 8245 components: - type: Transform - rot: -1.7453292519943295 rad - pos: 53.59947,55.43544 - parent: 40203 - - uid: 45019 + pos: -49.5,17.5 + parent: 2 + - uid: 8246 components: - - type: MetaData - desc: Папка, заполненная совершенно секретными документами о гостях. - type: Transform - pos: 7.5982747,2.4317536 - parent: 44970 - - type: Storage - storedItems: - 45020: - position: 0,0 - _rotation: South - 45021: - position: 1,0 - _rotation: South - 45022: - position: 2,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 45020 - - 45021 - - 45022 -- proto: BoxFolderBlue - entities: + rot: -1.5707963267948966 rad + pos: 6.5,18.5 + parent: 2 - uid: 8247 components: - type: Transform - pos: 2.5475543,-46.484844 + rot: 1.5707963267948966 rad + pos: -117.5,25.5 parent: 2 - uid: 8248 components: - type: Transform - pos: -3.5970988,-11.507759 + rot: 1.5707963267948966 rad + pos: -117.5,21.5 parent: 2 - uid: 8249 components: - type: Transform - pos: -3.3891788,-11.397682 + rot: 1.5707963267948966 rad + pos: -117.5,17.5 parent: 2 - uid: 8250 components: - type: Transform - pos: -36.43305,-12.466925 + rot: -1.5707963267948966 rad + pos: -117.5,23.5 parent: 2 - uid: 8251 components: - type: Transform - pos: 9.274025,-9.481918 + pos: -117.5,19.5 parent: 2 +- proto: BedsheetPurple + entities: + - uid: 45380 + components: + - type: Transform + pos: 7.5,9.5 + parent: 45355 +- proto: BedsheetQM + entities: - uid: 8252 components: - type: Transform - pos: 9.53965,-9.294418 + pos: 78.5,-41.5 parent: 2 +- proto: BedsheetRD + entities: - uid: 8253 components: - type: Transform - pos: -29.859737,-20.393227 + rot: 3.141592653589793 rad + pos: 27.5,-57.5 parent: 2 +- proto: BedsheetRed + entities: - uid: 8254 components: - type: Transform - pos: -30.094112,-20.393227 + pos: 9.755721,-36.166405 parent: 2 - uid: 8255 components: - type: Transform - pos: -25.353035,-20.088942 + pos: -23.5,22.5 parent: 2 +- proto: BedsheetSpawner + entities: - uid: 8256 components: - type: Transform - pos: -25.603035,-20.057692 + pos: -59.5,55.5 parent: 2 -- proto: BoxFolderClipboard - entities: - uid: 8257 components: - type: Transform - pos: -4.0365763,70.56476 + pos: 37.5,-4.5 parent: 2 - uid: 8258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.3479357,-1.3597445 + pos: 34.5,-12.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + pos: 34.5,-9.5 parent: 2 -- proto: BoxFolderGreen - entities: - uid: 8260 components: - - type: MetaData - name: Секретные документы НТ - type: Transform - parent: 8259 - - type: Physics - canCollide: False - - type: UseDelay - delays: - default: - endTime: 42521.6574793 - startTime: 42520.6574793 - length: 1 - quickInsert: - length: 0.5 - storage: - endTime: 42520.6574793 - startTime: 42520.6574793 - - type: InsideEntityStorage + pos: 39.5,10.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 - uid: 8262 components: - type: Transform - pos: -7.1340055,19.417767 + pos: -49.5,63.5 parent: 2 -- proto: BoxFolderGrey + - uid: 40707 + components: + - type: Transform + pos: 62.5,79.5 + parent: 40599 + - uid: 40708 + components: + - type: Transform + pos: 68.5,79.5 + parent: 40599 + - uid: 40709 + components: + - type: Transform + pos: 65.5,79.5 + parent: 40599 + - uid: 40710 + components: + - type: Transform + pos: 59.5,79.5 + parent: 40599 + - uid: 40711 + components: + - type: Transform + pos: 75.5,77.5 + parent: 40599 + - uid: 40712 + components: + - type: Transform + pos: 42.5,28.5 + parent: 40599 + - uid: 40713 + components: + - type: Transform + pos: 44.5,28.5 + parent: 40599 + - uid: 40714 + components: + - type: Transform + pos: 44.5,23.5 + parent: 40599 +- proto: BedsheetSyndie entities: - uid: 8263 components: - type: Transform - pos: 2.6725543,-46.40151 + rot: 1.5707963267948966 rad + pos: -58.5,55.5 parent: 2 -- proto: BoxFolderRed - entities: - uid: 8264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.9538045,-49.33901 + pos: 88.5,-28.5 parent: 2 + - uid: 47254 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 47245 +- proto: BedsheetWhite + entities: - uid: 8265 components: - type: Transform - pos: -43.59914,10.552752 + rot: 1.5707963267948966 rad + pos: -4.363357,34.930832 parent: 2 +- proto: BenchBlueComfy + entities: - uid: 8266 components: - type: Transform - pos: -24.651709,26.853266 + rot: 3.141592653589793 rad + pos: 47.5,-11.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-15.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-11.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-14.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-14.5 parent: 2 - - type: Storage - storedItems: - 8267: - position: 0,0 - _rotation: South - 8268: - position: 1,0 - _rotation: South - 8269: - position: 2,0 - _rotation: South - 8270: - position: 3,0 - _rotation: South - 8271: - position: 4,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 8267 - - 8268 - - 8269 - - 8270 - - 8271 - uid: 8272 components: - type: Transform - pos: -36.292423,-12.3263 + rot: 3.141592653589793 rad + pos: 49.5,-12.5 parent: 2 - uid: 8273 components: - type: Transform - pos: -29.375362,-20.393227 + rot: 3.141592653589793 rad + pos: 49.5,-15.5 parent: 2 - uid: 8274 components: - type: Transform - pos: -29.547237,-20.424477 + rot: 3.141592653589793 rad + pos: 49.5,-13.5 parent: 2 - uid: 8275 components: - type: Transform - pos: -25.321785,-20.370192 + rot: 3.141592653589793 rad + pos: 49.5,-11.5 parent: 2 - uid: 8276 components: - type: Transform - pos: -25.571785,-20.370192 + rot: 3.141592653589793 rad + pos: 46.5,-15.5 parent: 2 - uid: 8277 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.639511,-16.383131 + pos: 46.5,-11.5 parent: 2 - uid: 8278 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.467636,-16.336256 + pos: 47.5,-13.5 parent: 2 - uid: 8279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.409382,15.6026535 + rot: 3.141592653589793 rad + pos: 50.5,-12.5 parent: 2 - - uid: 40364 - components: - - type: Transform - rot: -1.3962634015954636 rad - pos: 53.50572,57.15419 - parent: 40203 -- proto: BoxFolderWhite - entities: - uid: 8280 components: - type: Transform - pos: 8.312848,60.472347 + rot: 3.141592653589793 rad + pos: 50.5,-13.5 parent: 2 - uid: 8281 components: - type: Transform - pos: 14.757013,60.503597 + rot: 3.141592653589793 rad + pos: 47.5,-15.5 parent: 2 - uid: 8282 components: - type: Transform - pos: 16.765972,53.605297 + rot: 3.141592653589793 rad + pos: 47.5,-12.5 parent: 2 - uid: 8283 components: - type: Transform - pos: 25.590477,53.649723 + rot: 3.141592653589793 rad + pos: 49.5,-14.5 parent: 2 - uid: 8284 components: - type: Transform - pos: 29.681997,56.612713 + rot: 3.141592653589793 rad + pos: 50.5,-14.5 parent: 2 - uid: 8285 components: - type: Transform - pos: -22.635605,44.641598 + rot: 3.141592653589793 rad + pos: 46.5,-12.5 parent: 2 -- proto: BoxFolderYellow + - uid: 45381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 45355 + - uid: 45382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 45355 + - uid: 45383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 45355 +- proto: BenchComfy entities: - uid: 8286 components: - type: Transform - pos: 64.39218,-30.53696 + pos: 4.5,-53.5 parent: 2 - uid: 8287 components: - type: Transform - pos: 2.61754,-50.448692 + pos: 5.5,-53.5 parent: 2 + - uid: 45384 + components: + - type: Transform + pos: 0.5,9.5 + parent: 45355 + - uid: 45385 + components: + - type: Transform + pos: -0.5,9.5 + parent: 45355 + - uid: 45386 + components: + - type: Transform + pos: -1.5,9.5 + parent: 45355 +- proto: BenchRedComfy + entities: + - uid: 45387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 45355 + - uid: 45388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 45355 + - uid: 45389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 45355 +- proto: BigBox + entities: - uid: 8288 components: - type: Transform - pos: -32.57098,7.5827494 + pos: 17.415613,29.584944 parent: 2 - uid: 8289 components: - type: Transform - pos: 82.68739,-38.899494 + pos: -109.68215,50.86489 parent: 2 +- proto: BikeHornInstrument + entities: - uid: 8290 components: - type: Transform - pos: 82.32802,-38.79012 + rot: -1.5707963267948966 rad + pos: 53.771782,12.337828 parent: 2 +- proto: Biogenerator + entities: - uid: 8291 components: - type: Transform - pos: 82.62489,-39.086994 + pos: 9.5,41.5 parent: 2 -- proto: BoxForensicPad +- proto: BiomassReclaimer entities: - uid: 8292 components: - type: Transform - pos: -19.462543,5.546249 + pos: -18.5,42.5 parent: 2 -- proto: BoxHandcuff +- proto: BlastDoor entities: - uid: 8293 components: - type: Transform - pos: -34.658447,2.6648955 + pos: 37.5,-56.5 parent: 2 - uid: 8294 components: - type: Transform - pos: -32.386868,12.6130085 + pos: 38.5,-56.5 parent: 2 -- proto: BoxID - entities: - uid: 8295 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.613631,-12.3989935 + pos: 36.5,-56.5 parent: 2 -- proto: BoxInflatable - entities: - uid: 8296 components: - type: Transform - pos: -3.4528565,-38.42832 + pos: -20.5,-55.5 parent: 2 - uid: 8297 components: - type: Transform - pos: 7.4434824,-44.69169 + pos: 36.5,-37.5 parent: 2 -- proto: BoxLatexGloves - entities: - uid: 8298 components: - type: Transform - pos: -21.63811,57.520542 + pos: 9.5,62.5 parent: 2 -- proto: BoxLethalshot - entities: - uid: 8299 components: - type: Transform - pos: -42.49237,-8.432732 + pos: 13.5,62.5 parent: 2 - uid: 8300 components: - type: Transform - pos: -42.49237,-8.495232 + pos: 67.5,-54.5 parent: 2 - uid: 8301 components: - type: Transform - pos: -44.46128,-8.478874 + pos: 68.5,-54.5 parent: 2 - uid: 8302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.69499,9.709234 + pos: 69.5,-54.5 parent: 2 -- proto: BoxLightbulb - entities: - uid: 8303 components: - type: Transform - pos: 27.371677,-11.281914 + pos: -25.5,-47.5 parent: 2 - uid: 8304 components: - type: Transform - pos: 7.7247324,-44.50419 + pos: -24.5,-47.5 parent: 2 -- proto: BoxLightMixed - entities: - uid: 8305 components: - type: Transform - rot: 6.283185307179586 rad - pos: -1.593482,-35.381447 + pos: -23.5,-47.5 parent: 2 -- proto: BoxLighttube - entities: - uid: 8306 components: - type: Transform - pos: 27.606052,-11.610039 + pos: -38.5,-5.5 parent: 2 - uid: 8307 components: - type: Transform - pos: 7.4278574,-44.41044 + pos: -43.5,-5.5 parent: 2 -- proto: BoxMagazinePistolPractice - entities: - uid: 8308 components: - type: Transform - pos: -24.728155,-7.38125 + pos: -46.5,-5.5 parent: 2 -- proto: BoxMagazineRiflePractice - entities: - uid: 8309 components: - type: Transform - pos: -24.305443,-7.396875 + rot: 3.141592653589793 rad + pos: -8.5,71.5 parent: 2 -- proto: BoxMesonScanners - entities: - uid: 8310 components: - type: Transform - pos: 0.4817276,-44.45939 + rot: -1.5707963267948966 rad + pos: -10.5,69.5 parent: 2 -- proto: BoxMouthSwab - entities: - uid: 8311 components: - type: Transform - pos: 7.4648895,33.991238 + pos: -26.5,18.5 parent: 2 - uid: 8312 components: - type: Transform - pos: 28.582697,56.564487 + pos: -26.5,19.5 parent: 2 -- proto: BoxMRE - entities: - uid: 8313 components: - type: Transform - pos: -40.48798,17.622835 + pos: -26.5,20.5 parent: 2 - uid: 8314 components: - type: Transform - pos: -44.476,17.591585 + pos: -14.5,5.5 parent: 2 - uid: 8315 components: - type: Transform - pos: -48.476,17.622835 + pos: -14.5,6.5 parent: 2 - - uid: 40365 + - uid: 8316 components: - type: Transform - pos: 65.59732,77.69351 - parent: 40203 - - uid: 40366 + rot: 1.5707963267948966 rad + pos: 95.5,-46.5 + parent: 2 + - uid: 8317 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.210655,27.434698 - parent: 40203 -- proto: BoxPDA - entities: - - uid: 8316 + pos: 103.5,-45.5 + parent: 2 + - uid: 40715 + components: + - type: Transform + pos: 53.5,46.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40716 + components: + - type: Transform + pos: 52.5,46.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40717 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.410506,-12.4771185 - parent: 2 -- proto: BoxSterileMask - entities: - - uid: 8317 + pos: 54.5,61.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40718 components: - type: Transform - pos: -21.702578,57.690517 - parent: 2 - - uid: 8319 + rot: 3.141592653589793 rad + pos: 54.5,62.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40719 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxSyringe - entities: - - uid: 8331 + pos: 51.5,46.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40720 components: - type: Transform - pos: -21.218203,57.690517 - parent: 2 - - uid: 8332 + pos: 58.5,50.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40721 components: - type: Transform - pos: -54.328266,15.484598 - parent: 2 - - uid: 8333 + rot: 3.141592653589793 rad + pos: 70.5,59.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40722 components: - type: Transform - pos: -88.49013,58.61229 - parent: 2 -- proto: BoxTrashbag - entities: - - uid: 8334 + rot: 1.5707963267948966 rad + pos: 69.5,56.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40723 components: - type: Transform - pos: -100.53376,22.554476 - parent: 2 -- proto: BoxZiptie - entities: - - uid: 8335 + pos: 70.5,51.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40724 components: - type: Transform - pos: -25.997688,16.699776 - parent: 2 -- proto: BrbSign - entities: - - uid: 8336 + rot: 1.5707963267948966 rad + pos: 42.5,58.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40725 components: - type: Transform - pos: -3.4992542,-12.473976 - parent: 2 -- proto: BriefcaseBrownFilled - entities: - - uid: 8337 + rot: 1.5707963267948966 rad + pos: 41.5,58.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40726 components: - type: Transform - pos: -44.48167,6.7234826 - parent: 2 - - uid: 8338 + pos: 47.5,61.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40727 components: - type: Transform - pos: -21.464344,26.113787 - parent: 2 - - uid: 8339 + rot: 1.5707963267948966 rad + pos: 43.5,58.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40728 components: - type: Transform - pos: 5.5202928,19.979654 - parent: 2 -- proto: BrigmedicPDA - entities: - - uid: 8340 + pos: 47.5,60.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40729 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.423447,-12.611463 - parent: 2 -- proto: BrigTimer - entities: - - uid: 8341 + pos: 54.5,60.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,5.5 - parent: 2 - - uid: 8342 + pos: 47.5,62.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40731 components: - type: Transform - pos: -43.5,13.5 - parent: 2 - - uid: 8343 + pos: 59.5,50.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40732 components: - type: Transform - pos: -35.5,13.5 - parent: 2 - - uid: 8344 + pos: 60.5,50.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40733 components: - type: Transform - pos: -37.5,13.5 - parent: 2 - - uid: 8345 + rot: -1.5707963267948966 rad + pos: 71.5,52.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40734 components: - type: Transform - pos: -47.5,13.5 - parent: 2 - - uid: 8346 + pos: 72.5,57.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40735 components: - type: Transform - pos: -39.5,13.5 - parent: 2 - - uid: 40367 + pos: 65.5,67.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40736 components: - - type: MetaData - name: таймер - type: Transform - pos: 43.5,64.5 - parent: 40203 - - type: SignalTimer - label: wait - delay: 10 - - uid: 40368 + rot: 3.141592653589793 rad + pos: 37.5,75.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40737 components: - type: Transform - pos: 37.5,81.5 - parent: 40203 - - type: SignalTimer - delay: 30 -- proto: BrokenBottle - entities: - - uid: 8347 + rot: 1.5707963267948966 rad + pos: 39.5,78.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40738 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.432583,64.78059 - parent: 2 - - uid: 8348 + pos: 62.5,55.5 + parent: 40599 + missingComponents: + - Damageable + - uid: 40739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.76281,1.277738 - parent: 2 - - uid: 8349 + rot: 3.141592653589793 rad + pos: 62.5,56.5 + parent: 40599 + missingComponents: + - Damageable +- proto: BlastDoorFrame + entities: + - uid: 8318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.647026,48.401287 + anchored: True + pos: 40.5,-37.5 parent: 2 - - uid: 8350 + - uid: 8319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.522026,45.432537 + anchored: True + pos: 103.5,-46.5 parent: 2 - - uid: 40369 + - uid: 8320 components: - type: Transform - rot: 2.0943951023931953 rad - pos: 53.938324,77.23272 - parent: 40203 - - uid: 40370 + anchored: True + pos: 95.5,-45.5 + parent: 2 + - uid: 40740 components: - type: Transform - rot: 0.33161255787892263 rad - pos: 42.849083,36.35057 - parent: 40203 -- proto: Brutepack - entities: - - uid: 8103 + anchored: True + pos: 59.5,65.5 + parent: 40599 + missingComponents: + - Pullable + - uid: 40741 components: - type: Transform - parent: 8101 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8104 + anchored: True + pos: 62.5,66.5 + parent: 40599 + missingComponents: + - Pullable +- proto: BlastDoorOpen + entities: + - uid: 8321 components: - type: Transform - parent: 8101 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BrutepackAdvanced1 - entities: - - uid: 40372 + pos: -31.5,-2.5 + parent: 2 + - uid: 8322 components: - type: Transform - parent: 40371 - - type: Stack - count: 4 - - type: Physics - canCollide: False -- proto: Bucket - entities: - - uid: 8351 + pos: -31.5,-4.5 + parent: 2 + - uid: 8323 components: - type: Transform - pos: 17.59864,36.720512 + pos: -26.5,-2.5 parent: 2 - - uid: 8352 + - uid: 8324 components: - type: Transform - pos: 9.03614,40.908012 + pos: -26.5,-4.5 parent: 2 - - uid: 8353 + - uid: 8325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.794407,-12.111643 + rot: 3.141592653589793 rad + pos: -48.5,14.5 parent: 2 - - uid: 8354 + - uid: 8326 components: - type: Transform - rot: 6.283185307179586 rad - pos: -19.474358,6.7802424 + rot: 3.141592653589793 rad + pos: -44.5,14.5 parent: 2 - - uid: 8355 + - uid: 8327 components: - type: Transform - pos: 27.483847,-5.8760657 + rot: 3.141592653589793 rad + pos: -40.5,14.5 parent: 2 - - uid: 8356 + - uid: 8328 components: - type: Transform - pos: 1.2967782,31.253412 + pos: -114.5,20.5 parent: 2 - - uid: 8357 + - uid: 8329 components: - type: Transform - pos: 1.1835456,31.771467 + pos: -114.5,24.5 parent: 2 - - uid: 8358 + - uid: 8330 components: - type: Transform - pos: -18.564096,44.73713 + pos: -114.5,16.5 parent: 2 - - uid: 8359 + - uid: 8331 components: - type: Transform - pos: 78.29148,6.372053 + pos: 10.5,-1.5 parent: 2 - - uid: 8360 + - uid: 8332 components: - type: Transform - pos: -56.231533,9.315548 + pos: 13.5,0.5 parent: 2 - - uid: 8361 + - uid: 8333 components: - type: Transform - pos: 23.32715,43.736053 + pos: 13.5,1.5 parent: 2 - - uid: 8362 + - uid: 8334 components: - type: Transform - pos: -100.76439,25.55578 + pos: -8.5,0.5 parent: 2 - - uid: 8363 + - uid: 8335 components: - type: Transform - pos: -100.186264,25.696405 + pos: -8.5,1.5 parent: 2 - - uid: 8364 + - uid: 8336 components: - type: Transform - pos: -102.24644,18.822775 + pos: -5.5,-1.5 parent: 2 - - uid: 8365 + - uid: 8337 components: - type: Transform - pos: -102.48081,17.68215 + pos: -106.5,13.5 parent: 2 - - uid: 40374 + - uid: 8338 components: - type: Transform - rot: -2.1467549799530254 rad - pos: 52.452217,72.49447 - parent: 40203 - - uid: 40375 + pos: -105.5,13.5 + parent: 2 +- proto: BlockGameArcade + entities: + - uid: 8339 components: - type: Transform - pos: 52.731735,22.359856 - parent: 40203 - - uid: 40376 + rot: 3.141592653589793 rad + pos: 44.5,-33.5 + parent: 2 + - uid: 8340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.637985,20.65673 - parent: 40203 - - uid: 40377 + pos: 42.5,-31.5 + parent: 2 + - uid: 8341 components: - type: Transform - pos: 52.77861,22.578606 - parent: 40203 -- proto: BudgetInsulsDrinkGlass - entities: - - uid: 8367 + rot: 1.5707963267948966 rad + pos: 40.5,-32.5 + parent: 2 + - uid: 8342 components: - type: Transform - pos: -3.6052585,-44.57093 + rot: 1.5707963267948966 rad + pos: -110.5,4.5 parent: 2 -- proto: ButtonFrameCaution - entities: - - uid: 8368 + - uid: 8343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-54.5 + rot: 1.5707963267948966 rad + pos: 24.5,7.5 parent: 2 - - uid: 8369 + - uid: 8344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-55.5 + rot: 1.5707963267948966 rad + pos: 24.5,5.5 parent: 2 - - uid: 8370 + - uid: 8345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-56.5 + rot: 1.5707963267948966 rad + pos: 24.5,4.5 parent: 2 - - uid: 8371 + - uid: 8346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-56.5 + rot: 1.5707963267948966 rad + pos: 24.5,6.5 parent: 2 - - uid: 8372 +- proto: Bloodpack + entities: + - uid: 8348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,43.5 - parent: 2 - - uid: 8373 + parent: 8347 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40742 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 + rot: 1.5707963267948966 rad + pos: 60.53585,59.53942 + parent: 40599 +- proto: BlueprintFulton + entities: + - uid: 40743 + components: + - type: Transform + rot: 1.3788101090755203 rad + pos: 55.475758,56.6203 + parent: 40599 +- proto: BluespaceBeaker + entities: + - uid: 40745 + components: + - type: Transform + parent: 40744 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BodyBagFolded + entities: + - uid: 8352 + components: + - type: Transform + pos: 74.64151,-48.547718 parent: 2 - - uid: 8374 + - uid: 8353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,8.5 + pos: 74.57901,-48.516468 parent: 2 - - uid: 8375 +- proto: Bonfire + entities: + - uid: 8354 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,25.5 + pos: 66.5,-14.5 parent: 2 - - uid: 40378 + - uid: 8355 components: - type: Transform - pos: 59.5,61.5 - parent: 40203 - - uid: 40379 + pos: -35.5,-54.5 + parent: 2 + - uid: 8356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,72.5 - parent: 40203 - - uid: 40380 + pos: 7.5,52.5 + parent: 2 + - uid: 8357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,52.5 - parent: 40203 - - uid: 40381 + pos: -79.5,3.5 + parent: 2 + - uid: 8358 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,52.5 - parent: 40203 - - uid: 40382 + pos: 100.5,-28.5 + parent: 2 + - uid: 8359 components: - type: Transform - pos: 49.5,75.5 - parent: 40203 - - uid: 40383 + rot: 3.141592653589793 rad + pos: -89.5,27.5 + parent: 2 + - uid: 8360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,75.5 - parent: 40203 - - uid: 40384 + pos: -64.5,51.5 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 8362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,68.5 - parent: 40203 -- proto: ButtonFrameCautionSecurity + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookAurora entities: - - uid: 8376 + - uid: 8371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-10.5 + pos: -7.6703634,18.566603 parent: 2 - - uid: 8377 +- proto: BookBartendersManual + entities: + - uid: 8372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-10.5 + rot: 1.5707963267948966 rad + pos: 45.9664,21.602427 parent: 2 - - uid: 8378 + - uid: 8373 components: - type: Transform - pos: -109.0268,22.843567 + pos: -103.534546,7.627344 parent: 2 - - uid: 8379 + - uid: 8374 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,20.5 + pos: -34.48176,21.614859 parent: 2 - - uid: 8380 +- proto: BookBase + entities: + - uid: 8375 components: + - type: MetaData + name: Карательная психиатрия - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,18.5 + pos: -5.1924324,70.55311 parent: 2 - - uid: 40385 + - type: Paper + content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n- галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" + - uid: 45390 components: + - type: MetaData + name: книга отзывов - type: Transform rot: 3.141592653589793 rad - pos: 58.5,67.5 - parent: 40203 - - uid: 40386 + pos: -2.6589403,-2.419702 + parent: 45355 + - type: Paper + content: >- + Книга отзывов " + + + __________________________________________________________ + + Джо-Доун - 5 из 5. + + Крайне хорошие источники, помогают очень сильно против болей в спине. + + __________________________________________________________ + + Кирилл Блимпанченко - 4 из 5. + + Блааамп... + + __________________________________________________________ +- proto: BookBusido + entities: + - uid: 8363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,77.5 - parent: 40203 - - uid: 40387 + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookChemicalCompendium + entities: + - uid: 8376 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,77.5 - parent: 40203 -- proto: ButtonFrameExit + pos: -8.528511,38.619408 + parent: 2 +- proto: BookDAM + entities: + - uid: 8377 + components: + - type: Transform + pos: -30.603775,-42.403282 + parent: 2 +- proto: BookEarth + entities: + - uid: 8378 + components: + - type: Transform + pos: -3.5396852,20.361399 + parent: 2 +- proto: BookHowToCookForFortySpaceman + entities: + - uid: 8379 + components: + - type: Transform + pos: 29.51162,32.529366 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: -113.51274,9.532264 + parent: 2 +- proto: BookHowToSurvive entities: - uid: 8381 components: - type: Transform - pos: 11.5,-10.5 + pos: -7.5715055,19.074017 parent: 2 -- proto: ButtonFrameGrey +- proto: BookJanitorTale entities: - uid: 8382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,17.5 + pos: -7.5402555,18.542767 parent: 2 - - uid: 40388 +- proto: BookLeafLoversSecret + entities: + - uid: 8364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,73.5 - parent: 40203 -- proto: ButtonFrameJanitor - entities: + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 8383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-5.5 + pos: 7.470997,41.388527 parent: 2 - uid: 8384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-37.5 + pos: -103.49124,11.561365 parent: 2 +- proto: BookMap + entities: - uid: 8385 components: - type: Transform - pos: -2.501377,-34.969223 + rot: 1.5707963267948966 rad + pos: -3.4928102,19.470774 parent: 2 +- proto: BookMedicalOfficer + entities: - uid: 8386 components: - type: Transform - pos: 1.319261,38.75961 + pos: -3.5709352,20.486399 parent: 2 +- proto: BookMedicalReferenceBook + entities: - uid: 8387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-32.5 + pos: -56.472412,17.594555 parent: 2 - uid: 8388 components: - type: Transform - pos: -4.5,3.5 + pos: 3.5217957,43.586117 parent: 2 - uid: 8389 components: - type: Transform - pos: 35.5,25.5 + pos: -26.53267,54.551678 parent: 2 -- proto: CableApcExtension - entities: - uid: 8390 components: - type: Transform - pos: -87.5,65.5 + pos: -104.511604,4.6345177 parent: 2 +- proto: BookMorgue + entities: - uid: 8391 components: - type: Transform - pos: -25.5,44.5 + rot: 3.141592653589793 rad + pos: -30.44975,-16.500137 parent: 2 +- proto: BookNames + entities: - uid: 8392 components: - type: Transform - pos: 87.5,-43.5 + pos: -7.7797384,18.610325 parent: 2 +- proto: BookNarsieLegend + entities: + - uid: 8365 + components: + - type: Transform + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookNooc + entities: + - uid: 40752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.578255,60.51876 + parent: 40599 +- proto: BookPetr + entities: - uid: 8393 components: - type: Transform - pos: -114.5,20.5 + rot: -1.5707963267948966 rad + pos: 40.435703,13.576222 parent: 2 +- proto: BookRandom + entities: - uid: 8394 components: + - type: MetaData + name: вскрытие тел для чайников - type: Transform - pos: -58.5,63.5 + rot: 1.5707963267948966 rad + pos: -22.436766,45.516586 parent: 2 - uid: 8395 components: + - type: MetaData + name: вскрытие тел для чайников - type: Transform - pos: 28.5,-46.5 + pos: -12.623554,43.605488 parent: 2 - uid: 8396 components: + - type: MetaData + desc: Хотите чтобы ваши речи звучали таинственно и вселяли ужас? Прочитайте эту книгу! + name: Страшные заклинания на латыни в 3-х томах - type: Transform - pos: -9.5,-10.5 + pos: 54.44688,-12.475292 parent: 2 +- proto: BookRandomStory + entities: - uid: 8397 components: - type: Transform - pos: -12.5,-9.5 + pos: -8.495374,62.577507 parent: 2 - uid: 8398 components: - type: Transform - pos: 44.5,29.5 + rot: -1.0471975511965976 rad + pos: -23.495863,23.875908 parent: 2 +- proto: BookScientistsGuidebook + entities: - uid: 8399 components: - type: Transform - pos: 57.5,-41.5 + pos: -6.2752457,22.716452 parent: 2 +- proto: BookSecurity + entities: - uid: 8400 components: - type: Transform - pos: 61.5,-38.5 + pos: -6.509035,22.602947 parent: 2 +- proto: Bookshelf + entities: - uid: 8401 components: - type: Transform - pos: 54.5,-14.5 + pos: 6.5,-46.5 parent: 2 - uid: 8402 components: - type: Transform - pos: 54.5,-15.5 + pos: 5.5,18.5 parent: 2 + missingComponents: + - Occluder - uid: 8403 components: - type: Transform - pos: 61.5,-4.5 + pos: -52.5,64.5 parent: 2 - uid: 8404 components: - type: Transform - pos: 61.5,-5.5 + pos: -52.5,65.5 parent: 2 - uid: 8405 components: - type: Transform - pos: 61.5,-6.5 + pos: -115.5,25.5 parent: 2 + missingComponents: + - Occluder - uid: 8406 components: - type: Transform - pos: 55.5,-5.5 + pos: -115.5,21.5 parent: 2 + missingComponents: + - Occluder - uid: 8407 components: - type: Transform - pos: 59.5,7.5 + pos: -115.5,17.5 parent: 2 + missingComponents: + - Occluder + - uid: 46949 + components: + - type: Transform + pos: 3.5,7.5 + parent: 46943 +- proto: BookshelfFilled + entities: - uid: 8408 components: - type: Transform - pos: 61.5,-10.5 + pos: 6.5,-47.5 parent: 2 - uid: 8409 components: - type: Transform - pos: 61.5,-11.5 + pos: -9.5,-2.5 parent: 2 + missingComponents: + - Occluder - uid: 8410 components: - type: Transform - pos: 59.5,8.5 + pos: -8.5,-2.5 parent: 2 + missingComponents: + - Occluder - uid: 8411 components: - type: Transform - pos: 61.5,-7.5 + pos: 11.5,22.5 parent: 2 + missingComponents: + - Occluder - uid: 8412 components: - type: Transform - pos: 61.5,-9.5 + pos: 6.5,62.5 parent: 2 + missingComponents: + - Occluder - uid: 8413 components: - type: Transform - pos: 61.5,-8.5 + pos: -3.5,22.5 parent: 2 + missingComponents: + - Occluder - uid: 8414 components: - type: Transform - pos: 60.5,-11.5 + pos: -4.5,19.5 parent: 2 + missingComponents: + - Occluder - uid: 8415 components: - type: Transform - pos: 58.5,-11.5 + pos: -4.5,22.5 parent: 2 + missingComponents: + - Occluder - uid: 8416 components: - type: Transform - pos: 56.5,-11.5 + pos: -1.5,22.5 parent: 2 + missingComponents: + - Occluder - uid: 8417 components: - type: Transform - pos: 59.5,-11.5 + pos: -4.5,18.5 parent: 2 + missingComponents: + - Occluder - uid: 8418 components: - type: Transform - pos: 57.5,-11.5 + pos: -0.5,22.5 parent: 2 + missingComponents: + - Occluder - uid: 8419 components: - type: Transform - pos: 55.5,-11.5 + pos: -4.5,20.5 parent: 2 + missingComponents: + - Occluder - uid: 8420 components: - type: Transform - pos: 62.5,-4.5 + pos: -7.5,20.5 parent: 2 + missingComponents: + - Occluder - uid: 8421 components: - type: Transform - pos: 60.5,7.5 + pos: -5.5,22.5 parent: 2 + missingComponents: + - Occluder - uid: 8422 components: - type: Transform - pos: 61.5,7.5 + pos: -7.5,21.5 parent: 2 + missingComponents: + - Occluder - uid: 8423 components: - type: Transform - pos: 61.5,10.5 + pos: 12.5,22.5 parent: 2 + missingComponents: + - Occluder - uid: 8424 components: - type: Transform - pos: 61.5,11.5 + pos: -10.5,59.5 parent: 2 + missingComponents: + - Occluder - uid: 8425 components: - type: Transform - pos: 62.5,11.5 + pos: -10.5,56.5 parent: 2 + missingComponents: + - Occluder - uid: 8426 components: - type: Transform - pos: 63.5,11.5 + pos: -103.5,8.5 parent: 2 + missingComponents: + - Occluder - uid: 8427 components: - type: Transform - pos: 61.5,6.5 + pos: -103.5,10.5 parent: 2 + missingComponents: + - Occluder - uid: 8428 components: - type: Transform - pos: 62.5,6.5 + pos: -103.5,9.5 parent: 2 + missingComponents: + - Occluder - uid: 8429 components: - type: Transform - pos: 63.5,6.5 + pos: -77.5,14.5 parent: 2 - uid: 8430 components: - type: Transform - pos: 64.5,6.5 + pos: -79.5,16.5 parent: 2 - uid: 8431 components: - type: Transform - pos: 65.5,6.5 + pos: -78.5,16.5 parent: 2 - uid: 8432 components: - type: Transform - pos: 66.5,6.5 + pos: -77.5,13.5 parent: 2 - uid: 8433 components: - type: Transform - pos: 58.5,7.5 + pos: 43.5,11.5 parent: 2 - - uid: 8434 + - uid: 40753 components: - type: Transform - pos: 57.5,7.5 - parent: 2 - - uid: 8435 + pos: 79.5,32.5 + parent: 40599 + - uid: 40754 components: - type: Transform - pos: 56.5,7.5 - parent: 2 - - uid: 8436 + pos: 75.5,75.5 + parent: 40599 + missingComponents: + - Occluder +- proto: BookSpaceEncyclopedia + entities: + - uid: 8366 components: - type: Transform - pos: 55.5,7.5 - parent: 2 - - uid: 8437 + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8434 components: - type: Transform - pos: 54.5,7.5 + rot: -1.5707963267948966 rad + pos: 38.434834,-2.945673 parent: 2 - - uid: 8438 +- proto: BookSpaceLaw + entities: + - uid: 8367 components: - type: Transform - pos: 53.5,7.5 - parent: 2 - - uid: 8439 + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8435 components: - type: Transform - pos: 52.5,7.5 + rot: 0.17453292519943295 rad + pos: 49.85313,-6.243142 parent: 2 - - uid: 8440 + - uid: 8436 components: - type: Transform - pos: 52.5,10.5 + pos: -21.466648,26.57753 parent: 2 - - uid: 8441 +- proto: BookStationsAndAgents + entities: + - uid: 8437 components: - type: Transform - pos: 52.5,11.5 + pos: 1.6417177,20.05874 parent: 2 - - uid: 8442 +- proto: BookTemple + entities: + - uid: 8368 components: - type: Transform - pos: 51.5,11.5 - parent: 2 - - uid: 8443 + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookTheBookOfControl + entities: + - uid: 8369 components: - type: Transform - pos: 50.5,11.5 - parent: 2 - - uid: 8444 + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BookUmpor + entities: + - uid: 40755 components: - type: Transform - pos: 56.5,10.5 - parent: 2 - - uid: 8445 + rot: -1.5707963267948966 rad + pos: 60.62558,79.7487 + parent: 40599 +- proto: BookVitz + entities: + - uid: 40756 components: - type: Transform - pos: 57.5,10.5 - parent: 2 - - uid: 8446 + rot: 3.141592653589793 rad + pos: 68.609955,77.54558 + parent: 40599 +- proto: BookWatched + entities: + - uid: 8370 components: - type: Transform - pos: 57.5,11.5 - parent: 2 - - uid: 8447 + parent: 8361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoozeDispenser + entities: + - uid: 8438 components: - type: Transform - pos: 57.5,12.5 + rot: -1.5707963267948966 rad + pos: 43.5,20.5 parent: 2 - - uid: 8448 + - uid: 8439 components: - type: Transform - pos: 56.5,6.5 + rot: 1.5707963267948966 rad + pos: -110.5,11.5 parent: 2 - - uid: 8449 +- proto: BoozeDispenserEmpty + entities: + - uid: 8440 components: - type: Transform - pos: 56.5,5.5 + rot: 3.141592653589793 rad + pos: -37.5,21.5 parent: 2 - - uid: 8450 + - uid: 45391 components: - type: Transform - pos: 56.5,4.5 + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 45355 +- proto: BorgCharger + entities: + - uid: 8441 + components: + - type: Transform + pos: 24.5,-38.5 parent: 2 - - uid: 8451 + - uid: 8442 components: - type: Transform - pos: 56.5,3.5 + pos: 24.5,-36.5 parent: 2 - - uid: 8452 + - uid: 8443 components: - type: Transform - pos: 56.5,2.5 + rot: 3.141592653589793 rad + pos: 26.5,-37.5 parent: 2 - - uid: 8453 + - uid: 8444 components: - type: Transform - pos: 56.5,1.5 + rot: -1.5707963267948966 rad + pos: 10.5,24.5 parent: 2 +- proto: BoxBeaker + entities: + - uid: 8446 + components: + - type: Transform + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBeanbag + entities: - uid: 8454 components: - type: Transform - pos: 56.5,0.5 + pos: 45.449398,23.447855 parent: 2 - uid: 8455 components: - type: Transform - pos: 56.5,-0.5 + pos: -36.467125,-6.3831277 parent: 2 - uid: 8456 components: - type: Transform - pos: 56.5,-1.5 + pos: -36.4515,-6.4768777 parent: 2 - uid: 8457 components: - type: Transform - pos: 56.5,-2.5 + rot: 1.5707963267948966 rad + pos: -101.33562,9.771734 parent: 2 + - uid: 45393 + components: + - type: Transform + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: - uid: 8458 components: - type: Transform - pos: 56.5,-5.5 + pos: -12.355973,43.63522 parent: 2 - uid: 8459 components: - type: Transform - pos: 54.5,-5.5 + pos: -56.51647,8.564518 parent: 2 - uid: 8460 components: - type: Transform - pos: 55.5,2.5 + pos: -21.13811,57.520542 parent: 2 - uid: 8461 components: - type: Transform - pos: 54.5,2.5 + pos: 2.4998355,38.494568 parent: 2 - uid: 8462 components: - type: Transform - pos: 53.5,2.5 + pos: 19.494806,22.52466 parent: 2 - uid: 8463 components: - type: Transform - pos: 49.5,-0.5 + pos: -103.421036,4.802936 parent: 2 - - uid: 8464 +- proto: BoxCandle + entities: + - uid: 8465 components: - type: Transform - pos: 48.5,-0.5 - parent: 2 - - uid: 8465 + parent: 8464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 46950 components: - type: Transform - pos: 50.5,-0.5 - parent: 2 + pos: -0.5467932,6.682245 + parent: 46943 +- proto: BoxCandleSmall + entities: - uid: 8466 components: - type: Transform - pos: 51.5,-0.5 - parent: 2 - - uid: 8467 + parent: 8464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 46951 components: - type: Transform - pos: 52.5,-0.5 - parent: 2 + pos: -0.23429322,6.5051613 + parent: 46943 +- proto: BoxCardboard + entities: - uid: 8468 components: + - type: MetaData + desc: Мой завтрак! Не трогать. + name: чей-то завтрак - type: Transform - pos: 53.5,-0.5 - parent: 2 - - uid: 8469 - components: - - type: Transform - pos: 54.5,-0.5 - parent: 2 - - uid: 8470 - components: - - type: Transform - pos: 55.5,-0.5 - parent: 2 - - uid: 8471 - components: - - type: Transform - pos: 61.5,5.5 - parent: 2 - - uid: 8472 + parent: 8467 + - type: Storage + storedItems: + 8470: + position: 0,0 + _rotation: South + 8469: + position: 1,0 + _rotation: South + 8471: + position: 2,0 + _rotation: North + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 8470 + - 8469 + - 8471 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40757 components: - type: Transform - pos: 61.5,4.5 - parent: 2 + rot: -0.8203047484373349 rad + pos: 72.24388,78.74391 + parent: 40599 +- proto: BoxCartridgeCap + entities: - uid: 8473 components: - type: Transform - pos: 61.5,3.5 + pos: -21.479862,-21.154022 parent: 2 +- proto: BoxDarts + entities: - uid: 8474 components: - type: Transform - pos: 61.5,2.5 + pos: 97.51395,-25.281971 parent: 2 - uid: 8475 components: - type: Transform - pos: 61.5,1.5 + pos: -30.440361,27.630081 parent: 2 - uid: 8476 components: - type: Transform - pos: 61.5,0.5 + pos: -24.309763,-9.985966 parent: 2 +- proto: BoxEvidenceMarkers + entities: - uid: 8477 components: - type: Transform - pos: 61.5,-0.5 + pos: -23.478168,10.530624 parent: 2 +- proto: BoxFolderBase + entities: - uid: 8478 components: - type: Transform - pos: 61.5,-1.5 + rot: 1.5707963267948966 rad + pos: 59.470516,-2.5518813 parent: 2 - uid: 8479 components: - type: Transform - pos: 54.5,-11.5 + rot: 1.5707963267948966 rad + pos: 59.658016,-2.4268813 parent: 2 +- proto: BoxFolderBlack + entities: - uid: 8480 components: - type: Transform - pos: 53.5,-11.5 + rot: -1.5707963267948966 rad + pos: -12.673156,44.614933 parent: 2 - - uid: 8481 + - type: Storage + storedItems: + 8481: + position: 0,0 + _rotation: South + 8482: + position: 1,0 + _rotation: South + 8483: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 8481 + - 8482 + - 8483 + - uid: 8484 components: - type: Transform - pos: 52.5,-11.5 + pos: -32.38348,7.9108744 parent: 2 - - uid: 8482 + - uid: 8485 components: - type: Transform - pos: 51.5,-11.5 + rot: -1.5707963267948966 rad + pos: -20.518757,15.4776535 parent: 2 - - uid: 8483 + - uid: 40758 components: - type: Transform - pos: 50.5,-11.5 - parent: 2 - - uid: 8484 + rot: 3.5255650890285457 rad + pos: 37.983856,59.592476 + parent: 40599 + - uid: 40759 components: - type: Transform - pos: 49.5,-11.5 - parent: 2 - - uid: 8485 + rot: -1.7453292519943295 rad + pos: 53.59947,55.43544 + parent: 40599 + - uid: 45404 components: + - type: MetaData + desc: Папка, заполненная совершенно секретными документами о гостях. - type: Transform - pos: 48.5,-11.5 - parent: 2 + pos: 7.5982747,2.4317536 + parent: 45355 + - type: Storage + storedItems: + 45405: + position: 0,0 + _rotation: South + 45406: + position: 1,0 + _rotation: South + 45407: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 45405 + - 45406 + - 45407 +- proto: BoxFolderBlue + entities: - uid: 8486 components: - type: Transform - pos: 48.5,-12.5 + pos: 2.5475543,-46.484844 parent: 2 - uid: 8487 components: - type: Transform - pos: 48.5,-13.5 + pos: -3.5970988,-11.507759 parent: 2 - uid: 8488 components: - type: Transform - pos: 47.5,-14.5 + pos: -3.3891788,-11.397682 parent: 2 - uid: 8489 components: - type: Transform - pos: 47.5,-13.5 + pos: -36.43305,-12.466925 parent: 2 - uid: 8490 components: - type: Transform - pos: 47.5,-15.5 + pos: 9.274025,-9.481918 parent: 2 - uid: 8491 components: - type: Transform - pos: 42.5,21.5 + pos: 9.53965,-9.294418 parent: 2 - uid: 8492 components: - type: Transform - pos: 38.5,25.5 + pos: -29.859737,-20.393227 parent: 2 - uid: 8493 components: - type: Transform - pos: 37.5,26.5 + pos: -30.094112,-20.393227 parent: 2 - uid: 8494 components: - type: Transform - pos: 46.5,25.5 + pos: -25.353035,-20.088942 parent: 2 - uid: 8495 components: - type: Transform - pos: 37.5,25.5 + pos: -25.603035,-20.057692 parent: 2 +- proto: BoxFolderClipboard + entities: - uid: 8496 components: - type: Transform - pos: 46.5,23.5 + pos: -4.0365763,70.56476 parent: 2 - uid: 8497 components: - type: Transform - pos: 46.5,24.5 - parent: 2 - - uid: 8498 - components: - - type: Transform - pos: 46.5,18.5 + rot: -1.5707963267948966 rad + pos: 6.3479357,-1.3597445 parent: 2 +- proto: BoxFolderGreen + entities: - uid: 8499 components: + - type: MetaData + name: Секретные документы НТ - type: Transform - pos: 45.5,18.5 - parent: 2 - - uid: 8500 - components: - - type: Transform - pos: 44.5,18.5 - parent: 2 + parent: 8498 + - type: Physics + canCollide: False + - type: UseDelay + delays: + default: + endTime: 42521.6574793 + startTime: 42520.6574793 + length: 1 + quickInsert: + length: 0.5 + storage: + endTime: 42520.6574793 + startTime: 42520.6574793 + - type: InsideEntityStorage - uid: 8501 components: - type: Transform - pos: 47.5,20.5 + pos: -7.1340055,19.417767 parent: 2 +- proto: BoxFolderGrey + entities: - uid: 8502 components: - type: Transform - pos: 47.5,22.5 + pos: 2.6725543,-46.40151 parent: 2 +- proto: BoxFolderRed + entities: - uid: 8503 components: - type: Transform - pos: 43.5,18.5 + rot: 3.141592653589793 rad + pos: 6.9538045,-49.33901 parent: 2 - uid: 8504 components: - type: Transform - pos: 47.5,21.5 + pos: -43.59914,10.552752 parent: 2 - uid: 8505 components: - type: Transform - pos: 47.5,19.5 - parent: 2 - - uid: 8506 - components: - - type: Transform - pos: 46.5,22.5 - parent: 2 - - uid: 8507 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 8508 - components: - - type: Transform - pos: 42.5,20.5 - parent: 2 - - uid: 8509 - components: - - type: Transform - pos: 42.5,18.5 - parent: 2 - - uid: 8510 - components: - - type: Transform - pos: 42.5,19.5 + pos: -24.651709,26.853266 parent: 2 + - type: Storage + storedItems: + 8506: + position: 0,0 + _rotation: South + 8507: + position: 1,0 + _rotation: South + 8508: + position: 2,0 + _rotation: South + 8509: + position: 3,0 + _rotation: South + 8510: + position: 4,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 8506 + - 8507 + - 8508 + - 8509 + - 8510 - uid: 8511 components: - type: Transform - pos: 1.5,10.5 + pos: -36.292423,-12.3263 parent: 2 - uid: 8512 components: - type: Transform - pos: 26.5,8.5 + pos: -29.375362,-20.393227 parent: 2 - uid: 8513 components: - type: Transform - pos: 56.5,-16.5 + pos: -29.547237,-20.424477 parent: 2 - uid: 8514 components: - type: Transform - pos: 53.5,-16.5 + pos: -25.321785,-20.370192 parent: 2 - uid: 8515 components: - type: Transform - pos: 54.5,-17.5 + pos: -25.571785,-20.370192 parent: 2 - uid: 8516 components: - type: Transform - pos: 54.5,-16.5 + rot: 3.141592653589793 rad + pos: -22.639511,-16.383131 parent: 2 - uid: 8517 components: - type: Transform - pos: 57.5,-15.5 + rot: 3.141592653589793 rad + pos: -22.467636,-16.336256 parent: 2 - uid: 8518 components: - type: Transform - pos: 57.5,-16.5 + rot: -1.5707963267948966 rad + pos: -20.409382,15.6026535 parent: 2 - - uid: 8519 + - uid: 40760 components: - type: Transform - pos: 57.5,-14.5 - parent: 2 + rot: -1.3962634015954636 rad + pos: 53.50572,57.15419 + parent: 40599 +- proto: BoxFolderWhite + entities: + - uid: 8519 + components: + - type: Transform + pos: 8.312848,60.472347 + parent: 2 - uid: 8520 components: - type: Transform - pos: 55.5,-16.5 + pos: 14.757013,60.503597 parent: 2 - uid: 8521 components: - type: Transform - pos: 61.5,-2.5 + pos: 16.765972,53.605297 parent: 2 - uid: 8522 components: - type: Transform - pos: 50.5,12.5 + pos: 25.590477,53.649723 parent: 2 - uid: 8523 components: - type: Transform - pos: 50.5,13.5 + pos: 29.681997,56.612713 parent: 2 - uid: 8524 components: - type: Transform - pos: 56.5,14.5 + pos: -22.635605,44.641598 parent: 2 +- proto: BoxFolderYellow + entities: - uid: 8525 components: - type: Transform - pos: 56.5,13.5 + rot: -1.5707963267948966 rad + pos: 63.194515,-32.418427 parent: 2 - uid: 8526 components: - type: Transform - pos: 56.5,12.5 + pos: 2.61754,-50.448692 parent: 2 - uid: 8527 components: - type: Transform - pos: 63.5,13.5 + pos: -32.57098,7.5827494 parent: 2 - uid: 8528 components: - type: Transform - pos: 63.5,12.5 + pos: 82.68739,-38.899494 parent: 2 - uid: 8529 components: - type: Transform - pos: 63.5,11.5 + pos: 82.32802,-38.79012 parent: 2 - uid: 8530 components: - type: Transform - pos: 53.5,-5.5 + pos: 82.62489,-39.086994 parent: 2 +- proto: BoxForensicPad + entities: - uid: 8531 components: - type: Transform - pos: 53.5,-4.5 + pos: -19.462543,5.546249 parent: 2 +- proto: BoxHandcuff + entities: - uid: 8532 components: - type: Transform - pos: 53.5,-3.5 + pos: -34.658447,2.6648955 parent: 2 - uid: 8533 components: - type: Transform - pos: 37.5,-47.5 + pos: -32.386868,12.6130085 parent: 2 +- proto: BoxID + entities: - uid: 8534 components: - type: Transform - pos: 38.5,-47.5 + rot: 3.141592653589793 rad + pos: -9.613631,-12.3989935 parent: 2 +- proto: BoxInflatable + entities: - uid: 8535 components: - type: Transform - pos: 53.5,-54.5 + pos: -3.4528565,-38.42832 parent: 2 - uid: 8536 components: - type: Transform - pos: 24.5,52.5 + pos: 7.4434824,-44.69169 parent: 2 +- proto: BoxLatexGloves + entities: - uid: 8537 components: - type: Transform - pos: 30.5,-53.5 + pos: -21.63811,57.520542 parent: 2 +- proto: BoxLethalshot + entities: - uid: 8538 components: - type: Transform - pos: 17.5,57.5 + pos: -42.49237,-8.432732 parent: 2 - uid: 8539 components: - type: Transform - pos: 16.5,57.5 + pos: -42.49237,-8.495232 parent: 2 - uid: 8540 components: - type: Transform - pos: 18.5,57.5 + pos: -44.46128,-8.478874 parent: 2 - uid: 8541 components: - type: Transform - pos: 19.5,50.5 + rot: 1.5707963267948966 rad + pos: -101.69499,9.709234 parent: 2 +- proto: BoxLightbulb + entities: - uid: 8542 components: - type: Transform - pos: 19.5,51.5 + pos: 27.371677,-11.281914 parent: 2 - uid: 8543 components: - type: Transform - pos: 15.5,58.5 + pos: 7.7247324,-44.50419 parent: 2 +- proto: BoxLightMixed + entities: - uid: 8544 components: - type: Transform - pos: 15.5,57.5 + rot: 6.283185307179586 rad + pos: -1.593482,-35.381447 parent: 2 +- proto: BoxLighttube + entities: - uid: 8545 components: - type: Transform - pos: 15.5,59.5 + pos: 27.606052,-11.610039 parent: 2 - uid: 8546 components: - type: Transform - pos: 22.5,-33.5 + pos: 7.4278574,-44.41044 parent: 2 +- proto: BoxMagazinePistolPractice + entities: - uid: 8547 components: - type: Transform - pos: 13.5,52.5 + pos: -24.728155,-7.38125 parent: 2 +- proto: BoxMagazineRiflePractice + entities: - uid: 8548 components: - type: Transform - pos: 28.5,-53.5 + pos: -24.305443,-7.396875 parent: 2 +- proto: BoxMesonScanners + entities: - uid: 8549 components: - type: Transform - pos: 14.5,57.5 + pos: 0.4817276,-44.45939 parent: 2 +- proto: BoxMouthSwab + entities: - uid: 8550 components: - type: Transform - pos: 13.5,57.5 + pos: 7.4648895,33.991238 parent: 2 - uid: 8551 components: - type: Transform - pos: 12.5,57.5 + pos: 28.582697,56.564487 parent: 2 +- proto: BoxMRE + entities: - uid: 8552 components: - type: Transform - pos: 10.5,57.5 + pos: -40.48798,17.622835 parent: 2 - uid: 8553 components: - type: Transform - pos: 9.5,57.5 + pos: -44.476,17.591585 parent: 2 - uid: 8554 components: - type: Transform - pos: 3.5,57.5 + pos: -48.476,17.622835 parent: 2 - uid: 8555 components: - type: Transform - pos: 8.5,57.5 - parent: 2 - - uid: 8556 - components: - - type: Transform - pos: 4.5,57.5 - parent: 2 - - uid: 8557 - components: - - type: Transform - pos: 7.5,57.5 - parent: 2 - - uid: 8558 - components: - - type: Transform - pos: 6.5,57.5 - parent: 2 - - uid: 8559 - components: - - type: Transform - pos: 5.5,57.5 - parent: 2 - - uid: 8560 - components: - - type: Transform - pos: 11.5,62.5 - parent: 2 - - uid: 8561 - components: - - type: Transform - pos: 31.5,-53.5 - parent: 2 - - uid: 8562 - components: - - type: Transform - pos: 11.5,63.5 - parent: 2 - - uid: 8563 - components: - - type: Transform - pos: 10.5,63.5 + pos: -58.653667,55.48592 parent: 2 - - uid: 8564 + - uid: 40761 components: - type: Transform - pos: 12.5,63.5 - parent: 2 - - uid: 8565 + pos: 65.59732,77.69351 + parent: 40599 + - uid: 40762 components: - type: Transform - pos: 11.5,62.5 - parent: 2 - - uid: 8566 + rot: 1.5707963267948966 rad + pos: 75.210655,27.434698 + parent: 40599 + - uid: 47255 components: - type: Transform - pos: 11.5,61.5 - parent: 2 - - uid: 8567 + rot: 3.141592653589793 rad + pos: -1.2118129,-4.1149907 + parent: 47245 + - uid: 47256 components: - type: Transform - pos: 10.5,61.5 - parent: 2 - - uid: 8568 + rot: 1.5707963267948966 rad + pos: -3.7899375,-2.9587407 + parent: 47245 +- proto: BoxPDA + entities: + - uid: 8556 components: - type: Transform - pos: 12.5,61.5 + rot: 3.141592653589793 rad + pos: -9.410506,-12.4771185 parent: 2 - - uid: 8569 +- proto: BoxSterileMask + entities: + - uid: 8557 components: - type: Transform - pos: 19.5,65.5 + pos: -21.702578,57.690517 parent: 2 - - uid: 8570 + - uid: 8559 components: - type: Transform - pos: 19.5,64.5 - parent: 2 + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxSyringe + entities: - uid: 8571 components: - type: Transform - pos: 19.5,63.5 + pos: -21.218203,57.690517 parent: 2 - uid: 8572 components: - type: Transform - pos: 19.5,62.5 + pos: -54.328266,15.484598 parent: 2 +- proto: BoxTrashbag + entities: - uid: 8573 components: - type: Transform - pos: 25.5,59.5 + pos: -100.53376,22.554476 parent: 2 +- proto: BoxZiptie + entities: - uid: 8574 components: - type: Transform - pos: 26.5,57.5 + pos: -25.997688,16.699776 parent: 2 +- proto: BrbSign + entities: - uid: 8575 components: - type: Transform - pos: 25.5,58.5 + pos: -3.4992542,-12.473976 parent: 2 +- proto: BriefcaseBrownFilled + entities: - uid: 8576 components: - type: Transform - pos: 25.5,57.5 + pos: -40.489708,4.8311024 parent: 2 - uid: 8577 components: - type: Transform - pos: 27.5,57.5 + pos: -21.464344,26.113787 parent: 2 - uid: 8578 components: - type: Transform - pos: 28.5,57.5 + pos: 5.5202928,19.979654 parent: 2 +- proto: BrigmedicPDA + entities: - uid: 8579 components: - type: Transform - pos: 28.5,58.5 + rot: 3.141592653589793 rad + pos: -9.423447,-12.611463 parent: 2 +- proto: BrigTimer + entities: - uid: 8580 components: - type: Transform - pos: 28.5,59.5 + rot: -1.5707963267948966 rad + pos: -31.5,5.5 parent: 2 - uid: 8581 components: - type: Transform - pos: 24.5,50.5 + pos: -43.5,13.5 parent: 2 - uid: 8582 components: - type: Transform - pos: 24.5,51.5 + pos: -35.5,13.5 parent: 2 - uid: 8583 components: - type: Transform - pos: 29.5,-53.5 + pos: -37.5,13.5 parent: 2 - uid: 8584 components: - type: Transform - pos: 13.5,49.5 + pos: -47.5,13.5 parent: 2 - uid: 8585 components: - type: Transform - pos: 13.5,51.5 + pos: -39.5,13.5 parent: 2 + - uid: 40763 + components: + - type: MetaData + name: таймер + - type: Transform + pos: 43.5,64.5 + parent: 40599 + - type: SignalTimer + label: wait + delay: 10 + - uid: 40764 + components: + - type: Transform + pos: 37.5,81.5 + parent: 40599 + - type: SignalTimer + delay: 30 +- proto: BrokenBottle + entities: - uid: 8586 components: - type: Transform - pos: 13.5,50.5 + rot: 3.141592653589793 rad + pos: -49.432583,64.78059 parent: 2 - uid: 8587 components: - type: Transform - pos: 1.5,-60.5 + rot: 1.5707963267948966 rad + pos: 96.76281,1.277738 parent: 2 + - uid: 40765 + components: + - type: Transform + rot: 2.0943951023931953 rad + pos: 53.938324,77.23272 + parent: 40599 + - uid: 40766 + components: + - type: Transform + rot: 0.33161255787892263 rad + pos: 42.849083,36.35057 + parent: 40599 +- proto: Brutepack + entities: + - uid: 8349 + components: + - type: Transform + parent: 8347 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8350 + components: + - type: Transform + parent: 8347 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrutepackAdvanced1 + entities: + - uid: 40768 + components: + - type: Transform + parent: 40767 + - type: Stack + count: 4 + - type: Physics + canCollide: False +- proto: Bucket + entities: - uid: 8588 components: - type: Transform - pos: 2.5,-49.5 + pos: 17.59864,36.720512 parent: 2 - uid: 8589 components: - type: Transform - pos: 23.5,-31.5 + pos: 9.03614,40.908012 parent: 2 - uid: 8590 components: - type: Transform - pos: 23.5,-32.5 + rot: 1.5707963267948966 rad + pos: 8.794407,-12.111643 parent: 2 - uid: 8591 components: - type: Transform - pos: 23.5,-33.5 + rot: 6.283185307179586 rad + pos: -19.474358,6.7802424 parent: 2 - uid: 8592 components: - type: Transform - pos: 23.5,-34.5 + pos: 27.483847,-5.8760657 parent: 2 - uid: 8593 components: - type: Transform - pos: 23.5,-35.5 + pos: 1.2967782,31.253412 parent: 2 - uid: 8594 components: - type: Transform - pos: 23.5,-36.5 + pos: 1.1835456,31.771467 parent: 2 - uid: 8595 components: - type: Transform - pos: 22.5,-37.5 + pos: -18.564096,44.73713 parent: 2 - uid: 8596 components: - type: Transform - pos: 21.5,-33.5 + pos: 78.29148,6.372053 parent: 2 - uid: 8597 components: - type: Transform - pos: 20.5,-33.5 + pos: -56.231533,9.315548 parent: 2 - uid: 8598 components: - type: Transform - pos: 19.5,-33.5 + pos: 23.32715,43.736053 parent: 2 - uid: 8599 components: - type: Transform - pos: 18.5,-33.5 + pos: -100.76439,25.55578 parent: 2 - uid: 8600 components: - type: Transform - pos: 17.5,-33.5 + pos: -100.186264,25.696405 parent: 2 - uid: 8601 components: - type: Transform - pos: 50.5,-53.5 + pos: -102.24644,18.822775 parent: 2 - uid: 8602 components: - type: Transform - pos: 22.5,-38.5 - parent: 2 - - uid: 8603 - components: - - type: Transform - pos: 22.5,-36.5 + pos: -102.48081,17.68215 parent: 2 - uid: 8604 components: - type: Transform - pos: 33.5,-40.5 - parent: 2 - - uid: 8605 - components: - - type: Transform - pos: 32.5,-40.5 - parent: 2 - - uid: 8606 - components: - - type: Transform - pos: 103.5,-21.5 - parent: 2 - - uid: 8607 + parent: 8603 + - type: Physics + canCollide: False + - uid: 40770 components: - type: Transform - pos: 103.5,-22.5 - parent: 2 - - uid: 8608 + rot: -2.1467549799530254 rad + pos: 52.452217,72.49447 + parent: 40599 + - uid: 40771 components: - type: Transform - pos: 103.5,-23.5 - parent: 2 - - uid: 8609 + pos: 52.731735,22.359856 + parent: 40599 + - uid: 40772 components: - type: Transform - pos: 103.5,-24.5 - parent: 2 - - uid: 8610 + rot: -1.5707963267948966 rad + pos: 52.637985,20.65673 + parent: 40599 + - uid: 40773 components: - type: Transform - pos: 103.5,-25.5 - parent: 2 + pos: 52.77861,22.578606 + parent: 40599 +- proto: BudgetInsulsDrinkGlass + entities: - uid: 8611 components: - type: Transform - pos: 32.5,-41.5 + pos: -3.6052585,-44.57093 parent: 2 +- proto: BulletFoam + entities: - uid: 8612 components: - type: Transform - pos: 32.5,-42.5 + rot: 1.8325957145940461 rad + pos: 28.174711,13.139511 parent: 2 - uid: 8613 components: - type: Transform - pos: 103.5,-20.5 + rot: 0.3839724354387525 rad + pos: 25.815336,14.405136 parent: 2 - uid: 8614 components: - type: Transform - pos: 32.5,-39.5 + rot: -1.710422666954443 rad + pos: 27.659086,15.530136 parent: 2 +- proto: ButtonFrameCaution + entities: - uid: 8615 components: - type: Transform - pos: 32.5,-38.5 + rot: 3.141592653589793 rad + pos: 29.5,-54.5 parent: 2 - uid: 8616 components: - type: Transform - pos: 31.5,-38.5 + rot: 3.141592653589793 rad + pos: 39.5,-55.5 parent: 2 - uid: 8617 components: - type: Transform - pos: 30.5,-38.5 + rot: 3.141592653589793 rad + pos: 48.5,-56.5 parent: 2 - uid: 8618 components: - type: Transform - pos: 29.5,-38.5 + rot: 3.141592653589793 rad + pos: 49.5,-56.5 parent: 2 - uid: 8619 components: - type: Transform - pos: 28.5,-38.5 + rot: -1.5707963267948966 rad + pos: -3.5,43.5 parent: 2 - uid: 8620 components: - type: Transform - pos: 27.5,-38.5 + rot: 3.141592653589793 rad + pos: 1.5,1.5 parent: 2 - uid: 8621 components: - type: Transform - pos: 103.5,-26.5 + rot: 1.5707963267948966 rad + pos: -14.5,8.5 parent: 2 - uid: 8622 components: - type: Transform - pos: 34.5,-40.5 + rot: 1.5707963267948966 rad + pos: -22.5,25.5 parent: 2 + - uid: 40774 + components: + - type: Transform + pos: 59.5,61.5 + parent: 40599 + - uid: 40775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,72.5 + parent: 40599 + - uid: 40776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,52.5 + parent: 40599 + - uid: 40777 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.5,52.5 + parent: 40599 + - uid: 40778 + components: + - type: Transform + pos: 49.5,75.5 + parent: 40599 + - uid: 40779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,75.5 + parent: 40599 + - uid: 40780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,68.5 + parent: 40599 +- proto: ButtonFrameCautionSecurity + entities: - uid: 8623 components: - type: Transform - pos: 23.5,-30.5 + rot: 3.141592653589793 rad + pos: -42.5,-10.5 parent: 2 - uid: 8624 components: - type: Transform - pos: 18.5,-36.5 + rot: 3.141592653589793 rad + pos: -40.5,-10.5 parent: 2 - uid: 8625 components: - type: Transform - pos: 18.5,-37.5 + pos: -109.0268,22.843567 parent: 2 - uid: 8626 components: - type: Transform - pos: 18.5,-38.5 + rot: -1.5707963267948966 rad + pos: -20.5,20.5 parent: 2 - uid: 8627 components: - type: Transform - pos: 18.5,-39.5 + rot: -1.5707963267948966 rad + pos: -20.5,18.5 parent: 2 + - uid: 40781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,67.5 + parent: 40599 + - uid: 40782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,77.5 + parent: 40599 + - uid: 40783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,77.5 + parent: 40599 +- proto: ButtonFrameExit + entities: - uid: 8628 components: - type: Transform - pos: 18.5,-40.5 + pos: 11.5,-10.5 parent: 2 +- proto: ButtonFrameGrey + entities: - uid: 8629 components: - type: Transform - pos: 17.5,-40.5 + rot: 3.141592653589793 rad + pos: -0.5,17.5 parent: 2 + - uid: 40784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,73.5 + parent: 40599 +- proto: ButtonFrameJanitor + entities: - uid: 8630 components: - type: Transform - pos: 16.5,-40.5 + rot: 3.141592653589793 rad + pos: -35.5,-5.5 parent: 2 - uid: 8631 components: - type: Transform - pos: 15.5,-40.5 + rot: -1.5707963267948966 rad + pos: 29.5,-37.5 parent: 2 - uid: 8632 components: - type: Transform - pos: 19.5,-40.5 + pos: -2.501377,-34.969223 parent: 2 - uid: 8633 components: - type: Transform - pos: 18.5,-42.5 + pos: 1.319261,38.75961 parent: 2 - uid: 8634 components: - type: Transform - pos: 18.5,-43.5 + rot: 1.5707963267948966 rad + pos: 64.5,-32.5 parent: 2 - uid: 8635 components: - type: Transform - pos: 19.5,-47.5 + pos: -4.5,3.5 parent: 2 - uid: 8636 components: - type: Transform - pos: 18.5,-48.5 + pos: 35.5,25.5 parent: 2 +- proto: CabbageSeeds + entities: - uid: 8637 components: - type: Transform - pos: 20.5,-47.5 + pos: -74.6183,13.249689 parent: 2 +- proto: CableApcExtension + entities: - uid: 8638 components: - type: Transform - pos: 31.5,-50.5 + pos: -18.5,57.5 parent: 2 - uid: 8639 components: - type: Transform - pos: 31.5,-51.5 + pos: -5.5,21.5 parent: 2 - uid: 8640 components: - type: Transform - pos: 28.5,-54.5 + pos: 45.5,-10.5 parent: 2 - uid: 8641 components: - type: Transform - pos: 28.5,-55.5 + pos: 48.5,-11.5 parent: 2 - uid: 8642 components: - type: Transform - pos: 28.5,-56.5 + pos: -25.5,44.5 parent: 2 - uid: 8643 components: - type: Transform - pos: 29.5,-56.5 + pos: 87.5,-43.5 parent: 2 - uid: 8644 components: - type: Transform - pos: 30.5,-56.5 + pos: -114.5,20.5 parent: 2 - uid: 8645 components: - type: Transform - pos: 31.5,-52.5 + pos: -58.5,63.5 parent: 2 - uid: 8646 components: - type: Transform - pos: 21.5,-47.5 + pos: 28.5,-46.5 parent: 2 - uid: 8647 components: - type: Transform - pos: 22.5,-47.5 + pos: -9.5,-10.5 parent: 2 - uid: 8648 components: - type: Transform - pos: 23.5,-47.5 + pos: -12.5,-9.5 parent: 2 - uid: 8649 components: - type: Transform - pos: 24.5,-47.5 + pos: 44.5,29.5 parent: 2 - uid: 8650 components: - type: Transform - pos: 25.5,-47.5 + pos: 57.5,-41.5 parent: 2 - uid: 8651 components: - type: Transform - pos: 26.5,-47.5 + pos: 61.5,-38.5 parent: 2 - uid: 8652 components: - type: Transform - pos: 27.5,-47.5 + pos: 47.5,-10.5 parent: 2 - uid: 8653 components: - type: Transform - pos: 28.5,-47.5 + pos: 52.5,-13.5 parent: 2 - uid: 8654 components: - type: Transform - pos: 29.5,-47.5 + pos: 61.5,-4.5 parent: 2 - uid: 8655 components: - type: Transform - pos: 30.5,-47.5 + pos: 61.5,-5.5 parent: 2 - uid: 8656 components: - type: Transform - pos: 31.5,-47.5 + pos: 61.5,-6.5 parent: 2 - uid: 8657 components: - type: Transform - pos: 32.5,-47.5 + pos: 55.5,-5.5 parent: 2 - uid: 8658 components: - type: Transform - pos: 26.5,-46.5 + pos: 59.5,7.5 parent: 2 - uid: 8659 components: - type: Transform - pos: 23.5,-48.5 + pos: 61.5,-10.5 parent: 2 - uid: 8660 components: - type: Transform - pos: 23.5,-49.5 + pos: 61.5,-11.5 parent: 2 - uid: 8661 components: - type: Transform - pos: 23.5,-50.5 + pos: 59.5,8.5 parent: 2 - uid: 8662 components: - type: Transform - pos: 23.5,-51.5 + pos: 61.5,-7.5 parent: 2 - uid: 8663 components: - type: Transform - pos: 18.5,-46.5 + pos: 61.5,-9.5 parent: 2 - uid: 8664 components: - type: Transform - pos: 18.5,-47.5 + pos: 61.5,-8.5 parent: 2 - uid: 8665 components: - type: Transform - pos: 18.5,-45.5 + pos: 60.5,-11.5 parent: 2 - uid: 8666 components: - type: Transform - pos: 18.5,-44.5 + pos: 58.5,-11.5 parent: 2 - uid: 8667 components: - type: Transform - pos: 23.5,-52.5 + pos: 59.5,-11.5 parent: 2 - uid: 8668 components: - type: Transform - pos: 23.5,-53.5 + pos: 57.5,-11.5 parent: 2 - uid: 8669 components: - type: Transform - pos: 22.5,-39.5 + pos: 62.5,-4.5 parent: 2 - uid: 8670 components: - type: Transform - pos: 22.5,-40.5 + pos: 60.5,7.5 parent: 2 - uid: 8671 components: - type: Transform - pos: 22.5,-41.5 + pos: 61.5,7.5 parent: 2 - uid: 8672 components: - type: Transform - pos: 22.5,-42.5 + pos: 61.5,10.5 parent: 2 - uid: 8673 components: - type: Transform - pos: 23.5,-42.5 + pos: 61.5,11.5 parent: 2 - uid: 8674 components: - type: Transform - pos: 24.5,-42.5 + pos: 62.5,11.5 parent: 2 - uid: 8675 components: - type: Transform - pos: 25.5,-42.5 + pos: 63.5,11.5 parent: 2 - uid: 8676 components: - type: Transform - pos: 26.5,-42.5 + pos: 61.5,6.5 parent: 2 - uid: 8677 components: - type: Transform - pos: 39.5,-44.5 + pos: 62.5,6.5 parent: 2 - uid: 8678 components: - type: Transform - pos: 39.5,-45.5 + pos: 63.5,6.5 parent: 2 - uid: 8679 components: - type: Transform - pos: 39.5,-46.5 + pos: 64.5,6.5 parent: 2 - uid: 8680 components: - type: Transform - pos: 39.5,-47.5 + pos: 65.5,6.5 parent: 2 - uid: 8681 components: - type: Transform - pos: 42.5,-48.5 + pos: 66.5,6.5 parent: 2 - uid: 8682 components: - type: Transform - pos: 42.5,-47.5 + pos: 58.5,7.5 parent: 2 - uid: 8683 components: - type: Transform - pos: 36.5,-47.5 + pos: 57.5,7.5 parent: 2 - uid: 8684 components: - type: Transform - pos: 52.5,-54.5 + pos: 56.5,7.5 parent: 2 - uid: 8685 components: - type: Transform - pos: 51.5,-54.5 + pos: 55.5,7.5 parent: 2 - uid: 8686 components: - type: Transform - pos: 50.5,-54.5 + pos: 54.5,7.5 parent: 2 - uid: 8687 components: - type: Transform - pos: 49.5,-54.5 + pos: 53.5,7.5 parent: 2 - uid: 8688 components: - type: Transform - pos: 48.5,-54.5 + pos: 52.5,7.5 parent: 2 - uid: 8689 components: - type: Transform - pos: 47.5,-54.5 + pos: 52.5,10.5 parent: 2 - uid: 8690 components: - type: Transform - pos: 46.5,-54.5 + pos: 52.5,11.5 parent: 2 - uid: 8691 components: - type: Transform - pos: 44.5,-53.5 + pos: 51.5,11.5 parent: 2 - uid: 8692 components: - type: Transform - pos: 43.5,-53.5 + pos: 50.5,11.5 parent: 2 - uid: 8693 components: - type: Transform - pos: 43.5,-52.5 + pos: 56.5,10.5 parent: 2 - uid: 8694 components: - type: Transform - pos: 50.5,-52.5 + pos: 57.5,10.5 parent: 2 - uid: 8695 components: - type: Transform - pos: 50.5,-51.5 + pos: 57.5,11.5 parent: 2 - uid: 8696 components: - type: Transform - pos: 50.5,-50.5 + pos: 57.5,12.5 parent: 2 - uid: 8697 components: - type: Transform - pos: 51.5,-55.5 + pos: 56.5,6.5 parent: 2 - uid: 8698 components: - type: Transform - pos: 51.5,-56.5 + pos: 56.5,5.5 parent: 2 - uid: 8699 components: - type: Transform - pos: 51.5,-57.5 + pos: 56.5,4.5 parent: 2 - uid: 8700 components: - type: Transform - pos: 46.5,-55.5 + pos: 56.5,3.5 parent: 2 - uid: 8701 components: - type: Transform - pos: 46.5,-56.5 + pos: 56.5,2.5 parent: 2 - uid: 8702 components: - type: Transform - pos: 46.5,-57.5 + pos: 56.5,1.5 parent: 2 - uid: 8703 components: - type: Transform - pos: 37.5,-52.5 + pos: 56.5,0.5 parent: 2 - uid: 8704 components: - type: Transform - pos: 37.5,-53.5 + pos: 56.5,-0.5 parent: 2 - uid: 8705 components: - type: Transform - pos: 38.5,-53.5 + pos: 56.5,-1.5 parent: 2 - uid: 8706 components: - type: Transform - pos: 39.5,-53.5 + pos: 56.5,-2.5 parent: 2 - uid: 8707 components: - type: Transform - pos: 37.5,-54.5 + pos: 56.5,-5.5 parent: 2 - uid: 8708 components: - type: Transform - pos: -28.5,-41.5 + pos: 54.5,-5.5 parent: 2 - uid: 8709 components: - type: Transform - pos: -28.5,-40.5 + pos: 55.5,2.5 parent: 2 - uid: 8710 components: - type: Transform - pos: -28.5,-39.5 + pos: 54.5,2.5 parent: 2 - uid: 8711 components: - type: Transform - pos: -28.5,-38.5 + pos: 53.5,2.5 parent: 2 - uid: 8712 components: - type: Transform - pos: -22.5,-41.5 + pos: 49.5,-0.5 parent: 2 - uid: 8713 components: - type: Transform - pos: -22.5,-43.5 + pos: 48.5,-0.5 parent: 2 - uid: 8714 components: - type: Transform - pos: -22.5,-42.5 + pos: 50.5,-0.5 parent: 2 - uid: 8715 components: - type: Transform - pos: -21.5,-37.5 + pos: 51.5,-0.5 parent: 2 - uid: 8716 components: - type: Transform - pos: -22.5,-40.5 + pos: 52.5,-0.5 parent: 2 - uid: 8717 components: - type: Transform - pos: -22.5,-39.5 + pos: 53.5,-0.5 parent: 2 - uid: 8718 components: - type: Transform - pos: -22.5,-38.5 + pos: 54.5,-0.5 parent: 2 - uid: 8719 components: - type: Transform - pos: -21.5,-38.5 + pos: 55.5,-0.5 parent: 2 - uid: 8720 components: - type: Transform - pos: -21.5,-36.5 + pos: 61.5,5.5 parent: 2 - uid: 8721 components: - type: Transform - pos: -21.5,-35.5 + pos: 61.5,4.5 parent: 2 - uid: 8722 components: - type: Transform - pos: -21.5,-41.5 + pos: 61.5,3.5 parent: 2 - uid: 8723 components: - type: Transform - pos: -20.5,-41.5 + pos: 61.5,2.5 parent: 2 - uid: 8724 components: - type: Transform - pos: -12.5,-35.5 + pos: 61.5,1.5 parent: 2 - uid: 8725 components: - type: Transform - pos: -12.5,-36.5 + pos: 61.5,0.5 parent: 2 - uid: 8726 components: - type: Transform - pos: -13.5,-36.5 + pos: 61.5,-0.5 parent: 2 - uid: 8727 components: - type: Transform - pos: -14.5,-36.5 + pos: 61.5,-1.5 parent: 2 - uid: 8728 components: - type: Transform - pos: -14.5,-37.5 + pos: 42.5,21.5 parent: 2 - uid: 8729 components: - type: Transform - pos: -14.5,-38.5 + pos: 38.5,25.5 parent: 2 - uid: 8730 components: - type: Transform - pos: -14.5,-39.5 + pos: 37.5,26.5 parent: 2 - uid: 8731 components: - type: Transform - pos: -14.5,-40.5 + pos: 46.5,25.5 parent: 2 - uid: 8732 components: - type: Transform - pos: -14.5,-41.5 + pos: 37.5,25.5 parent: 2 - uid: 8733 components: - type: Transform - pos: -23.5,-50.5 + pos: 46.5,23.5 parent: 2 - uid: 8734 components: - type: Transform - pos: -22.5,-50.5 + pos: 46.5,24.5 parent: 2 - uid: 8735 components: - type: Transform - pos: -19.5,-50.5 + pos: 46.5,18.5 parent: 2 - uid: 8736 components: - type: Transform - pos: -20.5,-50.5 + pos: 45.5,18.5 parent: 2 - uid: 8737 components: - type: Transform - pos: -21.5,-48.5 + pos: 44.5,18.5 parent: 2 - uid: 8738 components: - type: Transform - pos: -21.5,-49.5 + pos: 47.5,20.5 parent: 2 - uid: 8739 components: - type: Transform - pos: -21.5,-50.5 + pos: 47.5,22.5 parent: 2 - uid: 8740 components: - type: Transform - pos: -24.5,-50.5 + pos: 43.5,18.5 parent: 2 - uid: 8741 components: - type: Transform - pos: -25.5,-50.5 + pos: 47.5,21.5 parent: 2 - uid: 8742 components: - type: Transform - pos: -17.5,-45.5 + pos: 47.5,19.5 parent: 2 - uid: 8743 components: - type: Transform - pos: -17.5,-44.5 + pos: 46.5,22.5 parent: 2 - uid: 8744 components: - type: Transform - pos: -17.5,-43.5 + pos: 47.5,18.5 parent: 2 - uid: 8745 components: - type: Transform - pos: -16.5,-45.5 + pos: 42.5,20.5 parent: 2 - uid: 8746 components: - type: Transform - pos: -15.5,-45.5 + pos: 42.5,18.5 parent: 2 - uid: 8747 components: - type: Transform - pos: -14.5,-45.5 + pos: 42.5,19.5 parent: 2 - uid: 8748 components: - type: Transform - pos: -13.5,-45.5 + pos: 1.5,10.5 parent: 2 - uid: 8749 components: - type: Transform - pos: -18.5,-45.5 + pos: 26.5,8.5 parent: 2 - uid: 8750 components: - type: Transform - pos: -19.5,-45.5 + pos: 56.5,-16.5 parent: 2 - uid: 8751 components: - type: Transform - pos: -20.5,-45.5 + pos: 57.5,-12.5 parent: 2 - uid: 8752 components: - type: Transform - pos: -21.5,-45.5 + pos: 57.5,-13.5 parent: 2 - uid: 8753 components: - type: Transform - pos: -22.5,-45.5 + pos: 53.5,-14.5 parent: 2 - uid: 8754 components: - type: Transform - pos: -23.5,-45.5 + pos: 57.5,-15.5 parent: 2 - uid: 8755 components: - type: Transform - pos: -24.5,-45.5 + pos: 57.5,-16.5 parent: 2 - uid: 8756 components: - type: Transform - pos: -25.5,-45.5 + pos: 57.5,-14.5 parent: 2 - uid: 8757 components: - type: Transform - pos: -26.5,-45.5 + pos: 55.5,-16.5 parent: 2 - uid: 8758 components: - type: Transform - pos: -27.5,-45.5 + pos: 61.5,-2.5 parent: 2 - uid: 8759 components: - type: Transform - pos: -28.5,-45.5 + pos: 50.5,12.5 parent: 2 - uid: 8760 components: - type: Transform - pos: -29.5,-45.5 + pos: 50.5,13.5 parent: 2 - uid: 8761 components: - type: Transform - pos: -21.5,-47.5 + pos: 56.5,14.5 parent: 2 - uid: 8762 components: - type: Transform - pos: -6.5,-61.5 + pos: 56.5,13.5 parent: 2 - uid: 8763 components: - type: Transform - pos: -15.5,-54.5 + pos: 56.5,12.5 parent: 2 - uid: 8764 components: - type: Transform - pos: 6.5,-54.5 + pos: 63.5,13.5 parent: 2 - uid: 8765 components: - type: Transform - pos: 7.5,-54.5 + pos: 63.5,12.5 parent: 2 - uid: 8766 components: - type: Transform - pos: 7.5,-55.5 + pos: 63.5,11.5 parent: 2 - uid: 8767 components: - type: Transform - pos: 7.5,-57.5 + pos: 53.5,-5.5 parent: 2 - uid: 8768 components: - type: Transform - pos: 7.5,-56.5 + pos: 53.5,-4.5 parent: 2 - uid: 8769 components: - type: Transform - pos: -14.5,-52.5 + pos: 53.5,-3.5 parent: 2 - uid: 8770 components: - type: Transform - pos: -14.5,-51.5 + pos: 37.5,-47.5 parent: 2 - uid: 8771 components: - type: Transform - pos: -13.5,-51.5 + pos: 38.5,-47.5 parent: 2 - uid: 8772 components: - type: Transform - pos: -12.5,-51.5 + pos: 53.5,-54.5 parent: 2 - uid: 8773 components: - type: Transform - pos: -11.5,-51.5 + pos: 24.5,52.5 parent: 2 - uid: 8774 components: - type: Transform - pos: -14.5,-50.5 + pos: 30.5,-53.5 parent: 2 - uid: 8775 components: - type: Transform - pos: -14.5,-49.5 + pos: 17.5,57.5 parent: 2 - uid: 8776 components: - type: Transform - pos: -14.5,-53.5 + pos: 16.5,57.5 parent: 2 - uid: 8777 components: - type: Transform - pos: -14.5,-54.5 + pos: 18.5,57.5 parent: 2 - uid: 8778 components: - type: Transform - pos: -14.5,-55.5 + pos: 19.5,50.5 parent: 2 - uid: 8779 components: - type: Transform - pos: -16.5,-54.5 + pos: 19.5,51.5 parent: 2 - uid: 8780 components: - type: Transform - pos: -17.5,-54.5 + pos: 15.5,58.5 parent: 2 - uid: 8781 components: - type: Transform - pos: -7.5,-57.5 + pos: 15.5,57.5 parent: 2 - uid: 8782 components: - type: Transform - pos: -7.5,-58.5 + pos: 15.5,59.5 parent: 2 - uid: 8783 components: - type: Transform - pos: -7.5,-59.5 + pos: 22.5,-33.5 parent: 2 - uid: 8784 components: - type: Transform - pos: -7.5,-60.5 + pos: 13.5,52.5 parent: 2 - uid: 8785 components: - type: Transform - pos: -7.5,-61.5 + pos: 28.5,-53.5 parent: 2 - uid: 8786 components: - type: Transform - pos: -11.5,-54.5 + pos: 14.5,57.5 parent: 2 - uid: 8787 components: - type: Transform - pos: -10.5,-54.5 + pos: 13.5,57.5 parent: 2 - uid: 8788 components: - type: Transform - pos: -9.5,-54.5 + pos: 12.5,57.5 parent: 2 - uid: 8789 components: - type: Transform - pos: -8.5,-54.5 + pos: 10.5,57.5 parent: 2 - uid: 8790 components: - type: Transform - pos: -7.5,-54.5 + pos: 9.5,57.5 parent: 2 - uid: 8791 components: - type: Transform - pos: -6.5,-54.5 + pos: 3.5,57.5 parent: 2 - uid: 8792 components: - type: Transform - pos: -5.5,-54.5 + pos: 8.5,57.5 parent: 2 - uid: 8793 components: - type: Transform - pos: -4.5,-54.5 + pos: 4.5,57.5 parent: 2 - uid: 8794 components: - type: Transform - pos: -3.5,-54.5 + pos: 7.5,57.5 parent: 2 - uid: 8795 components: - type: Transform - pos: -2.5,-54.5 + pos: 6.5,57.5 parent: 2 - uid: 8796 components: - type: Transform - pos: 1.5,-54.5 + pos: 5.5,57.5 parent: 2 - uid: 8797 components: - type: Transform - pos: 0.5,-61.5 + pos: 11.5,62.5 parent: 2 - uid: 8798 components: - type: Transform - pos: -5.5,-61.5 + pos: 31.5,-53.5 parent: 2 - uid: 8799 components: - type: Transform - pos: -4.5,-61.5 + pos: 11.5,63.5 parent: 2 - uid: 8800 components: - type: Transform - pos: -3.5,-61.5 + pos: 10.5,63.5 parent: 2 - uid: 8801 components: - type: Transform - pos: -2.5,-61.5 + pos: 12.5,63.5 parent: 2 - uid: 8802 components: - type: Transform - pos: -1.5,-61.5 + pos: 11.5,62.5 parent: 2 - uid: 8803 components: - type: Transform - pos: -0.5,-61.5 + pos: 11.5,61.5 parent: 2 - uid: 8804 components: - type: Transform - pos: 1.5,-61.5 + pos: 10.5,61.5 parent: 2 - uid: 8805 components: - type: Transform - pos: -8.5,-61.5 + pos: 12.5,61.5 parent: 2 - uid: 8806 components: - type: Transform - pos: -9.5,-61.5 + pos: 19.5,65.5 parent: 2 - uid: 8807 components: - type: Transform - pos: -10.5,-61.5 + pos: 19.5,64.5 parent: 2 - uid: 8808 components: - type: Transform - pos: -11.5,-61.5 + pos: 19.5,63.5 parent: 2 - uid: 8809 components: - type: Transform - pos: -12.5,-61.5 + pos: 19.5,62.5 parent: 2 - uid: 8810 components: - type: Transform - pos: -13.5,-61.5 + pos: 25.5,59.5 parent: 2 - uid: 8811 components: - type: Transform - pos: -14.5,-61.5 + pos: 26.5,57.5 parent: 2 - uid: 8812 components: - type: Transform - pos: -15.5,-61.5 + pos: 25.5,58.5 parent: 2 - uid: 8813 components: - type: Transform - pos: -16.5,-61.5 + pos: 25.5,57.5 parent: 2 - uid: 8814 components: - type: Transform - pos: -17.5,-61.5 + pos: 27.5,57.5 parent: 2 - uid: 8815 components: - type: Transform - pos: 2.5,-61.5 + pos: 28.5,57.5 parent: 2 - uid: 8816 components: - type: Transform - pos: 3.5,-61.5 + pos: 28.5,58.5 parent: 2 - uid: 8817 components: - type: Transform - pos: 4.5,-61.5 + pos: 28.5,59.5 parent: 2 - uid: 8818 components: - type: Transform - pos: -14.5,-60.5 + pos: 24.5,50.5 parent: 2 - uid: 8819 components: - type: Transform - pos: -14.5,-59.5 + pos: 24.5,51.5 parent: 2 - uid: 8820 components: - type: Transform - pos: -14.5,-58.5 + pos: 29.5,-53.5 parent: 2 - uid: 8821 components: - type: Transform - pos: 1.5,-59.5 + pos: 13.5,49.5 parent: 2 - uid: 8822 components: - type: Transform - pos: 1.5,-58.5 + pos: 13.5,51.5 parent: 2 - uid: 8823 components: - type: Transform - pos: 5.5,-54.5 + pos: 13.5,50.5 parent: 2 - uid: 8824 components: - type: Transform - pos: 4.5,-54.5 + pos: 1.5,-60.5 parent: 2 - uid: 8825 components: - type: Transform - pos: 3.5,-54.5 + pos: 2.5,-49.5 parent: 2 - uid: 8826 components: - type: Transform - pos: 2.5,-54.5 + pos: 23.5,-31.5 parent: 2 - uid: 8827 components: - type: Transform - pos: -0.5,-44.5 + pos: 23.5,-32.5 parent: 2 - uid: 8828 components: - type: Transform - pos: -1.5,-44.5 + pos: 23.5,-33.5 parent: 2 - uid: 8829 components: - type: Transform - pos: -1.5,-43.5 + pos: 23.5,-34.5 parent: 2 - uid: 8830 components: - type: Transform - pos: -1.5,-42.5 + pos: 23.5,-35.5 parent: 2 - uid: 8831 components: - type: Transform - pos: -1.5,-41.5 + pos: 23.5,-36.5 parent: 2 - uid: 8832 components: - type: Transform - pos: -0.5,-41.5 + pos: 22.5,-37.5 parent: 2 - uid: 8833 components: - type: Transform - pos: 0.5,-41.5 + pos: 21.5,-33.5 parent: 2 - uid: 8834 components: - type: Transform - pos: 1.5,-42.5 + pos: 20.5,-33.5 parent: 2 - uid: 8835 components: - type: Transform - pos: 1.5,-41.5 + pos: 19.5,-33.5 parent: 2 - uid: 8836 components: - type: Transform - pos: 2.5,-42.5 + pos: 18.5,-33.5 parent: 2 - uid: 8837 components: - type: Transform - pos: 3.5,-42.5 + pos: 17.5,-33.5 parent: 2 - uid: 8838 components: - type: Transform - pos: 4.5,-42.5 + pos: 50.5,-53.5 parent: 2 - uid: 8839 components: - type: Transform - pos: 5.5,-42.5 + pos: 22.5,-38.5 parent: 2 - uid: 8840 components: - type: Transform - pos: 6.5,-42.5 + pos: 22.5,-36.5 parent: 2 - uid: 8841 components: - type: Transform - pos: -2.5,-44.5 + pos: 33.5,-40.5 parent: 2 - uid: 8842 components: - type: Transform - pos: -3.5,-44.5 + pos: 32.5,-40.5 parent: 2 - uid: 8843 components: - type: Transform - pos: -4.5,-44.5 + pos: 103.5,-21.5 parent: 2 - uid: 8844 components: - type: Transform - pos: -4.5,-48.5 + pos: 103.5,-22.5 parent: 2 - uid: 8845 components: - type: Transform - pos: -4.5,-47.5 + pos: 103.5,-23.5 parent: 2 - uid: 8846 components: - type: Transform - pos: -4.5,-46.5 + pos: 103.5,-24.5 parent: 2 - uid: 8847 components: - type: Transform - pos: -4.5,-45.5 + pos: 103.5,-25.5 parent: 2 - uid: 8848 components: - type: Transform - pos: -4.5,-41.5 + pos: 32.5,-41.5 parent: 2 - uid: 8849 components: - type: Transform - pos: -4.5,-42.5 + pos: 32.5,-42.5 parent: 2 - uid: 8850 components: - type: Transform - pos: -5.5,-41.5 + pos: 103.5,-20.5 parent: 2 - uid: 8851 components: - type: Transform - pos: -5.5,-40.5 + pos: 32.5,-39.5 parent: 2 - uid: 8852 components: - type: Transform - pos: -5.5,-39.5 + pos: 32.5,-38.5 parent: 2 - uid: 8853 components: - type: Transform - pos: -5.5,-38.5 + pos: 31.5,-38.5 parent: 2 - uid: 8854 components: - type: Transform - pos: -5.5,-37.5 + pos: 30.5,-38.5 parent: 2 - uid: 8855 components: - type: Transform - pos: -4.5,-37.5 + pos: 29.5,-38.5 parent: 2 - uid: 8856 components: - type: Transform - pos: -3.5,-37.5 + pos: 28.5,-38.5 parent: 2 - uid: 8857 components: - type: Transform - pos: 5.5,-46.5 + pos: 27.5,-38.5 parent: 2 - uid: 8858 components: - type: Transform - pos: 4.5,-46.5 + pos: 103.5,-26.5 parent: 2 - uid: 8859 components: - type: Transform - pos: 3.5,-46.5 + pos: 34.5,-40.5 parent: 2 - uid: 8860 components: - type: Transform - pos: 2.5,-46.5 + pos: 23.5,-30.5 parent: 2 - uid: 8861 components: - type: Transform - pos: 2.5,-50.5 + pos: 18.5,-36.5 parent: 2 - uid: 8862 components: - type: Transform - pos: 2.5,-48.5 + pos: 18.5,-37.5 parent: 2 - uid: 8863 components: - type: Transform - pos: 2.5,-47.5 + pos: 18.5,-38.5 parent: 2 - uid: 8864 components: - type: Transform - pos: 3.5,-50.5 + pos: 18.5,-39.5 parent: 2 - uid: 8865 components: - type: Transform - pos: 4.5,-50.5 + pos: 18.5,-40.5 parent: 2 - uid: 8866 components: - type: Transform - pos: 5.5,-50.5 + pos: 17.5,-40.5 parent: 2 - uid: 8867 components: - type: Transform - pos: 6.5,-50.5 + pos: 16.5,-40.5 parent: 2 - uid: 8868 components: - type: Transform - pos: 7.5,-50.5 + pos: 15.5,-40.5 parent: 2 - uid: 8869 components: - type: Transform - pos: 7.5,-49.5 + pos: 19.5,-40.5 parent: 2 - uid: 8870 components: - type: Transform - pos: 7.5,-48.5 + pos: 18.5,-42.5 parent: 2 - uid: 8871 components: - type: Transform - pos: 8.5,-50.5 + pos: 18.5,-43.5 parent: 2 - uid: 8872 components: - type: Transform - pos: 9.5,-50.5 + pos: 19.5,-47.5 parent: 2 - uid: 8873 components: - type: Transform - pos: 10.5,-50.5 + pos: 18.5,-48.5 parent: 2 - uid: 8874 components: - type: Transform - pos: 11.5,-50.5 + pos: 20.5,-47.5 parent: 2 - uid: 8875 components: - type: Transform - pos: 1.5,-62.5 + pos: 31.5,-50.5 parent: 2 - uid: 8876 components: - type: Transform - pos: -7.5,-62.5 + pos: 31.5,-51.5 parent: 2 - uid: 8877 components: - type: Transform - pos: -14.5,-62.5 + pos: 28.5,-54.5 parent: 2 - uid: 8878 components: - type: Transform - pos: -18.5,-61.5 + pos: 28.5,-55.5 parent: 2 - uid: 8879 components: - type: Transform - pos: -18.5,-62.5 + pos: 28.5,-56.5 parent: 2 - uid: 8880 components: - type: Transform - pos: -18.5,-63.5 + pos: 29.5,-56.5 parent: 2 - uid: 8881 components: - type: Transform - pos: 1.5,-63.5 + pos: 30.5,-56.5 parent: 2 - uid: 8882 components: - type: Transform - pos: -2.5,-62.5 + pos: 31.5,-52.5 parent: 2 - uid: 8883 components: - type: Transform - pos: -2.5,-60.5 + pos: 21.5,-47.5 parent: 2 - uid: 8884 components: - type: Transform - pos: -18.5,-60.5 + pos: 22.5,-47.5 parent: 2 - uid: 8885 components: - type: Transform - pos: 69.5,-10.5 + pos: 23.5,-47.5 parent: 2 - uid: 8886 components: - type: Transform - pos: 59.5,-38.5 + pos: 24.5,-47.5 parent: 2 - uid: 8887 components: - type: Transform - pos: 67.5,-36.5 + pos: 25.5,-47.5 parent: 2 - uid: 8888 components: - type: Transform - pos: 66.5,-36.5 + pos: 26.5,-47.5 parent: 2 - uid: 8889 components: - type: Transform - pos: 57.5,-31.5 + pos: 27.5,-47.5 parent: 2 - uid: 8890 components: - type: Transform - pos: 57.5,-33.5 + pos: 28.5,-47.5 parent: 2 - uid: 8891 components: - type: Transform - pos: 58.5,-30.5 + pos: 29.5,-47.5 parent: 2 - uid: 8892 components: - type: Transform - pos: 54.5,-31.5 + pos: 30.5,-47.5 parent: 2 - uid: 8893 components: - type: Transform - pos: -27.5,51.5 + pos: 31.5,-47.5 parent: 2 - uid: 8894 components: - type: Transform - pos: 68.5,-33.5 + pos: 32.5,-47.5 parent: 2 - uid: 8895 components: - type: Transform - pos: 75.5,-45.5 + pos: 26.5,-46.5 parent: 2 - uid: 8896 components: - type: Transform - pos: 75.5,-44.5 + pos: 23.5,-48.5 parent: 2 - uid: 8897 components: - type: Transform - pos: 75.5,-43.5 + pos: 23.5,-49.5 parent: 2 - uid: 8898 components: - type: Transform - pos: 57.5,-32.5 + pos: 23.5,-50.5 parent: 2 - uid: 8899 components: - type: Transform - pos: 55.5,-31.5 + pos: 23.5,-51.5 parent: 2 - uid: 8900 components: - type: Transform - pos: 56.5,-31.5 + pos: 18.5,-46.5 parent: 2 - uid: 8901 components: - type: Transform - pos: 57.5,-34.5 + pos: 18.5,-47.5 parent: 2 - uid: 8902 components: - type: Transform - pos: 58.5,-31.5 + pos: 18.5,-45.5 parent: 2 - uid: 8903 components: - type: Transform - pos: 68.5,-36.5 + pos: 18.5,-44.5 parent: 2 - uid: 8904 components: - type: Transform - pos: 54.5,-41.5 + pos: 23.5,-52.5 parent: 2 - uid: 8905 components: - type: Transform - pos: 67.5,-33.5 + pos: 23.5,-53.5 parent: 2 - uid: 8906 components: - type: Transform - pos: 66.5,-32.5 + pos: 22.5,-39.5 parent: 2 - uid: 8907 components: - type: Transform - pos: 66.5,-33.5 + pos: 22.5,-40.5 parent: 2 - uid: 8908 components: - type: Transform - pos: 66.5,-31.5 + pos: 22.5,-41.5 parent: 2 - uid: 8909 components: - type: Transform - pos: 66.5,-30.5 + pos: 22.5,-42.5 parent: 2 - uid: 8910 components: - type: Transform - pos: 60.5,-38.5 + pos: 23.5,-42.5 parent: 2 - uid: 8911 components: - type: Transform - pos: 55.5,-41.5 + pos: 24.5,-42.5 parent: 2 - uid: 8912 components: - type: Transform - pos: 53.5,-41.5 + pos: 25.5,-42.5 parent: 2 - uid: 8913 components: - type: Transform - pos: 59.5,-39.5 + pos: 26.5,-42.5 parent: 2 - uid: 8914 components: - type: Transform - pos: 62.5,-37.5 + pos: 39.5,-44.5 parent: 2 - uid: 8915 components: - type: Transform - pos: 62.5,-38.5 + pos: 39.5,-45.5 parent: 2 - uid: 8916 components: - type: Transform - pos: 61.5,-43.5 + pos: 39.5,-46.5 parent: 2 - uid: 8917 components: - type: Transform - pos: 60.5,-43.5 + pos: 39.5,-47.5 parent: 2 - uid: 8918 components: - type: Transform - pos: 62.5,-43.5 + pos: 42.5,-48.5 parent: 2 - uid: 8919 components: - type: Transform - pos: 62.5,-44.5 + pos: 42.5,-47.5 parent: 2 - uid: 8920 components: - type: Transform - pos: 58.5,-41.5 + pos: 36.5,-47.5 parent: 2 - uid: 8921 components: - type: Transform - pos: 56.5,-43.5 + pos: 52.5,-54.5 parent: 2 - uid: 8922 components: - type: Transform - pos: 58.5,-34.5 + pos: 51.5,-54.5 parent: 2 - uid: 8923 components: - type: Transform - pos: 56.5,-42.5 + pos: 50.5,-54.5 parent: 2 - uid: 8924 components: - type: Transform - pos: 59.5,-41.5 + pos: 49.5,-54.5 parent: 2 - uid: 8925 components: - type: Transform - pos: -2.5,61.5 + pos: 48.5,-54.5 parent: 2 - uid: 8926 components: - type: Transform - pos: 59.5,-42.5 + pos: 47.5,-54.5 parent: 2 - uid: 8927 components: - type: Transform - pos: 59.5,-40.5 + pos: 46.5,-54.5 parent: 2 - uid: 8928 components: - type: Transform - pos: 55.5,-38.5 + pos: 44.5,-53.5 parent: 2 - uid: 8929 components: - type: Transform - pos: 59.5,-43.5 + pos: 43.5,-53.5 parent: 2 - uid: 8930 components: - type: Transform - pos: 56.5,-41.5 + pos: 43.5,-52.5 parent: 2 - uid: 8931 components: - type: Transform - pos: 55.5,-40.5 + pos: 50.5,-52.5 parent: 2 - uid: 8932 components: - type: Transform - pos: 55.5,-39.5 + pos: 50.5,-51.5 parent: 2 - uid: 8933 components: - type: Transform - pos: 68.5,-51.5 + pos: 50.5,-50.5 parent: 2 - uid: 8934 components: - type: Transform - pos: 68.5,-53.5 + pos: 51.5,-55.5 parent: 2 - uid: 8935 components: - type: Transform - pos: -21.5,49.5 + pos: 51.5,-56.5 parent: 2 - uid: 8936 components: - type: Transform - pos: 68.5,-48.5 + pos: 51.5,-57.5 parent: 2 - uid: 8937 components: - type: Transform - pos: 66.5,-46.5 + pos: 46.5,-55.5 parent: 2 - uid: 8938 components: - type: Transform - pos: 68.5,-49.5 + pos: 46.5,-56.5 parent: 2 - uid: 8939 components: - type: Transform - pos: 68.5,-50.5 + pos: 46.5,-57.5 parent: 2 - uid: 8940 components: - type: Transform - pos: 63.5,-46.5 + pos: 37.5,-52.5 parent: 2 - uid: 8941 components: - type: Transform - pos: 85.5,-43.5 + pos: 37.5,-53.5 parent: 2 - uid: 8942 components: - type: Transform - pos: 68.5,-47.5 + pos: 38.5,-53.5 parent: 2 - uid: 8943 components: - type: Transform - pos: 69.5,-46.5 + pos: 39.5,-53.5 parent: 2 - uid: 8944 components: - type: Transform - pos: 68.5,-52.5 + pos: 37.5,-54.5 parent: 2 - uid: 8945 components: - type: Transform - pos: 77.5,-45.5 + pos: -28.5,-41.5 parent: 2 - uid: 8946 components: - type: Transform - pos: 78.5,-45.5 + pos: -28.5,-40.5 parent: 2 - uid: 8947 components: - type: Transform - pos: 69.5,-45.5 + pos: -28.5,-39.5 parent: 2 - uid: 8948 components: - type: Transform - pos: 84.5,-44.5 + pos: -28.5,-38.5 parent: 2 - uid: 8949 components: - type: Transform - pos: 83.5,-44.5 + pos: -22.5,-41.5 parent: 2 - uid: 8950 components: - type: Transform - pos: 69.5,-44.5 + pos: -22.5,-43.5 parent: 2 - uid: 8951 components: - type: Transform - pos: 69.5,-43.5 + pos: -22.5,-42.5 parent: 2 - uid: 8952 components: - type: Transform - pos: 69.5,-42.5 + pos: -21.5,-37.5 parent: 2 - uid: 8953 components: - type: Transform - pos: -4.5,61.5 + pos: -22.5,-40.5 parent: 2 - uid: 8954 components: - type: Transform - pos: -4.5,62.5 + pos: -22.5,-39.5 parent: 2 - uid: 8955 components: - type: Transform - pos: -6.5,67.5 + pos: -22.5,-38.5 parent: 2 - uid: 8956 components: - type: Transform - pos: 67.5,-34.5 + pos: -21.5,-38.5 parent: 2 - uid: 8957 components: - type: Transform - pos: -19.5,58.5 + pos: -21.5,-36.5 parent: 2 - uid: 8958 components: - type: Transform - pos: -19.5,59.5 + pos: -21.5,-35.5 parent: 2 - uid: 8959 components: - type: Transform - pos: -1.5,61.5 + pos: -21.5,-41.5 parent: 2 - uid: 8960 components: - type: Transform - pos: -28.5,51.5 + pos: -20.5,-41.5 parent: 2 - uid: 8961 components: - type: Transform - pos: -3.5,61.5 + pos: -12.5,-35.5 parent: 2 - uid: 8962 components: - type: Transform - pos: -22.5,59.5 + pos: -12.5,-36.5 parent: 2 - uid: 8963 components: - type: Transform - pos: -21.5,59.5 + pos: -13.5,-36.5 parent: 2 - uid: 8964 components: - type: Transform - pos: -20.5,59.5 + pos: -14.5,-36.5 parent: 2 - uid: 8965 components: - type: Transform - pos: -11.5,69.5 + pos: -14.5,-37.5 parent: 2 - uid: 8966 components: - type: Transform - pos: -26.5,51.5 + pos: -14.5,-38.5 parent: 2 - uid: 8967 components: - type: Transform - pos: -25.5,51.5 + pos: -14.5,-39.5 parent: 2 - uid: 8968 components: - type: Transform - pos: -24.5,56.5 + pos: -14.5,-40.5 parent: 2 - uid: 8969 components: - type: Transform - pos: -22.5,50.5 + pos: -14.5,-41.5 parent: 2 - uid: 8970 components: - type: Transform - pos: -22.5,54.5 + pos: -23.5,-50.5 parent: 2 - uid: 8971 components: - type: Transform - pos: -23.5,49.5 + pos: -22.5,-50.5 parent: 2 - uid: 8972 components: - type: Transform - pos: -22.5,55.5 + pos: -19.5,-50.5 parent: 2 - uid: 8973 components: - type: Transform - pos: -24.5,51.5 + pos: -20.5,-50.5 parent: 2 - uid: 8974 components: - type: Transform - pos: -23.5,56.5 + pos: -21.5,-48.5 parent: 2 - uid: 8975 components: - type: Transform - pos: -22.5,49.5 + pos: -21.5,-49.5 parent: 2 - uid: 8976 components: - type: Transform - pos: -22.5,56.5 + pos: -21.5,-50.5 parent: 2 - uid: 8977 components: - type: Transform - pos: 70.5,-10.5 + pos: -24.5,-50.5 parent: 2 - uid: 8978 components: - type: Transform - pos: 84.5,-42.5 + pos: -25.5,-50.5 parent: 2 - uid: 8979 components: - type: Transform - pos: 74.5,-46.5 + pos: -17.5,-45.5 parent: 2 - uid: 8980 components: - type: Transform - pos: 84.5,-41.5 + pos: -17.5,-44.5 parent: 2 - uid: 8981 components: - type: Transform - pos: 79.5,-39.5 + pos: -17.5,-43.5 parent: 2 - uid: 8982 components: - type: Transform - pos: 73.5,-40.5 + pos: -16.5,-45.5 parent: 2 - uid: 8983 components: - type: Transform - pos: 72.5,-40.5 + pos: -15.5,-45.5 parent: 2 - uid: 8984 components: - type: Transform - pos: 75.5,-39.5 + pos: -14.5,-45.5 parent: 2 - uid: 8985 components: - type: Transform - pos: 73.5,-39.5 + pos: -13.5,-45.5 parent: 2 - uid: 8986 components: - type: Transform - pos: 75.5,-40.5 + pos: -18.5,-45.5 parent: 2 - uid: 8987 components: - type: Transform - pos: 78.5,-39.5 + pos: -19.5,-45.5 parent: 2 - uid: 8988 components: - type: Transform - pos: 80.5,-39.5 + pos: -20.5,-45.5 parent: 2 - uid: 8989 components: - type: Transform - pos: 77.5,-39.5 + pos: -21.5,-45.5 parent: 2 - uid: 8990 components: - type: Transform - pos: 84.5,-43.5 + pos: -22.5,-45.5 parent: 2 - uid: 8991 components: - type: Transform - pos: 84.5,-44.5 + pos: -23.5,-45.5 parent: 2 - uid: 8992 components: - type: Transform - pos: 76.5,-45.5 + pos: -24.5,-45.5 parent: 2 - uid: 8993 components: - type: Transform - pos: 75.5,-45.5 + pos: -25.5,-45.5 parent: 2 - uid: 8994 components: - type: Transform - pos: 62.5,-42.5 + pos: -26.5,-45.5 parent: 2 - uid: 8995 components: - type: Transform - pos: 73.5,-46.5 + pos: -27.5,-45.5 parent: 2 - uid: 8996 components: - type: Transform - pos: 62.5,-41.5 + pos: -28.5,-45.5 parent: 2 - uid: 8997 components: - type: Transform - pos: 86.5,-43.5 + pos: -29.5,-45.5 parent: 2 - uid: 8998 components: - type: Transform - pos: 0.5,62.5 + pos: -21.5,-47.5 parent: 2 - uid: 8999 components: - type: Transform - pos: 1.5,62.5 + pos: -6.5,-61.5 parent: 2 - uid: 9000 components: - type: Transform - pos: 66.5,-27.5 + pos: -15.5,-54.5 parent: 2 - uid: 9001 components: - type: Transform - pos: 81.5,-38.5 + pos: 6.5,-54.5 parent: 2 - uid: 9002 components: - type: Transform - pos: 67.5,-46.5 + pos: 7.5,-54.5 parent: 2 - uid: 9003 components: - type: Transform - pos: 75.5,-36.5 + pos: 7.5,-55.5 parent: 2 - uid: 9004 components: - type: Transform - pos: 68.5,-27.5 + pos: 7.5,-57.5 parent: 2 - uid: 9005 components: - type: Transform - pos: 74.5,-38.5 + pos: 7.5,-56.5 parent: 2 - uid: 9006 components: - type: Transform - pos: 69.5,-27.5 + pos: -14.5,-52.5 parent: 2 - uid: 9007 components: - type: Transform - pos: 65.5,-27.5 + pos: -14.5,-51.5 parent: 2 - uid: 9008 components: - type: Transform - pos: 75.5,-37.5 + pos: -13.5,-51.5 parent: 2 - uid: 9009 components: - type: Transform - pos: 73.5,-38.5 + pos: -12.5,-51.5 parent: 2 - uid: 9010 components: - type: Transform - pos: 64.5,-46.5 + pos: -11.5,-51.5 parent: 2 - uid: 9011 components: - type: Transform - pos: 79.5,-40.5 + pos: -14.5,-50.5 parent: 2 - uid: 9012 components: - type: Transform - pos: 69.5,-41.5 + pos: -14.5,-49.5 parent: 2 - uid: 9013 components: - type: Transform - pos: 81.5,-37.5 + pos: -14.5,-53.5 parent: 2 - uid: 9014 components: - type: Transform - pos: 75.5,-38.5 + pos: -14.5,-54.5 parent: 2 - uid: 9015 components: - type: Transform - pos: 62.5,-46.5 + pos: -14.5,-55.5 parent: 2 - uid: 9016 components: - type: Transform - pos: 81.5,-39.5 + pos: -16.5,-54.5 parent: 2 - uid: 9017 components: - type: Transform - pos: 60.5,-48.5 + pos: -17.5,-54.5 parent: 2 - uid: 9018 components: - type: Transform - pos: 67.5,-27.5 + pos: -7.5,-57.5 parent: 2 - uid: 9019 components: - type: Transform - pos: 65.5,-46.5 + pos: -7.5,-58.5 parent: 2 - uid: 9020 components: - type: Transform - pos: 67.5,-35.5 + pos: -7.5,-59.5 parent: 2 - uid: 9021 components: - type: Transform - pos: 62.5,-48.5 + pos: -7.5,-60.5 parent: 2 - uid: 9022 components: - type: Transform - pos: 68.5,-46.5 + pos: -7.5,-61.5 parent: 2 - uid: 9023 components: - type: Transform - pos: 28.5,-30.5 + pos: -11.5,-54.5 parent: 2 - uid: 9024 components: - type: Transform - pos: 29.5,-30.5 + pos: -10.5,-54.5 parent: 2 - uid: 9025 components: - type: Transform - pos: 27.5,-31.5 + pos: -9.5,-54.5 parent: 2 - uid: 9026 components: - type: Transform - pos: 27.5,-30.5 + pos: -8.5,-54.5 parent: 2 - uid: 9027 components: - type: Transform - pos: 27.5,-29.5 + pos: -7.5,-54.5 parent: 2 - uid: 9028 components: - type: Transform - pos: 27.5,-32.5 + pos: -6.5,-54.5 parent: 2 - uid: 9029 components: - type: Transform - pos: 27.5,-33.5 + pos: -5.5,-54.5 parent: 2 - uid: 9030 components: - type: Transform - pos: 27.5,-34.5 + pos: -4.5,-54.5 parent: 2 - uid: 9031 components: - type: Transform - pos: 28.5,-34.5 + pos: -3.5,-54.5 parent: 2 - uid: 9032 components: - type: Transform - pos: 29.5,-34.5 + pos: -2.5,-54.5 parent: 2 - uid: 9033 components: - type: Transform - pos: 30.5,-34.5 + pos: 1.5,-54.5 parent: 2 - uid: 9034 components: - type: Transform - pos: 31.5,-34.5 + pos: 0.5,-61.5 parent: 2 - uid: 9035 components: - type: Transform - pos: 32.5,-34.5 + pos: -5.5,-61.5 parent: 2 - uid: 9036 components: - type: Transform - pos: 62.5,-36.5 + pos: -4.5,-61.5 parent: 2 - uid: 9037 components: - type: Transform - pos: 44.5,-30.5 + pos: -3.5,-61.5 parent: 2 - uid: 9038 components: - type: Transform - pos: 44.5,-29.5 + pos: -2.5,-61.5 parent: 2 - uid: 9039 components: - type: Transform - pos: 43.5,-29.5 + pos: -1.5,-61.5 parent: 2 - uid: 9040 components: - type: Transform - pos: 42.5,-29.5 + pos: -0.5,-61.5 parent: 2 - uid: 9041 components: - type: Transform - pos: 40.5,-29.5 + pos: 1.5,-61.5 parent: 2 - uid: 9042 components: - type: Transform - pos: 41.5,-29.5 + pos: -8.5,-61.5 parent: 2 - uid: 9043 components: - type: Transform - pos: 40.5,-30.5 + pos: -9.5,-61.5 parent: 2 - uid: 9044 components: - type: Transform - pos: 40.5,-31.5 + pos: -10.5,-61.5 parent: 2 - uid: 9045 components: - type: Transform - pos: 40.5,-32.5 + pos: -11.5,-61.5 parent: 2 - uid: 9046 components: - type: Transform - pos: 41.5,-32.5 + pos: -12.5,-61.5 parent: 2 - uid: 9047 components: - type: Transform - pos: 42.5,-32.5 + pos: -13.5,-61.5 parent: 2 - uid: 9048 components: - type: Transform - pos: 43.5,-32.5 + pos: -14.5,-61.5 parent: 2 - uid: 9049 components: - type: Transform - pos: 40.5,-28.5 + pos: -15.5,-61.5 parent: 2 - uid: 9050 components: - type: Transform - pos: 40.5,-27.5 + pos: -16.5,-61.5 parent: 2 - uid: 9051 components: - type: Transform - pos: 52.5,-21.5 + pos: -17.5,-61.5 parent: 2 - uid: 9052 components: - type: Transform - pos: 52.5,-22.5 + pos: 2.5,-61.5 parent: 2 - uid: 9053 components: - type: Transform - pos: 52.5,-23.5 + pos: 3.5,-61.5 parent: 2 - uid: 9054 components: - type: Transform - pos: 51.5,-23.5 + pos: 4.5,-61.5 parent: 2 - uid: 9055 components: - type: Transform - pos: 50.5,-23.5 + pos: -14.5,-60.5 parent: 2 - uid: 9056 components: - type: Transform - pos: 49.5,-23.5 + pos: -14.5,-59.5 parent: 2 - uid: 9057 components: - type: Transform - pos: 48.5,-23.5 + pos: -14.5,-58.5 parent: 2 - uid: 9058 components: - type: Transform - pos: 47.5,-23.5 + pos: 1.5,-59.5 parent: 2 - uid: 9059 components: - type: Transform - pos: 53.5,-23.5 + pos: 1.5,-58.5 parent: 2 - uid: 9060 components: - type: Transform - pos: 54.5,-23.5 + pos: 5.5,-54.5 parent: 2 - uid: 9061 components: - type: Transform - pos: 54.5,-23.5 + pos: 4.5,-54.5 parent: 2 - uid: 9062 components: - type: Transform - pos: 55.5,-23.5 + pos: 3.5,-54.5 parent: 2 - uid: 9063 components: - type: Transform - pos: 56.5,-23.5 + pos: 2.5,-54.5 parent: 2 - uid: 9064 components: - type: Transform - pos: 46.5,-23.5 + pos: -0.5,-44.5 parent: 2 - uid: 9065 components: - type: Transform - pos: 45.5,-23.5 + pos: -1.5,-44.5 parent: 2 - uid: 9066 components: - type: Transform - pos: 44.5,-23.5 + pos: -1.5,-43.5 parent: 2 - uid: 9067 components: - type: Transform - pos: 60.5,-27.5 + pos: -1.5,-42.5 parent: 2 - uid: 9068 components: - type: Transform - pos: 61.5,-27.5 + pos: -1.5,-41.5 parent: 2 - uid: 9069 components: - type: Transform - pos: 61.5,-27.5 + pos: -0.5,-41.5 parent: 2 - uid: 9070 components: - type: Transform - pos: 62.5,-27.5 + pos: 0.5,-41.5 parent: 2 - uid: 9071 components: - type: Transform - pos: 62.5,-26.5 + pos: 1.5,-42.5 parent: 2 - uid: 9072 components: - type: Transform - pos: 62.5,-25.5 + pos: 1.5,-41.5 parent: 2 - uid: 9073 components: - type: Transform - pos: 62.5,-24.5 + pos: 2.5,-42.5 parent: 2 - uid: 9074 components: - type: Transform - pos: 62.5,-23.5 + pos: 3.5,-42.5 parent: 2 - uid: 9075 components: - type: Transform - pos: 61.5,-23.5 + pos: 4.5,-42.5 parent: 2 - uid: 9076 components: - type: Transform - pos: 60.5,-23.5 + pos: 5.5,-42.5 parent: 2 - uid: 9077 components: - type: Transform - pos: 60.5,-23.5 + pos: 6.5,-42.5 parent: 2 - uid: 9078 components: - type: Transform - pos: 59.5,-23.5 + pos: -2.5,-44.5 parent: 2 - uid: 9079 components: - type: Transform - pos: 58.5,-23.5 + pos: -3.5,-44.5 parent: 2 - uid: 9080 components: - type: Transform - pos: 63.5,-23.5 + pos: -4.5,-44.5 parent: 2 - uid: 9081 components: - type: Transform - pos: 64.5,-23.5 + pos: -4.5,-48.5 parent: 2 - uid: 9082 components: - type: Transform - pos: 65.5,-23.5 + pos: -4.5,-47.5 parent: 2 - uid: 9083 components: - type: Transform - pos: 62.5,-28.5 + pos: -4.5,-46.5 parent: 2 - uid: 9084 components: - type: Transform - pos: 62.5,-29.5 + pos: -4.5,-45.5 parent: 2 - uid: 9085 components: - type: Transform - pos: 62.5,-30.5 + pos: -4.5,-41.5 parent: 2 - uid: 9086 components: - type: Transform - pos: 62.5,-31.5 + pos: -4.5,-42.5 parent: 2 - uid: 9087 components: - type: Transform - pos: 62.5,-32.5 + pos: -5.5,-41.5 parent: 2 - uid: 9088 components: - type: Transform - pos: 62.5,-32.5 + pos: -5.5,-40.5 parent: 2 - uid: 9089 components: - type: Transform - pos: 62.5,-33.5 + pos: -5.5,-39.5 parent: 2 - uid: 9090 components: - type: Transform - pos: 75.5,-29.5 + pos: -5.5,-38.5 parent: 2 - uid: 9091 components: - type: Transform - pos: 75.5,-30.5 + pos: -5.5,-37.5 parent: 2 - uid: 9092 components: - type: Transform - pos: 73.5,-30.5 + pos: -4.5,-37.5 parent: 2 - uid: 9093 components: - type: Transform - pos: 72.5,-30.5 + pos: -3.5,-37.5 parent: 2 - uid: 9094 components: - type: Transform - pos: 70.5,-30.5 + pos: 5.5,-46.5 parent: 2 - uid: 9095 components: - type: Transform - pos: 69.5,-30.5 + pos: 4.5,-46.5 parent: 2 - uid: 9096 components: - type: Transform - pos: 70.5,-30.5 + pos: 3.5,-46.5 parent: 2 - uid: 9097 components: - type: Transform - pos: 72.5,-31.5 + pos: 2.5,-46.5 parent: 2 - uid: 9098 components: - type: Transform - pos: 72.5,-32.5 + pos: 2.5,-50.5 parent: 2 - uid: 9099 components: - type: Transform - pos: 73.5,-30.5 + pos: 2.5,-48.5 parent: 2 - uid: 9100 components: - type: Transform - pos: 74.5,-30.5 + pos: 2.5,-47.5 parent: 2 - uid: 9101 components: - type: Transform - pos: 74.5,-31.5 + pos: 3.5,-50.5 parent: 2 - uid: 9102 components: - type: Transform - pos: 74.5,-32.5 + pos: 4.5,-50.5 parent: 2 - uid: 9103 components: - type: Transform - pos: 74.5,-33.5 + pos: 5.5,-50.5 parent: 2 - uid: 9104 components: - type: Transform - pos: 74.5,-34.5 + pos: 6.5,-50.5 parent: 2 - uid: 9105 components: - type: Transform - pos: -38.5,-41.5 + pos: 7.5,-50.5 parent: 2 - uid: 9106 components: - type: Transform - pos: -38.5,-43.5 + pos: 7.5,-49.5 parent: 2 - uid: 9107 components: - type: Transform - pos: 69.5,-11.5 + pos: 7.5,-48.5 parent: 2 - uid: 9108 components: - type: Transform - pos: 78.5,-10.5 + pos: 8.5,-50.5 parent: 2 - uid: 9109 components: - type: Transform - pos: 81.5,-20.5 + pos: 9.5,-50.5 parent: 2 - uid: 9110 components: - type: Transform - pos: 80.5,-20.5 + pos: 10.5,-50.5 parent: 2 - uid: 9111 components: - type: Transform - pos: 85.5,-8.5 + pos: 11.5,-50.5 parent: 2 - uid: 9112 components: - type: Transform - pos: 69.5,-15.5 + pos: 1.5,-62.5 parent: 2 - uid: 9113 components: - type: Transform - pos: 69.5,-16.5 + pos: -7.5,-62.5 parent: 2 - uid: 9114 components: - type: Transform - pos: 78.5,-20.5 + pos: -14.5,-62.5 parent: 2 - uid: 9115 components: - type: Transform - pos: 77.5,-20.5 + pos: -18.5,-61.5 parent: 2 - uid: 9116 components: - type: Transform - pos: 79.5,-20.5 + pos: -18.5,-62.5 parent: 2 - uid: 9117 components: - type: Transform - pos: 77.5,-10.5 + pos: -18.5,-63.5 parent: 2 - uid: 9118 components: - type: Transform - pos: 80.5,-10.5 + pos: 1.5,-63.5 parent: 2 - uid: 9119 components: - type: Transform - pos: 76.5,-10.5 + pos: -2.5,-62.5 parent: 2 - uid: 9120 components: - type: Transform - pos: 74.5,-10.5 + pos: -2.5,-60.5 parent: 2 - uid: 9121 components: - type: Transform - pos: 75.5,-10.5 + pos: -18.5,-60.5 parent: 2 - uid: 9122 components: - type: Transform - pos: 79.5,-10.5 + pos: 69.5,-10.5 parent: 2 - - type: ExtensionCableProvider - transferRange: 4 - uid: 9123 components: - type: Transform - pos: -17.5,42.5 + pos: 59.5,-38.5 parent: 2 - uid: 9124 components: - type: Transform - pos: -4.5,-10.5 + pos: 67.5,-36.5 parent: 2 - uid: 9125 components: - type: Transform - pos: -8.5,72.5 + pos: 66.5,-36.5 parent: 2 - uid: 9126 components: - type: Transform - pos: -19.5,43.5 + pos: 57.5,-31.5 parent: 2 - uid: 9127 components: - type: Transform - pos: -18.5,43.5 + pos: 57.5,-33.5 parent: 2 - uid: 9128 components: - type: Transform - pos: -17.5,43.5 + pos: 58.5,-30.5 parent: 2 - uid: 9129 components: - type: Transform - pos: -16.5,43.5 + pos: 54.5,-31.5 parent: 2 - uid: 9130 components: - type: Transform - pos: -15.5,43.5 + pos: -27.5,51.5 parent: 2 - uid: 9131 components: - type: Transform - pos: -14.5,43.5 + pos: 68.5,-33.5 parent: 2 - uid: 9132 components: - type: Transform - pos: -17.5,41.5 + pos: 75.5,-45.5 parent: 2 - uid: 9133 components: - type: Transform - pos: -17.5,40.5 + pos: 75.5,-44.5 parent: 2 - uid: 9134 components: - type: Transform - pos: -17.5,39.5 + pos: 75.5,-43.5 parent: 2 - uid: 9135 components: - type: Transform - pos: -16.5,39.5 + pos: 57.5,-32.5 parent: 2 - uid: 9136 components: - type: Transform - pos: -15.5,39.5 + pos: 55.5,-31.5 parent: 2 - uid: 9137 components: - type: Transform - pos: -14.5,39.5 + pos: 56.5,-31.5 parent: 2 - uid: 9138 components: - type: Transform - pos: -13.5,39.5 + pos: 57.5,-34.5 parent: 2 - uid: 9139 components: - type: Transform - pos: -3.5,44.5 + pos: 58.5,-31.5 parent: 2 - uid: 9140 components: - type: Transform - pos: -4.5,44.5 + pos: 68.5,-36.5 parent: 2 - uid: 9141 components: - type: Transform - pos: -5.5,44.5 + pos: 54.5,-41.5 parent: 2 - uid: 9142 components: - type: Transform - pos: -6.5,44.5 + pos: 67.5,-33.5 parent: 2 - uid: 9143 components: - type: Transform - pos: -7.5,44.5 + pos: 66.5,-32.5 parent: 2 - uid: 9144 components: - type: Transform - pos: -8.5,44.5 + pos: 66.5,-33.5 parent: 2 - uid: 9145 components: - type: Transform - pos: -8.5,43.5 + pos: 66.5,-31.5 parent: 2 - uid: 9146 components: - type: Transform - pos: -8.5,42.5 + pos: 66.5,-30.5 parent: 2 - uid: 9147 components: - type: Transform - pos: -8.5,41.5 + pos: 60.5,-38.5 parent: 2 - uid: 9148 components: - type: Transform - pos: -8.5,40.5 + pos: 55.5,-41.5 parent: 2 - uid: 9149 components: - type: Transform - pos: -8.5,39.5 + pos: 53.5,-41.5 parent: 2 - uid: 9150 components: - type: Transform - pos: -7.5,39.5 + pos: 59.5,-39.5 parent: 2 - uid: 9151 components: - type: Transform - pos: -6.5,39.5 + pos: 62.5,-37.5 parent: 2 - uid: 9152 components: - type: Transform - pos: -5.5,39.5 + pos: 62.5,-38.5 parent: 2 - uid: 9153 components: - type: Transform - pos: -4.5,39.5 + pos: 61.5,-43.5 parent: 2 - uid: 9154 components: - type: Transform - pos: 4.5,40.5 + pos: 60.5,-43.5 parent: 2 - uid: 9155 components: - type: Transform - pos: 3.5,39.5 + pos: 62.5,-43.5 parent: 2 - uid: 9156 components: - type: Transform - pos: 3.5,38.5 + pos: 62.5,-44.5 parent: 2 - uid: 9157 components: - type: Transform - pos: 3.5,37.5 + pos: 58.5,-41.5 parent: 2 - uid: 9158 components: - type: Transform - pos: 3.5,36.5 + pos: 56.5,-43.5 parent: 2 - uid: 9159 components: - type: Transform - pos: 4.5,41.5 + pos: 58.5,-34.5 parent: 2 - uid: 9160 components: - type: Transform - pos: 4.5,42.5 + pos: 56.5,-42.5 parent: 2 - uid: 9161 components: - type: Transform - pos: 4.5,43.5 + pos: 59.5,-41.5 parent: 2 - uid: 9162 components: - type: Transform - pos: 4.5,44.5 + pos: -2.5,61.5 parent: 2 - uid: 9163 components: - type: Transform - pos: 5.5,44.5 + pos: 59.5,-42.5 parent: 2 - uid: 9164 components: - type: Transform - pos: 6.5,44.5 + pos: 59.5,-40.5 parent: 2 - uid: 9165 components: - type: Transform - pos: 5.5,55.5 + pos: 55.5,-38.5 parent: 2 - uid: 9166 components: - type: Transform - pos: -4.5,-8.5 + pos: 59.5,-43.5 parent: 2 - uid: 9167 components: - type: Transform - pos: -10.5,-9.5 + pos: 56.5,-41.5 parent: 2 - uid: 9168 components: - type: Transform - pos: -6.5,-10.5 + pos: 55.5,-40.5 parent: 2 - uid: 9169 components: - type: Transform - pos: -4.5,-9.5 + pos: 55.5,-39.5 parent: 2 - uid: 9170 components: - type: Transform - pos: -22.5,51.5 + pos: 68.5,-51.5 parent: 2 - uid: 9171 components: - type: Transform - pos: -7.5,-10.5 + pos: 68.5,-53.5 parent: 2 - uid: 9172 components: - type: Transform - pos: -10.5,8.5 + pos: -21.5,49.5 parent: 2 - uid: 9173 components: - type: Transform - pos: -23.5,51.5 + pos: 68.5,-48.5 parent: 2 - uid: 9174 components: - type: Transform - pos: -21.5,54.5 + pos: 66.5,-46.5 parent: 2 - uid: 9175 components: - type: Transform - pos: -20.5,54.5 + pos: 68.5,-49.5 parent: 2 - uid: 9176 components: - type: Transform - pos: -19.5,54.5 + pos: 68.5,-50.5 parent: 2 - uid: 9177 components: - type: Transform - pos: -18.5,54.5 + pos: 63.5,-46.5 parent: 2 - uid: 9178 components: - type: Transform - pos: -17.5,54.5 + pos: 85.5,-43.5 parent: 2 - uid: 9179 components: - type: Transform - pos: 75.5,-20.5 + pos: 68.5,-47.5 parent: 2 - uid: 9180 components: - type: Transform - pos: -16.5,54.5 + pos: 69.5,-46.5 parent: 2 - uid: 9181 components: - type: Transform - pos: -15.5,54.5 + pos: 68.5,-52.5 parent: 2 - uid: 9182 components: - type: Transform - pos: -17.5,53.5 + pos: 77.5,-45.5 parent: 2 - uid: 9183 components: - type: Transform - pos: -17.5,52.5 + pos: 78.5,-45.5 parent: 2 - uid: 9184 components: - type: Transform - pos: -17.5,51.5 + pos: 69.5,-45.5 parent: 2 - uid: 9185 components: - type: Transform - pos: -17.5,50.5 + pos: 84.5,-44.5 parent: 2 - uid: 9186 components: - type: Transform - pos: -17.5,49.5 + pos: 83.5,-44.5 parent: 2 - uid: 9187 components: - type: Transform - pos: -17.5,48.5 + pos: 69.5,-44.5 parent: 2 - uid: 9188 components: - type: Transform - pos: -17.5,47.5 + pos: 69.5,-43.5 parent: 2 - uid: 9189 components: - type: Transform - pos: -16.5,47.5 + pos: 69.5,-42.5 parent: 2 - uid: 9190 components: - type: Transform - pos: -15.5,47.5 + pos: -4.5,61.5 parent: 2 - uid: 9191 components: - type: Transform - pos: -14.5,47.5 + pos: -4.5,62.5 parent: 2 - uid: 9192 components: - type: Transform - pos: -13.5,47.5 + pos: -6.5,67.5 parent: 2 - uid: 9193 components: - type: Transform - pos: -12.5,47.5 + pos: 67.5,-34.5 parent: 2 - uid: 9194 components: - type: Transform - pos: -14.5,54.5 + pos: -20.5,58.5 parent: 2 - uid: 9195 components: - type: Transform - pos: -11.5,59.5 + pos: -1.5,61.5 parent: 2 - uid: 9196 components: - type: Transform - pos: -12.5,59.5 + pos: -28.5,51.5 parent: 2 - uid: 9197 components: - type: Transform - pos: -13.5,59.5 + pos: -3.5,61.5 parent: 2 - uid: 9198 components: - type: Transform - pos: -14.5,59.5 + pos: -22.5,59.5 parent: 2 - uid: 9199 components: - type: Transform - pos: -13.5,60.5 + pos: -21.5,59.5 parent: 2 - uid: 9200 components: - type: Transform - pos: -13.5,61.5 + pos: -20.5,59.5 parent: 2 - uid: 9201 components: - type: Transform - pos: -12.5,61.5 + pos: -11.5,69.5 parent: 2 - uid: 9202 components: - type: Transform - pos: -11.5,61.5 + pos: -26.5,51.5 parent: 2 - uid: 9203 components: - type: Transform - pos: -10.5,61.5 + pos: -25.5,51.5 parent: 2 - uid: 9204 components: - type: Transform - pos: -9.5,61.5 + pos: -24.5,56.5 parent: 2 - uid: 9205 components: - type: Transform - pos: -12.5,58.5 + pos: -22.5,50.5 parent: 2 - uid: 9206 components: - type: Transform - pos: -11.5,58.5 + pos: -22.5,54.5 parent: 2 - uid: 9207 components: - type: Transform - pos: -10.5,58.5 + pos: -23.5,49.5 parent: 2 - uid: 9208 components: - type: Transform - pos: -9.5,58.5 + pos: -22.5,55.5 parent: 2 - uid: 9209 components: - type: Transform - pos: -8.5,58.5 + pos: -24.5,51.5 parent: 2 - uid: 9210 components: - type: Transform - pos: -7.5,58.5 + pos: -23.5,56.5 parent: 2 - uid: 9211 components: - type: Transform - pos: -6.5,58.5 + pos: -22.5,49.5 parent: 2 - uid: 9212 components: - type: Transform - pos: -5.5,58.5 + pos: -22.5,56.5 parent: 2 - uid: 9213 components: - type: Transform - pos: -5.5,57.5 + pos: 70.5,-10.5 parent: 2 - uid: 9214 components: - type: Transform - pos: -5.5,56.5 + pos: 84.5,-42.5 parent: 2 - uid: 9215 components: - type: Transform - pos: -5.5,55.5 + pos: 74.5,-46.5 parent: 2 - uid: 9216 components: - type: Transform - pos: -5.5,54.5 + pos: 84.5,-41.5 parent: 2 - uid: 9217 components: - type: Transform - pos: -3.5,53.5 + pos: 79.5,-39.5 parent: 2 - uid: 9218 components: - type: Transform - pos: -2.5,53.5 + pos: 73.5,-40.5 parent: 2 - uid: 9219 components: - type: Transform - pos: -1.5,53.5 + pos: 72.5,-40.5 parent: 2 - uid: 9220 components: - type: Transform - pos: -1.5,52.5 + pos: 75.5,-39.5 parent: 2 - uid: 9221 components: - type: Transform - pos: -1.5,51.5 + pos: 73.5,-39.5 parent: 2 - uid: 9222 components: - type: Transform - pos: -1.5,50.5 + pos: 75.5,-40.5 parent: 2 - uid: 9223 components: - type: Transform - pos: -1.5,49.5 + pos: 78.5,-39.5 parent: 2 - uid: 9224 components: - type: Transform - pos: -1.5,48.5 + pos: 80.5,-39.5 parent: 2 - uid: 9225 components: - type: Transform - pos: -1.5,47.5 + pos: 77.5,-39.5 parent: 2 - uid: 9226 components: - type: Transform - pos: -2.5,47.5 + pos: 84.5,-43.5 parent: 2 - uid: 9227 components: - type: Transform - pos: -3.5,47.5 + pos: 84.5,-44.5 parent: 2 - uid: 9228 components: - type: Transform - pos: -4.5,47.5 + pos: 76.5,-45.5 parent: 2 - uid: 9229 components: - type: Transform - pos: -5.5,47.5 + pos: 75.5,-45.5 parent: 2 - uid: 9230 components: - type: Transform - pos: -6.5,47.5 + pos: 62.5,-42.5 parent: 2 - uid: 9231 components: - type: Transform - pos: -7.5,47.5 + pos: 73.5,-46.5 parent: 2 - uid: 9232 components: - type: Transform - pos: -8.5,47.5 + pos: 62.5,-41.5 parent: 2 - uid: 9233 components: - type: Transform - pos: -9.5,47.5 + pos: 86.5,-43.5 parent: 2 - uid: 9234 components: - type: Transform - pos: -0.5,47.5 + pos: 0.5,62.5 parent: 2 - uid: 9235 components: - type: Transform - pos: 0.5,47.5 + pos: 1.5,62.5 parent: 2 - uid: 9236 components: - type: Transform - pos: 1.5,47.5 + pos: 66.5,-27.5 parent: 2 - uid: 9237 components: - type: Transform - pos: 2.5,47.5 + pos: 81.5,-38.5 parent: 2 - uid: 9238 components: - type: Transform - pos: 3.5,47.5 + pos: 67.5,-46.5 parent: 2 - uid: 9239 components: - type: Transform - pos: 4.5,47.5 + pos: 75.5,-36.5 parent: 2 - uid: 9240 components: - type: Transform - pos: 4.5,48.5 + pos: 68.5,-27.5 parent: 2 - uid: 9241 components: - type: Transform - pos: -1.5,54.5 + pos: 74.5,-38.5 parent: 2 - uid: 9242 components: - type: Transform - pos: -1.5,55.5 + pos: 69.5,-27.5 parent: 2 - uid: 9243 components: - type: Transform - pos: -1.5,56.5 + pos: 65.5,-27.5 parent: 2 - uid: 9244 components: - type: Transform - pos: -1.5,57.5 + pos: 75.5,-37.5 parent: 2 - uid: 9245 components: - type: Transform - pos: -1.5,58.5 + pos: 73.5,-38.5 parent: 2 - uid: 9246 components: - type: Transform - pos: -1.5,59.5 + pos: 64.5,-46.5 parent: 2 - uid: 9247 components: - type: Transform - pos: -1.5,60.5 + pos: 79.5,-40.5 parent: 2 - uid: 9248 components: - type: Transform - pos: -6.5,68.5 + pos: 69.5,-41.5 parent: 2 - uid: 9249 components: - type: Transform - pos: -6.5,69.5 + pos: 81.5,-37.5 parent: 2 - uid: 9250 components: - type: Transform - pos: -7.5,69.5 + pos: 75.5,-38.5 parent: 2 - uid: 9251 components: - type: Transform - pos: -8.5,69.5 + pos: 62.5,-46.5 parent: 2 - uid: 9252 components: - type: Transform - pos: -9.5,69.5 + pos: 81.5,-39.5 parent: 2 - uid: 9253 components: - type: Transform - pos: -10.5,69.5 + pos: 60.5,-48.5 parent: 2 - uid: 9254 components: - type: Transform - pos: -8.5,70.5 + pos: 67.5,-27.5 parent: 2 - uid: 9255 components: - type: Transform - pos: -8.5,71.5 + pos: 65.5,-46.5 parent: 2 - uid: 9256 components: - type: Transform - pos: -5.5,69.5 + pos: 67.5,-35.5 parent: 2 - uid: 9257 components: - type: Transform - pos: -4.5,69.5 + pos: 62.5,-48.5 parent: 2 - uid: 9258 components: - type: Transform - pos: -5.5,67.5 + pos: 68.5,-46.5 parent: 2 - uid: 9259 components: - type: Transform - pos: -4.5,33.5 + pos: 28.5,-30.5 parent: 2 - uid: 9260 components: - type: Transform - pos: -4.5,34.5 + pos: 29.5,-30.5 parent: 2 - uid: 9261 components: - type: Transform - pos: -4.5,35.5 + pos: 27.5,-31.5 parent: 2 - uid: 9262 components: - type: Transform - pos: -5.5,35.5 + pos: 27.5,-30.5 parent: 2 - uid: 9263 components: - type: Transform - pos: -6.5,35.5 + pos: 27.5,-29.5 parent: 2 - uid: 9264 components: - type: Transform - pos: -7.5,35.5 + pos: 27.5,-32.5 parent: 2 - uid: 9265 components: - type: Transform - pos: -8.5,35.5 + pos: 27.5,-33.5 parent: 2 - uid: 9266 components: - type: Transform - pos: -9.5,35.5 + pos: 27.5,-34.5 parent: 2 - uid: 9267 components: - type: Transform - pos: -27.5,-40.5 + pos: 28.5,-34.5 parent: 2 - uid: 9268 components: - type: Transform - pos: -26.5,-40.5 + pos: 29.5,-34.5 parent: 2 - uid: 9269 components: - type: Transform - pos: -25.5,-40.5 + pos: 30.5,-34.5 parent: 2 - uid: 9270 components: - type: Transform - pos: -34.5,-47.5 + pos: 31.5,-34.5 parent: 2 - uid: 9271 components: - type: Transform - pos: -34.5,-48.5 + pos: 32.5,-34.5 parent: 2 - uid: 9272 components: - type: Transform - pos: -34.5,-46.5 + pos: 62.5,-36.5 parent: 2 - uid: 9273 components: - type: Transform - pos: -34.5,-45.5 + pos: 44.5,-30.5 parent: 2 - uid: 9274 components: - type: Transform - pos: -33.5,-45.5 + pos: 44.5,-29.5 parent: 2 - uid: 9275 components: - type: Transform - pos: -33.5,-44.5 + pos: 43.5,-29.5 parent: 2 - uid: 9276 components: - type: Transform - pos: -38.5,-44.5 + pos: 42.5,-29.5 parent: 2 - uid: 9277 components: - type: Transform - pos: -38.5,-42.5 + pos: 40.5,-29.5 parent: 2 - uid: 9278 components: - type: Transform - pos: -35.5,-45.5 + pos: 41.5,-29.5 parent: 2 - uid: 9279 components: - type: Transform - pos: -36.5,-45.5 + pos: 40.5,-30.5 parent: 2 - uid: 9280 components: - type: Transform - pos: -38.5,-40.5 + pos: 40.5,-31.5 parent: 2 - uid: 9281 components: - type: Transform - pos: -39.5,-40.5 + pos: 40.5,-32.5 parent: 2 - uid: 9282 components: - type: Transform - pos: -40.5,-40.5 + pos: 41.5,-32.5 parent: 2 - uid: 9283 components: - type: Transform - pos: -40.5,-39.5 + pos: 42.5,-32.5 parent: 2 - uid: 9284 components: - type: Transform - pos: -40.5,-38.5 + pos: 43.5,-32.5 parent: 2 - uid: 9285 components: - type: Transform - pos: -40.5,-41.5 + pos: 40.5,-28.5 parent: 2 - uid: 9286 components: - type: Transform - pos: -40.5,-42.5 + pos: 40.5,-27.5 parent: 2 - uid: 9287 components: - type: Transform - pos: 45.5,-0.5 + pos: 52.5,-21.5 parent: 2 - uid: 9288 components: - type: Transform - pos: 72.5,-20.5 + pos: 52.5,-22.5 parent: 2 - uid: 9289 components: - type: Transform - pos: 69.5,-19.5 + pos: 52.5,-23.5 parent: 2 - uid: 9290 components: - type: Transform - pos: -24.5,9.5 + pos: 51.5,-23.5 parent: 2 - uid: 9291 components: - type: Transform - pos: -24.5,8.5 + pos: 50.5,-23.5 parent: 2 - uid: 9292 components: - type: Transform - pos: -24.5,7.5 + pos: 49.5,-23.5 parent: 2 - uid: 9293 components: - type: Transform - pos: 69.5,-13.5 + pos: 48.5,-23.5 parent: 2 - uid: 9294 components: - type: Transform - pos: 71.5,-20.5 + pos: 47.5,-23.5 parent: 2 - uid: 9295 components: - type: Transform - pos: 70.5,-20.5 + pos: 53.5,-23.5 parent: 2 - uid: 9296 components: - type: Transform - pos: 69.5,-20.5 + pos: 54.5,-23.5 parent: 2 - uid: 9297 components: - type: Transform - pos: 69.5,-17.5 + pos: 54.5,-23.5 parent: 2 - uid: 9298 components: - type: Transform - pos: 69.5,-18.5 + pos: 55.5,-23.5 parent: 2 - uid: 9299 components: - type: Transform - pos: 69.5,-12.5 + pos: 56.5,-23.5 parent: 2 - uid: 9300 components: - type: Transform - pos: 73.5,-20.5 + pos: 46.5,-23.5 parent: 2 - uid: 9301 components: - type: Transform - pos: 76.5,-20.5 + pos: 45.5,-23.5 parent: 2 - uid: 9302 components: - type: Transform - pos: -26.5,56.5 + pos: 44.5,-23.5 parent: 2 - uid: 9303 components: - type: Transform - pos: -9.5,8.5 + pos: 60.5,-27.5 parent: 2 - uid: 9304 components: - type: Transform - pos: -10.5,9.5 + pos: 61.5,-27.5 parent: 2 - uid: 9305 components: - type: Transform - pos: -9.5,-9.5 + pos: 61.5,-27.5 parent: 2 - uid: 9306 components: - type: Transform - pos: -10.5,10.5 + pos: 62.5,-27.5 parent: 2 - uid: 9307 components: - type: Transform - pos: -11.5,-9.5 + pos: 62.5,-26.5 parent: 2 - uid: 9308 components: - type: Transform - pos: -8.5,-5.5 + pos: 62.5,-25.5 parent: 2 - uid: 9309 components: - type: Transform - pos: 2.5,39.5 + pos: 62.5,-24.5 parent: 2 - uid: 9310 components: - type: Transform - pos: 4.5,39.5 + pos: 62.5,-23.5 parent: 2 - uid: 9311 components: - type: Transform - pos: 3.5,39.5 + pos: 61.5,-23.5 parent: 2 - uid: 9312 components: - type: Transform - pos: -25.5,7.5 + pos: 60.5,-23.5 parent: 2 - uid: 9313 components: - type: Transform - pos: -0.5,2.5 + pos: 60.5,-23.5 parent: 2 - uid: 9314 components: - type: Transform - pos: 34.5,22.5 + pos: 59.5,-23.5 parent: 2 - uid: 9315 components: - type: Transform - pos: -4.5,-7.5 + pos: 58.5,-23.5 parent: 2 - uid: 9316 components: - type: Transform - pos: 14.5,0.5 + pos: 63.5,-23.5 parent: 2 - uid: 9317 components: - type: Transform - pos: -8.5,-6.5 + pos: 64.5,-23.5 parent: 2 - uid: 9318 components: - type: Transform - pos: -5.5,-7.5 + pos: 65.5,-23.5 parent: 2 - uid: 9319 components: - type: Transform - pos: -6.5,-7.5 + pos: 62.5,-28.5 parent: 2 - uid: 9320 components: - type: Transform - pos: -9.5,-4.5 + pos: 62.5,-29.5 parent: 2 - uid: 9321 components: - type: Transform - pos: -7.5,-7.5 + pos: 62.5,-30.5 parent: 2 - uid: 9322 components: - type: Transform - pos: -10.5,2.5 + pos: 62.5,-31.5 parent: 2 - uid: 9323 components: - type: Transform - pos: -10.5,-4.5 + pos: 62.5,-32.5 parent: 2 - uid: 9324 components: - type: Transform - pos: -11.5,-4.5 + pos: 62.5,-32.5 parent: 2 - uid: 9325 components: - type: Transform - pos: -10.5,3.5 + pos: 62.5,-33.5 parent: 2 - uid: 9326 components: - type: Transform - pos: -5.5,-10.5 + pos: 75.5,-29.5 parent: 2 - uid: 9327 components: - type: Transform - pos: -9.5,-8.5 + pos: 75.5,-30.5 parent: 2 - uid: 9328 components: - type: Transform - pos: 74.5,-20.5 + pos: 73.5,-30.5 parent: 2 - uid: 9329 components: - type: Transform - pos: -22.5,7.5 + pos: 72.5,-30.5 parent: 2 - uid: 9330 components: - type: Transform - pos: -21.5,6.5 + pos: 70.5,-30.5 parent: 2 - uid: 9331 components: - type: Transform - pos: -23.5,7.5 + pos: 69.5,-30.5 parent: 2 - uid: 9332 components: - type: Transform - pos: -21.5,7.5 + pos: 70.5,-30.5 parent: 2 - uid: 9333 components: - type: Transform - pos: -25.5,6.5 + pos: 72.5,-31.5 parent: 2 - uid: 9334 components: - type: Transform - pos: -45.5,-2.5 + pos: 72.5,-32.5 parent: 2 - uid: 9335 components: - type: Transform - pos: -8.5,-3.5 + pos: 73.5,-30.5 parent: 2 - uid: 9336 components: - type: Transform - pos: 44.5,0.5 + pos: 74.5,-30.5 parent: 2 - uid: 9337 components: - type: Transform - pos: -12.5,8.5 + pos: 74.5,-31.5 parent: 2 - uid: 9338 components: - type: Transform - pos: -8.5,-10.5 + pos: 74.5,-32.5 parent: 2 - uid: 9339 components: - type: Transform - pos: -7.5,-3.5 + pos: 74.5,-33.5 parent: 2 - uid: 9340 components: - type: Transform - pos: -45.5,-3.5 + pos: 74.5,-34.5 parent: 2 - uid: 9341 components: - type: Transform - pos: -8.5,-4.5 + pos: -38.5,-41.5 parent: 2 - uid: 9342 components: - type: Transform - pos: -45.5,-1.5 + pos: -38.5,-43.5 parent: 2 - uid: 9343 components: - type: Transform - pos: -5.5,-31.5 + pos: 69.5,-11.5 parent: 2 - uid: 9344 components: - type: Transform - pos: -46.5,-3.5 + pos: 78.5,-10.5 parent: 2 - uid: 9345 components: - type: Transform - pos: -5.5,-3.5 + pos: 81.5,-20.5 parent: 2 - uid: 9346 components: - type: Transform - pos: -6.5,-3.5 + pos: 80.5,-20.5 parent: 2 - uid: 9347 components: - type: Transform - pos: 32.5,18.5 + pos: 85.5,-8.5 parent: 2 - uid: 9348 components: - type: Transform - pos: 34.5,24.5 + pos: 69.5,-15.5 parent: 2 - uid: 9349 components: - type: Transform - pos: 34.5,23.5 + pos: 69.5,-16.5 parent: 2 - uid: 9350 components: - type: Transform - pos: 47.5,-0.5 + pos: 78.5,-20.5 parent: 2 - uid: 9351 components: - type: Transform - pos: 46.5,-0.5 + pos: 77.5,-20.5 parent: 2 - uid: 9352 components: - type: Transform - pos: -27.5,56.5 + pos: 79.5,-20.5 parent: 2 - uid: 9353 components: - type: Transform - pos: -25.5,56.5 + pos: 77.5,-10.5 parent: 2 - uid: 9354 components: - type: Transform - pos: 73.5,-10.5 + pos: 80.5,-10.5 parent: 2 - uid: 9355 components: - type: Transform - pos: 10.5,-3.5 + pos: 76.5,-10.5 parent: 2 - uid: 9356 components: - type: Transform - pos: 2.5,-10.5 + pos: 74.5,-10.5 parent: 2 - uid: 9357 components: - type: Transform - pos: 0.5,-0.5 + pos: 75.5,-10.5 parent: 2 - uid: 9358 components: - type: Transform - pos: -44.5,12.5 + pos: 79.5,-10.5 parent: 2 + - type: ExtensionCableProvider + transferRange: 4 - uid: 9359 components: - type: Transform - pos: -11.5,8.5 + pos: -17.5,42.5 parent: 2 - uid: 9360 components: - type: Transform - pos: 2.5,62.5 + pos: -4.5,-10.5 parent: 2 - uid: 9361 components: - type: Transform - pos: 2.5,63.5 + pos: -8.5,72.5 parent: 2 - uid: 9362 components: - type: Transform - pos: 2.5,64.5 + pos: -19.5,43.5 parent: 2 - uid: 9363 components: - type: Transform - pos: 3.5,62.5 + pos: -18.5,43.5 parent: 2 - uid: 9364 components: - type: Transform - pos: 4.5,62.5 + pos: -17.5,43.5 parent: 2 - uid: 9365 components: - type: Transform - pos: 2.5,61.5 + pos: -16.5,43.5 parent: 2 - uid: 9366 components: - type: Transform - pos: 2.5,60.5 + pos: -15.5,43.5 parent: 2 - uid: 9367 components: - type: Transform - pos: 5.5,62.5 + pos: -14.5,43.5 parent: 2 - uid: 9368 components: - type: Transform - pos: -21.5,5.5 + pos: -17.5,41.5 parent: 2 - uid: 9369 components: - type: Transform - pos: -21.5,4.5 + pos: -17.5,40.5 parent: 2 - uid: 9370 components: - type: Transform - pos: -22.5,8.5 + pos: -17.5,39.5 parent: 2 - uid: 9371 components: - type: Transform - pos: -22.5,9.5 + pos: -16.5,39.5 parent: 2 - uid: 9372 components: - type: Transform - pos: -22.5,10.5 + pos: -15.5,39.5 parent: 2 - uid: 9373 components: - type: Transform - pos: -22.5,11.5 + pos: -14.5,39.5 parent: 2 - uid: 9374 components: - type: Transform - pos: -21.5,11.5 + pos: -13.5,39.5 parent: 2 - uid: 9375 components: - type: Transform - pos: -20.5,11.5 + pos: -3.5,44.5 parent: 2 - uid: 9376 components: - type: Transform - pos: -34.5,9.5 + pos: -4.5,44.5 parent: 2 - uid: 9377 components: - type: Transform - pos: -34.5,10.5 + pos: -5.5,44.5 parent: 2 - uid: 9378 components: - type: Transform - pos: -34.5,11.5 + pos: -6.5,44.5 parent: 2 - uid: 9379 components: - type: Transform - pos: -33.5,11.5 + pos: -7.5,44.5 parent: 2 - uid: 9380 components: - type: Transform - pos: -32.5,11.5 + pos: -8.5,44.5 parent: 2 - uid: 9381 components: - type: Transform - pos: -31.5,11.5 + pos: -8.5,43.5 parent: 2 - uid: 9382 components: - type: Transform - pos: -30.5,11.5 + pos: -8.5,42.5 parent: 2 - uid: 9383 components: - type: Transform - pos: -29.5,11.5 + pos: -8.5,41.5 parent: 2 - uid: 9384 components: - type: Transform - pos: -28.5,11.5 + pos: -8.5,40.5 parent: 2 - uid: 9385 components: - type: Transform - pos: -27.5,11.5 + pos: -8.5,39.5 parent: 2 - uid: 9386 components: - type: Transform - pos: -26.5,11.5 + pos: -7.5,39.5 parent: 2 - uid: 9387 components: - type: Transform - pos: -35.5,11.5 + pos: -6.5,39.5 parent: 2 - uid: 9388 components: - type: Transform - pos: -36.5,11.5 + pos: -5.5,39.5 parent: 2 - uid: 9389 components: - type: Transform - pos: -37.5,11.5 + pos: -4.5,39.5 parent: 2 - uid: 9390 components: - type: Transform - pos: -38.5,11.5 + pos: 4.5,40.5 parent: 2 - uid: 9391 components: - type: Transform - pos: -39.5,11.5 + pos: 3.5,39.5 parent: 2 - uid: 9392 components: - type: Transform - pos: -40.5,11.5 + pos: 3.5,38.5 parent: 2 - uid: 9393 components: - type: Transform - pos: -41.5,11.5 + pos: 3.5,37.5 parent: 2 - uid: 9394 components: - type: Transform - pos: -42.5,11.5 + pos: 3.5,36.5 parent: 2 - uid: 9395 components: - type: Transform - pos: -43.5,11.5 + pos: 4.5,41.5 parent: 2 - uid: 9396 components: - type: Transform - pos: -44.5,11.5 + pos: 4.5,42.5 parent: 2 - uid: 9397 components: - type: Transform - pos: -45.5,11.5 + pos: 4.5,43.5 parent: 2 - uid: 9398 components: - type: Transform - pos: -46.5,11.5 + pos: 4.5,44.5 parent: 2 - uid: 9399 components: - type: Transform - pos: -47.5,11.5 + pos: 5.5,44.5 parent: 2 - uid: 9400 components: - type: Transform - pos: -44.5,13.5 + pos: 6.5,44.5 parent: 2 - uid: 9401 components: - type: Transform - pos: -44.5,14.5 + pos: 5.5,55.5 parent: 2 - uid: 9402 components: - type: Transform - pos: -44.5,15.5 + pos: -4.5,-8.5 parent: 2 - uid: 9403 components: - type: Transform - pos: -48.5,11.5 + pos: -10.5,-9.5 parent: 2 - uid: 9404 components: - type: Transform - pos: -48.5,12.5 + pos: -6.5,-10.5 parent: 2 - uid: 9405 components: - type: Transform - pos: -48.5,13.5 + pos: -4.5,-9.5 parent: 2 - uid: 9406 components: - type: Transform - pos: -48.5,14.5 + pos: -22.5,51.5 parent: 2 - uid: 9407 components: - type: Transform - pos: -48.5,15.5 + pos: -7.5,-10.5 parent: 2 - uid: 9408 components: - type: Transform - pos: -40.5,12.5 + pos: -10.5,8.5 parent: 2 - uid: 9409 components: - type: Transform - pos: -40.5,13.5 + pos: -23.5,51.5 parent: 2 - uid: 9410 components: - type: Transform - pos: -40.5,14.5 + pos: -21.5,54.5 parent: 2 - uid: 9411 components: - type: Transform - pos: -40.5,15.5 + pos: -20.5,54.5 parent: 2 - uid: 9412 components: - type: Transform - pos: -53.5,18.5 + pos: -19.5,54.5 parent: 2 - uid: 9413 components: - type: Transform - pos: -53.5,17.5 + pos: -18.5,54.5 parent: 2 - uid: 9414 components: - type: Transform - pos: -53.5,16.5 + pos: -17.5,54.5 parent: 2 - uid: 9415 components: - type: Transform - pos: -54.5,16.5 + pos: 75.5,-20.5 parent: 2 - uid: 9416 components: - type: Transform - pos: -55.5,16.5 + pos: -16.5,54.5 parent: 2 - uid: 9417 components: - type: Transform - pos: -55.5,15.5 + pos: -15.5,54.5 parent: 2 - uid: 9418 components: - type: Transform - pos: -55.5,14.5 + pos: -17.5,53.5 parent: 2 - uid: 9419 components: - type: Transform - pos: -55.5,13.5 + pos: -17.5,52.5 parent: 2 - uid: 9420 components: - type: Transform - pos: -55.5,12.5 + pos: -17.5,51.5 parent: 2 - uid: 9421 components: - type: Transform - pos: -55.5,11.5 + pos: -17.5,50.5 parent: 2 - uid: 9422 components: - type: Transform - pos: -54.5,11.5 + pos: -17.5,49.5 parent: 2 - uid: 9423 components: - type: Transform - pos: -53.5,11.5 + pos: -17.5,48.5 parent: 2 - uid: 9424 components: - type: Transform - pos: -52.5,11.5 + pos: -17.5,47.5 parent: 2 - uid: 9425 components: - type: Transform - pos: -55.5,10.5 + pos: -16.5,47.5 parent: 2 - uid: 9426 components: - type: Transform - pos: -55.5,9.5 + pos: -15.5,47.5 parent: 2 - uid: 9427 components: - type: Transform - pos: -52.5,10.5 + pos: -14.5,47.5 parent: 2 - uid: 9428 components: - type: Transform - pos: -52.5,9.5 + pos: -13.5,47.5 parent: 2 - uid: 9429 components: - type: Transform - pos: -38.5,12.5 + pos: -12.5,47.5 parent: 2 - uid: 9430 components: - type: Transform - pos: -38.5,13.5 + pos: -14.5,54.5 parent: 2 - uid: 9431 components: - type: Transform - pos: -36.5,13.5 + pos: -11.5,59.5 parent: 2 - uid: 9432 components: - type: Transform - pos: -36.5,12.5 + pos: -12.5,59.5 parent: 2 - uid: 9433 components: - type: Transform - pos: -41.5,14.5 + pos: -13.5,59.5 parent: 2 - uid: 9434 components: - type: Transform - pos: -42.5,14.5 + pos: -14.5,59.5 parent: 2 - uid: 9435 components: - type: Transform - pos: -45.5,14.5 + pos: -13.5,60.5 parent: 2 - uid: 9436 components: - type: Transform - pos: -46.5,14.5 + pos: -13.5,61.5 parent: 2 - uid: 9437 components: - type: Transform - pos: -49.5,14.5 + pos: -12.5,61.5 parent: 2 - uid: 9438 components: - type: Transform - pos: -50.5,14.5 + pos: -11.5,61.5 parent: 2 - uid: 9439 components: - type: Transform - pos: -43.5,9.5 + pos: -10.5,61.5 parent: 2 - uid: 9440 components: - type: Transform - pos: -43.5,8.5 + pos: -9.5,61.5 parent: 2 - uid: 9441 components: - type: Transform - pos: -43.5,7.5 + pos: -12.5,58.5 parent: 2 - uid: 9442 components: - type: Transform - pos: -42.5,7.5 + pos: -11.5,58.5 parent: 2 - uid: 9443 components: - type: Transform - pos: -41.5,7.5 + pos: -10.5,58.5 parent: 2 - uid: 9444 components: - type: Transform - pos: -41.5,6.5 + pos: -9.5,58.5 parent: 2 - uid: 9445 components: - type: Transform - pos: -41.5,5.5 + pos: -8.5,58.5 parent: 2 - uid: 9446 components: - type: Transform - pos: -41.5,4.5 + pos: -7.5,58.5 parent: 2 - uid: 9447 components: - type: Transform - pos: -41.5,3.5 + pos: -6.5,58.5 parent: 2 - uid: 9448 components: - type: Transform - pos: -41.5,2.5 + pos: -5.5,58.5 parent: 2 - uid: 9449 components: - type: Transform - pos: -42.5,2.5 + pos: -5.5,57.5 parent: 2 - uid: 9450 components: - type: Transform - pos: -42.5,1.5 + pos: -5.5,56.5 parent: 2 - uid: 9451 components: - type: Transform - pos: -42.5,0.5 + pos: -5.5,55.5 parent: 2 - uid: 9452 components: - type: Transform - pos: -42.5,-0.5 + pos: -5.5,54.5 parent: 2 - uid: 9453 components: - type: Transform - pos: -43.5,2.5 + pos: -3.5,53.5 parent: 2 - uid: 9454 components: - type: Transform - pos: 17.5,24.5 + pos: -2.5,53.5 parent: 2 - uid: 9455 components: - type: Transform - pos: -47.5,-3.5 + pos: -1.5,53.5 parent: 2 - uid: 9456 components: - type: Transform - pos: -47.5,-2.5 + pos: -1.5,52.5 parent: 2 - uid: 9457 components: - type: Transform - pos: -47.5,-1.5 + pos: -1.5,51.5 parent: 2 - uid: 9458 components: - type: Transform - pos: -47.5,-0.5 + pos: -1.5,50.5 parent: 2 - uid: 9459 components: - type: Transform - pos: -47.5,0.5 + pos: -1.5,49.5 parent: 2 - uid: 9460 components: - type: Transform - pos: -47.5,1.5 + pos: -1.5,48.5 parent: 2 - uid: 9461 components: - type: Transform - pos: -47.5,2.5 + pos: -1.5,47.5 parent: 2 - uid: 9462 components: - type: Transform - pos: -47.5,3.5 + pos: -2.5,47.5 parent: 2 - uid: 9463 components: - type: Transform - pos: -47.5,4.5 + pos: -3.5,47.5 parent: 2 - uid: 9464 components: - type: Transform - pos: -47.5,5.5 + pos: -4.5,47.5 parent: 2 - uid: 9465 components: - type: Transform - pos: -47.5,6.5 + pos: -5.5,47.5 parent: 2 - uid: 9466 components: - type: Transform - pos: -48.5,6.5 + pos: -6.5,47.5 parent: 2 - uid: 9467 components: - type: Transform - pos: -49.5,6.5 + pos: -7.5,47.5 parent: 2 - uid: 9468 components: - type: Transform - pos: -48.5,1.5 + pos: -8.5,47.5 parent: 2 - uid: 9469 components: - type: Transform - pos: -49.5,1.5 + pos: -9.5,47.5 parent: 2 - uid: 9470 components: - type: Transform - pos: -37.5,-2.5 + pos: -0.5,47.5 parent: 2 - uid: 9471 components: - type: Transform - pos: -45.5,-3.5 + pos: 0.5,47.5 parent: 2 - uid: 9472 components: - type: Transform - pos: -44.5,-3.5 + pos: 1.5,47.5 parent: 2 - uid: 9473 components: - type: Transform - pos: -43.5,-3.5 + pos: 2.5,47.5 parent: 2 - uid: 9474 components: - type: Transform - pos: -42.5,-3.5 + pos: 3.5,47.5 parent: 2 - uid: 9475 components: - type: Transform - pos: -41.5,-3.5 + pos: 4.5,47.5 parent: 2 - uid: 9476 components: - type: Transform - pos: -40.5,-3.5 + pos: 4.5,48.5 parent: 2 - uid: 9477 components: - type: Transform - pos: -39.5,-3.5 + pos: -1.5,54.5 parent: 2 - uid: 9478 components: - type: Transform - pos: -38.5,-3.5 + pos: -1.5,55.5 parent: 2 - uid: 9479 components: - type: Transform - pos: -37.5,-3.5 + pos: -1.5,56.5 parent: 2 - uid: 9480 components: - type: Transform - pos: -37.5,-1.5 + pos: -1.5,57.5 parent: 2 - uid: 9481 components: - type: Transform - pos: -37.5,-0.5 + pos: -1.5,58.5 parent: 2 - uid: 9482 components: - type: Transform - pos: -37.5,0.5 + pos: -1.5,59.5 parent: 2 - uid: 9483 components: - type: Transform - pos: -37.5,1.5 + pos: -1.5,60.5 parent: 2 - uid: 9484 components: - type: Transform - pos: -37.5,2.5 + pos: -6.5,68.5 parent: 2 - uid: 9485 components: - type: Transform - pos: -37.5,3.5 + pos: -6.5,69.5 parent: 2 - uid: 9486 components: - type: Transform - pos: -37.5,4.5 + pos: -7.5,69.5 parent: 2 - uid: 9487 components: - type: Transform - pos: -37.5,5.5 + pos: -8.5,69.5 parent: 2 - uid: 9488 components: - type: Transform - pos: -37.5,6.5 + pos: -9.5,69.5 parent: 2 - uid: 9489 components: - type: Transform - pos: -36.5,4.5 + pos: -10.5,69.5 parent: 2 - uid: 9490 components: - type: Transform - pos: -35.5,4.5 + pos: -8.5,70.5 parent: 2 - uid: 9491 components: - type: Transform - pos: -34.5,4.5 + pos: -8.5,71.5 parent: 2 - uid: 9492 components: - type: Transform - pos: -33.5,4.5 + pos: -5.5,69.5 parent: 2 - uid: 9493 components: - type: Transform - pos: -32.5,4.5 + pos: -4.5,69.5 parent: 2 - uid: 9494 components: - type: Transform - pos: -31.5,4.5 + pos: -5.5,67.5 parent: 2 - uid: 9495 components: - type: Transform - pos: -30.5,4.5 + pos: -4.5,33.5 parent: 2 - uid: 9496 components: - type: Transform - pos: -29.5,4.5 + pos: -4.5,34.5 parent: 2 - uid: 9497 components: - type: Transform - pos: -29.5,5.5 + pos: -4.5,35.5 parent: 2 - uid: 9498 components: - type: Transform - pos: -29.5,6.5 + pos: -5.5,35.5 parent: 2 - uid: 9499 components: - type: Transform - pos: -29.5,7.5 + pos: -6.5,35.5 parent: 2 - uid: 9500 components: - type: Transform - pos: -33.5,5.5 + pos: -7.5,35.5 parent: 2 - uid: 9501 components: - type: Transform - pos: -33.5,6.5 + pos: -8.5,35.5 parent: 2 - uid: 9502 components: - type: Transform - pos: -33.5,7.5 + pos: -9.5,35.5 parent: 2 - uid: 9503 components: - type: Transform - pos: 6.5,45.5 + pos: -27.5,-40.5 parent: 2 - uid: 9504 components: - type: Transform - pos: 6.5,46.5 + pos: -26.5,-40.5 parent: 2 - uid: 9505 components: - type: Transform - pos: 6.5,47.5 + pos: -25.5,-40.5 parent: 2 - uid: 9506 components: - type: Transform - pos: 6.5,48.5 + pos: -34.5,-47.5 parent: 2 - uid: 9507 components: - type: Transform - pos: 7.5,48.5 + pos: -34.5,-48.5 parent: 2 - uid: 9508 components: - type: Transform - pos: 8.5,48.5 + pos: -34.5,-46.5 parent: 2 - uid: 9509 components: - type: Transform - pos: 9.5,48.5 + pos: -34.5,-45.5 parent: 2 - uid: 9510 components: - type: Transform - pos: -36.5,-10.5 + pos: -33.5,-45.5 parent: 2 - uid: 9511 components: - type: Transform - pos: -36.5,-11.5 + pos: -33.5,-44.5 parent: 2 - uid: 9512 components: - type: Transform - pos: 10.5,48.5 + pos: -38.5,-44.5 parent: 2 - uid: 9513 components: - type: Transform - pos: 10.5,47.5 + pos: -38.5,-42.5 parent: 2 - uid: 9514 components: - type: Transform - pos: 10.5,46.5 + pos: -35.5,-45.5 parent: 2 - uid: 9515 components: - type: Transform - pos: 10.5,45.5 + pos: -36.5,-45.5 parent: 2 - uid: 9516 components: - type: Transform - pos: -38.5,-13.5 + pos: -38.5,-40.5 parent: 2 - uid: 9517 components: - type: Transform - pos: -38.5,-14.5 + pos: -39.5,-40.5 parent: 2 - uid: 9518 components: - type: Transform - pos: -38.5,-9.5 + pos: -40.5,-40.5 parent: 2 - uid: 9519 components: - type: Transform - pos: -38.5,-8.5 + pos: -40.5,-39.5 parent: 2 - uid: 9520 components: - type: Transform - pos: -39.5,-9.5 + pos: -40.5,-38.5 parent: 2 - uid: 9521 components: - type: Transform - pos: -40.5,-9.5 + pos: -40.5,-41.5 parent: 2 - uid: 9522 components: - type: Transform - pos: -41.5,-9.5 + pos: -40.5,-42.5 parent: 2 - uid: 9523 components: - type: Transform - pos: -42.5,-9.5 + pos: 45.5,-0.5 parent: 2 - uid: 9524 components: - type: Transform - pos: -43.5,-9.5 + pos: 72.5,-20.5 parent: 2 - uid: 9525 components: - type: Transform - pos: -43.5,-8.5 + pos: 69.5,-19.5 parent: 2 - uid: 9526 components: - type: Transform - pos: -43.5,-7.5 + pos: -24.5,9.5 parent: 2 - uid: 9527 components: - type: Transform - pos: -44.5,-9.5 + pos: -24.5,8.5 parent: 2 - uid: 9528 components: - type: Transform - pos: -45.5,-9.5 + pos: -24.5,7.5 parent: 2 - uid: 9529 components: - type: Transform - pos: -46.5,-9.5 + pos: 69.5,-13.5 parent: 2 - uid: 9530 components: - type: Transform - pos: -46.5,-8.5 + pos: 71.5,-20.5 parent: 2 - uid: 9531 components: - type: Transform - pos: -46.5,-7.5 + pos: 70.5,-20.5 parent: 2 - uid: 9532 components: - type: Transform - pos: -46.5,-10.5 + pos: 69.5,-20.5 parent: 2 - uid: 9533 components: - type: Transform - pos: -46.5,-11.5 + pos: 69.5,-17.5 parent: 2 - uid: 9534 components: - type: Transform - pos: -46.5,-12.5 + pos: 69.5,-18.5 parent: 2 - uid: 9535 components: - type: Transform - pos: -47.5,-12.5 + pos: 69.5,-12.5 parent: 2 - uid: 9536 components: - type: Transform - pos: -38.5,-7.5 + pos: 73.5,-20.5 parent: 2 - uid: 9537 components: - type: Transform - pos: -39.5,-7.5 + pos: 76.5,-20.5 parent: 2 - uid: 9538 components: - type: Transform - pos: -36.5,-7.5 + pos: -26.5,56.5 parent: 2 - uid: 9539 components: - type: Transform - pos: -37.5,-7.5 + pos: -9.5,8.5 parent: 2 - uid: 9540 components: - type: Transform - pos: -40.5,-7.5 + pos: -10.5,9.5 parent: 2 - uid: 9541 components: - type: Transform - pos: -36.5,-3.5 + pos: -9.5,-9.5 parent: 2 - uid: 9542 components: - type: Transform - pos: -35.5,-3.5 + pos: -10.5,10.5 parent: 2 - uid: 9543 components: - type: Transform - pos: -34.5,-3.5 + pos: -11.5,-9.5 parent: 2 - uid: 9544 components: - type: Transform - pos: -33.5,-3.5 + pos: -8.5,-5.5 parent: 2 - uid: 9545 components: - type: Transform - pos: -33.5,-4.5 + pos: 2.5,39.5 parent: 2 - uid: 9546 components: - type: Transform - pos: -33.5,-5.5 + pos: 4.5,39.5 parent: 2 - uid: 9547 components: - type: Transform - pos: -33.5,-6.5 + pos: 3.5,39.5 parent: 2 - uid: 9548 components: - type: Transform - pos: -33.5,-7.5 + pos: -25.5,7.5 parent: 2 - uid: 9549 components: - type: Transform - pos: -33.5,-8.5 + pos: -0.5,2.5 parent: 2 - uid: 9550 components: - type: Transform - pos: -33.5,-9.5 + pos: 34.5,22.5 parent: 2 - uid: 9551 components: - type: Transform - pos: -33.5,-10.5 + pos: -4.5,-7.5 parent: 2 - uid: 9552 components: - type: Transform - pos: -33.5,-11.5 + pos: 14.5,0.5 parent: 2 - uid: 9553 components: - type: Transform - pos: -33.5,-12.5 + pos: -8.5,-6.5 parent: 2 - uid: 9554 components: - type: Transform - pos: -33.5,-13.5 + pos: -5.5,-7.5 parent: 2 - uid: 9555 components: - type: Transform - pos: -33.5,-2.5 + pos: -6.5,-7.5 parent: 2 - uid: 9556 components: - type: Transform - pos: -33.5,-1.5 + pos: -9.5,-4.5 parent: 2 - uid: 9557 components: - type: Transform - pos: -33.5,-0.5 + pos: -7.5,-7.5 parent: 2 - uid: 9558 components: - type: Transform - pos: -33.5,0.5 + pos: -10.5,2.5 parent: 2 - uid: 9559 components: - type: Transform - pos: -32.5,0.5 + pos: -10.5,-4.5 parent: 2 - uid: 9560 components: - type: Transform - pos: -31.5,0.5 + pos: -11.5,-4.5 parent: 2 - uid: 9561 components: - type: Transform - pos: -30.5,0.5 + pos: -10.5,3.5 parent: 2 - uid: 9562 components: - type: Transform - pos: -29.5,0.5 + pos: -5.5,-10.5 parent: 2 - uid: 9563 components: - type: Transform - pos: -28.5,0.5 + pos: -9.5,-8.5 parent: 2 - uid: 9564 components: - type: Transform - pos: -29.5,-13.5 + pos: 74.5,-20.5 parent: 2 - uid: 9565 components: - type: Transform - pos: -28.5,-13.5 + pos: -22.5,7.5 parent: 2 - uid: 9566 components: - type: Transform - pos: -29.5,-11.5 + pos: -21.5,6.5 parent: 2 - uid: 9567 components: - type: Transform - pos: -29.5,-10.5 + pos: -23.5,7.5 parent: 2 - uid: 9568 components: - type: Transform - pos: -29.5,-9.5 + pos: -21.5,7.5 parent: 2 - uid: 9569 components: - type: Transform - pos: -29.5,-8.5 + pos: -25.5,6.5 parent: 2 - uid: 9570 components: - type: Transform - pos: -29.5,-7.5 + pos: -45.5,-2.5 parent: 2 - uid: 9571 components: - type: Transform - pos: -29.5,-6.5 + pos: -8.5,-3.5 parent: 2 - uid: 9572 components: - type: Transform - pos: -28.5,-10.5 + pos: 44.5,0.5 parent: 2 - uid: 9573 components: - type: Transform - pos: -25.5,-11.5 + pos: -12.5,8.5 parent: 2 - uid: 9574 components: - type: Transform - pos: -24.5,-11.5 + pos: -8.5,-10.5 parent: 2 - uid: 9575 components: - type: Transform - pos: -23.5,-11.5 + pos: -7.5,-3.5 parent: 2 - uid: 9576 components: - type: Transform - pos: -23.5,-10.5 + pos: -45.5,-3.5 parent: 2 - uid: 9577 components: - type: Transform - pos: -21.5,-10.5 + pos: -8.5,-4.5 parent: 2 - uid: 9578 components: - type: Transform - pos: -21.5,-9.5 + pos: -45.5,-1.5 parent: 2 - uid: 9579 components: - type: Transform - pos: -22.5,-10.5 + pos: -5.5,-31.5 parent: 2 - uid: 9580 components: - type: Transform - pos: -25.5,-8.5 + pos: -46.5,-3.5 parent: 2 - uid: 9581 components: - type: Transform - pos: -26.5,-7.5 + pos: -5.5,-3.5 parent: 2 - uid: 9582 components: - type: Transform - pos: -25.5,-7.5 + pos: -6.5,-3.5 parent: 2 - uid: 9583 components: - type: Transform - pos: -26.5,-10.5 + pos: 32.5,18.5 parent: 2 - uid: 9584 components: - type: Transform - pos: -25.5,-10.5 + pos: 34.5,24.5 parent: 2 - uid: 9585 components: - type: Transform - pos: -25.5,-9.5 + pos: 34.5,23.5 parent: 2 - uid: 9586 components: - type: Transform - pos: -19.5,-3.5 + pos: 47.5,-0.5 parent: 2 - uid: 9587 components: - type: Transform - pos: -19.5,-2.5 + pos: 46.5,-0.5 parent: 2 - uid: 9588 components: - type: Transform - pos: -21.5,-3.5 + pos: -27.5,56.5 parent: 2 - uid: 9589 components: - type: Transform - pos: 69.5,-14.5 + pos: -25.5,56.5 parent: 2 - uid: 9590 components: - type: Transform - pos: 44.5,2.5 + pos: 73.5,-10.5 parent: 2 - uid: 9591 components: - type: Transform - pos: 44.5,1.5 + pos: 10.5,-3.5 parent: 2 - uid: 9592 components: - type: Transform - pos: 44.5,-0.5 + pos: 2.5,-10.5 parent: 2 - uid: 9593 components: - type: Transform - pos: 72.5,-10.5 + pos: 0.5,-0.5 parent: 2 - uid: 9594 components: - type: Transform - pos: 71.5,-10.5 + pos: -44.5,12.5 parent: 2 - uid: 9595 components: - type: Transform - pos: 23.5,-29.5 + pos: -11.5,8.5 parent: 2 - uid: 9596 components: - type: Transform - pos: 23.5,-28.5 + pos: 2.5,62.5 parent: 2 - uid: 9597 components: - type: Transform - pos: 23.5,-27.5 + pos: 2.5,63.5 parent: 2 - uid: 9598 components: - type: Transform - pos: -19.5,-0.5 + pos: 2.5,64.5 parent: 2 - uid: 9599 components: - type: Transform - pos: -19.5,-1.5 + pos: 3.5,62.5 parent: 2 - uid: 9600 components: - type: Transform - pos: -20.5,-0.5 + pos: 4.5,62.5 parent: 2 - uid: 9601 components: - type: Transform - pos: -21.5,-0.5 + pos: 2.5,61.5 parent: 2 - uid: 9602 components: - type: Transform - pos: -21.5,-1.5 + pos: 2.5,60.5 parent: 2 - uid: 9603 components: - type: Transform - pos: -22.5,-1.5 + pos: 5.5,62.5 parent: 2 - uid: 9604 components: - type: Transform - pos: -22.5,-2.5 + pos: -21.5,5.5 parent: 2 - uid: 9605 components: - type: Transform - pos: -23.5,-2.5 + pos: -21.5,4.5 parent: 2 - uid: 9606 components: - type: Transform - pos: -23.5,-3.5 + pos: -22.5,8.5 parent: 2 - uid: 9607 components: - type: Transform - pos: -24.5,-3.5 + pos: -22.5,9.5 parent: 2 - uid: 9608 components: - type: Transform - pos: -24.5,-4.5 + pos: -22.5,10.5 parent: 2 - uid: 9609 components: - type: Transform - pos: -25.5,-4.5 + pos: -22.5,11.5 parent: 2 - uid: 9610 components: - type: Transform - pos: -26.5,-4.5 + pos: -21.5,11.5 parent: 2 - uid: 9611 components: - type: Transform - pos: -27.5,-4.5 + pos: -20.5,11.5 parent: 2 - uid: 9612 components: - type: Transform - pos: -28.5,-4.5 + pos: -34.5,9.5 parent: 2 - uid: 9613 components: - type: Transform - pos: -11.5,-38.5 + pos: -34.5,10.5 parent: 2 - uid: 9614 components: - type: Transform - pos: -13.5,54.5 + pos: -34.5,11.5 parent: 2 - uid: 9615 components: - type: Transform - pos: -10.5,-38.5 + pos: -33.5,11.5 parent: 2 - uid: 9616 components: - type: Transform - pos: -9.5,-38.5 + pos: -32.5,11.5 parent: 2 - uid: 9617 components: - type: Transform - pos: -9.5,-37.5 + pos: -31.5,11.5 parent: 2 - uid: 9618 components: - type: Transform - pos: -9.5,-36.5 + pos: -30.5,11.5 parent: 2 - uid: 9619 components: - type: Transform - pos: -12.5,49.5 + pos: -29.5,11.5 parent: 2 - uid: 9620 components: - type: Transform - pos: -12.5,48.5 + pos: -28.5,11.5 parent: 2 - uid: 9621 components: - type: Transform - pos: -9.5,-35.5 + pos: -27.5,11.5 parent: 2 - uid: 9622 components: - type: Transform - pos: -9.5,-34.5 + pos: -26.5,11.5 parent: 2 - uid: 9623 components: - type: Transform - pos: -9.5,-33.5 + pos: -35.5,11.5 parent: 2 - uid: 9624 components: - type: Transform - pos: -9.5,-32.5 + pos: -36.5,11.5 parent: 2 - uid: 9625 components: - type: Transform - pos: -12.5,50.5 + pos: -37.5,11.5 parent: 2 - uid: 9626 components: - type: Transform - pos: -11.5,50.5 + pos: -38.5,11.5 parent: 2 - uid: 9627 components: - type: Transform - pos: -10.5,50.5 + pos: -39.5,11.5 parent: 2 - uid: 9628 components: - type: Transform - pos: -9.5,50.5 + pos: -40.5,11.5 parent: 2 - uid: 9629 components: - type: Transform - pos: -8.5,50.5 + pos: -41.5,11.5 parent: 2 - uid: 9630 components: - type: Transform - pos: -5.5,-30.5 + pos: -42.5,11.5 parent: 2 - uid: 9631 components: - type: Transform - pos: -5.5,-32.5 + pos: -43.5,11.5 parent: 2 - uid: 9632 components: - type: Transform - pos: -4.5,-32.5 + pos: -44.5,11.5 parent: 2 - uid: 9633 components: - type: Transform - pos: -3.5,-32.5 + pos: -45.5,11.5 parent: 2 - uid: 9634 components: - type: Transform - pos: -10.5,1.5 + pos: -46.5,11.5 parent: 2 - uid: 9635 components: - type: Transform - pos: -11.5,0.5 + pos: -47.5,11.5 parent: 2 - uid: 9636 components: - type: Transform - pos: -10.5,0.5 + pos: -44.5,13.5 parent: 2 - uid: 9637 components: - type: Transform - pos: -9.5,0.5 + pos: -44.5,14.5 parent: 2 - uid: 9638 components: - type: Transform - pos: -8.5,0.5 + pos: -44.5,15.5 parent: 2 - uid: 9639 components: - type: Transform - pos: -7.5,0.5 + pos: -48.5,11.5 parent: 2 - uid: 9640 components: - type: Transform - pos: -6.5,0.5 + pos: -48.5,12.5 parent: 2 - uid: 9641 components: - type: Transform - pos: -5.5,0.5 + pos: -48.5,13.5 parent: 2 - uid: 9642 components: - type: Transform - pos: -4.5,0.5 + pos: -48.5,14.5 parent: 2 - uid: 9643 components: - type: Transform - pos: -3.5,0.5 + pos: -48.5,15.5 parent: 2 - uid: 9644 components: - type: Transform - pos: -2.5,0.5 + pos: -40.5,12.5 parent: 2 - uid: 9645 components: - type: Transform - pos: -2.5,1.5 + pos: -40.5,13.5 parent: 2 - uid: 9646 components: - type: Transform - pos: -2.5,2.5 + pos: -40.5,14.5 parent: 2 - uid: 9647 components: - type: Transform - pos: -1.5,2.5 + pos: -40.5,15.5 parent: 2 - uid: 9648 components: - type: Transform - pos: -12.5,0.5 + pos: -53.5,18.5 parent: 2 - uid: 9649 components: - type: Transform - pos: 0.5,2.5 + pos: -53.5,17.5 parent: 2 - uid: 9650 components: - type: Transform - pos: 1.5,2.5 + pos: -53.5,16.5 parent: 2 - uid: 9651 components: - type: Transform - pos: 1.5,3.5 + pos: -54.5,16.5 parent: 2 - uid: 9652 components: - type: Transform - pos: 0.5,1.5 + pos: -55.5,16.5 parent: 2 - uid: 9653 components: - type: Transform - pos: 0.5,0.5 + pos: -55.5,15.5 parent: 2 - uid: 9654 components: - type: Transform - pos: 15.5,2.5 + pos: -55.5,14.5 parent: 2 - uid: 9655 components: - type: Transform - pos: 15.5,3.5 + pos: -55.5,13.5 parent: 2 - uid: 9656 components: - type: Transform - pos: 15.5,1.5 + pos: -55.5,12.5 parent: 2 - uid: 9657 components: - type: Transform - pos: 15.5,0.5 + pos: -55.5,11.5 parent: 2 - uid: 9658 components: - type: Transform - pos: 16.5,0.5 + pos: -54.5,11.5 parent: 2 - uid: 9659 components: - type: Transform - pos: 17.5,0.5 + pos: -53.5,11.5 parent: 2 - uid: 9660 components: - type: Transform - pos: 13.5,0.5 + pos: -52.5,11.5 parent: 2 - uid: 9661 components: - type: Transform - pos: 12.5,0.5 + pos: -55.5,10.5 parent: 2 - uid: 9662 components: - type: Transform - pos: 11.5,0.5 + pos: -55.5,9.5 parent: 2 - uid: 9663 components: - type: Transform - pos: 10.5,0.5 + pos: -52.5,10.5 parent: 2 - uid: 9664 components: - type: Transform - pos: 9.5,0.5 + pos: -52.5,9.5 parent: 2 - uid: 9665 components: - type: Transform - pos: 8.5,0.5 + pos: -38.5,12.5 parent: 2 - uid: 9666 components: - type: Transform - pos: 7.5,0.5 + pos: -38.5,13.5 parent: 2 - uid: 9667 components: - type: Transform - pos: 7.5,2.5 + pos: -36.5,13.5 parent: 2 - uid: 9668 components: - type: Transform - pos: 7.5,1.5 + pos: -36.5,12.5 parent: 2 - uid: 9669 components: - type: Transform - pos: 6.5,2.5 + pos: -41.5,14.5 parent: 2 - uid: 9670 components: - type: Transform - pos: 5.5,2.5 + pos: -42.5,14.5 parent: 2 - uid: 9671 components: - type: Transform - pos: 4.5,2.5 + pos: -45.5,14.5 parent: 2 - uid: 9672 components: - type: Transform - pos: 3.5,2.5 + pos: -46.5,14.5 parent: 2 - uid: 9673 components: - type: Transform - pos: 3.5,3.5 + pos: -49.5,14.5 parent: 2 - uid: 9674 components: - type: Transform - pos: 4.5,1.5 + pos: -50.5,14.5 parent: 2 - uid: 9675 components: - type: Transform - pos: 4.5,0.5 + pos: -43.5,9.5 parent: 2 - uid: 9676 components: - type: Transform - pos: 4.5,-0.5 + pos: -43.5,8.5 parent: 2 - uid: 9677 components: - type: Transform - pos: 13.5,-1.5 + pos: -43.5,7.5 parent: 2 - uid: 9678 components: - type: Transform - pos: 4.5,-7.5 + pos: -42.5,7.5 parent: 2 - uid: 9679 components: - type: Transform - pos: 4.5,-8.5 + pos: -41.5,7.5 parent: 2 - uid: 9680 components: - type: Transform - pos: 3.5,-8.5 + pos: -41.5,6.5 parent: 2 - uid: 9681 components: - type: Transform - pos: 2.5,-8.5 + pos: -41.5,5.5 parent: 2 - uid: 9682 components: - type: Transform - pos: 2.5,-9.5 + pos: -41.5,4.5 parent: 2 - uid: 9683 components: - type: Transform - pos: 15.5,8.5 + pos: -41.5,3.5 parent: 2 - uid: 9684 components: - type: Transform - pos: 13.5,-2.5 + pos: -41.5,2.5 parent: 2 - uid: 9685 components: - type: Transform - pos: 12.5,-2.5 + pos: -42.5,2.5 parent: 2 - uid: 9686 components: - type: Transform - pos: 12.5,-3.5 + pos: -42.5,1.5 parent: 2 - uid: 9687 components: - type: Transform - pos: 12.5,-4.5 + pos: -42.5,0.5 parent: 2 - uid: 9688 components: - type: Transform - pos: 11.5,-3.5 + pos: -42.5,-0.5 parent: 2 - uid: 9689 components: - type: Transform - pos: 14.5,8.5 + pos: -43.5,2.5 parent: 2 - uid: 9690 components: - type: Transform - pos: 12.5,-5.5 + pos: 17.5,24.5 parent: 2 - uid: 9691 components: - type: Transform - pos: 15.5,25.5 + pos: -47.5,-3.5 parent: 2 - uid: 9692 components: - type: Transform - pos: 16.5,8.5 + pos: -47.5,-2.5 parent: 2 - uid: 9693 components: - type: Transform - pos: 12.5,-6.5 + pos: -47.5,-1.5 parent: 2 - uid: 9694 components: - type: Transform - pos: 12.5,-7.5 + pos: -47.5,-0.5 parent: 2 - uid: 9695 components: - type: Transform - pos: 16.5,-8.5 + pos: -47.5,0.5 parent: 2 - uid: 9696 components: - type: Transform - pos: 12.5,-8.5 + pos: -47.5,1.5 parent: 2 - uid: 9697 components: - type: Transform - pos: 15.5,-8.5 + pos: -47.5,2.5 parent: 2 - uid: 9698 components: - type: Transform - pos: 11.5,-8.5 + pos: -47.5,3.5 parent: 2 - uid: 9699 components: - type: Transform - pos: 15.5,-7.5 + pos: -47.5,4.5 parent: 2 - uid: 9700 components: - type: Transform - pos: 10.5,-8.5 + pos: -47.5,5.5 parent: 2 - uid: 9701 components: - type: Transform - pos: 15.5,-6.5 + pos: -47.5,6.5 parent: 2 - uid: 9702 components: - type: Transform - pos: 17.5,-8.5 + pos: -48.5,6.5 parent: 2 - uid: 9703 components: - type: Transform - pos: 17.5,-7.5 + pos: -49.5,6.5 parent: 2 - uid: 9704 components: - type: Transform - pos: 17.5,-6.5 + pos: -48.5,1.5 parent: 2 - uid: 9705 components: - type: Transform - pos: 17.5,-5.5 + pos: -49.5,1.5 parent: 2 - uid: 9706 components: - type: Transform - pos: 17.5,-9.5 + pos: -37.5,-2.5 parent: 2 - uid: 9707 components: - type: Transform - pos: 17.5,-10.5 + pos: -45.5,-3.5 parent: 2 - uid: 9708 components: - type: Transform - pos: 17.5,-11.5 + pos: -44.5,-3.5 parent: 2 - uid: 9709 components: - type: Transform - pos: 16.5,9.5 + pos: -43.5,-3.5 parent: 2 - uid: 9710 components: - type: Transform - pos: 16.5,10.5 + pos: -42.5,-3.5 parent: 2 - uid: 9711 components: - type: Transform - pos: 12.5,25.5 + pos: -41.5,-3.5 parent: 2 - uid: 9712 components: - type: Transform - pos: 11.5,-11.5 + pos: -40.5,-3.5 parent: 2 - uid: 9713 components: - type: Transform - pos: 12.5,-11.5 + pos: -39.5,-3.5 parent: 2 - uid: 9714 components: - type: Transform - pos: 8.5,-10.5 + pos: -38.5,-3.5 parent: 2 - uid: 9715 components: - type: Transform - pos: 10.5,-11.5 + pos: -37.5,-3.5 parent: 2 - uid: 9716 components: - type: Transform - pos: 9.5,-11.5 + pos: -37.5,-1.5 parent: 2 - uid: 9717 components: - type: Transform - pos: 8.5,-11.5 + pos: -37.5,-0.5 parent: 2 - uid: 9718 components: - type: Transform - pos: 15.5,24.5 + pos: -37.5,0.5 parent: 2 - uid: 9719 components: - type: Transform - pos: 16.5,17.5 + pos: -37.5,1.5 parent: 2 - uid: 9720 components: - type: Transform - pos: 16.5,11.5 + pos: -37.5,2.5 parent: 2 - uid: 9721 components: - type: Transform - pos: 16.5,7.5 + pos: -37.5,3.5 parent: 2 - uid: 9722 components: - type: Transform - pos: 16.5,6.5 + pos: -37.5,4.5 parent: 2 - uid: 9723 components: - type: Transform - pos: 16.5,5.5 + pos: -37.5,5.5 parent: 2 - uid: 9724 components: - type: Transform - pos: 17.5,8.5 + pos: -37.5,6.5 parent: 2 - uid: 9725 components: - type: Transform - pos: 10.5,25.5 + pos: -36.5,4.5 parent: 2 - uid: 9726 components: - type: Transform - pos: 9.5,25.5 + pos: -35.5,4.5 parent: 2 - uid: 9727 components: - type: Transform - pos: 8.5,25.5 + pos: -34.5,4.5 parent: 2 - uid: 9728 components: - type: Transform - pos: 1.5,11.5 + pos: -33.5,4.5 parent: 2 - uid: 9729 components: - type: Transform - pos: 1.5,12.5 + pos: -32.5,4.5 parent: 2 - uid: 9730 components: - type: Transform - pos: 1.5,13.5 + pos: -31.5,4.5 parent: 2 - uid: 9731 components: - type: Transform - pos: 0.5,13.5 + pos: -30.5,4.5 parent: 2 - uid: 9732 components: - type: Transform - pos: 2.5,12.5 + pos: -29.5,4.5 parent: 2 - uid: 9733 components: - type: Transform - pos: 3.5,12.5 + pos: -29.5,5.5 parent: 2 - uid: 9734 components: - type: Transform - pos: 3.5,13.5 + pos: -29.5,6.5 parent: 2 - uid: 9735 components: - type: Transform - pos: 4.5,13.5 + pos: -29.5,7.5 parent: 2 - uid: 9736 components: - type: Transform - pos: -0.5,13.5 + pos: -33.5,5.5 parent: 2 - uid: 9737 components: - type: Transform - pos: -1.5,13.5 + pos: -33.5,6.5 parent: 2 - uid: 9738 components: - type: Transform - pos: -2.5,13.5 + pos: -33.5,7.5 parent: 2 - uid: 9739 components: - type: Transform - pos: -2.5,12.5 + pos: 6.5,45.5 parent: 2 - uid: 9740 components: - type: Transform - pos: -3.5,12.5 + pos: 6.5,46.5 parent: 2 - uid: 9741 components: - type: Transform - pos: -3.5,11.5 + pos: 6.5,47.5 parent: 2 - uid: 9742 components: - type: Transform - pos: 5.5,13.5 + pos: 6.5,48.5 parent: 2 - uid: 9743 components: - type: Transform - pos: 6.5,13.5 + pos: 7.5,48.5 parent: 2 - uid: 9744 components: - type: Transform - pos: 7.5,13.5 + pos: 8.5,48.5 parent: 2 - uid: 9745 components: - type: Transform - pos: 7.5,12.5 + pos: 9.5,48.5 parent: 2 - uid: 9746 components: - type: Transform - pos: 8.5,12.5 + pos: -36.5,-10.5 parent: 2 - uid: 9747 components: - type: Transform - pos: 8.5,11.5 + pos: -36.5,-11.5 parent: 2 - uid: 9748 components: - type: Transform - pos: 4.5,49.5 + pos: 10.5,48.5 parent: 2 - uid: 9749 components: - type: Transform - pos: 4.5,50.5 + pos: 10.5,47.5 parent: 2 - uid: 9750 components: - type: Transform - pos: 4.5,51.5 + pos: 10.5,46.5 parent: 2 - uid: 9751 components: - type: Transform - pos: 4.5,52.5 + pos: 10.5,45.5 parent: 2 - uid: 9752 components: - type: Transform - pos: 4.5,53.5 + pos: -38.5,-13.5 parent: 2 - uid: 9753 components: - type: Transform - pos: 8.5,26.5 + pos: -38.5,-14.5 parent: 2 - uid: 9754 components: - type: Transform - pos: 14.5,37.5 + pos: -38.5,-9.5 parent: 2 - uid: 9755 components: - type: Transform - pos: 12.5,36.5 + pos: -38.5,-8.5 parent: 2 - uid: 9756 components: - type: Transform - pos: 14.5,36.5 + pos: -39.5,-9.5 parent: 2 - uid: 9757 components: - type: Transform - pos: 14.5,35.5 + pos: -40.5,-9.5 parent: 2 - uid: 9758 components: - type: Transform - pos: 14.5,34.5 + pos: -41.5,-9.5 parent: 2 - uid: 9759 components: - type: Transform - pos: 14.5,33.5 + pos: -42.5,-9.5 parent: 2 - uid: 9760 components: - type: Transform - pos: 15.5,33.5 + pos: -43.5,-9.5 parent: 2 - uid: 9761 components: - type: Transform - pos: 16.5,33.5 + pos: -43.5,-8.5 parent: 2 - uid: 9762 components: - type: Transform - pos: 17.5,33.5 + pos: -43.5,-7.5 parent: 2 - uid: 9763 components: - type: Transform - pos: 11.5,36.5 + pos: -44.5,-9.5 parent: 2 - uid: 9764 components: - type: Transform - pos: 10.5,36.5 + pos: -45.5,-9.5 parent: 2 - uid: 9765 components: - type: Transform - pos: 9.5,36.5 + pos: -46.5,-9.5 parent: 2 - uid: 9766 components: - type: Transform - pos: 8.5,36.5 + pos: -46.5,-8.5 parent: 2 - uid: 9767 components: - type: Transform - pos: 8.5,37.5 + pos: -46.5,-7.5 parent: 2 - uid: 9768 components: - type: Transform - pos: 8.5,38.5 + pos: -46.5,-10.5 parent: 2 - uid: 9769 components: - type: Transform - pos: 8.5,39.5 + pos: -46.5,-11.5 parent: 2 - uid: 9770 components: - type: Transform - pos: 8.5,35.5 + pos: -46.5,-12.5 parent: 2 - uid: 9771 components: - type: Transform - pos: 8.5,34.5 + pos: -47.5,-12.5 parent: 2 - uid: 9772 components: - type: Transform - pos: 8.5,33.5 + pos: -38.5,-7.5 parent: 2 - uid: 9773 components: - type: Transform - pos: 8.5,32.5 + pos: -39.5,-7.5 parent: 2 - uid: 9774 components: - type: Transform - pos: 13.5,39.5 + pos: -36.5,-7.5 parent: 2 - uid: 9775 components: - type: Transform - pos: 13.5,38.5 + pos: -37.5,-7.5 parent: 2 - uid: 9776 components: - type: Transform - pos: 13.5,37.5 + pos: -40.5,-7.5 parent: 2 - uid: 9777 components: - type: Transform - pos: 14.5,39.5 + pos: -36.5,-3.5 parent: 2 - uid: 9778 components: - type: Transform - pos: 15.5,39.5 + pos: -35.5,-3.5 parent: 2 - uid: 9779 components: - type: Transform - pos: 16.5,39.5 + pos: -34.5,-3.5 parent: 2 - uid: 9780 components: - type: Transform - pos: 17.5,39.5 + pos: -33.5,-3.5 parent: 2 - uid: 9781 components: - type: Transform - pos: 18.5,39.5 + pos: -33.5,-4.5 parent: 2 - uid: 9782 components: - type: Transform - pos: 18.5,40.5 + pos: -33.5,-5.5 parent: 2 - uid: 9783 components: - type: Transform - pos: 18.5,41.5 + pos: -33.5,-6.5 parent: 2 - uid: 9784 components: - type: Transform - pos: 18.5,42.5 + pos: -33.5,-7.5 parent: 2 - uid: 9785 components: - type: Transform - pos: 19.5,42.5 + pos: -33.5,-8.5 parent: 2 - uid: 9786 components: - type: Transform - pos: 33.5,32.5 + pos: -33.5,-9.5 parent: 2 - uid: 9787 components: - type: Transform - pos: 33.5,33.5 + pos: -33.5,-10.5 parent: 2 - uid: 9788 components: - type: Transform - pos: 32.5,32.5 + pos: -33.5,-11.5 parent: 2 - uid: 9789 components: - type: Transform - pos: 25.5,42.5 + pos: -33.5,-12.5 parent: 2 - uid: 9790 components: - type: Transform - pos: 25.5,41.5 + pos: -33.5,-13.5 parent: 2 - uid: 9791 components: - type: Transform - pos: 25.5,40.5 + pos: -33.5,-2.5 parent: 2 - uid: 9792 components: - type: Transform - pos: 25.5,39.5 + pos: -33.5,-1.5 parent: 2 - uid: 9793 components: - type: Transform - pos: 25.5,38.5 + pos: -33.5,-0.5 parent: 2 - uid: 9794 components: - type: Transform - pos: 25.5,37.5 + pos: -33.5,0.5 parent: 2 - uid: 9795 components: - type: Transform - pos: 25.5,36.5 + pos: -32.5,0.5 parent: 2 - uid: 9796 components: - type: Transform - pos: 25.5,35.5 + pos: -31.5,0.5 parent: 2 - uid: 9797 components: - type: Transform - pos: 25.5,34.5 + pos: -30.5,0.5 parent: 2 - uid: 9798 components: - type: Transform - pos: 33.5,35.5 + pos: -29.5,0.5 parent: 2 - uid: 9799 components: - type: Transform - pos: 33.5,34.5 + pos: -28.5,0.5 parent: 2 - uid: 9800 components: - type: Transform - pos: 31.5,32.5 + pos: -29.5,-13.5 parent: 2 - uid: 9801 components: - type: Transform - pos: 30.5,32.5 + pos: -28.5,-13.5 parent: 2 - uid: 9802 components: - type: Transform - pos: 29.5,32.5 + pos: -29.5,-11.5 parent: 2 - uid: 9803 components: - type: Transform - pos: 28.5,32.5 + pos: -29.5,-10.5 parent: 2 - uid: 9804 components: - type: Transform - pos: 27.5,32.5 + pos: -29.5,-9.5 parent: 2 - uid: 9805 components: - type: Transform - pos: 26.5,32.5 + pos: -29.5,-8.5 parent: 2 - uid: 9806 components: - type: Transform - pos: 25.5,32.5 + pos: -29.5,-7.5 parent: 2 - uid: 9807 components: - type: Transform - pos: 25.5,33.5 + pos: -29.5,-6.5 parent: 2 - uid: 9808 components: - type: Transform - pos: 29.5,33.5 + pos: -28.5,-10.5 parent: 2 - uid: 9809 components: - type: Transform - pos: 29.5,34.5 + pos: -25.5,-11.5 parent: 2 - uid: 9810 components: - type: Transform - pos: 29.5,35.5 + pos: -24.5,-11.5 parent: 2 - uid: 9811 components: - type: Transform - pos: 29.5,36.5 + pos: -23.5,-11.5 parent: 2 - uid: 9812 components: - type: Transform - pos: 29.5,37.5 + pos: -23.5,-10.5 parent: 2 - uid: 9813 components: - type: Transform - pos: 30.5,37.5 + pos: -21.5,-10.5 parent: 2 - uid: 9814 components: - type: Transform - pos: 31.5,37.5 + pos: -21.5,-9.5 parent: 2 - uid: 9815 components: - type: Transform - pos: 32.5,37.5 + pos: -22.5,-10.5 parent: 2 - uid: 9816 components: - type: Transform - pos: 23.5,30.5 + pos: -25.5,-8.5 parent: 2 - uid: 9817 components: - type: Transform - pos: 23.5,29.5 + pos: -26.5,-7.5 parent: 2 - uid: 9818 components: - type: Transform - pos: 23.5,28.5 + pos: -25.5,-7.5 parent: 2 - uid: 9819 components: - type: Transform - pos: 22.5,28.5 + pos: -26.5,-10.5 parent: 2 - uid: 9820 components: - type: Transform - pos: 21.5,28.5 + pos: -25.5,-10.5 parent: 2 - uid: 9821 components: - type: Transform - pos: 21.5,29.5 + pos: -25.5,-9.5 parent: 2 - uid: 9822 components: - type: Transform - pos: 21.5,30.5 + pos: -19.5,-3.5 parent: 2 - uid: 9823 components: - type: Transform - pos: 21.5,31.5 + pos: -19.5,-2.5 parent: 2 - uid: 9824 components: - type: Transform - pos: 21.5,32.5 + pos: -21.5,-3.5 parent: 2 - uid: 9825 components: - type: Transform - pos: 21.5,33.5 + pos: 69.5,-14.5 parent: 2 - uid: 9826 components: - type: Transform - pos: 21.5,34.5 + pos: 44.5,2.5 parent: 2 - uid: 9827 components: - type: Transform - pos: 24.5,28.5 + pos: 44.5,1.5 parent: 2 - uid: 9828 components: - type: Transform - pos: 25.5,28.5 + pos: 44.5,-0.5 parent: 2 - uid: 9829 components: - type: Transform - pos: 26.5,28.5 + pos: 72.5,-10.5 parent: 2 - uid: 9830 components: - type: Transform - pos: 27.5,28.5 + pos: 71.5,-10.5 parent: 2 - uid: 9831 components: - type: Transform - pos: 28.5,28.5 + pos: 23.5,-29.5 parent: 2 - uid: 9832 components: - type: Transform - pos: 29.5,28.5 + pos: 23.5,-28.5 parent: 2 - uid: 9833 components: - type: Transform - pos: 30.5,28.5 + pos: 23.5,-27.5 parent: 2 - uid: 9834 components: - type: Transform - pos: 31.5,28.5 + pos: -19.5,-0.5 parent: 2 - uid: 9835 components: - type: Transform - pos: 32.5,28.5 + pos: -19.5,-1.5 parent: 2 - uid: 9836 components: - type: Transform - pos: 33.5,28.5 + pos: -20.5,-0.5 parent: 2 - uid: 9837 components: - type: Transform - pos: 34.5,26.5 + pos: -21.5,-0.5 parent: 2 - uid: 9838 components: - type: Transform - pos: 34.5,25.5 + pos: -21.5,-1.5 parent: 2 - uid: 9839 components: - type: Transform - pos: 33.5,22.5 + pos: -22.5,-1.5 parent: 2 - uid: 9840 components: - type: Transform - pos: 32.5,22.5 + pos: -22.5,-2.5 parent: 2 - uid: 9841 components: - type: Transform - pos: 31.5,22.5 + pos: -23.5,-2.5 parent: 2 - uid: 9842 components: - type: Transform - pos: 32.5,19.5 + pos: -23.5,-3.5 parent: 2 - uid: 9843 components: - type: Transform - pos: 32.5,20.5 + pos: -24.5,-3.5 parent: 2 - uid: 9844 components: - type: Transform - pos: 32.5,21.5 + pos: -24.5,-4.5 parent: 2 - uid: 9845 components: - type: Transform - pos: 37.5,28.5 + pos: -25.5,-4.5 parent: 2 - uid: 9846 components: - type: Transform - pos: 38.5,28.5 + pos: -26.5,-4.5 parent: 2 - uid: 9847 components: - type: Transform - pos: 37.5,27.5 + pos: -27.5,-4.5 parent: 2 - uid: 9848 components: - type: Transform - pos: 39.5,26.5 + pos: -28.5,-4.5 parent: 2 - uid: 9849 components: - type: Transform - pos: 39.5,25.5 + pos: -11.5,-38.5 parent: 2 - uid: 9850 components: - type: Transform - pos: 38.5,24.5 + pos: -13.5,54.5 parent: 2 - uid: 9851 components: - type: Transform - pos: 38.5,23.5 + pos: -10.5,-38.5 parent: 2 - uid: 9852 components: - type: Transform - pos: 38.5,22.5 + pos: -9.5,-38.5 parent: 2 - uid: 9853 components: - type: Transform - pos: 38.5,21.5 + pos: -9.5,-37.5 parent: 2 - uid: 9854 components: - type: Transform - pos: 38.5,20.5 + pos: -9.5,-36.5 parent: 2 - uid: 9855 components: - type: Transform - pos: 38.5,19.5 + pos: -12.5,49.5 parent: 2 - uid: 9856 components: - type: Transform - pos: 39.5,28.5 + pos: -12.5,48.5 parent: 2 - uid: 9857 components: - type: Transform - pos: 40.5,28.5 + pos: -9.5,-35.5 parent: 2 - uid: 9858 components: - type: Transform - pos: 45.5,28.5 + pos: -9.5,-34.5 parent: 2 - uid: 9859 components: - type: Transform - pos: 44.5,28.5 + pos: -9.5,-33.5 parent: 2 - uid: 9860 components: - type: Transform - pos: 45.5,29.5 + pos: -9.5,-32.5 parent: 2 - uid: 9861 components: - type: Transform - pos: 46.5,29.5 + pos: -12.5,50.5 parent: 2 - uid: 9862 components: - type: Transform - pos: 21.5,18.5 + pos: -11.5,50.5 parent: 2 - uid: 9863 components: - type: Transform - pos: 21.5,17.5 + pos: -10.5,50.5 parent: 2 - uid: 9864 components: - type: Transform - pos: 21.5,16.5 + pos: -9.5,50.5 parent: 2 - uid: 9865 components: - type: Transform - pos: 21.5,19.5 + pos: -8.5,50.5 parent: 2 - uid: 9866 components: - type: Transform - pos: 21.5,20.5 + pos: -5.5,-30.5 parent: 2 - uid: 9867 components: - type: Transform - pos: 20.5,18.5 + pos: -5.5,-32.5 parent: 2 - uid: 9868 components: - type: Transform - pos: 22.5,20.5 + pos: -4.5,-32.5 parent: 2 - uid: 9869 components: - type: Transform - pos: 11.5,21.5 + pos: -3.5,-32.5 parent: 2 - uid: 9870 components: - type: Transform - pos: 10.5,21.5 + pos: -10.5,1.5 parent: 2 - uid: 9871 components: - type: Transform - pos: 9.5,21.5 + pos: -11.5,0.5 parent: 2 - uid: 9872 components: - type: Transform - pos: 8.5,21.5 + pos: -10.5,0.5 parent: 2 - uid: 9873 components: - type: Transform - pos: 12.5,21.5 + pos: -9.5,0.5 parent: 2 - uid: 9874 components: - type: Transform - pos: 11.5,20.5 + pos: -8.5,0.5 parent: 2 - uid: 9875 components: - type: Transform - pos: 5.5,33.5 + pos: -7.5,0.5 parent: 2 - uid: 9876 components: - type: Transform - pos: 6.5,33.5 + pos: -6.5,0.5 parent: 2 - uid: 9877 components: - type: Transform - pos: 5.5,31.5 + pos: -5.5,0.5 parent: 2 - uid: 9878 components: - type: Transform - pos: 4.5,31.5 + pos: -4.5,0.5 parent: 2 - uid: 9879 components: - type: Transform - pos: 3.5,31.5 + pos: -3.5,0.5 parent: 2 - uid: 9880 components: - type: Transform - pos: 2.5,31.5 + pos: -2.5,0.5 parent: 2 - uid: 9881 components: - type: Transform - pos: 1.5,31.5 + pos: -2.5,1.5 parent: 2 - uid: 9882 components: - type: Transform - pos: 14.5,17.5 + pos: -2.5,2.5 parent: 2 - uid: 9883 components: - type: Transform - pos: 15.5,17.5 + pos: -1.5,2.5 parent: 2 - uid: 9884 components: - type: Transform - pos: 11.5,25.5 + pos: -12.5,0.5 parent: 2 - uid: 9885 components: - type: Transform - pos: 16.5,18.5 + pos: 0.5,2.5 parent: 2 - uid: 9886 components: - type: Transform - pos: 16.5,19.5 + pos: 1.5,2.5 parent: 2 - uid: 9887 components: - type: Transform - pos: 16.5,20.5 + pos: 1.5,3.5 parent: 2 - uid: 9888 components: - type: Transform - pos: 16.5,21.5 + pos: 0.5,1.5 parent: 2 - uid: 9889 components: - type: Transform - pos: 16.5,22.5 + pos: 0.5,0.5 parent: 2 - uid: 9890 components: - type: Transform - pos: 16.5,23.5 + pos: 15.5,2.5 parent: 2 - uid: 9891 components: - type: Transform - pos: 16.5,24.5 + pos: 15.5,3.5 parent: 2 - uid: 9892 components: - type: Transform - pos: 14.5,24.5 + pos: 15.5,1.5 parent: 2 - uid: 9893 components: - type: Transform - pos: 13.5,24.5 + pos: 15.5,0.5 parent: 2 - uid: 9894 components: - type: Transform - pos: 12.5,24.5 + pos: 16.5,0.5 parent: 2 - uid: 9895 components: - type: Transform - pos: 8.5,27.5 + pos: 17.5,0.5 parent: 2 - uid: 9896 components: - type: Transform - pos: 8.5,28.5 + pos: 13.5,0.5 parent: 2 - uid: 9897 components: - type: Transform - pos: 15.5,26.5 + pos: 12.5,0.5 parent: 2 - uid: 9898 components: - type: Transform - pos: 15.5,27.5 + pos: 11.5,0.5 parent: 2 - uid: 9899 components: - type: Transform - pos: 16.5,27.5 + pos: 10.5,0.5 parent: 2 - uid: 9900 components: - type: Transform - pos: 17.5,27.5 + pos: 9.5,0.5 parent: 2 - uid: 9901 components: - type: Transform - pos: 21.5,35.5 + pos: 8.5,0.5 parent: 2 - uid: 9902 components: - type: Transform - pos: 21.5,36.5 + pos: 7.5,0.5 parent: 2 - uid: 9903 components: - type: Transform - pos: 21.5,37.5 + pos: 7.5,2.5 parent: 2 - uid: 9904 components: - type: Transform - pos: 26.5,7.5 + pos: 7.5,1.5 parent: 2 - uid: 9905 components: - type: Transform - pos: 26.5,9.5 + pos: 6.5,2.5 parent: 2 - uid: 9906 components: - type: Transform - pos: 26.5,10.5 + pos: 5.5,2.5 parent: 2 - uid: 9907 components: - type: Transform - pos: 25.5,10.5 + pos: 4.5,2.5 parent: 2 - uid: 9908 components: - type: Transform - pos: 27.5,10.5 + pos: 3.5,2.5 parent: 2 - uid: 9909 components: - type: Transform - pos: 26.5,6.5 + pos: 3.5,3.5 parent: 2 - uid: 9910 components: - type: Transform - pos: 26.5,5.5 + pos: 4.5,1.5 parent: 2 - uid: 9911 components: - type: Transform - pos: 27.5,5.5 + pos: 4.5,0.5 parent: 2 - uid: 9912 components: - type: Transform - pos: 26.5,11.5 + pos: 4.5,-0.5 parent: 2 - uid: 9913 components: - type: Transform - pos: 26.5,12.5 + pos: 13.5,-1.5 parent: 2 - uid: 9914 components: - type: Transform - pos: 26.5,13.5 + pos: 4.5,-7.5 parent: 2 - uid: 9915 components: - type: Transform - pos: 16.5,16.5 + pos: 4.5,-8.5 parent: 2 - uid: 9916 components: - type: Transform - pos: 16.5,15.5 + pos: 3.5,-8.5 parent: 2 - uid: 9917 components: - type: Transform - pos: 17.5,15.5 + pos: 2.5,-8.5 parent: 2 - uid: 9918 components: - type: Transform - pos: 18.5,15.5 + pos: 2.5,-9.5 parent: 2 - uid: 9919 components: - type: Transform - pos: 18.5,14.5 + pos: 15.5,8.5 parent: 2 - uid: 9920 components: - type: Transform - pos: 19.5,14.5 + pos: 13.5,-2.5 parent: 2 - uid: 9921 components: - type: Transform - pos: 19.5,13.5 + pos: 12.5,-2.5 parent: 2 - uid: 9922 components: - type: Transform - pos: 20.5,13.5 + pos: 12.5,-3.5 parent: 2 - uid: 9923 components: - type: Transform - pos: 20.5,12.5 + pos: 12.5,-4.5 parent: 2 - uid: 9924 components: - type: Transform - pos: 20.5,11.5 + pos: 11.5,-3.5 parent: 2 - uid: 9925 components: - type: Transform - pos: 21.5,11.5 + pos: 14.5,8.5 parent: 2 - uid: 9926 components: - type: Transform - pos: 21.5,10.5 + pos: 12.5,-5.5 parent: 2 - uid: 9927 components: - type: Transform - pos: 21.5,9.5 + pos: 15.5,25.5 parent: 2 - uid: 9928 components: - type: Transform - pos: 21.5,8.5 + pos: 16.5,8.5 parent: 2 - uid: 9929 components: - type: Transform - pos: 21.5,7.5 + pos: 12.5,-6.5 parent: 2 - uid: 9930 components: - type: Transform - pos: 21.5,6.5 + pos: 12.5,-7.5 parent: 2 - uid: 9931 components: - type: Transform - pos: 21.5,5.5 + pos: 16.5,-8.5 parent: 2 - uid: 9932 components: - type: Transform - pos: 12.5,37.5 + pos: 12.5,-8.5 parent: 2 - uid: 9933 components: - type: Transform - pos: 3.5,42.5 + pos: 15.5,-8.5 parent: 2 - uid: 9934 components: - type: Transform - pos: 2.5,42.5 + pos: 11.5,-8.5 parent: 2 - uid: 9935 components: - type: Transform - pos: 2.5,41.5 + pos: 15.5,-7.5 parent: 2 - uid: 9936 components: - type: Transform - pos: -38.5,-15.5 + pos: 10.5,-8.5 parent: 2 - uid: 9937 components: - type: Transform - pos: -38.5,-16.5 + pos: 15.5,-6.5 parent: 2 - uid: 9938 components: - type: Transform - pos: -38.5,-17.5 + pos: 17.5,-8.5 parent: 2 - uid: 9939 components: - type: Transform - pos: -39.5,-14.5 + pos: 17.5,-7.5 parent: 2 - uid: 9940 components: - type: Transform - pos: -40.5,-14.5 + pos: 17.5,-6.5 parent: 2 - uid: 9941 components: - type: Transform - pos: -41.5,-14.5 + pos: 17.5,-5.5 parent: 2 - uid: 9942 components: - type: Transform - pos: -42.5,-14.5 + pos: 17.5,-9.5 parent: 2 - uid: 9943 components: - type: Transform - pos: -43.5,-14.5 + pos: 17.5,-10.5 parent: 2 - uid: 9944 components: - type: Transform - pos: -43.5,-15.5 + pos: 17.5,-11.5 parent: 2 - uid: 9945 components: - type: Transform - pos: -43.5,-16.5 + pos: 16.5,9.5 parent: 2 - uid: 9946 components: - type: Transform - pos: -43.5,-17.5 + pos: 16.5,10.5 parent: 2 - uid: 9947 components: - type: Transform - pos: -38.5,-12.5 + pos: 12.5,25.5 parent: 2 - uid: 9948 components: - type: Transform - pos: -38.5,-11.5 + pos: 11.5,-11.5 parent: 2 - uid: 9949 components: - type: Transform - pos: -37.5,-11.5 + pos: 12.5,-11.5 parent: 2 - uid: 9950 components: - type: Transform - pos: -41.5,-10.5 + pos: 8.5,-10.5 parent: 2 - uid: 9951 components: - type: Transform - pos: 18.5,-16.5 + pos: 10.5,-11.5 parent: 2 - uid: 9952 components: - type: Transform - pos: 25.5,-10.5 + pos: 9.5,-11.5 parent: 2 - uid: 9953 components: - type: Transform - pos: 25.5,-11.5 + pos: 8.5,-11.5 parent: 2 - uid: 9954 components: - type: Transform - pos: 25.5,-9.5 + pos: 15.5,24.5 parent: 2 - uid: 9955 components: - type: Transform - pos: -9.5,-17.5 + pos: 16.5,17.5 parent: 2 - uid: 9956 components: - type: Transform - pos: -21.5,42.5 + pos: 16.5,11.5 parent: 2 - uid: 9957 components: - type: Transform - pos: -9.5,-19.5 + pos: 16.5,7.5 parent: 2 - uid: 9958 components: - type: Transform - pos: -10.5,-20.5 + pos: 16.5,6.5 parent: 2 - uid: 9959 components: - type: Transform - pos: 23.5,-26.5 + pos: 16.5,5.5 parent: 2 - uid: 9960 components: - type: Transform - pos: -9.5,-30.5 + pos: 17.5,8.5 parent: 2 - uid: 9961 components: - type: Transform - pos: -9.5,-29.5 + pos: 10.5,25.5 parent: 2 - uid: 9962 components: - type: Transform - pos: -9.5,-31.5 + pos: 9.5,25.5 parent: 2 - uid: 9963 components: - type: Transform - pos: -9.5,-28.5 + pos: 8.5,25.5 parent: 2 - uid: 9964 components: - type: Transform - pos: -8.5,-20.5 + pos: 1.5,11.5 parent: 2 - uid: 9965 components: - type: Transform - pos: -9.5,-20.5 + pos: 1.5,12.5 parent: 2 - uid: 9966 components: - type: Transform - pos: 19.5,-16.5 + pos: 1.5,13.5 parent: 2 - uid: 9967 components: - type: Transform - pos: 19.5,-18.5 + pos: 0.5,13.5 parent: 2 - uid: 9968 components: - type: Transform - pos: 19.5,-17.5 + pos: 2.5,12.5 parent: 2 - uid: 9969 components: - type: Transform - pos: 20.5,-16.5 + pos: 3.5,12.5 parent: 2 - uid: 9970 components: - type: Transform - pos: 21.5,-16.5 + pos: 3.5,13.5 parent: 2 - uid: 9971 components: - type: Transform - pos: 22.5,-16.5 + pos: 4.5,13.5 parent: 2 - uid: 9972 components: - type: Transform - pos: 23.5,-16.5 + pos: -0.5,13.5 parent: 2 - uid: 9973 components: - type: Transform - pos: 24.5,-16.5 + pos: -1.5,13.5 parent: 2 - uid: 9974 components: - type: Transform - pos: 21.5,-15.5 + pos: -2.5,13.5 parent: 2 - uid: 9975 components: - type: Transform - pos: 21.5,-14.5 + pos: -2.5,12.5 parent: 2 - uid: 9976 components: - type: Transform - pos: 21.5,-13.5 + pos: -3.5,12.5 parent: 2 - uid: 9977 components: - type: Transform - pos: 21.5,-12.5 + pos: -3.5,11.5 parent: 2 - uid: 9978 components: - type: Transform - pos: 21.5,-11.5 + pos: 5.5,13.5 parent: 2 - uid: 9979 components: - type: Transform - pos: 21.5,-10.5 + pos: 6.5,13.5 parent: 2 - uid: 9980 components: - type: Transform - pos: 21.5,-9.5 + pos: 7.5,13.5 parent: 2 - uid: 9981 components: - type: Transform - pos: 21.5,-8.5 + pos: 7.5,12.5 parent: 2 - uid: 9982 components: - type: Transform - pos: 21.5,-7.5 + pos: 8.5,12.5 parent: 2 - uid: 9983 components: - type: Transform - pos: 21.5,-6.5 + pos: 8.5,11.5 parent: 2 - uid: 9984 components: - type: Transform - pos: 21.5,-5.5 + pos: 4.5,49.5 parent: 2 - uid: 9985 components: - type: Transform - pos: 21.5,-4.5 + pos: 4.5,50.5 parent: 2 - uid: 9986 components: - type: Transform - pos: 21.5,-3.5 + pos: 4.5,51.5 parent: 2 - uid: 9987 components: - type: Transform - pos: 21.5,-2.5 + pos: 4.5,52.5 parent: 2 - uid: 9988 components: - type: Transform - pos: 17.5,-16.5 + pos: 4.5,53.5 parent: 2 - uid: 9989 components: - type: Transform - pos: 16.5,-16.5 + pos: 8.5,26.5 parent: 2 - uid: 9990 components: - type: Transform - pos: 15.5,-16.5 + pos: 14.5,37.5 parent: 2 - uid: 9991 components: - type: Transform - pos: 14.5,-16.5 + pos: 12.5,36.5 parent: 2 - uid: 9992 components: - type: Transform - pos: 13.5,-16.5 + pos: 14.5,36.5 parent: 2 - uid: 9993 components: - type: Transform - pos: 12.5,-16.5 + pos: 14.5,35.5 parent: 2 - uid: 9994 components: - type: Transform - pos: 11.5,-16.5 + pos: 14.5,34.5 parent: 2 - uid: 9995 components: - type: Transform - pos: 10.5,-16.5 + pos: 14.5,33.5 parent: 2 - uid: 9996 components: - type: Transform - pos: 9.5,-16.5 + pos: 15.5,33.5 parent: 2 - uid: 9997 components: - type: Transform - pos: 8.5,-16.5 + pos: 16.5,33.5 parent: 2 - uid: 9998 components: - type: Transform - pos: 7.5,-16.5 + pos: 17.5,33.5 parent: 2 - uid: 9999 components: - type: Transform - pos: 6.5,-16.5 + pos: 11.5,36.5 parent: 2 - uid: 10000 components: - type: Transform - pos: 5.5,-16.5 + pos: 10.5,36.5 parent: 2 - uid: 10001 components: - type: Transform - pos: 4.5,-16.5 + pos: 9.5,36.5 parent: 2 - uid: 10002 components: - type: Transform - pos: 0.5,-16.5 + pos: 8.5,36.5 parent: 2 - uid: 10003 components: - type: Transform - pos: -0.5,-16.5 + pos: 8.5,37.5 parent: 2 - uid: 10004 components: - type: Transform - pos: -1.5,-16.5 + pos: 8.5,38.5 parent: 2 - uid: 10005 components: - type: Transform - pos: -2.5,-16.5 + pos: 8.5,39.5 parent: 2 - uid: 10006 components: - type: Transform - pos: -3.5,-16.5 + pos: 8.5,35.5 parent: 2 - uid: 10007 components: - type: Transform - pos: -4.5,-16.5 + pos: 8.5,34.5 parent: 2 - uid: 10008 components: - type: Transform - pos: -5.5,-16.5 + pos: 8.5,33.5 parent: 2 - uid: 10009 components: - type: Transform - pos: -6.5,-16.5 + pos: 8.5,32.5 parent: 2 - uid: 10010 components: - type: Transform - pos: -7.5,-16.5 + pos: 13.5,39.5 parent: 2 - uid: 10011 components: - type: Transform - pos: -8.5,-16.5 + pos: 13.5,38.5 parent: 2 - uid: 10012 components: - type: Transform - pos: -9.5,-16.5 + pos: 13.5,37.5 parent: 2 - uid: 10013 components: - type: Transform - pos: -10.5,-16.5 + pos: 14.5,39.5 parent: 2 - uid: 10014 components: - type: Transform - pos: -11.5,-16.5 + pos: 15.5,39.5 parent: 2 - uid: 10015 components: - type: Transform - pos: -12.5,-16.5 + pos: 16.5,39.5 parent: 2 - uid: 10016 components: - type: Transform - pos: -13.5,-16.5 + pos: 17.5,39.5 parent: 2 - uid: 10017 components: - type: Transform - pos: -13.5,-17.5 + pos: 18.5,39.5 parent: 2 - uid: 10018 components: - type: Transform - pos: -13.5,-18.5 + pos: 18.5,40.5 parent: 2 - uid: 10019 components: - type: Transform - pos: -1.5,-21.5 + pos: 18.5,41.5 parent: 2 - uid: 10020 components: - type: Transform - pos: -0.5,-21.5 + pos: 18.5,42.5 parent: 2 - uid: 10021 components: - type: Transform - pos: 4.5,-21.5 + pos: 19.5,42.5 parent: 2 - uid: 10022 components: - type: Transform - pos: 3.5,-21.5 + pos: 33.5,32.5 parent: 2 - uid: 10023 components: - type: Transform - pos: 2.5,-21.5 + pos: 33.5,33.5 parent: 2 - uid: 10024 components: - type: Transform - pos: 1.5,-21.5 + pos: 32.5,32.5 parent: 2 - uid: 10025 components: - type: Transform - pos: 0.5,-21.5 + pos: 25.5,42.5 parent: 2 - uid: 10026 components: - type: Transform - pos: 5.5,-21.5 + pos: 25.5,41.5 parent: 2 - uid: 10027 components: - type: Transform - pos: -16.5,-6.5 + pos: 25.5,40.5 parent: 2 - uid: 10028 components: - type: Transform - pos: -14.5,-16.5 + pos: 25.5,39.5 parent: 2 - uid: 10029 components: - type: Transform - pos: -15.5,-16.5 + pos: 25.5,38.5 parent: 2 - uid: 10030 components: - type: Transform - pos: -16.5,-16.5 + pos: 25.5,37.5 parent: 2 - uid: 10031 components: - type: Transform - pos: -16.5,-15.5 + pos: 25.5,36.5 parent: 2 - uid: 10032 components: - type: Transform - pos: -9.5,-18.5 + pos: 25.5,35.5 parent: 2 - uid: 10033 components: - type: Transform - pos: -18.5,-5.5 + pos: 25.5,34.5 parent: 2 - uid: 10034 components: - type: Transform - pos: -17.5,-5.5 + pos: 33.5,35.5 parent: 2 - uid: 10035 components: - type: Transform - pos: -16.5,-5.5 + pos: 33.5,34.5 parent: 2 - uid: 10036 components: - type: Transform - pos: -16.5,-7.5 + pos: 31.5,32.5 parent: 2 - uid: 10037 components: - type: Transform - pos: -16.5,-8.5 + pos: 30.5,32.5 parent: 2 - uid: 10038 components: - type: Transform - pos: -16.5,-9.5 + pos: 29.5,32.5 parent: 2 - uid: 10039 components: - type: Transform - pos: -16.5,-10.5 + pos: 28.5,32.5 parent: 2 - uid: 10040 components: - type: Transform - pos: -16.5,-11.5 + pos: 27.5,32.5 parent: 2 - uid: 10041 components: - type: Transform - pos: -16.5,-4.5 + pos: 26.5,32.5 parent: 2 - uid: 10042 components: - type: Transform - pos: -16.5,-3.5 + pos: 25.5,32.5 parent: 2 - uid: 10043 components: - type: Transform - pos: -16.5,-2.5 + pos: 25.5,33.5 parent: 2 - uid: 10044 components: - type: Transform - pos: -16.5,-1.5 + pos: 29.5,33.5 parent: 2 - uid: 10045 components: - type: Transform - pos: -16.5,2.5 + pos: 29.5,34.5 parent: 2 - uid: 10046 components: - type: Transform - pos: -16.5,3.5 + pos: 29.5,35.5 parent: 2 - uid: 10047 components: - type: Transform - pos: -16.5,4.5 + pos: 29.5,36.5 parent: 2 - uid: 10048 components: - type: Transform - pos: -16.5,5.5 + pos: 29.5,37.5 parent: 2 - uid: 10049 components: - type: Transform - pos: -16.5,6.5 + pos: 30.5,37.5 parent: 2 - uid: 10050 components: - type: Transform - pos: -16.5,7.5 + pos: 31.5,37.5 parent: 2 - uid: 10051 components: - type: Transform - pos: -16.5,8.5 + pos: 32.5,37.5 parent: 2 - uid: 10052 components: - type: Transform - pos: -16.5,9.5 + pos: 23.5,30.5 parent: 2 - uid: 10053 components: - type: Transform - pos: -17.5,9.5 + pos: 23.5,29.5 parent: 2 - uid: 10054 components: - type: Transform - pos: -18.5,9.5 + pos: 23.5,28.5 parent: 2 - uid: 10055 components: - type: Transform - pos: -16.5,10.5 + pos: 22.5,28.5 parent: 2 - uid: 10056 components: - type: Transform - pos: -16.5,11.5 + pos: 21.5,28.5 parent: 2 - uid: 10057 components: - type: Transform - pos: -15.5,11.5 + pos: 21.5,29.5 parent: 2 - uid: 10058 components: - type: Transform - pos: -15.5,12.5 + pos: 21.5,30.5 parent: 2 - uid: 10059 components: - type: Transform - pos: -14.5,12.5 + pos: 21.5,31.5 parent: 2 - uid: 10060 components: - type: Transform - pos: -14.5,13.5 + pos: 21.5,32.5 parent: 2 - uid: 10061 components: - type: Transform - pos: -13.5,13.5 + pos: 21.5,33.5 parent: 2 - uid: 10062 components: - type: Transform - pos: -13.5,14.5 + pos: 21.5,34.5 parent: 2 - uid: 10063 components: - type: Transform - pos: -12.5,14.5 + pos: 24.5,28.5 parent: 2 - uid: 10064 components: - type: Transform - pos: -12.5,15.5 + pos: 25.5,28.5 parent: 2 - uid: 10065 components: - type: Transform - pos: -11.5,15.5 + pos: 26.5,28.5 parent: 2 - uid: 10066 components: - type: Transform - pos: -11.5,16.5 + pos: 27.5,28.5 parent: 2 - uid: 10067 components: - type: Transform - pos: -11.5,17.5 + pos: 28.5,28.5 parent: 2 - uid: 10068 components: - type: Transform - pos: -11.5,18.5 + pos: 29.5,28.5 parent: 2 - uid: 10069 components: - type: Transform - pos: -12.5,-4.5 + pos: 30.5,28.5 parent: 2 - uid: 10070 components: - type: Transform - pos: 28.5,-11.5 + pos: 31.5,28.5 parent: 2 - uid: 10071 components: - type: Transform - pos: 27.5,-11.5 + pos: 32.5,28.5 parent: 2 - uid: 10072 components: - type: Transform - pos: 26.5,-11.5 + pos: 33.5,28.5 parent: 2 - uid: 10073 components: - type: Transform - pos: 25.5,-8.5 + pos: 34.5,26.5 parent: 2 - uid: 10074 components: - type: Transform - pos: 25.5,-7.5 + pos: 34.5,25.5 parent: 2 - uid: 10075 components: - type: Transform - pos: 25.5,-6.5 + pos: 33.5,22.5 parent: 2 - uid: 10076 components: - type: Transform - pos: 25.5,-5.5 + pos: 32.5,22.5 parent: 2 - uid: 10077 components: - type: Transform - pos: 21.5,4.5 + pos: 31.5,22.5 parent: 2 - uid: 10078 components: - type: Transform - pos: 21.5,3.5 + pos: 32.5,19.5 parent: 2 - uid: 10079 components: - type: Transform - pos: 21.5,2.5 + pos: 32.5,20.5 parent: 2 - uid: 10080 components: - type: Transform - pos: 21.5,-1.5 + pos: 32.5,21.5 parent: 2 - uid: 10081 components: - type: Transform - pos: -7.5,-6.5 + pos: 37.5,28.5 parent: 2 - uid: 10082 components: - type: Transform - pos: -8.5,-28.5 + pos: 38.5,28.5 parent: 2 - uid: 10083 components: - type: Transform - pos: -10.5,-28.5 + pos: 37.5,27.5 parent: 2 - uid: 10084 components: - type: Transform - pos: -21.5,44.5 + pos: 39.5,26.5 parent: 2 - uid: 10085 components: - type: Transform - pos: -21.5,41.5 + pos: 39.5,25.5 parent: 2 - uid: 10086 components: - type: Transform - pos: -21.5,46.5 + pos: 38.5,24.5 parent: 2 - uid: 10087 components: - type: Transform - pos: -21.5,47.5 + pos: 38.5,23.5 parent: 2 - uid: 10088 components: - type: Transform - pos: -22.5,47.5 + pos: 38.5,22.5 parent: 2 - uid: 10089 components: - type: Transform - pos: -23.5,47.5 + pos: 38.5,21.5 parent: 2 - uid: 10090 components: - type: Transform - pos: -24.5,47.5 + pos: 38.5,20.5 parent: 2 - uid: 10091 components: - type: Transform - pos: -21.5,43.5 + pos: 38.5,19.5 parent: 2 - uid: 10092 components: - type: Transform - pos: 21.5,-0.5 + pos: 39.5,28.5 parent: 2 - uid: 10093 components: - type: Transform - pos: 24.5,0.5 + pos: 40.5,28.5 parent: 2 - uid: 10094 components: - type: Transform - pos: 21.5,0.5 + pos: 45.5,28.5 parent: 2 - uid: 10095 components: - type: Transform - pos: 22.5,0.5 + pos: 44.5,28.5 parent: 2 - uid: 10096 components: - type: Transform - pos: 23.5,0.5 + pos: 45.5,29.5 parent: 2 - uid: 10097 components: - type: Transform - pos: -26.5,15.5 + pos: 46.5,29.5 parent: 2 - uid: 10098 components: - type: Transform - pos: -20.5,16.5 + pos: 21.5,18.5 parent: 2 - uid: 10099 components: - type: Transform - pos: -20.5,27.5 + pos: 21.5,17.5 parent: 2 - uid: 10100 components: - type: Transform - pos: -20.5,26.5 + pos: 21.5,16.5 parent: 2 - uid: 10101 components: - type: Transform - pos: -20.5,25.5 + pos: 21.5,19.5 parent: 2 - uid: 10102 components: - type: Transform - pos: -20.5,24.5 + pos: 21.5,20.5 parent: 2 - uid: 10103 components: - type: Transform - pos: -19.5,24.5 + pos: 20.5,18.5 parent: 2 - uid: 10104 components: - type: Transform - pos: -18.5,24.5 + pos: 22.5,20.5 parent: 2 - uid: 10105 components: - type: Transform - pos: -21.5,24.5 + pos: 11.5,21.5 parent: 2 - uid: 10106 components: - type: Transform - pos: -22.5,24.5 + pos: 10.5,21.5 parent: 2 - uid: 10107 components: - type: Transform - pos: -23.5,24.5 + pos: 9.5,21.5 parent: 2 - uid: 10108 components: - type: Transform - pos: 1.5,17.5 + pos: 8.5,21.5 parent: 2 - uid: 10109 components: - type: Transform - pos: 1.5,18.5 + pos: 12.5,21.5 parent: 2 - uid: 10110 components: - type: Transform - pos: 1.5,19.5 + pos: 11.5,20.5 parent: 2 - uid: 10111 components: - type: Transform - pos: 2.5,19.5 + pos: 5.5,33.5 parent: 2 - uid: 10112 components: - type: Transform - pos: 3.5,19.5 + pos: 6.5,33.5 parent: 2 - uid: 10113 components: - type: Transform - pos: 4.5,19.5 + pos: 5.5,31.5 parent: 2 - uid: 10114 components: - type: Transform - pos: 5.5,19.5 + pos: 4.5,31.5 parent: 2 - uid: 10115 components: - type: Transform - pos: 0.5,19.5 + pos: 3.5,31.5 parent: 2 - uid: 10116 components: - type: Transform - pos: -0.5,19.5 + pos: 2.5,31.5 parent: 2 - uid: 10117 components: - type: Transform - pos: -1.5,19.5 + pos: 1.5,31.5 parent: 2 - uid: 10118 components: - type: Transform - pos: -2.5,19.5 + pos: 14.5,17.5 parent: 2 - uid: 10119 components: - type: Transform - pos: -3.5,19.5 + pos: 15.5,17.5 parent: 2 - uid: 10120 components: - type: Transform - pos: -4.5,19.5 + pos: 11.5,25.5 parent: 2 - uid: 10121 components: - type: Transform - pos: 1.5,20.5 + pos: 16.5,18.5 parent: 2 - uid: 10122 components: - type: Transform - pos: 1.5,21.5 + pos: 16.5,19.5 parent: 2 - uid: 10123 components: - type: Transform - pos: -56.5,63.5 + pos: 16.5,20.5 parent: 2 - uid: 10124 components: - type: Transform - pos: -56.5,62.5 + pos: 16.5,21.5 parent: 2 - uid: 10125 components: - type: Transform - pos: -54.5,63.5 + pos: 16.5,22.5 parent: 2 - uid: 10126 components: - type: Transform - pos: -57.5,62.5 + pos: 16.5,23.5 parent: 2 - uid: 10127 components: - type: Transform - pos: -57.5,63.5 + pos: 16.5,24.5 parent: 2 - uid: 10128 components: - type: Transform - pos: -57.5,63.5 + pos: 14.5,24.5 parent: 2 - uid: 10129 components: - type: Transform - pos: -58.5,62.5 + pos: 13.5,24.5 parent: 2 - uid: 10130 components: - type: Transform - pos: -58.5,64.5 + pos: 12.5,24.5 parent: 2 - uid: 10131 components: - type: Transform - pos: -58.5,65.5 + pos: 8.5,27.5 parent: 2 - uid: 10132 components: - type: Transform - pos: -52.5,63.5 + pos: 8.5,28.5 parent: 2 - uid: 10133 components: - type: Transform - pos: -49.5,64.5 + pos: 15.5,26.5 parent: 2 - uid: 10134 components: - type: Transform - pos: -49.5,65.5 + pos: 15.5,27.5 parent: 2 - uid: 10135 components: - type: Transform - pos: -50.5,65.5 + pos: 16.5,27.5 parent: 2 - uid: 10136 components: - type: Transform - pos: -51.5,64.5 + pos: 17.5,27.5 parent: 2 - uid: 10137 components: - type: Transform - pos: -51.5,67.5 + pos: 21.5,35.5 parent: 2 - uid: 10138 components: - type: Transform - pos: -51.5,62.5 + pos: 21.5,36.5 parent: 2 - uid: 10139 components: - type: Transform - pos: -53.5,63.5 + pos: 21.5,37.5 parent: 2 - uid: 10140 components: - type: Transform - pos: -55.5,62.5 + pos: 26.5,7.5 parent: 2 - uid: 10141 components: - type: Transform - pos: -51.5,63.5 + pos: 26.5,9.5 parent: 2 - uid: 10142 components: - type: Transform - pos: -51.5,65.5 + pos: 26.5,10.5 parent: 2 - uid: 10143 components: - type: Transform - pos: -51.5,66.5 + pos: 25.5,10.5 parent: 2 - uid: 10144 components: - type: Transform - pos: -50.5,67.5 + pos: 27.5,10.5 parent: 2 - uid: 10145 components: - type: Transform - pos: -55.5,63.5 + pos: 26.5,6.5 parent: 2 - uid: 10146 components: - type: Transform - pos: -58.5,66.5 + pos: 26.5,5.5 parent: 2 - uid: 10147 components: - type: Transform - pos: -59.5,66.5 + pos: 27.5,5.5 parent: 2 - uid: 10148 components: - type: Transform - pos: -51.5,23.5 + pos: 26.5,11.5 parent: 2 - uid: 10149 components: - type: Transform - pos: -52.5,23.5 + pos: 26.5,12.5 parent: 2 - uid: 10150 components: - type: Transform - pos: -52.5,24.5 + pos: 26.5,13.5 parent: 2 - uid: 10151 components: - type: Transform - pos: -52.5,24.5 + pos: 16.5,16.5 parent: 2 - uid: 10152 components: - type: Transform - pos: -52.5,25.5 + pos: 16.5,15.5 parent: 2 - uid: 10153 components: - type: Transform - pos: -53.5,24.5 + pos: 17.5,15.5 parent: 2 - uid: 10154 components: - type: Transform - pos: -118.5,8.5 + pos: 18.5,15.5 parent: 2 - uid: 10155 components: - type: Transform - pos: -109.5,13.5 + pos: 18.5,14.5 parent: 2 - uid: 10156 components: - type: Transform - pos: -109.5,11.5 + pos: 19.5,14.5 parent: 2 - uid: 10157 components: - type: Transform - pos: -109.5,12.5 + pos: 19.5,13.5 parent: 2 - uid: 10158 components: - type: Transform - pos: -117.5,8.5 + pos: 20.5,13.5 parent: 2 - uid: 10159 components: - type: Transform - pos: -117.5,9.5 + pos: 20.5,12.5 parent: 2 - uid: 10160 components: - type: Transform - pos: -117.5,10.5 + pos: 20.5,11.5 parent: 2 - uid: 10161 components: - type: Transform - pos: -117.5,11.5 + pos: 21.5,11.5 parent: 2 - uid: 10162 components: - type: Transform - pos: -116.5,11.5 + pos: 21.5,10.5 parent: 2 - uid: 10163 components: - type: Transform - pos: -115.5,11.5 + pos: 21.5,9.5 parent: 2 - uid: 10164 components: - type: Transform - pos: -114.5,11.5 + pos: 21.5,8.5 parent: 2 - uid: 10165 components: - type: Transform - pos: -113.5,11.5 + pos: 21.5,7.5 parent: 2 - uid: 10166 components: - type: Transform - pos: -116.5,8.5 + pos: 21.5,6.5 parent: 2 - uid: 10167 components: - type: Transform - pos: -115.5,8.5 + pos: 21.5,5.5 parent: 2 - uid: 10168 components: - type: Transform - pos: -114.5,8.5 + pos: 12.5,37.5 parent: 2 - uid: 10169 components: - type: Transform - pos: -113.5,8.5 + pos: 3.5,42.5 parent: 2 - uid: 10170 components: - type: Transform - pos: -117.5,7.5 + pos: 2.5,42.5 parent: 2 - uid: 10171 components: - type: Transform - pos: -117.5,6.5 + pos: 2.5,41.5 parent: 2 - uid: 10172 components: - type: Transform - pos: -117.5,5.5 + pos: -38.5,-15.5 parent: 2 - uid: 10173 components: - type: Transform - pos: -117.5,4.5 + pos: -38.5,-16.5 parent: 2 - uid: 10174 components: - type: Transform - pos: -117.5,3.5 + pos: -38.5,-17.5 parent: 2 - uid: 10175 components: - type: Transform - pos: -117.5,2.5 + pos: -39.5,-14.5 parent: 2 - uid: 10176 components: - type: Transform - pos: -116.5,2.5 + pos: -40.5,-14.5 parent: 2 - uid: 10177 components: - type: Transform - pos: -115.5,2.5 + pos: -41.5,-14.5 parent: 2 - uid: 10178 components: - type: Transform - pos: -114.5,2.5 + pos: -42.5,-14.5 parent: 2 - uid: 10179 components: - type: Transform - pos: -113.5,2.5 + pos: -43.5,-14.5 parent: 2 - uid: 10180 components: - type: Transform - pos: -116.5,4.5 + pos: -43.5,-15.5 parent: 2 - uid: 10181 components: - type: Transform - pos: -115.5,4.5 + pos: -43.5,-16.5 parent: 2 - uid: 10182 components: - type: Transform - pos: -114.5,4.5 + pos: -43.5,-17.5 parent: 2 - uid: 10183 components: - type: Transform - pos: -113.5,4.5 + pos: -38.5,-12.5 parent: 2 - uid: 10184 components: - type: Transform - pos: -116.5,6.5 + pos: -38.5,-11.5 parent: 2 - uid: 10185 components: - type: Transform - pos: -115.5,6.5 + pos: -37.5,-11.5 parent: 2 - uid: 10186 components: - type: Transform - pos: -114.5,6.5 + pos: -41.5,-10.5 parent: 2 - uid: 10187 components: - type: Transform - pos: -113.5,6.5 + pos: 18.5,-16.5 parent: 2 - uid: 10188 components: - type: Transform - pos: -112.5,6.5 + pos: 25.5,-10.5 parent: 2 - uid: 10189 components: - type: Transform - pos: -112.5,4.5 + pos: 25.5,-11.5 parent: 2 - uid: 10190 components: - type: Transform - pos: -112.5,2.5 + pos: 25.5,-9.5 parent: 2 - uid: 10191 components: - type: Transform - pos: -112.5,8.5 + pos: -9.5,-17.5 parent: 2 - uid: 10192 components: - type: Transform - pos: -112.5,11.5 + pos: -21.5,42.5 parent: 2 - uid: 10193 components: - type: Transform - pos: -109.5,10.5 + pos: -9.5,-19.5 parent: 2 - uid: 10194 components: - type: Transform - pos: -109.5,8.5 + pos: -10.5,-20.5 parent: 2 - uid: 10195 components: - type: Transform - pos: -109.5,9.5 + pos: 23.5,-26.5 parent: 2 - uid: 10196 components: - type: Transform - pos: -109.5,7.5 + pos: -9.5,-30.5 parent: 2 - uid: 10197 components: - type: Transform - pos: -109.5,6.5 + pos: -9.5,-29.5 parent: 2 - uid: 10198 components: - type: Transform - pos: -109.5,5.5 + pos: -9.5,-31.5 parent: 2 - uid: 10199 components: - type: Transform - pos: -109.5,4.5 + pos: -9.5,-28.5 parent: 2 - uid: 10200 components: - type: Transform - pos: -109.5,3.5 + pos: -8.5,-20.5 parent: 2 - uid: 10201 components: - type: Transform - pos: -109.5,2.5 + pos: -9.5,-20.5 parent: 2 - uid: 10202 components: - type: Transform - pos: -108.5,3.5 + pos: 19.5,-16.5 parent: 2 - uid: 10203 components: - type: Transform - pos: -107.5,3.5 + pos: 19.5,-18.5 parent: 2 - uid: 10204 components: - type: Transform - pos: -106.5,3.5 + pos: 19.5,-17.5 parent: 2 - uid: 10205 components: - type: Transform - pos: -105.5,3.5 + pos: 20.5,-16.5 parent: 2 - uid: 10206 components: - type: Transform - pos: -104.5,3.5 + pos: 21.5,-16.5 parent: 2 - uid: 10207 components: - type: Transform - pos: -108.5,10.5 + pos: 22.5,-16.5 parent: 2 - uid: 10208 components: - type: Transform - pos: -107.5,10.5 + pos: 23.5,-16.5 parent: 2 - uid: 10209 components: - type: Transform - pos: -106.5,10.5 + pos: 24.5,-16.5 parent: 2 - uid: 10210 components: - type: Transform - pos: -105.5,10.5 + pos: 21.5,-15.5 parent: 2 - uid: 10211 components: - type: Transform - pos: -104.5,10.5 + pos: 21.5,-14.5 parent: 2 - uid: 10212 components: - type: Transform - pos: -108.5,7.5 + pos: 21.5,-13.5 parent: 2 - uid: 10213 components: - type: Transform - pos: -107.5,7.5 + pos: 21.5,-12.5 parent: 2 - uid: 10214 components: - type: Transform - pos: -106.5,7.5 + pos: 21.5,-11.5 parent: 2 - uid: 10215 components: - type: Transform - pos: -105.5,7.5 + pos: 21.5,-10.5 parent: 2 - uid: 10216 components: - type: Transform - pos: -104.5,7.5 + pos: 21.5,-9.5 parent: 2 - uid: 10217 components: - type: Transform - pos: -108.5,5.5 + pos: 21.5,-8.5 parent: 2 - uid: 10218 components: - type: Transform - pos: -107.5,5.5 + pos: 21.5,-7.5 parent: 2 - uid: 10219 components: - type: Transform - pos: -107.5,2.5 + pos: 21.5,-6.5 parent: 2 - uid: 10220 components: - type: Transform - pos: -107.5,1.5 + pos: 21.5,-5.5 parent: 2 - uid: 10221 components: - type: Transform - pos: -104.5,2.5 + pos: 21.5,-4.5 parent: 2 - uid: 10222 components: - type: Transform - pos: -105.5,11.5 + pos: 21.5,-3.5 parent: 2 - uid: 10223 components: - type: Transform - pos: -105.5,12.5 + pos: 21.5,-2.5 parent: 2 - uid: 10224 components: - type: Transform - pos: -94.5,4.5 + pos: 17.5,-16.5 parent: 2 - uid: 10225 components: - type: Transform - pos: -95.5,4.5 + pos: 16.5,-16.5 parent: 2 - uid: 10226 components: - type: Transform - pos: -96.5,4.5 + pos: 15.5,-16.5 parent: 2 - uid: 10227 components: - type: Transform - pos: -97.5,4.5 + pos: 14.5,-16.5 parent: 2 - uid: 10228 components: - type: Transform - pos: -98.5,4.5 + pos: 13.5,-16.5 parent: 2 - uid: 10229 components: - type: Transform - pos: -99.5,4.5 + pos: 12.5,-16.5 parent: 2 - uid: 10230 components: - type: Transform - pos: -100.5,4.5 + pos: 11.5,-16.5 parent: 2 - uid: 10231 components: - type: Transform - pos: -100.5,3.5 + pos: 10.5,-16.5 parent: 2 - uid: 10232 components: - type: Transform - pos: -100.5,2.5 + pos: 9.5,-16.5 parent: 2 - uid: 10233 components: - type: Transform - pos: -95.5,3.5 + pos: 8.5,-16.5 parent: 2 - uid: 10234 components: - type: Transform - pos: -100.5,1.5 + pos: 7.5,-16.5 parent: 2 - uid: 10235 components: - type: Transform - pos: -95.5,2.5 + pos: 6.5,-16.5 parent: 2 - uid: 10236 components: - type: Transform - pos: -97.5,3.5 + pos: 5.5,-16.5 parent: 2 - uid: 10237 components: - type: Transform - pos: -97.5,2.5 + pos: 4.5,-16.5 parent: 2 - uid: 10238 components: - type: Transform - pos: -100.5,5.5 + pos: 0.5,-16.5 parent: 2 - uid: 10239 components: - type: Transform - pos: -100.5,6.5 + pos: -0.5,-16.5 parent: 2 - uid: 10240 components: - type: Transform - pos: -100.5,7.5 + pos: -1.5,-16.5 parent: 2 - uid: 10241 components: - type: Transform - pos: -100.5,8.5 + pos: -2.5,-16.5 parent: 2 - uid: 10242 components: - type: Transform - pos: -100.5,9.5 + pos: -3.5,-16.5 parent: 2 - uid: 10243 components: - type: Transform - pos: -100.5,10.5 + pos: -4.5,-16.5 parent: 2 - uid: 10244 components: - type: Transform - pos: -100.5,11.5 + pos: -5.5,-16.5 parent: 2 - uid: 10245 components: - type: Transform - pos: -100.5,12.5 + pos: -6.5,-16.5 parent: 2 - uid: 10246 components: - type: Transform - pos: -109.5,23.5 + pos: -7.5,-16.5 parent: 2 - uid: 10247 components: - type: Transform - pos: -109.5,22.5 + pos: -8.5,-16.5 parent: 2 - uid: 10248 components: - type: Transform - pos: -109.5,21.5 + pos: -9.5,-16.5 parent: 2 - uid: 10249 components: - type: Transform - pos: -109.5,20.5 + pos: -10.5,-16.5 parent: 2 - uid: 10250 components: - type: Transform - pos: -109.5,19.5 + pos: -11.5,-16.5 parent: 2 - uid: 10251 components: - type: Transform - pos: -109.5,18.5 + pos: -12.5,-16.5 parent: 2 - uid: 10252 components: - type: Transform - pos: -109.5,17.5 + pos: -13.5,-16.5 parent: 2 - uid: 10253 components: - type: Transform - pos: -109.5,16.5 + pos: -13.5,-17.5 parent: 2 - uid: 10254 components: - type: Transform - pos: -109.5,15.5 + pos: -13.5,-18.5 parent: 2 - uid: 10255 components: - type: Transform - pos: -110.5,15.5 + pos: -1.5,-21.5 parent: 2 - uid: 10256 components: - type: Transform - pos: -111.5,15.5 + pos: -0.5,-21.5 parent: 2 - uid: 10257 components: - type: Transform - pos: -112.5,15.5 + pos: 4.5,-21.5 parent: 2 - uid: 10258 components: - type: Transform - pos: -113.5,15.5 + pos: 3.5,-21.5 parent: 2 - uid: 10259 components: - type: Transform - pos: -113.5,16.5 + pos: 2.5,-21.5 parent: 2 - uid: 10260 components: - type: Transform - pos: -113.5,17.5 + pos: 1.5,-21.5 parent: 2 - uid: 10261 components: - type: Transform - pos: -113.5,18.5 + pos: 0.5,-21.5 parent: 2 - uid: 10262 components: - type: Transform - pos: -113.5,19.5 + pos: 5.5,-21.5 parent: 2 - uid: 10263 components: - type: Transform - pos: -113.5,20.5 + pos: -16.5,-6.5 parent: 2 - uid: 10264 components: - type: Transform - pos: -113.5,21.5 + pos: -14.5,-16.5 parent: 2 - uid: 10265 components: - type: Transform - pos: -113.5,22.5 + pos: -15.5,-16.5 parent: 2 - uid: 10266 components: - type: Transform - pos: -113.5,23.5 + pos: -16.5,-16.5 parent: 2 - uid: 10267 components: - type: Transform - pos: -113.5,24.5 + pos: -16.5,-15.5 parent: 2 - uid: 10268 components: - type: Transform - pos: -116.5,24.5 + pos: -9.5,-18.5 parent: 2 - uid: 10269 components: - type: Transform - pos: -115.5,24.5 + pos: -18.5,-5.5 parent: 2 - uid: 10270 components: - type: Transform - pos: -116.5,20.5 + pos: -17.5,-5.5 parent: 2 - uid: 10271 components: - type: Transform - pos: -115.5,20.5 + pos: -16.5,-5.5 parent: 2 - uid: 10272 components: - type: Transform - pos: -116.5,16.5 + pos: -16.5,-7.5 parent: 2 - uid: 10273 components: - type: Transform - pos: -115.5,16.5 + pos: -16.5,-8.5 parent: 2 - uid: 10274 components: - type: Transform - pos: -114.5,24.5 + pos: -16.5,-9.5 parent: 2 - uid: 10275 components: - type: Transform - pos: -114.5,16.5 + pos: -16.5,-10.5 parent: 2 - uid: 10276 components: - type: Transform - pos: -108.5,15.5 + pos: -16.5,-11.5 parent: 2 - uid: 10277 components: - type: Transform - pos: -107.5,15.5 + pos: -16.5,-4.5 parent: 2 - uid: 10278 components: - type: Transform - pos: -106.5,15.5 + pos: -16.5,-3.5 parent: 2 - uid: 10279 components: - type: Transform - pos: -105.5,15.5 + pos: -16.5,-2.5 parent: 2 - uid: 10280 components: - type: Transform - pos: -104.5,15.5 + pos: -16.5,-1.5 parent: 2 - uid: 10281 components: - type: Transform - pos: -103.5,15.5 + pos: -16.5,2.5 parent: 2 - uid: 10282 components: - type: Transform - pos: -102.5,15.5 + pos: -16.5,3.5 parent: 2 - uid: 10283 components: - type: Transform - pos: -101.5,15.5 + pos: -16.5,4.5 parent: 2 - uid: 10284 components: - type: Transform - pos: -100.5,15.5 + pos: -16.5,5.5 parent: 2 - uid: 10285 components: - type: Transform - pos: -99.5,15.5 + pos: -16.5,6.5 parent: 2 - uid: 10286 components: - type: Transform - pos: -99.5,16.5 + pos: -16.5,7.5 parent: 2 - uid: 10287 components: - type: Transform - pos: -99.5,17.5 + pos: -16.5,8.5 parent: 2 - uid: 10288 components: - type: Transform - pos: -101.5,18.5 + pos: -16.5,9.5 parent: 2 - uid: 10289 components: - type: Transform - pos: -100.5,17.5 + pos: -17.5,9.5 parent: 2 - uid: 10290 components: - type: Transform - pos: -100.5,18.5 + pos: -18.5,9.5 parent: 2 - uid: 10291 components: - type: Transform - pos: -102.5,18.5 + pos: -16.5,10.5 parent: 2 - uid: 10292 components: - type: Transform - pos: -100.5,26.5 + pos: -16.5,11.5 parent: 2 - uid: 10293 components: - type: Transform - pos: -100.5,25.5 + pos: -15.5,11.5 parent: 2 - uid: 10294 components: - type: Transform - pos: -100.5,24.5 + pos: -15.5,12.5 parent: 2 - uid: 10295 components: - type: Transform - pos: -102.5,25.5 + pos: -14.5,12.5 parent: 2 - uid: 10296 components: - type: Transform - pos: -101.5,25.5 + pos: -14.5,13.5 parent: 2 - uid: 10297 components: - type: Transform - pos: -102.5,26.5 + pos: -13.5,13.5 parent: 2 - uid: 10298 components: - type: Transform - pos: -102.5,27.5 + pos: -13.5,14.5 parent: 2 - uid: 10299 components: - type: Transform - pos: -107.5,27.5 + pos: -12.5,14.5 parent: 2 - uid: 10300 components: - type: Transform - pos: -100.5,23.5 + pos: -12.5,15.5 parent: 2 - uid: 10301 components: - type: Transform - pos: -101.5,23.5 + pos: -11.5,15.5 parent: 2 - uid: 10302 components: - type: Transform - pos: -102.5,23.5 + pos: -11.5,16.5 parent: 2 - uid: 10303 components: - type: Transform - pos: -103.5,23.5 + pos: -11.5,17.5 parent: 2 - uid: 10304 components: - type: Transform - pos: -104.5,23.5 + pos: -11.5,18.5 parent: 2 - uid: 10305 components: - type: Transform - pos: -105.5,23.5 + pos: -12.5,-4.5 parent: 2 - uid: 10306 components: - type: Transform - pos: -105.5,24.5 + pos: 28.5,-11.5 parent: 2 - uid: 10307 components: - type: Transform - pos: -105.5,25.5 + pos: 27.5,-11.5 parent: 2 - uid: 10308 components: - type: Transform - pos: -105.5,26.5 + pos: 26.5,-11.5 parent: 2 - uid: 10309 components: - type: Transform - pos: -106.5,26.5 + pos: 25.5,-8.5 parent: 2 - uid: 10310 components: - type: Transform - pos: -107.5,26.5 + pos: 25.5,-7.5 parent: 2 - uid: 10311 components: - type: Transform - pos: -108.5,26.5 + pos: 25.5,-6.5 parent: 2 - uid: 10312 components: - type: Transform - pos: -110.5,26.5 + pos: 25.5,-5.5 parent: 2 - uid: 10313 components: - type: Transform - pos: -109.5,26.5 + pos: 21.5,4.5 parent: 2 - uid: 10314 components: - type: Transform - pos: -110.5,27.5 + pos: 21.5,3.5 parent: 2 - uid: 10315 components: - type: Transform - pos: -110.5,28.5 + pos: 21.5,2.5 parent: 2 - uid: 10316 components: - type: Transform - pos: -110.5,29.5 + pos: 21.5,-1.5 parent: 2 - uid: 10317 components: - type: Transform - pos: -110.5,30.5 + pos: -7.5,-6.5 parent: 2 - uid: 10318 components: - type: Transform - pos: -107.5,28.5 + pos: -8.5,-28.5 parent: 2 - uid: 10319 components: - type: Transform - pos: -111.5,31.5 + pos: -10.5,-28.5 parent: 2 - uid: 10320 components: - type: Transform - pos: -111.5,32.5 + pos: -21.5,44.5 parent: 2 - uid: 10321 components: - type: Transform - pos: -112.5,32.5 + pos: -21.5,41.5 parent: 2 - uid: 10322 components: - type: Transform - pos: -111.5,30.5 + pos: -21.5,46.5 parent: 2 - uid: 10323 components: - type: Transform - pos: -112.5,30.5 + pos: -21.5,47.5 parent: 2 - uid: 10324 components: - type: Transform - pos: -111.5,28.5 + pos: -22.5,47.5 parent: 2 - uid: 10325 components: - type: Transform - pos: -112.5,28.5 + pos: -23.5,47.5 parent: 2 - uid: 10326 components: - type: Transform - pos: -106.5,28.5 + pos: -24.5,47.5 parent: 2 - uid: 10327 components: - type: Transform - pos: -106.5,29.5 + pos: -21.5,43.5 parent: 2 - uid: 10328 components: - type: Transform - pos: -106.5,30.5 + pos: 21.5,-0.5 parent: 2 - uid: 10329 components: - type: Transform - pos: -106.5,31.5 + pos: 24.5,0.5 parent: 2 - uid: 10330 components: - type: Transform - pos: -106.5,32.5 + pos: 21.5,0.5 parent: 2 - uid: 10331 components: - type: Transform - pos: -105.5,32.5 + pos: 22.5,0.5 parent: 2 - uid: 10332 components: - type: Transform - pos: -105.5,30.5 + pos: 23.5,0.5 parent: 2 - uid: 10333 components: - type: Transform - pos: -105.5,28.5 + pos: -26.5,15.5 parent: 2 - uid: 10334 components: - type: Transform - pos: -105.5,22.5 + pos: -20.5,16.5 parent: 2 - uid: 10335 components: - type: Transform - pos: -105.5,21.5 + pos: -20.5,27.5 parent: 2 - uid: 10336 components: - type: Transform - pos: -105.5,19.5 + pos: -20.5,26.5 parent: 2 - uid: 10337 components: - type: Transform - pos: -105.5,20.5 + pos: -20.5,25.5 parent: 2 - uid: 10338 components: - type: Transform - pos: -105.5,18.5 + pos: -20.5,24.5 parent: 2 - uid: 10339 components: - type: Transform - pos: -105.5,17.5 + pos: -19.5,24.5 parent: 2 - uid: 10340 components: - type: Transform - pos: 39.5,-52.5 + pos: -18.5,24.5 parent: 2 - uid: 10341 components: - type: Transform - pos: 39.5,-51.5 + pos: -21.5,24.5 parent: 2 - uid: 10342 components: - type: Transform - pos: -38.5,-19.5 + pos: -22.5,24.5 parent: 2 - uid: 10343 components: - type: Transform - pos: -43.5,-6.5 + pos: -23.5,24.5 parent: 2 - uid: 10344 components: - type: Transform - pos: -46.5,-6.5 + pos: 1.5,17.5 parent: 2 - uid: 10345 components: - type: Transform - pos: -47.5,-14.5 + pos: 1.5,18.5 parent: 2 - uid: 10346 components: - type: Transform - pos: -38.5,-6.5 + pos: 1.5,19.5 parent: 2 - uid: 10347 components: - type: Transform - pos: -37.5,7.5 + pos: 2.5,19.5 parent: 2 - uid: 10348 components: - type: Transform - pos: -38.5,7.5 + pos: 3.5,19.5 parent: 2 - uid: 10349 components: - type: Transform - pos: -36.5,8.5 + pos: 4.5,19.5 parent: 2 - uid: 10350 components: - type: Transform - pos: -36.5,7.5 + pos: 5.5,19.5 parent: 2 - uid: 10351 components: - type: Transform - pos: -38.5,8.5 + pos: 0.5,19.5 parent: 2 - uid: 10352 components: - type: Transform - pos: -43.5,-18.5 + pos: -0.5,19.5 parent: 2 - uid: 10353 components: - type: Transform - pos: -38.5,-18.5 + pos: -1.5,19.5 parent: 2 - uid: 10354 components: - type: Transform - pos: -43.5,-19.5 + pos: -2.5,19.5 parent: 2 - uid: 10355 components: - type: Transform - pos: -44.5,-14.5 + pos: -3.5,19.5 parent: 2 - uid: 10356 components: - type: Transform - pos: -47.5,-13.5 + pos: -4.5,19.5 parent: 2 - uid: 10357 components: - type: Transform - pos: -44.5,-13.5 + pos: 1.5,20.5 parent: 2 - uid: 10358 components: - type: Transform - pos: -43.5,-12.5 + pos: 1.5,21.5 parent: 2 - uid: 10359 components: - type: Transform - pos: -44.5,-12.5 + pos: -56.5,63.5 parent: 2 - uid: 10360 components: - type: Transform - pos: -22.5,-12.5 + pos: -56.5,62.5 parent: 2 - uid: 10361 components: - type: Transform - pos: -22.5,-13.5 + pos: -54.5,63.5 parent: 2 - uid: 10362 components: - type: Transform - pos: -22.5,-14.5 + pos: -57.5,62.5 parent: 2 - uid: 10363 components: - type: Transform - pos: -23.5,-14.5 + pos: -57.5,63.5 parent: 2 - uid: 10364 components: - type: Transform - pos: -24.5,-14.5 + pos: -57.5,63.5 parent: 2 - uid: 10365 components: - type: Transform - pos: -25.5,-14.5 + pos: -58.5,62.5 parent: 2 - uid: 10366 components: - type: Transform - pos: -26.5,-14.5 + pos: -58.5,64.5 parent: 2 - uid: 10367 components: - type: Transform - pos: -26.5,-15.5 + pos: -58.5,65.5 parent: 2 - uid: 10368 components: - type: Transform - pos: -26.5,-16.5 + pos: -52.5,63.5 parent: 2 - uid: 10369 components: - type: Transform - pos: -26.5,-17.5 + pos: -49.5,64.5 parent: 2 - uid: 10370 components: - type: Transform - pos: -26.5,-18.5 + pos: -49.5,65.5 parent: 2 - uid: 10371 components: - type: Transform - pos: -26.5,-19.5 + pos: -50.5,65.5 parent: 2 - uid: 10372 components: - type: Transform - pos: -26.5,-20.5 + pos: -51.5,64.5 parent: 2 - uid: 10373 components: - type: Transform - pos: -26.5,-21.5 + pos: -51.5,67.5 parent: 2 - uid: 10374 components: - type: Transform - pos: -28.5,-21.5 + pos: -51.5,62.5 parent: 2 - uid: 10375 components: - type: Transform - pos: -27.5,-21.5 + pos: -53.5,63.5 parent: 2 - uid: 10376 components: - type: Transform - pos: -25.5,-21.5 + pos: -55.5,62.5 parent: 2 - uid: 10377 components: - type: Transform - pos: -24.5,-21.5 + pos: -51.5,63.5 parent: 2 - uid: 10378 components: - type: Transform - pos: -23.5,-21.5 + pos: -51.5,65.5 parent: 2 - uid: 10379 components: - type: Transform - pos: -22.5,-21.5 + pos: -51.5,66.5 parent: 2 - uid: 10380 components: - type: Transform - pos: -21.5,-21.5 + pos: -50.5,67.5 parent: 2 - uid: 10381 components: - type: Transform - pos: -20.5,-21.5 + pos: -55.5,63.5 parent: 2 - uid: 10382 components: - type: Transform - pos: -19.5,-21.5 + pos: -58.5,66.5 parent: 2 - uid: 10383 components: - type: Transform - pos: -29.5,-21.5 + pos: -59.5,66.5 parent: 2 - uid: 10384 components: - type: Transform - pos: -30.5,-21.5 + pos: -118.5,8.5 parent: 2 - uid: 10385 components: - type: Transform - pos: -31.5,-21.5 + pos: -109.5,13.5 parent: 2 - uid: 10386 components: - type: Transform - pos: -32.5,-21.5 + pos: -109.5,11.5 parent: 2 - uid: 10387 components: - type: Transform - pos: -33.5,-21.5 + pos: -109.5,12.5 parent: 2 - uid: 10388 components: - type: Transform - pos: -26.5,-13.5 + pos: -117.5,8.5 parent: 2 - uid: 10389 components: - type: Transform - pos: -27.5,-13.5 + pos: -117.5,9.5 parent: 2 - uid: 10390 components: - type: Transform - pos: -33.5,-15.5 + pos: -117.5,10.5 parent: 2 - uid: 10391 components: - type: Transform - pos: -32.5,-15.5 + pos: -117.5,11.5 parent: 2 - uid: 10392 components: - type: Transform - pos: -31.5,-15.5 + pos: -116.5,11.5 parent: 2 - uid: 10393 components: - type: Transform - pos: -30.5,-15.5 + pos: -115.5,11.5 parent: 2 - uid: 10394 components: - type: Transform - pos: -29.5,-15.5 + pos: -114.5,11.5 parent: 2 - uid: 10395 components: - type: Transform - pos: -28.5,-15.5 + pos: -113.5,11.5 parent: 2 - uid: 10396 components: - type: Transform - pos: -27.5,-15.5 + pos: -116.5,8.5 parent: 2 - uid: 10397 components: - type: Transform - pos: -21.5,-14.5 + pos: -115.5,8.5 parent: 2 - uid: 10398 components: - type: Transform - pos: -20.5,-14.5 + pos: -114.5,8.5 parent: 2 - uid: 10399 components: - type: Transform - pos: -19.5,-14.5 + pos: -113.5,8.5 parent: 2 - uid: 10400 components: - type: Transform - pos: -33.5,-20.5 + pos: -117.5,7.5 parent: 2 - uid: 10401 components: - type: Transform - pos: -33.5,-19.5 + pos: -117.5,6.5 parent: 2 - uid: 10402 components: - type: Transform - pos: -33.5,-18.5 + pos: -117.5,5.5 parent: 2 - uid: 10403 components: - type: Transform - pos: -103.5,-9.5 + pos: -117.5,4.5 parent: 2 - uid: 10404 components: - type: Transform - pos: -103.5,-8.5 + pos: -117.5,3.5 parent: 2 - uid: 10405 components: - type: Transform - pos: -103.5,-7.5 + pos: -117.5,2.5 parent: 2 - uid: 10406 components: - type: Transform - pos: -104.5,-7.5 + pos: -116.5,2.5 parent: 2 - uid: 10407 components: - type: Transform - pos: -105.5,-7.5 + pos: -115.5,2.5 parent: 2 - uid: 10408 components: - type: Transform - pos: -106.5,-7.5 + pos: -114.5,2.5 parent: 2 - uid: 10409 components: - type: Transform - pos: -107.5,-7.5 + pos: -113.5,2.5 parent: 2 - uid: 10410 components: - type: Transform - pos: -108.5,-7.5 + pos: -116.5,4.5 parent: 2 - uid: 10411 components: - type: Transform - pos: -109.5,-7.5 + pos: -115.5,4.5 parent: 2 - uid: 10412 components: - type: Transform - pos: -107.5,-6.5 + pos: -114.5,4.5 parent: 2 - uid: 10413 components: - type: Transform - pos: -107.5,-5.5 + pos: -113.5,4.5 parent: 2 - uid: 10414 components: - type: Transform - pos: -107.5,-4.5 + pos: -116.5,6.5 parent: 2 - uid: 10415 components: - type: Transform - pos: -103.5,-6.5 + pos: -115.5,6.5 parent: 2 - uid: 10416 components: - type: Transform - pos: -103.5,-5.5 + pos: -114.5,6.5 parent: 2 - uid: 10417 components: - type: Transform - pos: -102.5,-7.5 + pos: -113.5,6.5 parent: 2 - uid: 10418 components: - type: Transform - pos: -101.5,-7.5 + pos: -112.5,6.5 parent: 2 - uid: 10419 components: - type: Transform - pos: -100.5,-7.5 + pos: -112.5,4.5 parent: 2 - uid: 10420 components: - type: Transform - pos: -100.5,-6.5 + pos: -112.5,2.5 parent: 2 - uid: 10421 components: - type: Transform - pos: -100.5,-5.5 + pos: -112.5,8.5 parent: 2 - uid: 10422 components: - type: Transform - pos: -99.5,-7.5 + pos: -112.5,11.5 parent: 2 - uid: 10423 components: - type: Transform - pos: -98.5,-7.5 + pos: -109.5,10.5 parent: 2 - uid: 10424 components: - type: Transform - pos: -97.5,-7.5 + pos: -109.5,8.5 parent: 2 - uid: 10425 components: - type: Transform - pos: -96.5,-7.5 + pos: -109.5,9.5 parent: 2 - uid: 10426 components: - type: Transform - pos: -118.5,6.5 + pos: -109.5,7.5 parent: 2 - uid: 10427 components: - type: Transform - pos: -119.5,6.5 + pos: -109.5,6.5 parent: 2 - uid: 10428 components: - type: Transform - pos: -120.5,6.5 + pos: -109.5,5.5 parent: 2 - uid: 10429 components: - type: Transform - pos: -121.5,6.5 + pos: -109.5,4.5 parent: 2 - uid: 10430 components: - type: Transform - pos: -122.5,6.5 + pos: -109.5,3.5 parent: 2 - uid: 10431 components: - type: Transform - pos: 43.5,-48.5 + pos: -109.5,2.5 parent: 2 - uid: 10432 components: - type: Transform - pos: 41.5,-47.5 + pos: -108.5,3.5 parent: 2 - uid: 10433 components: - type: Transform - pos: 40.5,-47.5 + pos: -107.5,3.5 parent: 2 - uid: 10434 components: - type: Transform - pos: 46.5,-53.5 + pos: -106.5,3.5 parent: 2 - uid: 10435 components: - type: Transform - pos: 45.5,-53.5 + pos: -105.5,3.5 parent: 2 - uid: 10436 components: - type: Transform - pos: 75.5,-46.5 + pos: -104.5,3.5 parent: 2 - uid: 10437 components: - type: Transform - pos: 74.5,-46.5 + pos: -108.5,10.5 parent: 2 - uid: 10438 components: - type: Transform - pos: 62.5,-41.5 + pos: -107.5,10.5 parent: 2 - uid: 10439 components: - type: Transform - pos: 1.5,65.5 + pos: -106.5,10.5 parent: 2 - uid: 10440 components: - type: Transform - pos: 0.5,65.5 + pos: -105.5,10.5 parent: 2 - uid: 10441 components: - type: Transform - pos: -21.5,45.5 + pos: -104.5,10.5 parent: 2 - uid: 10442 components: - type: Transform - pos: -21.5,47.5 + pos: -108.5,7.5 parent: 2 - uid: 10443 components: - type: Transform - pos: 103.5,-27.5 + pos: -107.5,7.5 parent: 2 - uid: 10444 components: - type: Transform - pos: -25.5,45.5 + pos: -106.5,7.5 parent: 2 - uid: 10445 components: - type: Transform - pos: 82.5,-44.5 + pos: -105.5,7.5 parent: 2 - uid: 10446 components: - type: Transform - pos: 88.5,-43.5 + pos: -104.5,7.5 parent: 2 - uid: 10447 components: - type: Transform - pos: 2.5,65.5 + pos: -108.5,5.5 parent: 2 - uid: 10448 components: - type: Transform - pos: 101.5,-20.5 + pos: -107.5,5.5 parent: 2 - uid: 10449 components: - type: Transform - pos: 100.5,-20.5 + pos: -107.5,2.5 parent: 2 - uid: 10450 components: - type: Transform - pos: 103.5,-31.5 + pos: -107.5,1.5 parent: 2 - uid: 10451 components: - type: Transform - pos: 99.5,-20.5 + pos: -104.5,2.5 parent: 2 - uid: 10452 components: - type: Transform - pos: 100.5,-10.5 + pos: -105.5,11.5 parent: 2 - uid: 10453 components: - type: Transform - pos: 96.5,-10.5 + pos: -105.5,12.5 parent: 2 - uid: 10454 components: - type: Transform - pos: 94.5,-10.5 + pos: -94.5,4.5 parent: 2 - uid: 10455 components: - type: Transform - pos: 95.5,-10.5 + pos: -95.5,4.5 parent: 2 - uid: 10456 components: - type: Transform - pos: 97.5,-10.5 + pos: -96.5,4.5 parent: 2 - uid: 10457 components: - type: Transform - pos: -51.5,-4.5 + pos: -97.5,4.5 parent: 2 - uid: 10458 components: - type: Transform - pos: -51.5,-4.5 + pos: -98.5,4.5 parent: 2 - uid: 10459 components: - type: Transform - pos: 103.5,-33.5 + pos: -99.5,4.5 parent: 2 - uid: 10460 components: - type: Transform - pos: 98.5,-10.5 + pos: -100.5,4.5 parent: 2 - uid: 10461 components: - type: Transform - pos: 99.5,-10.5 + pos: -100.5,3.5 parent: 2 - uid: 10462 components: - type: Transform - pos: 97.5,-9.5 + pos: -100.5,2.5 parent: 2 - uid: 10463 components: - type: Transform - pos: 103.5,-35.5 + pos: -95.5,3.5 parent: 2 - uid: 10464 components: - type: Transform - pos: 103.5,-32.5 + pos: -100.5,1.5 parent: 2 - uid: 10465 components: - type: Transform - pos: 103.5,-28.5 + pos: -95.5,2.5 parent: 2 - uid: 10466 components: - type: Transform - pos: 102.5,-20.5 + pos: -97.5,3.5 parent: 2 - uid: 10467 components: - type: Transform - pos: 103.5,-34.5 + pos: -97.5,2.5 parent: 2 - uid: 10468 components: - type: Transform - pos: 103.5,-36.5 + pos: -100.5,5.5 parent: 2 - uid: 10469 components: - type: Transform - pos: -25.5,47.5 + pos: -100.5,6.5 parent: 2 - uid: 10470 components: - type: Transform - pos: -25.5,46.5 + pos: -100.5,7.5 parent: 2 - uid: 10471 components: - type: Transform - pos: 103.5,-29.5 + pos: -100.5,8.5 parent: 2 - uid: 10472 components: - type: Transform - pos: 69.5,-28.5 + pos: -100.5,9.5 parent: 2 - uid: 10473 components: - type: Transform - pos: 103.5,-30.5 + pos: -100.5,10.5 parent: 2 - uid: 10474 components: - type: Transform - pos: 62.5,-47.5 + pos: -100.5,11.5 parent: 2 - uid: 10475 components: - type: Transform - pos: 93.5,-10.5 + pos: -100.5,12.5 parent: 2 - uid: 10476 components: - type: Transform - pos: 92.5,-10.5 + pos: -109.5,23.5 parent: 2 - uid: 10477 components: - type: Transform - pos: 97.5,-8.5 + pos: -109.5,22.5 parent: 2 - uid: 10478 components: - type: Transform - pos: 97.5,-7.5 + pos: -109.5,21.5 parent: 2 - uid: 10479 components: - type: Transform - pos: 97.5,-6.5 + pos: -109.5,20.5 parent: 2 - uid: 10480 components: - type: Transform - pos: 97.5,-5.5 + pos: -109.5,19.5 parent: 2 - uid: 10481 components: - type: Transform - pos: 97.5,-4.5 + pos: -109.5,18.5 parent: 2 - uid: 10482 components: - type: Transform - pos: 99.5,-11.5 + pos: -109.5,17.5 parent: 2 - uid: 10483 components: - type: Transform - pos: 99.5,-12.5 + pos: -109.5,16.5 parent: 2 - uid: 10484 components: - type: Transform - pos: -56.5,-4.5 + pos: -109.5,15.5 parent: 2 - uid: 10485 components: - type: Transform - pos: -55.5,-4.5 + pos: -110.5,15.5 parent: 2 - uid: 10486 components: - type: Transform - pos: -54.5,-4.5 + pos: -111.5,15.5 parent: 2 - uid: 10487 components: - type: Transform - pos: -53.5,-4.5 + pos: -112.5,15.5 parent: 2 - uid: 10488 components: - type: Transform - pos: -52.5,-4.5 + pos: -113.5,15.5 parent: 2 - uid: 10489 components: - type: Transform - pos: 93.5,-11.5 + pos: -113.5,16.5 parent: 2 - uid: 10490 components: - type: Transform - pos: 93.5,-12.5 + pos: -113.5,17.5 parent: 2 - uid: 10491 components: - type: Transform - pos: 93.5,-13.5 + pos: -113.5,18.5 parent: 2 - uid: 10492 components: - type: Transform - pos: 93.5,-14.5 + pos: -113.5,19.5 parent: 2 - uid: 10493 components: - type: Transform - pos: 93.5,-15.5 + pos: -113.5,20.5 parent: 2 - uid: 10494 components: - type: Transform - pos: 93.5,-16.5 + pos: -113.5,21.5 parent: 2 - uid: 10495 components: - type: Transform - pos: -89.5,60.5 + pos: -113.5,22.5 parent: 2 - uid: 10496 components: - type: Transform - pos: 61.5,-48.5 + pos: -113.5,23.5 parent: 2 - uid: 10497 components: - type: Transform - pos: -20.5,-3.5 + pos: -113.5,24.5 parent: 2 - uid: 10498 components: - type: Transform - pos: 72.5,-33.5 + pos: -116.5,24.5 parent: 2 - uid: 10499 components: - type: Transform - pos: 71.5,-30.5 + pos: -115.5,24.5 parent: 2 - uid: 10500 components: - type: Transform - pos: 83.5,-10.5 + pos: -116.5,20.5 parent: 2 - uid: 10501 components: - type: Transform - pos: 76.5,-29.5 + pos: -115.5,20.5 parent: 2 - uid: 10502 components: - type: Transform - pos: 82.5,-10.5 + pos: -116.5,16.5 parent: 2 - uid: 10503 components: - type: Transform - pos: 81.5,-10.5 + pos: -115.5,16.5 parent: 2 - uid: 10504 components: - type: Transform - pos: 72.5,-34.5 + pos: -114.5,24.5 parent: 2 - uid: 10505 components: - type: Transform - pos: 84.5,-10.5 + pos: -114.5,16.5 parent: 2 - uid: 10506 components: - type: Transform - pos: 85.5,-10.5 + pos: -108.5,15.5 parent: 2 - uid: 10507 components: - type: Transform - pos: 86.5,-10.5 + pos: -107.5,15.5 parent: 2 - uid: 10508 components: - type: Transform - pos: 87.5,-10.5 + pos: -106.5,15.5 parent: 2 - uid: 10509 components: - type: Transform - pos: 88.5,-10.5 + pos: -105.5,15.5 parent: 2 - uid: 10510 components: - type: Transform - pos: -29.5,15.5 + pos: -104.5,15.5 parent: 2 - uid: 10511 components: - type: Transform - pos: -29.5,17.5 + pos: -103.5,15.5 parent: 2 - uid: 10512 components: - type: Transform - pos: -29.5,16.5 + pos: -102.5,15.5 parent: 2 - uid: 10513 components: - type: Transform - pos: -32.5,15.5 + pos: -101.5,15.5 parent: 2 - uid: 10514 components: - type: Transform - pos: -31.5,15.5 + pos: -100.5,15.5 parent: 2 - uid: 10515 components: - type: Transform - pos: -28.5,15.5 + pos: -99.5,15.5 parent: 2 - uid: 10516 components: - type: Transform - pos: -30.5,15.5 + pos: -99.5,16.5 parent: 2 - uid: 10517 components: - type: Transform - pos: -27.5,15.5 + pos: -99.5,17.5 parent: 2 - uid: 10518 components: - type: Transform - pos: -24.5,19.5 + pos: -101.5,18.5 parent: 2 - uid: 10519 components: - type: Transform - pos: -23.5,19.5 + pos: -100.5,17.5 parent: 2 - uid: 10520 components: - type: Transform - pos: -21.5,16.5 + pos: -100.5,18.5 parent: 2 - uid: 10521 components: - type: Transform - pos: -22.5,17.5 + pos: -102.5,18.5 parent: 2 - uid: 10522 components: - type: Transform - pos: -22.5,16.5 + pos: -100.5,26.5 parent: 2 - uid: 10523 components: - type: Transform - pos: -22.5,18.5 + pos: -100.5,25.5 parent: 2 - uid: 10524 components: - type: Transform - pos: -22.5,19.5 + pos: -100.5,24.5 parent: 2 - uid: 10525 components: - type: Transform - pos: -22.5,15.5 + pos: -102.5,25.5 parent: 2 - uid: 10526 components: - type: Transform - pos: 81.5,-36.5 + pos: -101.5,25.5 parent: 2 - uid: 10527 components: - type: Transform - pos: 81.5,-35.5 + pos: -102.5,26.5 parent: 2 - uid: 10528 components: - type: Transform - pos: 81.5,-34.5 + pos: -102.5,27.5 parent: 2 - uid: 10529 components: - type: Transform - pos: 5.5,32.5 + pos: -107.5,27.5 parent: 2 - uid: 10530 components: - type: Transform - pos: 91.5,-43.5 + pos: -100.5,23.5 parent: 2 - uid: 10531 components: - type: Transform - pos: 90.5,-43.5 + pos: -101.5,23.5 parent: 2 - uid: 10532 components: - type: Transform - pos: 89.5,-43.5 + pos: -102.5,23.5 parent: 2 - uid: 10533 components: - type: Transform - pos: -90.5,58.5 + pos: -103.5,23.5 parent: 2 - uid: 10534 components: - type: Transform - pos: -89.5,61.5 + pos: -104.5,23.5 parent: 2 - uid: 10535 components: - type: Transform - pos: -88.5,66.5 + pos: -105.5,23.5 parent: 2 - uid: 10536 components: - type: Transform - pos: -87.5,66.5 + pos: -105.5,24.5 parent: 2 - uid: 10537 components: - type: Transform - pos: -90.5,63.5 + pos: -105.5,25.5 parent: 2 - uid: 10538 components: - type: Transform - pos: -89.5,59.5 + pos: -105.5,26.5 parent: 2 - uid: 10539 components: - type: Transform - pos: -90.5,61.5 + pos: -106.5,26.5 parent: 2 - uid: 10540 components: - type: Transform - pos: -90.5,62.5 + pos: -107.5,26.5 parent: 2 - uid: 10541 components: - type: Transform - pos: -90.5,64.5 + pos: -108.5,26.5 parent: 2 - uid: 10542 components: - type: Transform - pos: -90.5,65.5 + pos: -110.5,26.5 parent: 2 - uid: 10543 components: - type: Transform - pos: 16.5,-33.5 + pos: -109.5,26.5 parent: 2 - uid: 10544 components: - type: Transform - pos: 16.5,-32.5 + pos: -110.5,27.5 parent: 2 - uid: 10545 components: - type: Transform - pos: 16.5,-31.5 + pos: -110.5,28.5 parent: 2 - uid: 10546 components: - type: Transform - pos: 16.5,-30.5 + pos: -110.5,29.5 parent: 2 - uid: 10547 components: - type: Transform - pos: 16.5,-29.5 + pos: -110.5,30.5 parent: 2 - uid: 10548 components: - type: Transform - pos: -44.5,23.5 + pos: -107.5,28.5 parent: 2 - uid: 10549 components: - type: Transform - pos: -44.5,25.5 + pos: -111.5,31.5 parent: 2 - uid: 10550 components: - type: Transform - pos: -44.5,26.5 + pos: -111.5,32.5 parent: 2 - uid: 10551 components: - type: Transform - pos: -42.5,25.5 + pos: -112.5,32.5 parent: 2 - uid: 10552 components: - type: Transform - pos: -41.5,25.5 + pos: -111.5,30.5 parent: 2 - uid: 10553 components: - type: Transform - pos: -40.5,25.5 + pos: -112.5,30.5 parent: 2 - uid: 10554 components: - type: Transform - pos: -39.5,25.5 + pos: -111.5,28.5 parent: 2 - uid: 10555 components: - type: Transform - pos: -37.5,25.5 + pos: -112.5,28.5 parent: 2 - uid: 10556 components: - type: Transform - pos: -36.5,25.5 + pos: -106.5,28.5 parent: 2 - uid: 10557 components: - type: Transform - pos: -35.5,25.5 + pos: -106.5,29.5 parent: 2 - uid: 10558 components: - type: Transform - pos: -32.5,25.5 + pos: -106.5,30.5 parent: 2 - uid: 10559 components: - type: Transform - pos: -31.5,25.5 + pos: -106.5,31.5 parent: 2 - uid: 10560 components: - type: Transform - pos: -31.5,27.5 + pos: -106.5,32.5 parent: 2 - uid: 10561 components: - type: Transform - pos: -40.5,24.5 + pos: -105.5,32.5 parent: 2 - uid: 10562 components: - type: Transform - pos: -36.5,24.5 + pos: -105.5,30.5 parent: 2 - uid: 10563 components: - type: Transform - pos: -40.5,23.5 + pos: -105.5,28.5 parent: 2 - uid: 10564 components: - type: Transform - pos: -89.5,66.5 + pos: -105.5,22.5 parent: 2 - uid: 10565 components: - type: Transform - pos: -89.5,65.5 + pos: -105.5,21.5 parent: 2 - uid: 10566 components: - type: Transform - pos: 97.5,-20.5 + pos: -105.5,19.5 parent: 2 - uid: 10567 components: - type: Transform - pos: 98.5,-20.5 + pos: -105.5,20.5 parent: 2 - uid: 10568 components: - type: Transform - pos: 96.5,-20.5 + pos: -105.5,18.5 parent: 2 - uid: 10569 components: - type: Transform - pos: 95.5,-20.5 + pos: -105.5,17.5 parent: 2 - uid: 10570 components: - type: Transform - pos: 94.5,-20.5 + pos: 39.5,-52.5 parent: 2 - uid: 10571 components: - type: Transform - pos: -89.5,58.5 + pos: 39.5,-51.5 parent: 2 - uid: 10572 components: - type: Transform - pos: -89.5,57.5 + pos: -38.5,-19.5 parent: 2 - uid: 10573 components: - type: Transform - pos: -89.5,56.5 + pos: -43.5,-6.5 parent: 2 - uid: 10574 components: - type: Transform - pos: -88.5,56.5 + pos: -46.5,-6.5 parent: 2 - uid: 10575 components: - type: Transform - pos: -87.5,56.5 + pos: -47.5,-14.5 parent: 2 - uid: 10576 components: - type: Transform - pos: -90.5,56.5 + pos: -38.5,-6.5 parent: 2 - uid: 10577 components: - type: Transform - pos: -88.5,58.5 + pos: -37.5,7.5 parent: 2 - uid: 10578 components: - type: Transform - pos: -87.5,58.5 + pos: -38.5,7.5 parent: 2 - uid: 10579 components: - type: Transform - pos: -91.5,58.5 + pos: -36.5,8.5 parent: 2 - uid: 10580 components: - type: Transform - pos: -91.5,56.5 + pos: -36.5,7.5 parent: 2 - uid: 10581 components: - type: Transform - pos: 2.5,66.5 + pos: -38.5,8.5 parent: 2 - uid: 10582 components: - type: Transform - pos: 27.5,-28.5 + pos: -43.5,-18.5 parent: 2 - uid: 10583 components: - type: Transform - pos: -4.5,-43.5 + pos: -38.5,-18.5 parent: 2 - uid: 10584 components: - type: Transform - pos: -5.5,-45.5 + pos: -43.5,-19.5 parent: 2 - uid: 10585 components: - type: Transform - pos: -6.5,-45.5 + pos: -44.5,-14.5 parent: 2 - uid: 10586 components: - type: Transform - pos: -7.5,-45.5 + pos: -47.5,-13.5 parent: 2 - uid: 10587 components: - type: Transform - pos: -8.5,-45.5 + pos: -44.5,-13.5 parent: 2 - uid: 10588 components: - type: Transform - pos: -9.5,-45.5 + pos: -43.5,-12.5 parent: 2 - uid: 10589 components: - type: Transform - pos: -9.5,-44.5 + pos: -44.5,-12.5 parent: 2 - uid: 10590 components: - type: Transform - pos: -9.5,-43.5 + pos: -22.5,-12.5 parent: 2 - uid: 10591 components: - type: Transform - pos: -9.5,-42.5 + pos: -22.5,-13.5 parent: 2 - uid: 10592 components: - type: Transform - pos: -9.5,-41.5 + pos: -22.5,-14.5 parent: 2 - uid: 10593 components: - type: Transform - pos: -9.5,-46.5 + pos: -23.5,-14.5 parent: 2 - uid: 10594 components: - type: Transform - pos: -9.5,-47.5 + pos: -24.5,-14.5 parent: 2 - uid: 10595 components: - type: Transform - pos: -9.5,-48.5 + pos: -25.5,-14.5 parent: 2 - uid: 10596 components: - type: Transform - pos: -9.5,-49.5 + pos: -26.5,-14.5 parent: 2 - uid: 10597 components: - type: Transform - pos: -21.5,-8.5 + pos: -26.5,-15.5 parent: 2 - uid: 10598 components: - type: Transform - pos: -27.5,-10.5 + pos: -26.5,-16.5 parent: 2 - uid: 10599 components: - type: Transform - pos: -21.5,-7.5 + pos: -26.5,-17.5 parent: 2 - uid: 10600 components: - type: Transform - pos: 75.5,-28.5 + pos: -26.5,-18.5 parent: 2 - uid: 10601 components: - type: Transform - pos: 75.5,-27.5 + pos: -26.5,-19.5 parent: 2 - uid: 10602 components: - type: Transform - pos: 75.5,-26.5 + pos: -26.5,-20.5 parent: 2 - uid: 10603 components: - type: Transform - pos: 25.5,0.5 + pos: -26.5,-21.5 parent: 2 - uid: 10604 components: - type: Transform - pos: 25.5,-0.5 + pos: -28.5,-21.5 parent: 2 - uid: 10605 components: - type: Transform - pos: 25.5,-1.5 + pos: -27.5,-21.5 parent: 2 - uid: 10606 components: - type: Transform - pos: 26.5,-1.5 + pos: -25.5,-21.5 parent: 2 - uid: 10607 components: - type: Transform - pos: 24.5,-17.5 + pos: -24.5,-21.5 parent: 2 - uid: 10608 components: - type: Transform - pos: 24.5,-18.5 + pos: -23.5,-21.5 parent: 2 - uid: 10609 components: - type: Transform - pos: 25.5,-18.5 + pos: -22.5,-21.5 parent: 2 - uid: 10610 components: - type: Transform - pos: 26.5,-18.5 + pos: -21.5,-21.5 parent: 2 - uid: 10611 components: - type: Transform - pos: 52.5,2.5 + pos: -20.5,-21.5 parent: 2 - uid: 10612 components: - type: Transform - pos: 51.5,2.5 + pos: -19.5,-21.5 parent: 2 - uid: 10613 components: - type: Transform - pos: 50.5,2.5 + pos: -29.5,-21.5 parent: 2 - uid: 10614 components: - type: Transform - pos: 50.5,3.5 + pos: -30.5,-21.5 parent: 2 - uid: 10615 components: - type: Transform - pos: 28.5,10.5 + pos: -31.5,-21.5 parent: 2 - uid: 10616 components: - type: Transform - pos: 29.5,10.5 + pos: -32.5,-21.5 parent: 2 - uid: 10617 components: - type: Transform - pos: -10.5,18.5 + pos: -33.5,-21.5 parent: 2 - uid: 10618 components: - type: Transform - pos: -9.5,18.5 + pos: -26.5,-13.5 parent: 2 - uid: 10619 components: - type: Transform - pos: -9.5,20.5 + pos: -27.5,-13.5 parent: 2 - uid: 10620 components: - type: Transform - pos: -9.5,19.5 + pos: -33.5,-15.5 parent: 2 - uid: 10621 components: - type: Transform - pos: -25.5,43.5 + pos: -32.5,-15.5 parent: 2 - uid: 10622 components: - type: Transform - pos: -26.5,43.5 + pos: -31.5,-15.5 parent: 2 - uid: 10623 components: - type: Transform - pos: -27.5,43.5 + pos: -30.5,-15.5 parent: 2 - uid: 10624 components: - type: Transform - pos: -28.5,43.5 + pos: -29.5,-15.5 parent: 2 - uid: 10625 components: - type: Transform - pos: -29.5,43.5 + pos: -28.5,-15.5 parent: 2 - uid: 10626 components: - type: Transform - pos: 68.5,-41.5 + pos: -27.5,-15.5 parent: 2 - uid: 10627 components: - type: Transform - pos: 67.5,-41.5 + pos: -21.5,-14.5 parent: 2 - uid: 10628 components: - type: Transform - pos: 66.5,-41.5 + pos: -20.5,-14.5 parent: 2 - uid: 10629 components: - type: Transform - pos: 69.5,-40.5 + pos: -19.5,-14.5 parent: 2 - uid: 10630 components: - type: Transform - pos: 69.5,-39.5 + pos: -33.5,-20.5 parent: 2 - uid: 10631 components: - type: Transform - pos: 69.5,-38.5 + pos: -33.5,-19.5 parent: 2 - - uid: 40389 + - uid: 10632 components: - type: Transform - pos: 69.5,61.5 - parent: 40203 - - uid: 40390 + pos: -33.5,-18.5 + parent: 2 + - uid: 10633 components: - type: Transform - pos: 68.5,61.5 - parent: 40203 - - uid: 40391 + pos: -103.5,-9.5 + parent: 2 + - uid: 10634 components: - type: Transform - pos: 67.5,61.5 - parent: 40203 - - uid: 40392 + pos: -103.5,-8.5 + parent: 2 + - uid: 10635 components: - type: Transform - pos: 67.5,62.5 - parent: 40203 - - uid: 40393 + pos: -103.5,-7.5 + parent: 2 + - uid: 10636 components: - type: Transform - pos: 67.5,60.5 - parent: 40203 - - uid: 40394 + pos: -104.5,-7.5 + parent: 2 + - uid: 10637 components: - type: Transform - pos: 67.5,58.5 - parent: 40203 - - uid: 40395 + pos: -105.5,-7.5 + parent: 2 + - uid: 10638 components: - type: Transform - pos: 67.5,59.5 - parent: 40203 - - uid: 40396 + pos: -106.5,-7.5 + parent: 2 + - uid: 10639 components: - type: Transform - pos: 67.5,57.5 - parent: 40203 - - uid: 40397 + pos: -107.5,-7.5 + parent: 2 + - uid: 10640 components: - type: Transform - pos: 68.5,57.5 - parent: 40203 - - uid: 40398 + pos: -108.5,-7.5 + parent: 2 + - uid: 10641 components: - type: Transform - pos: 69.5,57.5 - parent: 40203 - - uid: 40399 + pos: -109.5,-7.5 + parent: 2 + - uid: 10642 components: - type: Transform - pos: 70.5,57.5 - parent: 40203 - - uid: 40400 + pos: -107.5,-6.5 + parent: 2 + - uid: 10643 components: - type: Transform - pos: 70.5,56.5 - parent: 40203 - - uid: 40401 + pos: -107.5,-5.5 + parent: 2 + - uid: 10644 components: - type: Transform - pos: 70.5,55.5 - parent: 40203 - - uid: 40402 + pos: -107.5,-4.5 + parent: 2 + - uid: 10645 components: - type: Transform - pos: 70.5,54.5 - parent: 40203 - - uid: 40403 + pos: -103.5,-6.5 + parent: 2 + - uid: 10646 components: - type: Transform - pos: 70.5,53.5 - parent: 40203 - - uid: 40404 + pos: -103.5,-5.5 + parent: 2 + - uid: 10647 components: - type: Transform - pos: 70.5,52.5 - parent: 40203 - - uid: 40405 + pos: -102.5,-7.5 + parent: 2 + - uid: 10648 components: - type: Transform - pos: 71.5,52.5 - parent: 40203 - - uid: 40406 + pos: -101.5,-7.5 + parent: 2 + - uid: 10649 components: - type: Transform - pos: 72.5,52.5 - parent: 40203 - - uid: 40407 + pos: -100.5,-7.5 + parent: 2 + - uid: 10650 components: - type: Transform - pos: 72.5,53.5 - parent: 40203 - - uid: 40408 + pos: -100.5,-6.5 + parent: 2 + - uid: 10651 components: - type: Transform - pos: 72.5,54.5 - parent: 40203 - - uid: 40409 + pos: -100.5,-5.5 + parent: 2 + - uid: 10652 components: - type: Transform - pos: 72.5,55.5 - parent: 40203 - - uid: 40410 + pos: -99.5,-7.5 + parent: 2 + - uid: 10653 components: - type: Transform - pos: 70.5,58.5 - parent: 40203 - - uid: 40411 + pos: -98.5,-7.5 + parent: 2 + - uid: 10654 components: - type: Transform - pos: 75.5,78.5 - parent: 40203 - - uid: 40412 + pos: -97.5,-7.5 + parent: 2 + - uid: 10655 components: - type: Transform - pos: 74.5,78.5 - parent: 40203 - - uid: 40413 + pos: -96.5,-7.5 + parent: 2 + - uid: 10656 components: - type: Transform - pos: 74.5,77.5 - parent: 40203 - - uid: 40414 + pos: -118.5,6.5 + parent: 2 + - uid: 10657 components: - type: Transform - pos: 73.5,77.5 - parent: 40203 - - uid: 40415 + pos: -119.5,6.5 + parent: 2 + - uid: 10658 components: - type: Transform - pos: 72.5,77.5 - parent: 40203 - - uid: 40416 + pos: -120.5,6.5 + parent: 2 + - uid: 10659 components: - type: Transform - pos: 72.5,76.5 - parent: 40203 - - uid: 40417 + pos: -121.5,6.5 + parent: 2 + - uid: 10660 components: - type: Transform - pos: 72.5,75.5 - parent: 40203 - - uid: 40418 + pos: -122.5,6.5 + parent: 2 + - uid: 10661 components: - type: Transform - pos: 73.5,75.5 - parent: 40203 - - uid: 40419 + pos: 43.5,-48.5 + parent: 2 + - uid: 10662 components: - type: Transform - pos: 73.5,74.5 - parent: 40203 - - uid: 40420 + pos: 41.5,-47.5 + parent: 2 + - uid: 10663 components: - type: Transform - pos: 73.5,73.5 - parent: 40203 - - uid: 40421 + pos: 40.5,-47.5 + parent: 2 + - uid: 10664 components: - type: Transform - pos: 73.5,72.5 - parent: 40203 - - uid: 40422 + pos: 46.5,-53.5 + parent: 2 + - uid: 10665 components: - type: Transform - pos: 70.5,70.5 - parent: 40203 - - uid: 40423 + pos: 45.5,-53.5 + parent: 2 + - uid: 10666 components: - type: Transform - pos: 69.5,70.5 - parent: 40203 - - uid: 40424 + pos: 75.5,-46.5 + parent: 2 + - uid: 10667 components: - type: Transform - pos: 68.5,70.5 - parent: 40203 - - uid: 40425 + pos: 74.5,-46.5 + parent: 2 + - uid: 10668 components: - type: Transform - pos: 68.5,72.5 - parent: 40203 - - uid: 40426 + pos: 62.5,-41.5 + parent: 2 + - uid: 10669 components: - type: Transform - pos: 68.5,73.5 - parent: 40203 - - uid: 40427 + pos: 1.5,65.5 + parent: 2 + - uid: 10670 components: - type: Transform - pos: 68.5,74.5 - parent: 40203 - - uid: 40428 + pos: 0.5,65.5 + parent: 2 + - uid: 10671 components: - type: Transform - pos: 68.5,75.5 - parent: 40203 - - uid: 40429 + pos: -21.5,45.5 + parent: 2 + - uid: 10672 components: - type: Transform - pos: 68.5,71.5 - parent: 40203 - - uid: 40430 + pos: -21.5,47.5 + parent: 2 + - uid: 10673 components: - type: Transform - pos: 67.5,75.5 - parent: 40203 - - uid: 40431 + pos: 103.5,-27.5 + parent: 2 + - uid: 10674 components: - type: Transform - pos: 66.5,75.5 - parent: 40203 - - uid: 40432 + pos: -25.5,45.5 + parent: 2 + - uid: 10675 components: - type: Transform - pos: 64.5,75.5 - parent: 40203 - - uid: 40433 + pos: 82.5,-44.5 + parent: 2 + - uid: 10676 components: - type: Transform - pos: 63.5,75.5 - parent: 40203 - - uid: 40434 + pos: 88.5,-43.5 + parent: 2 + - uid: 10677 components: - type: Transform - pos: 62.5,75.5 - parent: 40203 - - uid: 40435 + pos: 2.5,65.5 + parent: 2 + - uid: 10678 components: - type: Transform - pos: 61.5,75.5 - parent: 40203 - - uid: 40436 + pos: 101.5,-20.5 + parent: 2 + - uid: 10679 components: - type: Transform - pos: 60.5,75.5 - parent: 40203 - - uid: 40437 + pos: 100.5,-20.5 + parent: 2 + - uid: 10680 components: - type: Transform - pos: 59.5,75.5 - parent: 40203 - - uid: 40438 + pos: 103.5,-31.5 + parent: 2 + - uid: 10681 components: - type: Transform - pos: 65.5,75.5 - parent: 40203 - - uid: 40439 + pos: 99.5,-20.5 + parent: 2 + - uid: 10682 components: - type: Transform - pos: 60.5,76.5 - parent: 40203 - - uid: 40440 + pos: 100.5,-10.5 + parent: 2 + - uid: 10683 components: - type: Transform - pos: 60.5,77.5 - parent: 40203 - - uid: 40441 + pos: 96.5,-10.5 + parent: 2 + - uid: 10684 components: - type: Transform - pos: 63.5,76.5 - parent: 40203 - - uid: 40442 + pos: 94.5,-10.5 + parent: 2 + - uid: 10685 components: - type: Transform - pos: 63.5,77.5 - parent: 40203 - - uid: 40443 + pos: 95.5,-10.5 + parent: 2 + - uid: 10686 components: - type: Transform - pos: 66.5,76.5 - parent: 40203 - - uid: 40444 + pos: 97.5,-10.5 + parent: 2 + - uid: 10687 components: - type: Transform - pos: 66.5,77.5 - parent: 40203 - - uid: 40445 + pos: -51.5,-4.5 + parent: 2 + - uid: 10688 components: - type: Transform - pos: 69.5,76.5 - parent: 40203 - - uid: 40446 + pos: -51.5,-4.5 + parent: 2 + - uid: 10689 components: - type: Transform - pos: 69.5,77.5 - parent: 40203 - - uid: 40447 + pos: 103.5,-33.5 + parent: 2 + - uid: 10690 components: - type: Transform - pos: 54.5,80.5 - parent: 40203 - - uid: 40448 + pos: 98.5,-10.5 + parent: 2 + - uid: 10691 components: - type: Transform - pos: 54.5,79.5 - parent: 40203 - - uid: 40449 + pos: 99.5,-10.5 + parent: 2 + - uid: 10692 components: - type: Transform - pos: 55.5,79.5 - parent: 40203 - - uid: 40450 + pos: 97.5,-9.5 + parent: 2 + - uid: 10693 components: - type: Transform - pos: 56.5,79.5 - parent: 40203 - - uid: 40451 + pos: 103.5,-35.5 + parent: 2 + - uid: 10694 components: - type: Transform - pos: 56.5,80.5 - parent: 40203 - - uid: 40452 + pos: 103.5,-32.5 + parent: 2 + - uid: 10695 components: - type: Transform - pos: 56.5,81.5 - parent: 40203 - - uid: 40453 + pos: 103.5,-28.5 + parent: 2 + - uid: 10696 components: - type: Transform - pos: 57.5,81.5 - parent: 40203 - - uid: 40454 + pos: 102.5,-20.5 + parent: 2 + - uid: 10697 components: - type: Transform - pos: 57.5,81.5 - parent: 40203 - - uid: 40455 + pos: 103.5,-34.5 + parent: 2 + - uid: 10698 components: - type: Transform - pos: 58.5,81.5 - parent: 40203 - - uid: 40456 + pos: 103.5,-36.5 + parent: 2 + - uid: 10699 components: - type: Transform - pos: 44.5,56.5 - parent: 40203 - - uid: 40457 + pos: -25.5,47.5 + parent: 2 + - uid: 10700 components: - type: Transform - pos: 53.5,78.5 - parent: 40203 - - uid: 40458 + pos: -25.5,46.5 + parent: 2 + - uid: 10701 components: - type: Transform - pos: 53.5,77.5 - parent: 40203 - - uid: 40459 + pos: 103.5,-29.5 + parent: 2 + - uid: 10702 components: - type: Transform - pos: 52.5,77.5 - parent: 40203 - - uid: 40460 + pos: 69.5,-28.5 + parent: 2 + - uid: 10703 components: - type: Transform - pos: 51.5,77.5 - parent: 40203 - - uid: 40461 + pos: 103.5,-30.5 + parent: 2 + - uid: 10704 components: - type: Transform - pos: 50.5,77.5 - parent: 40203 - - uid: 40462 + pos: 62.5,-47.5 + parent: 2 + - uid: 10705 components: - type: Transform - pos: 50.5,72.5 - parent: 40203 - - uid: 40463 + pos: 93.5,-10.5 + parent: 2 + - uid: 10706 components: - type: Transform - pos: 50.5,74.5 - parent: 40203 - - uid: 40464 + pos: 92.5,-10.5 + parent: 2 + - uid: 10707 components: - type: Transform - pos: 50.5,75.5 - parent: 40203 - - uid: 40465 + pos: 97.5,-8.5 + parent: 2 + - uid: 10708 components: - type: Transform - pos: 50.5,76.5 - parent: 40203 - - uid: 40466 + pos: 97.5,-7.5 + parent: 2 + - uid: 10709 components: - type: Transform - pos: 50.5,73.5 - parent: 40203 - - uid: 40467 + pos: 97.5,-6.5 + parent: 2 + - uid: 10710 components: - type: Transform - pos: 50.5,71.5 - parent: 40203 - - uid: 40468 + pos: 97.5,-5.5 + parent: 2 + - uid: 10711 components: - type: Transform - pos: 50.5,71.5 - parent: 40203 - - uid: 40469 + pos: 97.5,-4.5 + parent: 2 + - uid: 10712 components: - type: Transform - pos: 49.5,71.5 - parent: 40203 - - uid: 40470 + pos: 99.5,-11.5 + parent: 2 + - uid: 10713 components: - type: Transform - pos: 58.5,75.5 - parent: 40203 - - uid: 40471 + pos: 99.5,-12.5 + parent: 2 + - uid: 10714 components: - type: Transform - pos: 57.5,75.5 - parent: 40203 - - uid: 40472 + pos: -56.5,-4.5 + parent: 2 + - uid: 10715 components: - type: Transform - pos: 56.5,75.5 - parent: 40203 - - uid: 40473 + pos: -55.5,-4.5 + parent: 2 + - uid: 10716 components: - type: Transform - pos: 55.5,75.5 - parent: 40203 - - uid: 40474 + pos: -54.5,-4.5 + parent: 2 + - uid: 10717 components: - type: Transform - pos: 68.5,69.5 - parent: 40203 - - uid: 40475 + pos: -53.5,-4.5 + parent: 2 + - uid: 10718 components: - type: Transform - pos: 68.5,67.5 - parent: 40203 - - uid: 40476 + pos: -52.5,-4.5 + parent: 2 + - uid: 10719 components: - type: Transform - pos: 68.5,68.5 - parent: 40203 - - uid: 40477 + pos: 93.5,-11.5 + parent: 2 + - uid: 10720 components: - type: Transform - pos: 68.5,66.5 - parent: 40203 - - uid: 40478 + pos: 93.5,-12.5 + parent: 2 + - uid: 10721 components: - type: Transform - pos: 67.5,66.5 - parent: 40203 - - uid: 40479 + pos: 93.5,-13.5 + parent: 2 + - uid: 10722 components: - type: Transform - pos: 66.5,66.5 - parent: 40203 - - uid: 40480 + pos: 93.5,-14.5 + parent: 2 + - uid: 10723 components: - type: Transform - pos: 65.5,66.5 - parent: 40203 - - uid: 40481 + pos: 93.5,-15.5 + parent: 2 + - uid: 10724 components: - type: Transform - pos: 64.5,66.5 - parent: 40203 - - uid: 40482 + pos: 93.5,-16.5 + parent: 2 + - uid: 10725 components: - type: Transform - pos: 61.5,67.5 - parent: 40203 - - uid: 40483 + pos: -89.5,60.5 + parent: 2 + - uid: 10726 components: - type: Transform - pos: 61.5,68.5 - parent: 40203 - - uid: 40484 + pos: 61.5,-48.5 + parent: 2 + - uid: 10727 components: - type: Transform - pos: 61.5,69.5 - parent: 40203 - - uid: 40485 + pos: -20.5,-3.5 + parent: 2 + - uid: 10728 components: - type: Transform - pos: 61.5,70.5 - parent: 40203 - - uid: 40486 + pos: 72.5,-33.5 + parent: 2 + - uid: 10729 components: - type: Transform - pos: 60.5,70.5 - parent: 40203 - - uid: 40487 + pos: 71.5,-30.5 + parent: 2 + - uid: 10730 components: - type: Transform - pos: 59.5,70.5 - parent: 40203 - - uid: 40488 + pos: 83.5,-10.5 + parent: 2 + - uid: 10731 components: - type: Transform - pos: 58.5,70.5 - parent: 40203 - - uid: 40489 + pos: 76.5,-29.5 + parent: 2 + - uid: 10732 components: - type: Transform - pos: 57.5,70.5 - parent: 40203 - - uid: 40490 + pos: 82.5,-10.5 + parent: 2 + - uid: 10733 components: - type: Transform - pos: 56.5,70.5 - parent: 40203 - - uid: 40491 + pos: 81.5,-10.5 + parent: 2 + - uid: 10734 components: - type: Transform - pos: 55.5,70.5 - parent: 40203 - - uid: 40492 + pos: 72.5,-34.5 + parent: 2 + - uid: 10735 components: - type: Transform - pos: 62.5,70.5 - parent: 40203 - - uid: 40493 + pos: 84.5,-10.5 + parent: 2 + - uid: 10736 components: - type: Transform - pos: 63.5,70.5 - parent: 40203 - - uid: 40494 + pos: 85.5,-10.5 + parent: 2 + - uid: 10737 components: - type: Transform - pos: 64.5,70.5 - parent: 40203 - - uid: 40495 + pos: 86.5,-10.5 + parent: 2 + - uid: 10738 components: - type: Transform - pos: 65.5,70.5 - parent: 40203 - - uid: 40496 + pos: 87.5,-10.5 + parent: 2 + - uid: 10739 components: - type: Transform - pos: 57.5,64.5 - parent: 40203 - - uid: 40497 + pos: 88.5,-10.5 + parent: 2 + - uid: 10740 components: - type: Transform - pos: 57.5,63.5 - parent: 40203 - - uid: 40498 + pos: -29.5,15.5 + parent: 2 + - uid: 10741 components: - type: Transform - pos: 57.5,62.5 - parent: 40203 - - uid: 40499 + pos: -29.5,17.5 + parent: 2 + - uid: 10742 components: - type: Transform - pos: 57.5,61.5 - parent: 40203 - - uid: 40500 + pos: -29.5,16.5 + parent: 2 + - uid: 10743 components: - type: Transform - pos: 56.5,61.5 - parent: 40203 - - uid: 40501 + pos: -32.5,15.5 + parent: 2 + - uid: 10744 components: - type: Transform - pos: 57.5,60.5 - parent: 40203 - - uid: 40502 + pos: -31.5,15.5 + parent: 2 + - uid: 10745 components: - type: Transform - pos: 58.5,60.5 - parent: 40203 - - uid: 40503 + pos: -28.5,15.5 + parent: 2 + - uid: 10746 components: - type: Transform - pos: 60.5,60.5 - parent: 40203 - - uid: 40504 + pos: -30.5,15.5 + parent: 2 + - uid: 10747 components: - type: Transform - pos: 61.5,60.5 - parent: 40203 - - uid: 40505 + pos: -27.5,15.5 + parent: 2 + - uid: 10748 components: - type: Transform - pos: 59.5,60.5 - parent: 40203 - - uid: 40506 + pos: -24.5,19.5 + parent: 2 + - uid: 10749 components: - type: Transform - pos: 61.5,61.5 - parent: 40203 - - uid: 40507 + pos: -23.5,19.5 + parent: 2 + - uid: 10750 components: - type: Transform - pos: 57.5,58.5 - parent: 40203 - - uid: 40508 + pos: -21.5,16.5 + parent: 2 + - uid: 10751 components: - type: Transform - pos: 57.5,57.5 - parent: 40203 - - uid: 40509 + pos: -22.5,17.5 + parent: 2 + - uid: 10752 components: - type: Transform - pos: 57.5,56.5 - parent: 40203 - - uid: 40510 + pos: -22.5,16.5 + parent: 2 + - uid: 10753 components: - type: Transform - pos: 57.5,55.5 - parent: 40203 - - uid: 40511 + pos: -22.5,18.5 + parent: 2 + - uid: 10754 components: - type: Transform - pos: 66.5,58.5 - parent: 40203 - - uid: 40512 + pos: -22.5,19.5 + parent: 2 + - uid: 10755 components: - type: Transform - pos: 65.5,58.5 - parent: 40203 - - uid: 40513 + pos: -22.5,15.5 + parent: 2 + - uid: 10756 components: - type: Transform - pos: 64.5,58.5 - parent: 40203 - - uid: 40514 - components: + pos: 81.5,-36.5 + parent: 2 + - uid: 10757 + components: - type: Transform - pos: 63.5,58.5 - parent: 40203 - - uid: 40515 + pos: 81.5,-35.5 + parent: 2 + - uid: 10758 components: - type: Transform - pos: 62.5,58.5 - parent: 40203 - - uid: 40516 + pos: 81.5,-34.5 + parent: 2 + - uid: 10759 components: - type: Transform - pos: 62.5,57.5 - parent: 40203 - - uid: 40517 + pos: 5.5,32.5 + parent: 2 + - uid: 10760 components: - type: Transform - pos: 62.5,56.5 - parent: 40203 - - uid: 40518 + pos: 91.5,-43.5 + parent: 2 + - uid: 10761 components: - type: Transform - pos: 62.5,55.5 - parent: 40203 - - uid: 40519 + pos: 90.5,-43.5 + parent: 2 + - uid: 10762 components: - type: Transform - pos: 62.5,54.5 - parent: 40203 - - uid: 40520 + pos: 89.5,-43.5 + parent: 2 + - uid: 10763 components: - type: Transform - pos: 62.5,53.5 - parent: 40203 - - uid: 40521 + pos: 16.5,-33.5 + parent: 2 + - uid: 10764 components: - type: Transform - pos: 61.5,53.5 - parent: 40203 - - uid: 40522 + pos: 16.5,-32.5 + parent: 2 + - uid: 10765 components: - type: Transform - pos: 61.5,52.5 - parent: 40203 - - uid: 40523 + pos: 16.5,-31.5 + parent: 2 + - uid: 10766 components: - type: Transform - pos: 61.5,51.5 - parent: 40203 - - uid: 40524 + pos: 16.5,-30.5 + parent: 2 + - uid: 10767 components: - type: Transform - pos: 61.5,50.5 - parent: 40203 - - uid: 40525 + pos: 16.5,-29.5 + parent: 2 + - uid: 10768 components: - type: Transform - pos: 61.5,49.5 - parent: 40203 - - uid: 40526 + pos: -44.5,23.5 + parent: 2 + - uid: 10769 components: - type: Transform - pos: 62.5,49.5 - parent: 40203 - - uid: 40527 + pos: -44.5,25.5 + parent: 2 + - uid: 10770 components: - type: Transform - pos: 63.5,49.5 - parent: 40203 - - uid: 40528 + pos: -44.5,26.5 + parent: 2 + - uid: 10771 components: - type: Transform - pos: 64.5,49.5 - parent: 40203 - - uid: 40529 + pos: -42.5,25.5 + parent: 2 + - uid: 10772 components: - type: Transform - pos: 65.5,49.5 - parent: 40203 - - uid: 40530 + pos: -41.5,25.5 + parent: 2 + - uid: 10773 components: - type: Transform - pos: 58.5,55.5 - parent: 40203 - - uid: 40531 + pos: -40.5,25.5 + parent: 2 + - uid: 10774 components: - type: Transform - pos: 55.5,52.5 - parent: 40203 - - uid: 40532 + pos: -39.5,25.5 + parent: 2 + - uid: 10775 components: - type: Transform - pos: 54.5,52.5 - parent: 40203 - - uid: 40533 + pos: -37.5,25.5 + parent: 2 + - uid: 10776 components: - type: Transform - pos: 53.5,52.5 - parent: 40203 - - uid: 40534 + pos: -36.5,25.5 + parent: 2 + - uid: 10777 components: - type: Transform - pos: 51.5,52.5 - parent: 40203 - - uid: 40535 + pos: -35.5,25.5 + parent: 2 + - uid: 10778 components: - type: Transform - pos: 52.5,52.5 - parent: 40203 - - uid: 40536 + pos: -32.5,25.5 + parent: 2 + - uid: 10779 components: - type: Transform - pos: 51.5,53.5 - parent: 40203 - - uid: 40537 + pos: -31.5,25.5 + parent: 2 + - uid: 10780 components: - type: Transform - pos: 51.5,54.5 - parent: 40203 - - uid: 40538 + pos: -31.5,27.5 + parent: 2 + - uid: 10781 components: - type: Transform - pos: 51.5,55.5 - parent: 40203 - - uid: 40539 + pos: -40.5,24.5 + parent: 2 + - uid: 10782 components: - type: Transform - pos: 51.5,56.5 - parent: 40203 - - uid: 40540 + pos: -36.5,24.5 + parent: 2 + - uid: 10783 components: - type: Transform - pos: 56.5,52.5 - parent: 40203 - - uid: 40541 + pos: -40.5,23.5 + parent: 2 + - uid: 10784 components: - type: Transform - pos: 57.5,52.5 - parent: 40203 - - uid: 40542 + pos: 97.5,-20.5 + parent: 2 + - uid: 10785 components: - type: Transform - pos: 58.5,52.5 - parent: 40203 - - uid: 40543 + pos: 98.5,-20.5 + parent: 2 + - uid: 10786 components: - type: Transform - pos: 59.5,52.5 - parent: 40203 - - uid: 40544 + pos: 96.5,-20.5 + parent: 2 + - uid: 10787 components: - type: Transform - pos: 46.5,67.5 - parent: 40203 - - uid: 40545 + pos: 95.5,-20.5 + parent: 2 + - uid: 10788 components: - type: Transform - pos: 46.5,66.5 - parent: 40203 - - uid: 40546 + pos: 94.5,-20.5 + parent: 2 + - uid: 10789 components: - type: Transform - pos: 47.5,66.5 - parent: 40203 - - uid: 40547 + pos: 2.5,66.5 + parent: 2 + - uid: 10790 components: - type: Transform - pos: 48.5,66.5 - parent: 40203 - - uid: 40548 + pos: 27.5,-28.5 + parent: 2 + - uid: 10791 components: - type: Transform - pos: 50.5,66.5 - parent: 40203 - - uid: 40549 + pos: -4.5,-43.5 + parent: 2 + - uid: 10792 components: - type: Transform - pos: 51.5,66.5 - parent: 40203 - - uid: 40550 + pos: -5.5,-45.5 + parent: 2 + - uid: 10793 components: - type: Transform - pos: 52.5,66.5 - parent: 40203 - - uid: 40551 + pos: -6.5,-45.5 + parent: 2 + - uid: 10794 components: - type: Transform - pos: 53.5,66.5 - parent: 40203 - - uid: 40552 + pos: -7.5,-45.5 + parent: 2 + - uid: 10795 components: - type: Transform - pos: 54.5,66.5 - parent: 40203 - - uid: 40553 + pos: -8.5,-45.5 + parent: 2 + - uid: 10796 components: - type: Transform - pos: 55.5,66.5 - parent: 40203 - - uid: 40554 + pos: -9.5,-45.5 + parent: 2 + - uid: 10797 components: - type: Transform - pos: 49.5,66.5 - parent: 40203 - - uid: 40555 + pos: -9.5,-44.5 + parent: 2 + - uid: 10798 components: - type: Transform - pos: 51.5,65.5 - parent: 40203 - - uid: 40556 + pos: -9.5,-43.5 + parent: 2 + - uid: 10799 components: - type: Transform - pos: 51.5,63.5 - parent: 40203 - - uid: 40557 + pos: -9.5,-42.5 + parent: 2 + - uid: 10800 components: - type: Transform - pos: 51.5,64.5 - parent: 40203 - - uid: 40558 + pos: -9.5,-41.5 + parent: 2 + - uid: 10801 components: - type: Transform - pos: 51.5,62.5 - parent: 40203 - - uid: 40559 + pos: -9.5,-46.5 + parent: 2 + - uid: 10802 components: - type: Transform - pos: 51.5,61.5 - parent: 40203 - - uid: 40560 + pos: -9.5,-47.5 + parent: 2 + - uid: 10803 components: - type: Transform - pos: 50.5,61.5 - parent: 40203 - - uid: 40561 + pos: -9.5,-48.5 + parent: 2 + - uid: 10804 components: - type: Transform - pos: 49.5,61.5 - parent: 40203 - - uid: 40562 + pos: -9.5,-49.5 + parent: 2 + - uid: 10805 components: - type: Transform - pos: 52.5,61.5 - parent: 40203 - - uid: 40563 + pos: -21.5,-8.5 + parent: 2 + - uid: 10806 components: - type: Transform - pos: 44.5,66.5 - parent: 40203 - - uid: 40564 + pos: -27.5,-10.5 + parent: 2 + - uid: 10807 components: - type: Transform - pos: 43.5,66.5 - parent: 40203 - - uid: 40565 + pos: -21.5,-7.5 + parent: 2 + - uid: 10808 components: - type: Transform - pos: 42.5,66.5 - parent: 40203 - - uid: 40566 + pos: 75.5,-28.5 + parent: 2 + - uid: 10809 components: - type: Transform - pos: 45.5,66.5 - parent: 40203 - - uid: 40567 + pos: 75.5,-27.5 + parent: 2 + - uid: 10810 components: - type: Transform - pos: 41.5,66.5 - parent: 40203 - - uid: 40568 + pos: 75.5,-26.5 + parent: 2 + - uid: 10811 components: - type: Transform - pos: 40.5,66.5 - parent: 40203 - - uid: 40569 + pos: 25.5,0.5 + parent: 2 + - uid: 10812 components: - type: Transform - pos: 39.5,66.5 - parent: 40203 - - uid: 40570 + pos: 25.5,-0.5 + parent: 2 + - uid: 10813 components: - type: Transform - pos: 38.5,66.5 - parent: 40203 - - uid: 40571 + pos: 25.5,-1.5 + parent: 2 + - uid: 10814 components: - type: Transform - pos: 36.5,66.5 - parent: 40203 - - uid: 40572 + pos: 26.5,-1.5 + parent: 2 + - uid: 10815 components: - type: Transform - pos: 37.5,66.5 - parent: 40203 - - uid: 40573 + pos: 24.5,-17.5 + parent: 2 + - uid: 10816 components: - type: Transform - pos: 35.5,66.5 - parent: 40203 - - uid: 40574 + pos: 24.5,-18.5 + parent: 2 + - uid: 10817 components: - type: Transform - pos: 34.5,66.5 - parent: 40203 - - uid: 40575 + pos: 25.5,-18.5 + parent: 2 + - uid: 10818 components: - type: Transform - pos: 31.5,66.5 - parent: 40203 - - uid: 40576 + pos: 26.5,-18.5 + parent: 2 + - uid: 10819 components: - type: Transform - pos: 32.5,66.5 - parent: 40203 - - uid: 40577 + pos: 52.5,2.5 + parent: 2 + - uid: 10820 components: - type: Transform - pos: 30.5,66.5 - parent: 40203 - - uid: 40578 + pos: 51.5,2.5 + parent: 2 + - uid: 10821 components: - type: Transform - pos: 33.5,66.5 - parent: 40203 - - uid: 40579 + pos: 50.5,2.5 + parent: 2 + - uid: 10822 components: - type: Transform - pos: 44.5,67.5 - parent: 40203 - - uid: 40580 + pos: 50.5,3.5 + parent: 2 + - uid: 10823 components: - type: Transform - pos: 44.5,69.5 - parent: 40203 - - uid: 40581 + pos: 28.5,10.5 + parent: 2 + - uid: 10824 components: - type: Transform - pos: 44.5,70.5 - parent: 40203 - - uid: 40582 + pos: 29.5,10.5 + parent: 2 + - uid: 10825 components: - type: Transform - pos: 44.5,71.5 - parent: 40203 - - uid: 40583 + pos: -10.5,18.5 + parent: 2 + - uid: 10826 components: - type: Transform - pos: 44.5,72.5 - parent: 40203 - - uid: 40584 + pos: -9.5,18.5 + parent: 2 + - uid: 10827 components: - type: Transform - pos: 44.5,73.5 - parent: 40203 - - uid: 40585 + pos: -9.5,20.5 + parent: 2 + - uid: 10828 components: - type: Transform - pos: 44.5,68.5 - parent: 40203 - - uid: 40586 + pos: -9.5,19.5 + parent: 2 + - uid: 10829 components: - type: Transform - pos: 35.5,63.5 - parent: 40203 - - uid: 40587 + pos: -25.5,43.5 + parent: 2 + - uid: 10830 components: - type: Transform - pos: 36.5,63.5 - parent: 40203 - - uid: 40588 + pos: -26.5,43.5 + parent: 2 + - uid: 10831 components: - type: Transform - pos: 36.5,62.5 - parent: 40203 - - uid: 40589 + pos: -27.5,43.5 + parent: 2 + - uid: 10832 components: - type: Transform - pos: 36.5,61.5 - parent: 40203 - - uid: 40590 + pos: -28.5,43.5 + parent: 2 + - uid: 10833 components: - type: Transform - pos: 37.5,61.5 - parent: 40203 - - uid: 40591 + pos: -29.5,43.5 + parent: 2 + - uid: 10834 components: - type: Transform - pos: 38.5,61.5 - parent: 40203 - - uid: 40592 + pos: 68.5,-41.5 + parent: 2 + - uid: 10835 components: - type: Transform - pos: 39.5,61.5 - parent: 40203 - - uid: 40593 + pos: 67.5,-41.5 + parent: 2 + - uid: 10836 components: - type: Transform - pos: 40.5,61.5 - parent: 40203 - - uid: 40594 + pos: 66.5,-41.5 + parent: 2 + - uid: 10837 components: - type: Transform - pos: 42.5,61.5 - parent: 40203 - - uid: 40595 + pos: 69.5,-40.5 + parent: 2 + - uid: 10838 components: - type: Transform - pos: 43.5,61.5 - parent: 40203 - - uid: 40596 + pos: 69.5,-39.5 + parent: 2 + - uid: 10839 components: - type: Transform - pos: 44.5,61.5 - parent: 40203 - - uid: 40597 + pos: 69.5,-38.5 + parent: 2 + - uid: 10840 components: - type: Transform - pos: 45.5,61.5 - parent: 40203 - - uid: 40598 + pos: 46.5,-10.5 + parent: 2 + - uid: 10841 components: - type: Transform - pos: 41.5,61.5 - parent: 40203 - - uid: 40599 + pos: 53.5,-13.5 + parent: 2 + - uid: 10842 components: - type: Transform - pos: 40.5,60.5 - parent: 40203 - - uid: 40600 + pos: 58.5,-15.5 + parent: 2 + - uid: 10843 components: - type: Transform - pos: 40.5,59.5 - parent: 40203 - - uid: 40601 + pos: 54.5,-13.5 + parent: 2 + - uid: 10844 components: - type: Transform - pos: 41.5,59.5 - parent: 40203 - - uid: 40602 + pos: 80.5,-29.5 + parent: 2 + - uid: 10845 components: - type: Transform - pos: 42.5,59.5 - parent: 40203 - - uid: 40603 + pos: 81.5,-29.5 + parent: 2 + - uid: 10846 components: - type: Transform - pos: 42.5,58.5 - parent: 40203 - - uid: 40604 + pos: 81.5,-27.5 + parent: 2 + - uid: 10847 components: - type: Transform - pos: 42.5,57.5 - parent: 40203 - - uid: 40605 + pos: 82.5,-27.5 + parent: 2 + - uid: 10848 components: - type: Transform - pos: 42.5,56.5 - parent: 40203 - - uid: 40606 + pos: 81.5,-28.5 + parent: 2 + - uid: 10849 components: - type: Transform - pos: 43.5,56.5 - parent: 40203 - - uid: 40607 + pos: 48.5,-13.5 + parent: 2 + - uid: 10850 components: - type: Transform - pos: 35.5,72.5 - parent: 40203 - - uid: 40608 + pos: 78.5,-29.5 + parent: 2 + - uid: 10851 components: - type: Transform - pos: 34.5,72.5 - parent: 40203 - - uid: 40609 + pos: 77.5,-29.5 + parent: 2 + - uid: 10852 components: - type: Transform - pos: 33.5,72.5 - parent: 40203 - - uid: 40610 + pos: 48.5,-12.5 + parent: 2 + - uid: 10853 components: - type: Transform - pos: 33.5,71.5 - parent: 40203 - - uid: 40611 + pos: 49.5,-10.5 + parent: 2 + - uid: 10854 components: - type: Transform - pos: 33.5,70.5 - parent: 40203 - - uid: 40612 + pos: 51.5,-10.5 + parent: 2 + - uid: 10855 components: - type: Transform - pos: 33.5,70.5 - parent: 40203 - - uid: 40613 + pos: 52.5,-10.5 + parent: 2 + - uid: 10856 components: - type: Transform - pos: 33.5,69.5 - parent: 40203 - - uid: 40614 + pos: 27.5,8.5 + parent: 2 + - uid: 10857 components: - type: Transform - pos: 34.5,70.5 - parent: 40203 - - uid: 40615 + pos: 29.5,8.5 + parent: 2 + - uid: 10858 components: - type: Transform - pos: 35.5,70.5 - parent: 40203 - - uid: 40616 + pos: 28.5,8.5 + parent: 2 + - uid: 10859 components: - type: Transform - pos: 38.5,70.5 - parent: 40203 - - uid: 40617 + pos: 48.5,-15.5 + parent: 2 + - uid: 10860 components: - type: Transform - pos: 37.5,70.5 - parent: 40203 - - uid: 40618 + pos: 48.5,-14.5 + parent: 2 + - uid: 10861 components: - type: Transform - pos: 39.5,69.5 - parent: 40203 - - uid: 40619 + pos: 50.5,-10.5 + parent: 2 + - uid: 10862 components: - type: Transform - pos: 39.5,70.5 - parent: 40203 - - uid: 40620 + pos: 48.5,-10.5 + parent: 2 + - uid: 10863 components: - type: Transform - pos: 32.5,71.5 - parent: 40203 - - uid: 40621 + pos: 54.5,-10.5 + parent: 2 + - uid: 10864 components: - type: Transform - pos: 46.5,76.5 - parent: 40203 - - uid: 40622 + pos: 53.5,-10.5 + parent: 2 + - uid: 10865 components: - type: Transform - pos: 45.5,76.5 - parent: 40203 - - uid: 40623 + pos: 79.5,-29.5 + parent: 2 + - uid: 10866 components: - type: Transform - pos: 44.5,76.5 - parent: 40203 - - uid: 40624 + pos: 54.5,-12.5 + parent: 2 + - uid: 10867 components: - type: Transform - pos: 43.5,76.5 - parent: 40203 - - uid: 40625 + pos: 54.5,-11.5 + parent: 2 + - uid: 10868 components: - type: Transform - pos: 43.5,77.5 - parent: 40203 - - uid: 40626 + pos: -116.5,1.5 + parent: 2 + - uid: 10869 components: - type: Transform - pos: 43.5,78.5 - parent: 40203 - - uid: 40627 + pos: -116.5,0.5 + parent: 2 + - uid: 10870 components: - type: Transform - pos: 42.5,78.5 - parent: 40203 - - uid: 40628 + pos: -116.5,-0.5 + parent: 2 + - uid: 10871 components: - type: Transform - pos: 41.5,78.5 - parent: 40203 - - uid: 40629 + pos: -23.5,59.5 + parent: 2 + - uid: 10872 components: - type: Transform - pos: 43.5,79.5 - parent: 40203 - - uid: 40630 + pos: 5.5,-23.5 + parent: 2 + - uid: 10873 components: - type: Transform - pos: 43.5,80.5 - parent: 40203 - - uid: 40631 + pos: 6.5,-24.5 + parent: 2 + - uid: 10874 components: - type: Transform - pos: 43.5,82.5 - parent: 40203 - - uid: 40632 + pos: 5.5,-22.5 + parent: 2 + - uid: 10875 components: - type: Transform - pos: 43.5,81.5 - parent: 40203 - - uid: 40633 + pos: -5.5,20.5 + parent: 2 + - uid: 10876 components: - type: Transform - pos: 39.5,75.5 - parent: 40203 - - uid: 40634 + pos: -24.5,59.5 + parent: 2 + - uid: 10877 components: - type: Transform - pos: 39.5,74.5 - parent: 40203 - - uid: 40635 + pos: -5.5,19.5 + parent: 2 + - uid: 10878 components: - type: Transform - pos: 39.5,73.5 - parent: 40203 - - uid: 40636 + pos: 6.5,-23.5 + parent: 2 + - uid: 10879 components: - type: Transform - pos: 38.5,73.5 - parent: 40203 - - uid: 40637 + pos: -5.5,22.5 + parent: 2 + - uid: 10880 components: - type: Transform - pos: 37.5,73.5 - parent: 40203 - - uid: 40638 + pos: -18.5,56.5 + parent: 2 + - uid: 10881 components: - type: Transform - pos: 40.5,73.5 - parent: 40203 - - uid: 40639 + pos: -18.5,59.5 + parent: 2 + - uid: 10882 components: - type: Transform - pos: 37.5,75.5 - parent: 40203 - - uid: 40640 + pos: -18.5,58.5 + parent: 2 + - uid: 10883 components: - type: Transform - pos: 37.5,76.5 - parent: 40203 - - uid: 40641 + pos: -18.5,55.5 + parent: 2 + - uid: 10884 components: - type: Transform - pos: 37.5,77.5 - parent: 40203 - - uid: 40642 + pos: -15.5,38.5 + parent: 2 + - uid: 10885 components: - type: Transform - pos: 37.5,78.5 - parent: 40203 - - uid: 40643 + pos: -53.5,-8.5 + parent: 2 + - uid: 10886 components: - type: Transform - pos: 37.5,79.5 - parent: 40203 - - uid: 40644 + pos: -53.5,-7.5 + parent: 2 + - uid: 10887 components: - type: Transform - pos: 36.5,60.5 - parent: 40203 - - uid: 40645 + pos: -52.5,-8.5 + parent: 2 + - uid: 10888 components: - type: Transform - pos: 36.5,59.5 - parent: 40203 - - uid: 40646 + pos: -52.5,-9.5 + parent: 2 + - uid: 10889 components: - type: Transform - pos: 36.5,58.5 - parent: 40203 - - uid: 40647 + pos: -53.5,-6.5 + parent: 2 + - uid: 10890 components: - type: Transform - pos: 37.5,80.5 - parent: 40203 - - uid: 40648 + pos: -53.5,-5.5 + parent: 2 + - uid: 10891 components: - type: Transform - pos: 37.5,74.5 - parent: 40203 - - uid: 40649 + pos: -15.5,37.5 + parent: 2 + - uid: 10892 components: - type: Transform - pos: 59.5,47.5 - parent: 40203 - - uid: 40650 + pos: -15.5,36.5 + parent: 2 + - uid: 10893 components: - type: Transform - pos: 59.5,48.5 - parent: 40203 - - uid: 40651 + pos: -103.5,42.5 + parent: 2 + - uid: 10894 components: - type: Transform - pos: 58.5,48.5 - parent: 40203 - - uid: 40652 + pos: -105.5,42.5 + parent: 2 + - uid: 10895 components: - type: Transform - pos: 57.5,48.5 - parent: 40203 - - uid: 40653 + pos: -106.5,42.5 + parent: 2 + - uid: 10896 components: - type: Transform - pos: 56.5,48.5 - parent: 40203 - - uid: 40654 + pos: -107.5,42.5 + parent: 2 + - uid: 10897 components: - type: Transform - pos: 55.5,48.5 - parent: 40203 - - uid: 40655 + pos: -104.5,42.5 + parent: 2 + - uid: 10898 components: - type: Transform - pos: 54.5,48.5 - parent: 40203 - - uid: 40656 + pos: -108.5,42.5 + parent: 2 + - uid: 10899 components: - type: Transform - pos: 53.5,48.5 - parent: 40203 - - uid: 40657 + pos: -106.5,43.5 + parent: 2 + - uid: 10900 components: - type: Transform - pos: 52.5,48.5 - parent: 40203 - - uid: 40658 + pos: -106.5,44.5 + parent: 2 + - uid: 10901 components: - type: Transform - pos: 49.5,46.5 - parent: 40203 - - uid: 40659 + pos: 53.5,-15.5 + parent: 2 + - uid: 40785 components: - type: Transform - pos: 49.5,45.5 - parent: 40203 - - uid: 40660 + pos: 69.5,61.5 + parent: 40599 + - uid: 40786 components: - type: Transform - pos: 49.5,44.5 - parent: 40203 - - uid: 40661 + pos: 68.5,61.5 + parent: 40599 + - uid: 40787 components: - type: Transform - pos: 48.5,44.5 - parent: 40203 - - uid: 40662 + pos: 67.5,61.5 + parent: 40599 + - uid: 40788 components: - type: Transform - pos: 48.5,43.5 - parent: 40203 - - uid: 40663 + pos: 67.5,62.5 + parent: 40599 + - uid: 40789 components: - type: Transform - pos: 47.5,43.5 - parent: 40203 - - uid: 40664 + pos: 67.5,60.5 + parent: 40599 + - uid: 40790 components: - type: Transform - pos: 47.5,42.5 - parent: 40203 - - uid: 40665 + pos: 67.5,58.5 + parent: 40599 + - uid: 40791 components: - type: Transform - pos: 47.5,41.5 - parent: 40203 - - uid: 40666 + pos: 67.5,59.5 + parent: 40599 + - uid: 40792 components: - type: Transform - pos: 47.5,40.5 - parent: 40203 - - uid: 40667 + pos: 67.5,57.5 + parent: 40599 + - uid: 40793 components: - type: Transform - pos: 47.5,38.5 - parent: 40203 - - uid: 40668 + pos: 68.5,57.5 + parent: 40599 + - uid: 40794 components: - type: Transform - pos: 47.5,39.5 - parent: 40203 - - uid: 40669 + pos: 69.5,57.5 + parent: 40599 + - uid: 40795 components: - type: Transform - pos: 47.5,37.5 - parent: 40203 - - uid: 40670 + pos: 70.5,57.5 + parent: 40599 + - uid: 40796 components: - type: Transform - pos: 48.5,37.5 - parent: 40203 - - uid: 40671 + pos: 70.5,56.5 + parent: 40599 + - uid: 40797 components: - type: Transform - pos: 48.5,36.5 - parent: 40203 - - uid: 40672 + pos: 70.5,55.5 + parent: 40599 + - uid: 40798 components: - type: Transform - pos: 49.5,36.5 - parent: 40203 - - uid: 40673 + pos: 70.5,54.5 + parent: 40599 + - uid: 40799 components: - type: Transform - pos: 49.5,35.5 - parent: 40203 - - uid: 40674 + pos: 70.5,53.5 + parent: 40599 + - uid: 40800 components: - type: Transform - pos: 50.5,35.5 - parent: 40203 - - uid: 40675 + pos: 70.5,52.5 + parent: 40599 + - uid: 40801 components: - type: Transform - pos: 50.5,44.5 - parent: 40203 - - uid: 40676 + pos: 71.5,52.5 + parent: 40599 + - uid: 40802 components: - type: Transform - pos: 52.5,44.5 - parent: 40203 - - uid: 40677 + pos: 72.5,52.5 + parent: 40599 + - uid: 40803 components: - type: Transform - pos: 51.5,44.5 - parent: 40203 - - uid: 40678 + pos: 72.5,53.5 + parent: 40599 + - uid: 40804 components: - type: Transform - pos: 53.5,44.5 - parent: 40203 - - uid: 40679 + pos: 72.5,54.5 + parent: 40599 + - uid: 40805 components: - type: Transform - pos: 54.5,44.5 - parent: 40203 - - uid: 40680 + pos: 72.5,55.5 + parent: 40599 + - uid: 40806 components: - type: Transform - pos: 55.5,44.5 - parent: 40203 - - uid: 40681 + pos: 70.5,58.5 + parent: 40599 + - uid: 40807 components: - type: Transform - pos: 56.5,44.5 - parent: 40203 - - uid: 40682 + pos: 75.5,78.5 + parent: 40599 + - uid: 40808 components: - type: Transform - pos: 56.5,43.5 - parent: 40203 - - uid: 40683 + pos: 74.5,78.5 + parent: 40599 + - uid: 40809 components: - type: Transform - pos: 57.5,43.5 - parent: 40203 - - uid: 40684 + pos: 74.5,77.5 + parent: 40599 + - uid: 40810 components: - type: Transform - pos: 57.5,42.5 - parent: 40203 - - uid: 40685 + pos: 73.5,77.5 + parent: 40599 + - uid: 40811 components: - type: Transform - pos: 57.5,41.5 - parent: 40203 - - uid: 40686 + pos: 72.5,77.5 + parent: 40599 + - uid: 40812 components: - type: Transform - pos: 57.5,41.5 - parent: 40203 - - uid: 40687 + pos: 72.5,76.5 + parent: 40599 + - uid: 40813 components: - type: Transform - pos: 57.5,40.5 - parent: 40203 - - uid: 40688 + pos: 72.5,75.5 + parent: 40599 + - uid: 40814 components: - type: Transform - pos: 57.5,39.5 - parent: 40203 - - uid: 40689 + pos: 73.5,75.5 + parent: 40599 + - uid: 40815 components: - type: Transform - pos: 57.5,38.5 - parent: 40203 - - uid: 40690 + pos: 73.5,74.5 + parent: 40599 + - uid: 40816 components: - type: Transform - pos: 57.5,37.5 - parent: 40203 - - uid: 40691 + pos: 73.5,73.5 + parent: 40599 + - uid: 40817 components: - type: Transform - pos: 56.5,37.5 - parent: 40203 - - uid: 40692 + pos: 73.5,72.5 + parent: 40599 + - uid: 40818 components: - type: Transform - pos: 56.5,36.5 - parent: 40203 - - uid: 40693 + pos: 70.5,70.5 + parent: 40599 + - uid: 40819 components: - type: Transform - pos: 55.5,36.5 - parent: 40203 - - uid: 40694 + pos: 69.5,70.5 + parent: 40599 + - uid: 40820 components: - type: Transform - pos: 55.5,35.5 - parent: 40203 - - uid: 40695 + pos: 68.5,70.5 + parent: 40599 + - uid: 40821 components: - type: Transform - pos: 54.5,35.5 - parent: 40203 - - uid: 40696 + pos: 68.5,72.5 + parent: 40599 + - uid: 40822 components: - type: Transform - pos: 37.5,81.5 - parent: 40203 - - uid: 40697 + pos: 68.5,73.5 + parent: 40599 + - uid: 40823 components: - type: Transform - pos: 53.5,79.5 - parent: 40203 - - uid: 40698 + pos: 68.5,74.5 + parent: 40599 + - uid: 40824 components: - type: Transform - pos: 45.5,56.5 - parent: 40203 - - uid: 40699 + pos: 68.5,75.5 + parent: 40599 + - uid: 40825 components: - type: Transform - pos: 46.5,56.5 - parent: 40203 - - uid: 40700 + pos: 68.5,71.5 + parent: 40599 + - uid: 40826 components: - type: Transform - pos: 48.5,54.5 - parent: 40203 - - uid: 40701 + pos: 67.5,75.5 + parent: 40599 + - uid: 40827 components: - type: Transform - pos: 49.5,54.5 - parent: 40203 - - uid: 40702 + pos: 66.5,75.5 + parent: 40599 + - uid: 40828 components: - type: Transform - pos: 50.5,54.5 - parent: 40203 - - uid: 40703 + pos: 64.5,75.5 + parent: 40599 + - uid: 40829 components: - type: Transform - pos: 44.5,81.5 - parent: 40203 - - uid: 40704 + pos: 63.5,75.5 + parent: 40599 + - uid: 40830 components: - type: Transform - pos: 45.5,82.5 - parent: 40203 - - uid: 40705 + pos: 62.5,75.5 + parent: 40599 + - uid: 40831 components: - type: Transform - pos: 45.5,81.5 - parent: 40203 - - uid: 40706 + pos: 61.5,75.5 + parent: 40599 + - uid: 40832 components: - type: Transform - pos: 30.5,71.5 - parent: 40203 - - uid: 40707 + pos: 60.5,75.5 + parent: 40599 + - uid: 40833 components: - type: Transform - pos: 29.5,71.5 - parent: 40203 - - uid: 40708 + pos: 59.5,75.5 + parent: 40599 + - uid: 40834 components: - type: Transform - pos: 31.5,71.5 - parent: 40203 - - uid: 40709 + pos: 65.5,75.5 + parent: 40599 + - uid: 40835 components: - type: Transform - pos: 36.5,70.5 - parent: 40203 - - uid: 45023 + pos: 60.5,76.5 + parent: 40599 + - uid: 40836 components: - type: Transform - pos: 5.5,3.5 - parent: 44970 - - uid: 45024 + pos: 60.5,77.5 + parent: 40599 + - uid: 40837 components: - type: Transform - pos: -3.5,-1.5 - parent: 44970 - - uid: 45025 + pos: 63.5,76.5 + parent: 40599 + - uid: 40838 components: - type: Transform - pos: 5.5,6.5 - parent: 44970 - - uid: 45026 + pos: 63.5,77.5 + parent: 40599 + - uid: 40839 components: - type: Transform - pos: 6.5,6.5 - parent: 44970 - - uid: 45027 + pos: 66.5,76.5 + parent: 40599 + - uid: 40840 components: - type: Transform - pos: 6.5,5.5 - parent: 44970 - - uid: 45028 + pos: 66.5,77.5 + parent: 40599 + - uid: 40841 components: - type: Transform - pos: 6.5,7.5 - parent: 44970 - - uid: 45029 + pos: 69.5,76.5 + parent: 40599 + - uid: 40842 components: - type: Transform - pos: 6.5,4.5 - parent: 44970 - - uid: 45030 + pos: 69.5,77.5 + parent: 40599 + - uid: 40843 components: - type: Transform - pos: 6.5,3.5 - parent: 44970 - - uid: 45031 + pos: 54.5,80.5 + parent: 40599 + - uid: 40844 components: - type: Transform - pos: 6.5,2.5 - parent: 44970 - - uid: 45032 + pos: 54.5,79.5 + parent: 40599 + - uid: 40845 components: - type: Transform - pos: -5.5,6.5 - parent: 44970 - - uid: 45033 + pos: 55.5,79.5 + parent: 40599 + - uid: 40846 components: - type: Transform - pos: -4.5,6.5 - parent: 44970 - - uid: 45034 + pos: 56.5,79.5 + parent: 40599 + - uid: 40847 components: - type: Transform - pos: -4.5,7.5 - parent: 44970 - - uid: 45035 + pos: 56.5,80.5 + parent: 40599 + - uid: 40848 components: - type: Transform - pos: -4.5,8.5 - parent: 44970 - - uid: 45036 + pos: 56.5,81.5 + parent: 40599 + - uid: 40849 components: - type: Transform - pos: -3.5,8.5 - parent: 44970 - - uid: 45037 + pos: 57.5,81.5 + parent: 40599 + - uid: 40850 components: - type: Transform - pos: -2.5,8.5 - parent: 44970 - - uid: 45038 + pos: 57.5,81.5 + parent: 40599 + - uid: 40851 components: - type: Transform - pos: -1.5,8.5 - parent: 44970 - - uid: 45039 + pos: 58.5,81.5 + parent: 40599 + - uid: 40852 components: - type: Transform - pos: -0.5,8.5 - parent: 44970 - - uid: 45040 + pos: 44.5,56.5 + parent: 40599 + - uid: 40853 components: - type: Transform - pos: 0.5,8.5 - parent: 44970 - - uid: 45041 + pos: 53.5,78.5 + parent: 40599 + - uid: 40854 components: - type: Transform - pos: -4.5,5.5 - parent: 44970 - - uid: 45042 + pos: 53.5,77.5 + parent: 40599 + - uid: 40855 components: - type: Transform - pos: -4.5,4.5 - parent: 44970 - - uid: 45043 + pos: 52.5,77.5 + parent: 40599 + - uid: 40856 components: - type: Transform - pos: -4.5,3.5 - parent: 44970 - - uid: 45044 + pos: 51.5,77.5 + parent: 40599 + - uid: 40857 components: - type: Transform - pos: -4.5,2.5 - parent: 44970 - - uid: 45045 + pos: 50.5,77.5 + parent: 40599 + - uid: 40858 components: - type: Transform - pos: -4.5,1.5 - parent: 44970 - - uid: 45046 + pos: 50.5,72.5 + parent: 40599 + - uid: 40859 components: - type: Transform - pos: -4.5,0.5 - parent: 44970 - - uid: 45047 + pos: 50.5,74.5 + parent: 40599 + - uid: 40860 components: - type: Transform - pos: -4.5,-0.5 - parent: 44970 - - uid: 45048 + pos: 50.5,75.5 + parent: 40599 + - uid: 40861 components: - type: Transform - pos: -4.5,-1.5 - parent: 44970 - - uid: 45049 + pos: 50.5,76.5 + parent: 40599 + - uid: 40862 components: - type: Transform - pos: -2.5,-1.5 - parent: 44970 - - uid: 45050 + pos: 50.5,73.5 + parent: 40599 + - uid: 40863 components: - type: Transform - pos: 4.5,3.5 - parent: 44970 - - uid: 45051 + pos: 50.5,71.5 + parent: 40599 + - uid: 40864 components: - type: Transform - pos: 3.5,3.5 - parent: 44970 - - uid: 45052 + pos: 50.5,71.5 + parent: 40599 + - uid: 40865 components: - type: Transform - pos: 2.5,3.5 - parent: 44970 - - uid: 45053 + pos: 49.5,71.5 + parent: 40599 + - uid: 40866 components: - type: Transform - pos: 1.5,3.5 - parent: 44970 - - uid: 45054 + pos: 58.5,75.5 + parent: 40599 + - uid: 40867 components: - type: Transform - pos: 0.5,3.5 - parent: 44970 - - uid: 45055 + pos: 57.5,75.5 + parent: 40599 + - uid: 40868 components: - type: Transform - pos: -0.5,3.5 - parent: 44970 - - uid: 45056 + pos: 56.5,75.5 + parent: 40599 + - uid: 40869 components: - type: Transform - pos: -1.5,3.5 - parent: 44970 - - uid: 45057 + pos: 55.5,75.5 + parent: 40599 + - uid: 40870 components: - type: Transform - pos: 1.5,8.5 - parent: 44970 - - uid: 45058 + pos: 68.5,69.5 + parent: 40599 + - uid: 40871 components: - type: Transform - pos: 2.5,8.5 - parent: 44970 - - uid: 45059 + pos: 68.5,67.5 + parent: 40599 + - uid: 40872 components: - type: Transform - pos: 1.5,9.5 - parent: 44970 - - uid: 45060 + pos: 68.5,68.5 + parent: 40599 + - uid: 40873 components: - type: Transform - pos: 1.5,10.5 - parent: 44970 - - uid: 45061 + pos: 68.5,66.5 + parent: 40599 + - uid: 40874 components: - type: Transform - pos: 1.5,11.5 - parent: 44970 - - uid: 45062 + pos: 67.5,66.5 + parent: 40599 + - uid: 40875 components: - type: Transform - pos: 1.5,12.5 - parent: 44970 - - uid: 45063 + pos: 66.5,66.5 + parent: 40599 + - uid: 40876 components: - type: Transform - pos: -2.5,12.5 - parent: 44970 - - uid: 45064 + pos: 65.5,66.5 + parent: 40599 + - uid: 40877 components: - type: Transform - pos: -2.5,11.5 - parent: 44970 - - uid: 45065 + pos: 64.5,66.5 + parent: 40599 + - uid: 40878 components: - type: Transform - pos: -2.5,10.5 - parent: 44970 - - uid: 45066 + pos: 61.5,67.5 + parent: 40599 + - uid: 40879 components: - type: Transform - pos: -2.5,9.5 - parent: 44970 -- proto: CableApcStack - entities: - - uid: 10632 + pos: 61.5,68.5 + parent: 40599 + - uid: 40880 components: - type: Transform - pos: -1.4334459,-35.49298 - parent: 2 - - uid: 10633 + pos: 61.5,69.5 + parent: 40599 + - uid: 40881 components: - type: Transform - pos: 27.425108,-7.653957 - parent: 2 - - uid: 10634 + pos: 61.5,70.5 + parent: 40599 + - uid: 40882 components: - type: Transform - pos: -13.328497,-48.471252 - parent: 2 - - uid: 10635 + pos: 60.5,70.5 + parent: 40599 + - uid: 40883 components: - type: Transform - pos: -33.446835,-43.597794 - parent: 2 - - uid: 10636 + pos: 59.5,70.5 + parent: 40599 + - uid: 40884 components: - type: Transform - pos: 18.389523,6.0674553 - parent: 2 - - uid: 10637 + pos: 58.5,70.5 + parent: 40599 + - uid: 40885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.3653574,-44.426064 - parent: 2 -- proto: CableApcStack1 - entities: - - uid: 10638 + pos: 57.5,70.5 + parent: 40599 + - uid: 40886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.312685,-12.902496 - parent: 2 - - uid: 10639 + pos: 56.5,70.5 + parent: 40599 + - uid: 40887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.10956,-13.527496 - parent: 2 - - uid: 10640 + pos: 55.5,70.5 + parent: 40599 + - uid: 40888 components: - type: Transform - pos: 11.428396,57.49582 - parent: 2 - - uid: 10641 + pos: 62.5,70.5 + parent: 40599 + - uid: 40889 components: - type: Transform - pos: 19.504272,57.48887 - parent: 2 - - uid: 10642 + pos: 63.5,70.5 + parent: 40599 + - uid: 40890 components: - type: Transform - pos: -37.236393,-45.272995 - parent: 2 - - uid: 10643 + pos: 64.5,70.5 + parent: 40599 + - uid: 40891 components: - type: Transform - pos: -37.673893,-44.66362 - parent: 2 - - uid: 10644 + pos: 65.5,70.5 + parent: 40599 + - uid: 40892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.541374,66.59528 - parent: 2 - - uid: 10645 + pos: 57.5,64.5 + parent: 40599 + - uid: 40893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.4945,65.5484 - parent: 2 - - uid: 10646 + pos: 57.5,63.5 + parent: 40599 + - uid: 40894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.52575,64.4859 - parent: 2 - - uid: 10647 + pos: 57.5,62.5 + parent: 40599 + - uid: 40895 components: - type: Transform - pos: -33.45004,25.487164 - parent: 2 - - uid: 10648 + pos: 57.5,61.5 + parent: 40599 + - uid: 40896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.609722,26.643414 - parent: 2 - - uid: 10649 + pos: 56.5,61.5 + parent: 40599 + - uid: 40897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.684414,25.549664 - parent: 2 - - uid: 10650 + pos: 57.5,60.5 + parent: 40599 + - uid: 40898 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.628033,25.596539 - parent: 2 - - uid: 10651 + pos: 58.5,60.5 + parent: 40599 + - uid: 40899 components: - type: Transform - pos: -44.565533,24.659039 - parent: 2 - - uid: 10652 + pos: 60.5,60.5 + parent: 40599 + - uid: 40900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.487408,25.705914 - parent: 2 - - uid: 45009 + pos: 61.5,60.5 + parent: 40599 + - uid: 40901 components: - type: Transform - parent: 45007 - - type: Stack - count: 2 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CableApcStack10 - entities: - - uid: 10653 + pos: 59.5,60.5 + parent: 40599 + - uid: 40902 components: - type: Transform - pos: 27.501957,-5.6630416 - parent: 2 - - uid: 10654 + pos: 61.5,61.5 + parent: 40599 + - uid: 40903 components: - type: Transform - pos: -6.547159,41.878628 - parent: 2 - - uid: 10655 + pos: 57.5,58.5 + parent: 40599 + - uid: 40904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.33034,-47.45382 - parent: 2 - - uid: 10656 + pos: 57.5,57.5 + parent: 40599 + - uid: 40905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.470966,-47.656944 - parent: 2 - - uid: 10657 + pos: 57.5,56.5 + parent: 40599 + - uid: 40906 components: - type: Transform - pos: 40.551544,-49.438538 - parent: 2 -- proto: CableHV - entities: - - uid: 10658 + pos: 57.5,55.5 + parent: 40599 + - uid: 40907 components: - type: Transform - pos: -41.5,-51.5 - parent: 2 - - uid: 10659 + pos: 66.5,58.5 + parent: 40599 + - uid: 40908 components: - type: Transform - pos: -33.5,-64.5 - parent: 2 - - uid: 10660 + pos: 65.5,58.5 + parent: 40599 + - uid: 40909 components: - type: Transform - pos: 70.5,13.5 - parent: 2 - - uid: 10661 + pos: 64.5,58.5 + parent: 40599 + - uid: 40910 components: - type: Transform - pos: -41.5,62.5 - parent: 2 - - uid: 10662 + pos: 63.5,58.5 + parent: 40599 + - uid: 40911 components: - type: Transform - pos: -40.5,62.5 - parent: 2 - - uid: 10663 + pos: 62.5,58.5 + parent: 40599 + - uid: 40912 components: - type: Transform - pos: -38.5,61.5 - parent: 2 - - uid: 10664 + pos: 62.5,57.5 + parent: 40599 + - uid: 40913 components: - type: Transform - pos: -39.5,62.5 - parent: 2 - - uid: 10665 + pos: 62.5,56.5 + parent: 40599 + - uid: 40914 components: - type: Transform - pos: 72.5,13.5 - parent: 2 - - uid: 10666 + pos: 62.5,55.5 + parent: 40599 + - uid: 40915 components: - type: Transform - pos: 74.5,18.5 - parent: 2 - - uid: 10667 + pos: 62.5,54.5 + parent: 40599 + - uid: 40916 components: - type: Transform - pos: 69.5,-29.5 - parent: 2 - - uid: 10668 + pos: 62.5,53.5 + parent: 40599 + - uid: 40917 components: - type: Transform - pos: 68.5,-29.5 - parent: 2 - - uid: 10669 + pos: 61.5,53.5 + parent: 40599 + - uid: 40918 components: - type: Transform - pos: 0.5,14.5 - parent: 2 - - uid: 10670 + pos: 61.5,52.5 + parent: 40599 + - uid: 40919 components: - type: Transform - pos: 1.5,15.5 - parent: 2 - - uid: 10671 + pos: 61.5,51.5 + parent: 40599 + - uid: 40920 components: - type: Transform - pos: 0.5,13.5 - parent: 2 - - uid: 10672 + pos: 61.5,50.5 + parent: 40599 + - uid: 40921 components: - type: Transform - pos: 0.5,15.5 - parent: 2 - - uid: 10673 + pos: 61.5,49.5 + parent: 40599 + - uid: 40922 components: - type: Transform - pos: 72.5,-29.5 - parent: 2 - - uid: 10674 + pos: 62.5,49.5 + parent: 40599 + - uid: 40923 components: - type: Transform - pos: -12.5,-48.5 - parent: 2 - - uid: 10675 + pos: 63.5,49.5 + parent: 40599 + - uid: 40924 components: - type: Transform - pos: 59.5,-5.5 - parent: 2 - - uid: 10676 + pos: 64.5,49.5 + parent: 40599 + - uid: 40925 components: - type: Transform - pos: 59.5,-4.5 - parent: 2 - - uid: 10677 + pos: 65.5,49.5 + parent: 40599 + - uid: 40926 components: - type: Transform - pos: -9.5,-45.5 - parent: 2 - - uid: 10678 + pos: 58.5,55.5 + parent: 40599 + - uid: 40927 components: - type: Transform - pos: -3.5,-57.5 - parent: 2 - - uid: 10679 + pos: 55.5,52.5 + parent: 40599 + - uid: 40928 components: - type: Transform - pos: -9.5,-47.5 - parent: 2 - - uid: 10680 + pos: 54.5,52.5 + parent: 40599 + - uid: 40929 components: - type: Transform - pos: -9.5,-48.5 - parent: 2 - - uid: 10681 + pos: 53.5,52.5 + parent: 40599 + - uid: 40930 components: - type: Transform - pos: -9.5,-49.5 - parent: 2 - - uid: 10682 + pos: 51.5,52.5 + parent: 40599 + - uid: 40931 components: - type: Transform - pos: -9.5,-50.5 - parent: 2 - - uid: 10683 + pos: 52.5,52.5 + parent: 40599 + - uid: 40932 components: - type: Transform - pos: -9.5,-51.5 - parent: 2 - - uid: 10684 + pos: 51.5,53.5 + parent: 40599 + - uid: 40933 components: - type: Transform - pos: -9.5,-46.5 - parent: 2 - - uid: 10685 + pos: 51.5,54.5 + parent: 40599 + - uid: 40934 components: - type: Transform - pos: -14.5,-48.5 - parent: 2 - - uid: 10686 + pos: 51.5,55.5 + parent: 40599 + - uid: 40935 components: - type: Transform - pos: -13.5,-48.5 - parent: 2 - - uid: 10687 + pos: 51.5,56.5 + parent: 40599 + - uid: 40936 components: - type: Transform - pos: -16.5,-49.5 - parent: 2 - - uid: 10688 + pos: 56.5,52.5 + parent: 40599 + - uid: 40937 components: - type: Transform - pos: 19.5,54.5 - parent: 2 - - uid: 10689 + pos: 57.5,52.5 + parent: 40599 + - uid: 40938 components: - type: Transform - pos: 19.5,55.5 - parent: 2 - - uid: 10690 + pos: 58.5,52.5 + parent: 40599 + - uid: 40939 components: - type: Transform - pos: 19.5,56.5 - parent: 2 - - uid: 10691 + pos: 59.5,52.5 + parent: 40599 + - uid: 40940 components: - type: Transform - pos: 18.5,57.5 - parent: 2 - - uid: 10692 + pos: 46.5,67.5 + parent: 40599 + - uid: 40941 components: - type: Transform - pos: 17.5,57.5 - parent: 2 - - uid: 10693 + pos: 46.5,66.5 + parent: 40599 + - uid: 40942 components: - type: Transform - pos: 16.5,57.5 - parent: 2 - - uid: 10694 + pos: 47.5,66.5 + parent: 40599 + - uid: 40943 components: - type: Transform - pos: 15.5,57.5 - parent: 2 - - uid: 10695 + pos: 48.5,66.5 + parent: 40599 + - uid: 40944 components: - type: Transform - pos: 14.5,57.5 - parent: 2 - - uid: 10696 + pos: 50.5,66.5 + parent: 40599 + - uid: 40945 components: - type: Transform - pos: 13.5,57.5 - parent: 2 - - uid: 10697 + pos: 51.5,66.5 + parent: 40599 + - uid: 40946 components: - type: Transform - pos: 12.5,57.5 - parent: 2 - - uid: 10698 + pos: 52.5,66.5 + parent: 40599 + - uid: 40947 components: - type: Transform - pos: 10.5,57.5 - parent: 2 - - uid: 10699 + pos: 53.5,66.5 + parent: 40599 + - uid: 40948 components: - type: Transform - pos: 9.5,57.5 - parent: 2 - - uid: 10700 + pos: 54.5,66.5 + parent: 40599 + - uid: 40949 components: - type: Transform - pos: 8.5,57.5 - parent: 2 - - uid: 10701 + pos: 55.5,66.5 + parent: 40599 + - uid: 40950 components: - type: Transform - pos: 7.5,57.5 - parent: 2 - - uid: 10702 + pos: 49.5,66.5 + parent: 40599 + - uid: 40951 components: - type: Transform - pos: 6.5,57.5 - parent: 2 - - uid: 10703 + pos: 51.5,65.5 + parent: 40599 + - uid: 40952 components: - type: Transform - pos: 5.5,57.5 - parent: 2 - - uid: 10704 + pos: 51.5,63.5 + parent: 40599 + - uid: 40953 components: - type: Transform - pos: 4.5,57.5 - parent: 2 - - uid: 10705 + pos: 51.5,64.5 + parent: 40599 + - uid: 40954 components: - type: Transform - pos: 3.5,57.5 - parent: 2 - - uid: 10706 + pos: 51.5,62.5 + parent: 40599 + - uid: 40955 components: - type: Transform - pos: 18.5,54.5 - parent: 2 - - uid: 10707 + pos: 51.5,61.5 + parent: 40599 + - uid: 40956 components: - type: Transform - pos: 18.5,53.5 - parent: 2 - - uid: 10708 + pos: 50.5,61.5 + parent: 40599 + - uid: 40957 components: - type: Transform - pos: -11.5,-6.5 - parent: 2 - - uid: 10709 + pos: 49.5,61.5 + parent: 40599 + - uid: 40958 components: - type: Transform - pos: -14.5,-6.5 - parent: 2 - - uid: 10710 + pos: 52.5,61.5 + parent: 40599 + - uid: 40959 components: - type: Transform - pos: -13.5,-6.5 - parent: 2 - - uid: 10711 + pos: 44.5,66.5 + parent: 40599 + - uid: 40960 components: - type: Transform - pos: -16.5,-6.5 - parent: 2 - - uid: 10712 + pos: 43.5,66.5 + parent: 40599 + - uid: 40961 components: - type: Transform - pos: -15.5,-6.5 - parent: 2 - - uid: 10713 + pos: 42.5,66.5 + parent: 40599 + - uid: 40962 components: - type: Transform - pos: -12.5,-6.5 - parent: 2 - - uid: 10714 + pos: 45.5,66.5 + parent: 40599 + - uid: 40963 components: - type: Transform - pos: 13.5,-11.5 - parent: 2 - - uid: 10715 + pos: 41.5,66.5 + parent: 40599 + - uid: 40964 components: - type: Transform - pos: 14.5,-13.5 - parent: 2 - - uid: 10716 + pos: 40.5,66.5 + parent: 40599 + - uid: 40965 components: - type: Transform - pos: 14.5,-12.5 - parent: 2 - - uid: 10717 + pos: 39.5,66.5 + parent: 40599 + - uid: 40966 components: - type: Transform - pos: 14.5,-11.5 - parent: 2 - - uid: 10718 + pos: 38.5,66.5 + parent: 40599 + - uid: 40967 components: - type: Transform - pos: 12.5,-11.5 - parent: 2 - - uid: 10719 + pos: 36.5,66.5 + parent: 40599 + - uid: 40968 components: - type: Transform - pos: 11.5,-11.5 - parent: 2 - - uid: 10720 + pos: 37.5,66.5 + parent: 40599 + - uid: 40969 components: - type: Transform - pos: 10.5,-11.5 - parent: 2 - - uid: 10721 + pos: 35.5,66.5 + parent: 40599 + - uid: 40970 components: - type: Transform - pos: 9.5,-11.5 - parent: 2 - - uid: 10722 + pos: 34.5,66.5 + parent: 40599 + - uid: 40971 components: - type: Transform - pos: 8.5,-11.5 - parent: 2 - - uid: 10723 + pos: 31.5,66.5 + parent: 40599 + - uid: 40972 components: - type: Transform - pos: 8.5,-12.5 - parent: 2 - - uid: 10724 + pos: 32.5,66.5 + parent: 40599 + - uid: 40973 components: - type: Transform - pos: 8.5,-13.5 - parent: 2 - - uid: 10725 + pos: 30.5,66.5 + parent: 40599 + - uid: 40974 components: - type: Transform - pos: 8.5,-14.5 - parent: 2 - - uid: 10726 + pos: 33.5,66.5 + parent: 40599 + - uid: 40975 components: - type: Transform - pos: 8.5,-15.5 - parent: 2 - - uid: 10727 + pos: 44.5,67.5 + parent: 40599 + - uid: 40976 components: - type: Transform - pos: 8.5,-16.5 - parent: 2 - - uid: 10728 + pos: 44.5,69.5 + parent: 40599 + - uid: 40977 components: - type: Transform - pos: -14.5,-47.5 - parent: 2 - - uid: 10729 + pos: 44.5,70.5 + parent: 40599 + - uid: 40978 components: - type: Transform - pos: -14.5,-46.5 - parent: 2 - - uid: 10730 + pos: 44.5,71.5 + parent: 40599 + - uid: 40979 components: - type: Transform - pos: -14.5,-45.5 - parent: 2 - - uid: 10731 + pos: 44.5,72.5 + parent: 40599 + - uid: 40980 components: - type: Transform - pos: -15.5,-45.5 - parent: 2 - - uid: 10732 + pos: 44.5,73.5 + parent: 40599 + - uid: 40981 components: - type: Transform - pos: -16.5,-45.5 - parent: 2 - - uid: 10733 + pos: 44.5,68.5 + parent: 40599 + - uid: 40982 components: - type: Transform - pos: -13.5,-45.5 - parent: 2 - - uid: 10734 + pos: 35.5,63.5 + parent: 40599 + - uid: 40983 components: - type: Transform - pos: -12.5,-45.5 - parent: 2 - - uid: 10735 + pos: 36.5,63.5 + parent: 40599 + - uid: 40984 components: - type: Transform - pos: -12.5,-44.5 - parent: 2 - - uid: 10736 + pos: 36.5,62.5 + parent: 40599 + - uid: 40985 components: - type: Transform - pos: -16.5,-44.5 - parent: 2 - - uid: 10737 + pos: 36.5,61.5 + parent: 40599 + - uid: 40986 components: - type: Transform - pos: -16.5,-43.5 - parent: 2 - - uid: 10738 + pos: 37.5,61.5 + parent: 40599 + - uid: 40987 components: - type: Transform - pos: -16.5,-42.5 - parent: 2 - - uid: 10739 + pos: 38.5,61.5 + parent: 40599 + - uid: 40988 components: - type: Transform - pos: -12.5,-42.5 - parent: 2 - - uid: 10740 + pos: 39.5,61.5 + parent: 40599 + - uid: 40989 components: - type: Transform - pos: -12.5,-43.5 - parent: 2 - - uid: 10741 + pos: 40.5,61.5 + parent: 40599 + - uid: 40990 components: - type: Transform - pos: -17.5,-45.5 - parent: 2 - - uid: 10742 + pos: 42.5,61.5 + parent: 40599 + - uid: 40991 components: - type: Transform - pos: -18.5,-45.5 - parent: 2 - - uid: 10743 + pos: 43.5,61.5 + parent: 40599 + - uid: 40992 components: - type: Transform - pos: -19.5,-45.5 - parent: 2 - - uid: 10744 + pos: 44.5,61.5 + parent: 40599 + - uid: 40993 components: - type: Transform - pos: -16.5,-41.5 - parent: 2 - - uid: 10745 + pos: 45.5,61.5 + parent: 40599 + - uid: 40994 components: - type: Transform - pos: -16.5,-40.5 - parent: 2 - - uid: 10746 + pos: 41.5,61.5 + parent: 40599 + - uid: 40995 components: - type: Transform - pos: -16.5,-39.5 - parent: 2 - - uid: 10747 + pos: 40.5,60.5 + parent: 40599 + - uid: 40996 components: - type: Transform - pos: -16.5,-38.5 - parent: 2 - - uid: 10748 + pos: 40.5,59.5 + parent: 40599 + - uid: 40997 components: - type: Transform - pos: -12.5,-41.5 - parent: 2 - - uid: 10749 + pos: 41.5,59.5 + parent: 40599 + - uid: 40998 components: - type: Transform - pos: -12.5,-40.5 - parent: 2 - - uid: 10750 + pos: 42.5,59.5 + parent: 40599 + - uid: 40999 components: - type: Transform - pos: -12.5,-39.5 - parent: 2 - - uid: 10751 + pos: 42.5,58.5 + parent: 40599 + - uid: 41000 components: - type: Transform - pos: -12.5,-38.5 - parent: 2 - - uid: 10752 + pos: 42.5,57.5 + parent: 40599 + - uid: 41001 components: - type: Transform - pos: -14.5,-38.5 - parent: 2 - - uid: 10753 + pos: 42.5,56.5 + parent: 40599 + - uid: 41002 components: - type: Transform - pos: -15.5,-38.5 - parent: 2 - - uid: 10754 + pos: 43.5,56.5 + parent: 40599 + - uid: 41003 components: - type: Transform - pos: -15.5,-39.5 - parent: 2 - - uid: 10755 + pos: 35.5,72.5 + parent: 40599 + - uid: 41004 components: - type: Transform - pos: -15.5,-40.5 - parent: 2 - - uid: 10756 + pos: 34.5,72.5 + parent: 40599 + - uid: 41005 components: - type: Transform - pos: -15.5,-41.5 - parent: 2 - - uid: 10757 + pos: 33.5,72.5 + parent: 40599 + - uid: 41006 components: - type: Transform - pos: -13.5,-38.5 - parent: 2 - - uid: 10758 + pos: 33.5,71.5 + parent: 40599 + - uid: 41007 components: - type: Transform - pos: -13.5,-39.5 - parent: 2 - - uid: 10759 + pos: 33.5,70.5 + parent: 40599 + - uid: 41008 components: - type: Transform - pos: -13.5,-40.5 - parent: 2 - - uid: 10760 + pos: 33.5,70.5 + parent: 40599 + - uid: 41009 components: - type: Transform - pos: -13.5,-41.5 - parent: 2 - - uid: 10761 + pos: 33.5,69.5 + parent: 40599 + - uid: 41010 components: - type: Transform - pos: -14.5,-37.5 - parent: 2 - - uid: 10762 + pos: 34.5,70.5 + parent: 40599 + - uid: 41011 components: - type: Transform - pos: -13.5,-36.5 - parent: 2 - - uid: 10763 + pos: 35.5,70.5 + parent: 40599 + - uid: 41012 components: - type: Transform - pos: -12.5,-36.5 - parent: 2 - - uid: 10764 + pos: 38.5,70.5 + parent: 40599 + - uid: 41013 components: - type: Transform - pos: -11.5,-36.5 - parent: 2 - - uid: 10765 + pos: 37.5,70.5 + parent: 40599 + - uid: 41014 components: - type: Transform - pos: -10.5,-36.5 - parent: 2 - - uid: 10766 + pos: 39.5,69.5 + parent: 40599 + - uid: 41015 components: - type: Transform - pos: -9.5,-36.5 - parent: 2 - - uid: 10767 + pos: 39.5,70.5 + parent: 40599 + - uid: 41016 components: - type: Transform - pos: -20.5,-45.5 - parent: 2 - - uid: 10768 + pos: 32.5,71.5 + parent: 40599 + - uid: 41017 components: - type: Transform - pos: -21.5,-45.5 - parent: 2 - - uid: 10769 + pos: 46.5,76.5 + parent: 40599 + - uid: 41018 components: - type: Transform - pos: -22.5,-45.5 - parent: 2 - - uid: 10770 + pos: 45.5,76.5 + parent: 40599 + - uid: 41019 components: - type: Transform - pos: -23.5,-45.5 - parent: 2 - - uid: 10771 + pos: 44.5,76.5 + parent: 40599 + - uid: 41020 components: - type: Transform - pos: -24.5,-45.5 - parent: 2 - - uid: 10772 + pos: 43.5,76.5 + parent: 40599 + - uid: 41021 components: - type: Transform - pos: -25.5,-45.5 - parent: 2 - - uid: 10773 + pos: 43.5,77.5 + parent: 40599 + - uid: 41022 components: - type: Transform - pos: -26.5,-45.5 - parent: 2 - - uid: 10774 + pos: 43.5,78.5 + parent: 40599 + - uid: 41023 components: - type: Transform - pos: -27.5,-45.5 - parent: 2 - - uid: 10775 + pos: 42.5,78.5 + parent: 40599 + - uid: 41024 components: - type: Transform - pos: -28.5,-45.5 - parent: 2 - - uid: 10776 + pos: 41.5,78.5 + parent: 40599 + - uid: 41025 components: - type: Transform - pos: -23.5,-35.5 - parent: 2 - - uid: 10777 + pos: 43.5,79.5 + parent: 40599 + - uid: 41026 components: - type: Transform - pos: -23.5,-36.5 - parent: 2 - - uid: 10778 + pos: 43.5,80.5 + parent: 40599 + - uid: 41027 components: - type: Transform - pos: -23.5,-37.5 - parent: 2 - - uid: 10779 + pos: 43.5,82.5 + parent: 40599 + - uid: 41028 components: - type: Transform - pos: -19.5,-35.5 - parent: 2 - - uid: 10780 + pos: 43.5,81.5 + parent: 40599 + - uid: 41029 components: - type: Transform - pos: -19.5,-36.5 - parent: 2 - - uid: 10781 + pos: 39.5,75.5 + parent: 40599 + - uid: 41030 components: - type: Transform - pos: -19.5,-37.5 - parent: 2 - - uid: 10782 + pos: 39.5,74.5 + parent: 40599 + - uid: 41031 components: - type: Transform - pos: -21.5,-35.5 - parent: 2 - - uid: 10783 + pos: 39.5,73.5 + parent: 40599 + - uid: 41032 components: - type: Transform - pos: -21.5,-37.5 - parent: 2 - - uid: 10784 + pos: 38.5,73.5 + parent: 40599 + - uid: 41033 components: - type: Transform - pos: -21.5,-36.5 - parent: 2 - - uid: 10785 + pos: 37.5,73.5 + parent: 40599 + - uid: 41034 components: - type: Transform - pos: -22.5,-37.5 - parent: 2 - - uid: 10786 + pos: 40.5,73.5 + parent: 40599 + - uid: 41035 components: - type: Transform - pos: -20.5,-44.5 - parent: 2 - - uid: 10787 + pos: 37.5,75.5 + parent: 40599 + - uid: 41036 components: - type: Transform - pos: -20.5,-43.5 - parent: 2 - - uid: 10788 + pos: 37.5,76.5 + parent: 40599 + - uid: 41037 components: - type: Transform - pos: -20.5,-42.5 - parent: 2 - - uid: 10789 + pos: 37.5,77.5 + parent: 40599 + - uid: 41038 components: - type: Transform - pos: -20.5,-41.5 - parent: 2 - - uid: 10790 + pos: 37.5,78.5 + parent: 40599 + - uid: 41039 components: - type: Transform - pos: -20.5,-40.5 - parent: 2 - - uid: 10791 + pos: 37.5,79.5 + parent: 40599 + - uid: 41040 components: - type: Transform - pos: -20.5,-39.5 - parent: 2 - - uid: 10792 + pos: 36.5,60.5 + parent: 40599 + - uid: 41041 components: - type: Transform - pos: -20.5,-38.5 - parent: 2 - - uid: 10793 + pos: 36.5,59.5 + parent: 40599 + - uid: 41042 components: - type: Transform - pos: -28.5,-44.5 - parent: 2 - - uid: 10794 + pos: 36.5,58.5 + parent: 40599 + - uid: 41043 components: - type: Transform - pos: -28.5,-43.5 - parent: 2 - - uid: 10795 + pos: 37.5,80.5 + parent: 40599 + - uid: 41044 components: - type: Transform - pos: -28.5,-42.5 - parent: 2 - - uid: 10796 + pos: 37.5,74.5 + parent: 40599 + - uid: 41045 components: - type: Transform - pos: -27.5,-42.5 - parent: 2 - - uid: 10797 + pos: 59.5,47.5 + parent: 40599 + - uid: 41046 components: - type: Transform - pos: -26.5,-42.5 - parent: 2 - - uid: 10798 + pos: 59.5,48.5 + parent: 40599 + - uid: 41047 components: - type: Transform - pos: -26.5,-41.5 - parent: 2 - - uid: 10799 + pos: 58.5,48.5 + parent: 40599 + - uid: 41048 components: - type: Transform - pos: -9.5,-40.5 - parent: 2 - - uid: 10800 + pos: 57.5,48.5 + parent: 40599 + - uid: 41049 components: - type: Transform - pos: -9.5,-39.5 - parent: 2 - - uid: 10801 + pos: 56.5,48.5 + parent: 40599 + - uid: 41050 components: - type: Transform - pos: -9.5,-38.5 - parent: 2 - - uid: 10802 + pos: 55.5,48.5 + parent: 40599 + - uid: 41051 components: - type: Transform - pos: -9.5,-37.5 - parent: 2 - - uid: 10803 + pos: 54.5,48.5 + parent: 40599 + - uid: 41052 components: - type: Transform - pos: -9.5,-41.5 - parent: 2 - - uid: 10804 + pos: 53.5,48.5 + parent: 40599 + - uid: 41053 components: - type: Transform - pos: -9.5,-42.5 - parent: 2 - - uid: 10805 + pos: 52.5,48.5 + parent: 40599 + - uid: 41054 components: - type: Transform - pos: -9.5,-43.5 - parent: 2 - - uid: 10806 + pos: 49.5,46.5 + parent: 40599 + - uid: 41055 components: - type: Transform - pos: -9.5,-44.5 - parent: 2 - - uid: 10807 + pos: 49.5,45.5 + parent: 40599 + - uid: 41056 components: - type: Transform - pos: -9.5,-52.5 - parent: 2 - - uid: 10808 + pos: 49.5,44.5 + parent: 40599 + - uid: 41057 components: - type: Transform - pos: -8.5,-52.5 - parent: 2 - - uid: 10809 + pos: 48.5,44.5 + parent: 40599 + - uid: 41058 components: - type: Transform - pos: -17.5,-0.5 - parent: 2 - - uid: 10810 + pos: 48.5,43.5 + parent: 40599 + - uid: 41059 components: - type: Transform - pos: -19.5,-0.5 - parent: 2 - - uid: 10811 + pos: 47.5,43.5 + parent: 40599 + - uid: 41060 components: - type: Transform - pos: -19.5,-2.5 - parent: 2 - - uid: 10812 + pos: 47.5,42.5 + parent: 40599 + - uid: 41061 components: - type: Transform - pos: -19.5,-1.5 - parent: 2 - - uid: 10813 + pos: 47.5,41.5 + parent: 40599 + - uid: 41062 components: - type: Transform - pos: -18.5,-0.5 - parent: 2 - - uid: 10814 + pos: 47.5,40.5 + parent: 40599 + - uid: 41063 components: - type: Transform - pos: -14.5,-36.5 - parent: 2 - - uid: 10815 + pos: 47.5,38.5 + parent: 40599 + - uid: 41064 components: - type: Transform - pos: -15.5,-48.5 - parent: 2 - - uid: 10816 + pos: 47.5,39.5 + parent: 40599 + - uid: 41065 components: - type: Transform - pos: -16.5,-48.5 - parent: 2 - - uid: 10817 + pos: 47.5,37.5 + parent: 40599 + - uid: 41066 components: - type: Transform - pos: -16.5,-50.5 - parent: 2 - - uid: 10818 + pos: 48.5,37.5 + parent: 40599 + - uid: 41067 components: - type: Transform - pos: -20.5,-37.5 - parent: 2 - - uid: 10819 + pos: 48.5,36.5 + parent: 40599 + - uid: 41068 components: - type: Transform - pos: -19.5,-4.5 - parent: 2 - - uid: 10820 + pos: 49.5,36.5 + parent: 40599 + - uid: 41069 components: - type: Transform - pos: -19.5,-3.5 - parent: 2 - - uid: 10821 + pos: 49.5,35.5 + parent: 40599 + - uid: 41070 components: - type: Transform - pos: 51.5,-38.5 - parent: 2 - - uid: 10822 + pos: 50.5,35.5 + parent: 40599 + - uid: 41071 components: - type: Transform - pos: 51.5,-37.5 - parent: 2 - - uid: 10823 + pos: 50.5,44.5 + parent: 40599 + - uid: 41072 components: - type: Transform - pos: 51.5,-39.5 - parent: 2 - - uid: 10824 + pos: 52.5,44.5 + parent: 40599 + - uid: 41073 components: - type: Transform - pos: 52.5,-39.5 - parent: 2 - - uid: 10825 + pos: 51.5,44.5 + parent: 40599 + - uid: 41074 components: - type: Transform - pos: -22.5,59.5 - parent: 2 - - uid: 10826 + pos: 53.5,44.5 + parent: 40599 + - uid: 41075 components: - type: Transform - pos: 21.5,24.5 - parent: 2 - - uid: 10827 + pos: 54.5,44.5 + parent: 40599 + - uid: 41076 components: - type: Transform - pos: 21.5,25.5 - parent: 2 - - uid: 10828 + pos: 55.5,44.5 + parent: 40599 + - uid: 41077 components: - type: Transform - pos: 20.5,24.5 - parent: 2 - - uid: 10829 + pos: 56.5,44.5 + parent: 40599 + - uid: 41078 components: - type: Transform - pos: -9.5,-35.5 - parent: 2 - - uid: 10830 + pos: 56.5,43.5 + parent: 40599 + - uid: 41079 components: - type: Transform - pos: -9.5,-34.5 - parent: 2 - - uid: 10831 + pos: 57.5,43.5 + parent: 40599 + - uid: 41080 components: - type: Transform - pos: 2.5,57.5 - parent: 2 - - uid: 10832 + pos: 57.5,42.5 + parent: 40599 + - uid: 41081 components: - type: Transform - pos: 51.5,-36.5 - parent: 2 - - uid: 10833 + pos: 57.5,41.5 + parent: 40599 + - uid: 41082 components: - type: Transform - pos: 51.5,-35.5 - parent: 2 - - uid: 10834 + pos: 57.5,41.5 + parent: 40599 + - uid: 41083 components: - type: Transform - pos: 51.5,-34.5 - parent: 2 - - uid: 10835 + pos: 57.5,40.5 + parent: 40599 + - uid: 41084 components: - type: Transform - pos: 51.5,-33.5 - parent: 2 - - uid: 10836 + pos: 57.5,39.5 + parent: 40599 + - uid: 41085 components: - type: Transform - pos: 51.5,-32.5 - parent: 2 - - uid: 10837 + pos: 57.5,38.5 + parent: 40599 + - uid: 41086 components: - type: Transform - pos: 51.5,-31.5 - parent: 2 - - uid: 10838 + pos: 57.5,37.5 + parent: 40599 + - uid: 41087 components: - type: Transform - pos: 51.5,-30.5 - parent: 2 - - uid: 10839 + pos: 56.5,37.5 + parent: 40599 + - uid: 41088 components: - type: Transform - pos: 51.5,-29.5 - parent: 2 - - uid: 10840 + pos: 56.5,36.5 + parent: 40599 + - uid: 41089 components: - type: Transform - pos: 51.5,-28.5 - parent: 2 - - uid: 10841 + pos: 55.5,36.5 + parent: 40599 + - uid: 41090 components: - type: Transform - pos: 51.5,-27.5 - parent: 2 - - uid: 10842 + pos: 55.5,35.5 + parent: 40599 + - uid: 41091 components: - type: Transform - pos: 52.5,-27.5 - parent: 2 - - uid: 10843 + pos: 54.5,35.5 + parent: 40599 + - uid: 41092 components: - type: Transform - pos: 52.5,-26.5 - parent: 2 - - uid: 10844 + pos: 37.5,81.5 + parent: 40599 + - uid: 41093 components: - type: Transform - pos: 52.5,-25.5 - parent: 2 - - uid: 10845 + pos: 53.5,79.5 + parent: 40599 + - uid: 41094 components: - type: Transform - pos: 52.5,-25.5 - parent: 2 - - uid: 10846 + pos: 45.5,56.5 + parent: 40599 + - uid: 41095 components: - type: Transform - pos: 52.5,-24.5 - parent: 2 - - uid: 10847 + pos: 46.5,56.5 + parent: 40599 + - uid: 41096 components: - type: Transform - pos: 52.5,-23.5 - parent: 2 - - uid: 10848 + pos: 48.5,54.5 + parent: 40599 + - uid: 41097 components: - type: Transform - pos: 46.5,29.5 - parent: 2 - - uid: 10849 + pos: 49.5,54.5 + parent: 40599 + - uid: 41098 components: - type: Transform - pos: 47.5,29.5 - parent: 2 - - uid: 10850 + pos: 50.5,54.5 + parent: 40599 + - uid: 41099 components: - type: Transform - pos: 49.5,26.5 - parent: 2 - - uid: 10851 + pos: 44.5,81.5 + parent: 40599 + - uid: 41100 components: - type: Transform - pos: 49.5,29.5 - parent: 2 - - uid: 10852 + pos: 45.5,82.5 + parent: 40599 + - uid: 41101 components: - type: Transform - pos: 45.5,29.5 - parent: 2 - - uid: 10853 + pos: 45.5,81.5 + parent: 40599 + - uid: 41102 components: - type: Transform - pos: 48.5,29.5 - parent: 2 - - uid: 10854 + pos: 30.5,71.5 + parent: 40599 + - uid: 41103 components: - type: Transform - pos: 44.5,29.5 - parent: 2 - - uid: 10855 + pos: 29.5,71.5 + parent: 40599 + - uid: 41104 components: - type: Transform - pos: 44.5,28.5 - parent: 2 - - uid: 10856 + pos: 31.5,71.5 + parent: 40599 + - uid: 41105 components: - type: Transform - pos: 53.5,-23.5 - parent: 2 - - uid: 10857 + pos: 36.5,70.5 + parent: 40599 + - uid: 45408 components: - type: Transform - pos: 54.5,-23.5 - parent: 2 - - uid: 10858 + pos: 5.5,3.5 + parent: 45355 + - uid: 45409 components: - type: Transform - pos: 55.5,-23.5 - parent: 2 - - uid: 10859 + pos: -3.5,-1.5 + parent: 45355 + - uid: 45410 components: - type: Transform - pos: 56.5,-23.5 - parent: 2 - - uid: 10860 + pos: 5.5,6.5 + parent: 45355 + - uid: 45411 components: - type: Transform - pos: 57.5,-23.5 - parent: 2 - - uid: 10861 + pos: 6.5,6.5 + parent: 45355 + - uid: 45412 components: - type: Transform - pos: 58.5,-23.5 - parent: 2 - - uid: 10862 + pos: 6.5,5.5 + parent: 45355 + - uid: 45413 components: - type: Transform - pos: 59.5,-23.5 - parent: 2 - - uid: 10863 + pos: 6.5,7.5 + parent: 45355 + - uid: 45414 components: - type: Transform - pos: 60.5,-23.5 - parent: 2 - - uid: 10864 + pos: 6.5,4.5 + parent: 45355 + - uid: 45415 components: - type: Transform - pos: 61.5,-23.5 - parent: 2 - - uid: 10865 + pos: 6.5,3.5 + parent: 45355 + - uid: 45416 components: - type: Transform - pos: 62.5,-23.5 - parent: 2 - - uid: 10866 + pos: 6.5,2.5 + parent: 45355 + - uid: 45417 components: - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 10867 + pos: -5.5,6.5 + parent: 45355 + - uid: 45418 components: - type: Transform - pos: 53.5,-26.5 - parent: 2 - - uid: 10868 + pos: -4.5,6.5 + parent: 45355 + - uid: 45419 components: - type: Transform - pos: 54.5,-26.5 - parent: 2 - - uid: 10869 + pos: -4.5,7.5 + parent: 45355 + - uid: 45420 components: - type: Transform - pos: 54.5,-27.5 - parent: 2 - - uid: 10870 + pos: -4.5,8.5 + parent: 45355 + - uid: 45421 components: - type: Transform - pos: 74.5,-27.5 - parent: 2 - - uid: 10871 + pos: -3.5,8.5 + parent: 45355 + - uid: 45422 components: - type: Transform - pos: 75.5,-27.5 - parent: 2 - - uid: 10872 + pos: -2.5,8.5 + parent: 45355 + - uid: 45423 components: - type: Transform - pos: -21.5,59.5 - parent: 2 - - uid: 10873 + pos: -1.5,8.5 + parent: 45355 + - uid: 45424 components: - type: Transform - pos: -18.5,59.5 - parent: 2 - - uid: 10874 + pos: -0.5,8.5 + parent: 45355 + - uid: 45425 components: - type: Transform - pos: -20.5,59.5 - parent: 2 - - uid: 10875 + pos: 0.5,8.5 + parent: 45355 + - uid: 45426 components: - type: Transform - pos: -18.5,58.5 - parent: 2 - - uid: 10876 + pos: -4.5,5.5 + parent: 45355 + - uid: 45427 components: - type: Transform - pos: -19.5,59.5 - parent: 2 - - uid: 10877 + pos: -4.5,4.5 + parent: 45355 + - uid: 45428 components: - type: Transform - pos: -18.5,57.5 - parent: 2 - - uid: 10878 + pos: -4.5,3.5 + parent: 45355 + - uid: 45429 components: - type: Transform - pos: -17.5,57.5 - parent: 2 - - uid: 10879 + pos: -4.5,2.5 + parent: 45355 + - uid: 45430 components: - type: Transform - pos: -24.5,59.5 - parent: 2 - - uid: 10880 + pos: -4.5,1.5 + parent: 45355 + - uid: 45431 components: - type: Transform - pos: -23.5,59.5 - parent: 2 - - uid: 10881 + pos: -4.5,0.5 + parent: 45355 + - uid: 45432 components: - type: Transform - pos: -31.5,54.5 - parent: 2 - - uid: 10882 + pos: -4.5,-0.5 + parent: 45355 + - uid: 45433 components: - type: Transform - pos: -31.5,53.5 - parent: 2 - - uid: 10883 + pos: -4.5,-1.5 + parent: 45355 + - uid: 45434 components: - type: Transform - pos: -31.5,52.5 - parent: 2 - - uid: 10884 + pos: -2.5,-1.5 + parent: 45355 + - uid: 45435 components: - type: Transform - pos: -31.5,51.5 - parent: 2 - - uid: 10885 + pos: 4.5,3.5 + parent: 45355 + - uid: 45436 components: - type: Transform - pos: -31.5,50.5 - parent: 2 - - uid: 10886 + pos: 3.5,3.5 + parent: 45355 + - uid: 45437 components: - type: Transform - pos: -30.5,50.5 - parent: 2 - - uid: 10887 + pos: 2.5,3.5 + parent: 45355 + - uid: 45438 components: - type: Transform - pos: -29.5,50.5 - parent: 2 - - uid: 10888 + pos: 1.5,3.5 + parent: 45355 + - uid: 45439 components: - type: Transform - pos: -28.5,50.5 - parent: 2 - - uid: 10889 + pos: 0.5,3.5 + parent: 45355 + - uid: 45440 components: - type: Transform - pos: -27.5,50.5 - parent: 2 - - uid: 10890 + pos: -0.5,3.5 + parent: 45355 + - uid: 45441 components: - type: Transform - pos: -26.5,50.5 - parent: 2 - - uid: 10891 + pos: -1.5,3.5 + parent: 45355 + - uid: 45442 components: - type: Transform - pos: -26.5,49.5 - parent: 2 - - uid: 10892 + pos: 1.5,8.5 + parent: 45355 + - uid: 45443 components: - type: Transform - pos: -25.5,49.5 - parent: 2 - - uid: 10893 + pos: 2.5,8.5 + parent: 45355 + - uid: 45444 components: - type: Transform - pos: -24.5,49.5 - parent: 2 - - uid: 10894 + pos: 1.5,9.5 + parent: 45355 + - uid: 45445 components: - type: Transform - pos: -23.5,49.5 - parent: 2 - - uid: 10895 + pos: 1.5,10.5 + parent: 45355 + - uid: 45446 components: - type: Transform - pos: -22.5,49.5 - parent: 2 - - uid: 10896 + pos: 1.5,11.5 + parent: 45355 + - uid: 45447 components: - type: Transform - pos: -21.5,49.5 - parent: 2 - - uid: 10897 + pos: 1.5,12.5 + parent: 45355 + - uid: 45448 components: - type: Transform - pos: -20.5,49.5 - parent: 2 - - uid: 10898 + pos: -2.5,12.5 + parent: 45355 + - uid: 45449 components: - type: Transform - pos: -19.5,49.5 - parent: 2 - - uid: 10899 + pos: -2.5,11.5 + parent: 45355 + - uid: 45450 components: - type: Transform - pos: -18.5,49.5 - parent: 2 - - uid: 10900 + pos: -2.5,10.5 + parent: 45355 + - uid: 45451 components: - type: Transform - pos: -17.5,49.5 - parent: 2 - - uid: 10901 + pos: -2.5,9.5 + parent: 45355 + - uid: 46588 components: - type: Transform - pos: -17.5,48.5 - parent: 2 + pos: 3.5,8.5 + parent: 46584 + - uid: 46589 + components: + - type: Transform + pos: 3.5,6.5 + parent: 46584 + - uid: 46590 + components: + - type: Transform + pos: 3.5,5.5 + parent: 46584 + - uid: 46591 + components: + - type: Transform + pos: 3.5,4.5 + parent: 46584 + - uid: 46592 + components: + - type: Transform + pos: 3.5,3.5 + parent: 46584 + - uid: 46593 + components: + - type: Transform + pos: 3.5,7.5 + parent: 46584 + - uid: 46594 + components: + - type: Transform + pos: 4.5,4.5 + parent: 46584 + - uid: 46595 + components: + - type: Transform + pos: 5.5,4.5 + parent: 46584 + - uid: 46596 + components: + - type: Transform + pos: -3.5,11.5 + parent: 46584 + - uid: 46597 + components: + - type: Transform + pos: -3.5,10.5 + parent: 46584 + - uid: 46598 + components: + - type: Transform + pos: -3.5,8.5 + parent: 46584 + - uid: 46599 + components: + - type: Transform + pos: -3.5,9.5 + parent: 46584 + - uid: 46600 + components: + - type: Transform + pos: 6.5,4.5 + parent: 46584 + - uid: 46601 + components: + - type: Transform + pos: 7.5,4.5 + parent: 46584 + - uid: 46602 + components: + - type: Transform + pos: 8.5,4.5 + parent: 46584 + - uid: 46603 + components: + - type: Transform + pos: 9.5,4.5 + parent: 46584 + - uid: 46604 + components: + - type: Transform + pos: 9.5,5.5 + parent: 46584 + - uid: 46605 + components: + - type: Transform + pos: -2.5,11.5 + parent: 46584 + - uid: 47257 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 47245 + - uid: 47258 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 47245 + - uid: 47259 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 47245 +- proto: CableApcStack + entities: - uid: 10902 components: - type: Transform - pos: -17.5,47.5 + pos: -1.4334459,-35.49298 parent: 2 - uid: 10903 components: - type: Transform - pos: -16.5,47.5 + pos: 27.425108,-7.653957 parent: 2 - uid: 10904 components: - type: Transform - pos: -15.5,47.5 + pos: -13.328497,-48.471252 parent: 2 - uid: 10905 components: - type: Transform - pos: -14.5,47.5 + pos: -33.446835,-43.597794 parent: 2 - uid: 10906 components: - type: Transform - pos: -13.5,47.5 + pos: 18.389523,6.0674553 parent: 2 - uid: 10907 components: - type: Transform - pos: -12.5,47.5 + rot: 1.5707963267948966 rad + pos: 5.3653574,-44.426064 parent: 2 +- proto: CableApcStack1 + entities: - uid: 10908 components: - type: Transform - pos: -11.5,47.5 + rot: 3.141592653589793 rad + pos: 12.312685,-12.902496 parent: 2 - uid: 10909 components: - type: Transform - pos: -10.5,47.5 + rot: 1.5707963267948966 rad + pos: 11.10956,-13.527496 parent: 2 - uid: 10910 components: - type: Transform - pos: -9.5,47.5 + pos: 11.428396,57.49582 parent: 2 - uid: 10911 components: - type: Transform - pos: -8.5,47.5 + pos: 19.504272,57.48887 parent: 2 - uid: 10912 components: - type: Transform - pos: -7.5,47.5 + pos: -37.236393,-45.272995 parent: 2 - uid: 10913 components: - type: Transform - pos: -6.5,47.5 + pos: -37.673893,-44.66362 parent: 2 - uid: 10914 components: - type: Transform - pos: -5.5,47.5 + rot: 3.141592653589793 rad + pos: -55.541374,66.59528 parent: 2 - uid: 10915 components: - type: Transform - pos: -4.5,47.5 + rot: 3.141592653589793 rad + pos: -55.4945,65.5484 parent: 2 - uid: 10916 components: - type: Transform - pos: -3.5,47.5 + rot: 3.141592653589793 rad + pos: -55.52575,64.4859 parent: 2 - uid: 10917 components: - type: Transform - pos: -2.5,47.5 + pos: -33.45004,25.487164 parent: 2 - uid: 10918 components: - type: Transform - pos: -1.5,47.5 + rot: -1.5707963267948966 rad + pos: -31.609722,26.643414 parent: 2 - uid: 10919 components: - type: Transform - pos: 59.5,-6.5 + rot: 1.5707963267948966 rad + pos: -34.684414,25.549664 parent: 2 - uid: 10920 components: - type: Transform - pos: 59.5,-7.5 + rot: 3.141592653589793 rad + pos: -38.628033,25.596539 parent: 2 - uid: 10921 components: - type: Transform - pos: 60.5,-7.5 + pos: -44.565533,24.659039 parent: 2 - uid: 10922 components: - type: Transform - pos: 61.5,-7.5 + rot: 1.5707963267948966 rad + pos: -43.487408,25.705914 parent: 2 + - uid: 45394 + components: + - type: Transform + parent: 45392 + - type: Stack + count: 2 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.19070828,-0.1888802 + parent: 47245 + - uid: 47261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5436667,0.6392448 + parent: 47245 +- proto: CableApcStack10 + entities: - uid: 10923 components: - type: Transform - pos: 61.5,-8.5 + pos: 27.501957,-5.6630416 parent: 2 - uid: 10924 components: - type: Transform - pos: 61.5,-10.5 + pos: -6.547159,41.878628 parent: 2 - uid: 10925 components: - type: Transform - pos: 61.5,-11.5 + rot: 3.141592653589793 rad + pos: 45.33034,-47.45382 parent: 2 - uid: 10926 components: - type: Transform - pos: 61.5,-12.5 + rot: 3.141592653589793 rad + pos: 45.470966,-47.656944 parent: 2 - uid: 10927 components: - type: Transform - pos: 61.5,-13.5 + pos: 40.551544,-49.438538 parent: 2 +- proto: CableHV + entities: - uid: 10928 components: - type: Transform - pos: 61.5,-14.5 + pos: -21.5,60.5 parent: 2 - uid: 10929 components: - type: Transform - pos: 61.5,-15.5 + pos: -41.5,-51.5 parent: 2 - uid: 10930 components: - type: Transform - pos: 61.5,-16.5 + pos: -33.5,-64.5 parent: 2 - uid: 10931 components: - type: Transform - pos: 61.5,-17.5 + pos: 70.5,13.5 parent: 2 - uid: 10932 components: - type: Transform - pos: 61.5,-18.5 + pos: -41.5,62.5 parent: 2 - uid: 10933 components: - type: Transform - pos: 61.5,-19.5 + pos: -40.5,62.5 parent: 2 - uid: 10934 components: - type: Transform - pos: 61.5,-20.5 + pos: -38.5,61.5 parent: 2 - uid: 10935 components: - type: Transform - pos: 61.5,-21.5 + pos: -39.5,62.5 parent: 2 - uid: 10936 components: - type: Transform - pos: 61.5,-22.5 + pos: 72.5,13.5 parent: 2 - uid: 10937 components: - type: Transform - pos: -9.5,-33.5 + pos: 74.5,18.5 parent: 2 - uid: 10938 components: - type: Transform - pos: -9.5,-32.5 + pos: 69.5,-29.5 parent: 2 - uid: 10939 components: - type: Transform - pos: -9.5,-31.5 + pos: 68.5,-29.5 parent: 2 - uid: 10940 components: - type: Transform - pos: -9.5,-30.5 + pos: 0.5,14.5 parent: 2 - uid: 10941 components: - type: Transform - pos: -9.5,-29.5 + pos: 1.5,15.5 parent: 2 - uid: 10942 components: - type: Transform - pos: -9.5,-28.5 + pos: 0.5,13.5 parent: 2 - uid: 10943 components: - type: Transform - pos: -9.5,-27.5 + pos: 0.5,15.5 parent: 2 - uid: 10944 components: - type: Transform - pos: -9.5,-26.5 + pos: 72.5,-29.5 parent: 2 - uid: 10945 components: - type: Transform - pos: -9.5,-25.5 + pos: -12.5,-48.5 parent: 2 - uid: 10946 components: - type: Transform - pos: -9.5,-24.5 + pos: 59.5,-5.5 parent: 2 - uid: 10947 components: - type: Transform - pos: -9.5,-23.5 + pos: 59.5,-4.5 parent: 2 - uid: 10948 components: - type: Transform - pos: -9.5,-22.5 + pos: -9.5,-45.5 parent: 2 - uid: 10949 components: - type: Transform - pos: -9.5,-21.5 + pos: -3.5,-57.5 parent: 2 - uid: 10950 components: - type: Transform - pos: -9.5,-20.5 + pos: -9.5,-47.5 parent: 2 - uid: 10951 components: - type: Transform - pos: -9.5,-19.5 + pos: -9.5,-48.5 parent: 2 - uid: 10952 components: - type: Transform - pos: -9.5,-18.5 + pos: -9.5,-49.5 parent: 2 - uid: 10953 components: - type: Transform - pos: -9.5,-17.5 + pos: -9.5,-50.5 parent: 2 - uid: 10954 components: - type: Transform - pos: -9.5,-16.5 + pos: -9.5,-51.5 parent: 2 - uid: 10955 components: - type: Transform - pos: -16.5,-0.5 + pos: -9.5,-46.5 parent: 2 - uid: 10956 components: - type: Transform - pos: -9.5,-16.5 + pos: -14.5,-48.5 parent: 2 - uid: 10957 components: - type: Transform - pos: -8.5,-16.5 + pos: -13.5,-48.5 parent: 2 - uid: 10958 components: - type: Transform - pos: -7.5,-16.5 + pos: -16.5,-49.5 parent: 2 - uid: 10959 components: - type: Transform - pos: -6.5,-16.5 + pos: 19.5,54.5 parent: 2 - uid: 10960 components: - type: Transform - pos: -5.5,-16.5 + pos: 19.5,55.5 parent: 2 - uid: 10961 components: - type: Transform - pos: -4.5,-16.5 + pos: 19.5,56.5 parent: 2 - uid: 10962 components: - type: Transform - pos: -3.5,-16.5 + pos: 18.5,57.5 parent: 2 - uid: 10963 components: - type: Transform - pos: -2.5,-16.5 + pos: 17.5,57.5 parent: 2 - uid: 10964 components: - type: Transform - pos: -1.5,-16.5 + pos: 16.5,57.5 parent: 2 - uid: 10965 components: - type: Transform - pos: -0.5,-16.5 + pos: 15.5,57.5 parent: 2 - uid: 10966 components: - type: Transform - pos: 0.5,-16.5 + pos: 14.5,57.5 parent: 2 - uid: 10967 components: - type: Transform - pos: 1.5,-16.5 + pos: 13.5,57.5 parent: 2 - uid: 10968 components: - type: Transform - pos: 2.5,-16.5 + pos: 12.5,57.5 parent: 2 - uid: 10969 components: - type: Transform - pos: 3.5,-16.5 + pos: 10.5,57.5 parent: 2 - uid: 10970 components: - type: Transform - pos: 4.5,-16.5 + pos: 9.5,57.5 parent: 2 - uid: 10971 components: - type: Transform - pos: 5.5,-16.5 + pos: 8.5,57.5 parent: 2 - uid: 10972 components: - type: Transform - pos: 6.5,-16.5 + pos: 7.5,57.5 parent: 2 - uid: 10973 components: - type: Transform - pos: 7.5,-16.5 + pos: 6.5,57.5 parent: 2 - uid: 10974 components: - type: Transform - pos: 8.5,-16.5 + pos: 5.5,57.5 parent: 2 - uid: 10975 components: - type: Transform - pos: 9.5,-16.5 + pos: 4.5,57.5 parent: 2 - uid: 10976 components: - type: Transform - pos: 10.5,-16.5 + pos: 3.5,57.5 parent: 2 - uid: 10977 components: - type: Transform - pos: 11.5,-16.5 + pos: 18.5,54.5 parent: 2 - uid: 10978 components: - type: Transform - pos: 12.5,-16.5 + pos: 18.5,53.5 parent: 2 - uid: 10979 components: - type: Transform - pos: 13.5,-16.5 + pos: -11.5,-6.5 parent: 2 - uid: 10980 components: - type: Transform - pos: 14.5,-16.5 + pos: -14.5,-6.5 parent: 2 - uid: 10981 components: - type: Transform - pos: 15.5,-16.5 + pos: -13.5,-6.5 parent: 2 - uid: 10982 components: - type: Transform - pos: 16.5,-16.5 + pos: -16.5,-6.5 parent: 2 - uid: 10983 components: - type: Transform - pos: 17.5,-16.5 + pos: -15.5,-6.5 parent: 2 - uid: 10984 components: - type: Transform - pos: 18.5,-16.5 + pos: -12.5,-6.5 parent: 2 - uid: 10985 components: - type: Transform - pos: 19.5,-16.5 + pos: 13.5,-11.5 parent: 2 - uid: 10986 components: - type: Transform - pos: 20.5,-16.5 + pos: 14.5,-13.5 parent: 2 - uid: 10987 components: - type: Transform - pos: 21.5,-16.5 + pos: 14.5,-12.5 parent: 2 - uid: 10988 components: - type: Transform - pos: 44.5,27.5 + pos: 14.5,-11.5 parent: 2 - uid: 10989 components: - type: Transform - pos: 51.5,26.5 + pos: 12.5,-11.5 parent: 2 - uid: 10990 components: - type: Transform - pos: 53.5,19.5 + pos: 11.5,-11.5 parent: 2 - uid: 10991 components: - type: Transform - pos: 52.5,19.5 + pos: 10.5,-11.5 parent: 2 - uid: 10992 components: - type: Transform - pos: 42.5,32.5 + pos: 9.5,-11.5 parent: 2 - uid: 10993 components: - type: Transform - pos: 45.5,31.5 + pos: 8.5,-11.5 parent: 2 - uid: 10994 components: - type: Transform - pos: 21.5,-15.5 + pos: 8.5,-12.5 parent: 2 - uid: 10995 components: - type: Transform - pos: 21.5,-14.5 + pos: 8.5,-13.5 parent: 2 - uid: 10996 components: - type: Transform - pos: 21.5,-13.5 + pos: 8.5,-14.5 parent: 2 - uid: 10997 components: - type: Transform - pos: 21.5,-12.5 + pos: 8.5,-15.5 parent: 2 - uid: 10998 components: - type: Transform - pos: 21.5,-11.5 + pos: 8.5,-16.5 parent: 2 - uid: 10999 components: - type: Transform - pos: 21.5,-10.5 + pos: -14.5,-47.5 parent: 2 - uid: 11000 components: - type: Transform - pos: 21.5,-9.5 + pos: -14.5,-46.5 parent: 2 - uid: 11001 components: - type: Transform - pos: 21.5,-8.5 + pos: -14.5,-45.5 parent: 2 - uid: 11002 components: - type: Transform - pos: 21.5,-7.5 + pos: -15.5,-45.5 parent: 2 - uid: 11003 components: - type: Transform - pos: 21.5,-6.5 + pos: -16.5,-45.5 parent: 2 - uid: 11004 components: - type: Transform - pos: 21.5,-5.5 + pos: -13.5,-45.5 parent: 2 - uid: 11005 components: - type: Transform - pos: 21.5,-4.5 + pos: -12.5,-45.5 parent: 2 - uid: 11006 components: - type: Transform - pos: 21.5,-3.5 + pos: -12.5,-44.5 parent: 2 - uid: 11007 components: - type: Transform - pos: 21.5,-2.5 + pos: -16.5,-44.5 parent: 2 - uid: 11008 components: - type: Transform - pos: 21.5,-1.5 + pos: -16.5,-43.5 parent: 2 - uid: 11009 components: - type: Transform - pos: 21.5,-0.5 + pos: -16.5,-42.5 parent: 2 - uid: 11010 components: - type: Transform - pos: 21.5,0.5 + pos: -12.5,-42.5 parent: 2 - uid: 11011 components: - type: Transform - pos: 21.5,1.5 + pos: -12.5,-43.5 parent: 2 - uid: 11012 components: - type: Transform - pos: 21.5,2.5 + pos: -17.5,-45.5 parent: 2 - uid: 11013 components: - type: Transform - pos: 21.5,3.5 + pos: -18.5,-45.5 parent: 2 - uid: 11014 components: - type: Transform - pos: 21.5,4.5 + pos: -19.5,-45.5 parent: 2 - uid: 11015 components: - type: Transform - pos: 21.5,5.5 + pos: -16.5,-41.5 parent: 2 - uid: 11016 components: - type: Transform - pos: 21.5,6.5 + pos: -16.5,-40.5 parent: 2 - uid: 11017 components: - type: Transform - pos: 21.5,7.5 + pos: -16.5,-39.5 parent: 2 - uid: 11018 components: - type: Transform - pos: 21.5,8.5 + pos: -16.5,-38.5 parent: 2 - uid: 11019 components: - type: Transform - pos: 21.5,9.5 + pos: -12.5,-41.5 parent: 2 - uid: 11020 components: - type: Transform - pos: 21.5,10.5 + pos: -12.5,-40.5 parent: 2 - uid: 11021 components: - type: Transform - pos: 21.5,11.5 + pos: -12.5,-39.5 parent: 2 - uid: 11022 components: - type: Transform - pos: 20.5,11.5 + pos: -12.5,-38.5 parent: 2 - uid: 11023 components: - type: Transform - pos: 20.5,12.5 + pos: -14.5,-38.5 parent: 2 - uid: 11024 components: - type: Transform - pos: 20.5,13.5 + pos: -15.5,-38.5 parent: 2 - uid: 11025 components: - type: Transform - pos: 19.5,13.5 + pos: -15.5,-39.5 parent: 2 - uid: 11026 components: - type: Transform - pos: 19.5,14.5 + pos: -15.5,-40.5 parent: 2 - uid: 11027 components: - type: Transform - pos: 18.5,14.5 + pos: -15.5,-41.5 parent: 2 - uid: 11028 components: - type: Transform - pos: 18.5,15.5 + pos: -13.5,-38.5 parent: 2 - uid: 11029 components: - type: Transform - pos: 17.5,15.5 + pos: -13.5,-39.5 parent: 2 - uid: 11030 components: - type: Transform - pos: 16.5,15.5 + pos: -13.5,-40.5 parent: 2 - uid: 11031 components: - type: Transform - pos: 16.5,16.5 + pos: -13.5,-41.5 parent: 2 - uid: 11032 components: - type: Transform - pos: 16.5,17.5 + pos: -14.5,-37.5 parent: 2 - uid: 11033 components: - type: Transform - pos: 16.5,18.5 + pos: -13.5,-36.5 parent: 2 - uid: 11034 components: - type: Transform - pos: 16.5,19.5 + pos: -12.5,-36.5 parent: 2 - uid: 11035 components: - type: Transform - pos: 16.5,20.5 + pos: -11.5,-36.5 parent: 2 - uid: 11036 components: - type: Transform - pos: 16.5,21.5 + pos: -10.5,-36.5 parent: 2 - uid: 11037 components: - type: Transform - pos: 16.5,22.5 + pos: -9.5,-36.5 parent: 2 - uid: 11038 components: - type: Transform - pos: 16.5,23.5 + pos: -20.5,-45.5 parent: 2 - uid: 11039 components: - type: Transform - pos: 16.5,24.5 + pos: -21.5,-45.5 parent: 2 - uid: 11040 components: - type: Transform - pos: 16.5,24.5 + pos: -22.5,-45.5 parent: 2 - uid: 11041 components: - type: Transform - pos: 15.5,24.5 + pos: -23.5,-45.5 parent: 2 - uid: 11042 components: - type: Transform - pos: 14.5,24.5 + pos: -24.5,-45.5 parent: 2 - uid: 11043 components: - type: Transform - pos: 13.5,24.5 + pos: -25.5,-45.5 parent: 2 - uid: 11044 components: - type: Transform - pos: 12.5,24.5 + pos: -26.5,-45.5 parent: 2 - uid: 11045 components: - type: Transform - pos: 12.5,25.5 + pos: -27.5,-45.5 parent: 2 - uid: 11046 components: - type: Transform - pos: 18.5,24.5 + pos: -28.5,-45.5 parent: 2 - uid: 11047 components: - type: Transform - pos: -16.5,-1.5 + pos: -23.5,-35.5 parent: 2 - uid: 11048 components: - type: Transform - pos: -16.5,-2.5 + pos: -23.5,-36.5 parent: 2 - uid: 11049 components: - type: Transform - pos: -16.5,-3.5 + pos: -23.5,-37.5 parent: 2 - uid: 11050 components: - type: Transform - pos: -16.5,-4.5 + pos: -19.5,-35.5 parent: 2 - uid: 11051 components: - type: Transform - pos: -16.5,-5.5 + pos: -19.5,-36.5 parent: 2 - uid: 11052 components: - type: Transform - pos: -16.5,-6.5 + pos: -19.5,-37.5 parent: 2 - uid: 11053 components: - type: Transform - pos: -16.5,-7.5 + pos: -21.5,-35.5 parent: 2 - uid: 11054 components: - type: Transform - pos: -16.5,-8.5 + pos: -21.5,-37.5 parent: 2 - uid: 11055 components: - type: Transform - pos: -16.5,-9.5 + pos: -21.5,-36.5 parent: 2 - uid: 11056 components: - type: Transform - pos: -16.5,-10.5 + pos: -22.5,-37.5 parent: 2 - uid: 11057 components: - type: Transform - pos: -16.5,-11.5 + pos: -20.5,-44.5 parent: 2 - uid: 11058 components: - type: Transform - pos: -16.5,-12.5 + pos: -20.5,-43.5 parent: 2 - uid: 11059 components: - type: Transform - pos: -16.5,-13.5 + pos: -20.5,-42.5 parent: 2 - uid: 11060 components: - type: Transform - pos: -16.5,-14.5 + pos: -20.5,-41.5 parent: 2 - uid: 11061 components: - type: Transform - pos: -16.5,-15.5 + pos: -20.5,-40.5 parent: 2 - uid: 11062 components: - type: Transform - pos: -16.5,-16.5 + pos: -20.5,-39.5 parent: 2 - uid: 11063 components: - type: Transform - pos: -16.5,-16.5 + pos: -20.5,-38.5 parent: 2 - uid: 11064 components: - type: Transform - pos: -15.5,-16.5 + pos: -28.5,-44.5 parent: 2 - uid: 11065 components: - type: Transform - pos: -14.5,-16.5 + pos: -28.5,-43.5 parent: 2 - uid: 11066 components: - type: Transform - pos: -13.5,-16.5 + pos: -28.5,-42.5 parent: 2 - uid: 11067 components: - type: Transform - pos: -12.5,-16.5 + pos: -27.5,-42.5 parent: 2 - uid: 11068 components: - type: Transform - pos: -11.5,-16.5 + pos: -26.5,-42.5 parent: 2 - uid: 11069 components: - type: Transform - pos: -10.5,-16.5 + pos: -26.5,-41.5 parent: 2 - uid: 11070 components: - type: Transform - pos: -36.5,-45.5 + pos: -9.5,-40.5 parent: 2 - uid: 11071 components: - type: Transform - pos: -35.5,-45.5 + pos: -9.5,-39.5 parent: 2 - uid: 11072 components: - type: Transform - pos: -32.5,-45.5 + pos: -9.5,-38.5 parent: 2 - uid: 11073 components: - type: Transform - pos: -34.5,-45.5 + pos: -9.5,-37.5 parent: 2 - uid: 11074 components: - type: Transform - pos: -31.5,-45.5 + pos: -9.5,-41.5 parent: 2 - uid: 11075 components: - type: Transform - pos: -30.5,-45.5 + pos: -9.5,-42.5 parent: 2 - uid: 11076 components: - type: Transform - pos: -29.5,-45.5 + pos: -9.5,-43.5 parent: 2 - uid: 11077 components: - type: Transform - pos: -44.5,-37.5 + pos: -9.5,-44.5 parent: 2 - uid: 11078 components: - type: Transform - pos: -43.5,-37.5 + pos: -9.5,-52.5 parent: 2 - uid: 11079 components: - type: Transform - pos: -42.5,-37.5 + pos: -8.5,-52.5 parent: 2 - uid: 11080 components: - type: Transform - pos: -42.5,-39.5 + pos: -17.5,-0.5 parent: 2 - uid: 11081 components: - type: Transform - pos: -42.5,-40.5 + pos: -19.5,-0.5 parent: 2 - uid: 11082 components: - type: Transform - pos: -40.5,-40.5 + pos: -19.5,-2.5 parent: 2 - uid: 11083 components: - type: Transform - pos: -39.5,-40.5 + pos: -19.5,-1.5 parent: 2 - uid: 11084 components: - type: Transform - pos: -39.5,-41.5 + pos: -18.5,-0.5 parent: 2 - uid: 11085 components: - type: Transform - pos: 49.5,28.5 + pos: -14.5,-36.5 parent: 2 - uid: 11086 components: - type: Transform - pos: 66.5,-30.5 + pos: -15.5,-48.5 parent: 2 - uid: 11087 components: - type: Transform - pos: 66.5,-29.5 + pos: -16.5,-48.5 parent: 2 - uid: 11088 components: - type: Transform - pos: -1.5,-42.5 + pos: -16.5,-50.5 parent: 2 - uid: 11089 components: - type: Transform - pos: -8.5,-45.5 + pos: -20.5,-37.5 parent: 2 - uid: 11090 components: - type: Transform - pos: 8.5,31.5 + pos: -19.5,-4.5 parent: 2 - uid: 11091 components: - type: Transform - pos: -7.5,-45.5 + pos: -19.5,-3.5 parent: 2 - uid: 11092 components: - type: Transform - pos: -0.5,-41.5 + pos: 51.5,-38.5 parent: 2 - uid: 11093 components: - type: Transform - pos: 8.5,29.5 + pos: 51.5,-37.5 parent: 2 - uid: 11094 components: - type: Transform - pos: 8.5,30.5 + pos: 51.5,-39.5 parent: 2 - uid: 11095 components: - type: Transform - pos: 10.5,-46.5 + pos: 52.5,-39.5 parent: 2 - uid: 11096 components: - type: Transform - pos: 63.5,-30.5 + pos: -22.5,59.5 parent: 2 - uid: 11097 components: - type: Transform - pos: 64.5,-30.5 + pos: 21.5,24.5 parent: 2 - uid: 11098 components: - type: Transform - pos: 65.5,-30.5 + pos: 21.5,25.5 parent: 2 - uid: 11099 components: - type: Transform - pos: 62.5,-25.5 + pos: 20.5,24.5 parent: 2 - uid: 11100 components: - type: Transform - pos: 44.5,32.5 + pos: -9.5,-35.5 parent: 2 - uid: 11101 components: - type: Transform - pos: 57.5,19.5 + pos: -9.5,-34.5 parent: 2 - uid: 11102 components: - type: Transform - pos: 51.5,20.5 + pos: 2.5,57.5 parent: 2 - uid: 11103 components: - type: Transform - pos: 62.5,-26.5 + pos: 51.5,-36.5 parent: 2 - uid: 11104 components: - type: Transform - pos: 62.5,-27.5 + pos: 51.5,-35.5 parent: 2 - uid: 11105 components: - type: Transform - pos: 73.5,-29.5 + pos: 51.5,-34.5 parent: 2 - uid: 11106 components: - type: Transform - pos: 62.5,-24.5 + pos: 51.5,-33.5 parent: 2 - uid: 11107 components: - type: Transform - pos: 62.5,-28.5 + pos: 51.5,-32.5 parent: 2 - uid: 11108 components: - type: Transform - pos: 62.5,-29.5 + pos: 51.5,-31.5 parent: 2 - uid: 11109 components: - type: Transform - pos: 62.5,-30.5 + pos: 51.5,-30.5 parent: 2 - uid: 11110 components: - type: Transform - pos: 46.5,31.5 + pos: 51.5,-29.5 parent: 2 - uid: 11111 components: - type: Transform - pos: 45.5,32.5 + pos: 51.5,-28.5 parent: 2 - uid: 11112 components: - type: Transform - pos: 50.5,26.5 + pos: 51.5,-27.5 parent: 2 - uid: 11113 components: - type: Transform - pos: 43.5,32.5 + pos: 52.5,-27.5 parent: 2 - uid: 11114 components: - type: Transform - pos: 60.5,19.5 + pos: 52.5,-26.5 parent: 2 - uid: 11115 components: - type: Transform - pos: 54.5,19.5 + pos: 52.5,-25.5 parent: 2 - uid: 11116 components: - type: Transform - pos: 55.5,19.5 + pos: 52.5,-25.5 parent: 2 - uid: 11117 components: - type: Transform - pos: 56.5,19.5 + pos: 52.5,-24.5 parent: 2 - uid: 11118 components: - type: Transform - pos: 58.5,19.5 + pos: 52.5,-23.5 parent: 2 - uid: 11119 components: - type: Transform - pos: 59.5,19.5 + pos: 46.5,29.5 parent: 2 - uid: 11120 components: - type: Transform - pos: 51.5,19.5 + pos: 47.5,29.5 parent: 2 - uid: 11121 components: - type: Transform - pos: 71.5,2.5 + pos: 49.5,26.5 parent: 2 - uid: 11122 components: - type: Transform - pos: 49.5,27.5 + pos: 49.5,29.5 parent: 2 - uid: 11123 components: - type: Transform - pos: 51.5,24.5 + pos: 45.5,29.5 parent: 2 - uid: 11124 components: - type: Transform - pos: 51.5,25.5 + pos: 48.5,29.5 parent: 2 - uid: 11125 components: - type: Transform - pos: 51.5,23.5 + pos: 44.5,29.5 parent: 2 - uid: 11126 components: - type: Transform - pos: 51.5,22.5 + pos: 44.5,28.5 parent: 2 - uid: 11127 components: - type: Transform - pos: 51.5,21.5 + pos: 53.5,-23.5 parent: 2 - uid: 11128 components: - type: Transform - pos: 19.5,24.5 + pos: 54.5,-23.5 parent: 2 - uid: 11129 components: - type: Transform - pos: 8.5,28.5 + pos: 55.5,-23.5 parent: 2 - uid: 11130 components: - type: Transform - pos: -33.5,-45.5 + pos: 56.5,-23.5 parent: 2 - uid: 11131 components: - type: Transform - pos: 70.5,-29.5 + pos: 57.5,-23.5 parent: 2 - uid: 11132 components: - type: Transform - pos: 71.5,-29.5 + pos: 58.5,-23.5 parent: 2 - uid: 11133 components: - type: Transform - pos: 74.5,-28.5 + pos: 59.5,-23.5 parent: 2 - uid: 11134 components: - type: Transform - pos: 70.5,1.5 + pos: 60.5,-23.5 parent: 2 - uid: 11135 components: - type: Transform - pos: 67.5,17.5 + pos: 61.5,-23.5 parent: 2 - uid: 11136 components: - type: Transform - pos: 46.5,30.5 + pos: 62.5,-23.5 parent: 2 - uid: 11137 components: - type: Transform - pos: 69.5,1.5 + pos: -37.5,-45.5 parent: 2 - uid: 11138 components: - type: Transform - pos: 69.5,10.5 + pos: 53.5,-26.5 parent: 2 - uid: 11139 components: - type: Transform - pos: 68.5,16.5 + pos: 54.5,-26.5 parent: 2 - uid: 11140 components: - type: Transform - pos: 8.5,27.5 + pos: 54.5,-27.5 parent: 2 - uid: 11141 components: - type: Transform - pos: 74.5,-29.5 + pos: 74.5,-27.5 parent: 2 - uid: 11142 components: - type: Transform - pos: 17.5,24.5 + pos: 75.5,-27.5 parent: 2 - uid: 11143 components: - type: Transform - pos: 23.5,28.5 + pos: -21.5,59.5 parent: 2 - uid: 11144 components: - type: Transform - pos: -0.5,47.5 + pos: -24.5,59.5 parent: 2 - uid: 11145 components: - type: Transform - pos: 0.5,47.5 + pos: -23.5,59.5 parent: 2 - uid: 11146 components: - type: Transform - pos: 1.5,47.5 + pos: -31.5,54.5 parent: 2 - uid: 11147 components: - type: Transform - pos: 2.5,47.5 + pos: -31.5,53.5 parent: 2 - uid: 11148 components: - type: Transform - pos: 3.5,47.5 + pos: -31.5,52.5 parent: 2 - uid: 11149 components: - type: Transform - pos: 4.5,47.5 + pos: -31.5,51.5 parent: 2 - uid: 11150 components: - type: Transform - pos: 5.5,47.5 + pos: -31.5,50.5 parent: 2 - uid: 11151 components: - type: Transform - pos: 6.5,47.5 + pos: -30.5,50.5 parent: 2 - uid: 11152 components: - type: Transform - pos: 7.5,47.5 + pos: -29.5,50.5 parent: 2 - uid: 11153 components: - type: Transform - pos: 8.5,47.5 + pos: -28.5,50.5 parent: 2 - uid: 11154 components: - type: Transform - pos: 9.5,47.5 + pos: -27.5,50.5 parent: 2 - uid: 11155 components: - type: Transform - pos: 9.5,46.5 + pos: -26.5,50.5 parent: 2 - uid: 11156 components: - type: Transform - pos: 9.5,45.5 + pos: -26.5,49.5 parent: 2 - uid: 11157 components: - type: Transform - pos: 10.5,45.5 + pos: -25.5,49.5 parent: 2 - uid: 11158 components: - type: Transform - pos: 11.5,45.5 + pos: -24.5,49.5 parent: 2 - uid: 11159 components: - type: Transform - pos: 12.5,45.5 + pos: -23.5,49.5 parent: 2 - uid: 11160 components: - type: Transform - pos: 13.5,45.5 + pos: -22.5,49.5 parent: 2 - uid: 11161 components: - type: Transform - pos: 13.5,44.5 + pos: -21.5,49.5 parent: 2 - uid: 11162 components: - type: Transform - pos: 13.5,43.5 + pos: -20.5,49.5 parent: 2 - uid: 11163 components: - type: Transform - pos: 13.5,42.5 + pos: -19.5,49.5 parent: 2 - uid: 11164 components: - type: Transform - pos: 13.5,41.5 + pos: -18.5,49.5 parent: 2 - uid: 11165 components: - type: Transform - pos: 13.5,40.5 + pos: -17.5,49.5 parent: 2 - uid: 11166 components: - type: Transform - pos: 13.5,39.5 + pos: -17.5,48.5 parent: 2 - uid: 11167 components: - type: Transform - pos: 13.5,38.5 + pos: -17.5,47.5 parent: 2 - uid: 11168 components: - type: Transform - pos: 13.5,37.5 + pos: -16.5,47.5 parent: 2 - uid: 11169 components: - type: Transform - pos: 13.5,36.5 + pos: -15.5,47.5 parent: 2 - uid: 11170 components: - type: Transform - pos: 13.5,35.5 + pos: -14.5,47.5 parent: 2 - uid: 11171 components: - type: Transform - pos: 13.5,34.5 + pos: -13.5,47.5 parent: 2 - uid: 11172 components: - type: Transform - pos: 13.5,33.5 + pos: -12.5,47.5 parent: 2 - uid: 11173 components: - type: Transform - pos: 13.5,32.5 + pos: -11.5,47.5 parent: 2 - uid: 11174 components: - type: Transform - pos: 13.5,31.5 + pos: -10.5,47.5 parent: 2 - uid: 11175 components: - type: Transform - pos: 12.5,31.5 + pos: -9.5,47.5 parent: 2 - uid: 11176 components: - type: Transform - pos: 10.5,31.5 + pos: -8.5,47.5 parent: 2 - uid: 11177 components: - type: Transform - pos: -25.5,59.5 + pos: -7.5,47.5 parent: 2 - uid: 11178 components: - type: Transform - pos: -26.5,59.5 + pos: -6.5,47.5 parent: 2 - uid: 11179 components: - type: Transform - pos: -27.5,59.5 + pos: -5.5,47.5 parent: 2 - uid: 11180 components: - type: Transform - pos: -28.5,59.5 + pos: -4.5,47.5 parent: 2 - uid: 11181 components: - type: Transform - pos: -29.5,59.5 + pos: -3.5,47.5 parent: 2 - uid: 11182 components: - type: Transform - pos: -30.5,59.5 + pos: -2.5,47.5 parent: 2 - uid: 11183 components: - type: Transform - pos: -30.5,58.5 + pos: -1.5,47.5 parent: 2 - uid: 11184 components: - type: Transform - pos: -31.5,58.5 + pos: 59.5,-6.5 parent: 2 - uid: 11185 components: - type: Transform - pos: -31.5,57.5 + pos: 59.5,-7.5 parent: 2 - uid: 11186 components: - type: Transform - pos: -31.5,56.5 + pos: 60.5,-7.5 parent: 2 - uid: 11187 components: - type: Transform - pos: -31.5,55.5 + pos: 61.5,-7.5 parent: 2 - uid: 11188 components: - type: Transform - pos: 21.5,26.5 + pos: 61.5,-8.5 parent: 2 - uid: 11189 components: - type: Transform - pos: 21.5,27.5 + pos: 61.5,-10.5 parent: 2 - uid: 11190 components: - type: Transform - pos: 21.5,28.5 + pos: 61.5,-11.5 parent: 2 - uid: 11191 components: - type: Transform - pos: 26.5,28.5 + pos: 61.5,-12.5 parent: 2 - uid: 11192 components: - type: Transform - pos: 25.5,28.5 + pos: 61.5,-13.5 parent: 2 - uid: 11193 components: - type: Transform - pos: 24.5,28.5 + pos: 61.5,-14.5 parent: 2 - uid: 11194 components: - type: Transform - pos: 22.5,28.5 + pos: 61.5,-15.5 parent: 2 - uid: 11195 components: - type: Transform - pos: 27.5,28.5 + pos: 61.5,-16.5 parent: 2 - uid: 11196 components: - type: Transform - pos: 28.5,28.5 + pos: 61.5,-17.5 parent: 2 - uid: 11197 components: - type: Transform - pos: 29.5,28.5 + pos: 61.5,-18.5 parent: 2 - uid: 11198 components: - type: Transform - pos: 30.5,28.5 + pos: 61.5,-19.5 parent: 2 - uid: 11199 components: - type: Transform - pos: 31.5,28.5 + pos: 61.5,-20.5 parent: 2 - uid: 11200 components: - type: Transform - pos: 32.5,28.5 + pos: 61.5,-21.5 parent: 2 - uid: 11201 components: - type: Transform - pos: 33.5,28.5 + pos: 61.5,-22.5 parent: 2 - uid: 11202 components: - type: Transform - pos: 34.5,28.5 + pos: -9.5,-33.5 parent: 2 - uid: 11203 components: - type: Transform - pos: 35.5,28.5 + pos: -9.5,-32.5 parent: 2 - uid: 11204 components: - type: Transform - pos: 36.5,28.5 + pos: -9.5,-31.5 parent: 2 - uid: 11205 components: - type: Transform - pos: 37.5,28.5 + pos: -9.5,-30.5 parent: 2 - uid: 11206 components: - type: Transform - pos: 37.5,28.5 + pos: -9.5,-29.5 parent: 2 - uid: 11207 components: - type: Transform - pos: 37.5,29.5 + pos: -9.5,-28.5 parent: 2 - uid: 11208 components: - type: Transform - pos: 37.5,30.5 + pos: -9.5,-27.5 parent: 2 - uid: 11209 components: - type: Transform - pos: 37.5,31.5 + pos: -9.5,-26.5 parent: 2 - uid: 11210 components: - type: Transform - pos: 37.5,32.5 + pos: -9.5,-25.5 parent: 2 - uid: 11211 components: - type: Transform - pos: 38.5,32.5 + pos: -9.5,-24.5 parent: 2 - uid: 11212 components: - type: Transform - pos: 39.5,32.5 + pos: -9.5,-23.5 parent: 2 - uid: 11213 components: - type: Transform - pos: 40.5,32.5 + pos: -9.5,-22.5 parent: 2 - uid: 11214 components: - type: Transform - pos: 41.5,32.5 + pos: -9.5,-21.5 parent: 2 - uid: 11215 components: - type: Transform - pos: 9.5,31.5 + pos: -9.5,-20.5 parent: 2 - uid: 11216 components: - type: Transform - pos: 60.5,18.5 + pos: -9.5,-19.5 parent: 2 - uid: 11217 components: - type: Transform - pos: 61.5,18.5 + pos: -9.5,-18.5 parent: 2 - uid: 11218 components: - type: Transform - pos: 62.5,18.5 + pos: -9.5,-17.5 parent: 2 - uid: 11219 components: - type: Transform - pos: 63.5,18.5 + pos: -9.5,-16.5 parent: 2 - uid: 11220 components: - type: Transform - pos: 63.5,17.5 + pos: -16.5,-0.5 parent: 2 - uid: 11221 components: - type: Transform - pos: 64.5,17.5 + pos: -9.5,-16.5 parent: 2 - uid: 11222 components: - type: Transform - pos: 66.5,17.5 + pos: -8.5,-16.5 parent: 2 - uid: 11223 components: - type: Transform - pos: 68.5,17.5 + pos: -7.5,-16.5 parent: 2 - uid: 11224 components: - type: Transform - pos: 65.5,17.5 + pos: -6.5,-16.5 parent: 2 - uid: 11225 components: - type: Transform - pos: 68.5,15.5 + pos: -5.5,-16.5 parent: 2 - uid: 11226 components: - type: Transform - pos: 68.5,14.5 + pos: -4.5,-16.5 parent: 2 - uid: 11227 components: - type: Transform - pos: 62.5,-6.5 + pos: -3.5,-16.5 parent: 2 - uid: 11228 components: - type: Transform - pos: 69.5,14.5 + pos: -2.5,-16.5 parent: 2 - uid: 11229 components: - type: Transform - pos: 69.5,13.5 + pos: -1.5,-16.5 parent: 2 - uid: 11230 components: - type: Transform - pos: 69.5,11.5 + pos: -0.5,-16.5 parent: 2 - uid: 11231 components: - type: Transform - pos: 69.5,12.5 + pos: 0.5,-16.5 parent: 2 - uid: 11232 components: - type: Transform - pos: 70.5,10.5 + pos: 1.5,-16.5 parent: 2 - uid: 11233 components: - type: Transform - pos: 70.5,9.5 + pos: 2.5,-16.5 parent: 2 - uid: 11234 components: - type: Transform - pos: 67.5,-29.5 + pos: 3.5,-16.5 parent: 2 - uid: 11235 components: - type: Transform - pos: 71.5,9.5 + pos: 4.5,-16.5 parent: 2 - uid: 11236 components: - type: Transform - pos: 71.5,8.5 + pos: 5.5,-16.5 parent: 2 - uid: 11237 components: - type: Transform - pos: 71.5,7.5 + pos: 6.5,-16.5 parent: 2 - uid: 11238 components: - type: Transform - pos: 71.5,6.5 + pos: 7.5,-16.5 parent: 2 - uid: 11239 components: - type: Transform - pos: 72.5,6.5 + pos: 8.5,-16.5 parent: 2 - uid: 11240 components: - type: Transform - pos: 72.5,5.5 + pos: 9.5,-16.5 parent: 2 - uid: 11241 components: - type: Transform - pos: 72.5,4.5 + pos: 10.5,-16.5 parent: 2 - uid: 11242 components: - type: Transform - pos: 72.5,3.5 + pos: 11.5,-16.5 parent: 2 - uid: 11243 components: - type: Transform - pos: 72.5,2.5 + pos: 12.5,-16.5 parent: 2 - uid: 11244 components: - type: Transform - pos: 71.5,1.5 + pos: 13.5,-16.5 parent: 2 - uid: 11245 components: - type: Transform - pos: 69.5,0.5 + pos: 14.5,-16.5 parent: 2 - uid: 11246 components: - type: Transform - pos: 68.5,0.5 + pos: 15.5,-16.5 parent: 2 - uid: 11247 components: - type: Transform - pos: 68.5,-0.5 + pos: 16.5,-16.5 parent: 2 - uid: 11248 components: - type: Transform - pos: 68.5,-1.5 + pos: 17.5,-16.5 parent: 2 - uid: 11249 components: - type: Transform - pos: 68.5,-2.5 + pos: 18.5,-16.5 parent: 2 - uid: 11250 components: - type: Transform - pos: 67.5,-2.5 + pos: 19.5,-16.5 parent: 2 - uid: 11251 components: - type: Transform - pos: 66.5,-3.5 + pos: 20.5,-16.5 parent: 2 - uid: 11252 components: - type: Transform - pos: 67.5,-3.5 + pos: 21.5,-16.5 parent: 2 - uid: 11253 components: - type: Transform - pos: 66.5,-4.5 + pos: 44.5,27.5 parent: 2 - uid: 11254 components: - type: Transform - pos: 66.5,-5.5 + pos: 51.5,26.5 parent: 2 - uid: 11255 components: - type: Transform - pos: 65.5,-5.5 + pos: 53.5,19.5 parent: 2 - uid: 11256 components: - type: Transform - pos: 64.5,-5.5 + pos: 52.5,19.5 parent: 2 - uid: 11257 components: - type: Transform - pos: 64.5,-6.5 + pos: 42.5,32.5 parent: 2 - uid: 11258 components: - type: Transform - pos: 63.5,-6.5 + pos: 45.5,31.5 parent: 2 - uid: 11259 components: - type: Transform - pos: 61.5,-6.5 + pos: 21.5,-15.5 parent: 2 - uid: 11260 components: - type: Transform - pos: 11.5,-46.5 + pos: 21.5,-14.5 parent: 2 - uid: 11261 components: - type: Transform - pos: 11.5,-45.5 + pos: 21.5,-13.5 parent: 2 - uid: 11262 components: - type: Transform - pos: 11.5,-44.5 + pos: 21.5,-12.5 parent: 2 - uid: 11263 components: - type: Transform - pos: 11.5,-43.5 + pos: 21.5,-11.5 parent: 2 - uid: 11264 components: - type: Transform - pos: 10.5,-43.5 + pos: 21.5,-10.5 parent: 2 - uid: 11265 components: - type: Transform - pos: 9.5,-43.5 + pos: 21.5,-9.5 parent: 2 - uid: 11266 components: - type: Transform - pos: 8.5,-43.5 + pos: 21.5,-8.5 parent: 2 - uid: 11267 components: - type: Transform - pos: 7.5,-43.5 + pos: 21.5,-7.5 parent: 2 - uid: 11268 components: - type: Transform - pos: 6.5,-43.5 + pos: 21.5,-6.5 parent: 2 - uid: 11269 components: - type: Transform - pos: 5.5,-43.5 + pos: 21.5,-5.5 parent: 2 - uid: 11270 components: - type: Transform - pos: 4.5,-43.5 + pos: 21.5,-4.5 parent: 2 - uid: 11271 components: - type: Transform - pos: 3.5,-43.5 + pos: 21.5,-3.5 parent: 2 - uid: 11272 components: - type: Transform - pos: 2.5,-43.5 + pos: 21.5,-2.5 parent: 2 - uid: 11273 components: - type: Transform - pos: 1.5,-43.5 + pos: 21.5,-1.5 parent: 2 - uid: 11274 components: - type: Transform - pos: 1.5,-42.5 + pos: 21.5,-0.5 parent: 2 - uid: 11275 components: - type: Transform - pos: 1.5,-41.5 + pos: 21.5,0.5 parent: 2 - uid: 11276 components: - type: Transform - pos: 0.5,-41.5 + pos: 21.5,1.5 parent: 2 - uid: 11277 components: - type: Transform - pos: -1.5,-41.5 + pos: 21.5,2.5 parent: 2 - uid: 11278 components: - type: Transform - pos: -6.5,-45.5 + pos: 21.5,3.5 parent: 2 - uid: 11279 components: - type: Transform - pos: -5.5,-45.5 + pos: 21.5,4.5 parent: 2 - uid: 11280 components: - type: Transform - pos: -4.5,-45.5 + pos: 21.5,5.5 parent: 2 - uid: 11281 components: - type: Transform - pos: -3.5,-45.5 + pos: 21.5,6.5 parent: 2 - uid: 11282 components: - type: Transform - pos: -2.5,-45.5 + pos: 21.5,7.5 parent: 2 - uid: 11283 components: - type: Transform - pos: -1.5,-45.5 + pos: 21.5,8.5 parent: 2 - uid: 11284 components: - type: Transform - pos: -1.5,-44.5 + pos: 21.5,9.5 parent: 2 - uid: 11285 components: - type: Transform - pos: -1.5,-43.5 + pos: 21.5,10.5 parent: 2 - uid: 11286 components: - type: Transform - pos: 11.5,25.5 + pos: 21.5,11.5 parent: 2 - uid: 11287 components: - type: Transform - pos: 8.5,25.5 + pos: 20.5,11.5 parent: 2 - uid: 11288 components: - type: Transform - pos: 8.5,26.5 + pos: 20.5,12.5 parent: 2 - uid: 11289 components: - type: Transform - pos: 11.5,31.5 + pos: 20.5,13.5 parent: 2 - uid: 11290 components: - type: Transform - pos: 10.5,25.5 + pos: 19.5,13.5 parent: 2 - uid: 11291 components: - type: Transform - pos: 9.5,25.5 + pos: 19.5,14.5 parent: 2 - uid: 11292 components: - type: Transform - pos: -0.5,13.5 + pos: 18.5,14.5 parent: 2 - uid: 11293 components: - type: Transform - pos: -1.5,13.5 + pos: 18.5,15.5 parent: 2 - uid: 11294 components: - type: Transform - pos: -2.5,13.5 + pos: 17.5,15.5 parent: 2 - uid: 11295 components: - type: Transform - pos: -2.5,12.5 + pos: 16.5,15.5 parent: 2 - uid: 11296 components: - type: Transform - pos: -3.5,12.5 + pos: 16.5,16.5 parent: 2 - uid: 11297 components: - type: Transform - pos: -3.5,11.5 + pos: 16.5,17.5 parent: 2 - uid: 11298 components: - type: Transform - pos: -4.5,11.5 + pos: 16.5,18.5 parent: 2 - uid: 11299 components: - type: Transform - pos: -5.5,11.5 + pos: 16.5,19.5 parent: 2 - uid: 11300 components: - type: Transform - pos: -6.5,11.5 + pos: 16.5,20.5 parent: 2 - uid: 11301 components: - type: Transform - pos: -7.5,11.5 + pos: 16.5,21.5 parent: 2 - uid: 11302 components: - type: Transform - pos: -7.5,10.5 + pos: 16.5,22.5 parent: 2 - uid: 11303 components: - type: Transform - pos: -7.5,9.5 + pos: 16.5,23.5 parent: 2 - uid: 11304 components: - type: Transform - pos: -7.5,8.5 + pos: 16.5,24.5 parent: 2 - uid: 11305 components: - type: Transform - pos: -7.5,7.5 + pos: 16.5,24.5 parent: 2 - uid: 11306 components: - type: Transform - pos: -7.5,6.5 + pos: 15.5,24.5 parent: 2 - uid: 11307 components: - type: Transform - pos: -6.5,6.5 + pos: 14.5,24.5 parent: 2 - uid: 11308 components: - type: Transform - pos: -6.5,5.5 + pos: 13.5,24.5 parent: 2 - uid: 11309 components: - type: Transform - pos: -6.5,4.5 + pos: 12.5,24.5 parent: 2 - uid: 11310 components: - type: Transform - pos: -6.5,3.5 + pos: 12.5,25.5 parent: 2 - uid: 11311 components: - type: Transform - pos: -6.5,2.5 + pos: 18.5,24.5 parent: 2 - uid: 11312 components: - type: Transform - pos: -6.5,1.5 + pos: -16.5,-1.5 parent: 2 - uid: 11313 components: - type: Transform - pos: -123.5,13.5 + pos: -16.5,-2.5 parent: 2 - uid: 11314 components: - type: Transform - pos: -9.5,0.5 + pos: -16.5,-3.5 parent: 2 - uid: 11315 components: - type: Transform - pos: -124.5,13.5 + pos: -16.5,-4.5 parent: 2 - uid: 11316 components: - type: Transform - pos: -14.5,-0.5 + pos: -16.5,-5.5 parent: 2 - uid: 11317 components: - type: Transform - pos: -120.5,13.5 + pos: -16.5,-6.5 parent: 2 - uid: 11318 components: - type: Transform - pos: -119.5,13.5 + pos: -16.5,-7.5 parent: 2 - uid: 11319 components: - type: Transform - pos: -125.5,6.5 + pos: -16.5,-8.5 parent: 2 - uid: 11320 components: - type: Transform - pos: -125.5,10.5 + pos: -16.5,-9.5 parent: 2 - uid: 11321 components: - type: Transform - pos: -125.5,7.5 + pos: -16.5,-10.5 parent: 2 - uid: 11322 components: - type: Transform - pos: -125.5,8.5 + pos: -16.5,-11.5 parent: 2 - uid: 11323 components: - type: Transform - pos: -125.5,9.5 + pos: -16.5,-12.5 parent: 2 - uid: 11324 components: - type: Transform - pos: -124.5,12.5 + pos: -16.5,-13.5 parent: 2 - uid: 11325 components: - type: Transform - pos: -122.5,13.5 + pos: -16.5,-14.5 parent: 2 - uid: 11326 components: - type: Transform - pos: -121.5,13.5 + pos: -16.5,-15.5 parent: 2 - uid: 11327 components: - type: Transform - pos: -124.5,11.5 + pos: -16.5,-16.5 parent: 2 - uid: 11328 components: - type: Transform - pos: -124.5,10.5 + pos: -16.5,-16.5 parent: 2 - uid: 11329 components: - type: Transform - pos: -11.5,-0.5 + pos: -15.5,-16.5 parent: 2 - uid: 11330 components: - type: Transform - pos: -10.5,-0.5 + pos: -14.5,-16.5 parent: 2 - uid: 11331 components: - type: Transform - pos: -6.5,0.5 + pos: -13.5,-16.5 parent: 2 - uid: 11332 components: - type: Transform - pos: -8.5,0.5 + pos: -12.5,-16.5 parent: 2 - uid: 11333 components: - type: Transform - pos: -7.5,0.5 + pos: -11.5,-16.5 parent: 2 - uid: 11334 components: - type: Transform - pos: -12.5,-0.5 + pos: -10.5,-16.5 parent: 2 - uid: 11335 components: - type: Transform - pos: -13.5,-0.5 + pos: -36.5,-45.5 parent: 2 - uid: 11336 components: - type: Transform - pos: -15.5,-0.5 + pos: -35.5,-45.5 parent: 2 - uid: 11337 components: - type: Transform - pos: -10.5,0.5 + pos: -32.5,-45.5 parent: 2 - uid: 11338 components: - type: Transform - pos: -134.5,9.5 + pos: -34.5,-45.5 parent: 2 - uid: 11339 components: - type: Transform - pos: -132.5,11.5 + pos: -31.5,-45.5 parent: 2 - uid: 11340 components: - type: Transform - pos: -134.5,8.5 + pos: -30.5,-45.5 parent: 2 - uid: 11341 components: - type: Transform - pos: -131.5,9.5 + pos: -29.5,-45.5 parent: 2 - uid: 11342 components: - type: Transform - pos: -131.5,8.5 + pos: -44.5,-37.5 parent: 2 - uid: 11343 components: - type: Transform - pos: -132.5,10.5 + pos: -43.5,-37.5 parent: 2 - uid: 11344 components: - type: Transform - pos: -132.5,9.5 + pos: -42.5,-37.5 parent: 2 - uid: 11345 components: - type: Transform - pos: -133.5,9.5 + pos: -42.5,-39.5 parent: 2 - uid: 11346 components: - type: Transform - pos: -134.5,11.5 + pos: -42.5,-40.5 parent: 2 - uid: 11347 components: - type: Transform - pos: -133.5,11.5 + pos: -40.5,-40.5 parent: 2 - uid: 11348 components: - type: Transform - pos: -125.5,5.5 + pos: -39.5,-40.5 parent: 2 - uid: 11349 components: - type: Transform - pos: -125.5,4.5 + pos: -39.5,-41.5 parent: 2 - uid: 11350 components: - type: Transform - pos: -125.5,3.5 + pos: 49.5,28.5 parent: 2 - uid: 11351 components: - type: Transform - pos: -124.5,3.5 + pos: 66.5,-30.5 parent: 2 - uid: 11352 components: - type: Transform - pos: -124.5,2.5 + pos: 66.5,-29.5 parent: 2 - uid: 11353 components: - type: Transform - pos: -124.5,1.5 + pos: -1.5,-42.5 parent: 2 - uid: 11354 components: - type: Transform - pos: -124.5,0.5 + pos: -8.5,-45.5 parent: 2 - uid: 11355 components: - type: Transform - pos: -123.5,0.5 + pos: 8.5,31.5 parent: 2 - uid: 11356 components: - type: Transform - pos: -122.5,0.5 + pos: -7.5,-45.5 parent: 2 - uid: 11357 components: - type: Transform - pos: -121.5,0.5 + pos: -0.5,-41.5 parent: 2 - uid: 11358 components: - type: Transform - pos: -120.5,0.5 + pos: 8.5,29.5 parent: 2 - uid: 11359 components: - type: Transform - pos: -119.5,0.5 + pos: 8.5,30.5 parent: 2 - uid: 11360 components: - type: Transform - pos: -54.5,75.5 + pos: 10.5,-46.5 parent: 2 - uid: 11361 components: - type: Transform - pos: -51.5,75.5 + pos: 63.5,-30.5 parent: 2 - uid: 11362 components: - type: Transform - pos: -56.5,71.5 + pos: 64.5,-30.5 parent: 2 - uid: 11363 components: - type: Transform - pos: -56.5,70.5 + pos: 65.5,-30.5 parent: 2 - uid: 11364 components: - type: Transform - pos: -58.5,75.5 + pos: 62.5,-25.5 parent: 2 - uid: 11365 components: - type: Transform - pos: -67.5,73.5 + pos: 44.5,32.5 parent: 2 - uid: 11366 components: - type: Transform - pos: -68.5,73.5 + pos: 57.5,19.5 parent: 2 - uid: 11367 components: - type: Transform - pos: -66.5,75.5 + pos: 51.5,20.5 parent: 2 - uid: 11368 components: - type: Transform - pos: -66.5,73.5 + pos: 62.5,-26.5 parent: 2 - uid: 11369 components: - type: Transform - pos: -69.5,73.5 + pos: 62.5,-27.5 parent: 2 - uid: 11370 components: - type: Transform - pos: -70.5,73.5 + pos: 73.5,-29.5 parent: 2 - uid: 11371 components: - type: Transform - pos: -67.5,75.5 + pos: 62.5,-24.5 parent: 2 - uid: 11372 components: - type: Transform - pos: -68.5,75.5 + pos: 62.5,-28.5 parent: 2 - uid: 11373 components: - type: Transform - pos: -71.5,71.5 + pos: 62.5,-29.5 parent: 2 - uid: 11374 components: - type: Transform - pos: -70.5,71.5 + pos: 62.5,-30.5 parent: 2 - uid: 11375 components: - type: Transform - pos: -53.5,75.5 + pos: 46.5,31.5 parent: 2 - uid: 11376 components: - type: Transform - pos: -69.5,75.5 + pos: 45.5,32.5 parent: 2 - uid: 11377 components: - type: Transform - pos: -70.5,75.5 + pos: 50.5,26.5 parent: 2 - uid: 11378 components: - type: Transform - pos: -74.5,75.5 + pos: 43.5,32.5 parent: 2 - uid: 11379 components: - type: Transform - pos: -74.5,71.5 + pos: 60.5,19.5 parent: 2 - uid: 11380 components: - type: Transform - pos: -56.5,72.5 + pos: 54.5,19.5 parent: 2 - uid: 11381 components: - type: Transform - pos: -52.5,75.5 + pos: 55.5,19.5 parent: 2 - uid: 11382 components: - type: Transform - pos: -71.5,75.5 + pos: 56.5,19.5 parent: 2 - uid: 11383 components: - type: Transform - pos: -72.5,75.5 + pos: 58.5,19.5 parent: 2 - uid: 11384 components: - type: Transform - pos: -72.5,71.5 + pos: 59.5,19.5 parent: 2 - uid: 11385 components: - type: Transform - pos: -73.5,71.5 + pos: 51.5,19.5 parent: 2 - uid: 11386 components: - type: Transform - pos: -73.5,75.5 + pos: 71.5,2.5 parent: 2 - uid: 11387 components: - type: Transform - pos: -65.5,70.5 + pos: 49.5,27.5 parent: 2 - uid: 11388 components: - type: Transform - pos: -61.5,70.5 + pos: 51.5,24.5 parent: 2 - uid: 11389 components: - type: Transform - pos: -63.5,70.5 + pos: 51.5,25.5 parent: 2 - uid: 11390 components: - type: Transform - pos: -59.5,70.5 + pos: 51.5,23.5 parent: 2 - uid: 11391 components: - type: Transform - pos: -58.5,64.5 + pos: 51.5,22.5 parent: 2 - uid: 11392 components: - type: Transform - pos: -60.5,66.5 + pos: 51.5,21.5 parent: 2 - uid: 11393 components: - type: Transform - pos: -61.5,66.5 + pos: 19.5,24.5 parent: 2 - uid: 11394 components: - type: Transform - pos: -61.5,69.5 + pos: 8.5,28.5 parent: 2 - uid: 11395 components: - type: Transform - pos: -61.5,68.5 + pos: -33.5,-45.5 parent: 2 - uid: 11396 components: - type: Transform - pos: -61.5,67.5 + pos: 70.5,-29.5 parent: 2 - uid: 11397 components: - type: Transform - pos: -66.5,70.5 + pos: 71.5,-29.5 parent: 2 - uid: 11398 components: - type: Transform - pos: -57.5,70.5 + pos: 74.5,-28.5 parent: 2 - uid: 11399 components: - type: Transform - pos: -58.5,65.5 + pos: 70.5,1.5 parent: 2 - uid: 11400 components: - type: Transform - pos: -58.5,63.5 + pos: 67.5,17.5 parent: 2 - uid: 11401 components: - type: Transform - pos: -49.5,73.5 + pos: 46.5,30.5 parent: 2 - uid: 11402 components: - type: Transform - pos: -66.5,74.5 + pos: 69.5,1.5 parent: 2 - uid: 11403 components: - type: Transform - pos: -66.5,72.5 + pos: 69.5,10.5 parent: 2 - uid: 11404 components: - type: Transform - pos: -67.5,71.5 + pos: 68.5,16.5 parent: 2 - uid: 11405 components: - type: Transform - pos: -66.5,71.5 + pos: 8.5,27.5 parent: 2 - uid: 11406 components: - type: Transform - pos: -73.5,73.5 + pos: 74.5,-29.5 parent: 2 - uid: 11407 components: - type: Transform - pos: -68.5,71.5 + pos: 17.5,24.5 parent: 2 - uid: 11408 components: - type: Transform - pos: -72.5,73.5 + pos: 23.5,28.5 parent: 2 - uid: 11409 components: - type: Transform - pos: -69.5,71.5 + pos: -0.5,47.5 parent: 2 - uid: 11410 components: - type: Transform - pos: -74.5,73.5 + pos: 0.5,47.5 parent: 2 - uid: 11411 components: - type: Transform - pos: -71.5,73.5 + pos: 1.5,47.5 parent: 2 - uid: 11412 components: - type: Transform - pos: -54.5,63.5 + pos: 2.5,47.5 parent: 2 - uid: 11413 components: - type: Transform - pos: -52.5,63.5 + pos: 3.5,47.5 parent: 2 - uid: 11414 components: - type: Transform - pos: -51.5,63.5 + pos: 4.5,47.5 parent: 2 - uid: 11415 components: - type: Transform - pos: -50.5,73.5 + pos: 5.5,47.5 parent: 2 - uid: 11416 components: - type: Transform - pos: 61.5,-9.5 + pos: 6.5,47.5 parent: 2 - uid: 11417 components: - type: Transform - pos: 76.5,18.5 + pos: 7.5,47.5 parent: 2 - uid: 11418 components: - type: Transform - pos: -49.5,75.5 + pos: 8.5,47.5 parent: 2 - uid: 11419 components: - type: Transform - pos: 75.5,18.5 + pos: 9.5,47.5 parent: 2 - uid: 11420 components: - type: Transform - pos: 71.5,13.5 + pos: 9.5,46.5 parent: 2 - uid: 11421 components: - type: Transform - pos: -60.5,75.5 + pos: 9.5,45.5 parent: 2 - uid: 11422 components: - type: Transform - pos: -50.5,75.5 + pos: 10.5,45.5 parent: 2 - uid: 11423 components: - type: Transform - pos: -62.5,74.5 + pos: 11.5,45.5 parent: 2 - uid: 11424 components: - type: Transform - pos: -64.5,70.5 + pos: 12.5,45.5 parent: 2 - uid: 11425 components: - type: Transform - pos: -55.5,73.5 + pos: 13.5,45.5 parent: 2 - uid: 11426 components: - type: Transform - pos: -58.5,74.5 + pos: 13.5,44.5 parent: 2 - uid: 11427 components: - type: Transform - pos: -48.5,75.5 + pos: 13.5,43.5 parent: 2 - uid: 11428 components: - type: Transform - pos: -60.5,74.5 + pos: 13.5,42.5 parent: 2 - uid: 11429 components: - type: Transform - pos: -62.5,75.5 + pos: 13.5,41.5 parent: 2 - uid: 11430 components: - type: Transform - pos: -54.5,73.5 + pos: 13.5,40.5 parent: 2 - uid: 11431 components: - type: Transform - pos: -36.5,58.5 + pos: 13.5,39.5 parent: 2 - uid: 11432 components: - type: Transform - pos: -49.5,58.5 + pos: 13.5,38.5 parent: 2 - uid: 11433 components: - type: Transform - pos: -48.5,58.5 + pos: 13.5,37.5 parent: 2 - uid: 11434 components: - type: Transform - pos: -51.5,62.5 + pos: 13.5,36.5 parent: 2 - uid: 11435 components: - type: Transform - pos: -51.5,58.5 + pos: 13.5,35.5 parent: 2 - uid: 11436 components: - type: Transform - pos: -51.5,59.5 + pos: 13.5,34.5 parent: 2 - uid: 11437 components: - type: Transform - pos: -32.5,57.5 + pos: 13.5,33.5 parent: 2 - uid: 11438 components: - type: Transform - pos: -33.5,57.5 + pos: 13.5,32.5 parent: 2 - uid: 11439 components: - type: Transform - pos: -45.5,60.5 + pos: 13.5,31.5 parent: 2 - uid: 11440 components: - type: Transform - pos: -51.5,60.5 + pos: 12.5,31.5 parent: 2 - uid: 11441 components: - type: Transform - pos: -50.5,58.5 + pos: 10.5,31.5 parent: 2 - uid: 11442 components: - type: Transform - pos: 77.5,18.5 + pos: -25.5,59.5 parent: 2 - uid: 11443 components: - type: Transform - pos: -115.5,27.5 + pos: -26.5,59.5 parent: 2 - uid: 11444 components: - type: Transform - pos: -115.5,29.5 + pos: -27.5,59.5 parent: 2 - uid: 11445 components: - type: Transform - pos: -115.5,28.5 + pos: -28.5,59.5 parent: 2 - uid: 11446 components: - type: Transform - pos: -115.5,31.5 + pos: -29.5,59.5 parent: 2 - uid: 11447 components: - type: Transform - pos: -115.5,32.5 + pos: -30.5,59.5 parent: 2 - uid: 11448 components: - type: Transform - pos: -128.5,9.5 + pos: -30.5,58.5 parent: 2 - uid: 11449 components: - type: Transform - pos: -130.5,9.5 + pos: -31.5,58.5 parent: 2 - uid: 11450 components: - type: Transform - pos: -56.5,74.5 + pos: -31.5,57.5 parent: 2 - uid: 11451 components: - type: Transform - pos: -59.5,66.5 + pos: -31.5,56.5 parent: 2 - uid: 11452 components: - type: Transform - pos: -55.5,71.5 + pos: -31.5,55.5 parent: 2 - uid: 11453 components: - type: Transform - pos: -56.5,73.5 + pos: 21.5,26.5 parent: 2 - uid: 11454 components: - type: Transform - pos: -48.5,73.5 + pos: 21.5,27.5 parent: 2 - uid: 11455 components: - type: Transform - pos: -54.5,71.5 + pos: 21.5,28.5 parent: 2 - uid: 11456 components: - type: Transform - pos: -35.5,57.5 + pos: 26.5,28.5 parent: 2 - uid: 11457 components: - type: Transform - pos: -35.5,58.5 + pos: 25.5,28.5 parent: 2 - uid: 11458 components: - type: Transform - pos: -46.5,60.5 + pos: 24.5,28.5 parent: 2 - uid: 11459 components: - type: Transform - pos: -34.5,57.5 + pos: 22.5,28.5 parent: 2 - uid: 11460 components: - type: Transform - pos: -119.5,25.5 + pos: 27.5,28.5 parent: 2 - uid: 11461 components: - type: Transform - pos: -116.5,27.5 + pos: 28.5,28.5 parent: 2 - uid: 11462 components: - type: Transform - pos: -118.5,27.5 + pos: 29.5,28.5 parent: 2 - uid: 11463 components: - type: Transform - pos: -119.5,27.5 + pos: 30.5,28.5 parent: 2 - uid: 11464 components: - type: Transform - pos: -126.5,9.5 + pos: 31.5,28.5 parent: 2 - uid: 11465 components: - type: Transform - pos: -129.5,9.5 + pos: 32.5,28.5 parent: 2 - uid: 11466 components: - type: Transform - pos: -117.5,27.5 + pos: 33.5,28.5 parent: 2 - uid: 11467 components: - type: Transform - pos: -127.5,9.5 + pos: 34.5,28.5 parent: 2 - uid: 11468 components: - type: Transform - pos: -119.5,26.5 + pos: 35.5,28.5 parent: 2 - uid: 11469 components: - type: Transform - pos: -57.5,67.5 + pos: 36.5,28.5 parent: 2 - uid: 11470 components: - type: Transform - pos: -58.5,67.5 + pos: 37.5,28.5 parent: 2 - uid: 11471 components: - type: Transform - pos: -55.5,67.5 + pos: 37.5,28.5 parent: 2 - uid: 11472 components: - type: Transform - pos: -56.5,63.5 + pos: 37.5,29.5 parent: 2 - uid: 11473 components: - type: Transform - pos: -57.5,63.5 + pos: 37.5,30.5 parent: 2 - uid: 11474 components: - type: Transform - pos: -57.5,64.5 + pos: 37.5,31.5 parent: 2 - uid: 11475 components: - type: Transform - pos: -53.5,63.5 + pos: 37.5,32.5 parent: 2 - uid: 11476 components: - type: Transform - pos: -57.5,65.5 + pos: 38.5,32.5 parent: 2 - uid: 11477 components: - type: Transform - pos: -53.5,73.5 + pos: 39.5,32.5 parent: 2 - uid: 11478 components: - type: Transform - pos: -52.5,73.5 + pos: 40.5,32.5 parent: 2 - uid: 11479 components: - type: Transform - pos: -51.5,73.5 + pos: 41.5,32.5 parent: 2 - uid: 11480 components: - type: Transform - pos: -51.5,61.5 + pos: 9.5,31.5 parent: 2 - uid: 11481 components: - type: Transform - pos: -58.5,66.5 + pos: 60.5,18.5 parent: 2 - uid: 11482 components: - type: Transform - pos: -53.5,71.5 + pos: 61.5,18.5 parent: 2 - uid: 11483 components: - type: Transform - pos: -52.5,71.5 + pos: 62.5,18.5 parent: 2 - uid: 11484 components: - type: Transform - pos: -51.5,71.5 + pos: 63.5,18.5 parent: 2 - uid: 11485 components: - type: Transform - pos: -50.5,71.5 + pos: 63.5,17.5 parent: 2 - uid: 11486 components: - type: Transform - pos: -49.5,71.5 + pos: 64.5,17.5 parent: 2 - uid: 11487 components: - type: Transform - pos: -48.5,71.5 + pos: 66.5,17.5 parent: 2 - uid: 11488 components: - type: Transform - pos: -64.5,71.5 + pos: 68.5,17.5 parent: 2 - uid: 11489 components: - type: Transform - pos: -64.5,72.5 + pos: 65.5,17.5 parent: 2 - uid: 11490 components: - type: Transform - pos: -64.5,73.5 + pos: 68.5,15.5 parent: 2 - uid: 11491 components: - type: Transform - pos: -64.5,74.5 + pos: 68.5,14.5 parent: 2 - uid: 11492 components: - type: Transform - pos: -64.5,75.5 + pos: 62.5,-6.5 parent: 2 - uid: 11493 components: - type: Transform - pos: -62.5,70.5 + pos: 69.5,14.5 parent: 2 - uid: 11494 components: - type: Transform - pos: -62.5,71.5 + pos: 69.5,13.5 parent: 2 - uid: 11495 components: - type: Transform - pos: -62.5,72.5 + pos: 69.5,11.5 parent: 2 - uid: 11496 components: - type: Transform - pos: -62.5,73.5 + pos: 69.5,12.5 parent: 2 - uid: 11497 components: - type: Transform - pos: -56.5,75.5 + pos: 70.5,10.5 parent: 2 - uid: 11498 components: - type: Transform - pos: -55.5,75.5 + pos: 70.5,9.5 parent: 2 - uid: 11499 components: - type: Transform - pos: -60.5,70.5 + pos: 67.5,-29.5 parent: 2 - uid: 11500 components: - type: Transform - pos: -60.5,71.5 + pos: 71.5,9.5 parent: 2 - uid: 11501 components: - type: Transform - pos: -60.5,72.5 + pos: 71.5,8.5 parent: 2 - uid: 11502 components: - type: Transform - pos: -60.5,73.5 + pos: 71.5,7.5 parent: 2 - uid: 11503 components: - type: Transform - pos: -58.5,70.5 + pos: 71.5,6.5 parent: 2 - uid: 11504 components: - type: Transform - pos: -58.5,71.5 + pos: 72.5,6.5 parent: 2 - uid: 11505 components: - type: Transform - pos: -58.5,72.5 + pos: 72.5,5.5 parent: 2 - uid: 11506 components: - type: Transform - pos: -58.5,73.5 + pos: 72.5,4.5 parent: 2 - uid: 11507 components: - type: Transform - pos: -60.5,76.5 + pos: 72.5,3.5 parent: 2 - uid: 11508 components: - type: Transform - pos: -61.5,76.5 + pos: 72.5,2.5 parent: 2 - uid: 11509 components: - type: Transform - pos: -62.5,76.5 + pos: 71.5,1.5 parent: 2 - uid: 11510 components: - type: Transform - pos: 72.5,14.5 + pos: 69.5,0.5 parent: 2 - uid: 11511 components: - type: Transform - pos: -38.5,62.5 + pos: 68.5,0.5 parent: 2 - uid: 11512 components: - type: Transform - pos: 72.5,16.5 + pos: 68.5,-0.5 parent: 2 - uid: 11513 components: - type: Transform - pos: 72.5,15.5 + pos: 68.5,-1.5 parent: 2 - uid: 11514 components: - type: Transform - pos: 74.5,17.5 + pos: 68.5,-2.5 parent: 2 - uid: 11515 components: - type: Transform - pos: 73.5,16.5 + pos: 67.5,-2.5 parent: 2 - uid: 11516 components: - type: Transform - pos: 74.5,16.5 + pos: 66.5,-3.5 parent: 2 - uid: 11517 components: - type: Transform - pos: 74.5,18.5 + pos: 67.5,-3.5 parent: 2 - uid: 11518 components: - type: Transform - pos: -47.5,58.5 + pos: 66.5,-4.5 parent: 2 - uid: 11519 components: - type: Transform - pos: -47.5,58.5 + pos: 66.5,-5.5 parent: 2 - uid: 11520 components: - type: Transform - pos: -47.5,58.5 + pos: 65.5,-5.5 parent: 2 - uid: 11521 components: - type: Transform - pos: -46.5,58.5 + pos: 64.5,-5.5 parent: 2 - uid: 11522 components: - type: Transform - pos: -46.5,59.5 + pos: 64.5,-6.5 parent: 2 - uid: 11523 components: - type: Transform - pos: 77.5,17.5 + pos: 63.5,-6.5 parent: 2 - uid: 11524 components: - type: Transform - pos: -115.5,30.5 + pos: 61.5,-6.5 parent: 2 - uid: 11525 components: - type: Transform - pos: -118.5,16.5 + pos: 11.5,-46.5 parent: 2 - uid: 11526 components: - type: Transform - pos: -118.5,24.5 + pos: 11.5,-45.5 parent: 2 - uid: 11527 components: - type: Transform - pos: -118.5,20.5 + pos: 11.5,-44.5 parent: 2 - uid: 11528 components: - type: Transform - pos: -119.5,14.5 + pos: 11.5,-43.5 parent: 2 - uid: 11529 components: - type: Transform - pos: -119.5,15.5 + pos: 10.5,-43.5 parent: 2 - uid: 11530 components: - type: Transform - pos: -119.5,16.5 + pos: 9.5,-43.5 parent: 2 - uid: 11531 components: - type: Transform - pos: -119.5,17.5 + pos: 8.5,-43.5 parent: 2 - uid: 11532 components: - type: Transform - pos: -119.5,18.5 + pos: 7.5,-43.5 parent: 2 - uid: 11533 components: - type: Transform - pos: -119.5,19.5 + pos: 6.5,-43.5 parent: 2 - uid: 11534 components: - type: Transform - pos: -119.5,20.5 + pos: 5.5,-43.5 parent: 2 - uid: 11535 components: - type: Transform - pos: -119.5,22.5 + pos: 4.5,-43.5 parent: 2 - uid: 11536 components: - type: Transform - pos: -119.5,21.5 + pos: 3.5,-43.5 parent: 2 - uid: 11537 components: - type: Transform - pos: -119.5,23.5 + pos: 2.5,-43.5 parent: 2 - uid: 11538 components: - type: Transform - pos: -119.5,24.5 + pos: 1.5,-43.5 parent: 2 - uid: 11539 components: - type: Transform - pos: -115.5,33.5 + pos: 1.5,-42.5 parent: 2 - uid: 11540 components: - type: Transform - pos: -115.5,34.5 + pos: 1.5,-41.5 parent: 2 - uid: 11541 components: - type: Transform - pos: -114.5,34.5 + pos: 0.5,-41.5 parent: 2 - uid: 11542 components: - type: Transform - pos: -113.5,34.5 + pos: -1.5,-41.5 parent: 2 - uid: 11543 components: - type: Transform - pos: -112.5,34.5 + pos: -6.5,-45.5 parent: 2 - uid: 11544 components: - type: Transform - pos: -111.5,34.5 + pos: -5.5,-45.5 parent: 2 - uid: 11545 components: - type: Transform - pos: -110.5,34.5 + pos: -4.5,-45.5 parent: 2 - uid: 11546 components: - type: Transform - pos: -109.5,34.5 + pos: -3.5,-45.5 parent: 2 - uid: 11547 components: - type: Transform - pos: -108.5,34.5 + pos: -2.5,-45.5 parent: 2 - uid: 11548 components: - type: Transform - pos: -107.5,34.5 + pos: -1.5,-45.5 parent: 2 - uid: 11549 components: - type: Transform - pos: -106.5,34.5 + pos: -1.5,-44.5 parent: 2 - uid: 11550 components: - type: Transform - pos: -106.5,34.5 + pos: -1.5,-43.5 parent: 2 - uid: 11551 components: - type: Transform - pos: -105.5,34.5 + pos: 11.5,25.5 parent: 2 - uid: 11552 components: - type: Transform - pos: -104.5,34.5 + pos: 8.5,25.5 parent: 2 - uid: 11553 components: - type: Transform - pos: -103.5,34.5 + pos: 8.5,26.5 parent: 2 - uid: 11554 components: - type: Transform - pos: -102.5,34.5 + pos: 11.5,31.5 parent: 2 - uid: 11555 components: - type: Transform - pos: -102.5,33.5 + pos: 10.5,25.5 parent: 2 - uid: 11556 components: - type: Transform - pos: -102.5,32.5 + pos: 9.5,25.5 parent: 2 - uid: 11557 components: - type: Transform - pos: -102.5,31.5 + pos: -0.5,13.5 parent: 2 - uid: 11558 components: - type: Transform - pos: -102.5,30.5 + pos: -1.5,13.5 parent: 2 - uid: 11559 components: - type: Transform - pos: -101.5,30.5 + pos: -2.5,13.5 parent: 2 - uid: 11560 components: - type: Transform - pos: -100.5,30.5 + pos: -2.5,12.5 parent: 2 - uid: 11561 components: - type: Transform - pos: -99.5,30.5 + pos: -3.5,12.5 parent: 2 - uid: 11562 components: - type: Transform - pos: -99.5,29.5 + pos: -3.5,11.5 parent: 2 - uid: 11563 components: - type: Transform - pos: -99.5,28.5 + pos: -4.5,11.5 parent: 2 - uid: 11564 components: - type: Transform - pos: -99.5,27.5 + pos: -5.5,11.5 parent: 2 - uid: 11565 components: - type: Transform - pos: -35.5,-64.5 + pos: -6.5,11.5 parent: 2 - uid: 11566 components: - type: Transform - pos: -34.5,-64.5 + pos: -7.5,11.5 parent: 2 - uid: 11567 components: - type: Transform - pos: -39.5,-64.5 + pos: -7.5,10.5 parent: 2 - uid: 11568 components: - type: Transform - pos: -31.5,-64.5 + pos: -7.5,9.5 parent: 2 - uid: 11569 components: - type: Transform - pos: -32.5,-64.5 + pos: -7.5,8.5 parent: 2 - uid: 11570 components: - type: Transform - pos: -30.5,-64.5 + pos: -7.5,7.5 parent: 2 - uid: 11571 components: - type: Transform - pos: -37.5,-64.5 + pos: -7.5,6.5 parent: 2 - uid: 11572 components: - type: Transform - pos: -36.5,-64.5 + pos: -6.5,6.5 parent: 2 - uid: 11573 components: - type: Transform - pos: -29.5,-64.5 + pos: -6.5,5.5 parent: 2 - uid: 11574 components: - type: Transform - pos: -38.5,-64.5 + pos: -6.5,4.5 parent: 2 - uid: 11575 components: - type: Transform - pos: -37.5,-48.5 + pos: -6.5,3.5 parent: 2 - uid: 11576 components: - type: Transform - pos: -40.5,-51.5 + pos: -6.5,2.5 parent: 2 - uid: 11577 components: - type: Transform - pos: -37.5,-46.5 + pos: -6.5,1.5 parent: 2 - uid: 11578 components: - type: Transform - pos: -41.5,-53.5 + pos: -123.5,13.5 parent: 2 - uid: 11579 components: - type: Transform - pos: -40.5,-50.5 + pos: -9.5,0.5 parent: 2 - uid: 11580 components: - type: Transform - pos: -39.5,-50.5 + pos: -124.5,13.5 parent: 2 - uid: 11581 components: - type: Transform - pos: -37.5,-47.5 + pos: -14.5,-0.5 parent: 2 - uid: 11582 components: - type: Transform - pos: -41.5,-54.5 + pos: -120.5,13.5 parent: 2 - uid: 11583 components: - type: Transform - pos: -38.5,-50.5 + pos: -119.5,13.5 parent: 2 - uid: 11584 components: - type: Transform - pos: -38.5,-49.5 + pos: -125.5,6.5 parent: 2 - uid: 11585 components: - type: Transform - pos: -38.5,-48.5 + pos: -125.5,10.5 parent: 2 - uid: 11586 components: - type: Transform - pos: -29.5,-66.5 + pos: -125.5,7.5 parent: 2 - uid: 11587 components: - type: Transform - pos: -30.5,-66.5 + pos: -125.5,8.5 parent: 2 - uid: 11588 components: - type: Transform - pos: -31.5,-66.5 + pos: -125.5,9.5 parent: 2 - uid: 11589 components: - type: Transform - pos: -32.5,-66.5 + pos: -124.5,12.5 parent: 2 - uid: 11590 components: - type: Transform - pos: -33.5,-66.5 + pos: -122.5,13.5 parent: 2 - uid: 11591 components: - type: Transform - pos: -34.5,-66.5 + pos: -121.5,13.5 parent: 2 - uid: 11592 components: - type: Transform - pos: -35.5,-66.5 + pos: -124.5,11.5 parent: 2 - uid: 11593 components: - type: Transform - pos: -36.5,-66.5 + pos: -124.5,10.5 parent: 2 - uid: 11594 components: - type: Transform - pos: -37.5,-66.5 + pos: -11.5,-0.5 parent: 2 - uid: 11595 components: - type: Transform - pos: -38.5,-66.5 + pos: -10.5,-0.5 parent: 2 - uid: 11596 components: - type: Transform - pos: -39.5,-66.5 + pos: -6.5,0.5 parent: 2 - uid: 11597 components: - type: Transform - pos: -39.5,-68.5 + pos: -8.5,0.5 parent: 2 - uid: 11598 components: - type: Transform - pos: -38.5,-68.5 + pos: -7.5,0.5 parent: 2 - uid: 11599 components: - type: Transform - pos: -37.5,-68.5 + pos: -12.5,-0.5 parent: 2 - uid: 11600 components: - type: Transform - pos: -36.5,-68.5 + pos: -13.5,-0.5 parent: 2 - uid: 11601 components: - type: Transform - pos: -35.5,-68.5 + pos: -15.5,-0.5 parent: 2 - uid: 11602 components: - type: Transform - pos: -34.5,-68.5 + pos: -10.5,0.5 parent: 2 - uid: 11603 components: - type: Transform - pos: -33.5,-68.5 + pos: -134.5,9.5 parent: 2 - uid: 11604 components: - type: Transform - pos: -32.5,-68.5 + pos: -132.5,11.5 parent: 2 - uid: 11605 components: - type: Transform - pos: -31.5,-68.5 + pos: -134.5,8.5 parent: 2 - uid: 11606 components: - type: Transform - pos: -30.5,-68.5 + pos: -131.5,9.5 parent: 2 - uid: 11607 components: - type: Transform - pos: -29.5,-68.5 + pos: -131.5,8.5 parent: 2 - uid: 11608 components: - type: Transform - pos: -29.5,-70.5 + pos: -132.5,10.5 parent: 2 - uid: 11609 components: - type: Transform - pos: -30.5,-70.5 + pos: -132.5,9.5 parent: 2 - uid: 11610 components: - type: Transform - pos: -31.5,-70.5 + pos: -133.5,9.5 parent: 2 - uid: 11611 components: - type: Transform - pos: -32.5,-70.5 + pos: -134.5,11.5 parent: 2 - uid: 11612 components: - type: Transform - pos: -33.5,-70.5 + pos: -133.5,11.5 parent: 2 - uid: 11613 components: - type: Transform - pos: -34.5,-70.5 + pos: -125.5,5.5 parent: 2 - uid: 11614 components: - type: Transform - pos: -35.5,-70.5 + pos: -125.5,4.5 parent: 2 - uid: 11615 components: - type: Transform - pos: -36.5,-70.5 + pos: -125.5,3.5 parent: 2 - uid: 11616 components: - type: Transform - pos: -37.5,-70.5 + pos: -124.5,3.5 parent: 2 - uid: 11617 components: - type: Transform - pos: -38.5,-70.5 + pos: -124.5,2.5 parent: 2 - uid: 11618 components: - type: Transform - pos: -39.5,-70.5 + pos: -124.5,1.5 parent: 2 - uid: 11619 components: - type: Transform - pos: -34.5,-69.5 + pos: -124.5,0.5 parent: 2 - uid: 11620 components: - type: Transform - pos: -34.5,-67.5 + pos: -123.5,0.5 parent: 2 - uid: 11621 components: - type: Transform - pos: -34.5,-65.5 + pos: -122.5,0.5 parent: 2 - uid: 11622 components: - type: Transform - pos: -34.5,-71.5 + pos: -121.5,0.5 parent: 2 - uid: 11623 components: - type: Transform - pos: -39.5,-57.5 + pos: -120.5,0.5 parent: 2 - uid: 11624 components: - type: Transform - pos: -40.5,-55.5 + pos: -119.5,0.5 parent: 2 - uid: 11625 components: - type: Transform - pos: -40.5,-56.5 + pos: -54.5,75.5 parent: 2 - uid: 11626 components: - type: Transform - pos: -41.5,-55.5 + pos: -51.5,75.5 parent: 2 - uid: 11627 components: - type: Transform - pos: -34.5,-62.5 + pos: -56.5,71.5 parent: 2 - uid: 11628 components: - type: Transform - pos: -34.5,-63.5 + pos: -56.5,70.5 parent: 2 - uid: 11629 components: - type: Transform - pos: -35.5,-62.5 + pos: -58.5,75.5 parent: 2 - uid: 11630 components: - type: Transform - pos: -34.5,-72.5 + pos: -67.5,73.5 parent: 2 - uid: 11631 components: - type: Transform - pos: -39.5,-59.5 + pos: -68.5,73.5 parent: 2 - uid: 11632 components: - type: Transform - pos: -39.5,-58.5 + pos: -66.5,75.5 parent: 2 - uid: 11633 components: - type: Transform - pos: -38.5,-59.5 + pos: -66.5,73.5 parent: 2 - uid: 11634 components: - type: Transform - pos: -40.5,-57.5 + pos: -69.5,73.5 parent: 2 - uid: 11635 components: - type: Transform - pos: -34.5,-73.5 + pos: -70.5,73.5 parent: 2 - uid: 11636 components: - type: Transform - pos: -33.5,-72.5 + pos: -67.5,75.5 parent: 2 - uid: 11637 components: - type: Transform - pos: -32.5,-72.5 + pos: -68.5,75.5 parent: 2 - uid: 11638 components: - type: Transform - pos: -31.5,-72.5 + pos: -71.5,71.5 parent: 2 - uid: 11639 components: - type: Transform - pos: -30.5,-72.5 + pos: -70.5,71.5 parent: 2 - uid: 11640 components: - type: Transform - pos: -29.5,-72.5 + pos: -53.5,75.5 parent: 2 - uid: 11641 components: - type: Transform - pos: -35.5,-72.5 + pos: -69.5,75.5 parent: 2 - uid: 11642 components: - type: Transform - pos: -38.5,-72.5 + pos: -70.5,75.5 parent: 2 - uid: 11643 components: - type: Transform - pos: -39.5,-72.5 + pos: -74.5,75.5 parent: 2 - uid: 11644 components: - type: Transform - pos: -36.5,-72.5 + pos: -74.5,71.5 parent: 2 - uid: 11645 components: - type: Transform - pos: -37.5,-72.5 + pos: -56.5,72.5 parent: 2 - uid: 11646 components: - type: Transform - pos: 2.5,-14.5 + pos: -52.5,75.5 parent: 2 - uid: 11647 components: - type: Transform - pos: 2.5,-13.5 + pos: -71.5,75.5 parent: 2 - uid: 11648 components: - type: Transform - pos: 2.5,-14.5 + pos: -72.5,75.5 parent: 2 - uid: 11649 components: - type: Transform - pos: 2.5,-11.5 + pos: -72.5,71.5 parent: 2 - uid: 11650 components: - type: Transform - pos: 2.5,-12.5 + pos: -73.5,71.5 parent: 2 - uid: 11651 components: - type: Transform - pos: 4.5,-11.5 + pos: -73.5,75.5 parent: 2 - uid: 11652 components: - type: Transform - pos: 3.5,-11.5 + pos: -65.5,70.5 parent: 2 - uid: 11653 components: - type: Transform - pos: 2.5,-15.5 + pos: -61.5,70.5 parent: 2 - uid: 11654 components: - type: Transform - pos: -28.5,-41.5 + pos: -63.5,70.5 parent: 2 - uid: 11655 components: - type: Transform - pos: -28.5,-39.5 + pos: -59.5,70.5 parent: 2 - uid: 11656 components: - type: Transform - pos: -28.5,-38.5 + pos: -58.5,64.5 parent: 2 - uid: 11657 components: - type: Transform - pos: -28.5,-40.5 + pos: -60.5,66.5 parent: 2 - uid: 11658 components: - type: Transform - pos: -29.5,-38.5 + pos: -61.5,66.5 parent: 2 - uid: 11659 components: - type: Transform - pos: -27.5,-38.5 + pos: -61.5,69.5 parent: 2 - uid: 11660 components: - type: Transform - pos: -30.5,-38.5 + pos: -61.5,68.5 parent: 2 - uid: 11661 components: - type: Transform - pos: -26.5,-38.5 + pos: -61.5,67.5 parent: 2 - uid: 11662 components: - type: Transform - pos: -26.5,-39.5 + pos: -66.5,70.5 parent: 2 - uid: 11663 components: - type: Transform - pos: -27.5,-39.5 + pos: -57.5,70.5 parent: 2 - uid: 11664 components: - type: Transform - pos: -29.5,-39.5 + pos: -58.5,65.5 parent: 2 - uid: 11665 components: - type: Transform - pos: -30.5,-39.5 + pos: -58.5,63.5 parent: 2 - uid: 11666 components: - type: Transform - pos: -30.5,-37.5 + pos: -49.5,73.5 parent: 2 - uid: 11667 components: - type: Transform - pos: -28.5,-37.5 + pos: -66.5,74.5 parent: 2 - uid: 11668 components: - type: Transform - pos: -27.5,-37.5 + pos: -66.5,72.5 parent: 2 - uid: 11669 components: - type: Transform - pos: -26.5,-37.5 + pos: -67.5,71.5 parent: 2 - uid: 11670 components: - type: Transform - pos: -29.5,-37.5 + pos: -66.5,71.5 parent: 2 - uid: 11671 components: - type: Transform - pos: -1.5,-46.5 + pos: -73.5,73.5 parent: 2 - uid: 11672 components: - type: Transform - pos: -1.5,-47.5 + pos: -68.5,71.5 parent: 2 - uid: 11673 components: - type: Transform - pos: -1.5,-48.5 + pos: -72.5,73.5 parent: 2 - uid: 11674 components: - type: Transform - pos: -0.5,-48.5 + pos: -69.5,71.5 parent: 2 - uid: 11675 components: - type: Transform - pos: 1.5,-48.5 + pos: -74.5,73.5 parent: 2 - uid: 11676 components: - type: Transform - pos: 2.5,-48.5 + pos: -71.5,73.5 parent: 2 - uid: 11677 components: - type: Transform - pos: 0.5,-48.5 + pos: -54.5,63.5 parent: 2 - uid: 11678 components: - type: Transform - pos: 3.5,-48.5 + pos: -52.5,63.5 parent: 2 - uid: 11679 components: - type: Transform - pos: 3.5,-49.5 + pos: -51.5,63.5 parent: 2 - uid: 11680 components: - type: Transform - pos: 3.5,-50.5 + pos: -50.5,73.5 parent: 2 - uid: 11681 components: - type: Transform - pos: 3.5,-51.5 + pos: 61.5,-9.5 parent: 2 - - uid: 40710 - components: - - type: Transform - pos: 63.5,49.5 - parent: 40203 - - uid: 40711 - components: - - type: Transform - pos: 63.5,48.5 - parent: 40203 - - uid: 40712 - components: - - type: Transform - pos: 63.5,50.5 - parent: 40203 - - uid: 40713 - components: - - type: Transform - pos: 63.5,51.5 - parent: 40203 - - uid: 40714 - components: - - type: Transform - pos: 63.5,52.5 - parent: 40203 - - uid: 40715 - components: - - type: Transform - pos: 63.5,53.5 - parent: 40203 - - uid: 40716 - components: - - type: Transform - pos: 63.5,54.5 - parent: 40203 - - uid: 40717 - components: - - type: Transform - pos: 63.5,55.5 - parent: 40203 - - uid: 40718 - components: - - type: Transform - pos: 63.5,56.5 - parent: 40203 - - uid: 40719 - components: - - type: Transform - pos: 63.5,57.5 - parent: 40203 - - uid: 40720 - components: - - type: Transform - pos: 63.5,58.5 - parent: 40203 - - uid: 40721 - components: - - type: Transform - pos: 64.5,58.5 - parent: 40203 - - uid: 40722 - components: - - type: Transform - pos: 63.5,60.5 - parent: 40203 - - uid: 40723 - components: - - type: Transform - pos: 64.5,60.5 - parent: 40203 - - uid: 40724 - components: - - type: Transform - pos: 65.5,60.5 - parent: 40203 - - uid: 40725 - components: - - type: Transform - pos: 67.5,59.5 - parent: 40203 - - uid: 40726 - components: - - type: Transform - pos: 68.5,59.5 - parent: 40203 - - uid: 40727 - components: - - type: Transform - pos: 68.5,58.5 - parent: 40203 - - uid: 40728 - components: - - type: Transform - pos: 67.5,60.5 - parent: 40203 - - uid: 40729 - components: - - type: Transform - pos: 66.5,60.5 - parent: 40203 - - uid: 40730 - components: - - type: Transform - pos: 64.5,59.5 - parent: 40203 - - uid: 40731 - components: - - type: Transform - pos: 63.5,59.5 - parent: 40203 - - uid: 40732 - components: - - type: Transform - pos: 57.5,37.5 - parent: 40203 - - uid: 40733 - components: - - type: Transform - pos: 47.5,37.5 - parent: 40203 - - uid: 40734 - components: - - type: Transform - pos: 47.5,39.5 - parent: 40203 - - uid: 40735 - components: - - type: Transform - pos: 47.5,40.5 - parent: 40203 - - uid: 40736 - components: - - type: Transform - pos: 47.5,38.5 - parent: 40203 - - uid: 40737 - components: - - type: Transform - pos: 56.5,44.5 - parent: 40203 - - uid: 40738 - components: - - type: Transform - pos: 54.5,44.5 - parent: 40203 - - uid: 40739 - components: - - type: Transform - pos: 53.5,44.5 - parent: 40203 - - uid: 40740 - components: - - type: Transform - pos: 52.5,44.5 - parent: 40203 - - uid: 40741 - components: - - type: Transform - pos: 55.5,44.5 - parent: 40203 - - uid: 40742 - components: - - type: Transform - pos: 57.5,39.5 - parent: 40203 - - uid: 40743 - components: - - type: Transform - pos: 57.5,40.5 - parent: 40203 - - uid: 40744 - components: - - type: Transform - pos: 57.5,41.5 - parent: 40203 - - uid: 40745 - components: - - type: Transform - pos: 57.5,38.5 - parent: 40203 - - uid: 40746 - components: - - type: Transform - pos: 57.5,42.5 - parent: 40203 - - uid: 40747 - components: - - type: Transform - pos: 57.5,43.5 - parent: 40203 - - uid: 40748 - components: - - type: Transform - pos: 56.5,43.5 - parent: 40203 - - uid: 40749 - components: - - type: Transform - pos: 52.5,45.5 - parent: 40203 - - uid: 40750 - components: - - type: Transform - pos: 52.5,46.5 - parent: 40203 - - uid: 40751 - components: - - type: Transform - pos: 52.5,47.5 - parent: 40203 - - uid: 40752 - components: - - type: Transform - pos: 52.5,48.5 - parent: 40203 - - uid: 40753 - components: - - type: Transform - pos: 55.5,49.5 - parent: 40203 - - uid: 40754 - components: - - type: Transform - pos: 53.5,48.5 - parent: 40203 - - uid: 40755 - components: - - type: Transform - pos: 54.5,48.5 - parent: 40203 - - uid: 40756 - components: - - type: Transform - pos: 55.5,48.5 - parent: 40203 - - uid: 40757 - components: - - type: Transform - pos: 57.5,49.5 - parent: 40203 - - uid: 40758 - components: - - type: Transform - pos: 56.5,49.5 - parent: 40203 - - uid: 45067 - components: - - type: Transform - pos: 9.5,9.5 - parent: 44970 - - uid: 45068 - components: - - type: Transform - pos: 10.5,9.5 - parent: 44970 -- proto: CableHVStack - entities: - uid: 11682 components: - type: Transform - rot: 6.283185307179586 rad - pos: -1.4841065,-37.77207 + pos: 76.5,18.5 parent: 2 - uid: 11683 components: - type: Transform - pos: -13.328497,-48.315002 + pos: -49.5,75.5 parent: 2 - uid: 11684 components: - type: Transform - pos: -33.49371,-43.410294 + pos: 75.5,18.5 parent: 2 - uid: 11685 components: - type: Transform - pos: 18.498898,7.7237053 + pos: 71.5,13.5 parent: 2 - uid: 11686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.6934824,-44.363564 + pos: -60.5,75.5 parent: 2 -- proto: CableHVStack1 - entities: - uid: 11687 components: - type: Transform - pos: 11.459646,57.605194 + pos: -50.5,75.5 parent: 2 - uid: 11688 components: - type: Transform - pos: 19.582397,57.45762 + pos: -62.5,74.5 parent: 2 - uid: 11689 components: - type: Transform - pos: -41.444912,-40.459023 + pos: -64.5,70.5 parent: 2 - uid: 11690 components: - type: Transform - pos: -42.491787,-38.562077 + pos: -55.5,73.5 parent: 2 - uid: 11691 components: - type: Transform - pos: -56.512455,64.49792 + pos: -58.5,74.5 parent: 2 - uid: 11692 components: - type: Transform - pos: -55.55933,64.38854 + pos: -48.5,75.5 parent: 2 - uid: 11693 components: - type: Transform - pos: -54.668705,64.49792 + pos: -60.5,74.5 parent: 2 - uid: 11694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.510124,67.48591 + pos: -62.5,75.5 parent: 2 - uid: 11695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.342136,62.54082 + pos: -54.5,73.5 parent: 2 - uid: 11696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.154636,55.47832 + pos: -36.5,58.5 parent: 2 - uid: 11697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.57651,53.47832 + pos: -49.5,58.5 parent: 2 - uid: 11698 components: - type: Transform - pos: -44.500153,61.663082 + pos: -48.5,58.5 parent: 2 - uid: 11699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.578278,61.475582 + pos: -51.5,62.5 parent: 2 - - uid: 40759 - components: - - type: Transform - pos: 47.458572,40.910576 - parent: 40203 - - uid: 40760 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.458572,42.316826 - parent: 40203 - - uid: 40761 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.067947,43.465263 - parent: 40203 - - uid: 40762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.810135,44.44964 - parent: 40203 - - uid: 40763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.171112,49.472454 - parent: 40203 - - uid: 40764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 58.733612,49.730267 - parent: 40203 -- proto: CableHVStack10 - entities: - uid: 11700 components: - type: Transform - pos: 40.520294,-49.329163 + pos: -51.5,58.5 parent: 2 -- proto: CableMV - entities: - uid: 11701 components: - type: Transform - pos: -25.5,-9.5 + pos: -51.5,59.5 parent: 2 - uid: 11702 components: - type: Transform - pos: -27.5,-10.5 + pos: -32.5,57.5 parent: 2 - uid: 11703 components: - type: Transform - pos: -28.5,-10.5 + pos: -33.5,57.5 parent: 2 - uid: 11704 components: - type: Transform - pos: -25.5,-8.5 + pos: -45.5,60.5 parent: 2 - uid: 11705 components: - type: Transform - pos: -25.5,-7.5 + pos: -51.5,60.5 parent: 2 - uid: 11706 components: - type: Transform - pos: -26.5,-10.5 + pos: -50.5,58.5 parent: 2 - uid: 11707 components: - type: Transform - pos: -29.5,-10.5 + pos: 77.5,18.5 parent: 2 - uid: 11708 components: - type: Transform - pos: 5.5,30.5 + pos: -115.5,27.5 parent: 2 - uid: 11709 components: - type: Transform - pos: -29.5,15.5 + pos: -115.5,29.5 parent: 2 - uid: 11710 components: - type: Transform - pos: -29.5,16.5 + pos: -115.5,28.5 parent: 2 - uid: 11711 components: - type: Transform - pos: -29.5,17.5 + pos: -115.5,31.5 parent: 2 - uid: 11712 components: - type: Transform - pos: 68.5,-38.5 + pos: -115.5,32.5 parent: 2 - uid: 11713 components: - type: Transform - pos: 39.5,-52.5 + pos: -128.5,9.5 parent: 2 - uid: 11714 components: - type: Transform - pos: 43.5,-53.5 + pos: -130.5,9.5 parent: 2 - uid: 11715 components: - type: Transform - pos: 91.5,-20.5 + pos: -56.5,74.5 parent: 2 - uid: 11716 components: - type: Transform - pos: 27.5,-38.5 + pos: -59.5,66.5 parent: 2 - uid: 11717 components: - type: Transform - pos: 27.5,-37.5 + pos: -55.5,71.5 parent: 2 - uid: 11718 components: - type: Transform - pos: 27.5,-36.5 + pos: -56.5,73.5 parent: 2 - uid: 11719 components: - type: Transform - pos: 37.5,-50.5 + pos: -48.5,73.5 parent: 2 - uid: 11720 components: - type: Transform - pos: 40.5,-47.5 + pos: -54.5,71.5 parent: 2 - uid: 11721 components: - type: Transform - pos: 39.5,-51.5 + pos: -35.5,57.5 parent: 2 - uid: 11722 components: - type: Transform - pos: 41.5,-47.5 + pos: -35.5,58.5 parent: 2 - uid: 11723 components: - type: Transform - pos: 37.5,-48.5 + pos: -46.5,60.5 parent: 2 - uid: 11724 components: - type: Transform - pos: 42.5,-47.5 + pos: -34.5,57.5 parent: 2 - uid: 11725 components: - type: Transform - pos: 42.5,-48.5 + pos: -119.5,25.5 parent: 2 - uid: 11726 components: - type: Transform - pos: 37.5,-52.5 + pos: -116.5,27.5 parent: 2 - uid: 11727 components: - type: Transform - pos: 38.5,-52.5 + pos: -118.5,27.5 parent: 2 - uid: 11728 components: - type: Transform - pos: 37.5,-51.5 + pos: -119.5,27.5 parent: 2 - uid: 11729 components: - type: Transform - pos: 30.5,-38.5 + pos: -126.5,9.5 parent: 2 - uid: 11730 components: - type: Transform - pos: 92.5,-20.5 + pos: -129.5,9.5 parent: 2 - uid: 11731 components: - type: Transform - pos: 93.5,-20.5 + pos: -117.5,27.5 parent: 2 - uid: 11732 components: - type: Transform - pos: 46.5,-54.5 + pos: -127.5,9.5 parent: 2 - uid: 11733 components: - type: Transform - pos: 47.5,-54.5 + pos: -119.5,26.5 parent: 2 - uid: 11734 components: - type: Transform - pos: 48.5,-54.5 + pos: -57.5,67.5 parent: 2 - uid: 11735 components: - type: Transform - pos: 49.5,-54.5 + pos: -58.5,67.5 parent: 2 - uid: 11736 components: - type: Transform - pos: 51.5,-54.5 + pos: -55.5,67.5 parent: 2 - uid: 11737 components: - type: Transform - pos: 50.5,-54.5 + pos: -56.5,63.5 parent: 2 - uid: 11738 components: - type: Transform - pos: 22.5,-42.5 + pos: -57.5,63.5 parent: 2 - uid: 11739 components: - type: Transform - pos: 32.5,-48.5 + pos: -57.5,64.5 parent: 2 - uid: 11740 components: - type: Transform - pos: 23.5,-42.5 + pos: -53.5,63.5 parent: 2 - uid: 11741 components: - type: Transform - pos: 24.5,-42.5 + pos: -57.5,65.5 parent: 2 - uid: 11742 components: - type: Transform - pos: 25.5,-42.5 + pos: -53.5,73.5 parent: 2 - uid: 11743 components: - type: Transform - pos: 26.5,-42.5 + pos: -52.5,73.5 parent: 2 - uid: 11744 components: - type: Transform - pos: 32.5,-47.5 + pos: -51.5,73.5 parent: 2 - uid: 11745 components: - type: Transform - pos: 32.5,-47.5 + pos: -51.5,61.5 parent: 2 - uid: 11746 components: - type: Transform - pos: 31.5,-47.5 + pos: -58.5,66.5 parent: 2 - uid: 11747 components: - type: Transform - pos: 44.5,-53.5 + pos: -53.5,71.5 parent: 2 - uid: 11748 components: - type: Transform - pos: 65.5,-46.5 + pos: -52.5,71.5 parent: 2 - uid: 11749 components: - type: Transform - pos: 22.5,-41.5 + pos: -51.5,71.5 parent: 2 - uid: 11750 components: - type: Transform - pos: -21.5,42.5 + pos: -50.5,71.5 parent: 2 - uid: 11751 components: - type: Transform - pos: 22.5,-38.5 + pos: -49.5,71.5 parent: 2 - uid: 11752 components: - type: Transform - pos: 22.5,-37.5 + pos: -48.5,71.5 parent: 2 - uid: 11753 components: - type: Transform - pos: 28.5,-38.5 + pos: -64.5,71.5 parent: 2 - uid: 11754 components: - type: Transform - pos: 29.5,-38.5 + pos: -64.5,72.5 parent: 2 - uid: 11755 components: - type: Transform - pos: -45.5,-1.5 + pos: -64.5,73.5 parent: 2 - uid: 11756 components: - type: Transform - pos: 15.5,6.5 + pos: -64.5,74.5 parent: 2 - uid: 11757 components: - type: Transform - pos: 76.5,-29.5 + pos: -64.5,75.5 parent: 2 - uid: 11758 components: - type: Transform - pos: 1.5,15.5 + pos: -62.5,70.5 parent: 2 - uid: 11759 components: - type: Transform - pos: 75.5,-26.5 + pos: -62.5,71.5 parent: 2 - uid: 11760 components: - type: Transform - pos: 77.5,-24.5 + pos: -62.5,72.5 parent: 2 - uid: 11761 components: - type: Transform - pos: -4.5,34.5 + pos: -62.5,73.5 parent: 2 - uid: 11762 components: - type: Transform - pos: 13.5,-42.5 + pos: -56.5,75.5 parent: 2 - uid: 11763 components: - type: Transform - pos: 12.5,-43.5 + pos: -55.5,75.5 parent: 2 - uid: 11764 components: - type: Transform - pos: 17.5,-41.5 + pos: -60.5,70.5 parent: 2 - uid: 11765 components: - type: Transform - pos: 16.5,-41.5 + pos: -60.5,71.5 parent: 2 - uid: 11766 components: - type: Transform - pos: 15.5,-41.5 + pos: -60.5,72.5 parent: 2 - uid: 11767 components: - type: Transform - pos: 14.5,-41.5 + pos: -60.5,73.5 parent: 2 - uid: 11768 components: - type: Transform - pos: 13.5,-41.5 + pos: -58.5,70.5 parent: 2 - uid: 11769 components: - type: Transform - pos: 12.5,-42.5 + pos: -58.5,71.5 parent: 2 - uid: 11770 components: - type: Transform - pos: 11.5,-43.5 + pos: -58.5,72.5 parent: 2 - uid: 11771 components: - type: Transform - pos: -3.5,36.5 + pos: -58.5,73.5 parent: 2 - uid: 11772 components: - type: Transform - pos: -4.5,36.5 + pos: -60.5,76.5 parent: 2 - uid: 11773 components: - type: Transform - pos: -2.5,36.5 + pos: -61.5,76.5 parent: 2 - uid: 11774 components: - type: Transform - pos: -36.5,-45.5 + pos: -62.5,76.5 parent: 2 - uid: 11775 components: - type: Transform - pos: -35.5,-45.5 + pos: 72.5,14.5 parent: 2 - uid: 11776 components: - type: Transform - pos: -37.5,-45.5 + pos: -38.5,62.5 parent: 2 - uid: 11777 components: - type: Transform - pos: 56.5,-37.5 + pos: 72.5,16.5 parent: 2 - uid: 11778 components: - type: Transform - pos: 66.5,-32.5 + pos: 72.5,15.5 parent: 2 - uid: 11779 components: - type: Transform - pos: 67.5,-46.5 + pos: 74.5,17.5 parent: 2 - uid: 11780 components: - type: Transform - pos: 75.5,-45.5 + pos: 73.5,16.5 parent: 2 - uid: 11781 components: - type: Transform - pos: 75.5,-44.5 + pos: 74.5,16.5 parent: 2 - uid: 11782 components: - type: Transform - pos: 68.5,-37.5 + pos: 74.5,18.5 parent: 2 - uid: 11783 components: - type: Transform - pos: 52.5,-37.5 + pos: -47.5,58.5 parent: 2 - uid: 11784 components: - type: Transform - pos: 13.5,53.5 + pos: -47.5,58.5 parent: 2 - uid: 11785 components: - type: Transform - pos: 21.5,57.5 + pos: -47.5,58.5 parent: 2 - uid: 11786 components: - type: Transform - pos: -16.5,-5.5 + pos: -46.5,58.5 parent: 2 - uid: 11787 components: - type: Transform - pos: -16.5,-6.5 + pos: -46.5,59.5 parent: 2 - uid: 11788 components: - type: Transform - pos: -16.5,-3.5 + pos: 77.5,17.5 parent: 2 - uid: 11789 components: - type: Transform - pos: -16.5,-4.5 + pos: -115.5,30.5 parent: 2 - uid: 11790 components: - type: Transform - pos: -13.5,-6.5 + pos: -118.5,16.5 parent: 2 - uid: 11791 components: - type: Transform - pos: -14.5,-6.5 + pos: -118.5,24.5 parent: 2 - uid: 11792 components: - type: Transform - pos: -11.5,-6.5 + pos: -118.5,20.5 parent: 2 - uid: 11793 components: - type: Transform - pos: -12.5,-6.5 + pos: -119.5,14.5 parent: 2 - uid: 11794 components: - type: Transform - pos: -16.5,-1.5 + pos: -119.5,15.5 parent: 2 - uid: 11795 components: - type: Transform - pos: -16.5,-2.5 + pos: -119.5,16.5 parent: 2 - uid: 11796 components: - type: Transform - pos: -15.5,-6.5 + pos: -119.5,17.5 parent: 2 - uid: 11797 components: - type: Transform - pos: 54.5,-14.5 + pos: -119.5,18.5 parent: 2 - uid: 11798 components: - type: Transform - pos: 59.5,-4.5 + pos: -119.5,19.5 parent: 2 - uid: 11799 components: - type: Transform - pos: 59.5,-5.5 + pos: -119.5,20.5 parent: 2 - uid: 11800 components: - type: Transform - pos: 59.5,-6.5 + pos: -119.5,22.5 parent: 2 - uid: 11801 components: - type: Transform - pos: 59.5,-7.5 + pos: -119.5,21.5 parent: 2 - uid: 11802 components: - type: Transform - pos: 60.5,-7.5 + pos: -119.5,23.5 parent: 2 - uid: 11803 components: - type: Transform - pos: 61.5,-7.5 + pos: -119.5,24.5 parent: 2 - uid: 11804 components: - type: Transform - pos: 61.5,-6.5 + pos: -115.5,33.5 parent: 2 - uid: 11805 components: - type: Transform - pos: 61.5,-5.5 + pos: -115.5,34.5 parent: 2 - uid: 11806 components: - type: Transform - pos: 61.5,-4.5 + pos: -114.5,34.5 parent: 2 - uid: 11807 components: - type: Transform - pos: 62.5,-4.5 + pos: -113.5,34.5 parent: 2 - uid: 11808 components: - type: Transform - pos: 61.5,-3.5 + pos: -112.5,34.5 parent: 2 - uid: 11809 components: - type: Transform - pos: 61.5,-2.5 + pos: -111.5,34.5 parent: 2 - uid: 11810 components: - type: Transform - pos: 61.5,-1.5 + pos: -110.5,34.5 parent: 2 - uid: 11811 components: - type: Transform - pos: 61.5,-0.5 + pos: -109.5,34.5 parent: 2 - uid: 11812 components: - type: Transform - pos: 61.5,0.5 + pos: -108.5,34.5 parent: 2 - uid: 11813 components: - type: Transform - pos: 61.5,1.5 + pos: -107.5,34.5 parent: 2 - uid: 11814 components: - type: Transform - pos: 61.5,2.5 + pos: -106.5,34.5 parent: 2 - uid: 11815 components: - type: Transform - pos: 61.5,3.5 + pos: -106.5,34.5 parent: 2 - uid: 11816 components: - type: Transform - pos: 61.5,4.5 + pos: -105.5,34.5 parent: 2 - uid: 11817 components: - type: Transform - pos: 61.5,5.5 + pos: -104.5,34.5 parent: 2 - uid: 11818 components: - type: Transform - pos: 61.5,6.5 + pos: -103.5,34.5 parent: 2 - uid: 11819 components: - type: Transform - pos: 61.5,7.5 + pos: -102.5,34.5 parent: 2 - uid: 11820 components: - type: Transform - pos: 61.5,7.5 + pos: -102.5,33.5 parent: 2 - uid: 11821 components: - type: Transform - pos: 60.5,7.5 + pos: -102.5,32.5 parent: 2 - uid: 11822 components: - type: Transform - pos: 59.5,7.5 + pos: -102.5,31.5 parent: 2 - uid: 11823 components: - type: Transform - pos: 59.5,8.5 + pos: -102.5,30.5 parent: 2 - uid: 11824 components: - type: Transform - pos: 44.5,27.5 + pos: -101.5,30.5 parent: 2 - uid: 11825 components: - type: Transform - pos: 44.5,29.5 + pos: -100.5,30.5 parent: 2 - uid: 11826 components: - type: Transform - pos: 44.5,28.5 + pos: -99.5,30.5 parent: 2 - uid: 11827 components: - type: Transform - pos: 33.5,28.5 + pos: -99.5,29.5 parent: 2 - uid: 11828 components: - type: Transform - pos: 46.5,29.5 + pos: -99.5,28.5 parent: 2 - uid: 11829 components: - type: Transform - pos: 45.5,29.5 + pos: -99.5,27.5 parent: 2 - uid: 11830 components: - type: Transform - pos: 38.5,25.5 + pos: -35.5,-64.5 parent: 2 - uid: 11831 components: - type: Transform - pos: 47.5,18.5 + pos: -34.5,-64.5 parent: 2 - uid: 11832 components: - type: Transform - pos: 47.5,19.5 + pos: -39.5,-64.5 parent: 2 - uid: 11833 components: - type: Transform - pos: 47.5,20.5 + pos: -31.5,-64.5 parent: 2 - uid: 11834 components: - type: Transform - pos: 47.5,21.5 + pos: -32.5,-64.5 parent: 2 - uid: 11835 components: - type: Transform - pos: 47.5,22.5 + pos: -30.5,-64.5 parent: 2 - uid: 11836 components: - type: Transform - pos: 46.5,22.5 + pos: -37.5,-64.5 parent: 2 - uid: 11837 components: - type: Transform - pos: 46.5,23.5 + pos: -36.5,-64.5 parent: 2 - uid: 11838 components: - type: Transform - pos: 46.5,24.5 + pos: -29.5,-64.5 parent: 2 - uid: 11839 components: - type: Transform - pos: 61.5,-10.5 + pos: -38.5,-64.5 parent: 2 - uid: 11840 components: - type: Transform - pos: 60.5,-11.5 + pos: -37.5,-48.5 parent: 2 - uid: 11841 components: - type: Transform - pos: 61.5,-8.5 + pos: -40.5,-51.5 parent: 2 - uid: 11842 components: - type: Transform - pos: 57.5,-12.5 + pos: -37.5,-46.5 parent: 2 - uid: 11843 components: - type: Transform - pos: 58.5,-11.5 + pos: -41.5,-53.5 parent: 2 - uid: 11844 components: - type: Transform - pos: 57.5,-13.5 + pos: -40.5,-50.5 parent: 2 - uid: 11845 components: - type: Transform - pos: 61.5,-9.5 + pos: -39.5,-50.5 parent: 2 - uid: 11846 components: - type: Transform - pos: 55.5,-15.5 + pos: -37.5,-47.5 parent: 2 - uid: 11847 components: - type: Transform - pos: 57.5,-15.5 + pos: -41.5,-54.5 parent: 2 - uid: 11848 components: - type: Transform - pos: 56.5,-15.5 + pos: -38.5,-50.5 parent: 2 - uid: 11849 components: - type: Transform - pos: 54.5,-15.5 + pos: -38.5,-49.5 parent: 2 - uid: 11850 components: - type: Transform - pos: 59.5,-11.5 + pos: -38.5,-48.5 parent: 2 - uid: 11851 components: - type: Transform - pos: 61.5,-11.5 + pos: -29.5,-66.5 parent: 2 - uid: 11852 components: - type: Transform - pos: 57.5,-11.5 + pos: -30.5,-66.5 parent: 2 - uid: 11853 components: - type: Transform - pos: 57.5,-14.5 + pos: -31.5,-66.5 parent: 2 - uid: 11854 components: - type: Transform - pos: 39.5,26.5 + pos: -32.5,-66.5 parent: 2 - uid: 11855 components: - type: Transform - pos: 39.5,25.5 + pos: -33.5,-66.5 parent: 2 - uid: 11856 components: - type: Transform - pos: 39.5,24.5 + pos: -34.5,-66.5 parent: 2 - uid: 11857 components: - type: Transform - pos: 40.5,24.5 + pos: -35.5,-66.5 parent: 2 - uid: 11858 components: - type: Transform - pos: 41.5,24.5 + pos: -36.5,-66.5 parent: 2 - uid: 11859 components: - type: Transform - pos: 42.5,24.5 + pos: -37.5,-66.5 parent: 2 - uid: 11860 components: - type: Transform - pos: 42.5,23.5 + pos: -38.5,-66.5 parent: 2 - uid: 11861 components: - type: Transform - pos: 42.5,22.5 + pos: -39.5,-66.5 parent: 2 - uid: 11862 components: - type: Transform - pos: 42.5,21.5 + pos: -39.5,-68.5 parent: 2 - uid: 11863 components: - type: Transform - pos: 42.5,20.5 + pos: -38.5,-68.5 parent: 2 - uid: 11864 components: - type: Transform - pos: 42.5,19.5 + pos: -37.5,-68.5 parent: 2 - uid: 11865 components: - type: Transform - pos: 42.5,18.5 + pos: -36.5,-68.5 parent: 2 - uid: 11866 components: - type: Transform - pos: 43.5,18.5 + pos: -35.5,-68.5 parent: 2 - uid: 11867 components: - type: Transform - pos: 46.5,18.5 + pos: -34.5,-68.5 parent: 2 - uid: 11868 components: - type: Transform - pos: 45.5,18.5 + pos: -33.5,-68.5 parent: 2 - uid: 11869 components: - type: Transform - pos: 44.5,18.5 + pos: -32.5,-68.5 parent: 2 - uid: 11870 components: - type: Transform - pos: 58.5,7.5 + pos: -31.5,-68.5 parent: 2 - uid: 11871 components: - type: Transform - pos: 57.5,7.5 + pos: -30.5,-68.5 parent: 2 - uid: 11872 components: - type: Transform - pos: 56.5,7.5 + pos: -29.5,-68.5 parent: 2 - uid: 11873 components: - type: Transform - pos: 55.5,7.5 + pos: -29.5,-70.5 parent: 2 - uid: 11874 components: - type: Transform - pos: 54.5,7.5 + pos: -30.5,-70.5 parent: 2 - uid: 11875 components: - type: Transform - pos: 53.5,7.5 + pos: -31.5,-70.5 parent: 2 - uid: 11876 components: - type: Transform - pos: 52.5,7.5 + pos: -32.5,-70.5 parent: 2 - uid: 11877 components: - type: Transform - pos: 61.5,8.5 + pos: -33.5,-70.5 parent: 2 - uid: 11878 components: - type: Transform - pos: 61.5,9.5 + pos: -34.5,-70.5 parent: 2 - uid: 11879 components: - type: Transform - pos: 61.5,10.5 + pos: -35.5,-70.5 parent: 2 - uid: 11880 components: - type: Transform - pos: 61.5,11.5 + pos: -36.5,-70.5 parent: 2 - uid: 11881 components: - type: Transform - pos: 62.5,11.5 + pos: -37.5,-70.5 parent: 2 - uid: 11882 components: - type: Transform - pos: 63.5,11.5 + pos: -38.5,-70.5 parent: 2 - uid: 11883 components: - type: Transform - pos: 63.5,12.5 + pos: -39.5,-70.5 parent: 2 - uid: 11884 components: - type: Transform - pos: 63.5,13.5 + pos: -34.5,-69.5 parent: 2 - uid: 11885 components: - type: Transform - pos: 56.5,8.5 + pos: -34.5,-67.5 parent: 2 - uid: 11886 components: - type: Transform - pos: 56.5,9.5 + pos: -34.5,-65.5 parent: 2 - uid: 11887 components: - type: Transform - pos: 56.5,10.5 + pos: -34.5,-71.5 parent: 2 - uid: 11888 components: - type: Transform - pos: 57.5,10.5 + pos: -39.5,-57.5 parent: 2 - uid: 11889 components: - type: Transform - pos: 57.5,11.5 + pos: -40.5,-55.5 parent: 2 - uid: 11890 components: - type: Transform - pos: 57.5,12.5 + pos: -40.5,-56.5 parent: 2 - uid: 11891 components: - type: Transform - pos: 57.5,12.5 + pos: -41.5,-55.5 parent: 2 - uid: 11892 components: - type: Transform - pos: 56.5,12.5 + pos: -34.5,-62.5 parent: 2 - uid: 11893 components: - type: Transform - pos: 56.5,13.5 + pos: -34.5,-63.5 parent: 2 - uid: 11894 components: - type: Transform - pos: 56.5,14.5 + pos: -35.5,-62.5 parent: 2 - uid: 11895 components: - type: Transform - pos: 52.5,8.5 + pos: -34.5,-72.5 parent: 2 - uid: 11896 components: - type: Transform - pos: 52.5,9.5 + pos: -39.5,-59.5 parent: 2 - uid: 11897 components: - type: Transform - pos: 52.5,10.5 + pos: -39.5,-58.5 parent: 2 - uid: 11898 components: - type: Transform - pos: 52.5,11.5 + pos: -38.5,-59.5 parent: 2 - uid: 11899 components: - type: Transform - pos: 51.5,11.5 + pos: -40.5,-57.5 parent: 2 - uid: 11900 components: - type: Transform - pos: 50.5,11.5 + pos: -34.5,-73.5 parent: 2 - uid: 11901 components: - type: Transform - pos: 50.5,12.5 + pos: -33.5,-72.5 parent: 2 - uid: 11902 components: - type: Transform - pos: 50.5,13.5 + pos: -32.5,-72.5 parent: 2 - uid: 11903 components: - type: Transform - pos: 60.5,0.5 + pos: -31.5,-72.5 parent: 2 - uid: 11904 components: - type: Transform - pos: 59.5,0.5 + pos: -30.5,-72.5 parent: 2 - uid: 11905 components: - type: Transform - pos: 58.5,0.5 + pos: -29.5,-72.5 parent: 2 - uid: 11906 components: - type: Transform - pos: 57.5,0.5 + pos: -35.5,-72.5 parent: 2 - uid: 11907 components: - type: Transform - pos: 56.5,0.5 + pos: -38.5,-72.5 parent: 2 - uid: 11908 components: - type: Transform - pos: 56.5,-0.5 + pos: -39.5,-72.5 parent: 2 - uid: 11909 components: - type: Transform - pos: 56.5,-1.5 + pos: -36.5,-72.5 parent: 2 - uid: 11910 components: - type: Transform - pos: 56.5,-2.5 + pos: -37.5,-72.5 parent: 2 - uid: 11911 components: - type: Transform - pos: 56.5,-3.5 + pos: 2.5,-14.5 parent: 2 - uid: 11912 components: - type: Transform - pos: 56.5,-4.5 + pos: 2.5,-13.5 parent: 2 - uid: 11913 components: - type: Transform - pos: 56.5,-5.5 + pos: 2.5,-14.5 parent: 2 - uid: 11914 components: - type: Transform - pos: 55.5,-5.5 + pos: 2.5,-11.5 parent: 2 - uid: 11915 components: - type: Transform - pos: 54.5,-5.5 + pos: 2.5,-12.5 parent: 2 - uid: 11916 components: - type: Transform - pos: 53.5,-5.5 + pos: 4.5,-11.5 parent: 2 - uid: 11917 components: - type: Transform - pos: 53.5,-4.5 + pos: 3.5,-11.5 parent: 2 - uid: 11918 components: - type: Transform - pos: 53.5,-3.5 + pos: 2.5,-15.5 parent: 2 - uid: 11919 components: - type: Transform - pos: 14.5,-13.5 + pos: -28.5,-41.5 parent: 2 - uid: 11920 components: - type: Transform - pos: 14.5,-12.5 + pos: -28.5,-39.5 parent: 2 - uid: 11921 components: - type: Transform - pos: 14.5,-11.5 + pos: -28.5,-38.5 parent: 2 - uid: 11922 components: - type: Transform - pos: 13.5,-11.5 + pos: -28.5,-40.5 parent: 2 - uid: 11923 components: - type: Transform - pos: 12.5,-11.5 + pos: -29.5,-38.5 parent: 2 - uid: 11924 components: - type: Transform - pos: 11.5,-11.5 + pos: -27.5,-38.5 parent: 2 - uid: 11925 components: - type: Transform - pos: 10.5,-11.5 + pos: -30.5,-38.5 parent: 2 - uid: 11926 components: - type: Transform - pos: 9.5,-11.5 + pos: -26.5,-38.5 parent: 2 - uid: 11927 components: - type: Transform - pos: 8.5,-11.5 + pos: -26.5,-39.5 parent: 2 - uid: 11928 components: - type: Transform - pos: 8.5,-10.5 + pos: -27.5,-39.5 parent: 2 - uid: 11929 components: - type: Transform - pos: 15.5,-12.5 + pos: -29.5,-39.5 parent: 2 - uid: 11930 components: - type: Transform - pos: 16.5,-12.5 + pos: -30.5,-39.5 parent: 2 - uid: 11931 components: - type: Transform - pos: 17.5,-12.5 + pos: -30.5,-37.5 parent: 2 - uid: 11932 components: - type: Transform - pos: 17.5,-11.5 + pos: -28.5,-37.5 parent: 2 - uid: 11933 components: - type: Transform - pos: 17.5,-10.5 + pos: -27.5,-37.5 parent: 2 - uid: 11934 components: - type: Transform - pos: 17.5,-9.5 + pos: -26.5,-37.5 parent: 2 - uid: 11935 components: - type: Transform - pos: 17.5,-8.5 + pos: -29.5,-37.5 parent: 2 - uid: 11936 components: - type: Transform - pos: 16.5,-8.5 + pos: -1.5,-46.5 parent: 2 - uid: 11937 components: - type: Transform - pos: 15.5,-8.5 + pos: -1.5,-47.5 parent: 2 - uid: 11938 components: - type: Transform - pos: 15.5,-7.5 + pos: -1.5,-48.5 parent: 2 - uid: 11939 components: - type: Transform - pos: 15.5,-6.5 + pos: -0.5,-48.5 parent: 2 - uid: 11940 components: - type: Transform - pos: 14.5,-8.5 + pos: 1.5,-48.5 parent: 2 - uid: 11941 components: - type: Transform - pos: 13.5,-8.5 + pos: 2.5,-48.5 parent: 2 - uid: 11942 components: - type: Transform - pos: 12.5,-8.5 + pos: 0.5,-48.5 parent: 2 - uid: 11943 components: - type: Transform - pos: 12.5,-7.5 + pos: 3.5,-48.5 parent: 2 - uid: 11944 components: - type: Transform - pos: 12.5,-6.5 + pos: 3.5,-49.5 parent: 2 - uid: 11945 components: - type: Transform - pos: 12.5,-5.5 + pos: 3.5,-50.5 parent: 2 - uid: 11946 components: - type: Transform - pos: 12.5,-4.5 + pos: 3.5,-51.5 parent: 2 - uid: 11947 components: - type: Transform - pos: 12.5,-3.5 + pos: -20.5,60.5 parent: 2 - uid: 11948 components: - type: Transform - pos: 15.5,3.5 + pos: -62.5,54.5 parent: 2 - uid: 11949 components: - type: Transform - pos: 13.5,-2.5 + pos: -63.5,54.5 parent: 2 - uid: 11950 components: - type: Transform - pos: 13.5,-2.5 + pos: -106.5,44.5 parent: 2 - uid: 11951 components: - type: Transform - pos: 13.5,-1.5 + pos: -106.5,45.5 parent: 2 - - uid: 11952 + - uid: 41106 components: - type: Transform - pos: -15.5,-0.5 - parent: 2 - - uid: 11953 + pos: 63.5,49.5 + parent: 40599 + - uid: 41107 components: - type: Transform - pos: -16.5,-0.5 - parent: 2 - - uid: 11954 + pos: 63.5,48.5 + parent: 40599 + - uid: 41108 components: - type: Transform - pos: -14.5,-0.5 - parent: 2 - - uid: 11955 + pos: 63.5,50.5 + parent: 40599 + - uid: 41109 components: - type: Transform - pos: -13.5,-0.5 - parent: 2 - - uid: 11956 + pos: 63.5,51.5 + parent: 40599 + - uid: 41110 components: - type: Transform - pos: -12.5,-0.5 - parent: 2 - - uid: 11957 + pos: 63.5,52.5 + parent: 40599 + - uid: 41111 components: - type: Transform - pos: -11.5,-0.5 - parent: 2 - - uid: 11958 + pos: 63.5,53.5 + parent: 40599 + - uid: 41112 components: - type: Transform - pos: -10.5,-0.5 - parent: 2 - - uid: 11959 + pos: 63.5,54.5 + parent: 40599 + - uid: 41113 components: - type: Transform - pos: -10.5,0.5 - parent: 2 - - uid: 11960 + pos: 63.5,55.5 + parent: 40599 + - uid: 41114 components: - type: Transform - pos: -10.5,1.5 - parent: 2 - - uid: 11961 + pos: 63.5,56.5 + parent: 40599 + - uid: 41115 components: - type: Transform - pos: -10.5,2.5 - parent: 2 - - uid: 11962 + pos: 63.5,57.5 + parent: 40599 + - uid: 41116 components: - type: Transform - pos: -10.5,3.5 - parent: 2 - - uid: 11963 + pos: 63.5,58.5 + parent: 40599 + - uid: 41117 components: - type: Transform - pos: -9.5,0.5 - parent: 2 - - uid: 11964 + pos: 64.5,58.5 + parent: 40599 + - uid: 41118 components: - type: Transform - pos: -8.5,0.5 - parent: 2 - - uid: 11965 + pos: 63.5,60.5 + parent: 40599 + - uid: 41119 components: - type: Transform - pos: -7.5,0.5 - parent: 2 - - uid: 11966 + pos: 64.5,60.5 + parent: 40599 + - uid: 41120 components: - type: Transform - pos: -6.5,0.5 - parent: 2 - - uid: 11967 + pos: 65.5,60.5 + parent: 40599 + - uid: 41121 components: - type: Transform - pos: -5.5,0.5 - parent: 2 - - uid: 11968 + pos: 67.5,59.5 + parent: 40599 + - uid: 41122 components: - type: Transform - pos: -5.5,-0.5 - parent: 2 - - uid: 11969 + pos: 68.5,59.5 + parent: 40599 + - uid: 41123 components: - type: Transform - pos: -5.5,-1.5 - parent: 2 - - uid: 11970 + pos: 68.5,58.5 + parent: 40599 + - uid: 41124 components: - type: Transform - pos: -5.5,-2.5 - parent: 2 - - uid: 11971 + pos: 67.5,60.5 + parent: 40599 + - uid: 41125 components: - type: Transform - pos: -5.5,-3.5 - parent: 2 - - uid: 11972 + pos: 66.5,60.5 + parent: 40599 + - uid: 41126 components: - type: Transform - pos: -6.5,-3.5 - parent: 2 - - uid: 11973 + pos: 64.5,59.5 + parent: 40599 + - uid: 41127 components: - type: Transform - pos: -7.5,-3.5 - parent: 2 - - uid: 11974 + pos: 63.5,59.5 + parent: 40599 + - uid: 41128 components: - type: Transform - pos: -8.5,-3.5 - parent: 2 - - uid: 11975 + pos: 57.5,37.5 + parent: 40599 + - uid: 41129 components: - type: Transform - pos: -8.5,-4.5 - parent: 2 - - uid: 11976 + pos: 47.5,37.5 + parent: 40599 + - uid: 41130 components: - type: Transform - pos: -8.5,-5.5 - parent: 2 - - uid: 11977 + pos: 47.5,39.5 + parent: 40599 + - uid: 41131 components: - type: Transform - pos: -8.5,-6.5 - parent: 2 - - uid: 11978 + pos: 47.5,40.5 + parent: 40599 + - uid: 41132 components: - type: Transform - pos: -7.5,-6.5 - parent: 2 - - uid: 11979 + pos: 47.5,38.5 + parent: 40599 + - uid: 41133 components: - type: Transform - pos: -4.5,-7.5 - parent: 2 - - uid: 11980 + pos: 56.5,44.5 + parent: 40599 + - uid: 41134 components: - type: Transform - pos: -4.5,-8.5 - parent: 2 - - uid: 11981 + pos: 54.5,44.5 + parent: 40599 + - uid: 41135 components: - type: Transform - pos: -4.5,-9.5 - parent: 2 - - uid: 11982 + pos: 53.5,44.5 + parent: 40599 + - uid: 41136 components: - type: Transform - pos: -4.5,-10.5 - parent: 2 - - uid: 11983 + pos: 52.5,44.5 + parent: 40599 + - uid: 41137 components: - type: Transform - pos: -5.5,-10.5 - parent: 2 - - uid: 11984 + pos: 55.5,44.5 + parent: 40599 + - uid: 41138 components: - type: Transform - pos: -6.5,-10.5 - parent: 2 - - uid: 11985 + pos: 57.5,39.5 + parent: 40599 + - uid: 41139 components: - type: Transform - pos: -7.5,-10.5 - parent: 2 - - uid: 11986 + pos: 57.5,40.5 + parent: 40599 + - uid: 41140 components: - type: Transform - pos: -8.5,-10.5 - parent: 2 - - uid: 11987 + pos: 57.5,41.5 + parent: 40599 + - uid: 41141 components: - type: Transform - pos: -9.5,-10.5 - parent: 2 - - uid: 11988 + pos: 57.5,38.5 + parent: 40599 + - uid: 41142 components: - type: Transform - pos: -9.5,-9.5 - parent: 2 - - uid: 11989 + pos: 57.5,42.5 + parent: 40599 + - uid: 41143 components: - type: Transform - pos: -9.5,-8.5 - parent: 2 - - uid: 11990 + pos: 57.5,43.5 + parent: 40599 + - uid: 41144 components: - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 11991 - components: + pos: 56.5,43.5 + parent: 40599 + - uid: 41145 + components: - type: Transform - pos: 3.5,-11.5 + pos: 52.5,45.5 + parent: 40599 + - uid: 41146 + components: + - type: Transform + pos: 52.5,46.5 + parent: 40599 + - uid: 41147 + components: + - type: Transform + pos: 52.5,47.5 + parent: 40599 + - uid: 41148 + components: + - type: Transform + pos: 52.5,48.5 + parent: 40599 + - uid: 41149 + components: + - type: Transform + pos: 55.5,49.5 + parent: 40599 + - uid: 41150 + components: + - type: Transform + pos: 53.5,48.5 + parent: 40599 + - uid: 41151 + components: + - type: Transform + pos: 54.5,48.5 + parent: 40599 + - uid: 41152 + components: + - type: Transform + pos: 55.5,48.5 + parent: 40599 + - uid: 41153 + components: + - type: Transform + pos: 57.5,49.5 + parent: 40599 + - uid: 41154 + components: + - type: Transform + pos: 56.5,49.5 + parent: 40599 + - uid: 45452 + components: + - type: Transform + pos: 9.5,9.5 + parent: 45355 + - uid: 45453 + components: + - type: Transform + pos: 10.5,9.5 + parent: 45355 + - uid: 46606 + components: + - type: Transform + pos: 6.5,5.5 + parent: 46584 + - uid: 46607 + components: + - type: Transform + pos: 7.5,5.5 + parent: 46584 + - uid: 46608 + components: + - type: Transform + pos: 9.5,5.5 + parent: 46584 + - uid: 46609 + components: + - type: Transform + pos: 10.5,5.5 + parent: 46584 + - uid: 46610 + components: + - type: Transform + pos: 8.5,5.5 + parent: 46584 + - uid: 46611 + components: + - type: Transform + pos: 11.5,8.5 + parent: 46584 + - uid: 46612 + components: + - type: Transform + pos: 9.5,8.5 + parent: 46584 + - uid: 46613 + components: + - type: Transform + pos: 10.5,8.5 + parent: 46584 + - uid: 46614 + components: + - type: Transform + pos: 8.5,8.5 + parent: 46584 + - uid: 46615 + components: + - type: Transform + pos: 9.5,7.5 + parent: 46584 + - uid: 46616 + components: + - type: Transform + pos: 11.5,7.5 + parent: 46584 + - uid: 46617 + components: + - type: Transform + pos: 11.5,5.5 + parent: 46584 + - uid: 46618 + components: + - type: Transform + pos: 11.5,6.5 + parent: 46584 + - uid: 46619 + components: + - type: Transform + pos: 11.5,4.5 + parent: 46584 + - uid: 46620 + components: + - type: Transform + pos: 10.5,6.5 + parent: 46584 + - uid: 46621 + components: + - type: Transform + pos: 9.5,3.5 + parent: 46584 + - uid: 46622 + components: + - type: Transform + pos: 11.5,3.5 + parent: 46584 + - uid: 46623 + components: + - type: Transform + pos: 10.5,3.5 + parent: 46584 + - uid: 46624 + components: + - type: Transform + pos: 10.5,4.5 + parent: 46584 + - uid: 46625 + components: + - type: Transform + pos: 9.5,6.5 + parent: 46584 + - uid: 46626 + components: + - type: Transform + pos: 6.5,6.5 + parent: 46584 + - uid: 46627 + components: + - type: Transform + pos: 5.5,6.5 + parent: 46584 + - uid: 46628 + components: + - type: Transform + pos: 5.5,7.5 + parent: 46584 + - uid: 46629 + components: + - type: Transform + pos: 5.5,8.5 + parent: 46584 + - uid: 47262 + components: + - type: Transform + pos: -2.5,0.5 + parent: 47245 + - uid: 47263 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 47245 +- proto: CableHVStack + entities: + - uid: 11952 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -1.4841065,-37.77207 + parent: 2 + - uid: 11953 + components: + - type: Transform + pos: -13.328497,-48.315002 + parent: 2 + - uid: 11954 + components: + - type: Transform + pos: -33.49371,-43.410294 + parent: 2 + - uid: 11955 + components: + - type: Transform + pos: 18.498898,7.7237053 + parent: 2 + - uid: 11956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.6934824,-44.363564 + parent: 2 +- proto: CableHVStack1 + entities: + - uid: 11957 + components: + - type: Transform + pos: 11.459646,57.605194 + parent: 2 + - uid: 11958 + components: + - type: Transform + pos: 19.582397,57.45762 + parent: 2 + - uid: 11959 + components: + - type: Transform + pos: -41.444912,-40.459023 + parent: 2 + - uid: 11960 + components: + - type: Transform + pos: -42.491787,-38.562077 + parent: 2 + - uid: 11961 + components: + - type: Transform + pos: -56.512455,64.49792 + parent: 2 + - uid: 11962 + components: + - type: Transform + pos: -55.55933,64.38854 + parent: 2 + - uid: 11963 + components: + - type: Transform + pos: -54.668705,64.49792 + parent: 2 + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.510124,67.48591 + parent: 2 + - uid: 11965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.342136,62.54082 + parent: 2 + - uid: 11966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.154636,55.47832 + parent: 2 + - uid: 11967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.57651,53.47832 + parent: 2 + - uid: 11968 + components: + - type: Transform + pos: -44.500153,61.663082 + parent: 2 + - uid: 11969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.578278,61.475582 + parent: 2 + - uid: 41155 + components: + - type: Transform + pos: 47.458572,40.910576 + parent: 40599 + - uid: 41156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.458572,42.316826 + parent: 40599 + - uid: 41157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.067947,43.465263 + parent: 40599 + - uid: 41158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.810135,44.44964 + parent: 40599 + - uid: 41159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.171112,49.472454 + parent: 40599 + - uid: 41160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.733612,49.730267 + parent: 40599 +- proto: CableHVStack10 + entities: + - uid: 11970 + components: + - type: Transform + pos: 40.520294,-49.329163 + parent: 2 + - uid: 11971 + components: + - type: Transform + pos: -41.47871,66.59689 + parent: 2 +- proto: CableMV + entities: + - uid: 11972 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 11973 + components: + - type: Transform + pos: 55.5,-11.5 + parent: 2 + - uid: 11974 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 11975 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 2 + - uid: 11976 + components: + - type: Transform + pos: -28.5,-10.5 + parent: 2 + - uid: 11977 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 11978 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 11979 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 11980 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 11981 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 + - uid: 11982 + components: + - type: Transform + pos: -29.5,15.5 + parent: 2 + - uid: 11983 + components: + - type: Transform + pos: -29.5,16.5 + parent: 2 + - uid: 11984 + components: + - type: Transform + pos: -29.5,17.5 + parent: 2 + - uid: 11985 + components: + - type: Transform + pos: 68.5,-38.5 + parent: 2 + - uid: 11986 + components: + - type: Transform + pos: 39.5,-52.5 + parent: 2 + - uid: 11987 + components: + - type: Transform + pos: 43.5,-53.5 + parent: 2 + - uid: 11988 + components: + - type: Transform + pos: 91.5,-20.5 + parent: 2 + - uid: 11989 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 11990 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 11991 + components: + - type: Transform + pos: 27.5,-36.5 parent: 2 - uid: 11992 components: - type: Transform - pos: 3.5,-10.5 + pos: 37.5,-50.5 parent: 2 - uid: 11993 components: - type: Transform - pos: 3.5,-9.5 + pos: 40.5,-47.5 parent: 2 - uid: 11994 components: - type: Transform - pos: 3.5,-8.5 + pos: 39.5,-51.5 parent: 2 - uid: 11995 components: - type: Transform - pos: 4.5,-8.5 + pos: 41.5,-47.5 parent: 2 - uid: 11996 components: - type: Transform - pos: 4.5,-7.5 + pos: 37.5,-48.5 parent: 2 - uid: 11997 components: - type: Transform - pos: 12.5,-2.5 + pos: 42.5,-47.5 parent: 2 - uid: 11998 components: - type: Transform - pos: 11.5,-2.5 + pos: 42.5,-48.5 parent: 2 - uid: 11999 components: - type: Transform - pos: 10.5,-2.5 + pos: 37.5,-52.5 parent: 2 - uid: 12000 components: - type: Transform - pos: 10.5,-1.5 + pos: 38.5,-52.5 parent: 2 - uid: 12001 components: - type: Transform - pos: 10.5,-0.5 + pos: 37.5,-51.5 parent: 2 - uid: 12002 components: - type: Transform - pos: 10.5,0.5 + pos: 30.5,-38.5 parent: 2 - uid: 12003 components: - type: Transform - pos: 11.5,0.5 + pos: 92.5,-20.5 parent: 2 - uid: 12004 components: - type: Transform - pos: 12.5,0.5 + pos: 93.5,-20.5 parent: 2 - uid: 12005 components: - type: Transform - pos: 13.5,0.5 + pos: 46.5,-54.5 parent: 2 - uid: 12006 components: - type: Transform - pos: 14.5,0.5 + pos: 47.5,-54.5 parent: 2 - uid: 12007 components: - type: Transform - pos: 15.5,0.5 + pos: 48.5,-54.5 parent: 2 - uid: 12008 components: - type: Transform - pos: 15.5,1.5 + pos: 49.5,-54.5 parent: 2 - uid: 12009 components: - type: Transform - pos: 15.5,2.5 + pos: 51.5,-54.5 parent: 2 - uid: 12010 components: - type: Transform - pos: -12.5,-50.5 + pos: 50.5,-54.5 parent: 2 - uid: 12011 components: - type: Transform - pos: -12.5,-49.5 + pos: 22.5,-42.5 parent: 2 - uid: 12012 components: - type: Transform - pos: -33.5,-13.5 + pos: 32.5,-48.5 parent: 2 - uid: 12013 components: - type: Transform - pos: -15.5,-45.5 + pos: 23.5,-42.5 parent: 2 - uid: 12014 components: - type: Transform - pos: 13.5,50.5 + pos: 24.5,-42.5 parent: 2 - uid: 12015 components: - type: Transform - pos: 13.5,52.5 + pos: 25.5,-42.5 parent: 2 - uid: 12016 components: - type: Transform - pos: 13.5,55.5 + pos: 26.5,-42.5 parent: 2 - uid: 12017 components: - type: Transform - pos: 13.5,56.5 + pos: 32.5,-47.5 parent: 2 - uid: 12018 components: - type: Transform - pos: -12.5,-48.5 + pos: 32.5,-47.5 parent: 2 - uid: 12019 components: - type: Transform - pos: 45.5,-53.5 + pos: 31.5,-47.5 parent: 2 - uid: 12020 components: - type: Transform - pos: 15.5,59.5 + pos: 44.5,-53.5 parent: 2 - uid: 12021 components: - type: Transform - pos: 15.5,58.5 + pos: 65.5,-46.5 parent: 2 - uid: 12022 components: - type: Transform - pos: 15.5,57.5 + pos: 22.5,-41.5 parent: 2 - uid: 12023 components: - type: Transform - pos: -19.5,-45.5 + pos: -21.5,42.5 parent: 2 - uid: 12024 components: - type: Transform - pos: 25.5,59.5 + pos: 22.5,-38.5 parent: 2 - uid: 12025 components: - type: Transform - pos: 25.5,58.5 + pos: 22.5,-37.5 parent: 2 - uid: 12026 components: - type: Transform - pos: 22.5,57.5 + pos: 28.5,-38.5 parent: 2 - uid: 12027 components: - type: Transform - pos: 13.5,54.5 + pos: 29.5,-38.5 parent: 2 - uid: 12028 components: - type: Transform - pos: -16.5,-45.5 + pos: -45.5,-1.5 parent: 2 - uid: 12029 components: - type: Transform - pos: 13.5,51.5 + pos: 15.5,6.5 parent: 2 - uid: 12030 components: - type: Transform - pos: -29.5,-13.5 + pos: 76.5,-29.5 parent: 2 - uid: 12031 components: - type: Transform - pos: 18.5,53.5 + pos: 1.5,15.5 parent: 2 - uid: 12032 components: - type: Transform - pos: 19.5,53.5 + pos: 75.5,-26.5 parent: 2 - uid: 12033 components: - type: Transform - pos: 19.5,52.5 + pos: 77.5,-24.5 parent: 2 - uid: 12034 components: - type: Transform - pos: 19.5,51.5 + pos: -4.5,34.5 parent: 2 - uid: 12035 components: - type: Transform - pos: 19.5,50.5 + pos: 13.5,-42.5 parent: 2 - uid: 12036 components: - type: Transform - pos: 19.5,54.5 + pos: 12.5,-43.5 parent: 2 - uid: 12037 components: - type: Transform - pos: 19.5,55.5 + pos: 17.5,-41.5 parent: 2 - uid: 12038 components: - type: Transform - pos: -17.5,-45.5 + pos: 16.5,-41.5 parent: 2 - uid: 12039 components: - type: Transform - pos: 19.5,56.5 + pos: 15.5,-41.5 parent: 2 - uid: 12040 components: - type: Transform - pos: 19.5,58.5 + pos: 14.5,-41.5 parent: 2 - uid: 12041 components: - type: Transform - pos: 18.5,57.5 + pos: 13.5,-41.5 parent: 2 - uid: 12042 components: - type: Transform - pos: 20.5,57.5 + pos: 12.5,-42.5 parent: 2 - uid: 12043 components: - type: Transform - pos: 19.5,59.5 + pos: 11.5,-43.5 parent: 2 - uid: 12044 components: - type: Transform - pos: 19.5,60.5 + pos: -3.5,36.5 parent: 2 - uid: 12045 components: - type: Transform - pos: 19.5,61.5 + pos: -4.5,36.5 parent: 2 - uid: 12046 components: - type: Transform - pos: 19.5,62.5 + pos: -2.5,36.5 parent: 2 - uid: 12047 components: - type: Transform - pos: 19.5,63.5 + pos: -36.5,-45.5 parent: 2 - uid: 12048 components: - type: Transform - pos: 19.5,64.5 + pos: -35.5,-45.5 parent: 2 - uid: 12049 components: - type: Transform - pos: 19.5,65.5 + pos: -37.5,-45.5 parent: 2 - uid: 12050 components: - type: Transform - pos: 17.5,57.5 + pos: 56.5,-37.5 parent: 2 - uid: 12051 components: - type: Transform - pos: 16.5,57.5 + pos: 66.5,-32.5 parent: 2 - uid: 12052 components: - type: Transform - pos: 15.5,57.5 + pos: 67.5,-46.5 parent: 2 - uid: 12053 components: - type: Transform - pos: 14.5,57.5 + pos: 75.5,-45.5 parent: 2 - uid: 12054 components: - type: Transform - pos: 13.5,57.5 + pos: 75.5,-44.5 parent: 2 - uid: 12055 components: - type: Transform - pos: 12.5,57.5 + pos: 68.5,-37.5 parent: 2 - uid: 12056 components: - type: Transform - pos: 11.5,58.5 + pos: 52.5,-37.5 parent: 2 - uid: 12057 components: - type: Transform - pos: 11.5,59.5 + pos: 13.5,53.5 parent: 2 - uid: 12058 components: - type: Transform - pos: 11.5,60.5 + pos: 21.5,57.5 parent: 2 - uid: 12059 components: - type: Transform - pos: 11.5,61.5 + pos: -16.5,-5.5 parent: 2 - uid: 12060 components: - type: Transform - pos: 11.5,62.5 + pos: -16.5,-6.5 parent: 2 - uid: 12061 components: - type: Transform - pos: 13.5,49.5 + pos: -16.5,-3.5 parent: 2 - uid: 12062 components: - type: Transform - pos: 23.5,57.5 + pos: -16.5,-4.5 parent: 2 - uid: 12063 components: - type: Transform - pos: 24.5,57.5 + pos: -13.5,-6.5 parent: 2 - uid: 12064 components: - type: Transform - pos: 25.5,57.5 + pos: -14.5,-6.5 parent: 2 - uid: 12065 components: - type: Transform - pos: 24.5,56.5 + pos: -11.5,-6.5 parent: 2 - uid: 12066 components: - type: Transform - pos: 24.5,55.5 + pos: -12.5,-6.5 parent: 2 - uid: 12067 components: - type: Transform - pos: 24.5,54.5 + pos: -16.5,-1.5 parent: 2 - uid: 12068 components: - type: Transform - pos: 24.5,53.5 + pos: -16.5,-2.5 parent: 2 - uid: 12069 components: - type: Transform - pos: 24.5,52.5 + pos: -15.5,-6.5 parent: 2 - uid: 12070 components: - type: Transform - pos: 24.5,51.5 + pos: 59.5,-4.5 parent: 2 - uid: 12071 components: - type: Transform - pos: 24.5,50.5 + pos: 59.5,-5.5 parent: 2 - uid: 12072 components: - type: Transform - pos: 25.5,-35.5 + pos: 59.5,-6.5 parent: 2 - uid: 12073 components: - type: Transform - pos: 31.5,-38.5 + pos: 59.5,-7.5 parent: 2 - uid: 12074 components: - type: Transform - pos: 32.5,-38.5 + pos: 60.5,-7.5 parent: 2 - uid: 12075 components: - type: Transform - pos: 32.5,-39.5 + pos: 61.5,-7.5 parent: 2 - uid: 12076 components: - type: Transform - pos: 32.5,-40.5 + pos: 61.5,-6.5 parent: 2 - uid: 12077 components: - type: Transform - pos: 33.5,-40.5 + pos: 61.5,-5.5 parent: 2 - uid: 12078 components: - type: Transform - pos: 34.5,-40.5 + pos: 61.5,-4.5 parent: 2 - uid: 12079 components: - type: Transform - pos: 34.5,-41.5 + pos: 62.5,-4.5 parent: 2 - uid: 12080 components: - type: Transform - pos: 34.5,-42.5 + pos: 61.5,-3.5 parent: 2 - uid: 12081 components: - type: Transform - pos: 34.5,-43.5 + pos: 61.5,-2.5 parent: 2 - uid: 12082 components: - type: Transform - pos: 34.5,-44.5 + pos: 61.5,-1.5 parent: 2 - uid: 12083 components: - type: Transform - pos: 35.5,-44.5 + pos: 61.5,-0.5 parent: 2 - uid: 12084 components: - type: Transform - pos: 36.5,-44.5 + pos: 61.5,0.5 parent: 2 - uid: 12085 components: - type: Transform - pos: 37.5,-44.5 + pos: 61.5,1.5 parent: 2 - uid: 12086 components: - type: Transform - pos: 38.5,-44.5 + pos: 61.5,2.5 parent: 2 - uid: 12087 components: - type: Transform - pos: 39.5,-44.5 + pos: 61.5,3.5 parent: 2 - uid: 12088 components: - type: Transform - pos: 39.5,-45.5 + pos: 61.5,4.5 parent: 2 - uid: 12089 components: - type: Transform - pos: 39.5,-46.5 + pos: 61.5,5.5 parent: 2 - uid: 12090 components: - type: Transform - pos: 39.5,-47.5 + pos: 61.5,6.5 parent: 2 - uid: 12091 components: - type: Transform - pos: 42.5,-51.5 + pos: 61.5,7.5 parent: 2 - uid: 12092 components: - type: Transform - pos: 42.5,-50.5 + pos: 61.5,7.5 parent: 2 - uid: 12093 components: - type: Transform - pos: 43.5,-52.5 + pos: 60.5,7.5 parent: 2 - uid: 12094 components: - type: Transform - pos: 42.5,-49.5 + pos: 59.5,7.5 parent: 2 - uid: 12095 components: - type: Transform - pos: 46.5,-53.5 + pos: 59.5,8.5 parent: 2 - uid: 12096 components: - type: Transform - pos: 30.5,-47.5 + pos: 44.5,27.5 parent: 2 - uid: 12097 components: - type: Transform - pos: 29.5,-47.5 + pos: 44.5,29.5 parent: 2 - uid: 12098 components: - type: Transform - pos: 28.5,-47.5 + pos: 44.5,28.5 parent: 2 - uid: 12099 components: - type: Transform - pos: 27.5,-47.5 + pos: 33.5,28.5 parent: 2 - uid: 12100 components: - type: Transform - pos: 26.5,-46.5 + pos: 46.5,29.5 parent: 2 - uid: 12101 components: - type: Transform - pos: 26.5,-45.5 + pos: 45.5,29.5 parent: 2 - uid: 12102 components: - type: Transform - pos: 26.5,-44.5 + pos: 38.5,25.5 parent: 2 - uid: 12103 components: - type: Transform - pos: 26.5,-47.5 + pos: 47.5,18.5 parent: 2 - uid: 12104 components: - type: Transform - pos: 52.5,-54.5 + pos: 47.5,19.5 parent: 2 - uid: 12105 components: - type: Transform - pos: 53.5,-54.5 + pos: 47.5,20.5 parent: 2 - uid: 12106 components: - type: Transform - pos: 42.5,-52.5 + pos: 47.5,21.5 parent: 2 - uid: 12107 components: - type: Transform - pos: 37.5,-49.5 + pos: 47.5,22.5 parent: 2 - uid: 12108 components: - type: Transform - pos: 36.5,-48.5 + pos: 46.5,22.5 parent: 2 - uid: 12109 components: - type: Transform - pos: 35.5,-48.5 + pos: 46.5,23.5 parent: 2 - uid: 12110 components: - type: Transform - pos: 33.5,-48.5 + pos: 46.5,24.5 parent: 2 - uid: 12111 components: - type: Transform - pos: 34.5,-48.5 + pos: 61.5,-10.5 parent: 2 - uid: 12112 components: - type: Transform - pos: 32.5,-49.5 + pos: 60.5,-11.5 parent: 2 - uid: 12113 components: - type: Transform - pos: 31.5,-49.5 + pos: 61.5,-8.5 parent: 2 - uid: 12114 components: - type: Transform - pos: 31.5,-50.5 + pos: 57.5,-12.5 parent: 2 - uid: 12115 components: - type: Transform - pos: 24.5,-35.5 + pos: 58.5,-11.5 parent: 2 - uid: 12116 components: - type: Transform - pos: 94.5,-20.5 + pos: 57.5,-13.5 parent: 2 - uid: 12117 components: - type: Transform - pos: 26.5,-35.5 + pos: 61.5,-9.5 parent: 2 - uid: 12118 components: - type: Transform - pos: 27.5,-35.5 + pos: 57.5,-15.5 parent: 2 - uid: 12119 components: - type: Transform - pos: 27.5,-33.5 + pos: 59.5,-11.5 parent: 2 - uid: 12120 components: - type: Transform - pos: 96.5,-20.5 + pos: 61.5,-11.5 parent: 2 - uid: 12121 components: - type: Transform - pos: 27.5,-34.5 + pos: 57.5,-11.5 parent: 2 - uid: 12122 components: - type: Transform - pos: 95.5,-20.5 + pos: 57.5,-14.5 parent: 2 - uid: 12123 components: - type: Transform - pos: 23.5,-33.5 + pos: 39.5,26.5 parent: 2 - uid: 12124 components: - type: Transform - pos: 23.5,-32.5 + pos: 39.5,25.5 parent: 2 - uid: 12125 components: - type: Transform - pos: 23.5,-31.5 + pos: 39.5,24.5 parent: 2 - uid: 12126 components: - type: Transform - pos: 23.5,-30.5 + pos: 40.5,24.5 parent: 2 - uid: 12127 components: - type: Transform - pos: 23.5,-34.5 + pos: 41.5,24.5 parent: 2 - uid: 12128 components: - type: Transform - pos: 23.5,-35.5 + pos: 42.5,24.5 parent: 2 - uid: 12129 components: - type: Transform - pos: 23.5,-36.5 + pos: 42.5,23.5 parent: 2 - uid: 12130 components: - type: Transform - pos: 22.5,-36.5 + pos: 42.5,22.5 parent: 2 - uid: 12131 components: - type: Transform - pos: 19.5,-41.5 + pos: 42.5,21.5 parent: 2 - uid: 12132 components: - type: Transform - pos: 21.5,-41.5 + pos: 42.5,20.5 parent: 2 - uid: 12133 components: - type: Transform - pos: 20.5,-41.5 + pos: 42.5,19.5 parent: 2 - uid: 12134 components: - type: Transform - pos: 18.5,-36.5 + pos: 42.5,18.5 parent: 2 - uid: 12135 components: - type: Transform - pos: 18.5,-37.5 + pos: 43.5,18.5 parent: 2 - uid: 12136 components: - type: Transform - pos: 18.5,-38.5 + pos: 46.5,18.5 parent: 2 - uid: 12137 components: - type: Transform - pos: 18.5,-39.5 + pos: 45.5,18.5 parent: 2 - uid: 12138 components: - type: Transform - pos: 18.5,-40.5 + pos: 44.5,18.5 parent: 2 - uid: 12139 components: - type: Transform - pos: 18.5,-41.5 + pos: 58.5,7.5 parent: 2 - uid: 12140 components: - type: Transform - pos: 18.5,-42.5 + pos: 57.5,7.5 parent: 2 - uid: 12141 components: - type: Transform - pos: -18.5,-45.5 + pos: 56.5,7.5 parent: 2 - uid: 12142 components: - type: Transform - pos: -33.5,-45.5 + pos: 55.5,7.5 parent: 2 - uid: 12143 components: - type: Transform - pos: -26.5,-41.5 + pos: 54.5,7.5 parent: 2 - uid: 12144 components: - type: Transform - pos: -14.5,-37.5 + pos: 53.5,7.5 parent: 2 - uid: 12145 components: - type: Transform - pos: -14.5,-38.5 + pos: 52.5,7.5 parent: 2 - uid: 12146 components: - type: Transform - pos: -13.5,-37.5 + pos: 61.5,8.5 parent: 2 - uid: 12147 components: - type: Transform - pos: -13.5,-36.5 + pos: 61.5,9.5 parent: 2 - uid: 12148 components: - type: Transform - pos: -14.5,-39.5 + pos: 61.5,10.5 parent: 2 - uid: 12149 components: - type: Transform - pos: -14.5,-40.5 + pos: 61.5,11.5 parent: 2 - uid: 12150 components: - type: Transform - pos: -14.5,-41.5 + pos: 62.5,11.5 parent: 2 - uid: 12151 components: - type: Transform - pos: -14.5,-42.5 + pos: 63.5,11.5 parent: 2 - uid: 12152 components: - type: Transform - pos: -14.5,-43.5 + pos: 63.5,12.5 parent: 2 - uid: 12153 components: - type: Transform - pos: -14.5,-44.5 + pos: 63.5,13.5 parent: 2 - uid: 12154 components: - type: Transform - pos: -14.5,-45.5 + pos: 56.5,8.5 parent: 2 - uid: 12155 components: - type: Transform - pos: -20.5,-45.5 + pos: 56.5,9.5 parent: 2 - uid: 12156 components: - type: Transform - pos: -20.5,-44.5 + pos: 56.5,10.5 parent: 2 - uid: 12157 components: - type: Transform - pos: -20.5,-43.5 + pos: 57.5,10.5 parent: 2 - uid: 12158 components: - type: Transform - pos: -20.5,-42.5 + pos: 57.5,11.5 parent: 2 - uid: 12159 components: - type: Transform - pos: -21.5,-42.5 + pos: 57.5,12.5 parent: 2 - uid: 12160 components: - type: Transform - pos: -22.5,-42.5 + pos: 57.5,12.5 parent: 2 - uid: 12161 components: - type: Transform - pos: -22.5,-43.5 + pos: 56.5,12.5 parent: 2 - uid: 12162 components: - type: Transform - pos: -12.5,-36.5 + pos: 56.5,13.5 parent: 2 - uid: 12163 components: - type: Transform - pos: -12.5,-35.5 + pos: 56.5,14.5 parent: 2 - uid: 12164 components: - type: Transform - pos: -17.5,-44.5 + pos: 52.5,8.5 parent: 2 - uid: 12165 components: - type: Transform - pos: -21.5,-45.5 + pos: 52.5,9.5 parent: 2 - uid: 12166 components: - type: Transform - pos: -21.5,-47.5 + pos: 52.5,10.5 parent: 2 - uid: 12167 components: - type: Transform - pos: -17.5,-43.5 + pos: 52.5,11.5 parent: 2 - uid: 12168 components: - type: Transform - pos: -8.5,-52.5 + pos: 51.5,11.5 parent: 2 - uid: 12169 components: - type: Transform - pos: -8.5,-53.5 + pos: 50.5,11.5 parent: 2 - uid: 12170 components: - type: Transform - pos: -8.5,-54.5 + pos: 50.5,12.5 parent: 2 - uid: 12171 components: - type: Transform - pos: 1.5,-55.5 + pos: 50.5,13.5 parent: 2 - uid: 12172 components: - type: Transform - pos: -7.5,-54.5 + pos: 60.5,0.5 parent: 2 - uid: 12173 components: - type: Transform - pos: -6.5,-54.5 + pos: 59.5,0.5 parent: 2 - uid: 12174 components: - type: Transform - pos: -5.5,-54.5 + pos: 58.5,0.5 parent: 2 - uid: 12175 components: - type: Transform - pos: -4.5,-54.5 + pos: 57.5,0.5 parent: 2 - uid: 12176 components: - type: Transform - pos: -3.5,-54.5 + pos: 56.5,0.5 parent: 2 - uid: 12177 components: - type: Transform - pos: -2.5,-54.5 + pos: 56.5,-0.5 parent: 2 - uid: 12178 components: - type: Transform - pos: -1.5,-54.5 + pos: 56.5,-1.5 parent: 2 - uid: 12179 components: - type: Transform - pos: -0.5,-54.5 + pos: 56.5,-2.5 parent: 2 - uid: 12180 components: - type: Transform - pos: 0.5,-54.5 + pos: 56.5,-3.5 parent: 2 - uid: 12181 components: - type: Transform - pos: 1.5,-54.5 + pos: 56.5,-4.5 parent: 2 - uid: 12182 components: - type: Transform - pos: 1.5,-56.5 + pos: 56.5,-5.5 parent: 2 - uid: 12183 components: - type: Transform - pos: 1.5,-57.5 + pos: 55.5,-5.5 parent: 2 - uid: 12184 components: - type: Transform - pos: 1.5,-58.5 + pos: 54.5,-5.5 parent: 2 - uid: 12185 components: - type: Transform - pos: 1.5,-59.5 + pos: 53.5,-5.5 parent: 2 - uid: 12186 components: - type: Transform - pos: 1.5,-60.5 + pos: 53.5,-4.5 parent: 2 - uid: 12187 components: - type: Transform - pos: -11.5,-51.5 + pos: 53.5,-3.5 parent: 2 - uid: 12188 components: - type: Transform - pos: -12.5,-51.5 + pos: 14.5,-13.5 parent: 2 - uid: 12189 components: - type: Transform - pos: 2.5,-54.5 + pos: 14.5,-12.5 parent: 2 - uid: 12190 components: - type: Transform - pos: 3.5,-54.5 + pos: 14.5,-11.5 parent: 2 - uid: 12191 components: - type: Transform - pos: 4.5,-54.5 + pos: 13.5,-11.5 parent: 2 - uid: 12192 components: - type: Transform - pos: 5.5,-54.5 + pos: 12.5,-11.5 parent: 2 - uid: 12193 components: - type: Transform - pos: 6.5,-54.5 + pos: 11.5,-11.5 parent: 2 - uid: 12194 components: - type: Transform - pos: 7.5,-54.5 + pos: 10.5,-11.5 parent: 2 - uid: 12195 components: - type: Transform - pos: 7.5,-55.5 + pos: 9.5,-11.5 parent: 2 - uid: 12196 components: - type: Transform - pos: 7.5,-56.5 + pos: 8.5,-11.5 parent: 2 - uid: 12197 components: - type: Transform - pos: 7.5,-57.5 + pos: 8.5,-10.5 parent: 2 - uid: 12198 components: - type: Transform - pos: -9.5,-54.5 + pos: 15.5,-12.5 parent: 2 - uid: 12199 components: - type: Transform - pos: -10.5,-54.5 + pos: 16.5,-12.5 parent: 2 - uid: 12200 components: - type: Transform - pos: -11.5,-54.5 + pos: 17.5,-12.5 parent: 2 - uid: 12201 components: - type: Transform - pos: -7.5,-60.5 + pos: 17.5,-11.5 parent: 2 - uid: 12202 components: - type: Transform - pos: -21.5,-8.5 + pos: 17.5,-10.5 parent: 2 - uid: 12203 components: - type: Transform - pos: -7.5,-59.5 + pos: 17.5,-9.5 parent: 2 - uid: 12204 components: - type: Transform - pos: -7.5,-58.5 + pos: 17.5,-8.5 parent: 2 - uid: 12205 components: - type: Transform - pos: -7.5,-57.5 + pos: 16.5,-8.5 parent: 2 - uid: 12206 components: - type: Transform - pos: -21.5,-6.5 + pos: 15.5,-8.5 parent: 2 - uid: 12207 components: - type: Transform - pos: -21.5,-7.5 + pos: 15.5,-7.5 parent: 2 - uid: 12208 components: - type: Transform - pos: -21.5,-5.5 + pos: 15.5,-6.5 parent: 2 - uid: 12209 components: - type: Transform - pos: -19.5,-4.5 + pos: 14.5,-8.5 parent: 2 - uid: 12210 components: - type: Transform - pos: -21.5,-4.5 + pos: 13.5,-8.5 parent: 2 - uid: 12211 components: - type: Transform - pos: -20.5,-4.5 + pos: 12.5,-8.5 parent: 2 - uid: 12212 components: - type: Transform - pos: -7.5,-61.5 + pos: 12.5,-7.5 parent: 2 - uid: 12213 components: - type: Transform - pos: -6.5,-61.5 + pos: 12.5,-6.5 parent: 2 - uid: 12214 components: - type: Transform - pos: -5.5,-61.5 + pos: 12.5,-5.5 parent: 2 - uid: 12215 components: - type: Transform - pos: -4.5,-61.5 + pos: 12.5,-4.5 parent: 2 - uid: 12216 components: - type: Transform - pos: -3.5,-61.5 + pos: 12.5,-3.5 parent: 2 - uid: 12217 components: - type: Transform - pos: -2.5,-61.5 + pos: 15.5,3.5 parent: 2 - uid: 12218 components: - type: Transform - pos: -1.5,-61.5 + pos: 13.5,-2.5 parent: 2 - uid: 12219 components: - type: Transform - pos: -0.5,-61.5 + pos: 13.5,-2.5 parent: 2 - uid: 12220 components: - type: Transform - pos: 0.5,-61.5 + pos: 13.5,-1.5 parent: 2 - uid: 12221 components: - type: Transform - pos: 1.5,-61.5 + pos: -15.5,-0.5 parent: 2 - uid: 12222 components: - type: Transform - pos: -13.5,-45.5 + pos: -16.5,-0.5 parent: 2 - uid: 12223 components: - type: Transform - pos: -12.5,-45.5 + pos: -14.5,-0.5 parent: 2 - uid: 12224 components: - type: Transform - pos: -11.5,-45.5 + pos: -13.5,-0.5 parent: 2 - uid: 12225 components: - type: Transform - pos: -10.5,-45.5 + pos: -12.5,-0.5 parent: 2 - uid: 12226 components: - type: Transform - pos: -9.5,-45.5 + pos: -11.5,-0.5 parent: 2 - uid: 12227 components: - type: Transform - pos: -8.5,-45.5 + pos: -10.5,-0.5 parent: 2 - uid: 12228 components: - type: Transform - pos: -7.5,-45.5 + pos: -10.5,0.5 parent: 2 - uid: 12229 components: - type: Transform - pos: -6.5,-45.5 + pos: -10.5,1.5 parent: 2 - uid: 12230 components: - type: Transform - pos: -5.5,-45.5 + pos: -10.5,2.5 parent: 2 - uid: 12231 components: - type: Transform - pos: -4.5,-45.5 + pos: -10.5,3.5 parent: 2 - uid: 12232 components: - type: Transform - pos: -3.5,-45.5 + pos: -9.5,0.5 parent: 2 - uid: 12233 components: - type: Transform - pos: -2.5,-45.5 + pos: -8.5,0.5 parent: 2 - uid: 12234 components: - type: Transform - pos: -2.5,-44.5 + pos: -7.5,0.5 parent: 2 - uid: 12235 components: - type: Transform - pos: -1.5,-44.5 + pos: -6.5,0.5 parent: 2 - uid: 12236 components: - type: Transform - pos: -0.5,-44.5 + pos: -5.5,0.5 parent: 2 - uid: 12237 components: - type: Transform - pos: -2.5,-46.5 + pos: -5.5,-0.5 parent: 2 - uid: 12238 components: - type: Transform - pos: -2.5,-47.5 + pos: -5.5,-1.5 parent: 2 - uid: 12239 components: - type: Transform - pos: -2.5,-48.5 + pos: -5.5,-2.5 parent: 2 - uid: 12240 components: - type: Transform - pos: -1.5,-48.5 + pos: -5.5,-3.5 parent: 2 - uid: 12241 components: - type: Transform - pos: -0.5,-48.5 + pos: -6.5,-3.5 parent: 2 - uid: 12242 components: - type: Transform - pos: 0.5,-48.5 + pos: -7.5,-3.5 parent: 2 - uid: 12243 components: - type: Transform - pos: 1.5,-48.5 + pos: -8.5,-3.5 parent: 2 - uid: 12244 components: - type: Transform - pos: 2.5,-48.5 + pos: -8.5,-4.5 parent: 2 - uid: 12245 components: - type: Transform - pos: 3.5,-48.5 + pos: -8.5,-5.5 parent: 2 - uid: 12246 components: - type: Transform - pos: 3.5,-47.5 + pos: -8.5,-6.5 parent: 2 - uid: 12247 components: - type: Transform - pos: 3.5,-46.5 + pos: -7.5,-6.5 parent: 2 - uid: 12248 components: - type: Transform - pos: 4.5,-46.5 + pos: -4.5,-7.5 parent: 2 - uid: 12249 components: - type: Transform - pos: 5.5,-46.5 + pos: -4.5,-8.5 parent: 2 - uid: 12250 components: - type: Transform - pos: -24.5,11.5 + pos: -4.5,-9.5 parent: 2 - uid: 12251 components: - type: Transform - pos: -29.5,-12.5 + pos: -4.5,-10.5 parent: 2 - uid: 12252 components: - type: Transform - pos: -22.5,-45.5 + pos: -5.5,-10.5 parent: 2 - uid: 12253 components: - type: Transform - pos: -23.5,-45.5 + pos: -6.5,-10.5 parent: 2 - uid: 12254 components: - type: Transform - pos: -23.5,-46.5 + pos: -7.5,-10.5 parent: 2 - uid: 12255 components: - type: Transform - pos: -23.5,-47.5 + pos: -8.5,-10.5 parent: 2 - uid: 12256 components: - type: Transform - pos: -23.5,-48.5 + pos: -9.5,-10.5 parent: 2 - uid: 12257 components: - type: Transform - pos: -22.5,-48.5 + pos: -9.5,-9.5 parent: 2 - uid: 12258 components: - type: Transform - pos: -21.5,-48.5 + pos: -9.5,-8.5 parent: 2 - uid: 12259 components: - type: Transform - pos: -40.5,11.5 + pos: 4.5,-11.5 parent: 2 - uid: 12260 components: - type: Transform - pos: -21.5,-9.5 + pos: 3.5,-11.5 parent: 2 - uid: 12261 components: - type: Transform - pos: -21.5,-10.5 + pos: 3.5,-10.5 parent: 2 - uid: 12262 components: - type: Transform - pos: -22.5,-10.5 + pos: 3.5,-9.5 parent: 2 - uid: 12263 components: - type: Transform - pos: -23.5,-11.5 + pos: 3.5,-8.5 parent: 2 - uid: 12264 components: - type: Transform - pos: -24.5,-11.5 + pos: 4.5,-8.5 parent: 2 - uid: 12265 components: - type: Transform - pos: -25.5,-11.5 + pos: 4.5,-7.5 parent: 2 - uid: 12266 components: - type: Transform - pos: -25.5,-10.5 + pos: 12.5,-2.5 parent: 2 - uid: 12267 components: - type: Transform - pos: -29.5,-11.5 + pos: 11.5,-2.5 parent: 2 - uid: 12268 components: - type: Transform - pos: -33.5,-12.5 + pos: 10.5,-2.5 parent: 2 - uid: 12269 components: - type: Transform - pos: -33.5,-10.5 + pos: 10.5,-1.5 parent: 2 - uid: 12270 components: - type: Transform - pos: -33.5,-11.5 + pos: 10.5,-0.5 parent: 2 - uid: 12271 components: - type: Transform - pos: -33.5,-9.5 + pos: 10.5,0.5 parent: 2 - uid: 12272 components: - type: Transform - pos: -33.5,-8.5 + pos: 11.5,0.5 parent: 2 - uid: 12273 components: - type: Transform - pos: -33.5,-7.5 + pos: 12.5,0.5 parent: 2 - uid: 12274 components: - type: Transform - pos: -33.5,-6.5 + pos: 13.5,0.5 parent: 2 - uid: 12275 components: - type: Transform - pos: -33.5,-5.5 + pos: 14.5,0.5 parent: 2 - uid: 12276 components: - type: Transform - pos: -33.5,-4.5 + pos: 15.5,0.5 parent: 2 - uid: 12277 components: - type: Transform - pos: -33.5,-3.5 + pos: 15.5,1.5 parent: 2 - uid: 12278 components: - type: Transform - pos: -34.5,-3.5 + pos: 15.5,2.5 parent: 2 - uid: 12279 components: - type: Transform - pos: -35.5,-3.5 + pos: -12.5,-50.5 parent: 2 - uid: 12280 components: - type: Transform - pos: -36.5,-3.5 + pos: -12.5,-49.5 parent: 2 - uid: 12281 components: - type: Transform - pos: -37.5,-3.5 + pos: -33.5,-13.5 parent: 2 - uid: 12282 components: - type: Transform - pos: -38.5,-3.5 + pos: -15.5,-45.5 parent: 2 - uid: 12283 components: - type: Transform - pos: -39.5,-3.5 + pos: 13.5,50.5 parent: 2 - uid: 12284 components: - type: Transform - pos: -40.5,-3.5 + pos: 13.5,52.5 parent: 2 - uid: 12285 components: - type: Transform - pos: -41.5,-3.5 + pos: 13.5,55.5 parent: 2 - uid: 12286 components: - type: Transform - pos: -42.5,-3.5 + pos: 13.5,56.5 parent: 2 - uid: 12287 components: - type: Transform - pos: -43.5,-3.5 + pos: -12.5,-48.5 parent: 2 - uid: 12288 components: - type: Transform - pos: -44.5,-3.5 + pos: 45.5,-53.5 parent: 2 - uid: 12289 components: - type: Transform - pos: -45.5,-3.5 + pos: 15.5,59.5 parent: 2 - uid: 12290 components: - type: Transform - pos: -45.5,-2.5 + pos: 15.5,58.5 parent: 2 - uid: 12291 components: - type: Transform - pos: -9.5,8.5 + pos: 15.5,57.5 parent: 2 - uid: 12292 components: - type: Transform - pos: -10.5,4.5 + pos: -19.5,-45.5 parent: 2 - uid: 12293 components: - type: Transform - pos: -10.5,8.5 + pos: 25.5,59.5 parent: 2 - uid: 12294 components: - type: Transform - pos: -10.5,7.5 + pos: 25.5,58.5 parent: 2 - uid: 12295 components: - type: Transform - pos: -10.5,6.5 + pos: 22.5,57.5 parent: 2 - uid: 12296 components: - type: Transform - pos: -10.5,5.5 + pos: 13.5,54.5 parent: 2 - uid: 12297 components: - type: Transform - pos: -37.5,-2.5 + pos: -16.5,-45.5 parent: 2 - uid: 12298 components: - type: Transform - pos: -37.5,-1.5 + pos: 13.5,51.5 parent: 2 - uid: 12299 components: - type: Transform - pos: -37.5,-0.5 + pos: -29.5,-13.5 parent: 2 - uid: 12300 components: - type: Transform - pos: -37.5,0.5 + pos: 18.5,53.5 parent: 2 - uid: 12301 components: - type: Transform - pos: -37.5,1.5 + pos: 19.5,53.5 parent: 2 - uid: 12302 components: - type: Transform - pos: -37.5,2.5 + pos: 19.5,52.5 parent: 2 - uid: 12303 components: - type: Transform - pos: -37.5,3.5 + pos: 19.5,51.5 parent: 2 - uid: 12304 components: - type: Transform - pos: -37.5,4.5 + pos: 19.5,50.5 parent: 2 - uid: 12305 components: - type: Transform - pos: -37.5,5.5 + pos: 19.5,54.5 parent: 2 - uid: 12306 components: - type: Transform - pos: -37.5,6.5 + pos: 19.5,55.5 parent: 2 - uid: 12307 components: - type: Transform - pos: -37.5,8.5 + pos: -17.5,-45.5 parent: 2 - uid: 12308 components: - type: Transform - pos: -37.5,9.5 + pos: 19.5,56.5 parent: 2 - uid: 12309 components: - type: Transform - pos: -37.5,10.5 + pos: 19.5,58.5 parent: 2 - uid: 12310 components: - type: Transform - pos: -37.5,11.5 + pos: 18.5,57.5 parent: 2 - uid: 12311 components: - type: Transform - pos: -38.5,11.5 + pos: 20.5,57.5 parent: 2 - uid: 12312 components: - type: Transform - pos: -39.5,11.5 + pos: 19.5,59.5 parent: 2 - uid: 12313 components: - type: Transform - pos: -41.5,11.5 + pos: 19.5,60.5 parent: 2 - uid: 12314 components: - type: Transform - pos: -42.5,11.5 + pos: 19.5,61.5 parent: 2 - uid: 12315 components: - type: Transform - pos: -43.5,11.5 + pos: 19.5,62.5 parent: 2 - uid: 12316 components: - type: Transform - pos: -44.5,11.5 + pos: 19.5,63.5 parent: 2 - uid: 12317 components: - type: Transform - pos: -45.5,11.5 + pos: 19.5,64.5 parent: 2 - uid: 12318 components: - type: Transform - pos: -46.5,11.5 + pos: 19.5,65.5 parent: 2 - uid: 12319 components: - type: Transform - pos: -47.5,11.5 + pos: 17.5,57.5 parent: 2 - uid: 12320 components: - type: Transform - pos: -48.5,11.5 + pos: 16.5,57.5 parent: 2 - uid: 12321 components: - type: Transform - pos: -49.5,11.5 + pos: 15.5,57.5 parent: 2 - uid: 12322 components: - type: Transform - pos: -35.5,11.5 + pos: 14.5,57.5 parent: 2 - uid: 12323 components: - type: Transform - pos: -36.5,11.5 + pos: 13.5,57.5 parent: 2 - uid: 12324 components: - type: Transform - pos: -34.5,11.5 + pos: 12.5,57.5 parent: 2 - uid: 12325 components: - type: Transform - pos: -33.5,11.5 + pos: 11.5,58.5 parent: 2 - uid: 12326 components: - type: Transform - pos: -32.5,11.5 + pos: 11.5,59.5 parent: 2 - uid: 12327 components: - type: Transform - pos: -31.5,11.5 + pos: 11.5,60.5 parent: 2 - uid: 12328 components: - type: Transform - pos: -36.5,4.5 + pos: 11.5,61.5 parent: 2 - uid: 12329 components: - type: Transform - pos: -35.5,4.5 + pos: 11.5,62.5 parent: 2 - uid: 12330 components: - type: Transform - pos: -34.5,4.5 + pos: 13.5,49.5 parent: 2 - uid: 12331 components: - type: Transform - pos: -33.5,4.5 + pos: 23.5,57.5 parent: 2 - uid: 12332 components: - type: Transform - pos: -30.5,11.5 + pos: 24.5,57.5 parent: 2 - uid: 12333 components: - type: Transform - pos: -29.5,11.5 + pos: 25.5,57.5 parent: 2 - uid: 12334 components: - type: Transform - pos: -28.5,11.5 + pos: 24.5,56.5 parent: 2 - uid: 12335 components: - type: Transform - pos: -27.5,11.5 + pos: 24.5,55.5 parent: 2 - uid: 12336 components: - type: Transform - pos: -26.5,11.5 + pos: 24.5,54.5 parent: 2 - uid: 12337 components: - type: Transform - pos: -25.5,11.5 + pos: 24.5,53.5 parent: 2 - uid: 12338 components: - type: Transform - pos: -26.5,12.5 + pos: 24.5,52.5 parent: 2 - uid: 12339 components: - type: Transform - pos: -26.5,14.5 + pos: 24.5,51.5 parent: 2 - uid: 12340 components: - type: Transform - pos: -26.5,13.5 + pos: 24.5,50.5 parent: 2 - uid: 12341 components: - type: Transform - pos: -26.5,15.5 + pos: 25.5,-35.5 parent: 2 - uid: 12342 components: - type: Transform - pos: -23.5,11.5 + pos: 31.5,-38.5 parent: 2 - uid: 12343 components: - type: Transform - pos: -22.5,11.5 + pos: 32.5,-38.5 parent: 2 - uid: 12344 components: - type: Transform - pos: -22.5,10.5 + pos: 32.5,-39.5 parent: 2 - uid: 12345 components: - type: Transform - pos: 15.5,5.5 + pos: 32.5,-40.5 parent: 2 - uid: 12346 components: - type: Transform - pos: 15.5,8.5 + pos: 33.5,-40.5 parent: 2 - uid: 12347 components: - type: Transform - pos: 15.5,7.5 + pos: 34.5,-40.5 parent: 2 - uid: 12348 components: - type: Transform - pos: 15.5,9.5 + pos: 34.5,-41.5 parent: 2 - uid: 12349 components: - type: Transform - pos: 15.5,10.5 + pos: 34.5,-42.5 parent: 2 - uid: 12350 components: - type: Transform - pos: -41.5,4.5 + pos: 34.5,-43.5 parent: 2 - uid: 12351 components: - type: Transform - pos: 72.5,-46.5 + pos: 34.5,-44.5 parent: 2 - uid: 12352 components: - type: Transform - pos: 69.5,-46.5 + pos: 35.5,-44.5 parent: 2 - uid: 12353 components: - type: Transform - pos: 75.5,-46.5 + pos: 36.5,-44.5 parent: 2 - uid: 12354 components: - type: Transform - pos: 55.5,-40.5 + pos: 37.5,-44.5 parent: 2 - uid: 12355 components: - type: Transform - pos: 62.5,-37.5 + pos: 38.5,-44.5 parent: 2 - uid: 12356 components: - type: Transform - pos: 53.5,-37.5 + pos: 39.5,-44.5 parent: 2 - uid: 12357 components: - type: Transform - pos: 54.5,-37.5 + pos: 39.5,-45.5 parent: 2 - uid: 12358 components: - type: Transform - pos: 68.5,-33.5 + pos: 39.5,-46.5 parent: 2 - uid: 12359 components: - type: Transform - pos: -1.5,47.5 + pos: 39.5,-47.5 parent: 2 - uid: 12360 components: - type: Transform - pos: -1.5,58.5 + pos: 42.5,-51.5 parent: 2 - uid: 12361 components: - type: Transform - pos: 84.5,-43.5 + pos: 42.5,-50.5 parent: 2 - uid: 12362 components: - type: Transform - pos: 75.5,-43.5 + pos: 43.5,-52.5 parent: 2 - uid: 12363 components: - type: Transform - pos: 55.5,-39.5 + pos: 42.5,-49.5 parent: 2 - uid: 12364 components: - type: Transform - pos: 51.5,-39.5 + pos: 46.5,-53.5 parent: 2 - uid: 12365 components: - type: Transform - pos: 52.5,-39.5 + pos: 30.5,-47.5 parent: 2 - uid: 12366 components: - type: Transform - pos: 51.5,-38.5 + pos: 29.5,-47.5 parent: 2 - uid: 12367 components: - type: Transform - pos: 51.5,-37.5 + pos: 28.5,-47.5 parent: 2 - uid: 12368 components: - type: Transform - pos: 55.5,-37.5 + pos: 27.5,-47.5 parent: 2 - uid: 12369 components: - type: Transform - pos: 55.5,-31.5 + pos: 26.5,-46.5 parent: 2 - uid: 12370 components: - type: Transform - pos: -18.5,59.5 + pos: 26.5,-45.5 parent: 2 - uid: 12371 components: - type: Transform - pos: 68.5,-46.5 + pos: 26.5,-44.5 parent: 2 - uid: 12372 components: - type: Transform - pos: 84.5,-41.5 + pos: 26.5,-47.5 parent: 2 - uid: 12373 components: - type: Transform - pos: 57.5,-32.5 + pos: 52.5,-54.5 parent: 2 - uid: 12374 components: - type: Transform - pos: 84.5,-42.5 + pos: 53.5,-54.5 parent: 2 - uid: 12375 components: - type: Transform - pos: 67.5,-34.5 + pos: 42.5,-52.5 parent: 2 - uid: 12376 components: - type: Transform - pos: 67.5,-37.5 + pos: 37.5,-49.5 parent: 2 - uid: 12377 components: - type: Transform - pos: 67.5,-33.5 + pos: 36.5,-48.5 parent: 2 - uid: 12378 components: - type: Transform - pos: 66.5,-33.5 + pos: 35.5,-48.5 parent: 2 - uid: 12379 components: - type: Transform - pos: 57.5,-31.5 + pos: 33.5,-48.5 parent: 2 - uid: 12380 components: - type: Transform - pos: 66.5,-29.5 + pos: 34.5,-48.5 parent: 2 - uid: 12381 components: - type: Transform - pos: 73.5,-38.5 + pos: 32.5,-49.5 parent: 2 - uid: 12382 components: - type: Transform - pos: 66.5,-28.5 + pos: 31.5,-49.5 parent: 2 - uid: 12383 components: - type: Transform - pos: 69.5,-39.5 + pos: 31.5,-50.5 parent: 2 - uid: 12384 components: - type: Transform - pos: 73.5,-39.5 + pos: 24.5,-35.5 parent: 2 - uid: 12385 components: - type: Transform - pos: 67.5,-36.5 + pos: 94.5,-20.5 parent: 2 - uid: 12386 components: - type: Transform - pos: 66.5,-30.5 + pos: 26.5,-35.5 parent: 2 - uid: 12387 components: - type: Transform - pos: 66.5,-30.5 + pos: 27.5,-35.5 parent: 2 - uid: 12388 components: - type: Transform - pos: 67.5,-27.5 + pos: 27.5,-33.5 parent: 2 - uid: 12389 components: - type: Transform - pos: 75.5,-38.5 + pos: 96.5,-20.5 parent: 2 - uid: 12390 components: - type: Transform - pos: 72.5,-39.5 + pos: 27.5,-34.5 parent: 2 - uid: 12391 components: - type: Transform - pos: 70.5,-46.5 + pos: 95.5,-20.5 parent: 2 - uid: 12392 components: - type: Transform - pos: 57.5,-36.5 + pos: 23.5,-33.5 parent: 2 - uid: 12393 components: - type: Transform - pos: 66.5,-31.5 + pos: 23.5,-32.5 parent: 2 - uid: 12394 components: - type: Transform - pos: 62.5,-38.5 + pos: 23.5,-31.5 parent: 2 - uid: 12395 components: - type: Transform - pos: 57.5,-35.5 + pos: 23.5,-30.5 parent: 2 - uid: 12396 components: - type: Transform - pos: 58.5,-37.5 + pos: 23.5,-34.5 parent: 2 - uid: 12397 components: - type: Transform - pos: 61.5,-37.5 + pos: 23.5,-35.5 parent: 2 - uid: 12398 components: - type: Transform - pos: 54.5,-31.5 + pos: 23.5,-36.5 parent: 2 - uid: 12399 components: - type: Transform - pos: 74.5,-38.5 + pos: 22.5,-36.5 parent: 2 - uid: 12400 components: - type: Transform - pos: 67.5,-35.5 + pos: 19.5,-41.5 parent: 2 - uid: 12401 components: - type: Transform - pos: 57.5,-34.5 + pos: 21.5,-41.5 parent: 2 - uid: 12402 components: - type: Transform - pos: 57.5,-33.5 + pos: 20.5,-41.5 parent: 2 - uid: 12403 components: - type: Transform - pos: 66.5,-27.5 + pos: 18.5,-36.5 parent: 2 - uid: 12404 components: - type: Transform - pos: 68.5,-27.5 + pos: 18.5,-37.5 parent: 2 - uid: 12405 components: - type: Transform - pos: 59.5,-37.5 + pos: 18.5,-38.5 parent: 2 - uid: 12406 components: - type: Transform - pos: 56.5,-31.5 + pos: 18.5,-39.5 parent: 2 - uid: 12407 components: - type: Transform - pos: 69.5,-27.5 + pos: 18.5,-40.5 parent: 2 - uid: 12408 components: - type: Transform - pos: 57.5,-37.5 + pos: 18.5,-41.5 parent: 2 - uid: 12409 components: - type: Transform - pos: 60.5,-37.5 + pos: 18.5,-42.5 parent: 2 - uid: 12410 components: - type: Transform - pos: 53.5,-41.5 + pos: -18.5,-45.5 parent: 2 - uid: 12411 components: - type: Transform - pos: 66.5,-48.5 + pos: -33.5,-45.5 parent: 2 - uid: 12412 components: - type: Transform - pos: 73.5,-46.5 + pos: -26.5,-41.5 parent: 2 - uid: 12413 components: - type: Transform - pos: 78.5,-45.5 + pos: -14.5,-37.5 parent: 2 - uid: 12414 components: - type: Transform - pos: 74.5,-46.5 + pos: -14.5,-38.5 parent: 2 - uid: 12415 components: - type: Transform - pos: 54.5,-41.5 + pos: -13.5,-37.5 parent: 2 - uid: 12416 components: - type: Transform - pos: 55.5,-41.5 + pos: -13.5,-36.5 parent: 2 - uid: 12417 components: - type: Transform - pos: 79.5,-44.5 + pos: -14.5,-39.5 parent: 2 - uid: 12418 components: - type: Transform - pos: 71.5,-46.5 + pos: -14.5,-40.5 parent: 2 - uid: 12419 components: - type: Transform - pos: 75.5,-36.5 + pos: -14.5,-41.5 parent: 2 - uid: 12420 components: - type: Transform - pos: 55.5,-38.5 + pos: -14.5,-42.5 parent: 2 - uid: 12421 components: - type: Transform - pos: 66.5,-47.5 + pos: -14.5,-43.5 parent: 2 - uid: 12422 components: - type: Transform - pos: 80.5,-44.5 + pos: -14.5,-44.5 parent: 2 - uid: 12423 components: - type: Transform - pos: 78.5,-44.5 + pos: -14.5,-45.5 parent: 2 - uid: 12424 components: - type: Transform - pos: 76.5,-45.5 + pos: -20.5,-45.5 parent: 2 - uid: 12425 components: - type: Transform - pos: 77.5,-45.5 + pos: -20.5,-44.5 parent: 2 - uid: 12426 components: - type: Transform - pos: 83.5,-44.5 + pos: -20.5,-43.5 parent: 2 - uid: 12427 components: - type: Transform - pos: 81.5,-44.5 + pos: -20.5,-42.5 parent: 2 - uid: 12428 components: - type: Transform - pos: 82.5,-44.5 + pos: -21.5,-42.5 parent: 2 - uid: 12429 components: - type: Transform - pos: 84.5,-44.5 + pos: -22.5,-42.5 parent: 2 - uid: 12430 components: - type: Transform - pos: 70.5,-39.5 + pos: -22.5,-43.5 parent: 2 - uid: 12431 components: - type: Transform - pos: 68.5,-39.5 + pos: -12.5,-36.5 parent: 2 - uid: 12432 components: - type: Transform - pos: 71.5,-39.5 + pos: -12.5,-35.5 parent: 2 - uid: 12433 components: - type: Transform - pos: 76.5,-37.5 + pos: -17.5,-44.5 parent: 2 - uid: 12434 components: - type: Transform - pos: 75.5,-37.5 + pos: -21.5,-45.5 parent: 2 - uid: 12435 components: - type: Transform - pos: 77.5,-37.5 + pos: -21.5,-47.5 parent: 2 - uid: 12436 components: - type: Transform - pos: 78.5,-38.5 + pos: -17.5,-43.5 parent: 2 - uid: 12437 components: - type: Transform - pos: 78.5,-37.5 + pos: -8.5,-52.5 parent: 2 - uid: 12438 components: - type: Transform - pos: 77.5,-39.5 + pos: -8.5,-53.5 parent: 2 - uid: 12439 components: - type: Transform - pos: 78.5,-39.5 + pos: -8.5,-54.5 parent: 2 - uid: 12440 components: - type: Transform - pos: 66.5,-46.5 + pos: 1.5,-55.5 parent: 2 - uid: 12441 components: - type: Transform - pos: -9.5,-37.5 + pos: -7.5,-54.5 parent: 2 - uid: 12442 components: - type: Transform - pos: -9.5,-40.5 + pos: -6.5,-54.5 parent: 2 - uid: 12443 components: - type: Transform - pos: -9.5,-39.5 + pos: -5.5,-54.5 parent: 2 - uid: 12444 components: - type: Transform - pos: -9.5,-41.5 + pos: -4.5,-54.5 parent: 2 - uid: 12445 components: - type: Transform - pos: -9.5,-42.5 + pos: -3.5,-54.5 parent: 2 - uid: 12446 components: - type: Transform - pos: -9.5,-38.5 + pos: -2.5,-54.5 parent: 2 - uid: 12447 components: - type: Transform - pos: -9.5,-43.5 + pos: -1.5,-54.5 parent: 2 - uid: 12448 components: - type: Transform - pos: -9.5,-44.5 + pos: -0.5,-54.5 parent: 2 - uid: 12449 components: - type: Transform - pos: -9.5,-36.5 + pos: 0.5,-54.5 parent: 2 - uid: 12450 components: - type: Transform - pos: -9.5,-35.5 + pos: 1.5,-54.5 parent: 2 - uid: 12451 components: - type: Transform - pos: -9.5,-34.5 + pos: 1.5,-56.5 parent: 2 - uid: 12452 components: - type: Transform - pos: 55.5,-23.5 + pos: 1.5,-57.5 parent: 2 - uid: 12453 components: - type: Transform - pos: 27.5,-32.5 + pos: 1.5,-58.5 parent: 2 - uid: 12454 components: - type: Transform - pos: 27.5,-31.5 + pos: 1.5,-59.5 parent: 2 - uid: 12455 components: - type: Transform - pos: 27.5,-30.5 + pos: 1.5,-60.5 parent: 2 - uid: 12456 components: - type: Transform - pos: 28.5,-30.5 + pos: -11.5,-51.5 parent: 2 - uid: 12457 components: - type: Transform - pos: 29.5,-30.5 + pos: -12.5,-51.5 parent: 2 - uid: 12458 components: - type: Transform - pos: 54.5,-27.5 + pos: 2.5,-54.5 parent: 2 - uid: 12459 components: - type: Transform - pos: 54.5,-26.5 + pos: 3.5,-54.5 parent: 2 - uid: 12460 components: - type: Transform - pos: 53.5,-26.5 + pos: 4.5,-54.5 parent: 2 - uid: 12461 components: - type: Transform - pos: 52.5,-26.5 + pos: 5.5,-54.5 parent: 2 - uid: 12462 components: - type: Transform - pos: 52.5,-25.5 + pos: 6.5,-54.5 parent: 2 - uid: 12463 components: - type: Transform - pos: 52.5,-24.5 + pos: 7.5,-54.5 parent: 2 - uid: 12464 components: - type: Transform - pos: 52.5,-23.5 + pos: 7.5,-55.5 parent: 2 - uid: 12465 components: - type: Transform - pos: 54.5,-23.5 + pos: 7.5,-56.5 parent: 2 - uid: 12466 components: - type: Transform - pos: 37.5,-32.5 + pos: 7.5,-57.5 parent: 2 - uid: 12467 components: - type: Transform - pos: 52.5,-27.5 + pos: -9.5,-54.5 parent: 2 - uid: 12468 components: - type: Transform - pos: 51.5,-27.5 + pos: -10.5,-54.5 parent: 2 - uid: 12469 components: - type: Transform - pos: 51.5,-28.5 + pos: -11.5,-54.5 parent: 2 - uid: 12470 components: - type: Transform - pos: 51.5,-29.5 + pos: -7.5,-60.5 parent: 2 - uid: 12471 components: - type: Transform - pos: 51.5,-30.5 + pos: -21.5,-8.5 parent: 2 - uid: 12472 components: - type: Transform - pos: 51.5,-31.5 + pos: -7.5,-59.5 parent: 2 - uid: 12473 components: - type: Transform - pos: 51.5,-32.5 + pos: -7.5,-58.5 parent: 2 - uid: 12474 components: - type: Transform - pos: 51.5,-32.5 + pos: -7.5,-57.5 parent: 2 - uid: 12475 components: - type: Transform - pos: 51.5,-33.5 + pos: -21.5,-6.5 parent: 2 - uid: 12476 components: - type: Transform - pos: 51.5,-34.5 + pos: -21.5,-7.5 parent: 2 - uid: 12477 components: - type: Transform - pos: 50.5,-34.5 + pos: -21.5,-5.5 parent: 2 - uid: 12478 components: - type: Transform - pos: 49.5,-34.5 + pos: -19.5,-4.5 parent: 2 - uid: 12479 components: - type: Transform - pos: 49.5,-33.5 + pos: -21.5,-4.5 parent: 2 - uid: 12480 components: - type: Transform - pos: 48.5,-33.5 + pos: -20.5,-4.5 parent: 2 - uid: 12481 components: - type: Transform - pos: 48.5,-32.5 + pos: -7.5,-61.5 parent: 2 - uid: 12482 components: - type: Transform - pos: 47.5,-30.5 + pos: -6.5,-61.5 parent: 2 - uid: 12483 components: - type: Transform - pos: 46.5,-30.5 + pos: -5.5,-61.5 parent: 2 - uid: 12484 components: - type: Transform - pos: 46.5,-29.5 + pos: -4.5,-61.5 parent: 2 - uid: 12485 components: - type: Transform - pos: 45.5,-29.5 + pos: -3.5,-61.5 parent: 2 - uid: 12486 components: - type: Transform - pos: 44.5,-29.5 + pos: -2.5,-61.5 parent: 2 - uid: 12487 components: - type: Transform - pos: 44.5,-30.5 + pos: -1.5,-61.5 parent: 2 - uid: 12488 components: - type: Transform - pos: 53.5,-23.5 + pos: -0.5,-61.5 parent: 2 - uid: 12489 components: - type: Transform - pos: 52.5,-22.5 + pos: 0.5,-61.5 parent: 2 - uid: 12490 components: - type: Transform - pos: 52.5,-21.5 + pos: 1.5,-61.5 parent: 2 - uid: 12491 components: - type: Transform - pos: 56.5,-23.5 + pos: -13.5,-45.5 parent: 2 - uid: 12492 components: - type: Transform - pos: 57.5,-23.5 + pos: -12.5,-45.5 parent: 2 - uid: 12493 components: - type: Transform - pos: 58.5,-23.5 + pos: -11.5,-45.5 parent: 2 - uid: 12494 components: - type: Transform - pos: 59.5,-23.5 + pos: -10.5,-45.5 parent: 2 - uid: 12495 components: - type: Transform - pos: 60.5,-23.5 + pos: -9.5,-45.5 parent: 2 - uid: 12496 components: - type: Transform - pos: 61.5,-23.5 + pos: -8.5,-45.5 parent: 2 - uid: 12497 components: - type: Transform - pos: 62.5,-23.5 + pos: -7.5,-45.5 parent: 2 - uid: 12498 components: - type: Transform - pos: 62.5,-24.5 + pos: -6.5,-45.5 parent: 2 - uid: 12499 components: - type: Transform - pos: 62.5,-24.5 + pos: -5.5,-45.5 parent: 2 - uid: 12500 components: - type: Transform - pos: 62.5,-25.5 + pos: -4.5,-45.5 parent: 2 - uid: 12501 components: - type: Transform - pos: 62.5,-26.5 + pos: -3.5,-45.5 parent: 2 - uid: 12502 components: - type: Transform - pos: 62.5,-26.5 + pos: -2.5,-45.5 parent: 2 - uid: 12503 components: - type: Transform - pos: 62.5,-27.5 + pos: -2.5,-44.5 parent: 2 - uid: 12504 components: - type: Transform - pos: 61.5,-27.5 + pos: -1.5,-44.5 parent: 2 - uid: 12505 components: - type: Transform - pos: 60.5,-27.5 + pos: -0.5,-44.5 parent: 2 - uid: 12506 components: - type: Transform - pos: 75.5,-27.5 + pos: -2.5,-46.5 parent: 2 - uid: 12507 components: - type: Transform - pos: 74.5,-27.5 + pos: -2.5,-47.5 parent: 2 - uid: 12508 components: - type: Transform - pos: 69.5,-28.5 + pos: -2.5,-48.5 parent: 2 - uid: 12509 components: - type: Transform - pos: 75.5,-29.5 + pos: -1.5,-48.5 parent: 2 - uid: 12510 components: - type: Transform - pos: 74.5,-29.5 + pos: -0.5,-48.5 parent: 2 - uid: 12511 components: - type: Transform - pos: -48.5,-46.5 + pos: 0.5,-48.5 parent: 2 - uid: 12512 components: - type: Transform - pos: -4.5,64.5 + pos: 1.5,-48.5 parent: 2 - uid: 12513 components: - type: Transform - pos: -4.5,65.5 + pos: 2.5,-48.5 parent: 2 - uid: 12514 components: - type: Transform - pos: -4.5,66.5 + pos: 3.5,-48.5 parent: 2 - uid: 12515 components: - type: Transform - pos: -4.5,67.5 + pos: 3.5,-47.5 parent: 2 - uid: 12516 components: - type: Transform - pos: -19.5,59.5 + pos: 3.5,-46.5 parent: 2 - uid: 12517 components: - type: Transform - pos: -17.5,58.5 + pos: 4.5,-46.5 parent: 2 - uid: 12518 components: - type: Transform - pos: -17.5,57.5 + pos: 5.5,-46.5 parent: 2 - uid: 12519 components: - type: Transform - pos: -17.5,59.5 + pos: -24.5,11.5 parent: 2 - uid: 12520 components: - type: Transform - pos: -20.5,59.5 + pos: -29.5,-12.5 parent: 2 - uid: 12521 components: - type: Transform - pos: -21.5,59.5 + pos: -22.5,-45.5 parent: 2 - uid: 12522 components: - type: Transform - pos: -22.5,59.5 + pos: -23.5,-45.5 parent: 2 - uid: 12523 components: - type: Transform - pos: -23.5,59.5 + pos: -23.5,-46.5 parent: 2 - uid: 12524 components: - type: Transform - pos: -24.5,59.5 + pos: -23.5,-47.5 parent: 2 - uid: 12525 components: - type: Transform - pos: -4.5,63.5 + pos: -23.5,-48.5 parent: 2 - uid: 12526 components: - type: Transform - pos: -31.5,54.5 + pos: -22.5,-48.5 parent: 2 - uid: 12527 components: - type: Transform - pos: -31.5,53.5 + pos: -21.5,-48.5 parent: 2 - uid: 12528 components: - type: Transform - pos: -31.5,52.5 + pos: -40.5,11.5 parent: 2 - uid: 12529 components: - type: Transform - pos: -31.5,51.5 + pos: -21.5,-9.5 parent: 2 - uid: 12530 components: - type: Transform - pos: -31.5,50.5 + pos: -21.5,-10.5 parent: 2 - uid: 12531 components: - type: Transform - pos: -30.5,50.5 + pos: -22.5,-10.5 parent: 2 - uid: 12532 components: - type: Transform - pos: -29.5,50.5 + pos: -23.5,-11.5 parent: 2 - uid: 12533 components: - type: Transform - pos: -28.5,50.5 + pos: -24.5,-11.5 parent: 2 - uid: 12534 components: - type: Transform - pos: -27.5,50.5 + pos: -25.5,-11.5 parent: 2 - uid: 12535 components: - type: Transform - pos: -26.5,50.5 + pos: -25.5,-10.5 parent: 2 - uid: 12536 components: - type: Transform - pos: -26.5,49.5 + pos: -29.5,-11.5 parent: 2 - uid: 12537 components: - type: Transform - pos: -25.5,49.5 + pos: -33.5,-12.5 parent: 2 - uid: 12538 components: - type: Transform - pos: -24.5,49.5 + pos: -33.5,-10.5 parent: 2 - uid: 12539 components: - type: Transform - pos: -23.5,49.5 + pos: -33.5,-11.5 parent: 2 - uid: 12540 components: - type: Transform - pos: -22.5,49.5 + pos: -33.5,-9.5 parent: 2 - uid: 12541 components: - type: Transform - pos: -21.5,49.5 + pos: -33.5,-8.5 parent: 2 - uid: 12542 components: - type: Transform - pos: -20.5,49.5 + pos: -33.5,-7.5 parent: 2 - uid: 12543 components: - type: Transform - pos: -19.5,49.5 + pos: -33.5,-6.5 parent: 2 - uid: 12544 components: - type: Transform - pos: -18.5,49.5 + pos: -33.5,-5.5 parent: 2 - uid: 12545 components: - type: Transform - pos: -17.5,49.5 + pos: -33.5,-4.5 parent: 2 - uid: 12546 components: - type: Transform - pos: -17.5,48.5 + pos: -33.5,-3.5 parent: 2 - uid: 12547 components: - type: Transform - pos: -17.5,47.5 + pos: -34.5,-3.5 parent: 2 - uid: 12548 components: - type: Transform - pos: -16.5,47.5 + pos: -35.5,-3.5 parent: 2 - uid: 12549 components: - type: Transform - pos: -15.5,47.5 + pos: -36.5,-3.5 parent: 2 - uid: 12550 components: - type: Transform - pos: -14.5,47.5 + pos: -37.5,-3.5 parent: 2 - uid: 12551 components: - type: Transform - pos: -13.5,47.5 + pos: -38.5,-3.5 parent: 2 - uid: 12552 components: - type: Transform - pos: -12.5,47.5 + pos: -39.5,-3.5 parent: 2 - uid: 12553 components: - type: Transform - pos: -11.5,47.5 + pos: -40.5,-3.5 parent: 2 - uid: 12554 components: - type: Transform - pos: -10.5,47.5 + pos: -41.5,-3.5 parent: 2 - uid: 12555 components: - type: Transform - pos: -9.5,47.5 + pos: -42.5,-3.5 parent: 2 - uid: 12556 components: - type: Transform - pos: -8.5,47.5 + pos: -43.5,-3.5 parent: 2 - uid: 12557 components: - type: Transform - pos: -7.5,47.5 + pos: -44.5,-3.5 parent: 2 - uid: 12558 components: - type: Transform - pos: -6.5,47.5 + pos: -45.5,-3.5 parent: 2 - uid: 12559 components: - type: Transform - pos: -5.5,47.5 + pos: -45.5,-2.5 parent: 2 - uid: 12560 components: - type: Transform - pos: -4.5,47.5 + pos: -9.5,8.5 parent: 2 - uid: 12561 components: - type: Transform - pos: -3.5,47.5 + pos: -10.5,4.5 parent: 2 - uid: 12562 components: - type: Transform - pos: -2.5,47.5 + pos: -10.5,8.5 parent: 2 - uid: 12563 components: - type: Transform - pos: -22.5,50.5 + pos: -10.5,7.5 parent: 2 - uid: 12564 components: - type: Transform - pos: -22.5,51.5 + pos: -10.5,6.5 parent: 2 - uid: 12565 components: - type: Transform - pos: -23.5,51.5 + pos: -10.5,5.5 parent: 2 - uid: 12566 components: - type: Transform - pos: -24.5,51.5 + pos: -37.5,-2.5 parent: 2 - uid: 12567 components: - type: Transform - pos: -25.5,51.5 + pos: -37.5,-1.5 parent: 2 - uid: 12568 components: - type: Transform - pos: -14.5,46.5 + pos: -37.5,-0.5 parent: 2 - uid: 12569 components: - type: Transform - pos: -14.5,45.5 + pos: -37.5,0.5 parent: 2 - uid: 12570 components: - type: Transform - pos: -14.5,44.5 + pos: -37.5,1.5 parent: 2 - uid: 12571 components: - type: Transform - pos: -14.5,43.5 + pos: -37.5,2.5 parent: 2 - uid: 12572 components: - type: Transform - pos: -19.5,43.5 + pos: -37.5,3.5 parent: 2 - uid: 12573 components: - type: Transform - pos: -18.5,43.5 + pos: -37.5,4.5 parent: 2 - uid: 12574 components: - type: Transform - pos: -17.5,43.5 + pos: -37.5,5.5 parent: 2 - uid: 12575 components: - type: Transform - pos: -16.5,43.5 + pos: -37.5,6.5 parent: 2 - uid: 12576 components: - type: Transform - pos: -15.5,43.5 + pos: -37.5,8.5 parent: 2 - uid: 12577 components: - type: Transform - pos: -23.5,56.5 + pos: -37.5,9.5 parent: 2 - uid: 12578 components: - type: Transform - pos: -24.5,56.5 + pos: -37.5,10.5 parent: 2 - uid: 12579 components: - type: Transform - pos: -22.5,56.5 + pos: -37.5,11.5 parent: 2 - uid: 12580 components: - type: Transform - pos: -22.5,55.5 + pos: -38.5,11.5 parent: 2 - uid: 12581 components: - type: Transform - pos: -22.5,54.5 + pos: -39.5,11.5 parent: 2 - uid: 12582 components: - type: Transform - pos: -21.5,54.5 + pos: -41.5,11.5 parent: 2 - uid: 12583 components: - type: Transform - pos: -20.5,54.5 + pos: -42.5,11.5 parent: 2 - uid: 12584 components: - type: Transform - pos: -19.5,54.5 + pos: -43.5,11.5 parent: 2 - uid: 12585 components: - type: Transform - pos: -18.5,54.5 + pos: -44.5,11.5 parent: 2 - uid: 12586 components: - type: Transform - pos: -17.5,54.5 + pos: -45.5,11.5 parent: 2 - uid: 12587 components: - type: Transform - pos: -17.5,53.5 + pos: -46.5,11.5 parent: 2 - uid: 12588 components: - type: Transform - pos: -17.5,52.5 + pos: -47.5,11.5 parent: 2 - uid: 12589 components: - type: Transform - pos: -17.5,51.5 + pos: -48.5,11.5 parent: 2 - uid: 12590 components: - type: Transform - pos: -17.5,50.5 + pos: -49.5,11.5 parent: 2 - uid: 12591 components: - type: Transform - pos: -4.5,46.5 + pos: -35.5,11.5 parent: 2 - uid: 12592 components: - type: Transform - pos: -4.5,45.5 + pos: -36.5,11.5 parent: 2 - uid: 12593 components: - type: Transform - pos: -4.5,44.5 + pos: -34.5,11.5 parent: 2 - uid: 12594 components: - type: Transform - pos: -3.5,44.5 + pos: -33.5,11.5 parent: 2 - uid: 12595 components: - type: Transform - pos: -0.5,47.5 + pos: -32.5,11.5 parent: 2 - uid: 12596 components: - type: Transform - pos: 0.5,47.5 + pos: -31.5,11.5 parent: 2 - uid: 12597 components: - type: Transform - pos: 1.5,47.5 + pos: -36.5,4.5 parent: 2 - uid: 12598 components: - type: Transform - pos: 2.5,47.5 + pos: -35.5,4.5 parent: 2 - uid: 12599 components: - type: Transform - pos: 3.5,47.5 + pos: -34.5,4.5 parent: 2 - uid: 12600 components: - type: Transform - pos: 4.5,47.5 + pos: -33.5,4.5 parent: 2 - uid: 12601 components: - type: Transform - pos: 5.5,47.5 + pos: -30.5,11.5 parent: 2 - uid: 12602 components: - type: Transform - pos: 6.5,47.5 + pos: -29.5,11.5 parent: 2 - uid: 12603 components: - type: Transform - pos: 5.5,55.5 + pos: -28.5,11.5 parent: 2 - uid: 12604 components: - type: Transform - pos: 2.5,41.5 + pos: -27.5,11.5 parent: 2 - uid: 12605 components: - type: Transform - pos: 3.5,42.5 + pos: -26.5,11.5 parent: 2 - uid: 12606 components: - type: Transform - pos: 4.5,42.5 + pos: -25.5,11.5 parent: 2 - uid: 12607 components: - type: Transform - pos: 4.5,43.5 + pos: -26.5,12.5 parent: 2 - uid: 12608 components: - type: Transform - pos: 4.5,44.5 + pos: -26.5,14.5 parent: 2 - uid: 12609 components: - type: Transform - pos: 5.5,44.5 + pos: -26.5,13.5 parent: 2 - uid: 12610 components: - type: Transform - pos: 6.5,44.5 + pos: -26.5,15.5 parent: 2 - uid: 12611 components: - type: Transform - pos: 6.5,45.5 + pos: -23.5,11.5 parent: 2 - uid: 12612 components: - type: Transform - pos: 6.5,46.5 + pos: -22.5,11.5 parent: 2 - uid: 12613 components: - type: Transform - pos: -6.5,67.5 + pos: -22.5,10.5 parent: 2 - uid: 12614 components: - type: Transform - pos: -6.5,68.5 + pos: 15.5,5.5 parent: 2 - uid: 12615 components: - type: Transform - pos: -5.5,68.5 + pos: 15.5,8.5 parent: 2 - uid: 12616 components: - type: Transform - pos: -4.5,68.5 + pos: 15.5,7.5 parent: 2 - uid: 12617 components: - type: Transform - pos: -4.5,62.5 + pos: 15.5,9.5 parent: 2 - uid: 12618 components: - type: Transform - pos: -4.5,61.5 + pos: 15.5,10.5 parent: 2 - uid: 12619 components: - type: Transform - pos: -3.5,61.5 + pos: -41.5,4.5 parent: 2 - uid: 12620 components: - type: Transform - pos: -2.5,61.5 + pos: 72.5,-46.5 parent: 2 - uid: 12621 components: - type: Transform - pos: -1.5,61.5 + pos: 69.5,-46.5 parent: 2 - uid: 12622 components: - type: Transform - pos: -0.5,60.5 + pos: 75.5,-46.5 parent: 2 - uid: 12623 components: - type: Transform - pos: 0.5,60.5 + pos: 55.5,-40.5 parent: 2 - uid: 12624 components: - type: Transform - pos: 1.5,60.5 + pos: 62.5,-37.5 parent: 2 - uid: 12625 components: - type: Transform - pos: 1.5,61.5 + pos: 53.5,-37.5 parent: 2 - uid: 12626 components: - type: Transform - pos: 1.5,62.5 + pos: 54.5,-37.5 parent: 2 - uid: 12627 components: - type: Transform - pos: 0.5,62.5 + pos: 68.5,-33.5 parent: 2 - uid: 12628 components: - type: Transform - pos: -1.5,57.5 + pos: -1.5,47.5 parent: 2 - uid: 12629 components: - type: Transform - pos: -1.5,59.5 + pos: -1.5,58.5 parent: 2 - uid: 12630 components: - type: Transform - pos: -1.5,60.5 + pos: 84.5,-43.5 parent: 2 - uid: 12631 components: - type: Transform - pos: -1.5,56.5 + pos: 75.5,-43.5 parent: 2 - uid: 12632 components: - type: Transform - pos: -1.5,55.5 + pos: 55.5,-39.5 parent: 2 - uid: 12633 components: - type: Transform - pos: -1.5,54.5 + pos: 51.5,-39.5 parent: 2 - uid: 12634 components: - type: Transform - pos: -1.5,53.5 + pos: 52.5,-39.5 parent: 2 - uid: 12635 components: - type: Transform - pos: -1.5,52.5 + pos: 51.5,-38.5 parent: 2 - uid: 12636 components: - type: Transform - pos: -1.5,51.5 + pos: 51.5,-37.5 parent: 2 - uid: 12637 components: - type: Transform - pos: -1.5,50.5 + pos: 55.5,-37.5 parent: 2 - uid: 12638 components: - type: Transform - pos: -1.5,49.5 + pos: 55.5,-31.5 parent: 2 - uid: 12639 components: - type: Transform - pos: -1.5,48.5 + pos: 68.5,-46.5 parent: 2 - uid: 12640 components: - type: Transform - pos: -2.5,53.5 + pos: 84.5,-41.5 parent: 2 - uid: 12641 components: - type: Transform - pos: -3.5,53.5 + pos: 57.5,-32.5 parent: 2 - uid: 12642 components: - type: Transform - pos: -11.5,59.5 + pos: 84.5,-42.5 parent: 2 - uid: 12643 components: - type: Transform - pos: -12.5,59.5 + pos: 67.5,-34.5 parent: 2 - uid: 12644 components: - type: Transform - pos: -12.5,58.5 + pos: 67.5,-37.5 parent: 2 - uid: 12645 components: - type: Transform - pos: -11.5,58.5 + pos: 67.5,-33.5 parent: 2 - uid: 12646 components: - type: Transform - pos: -10.5,58.5 + pos: 66.5,-33.5 parent: 2 - uid: 12647 components: - type: Transform - pos: -9.5,58.5 + pos: 57.5,-31.5 parent: 2 - uid: 12648 components: - type: Transform - pos: -8.5,58.5 + pos: 66.5,-29.5 parent: 2 - uid: 12649 components: - type: Transform - pos: -7.5,58.5 + pos: 73.5,-38.5 parent: 2 - uid: 12650 components: - type: Transform - pos: -6.5,58.5 + pos: 66.5,-28.5 parent: 2 - uid: 12651 components: - type: Transform - pos: -5.5,58.5 + pos: 69.5,-39.5 parent: 2 - uid: 12652 components: - type: Transform - pos: -5.5,57.5 + pos: 73.5,-39.5 parent: 2 - uid: 12653 components: - type: Transform - pos: -5.5,56.5 + pos: 67.5,-36.5 parent: 2 - uid: 12654 components: - type: Transform - pos: -5.5,55.5 + pos: 66.5,-30.5 parent: 2 - uid: 12655 components: - type: Transform - pos: -5.5,54.5 + pos: 66.5,-30.5 parent: 2 - uid: 12656 components: - type: Transform - pos: -5.5,53.5 + pos: 67.5,-27.5 parent: 2 - uid: 12657 components: - type: Transform - pos: -5.5,52.5 + pos: 75.5,-38.5 parent: 2 - uid: 12658 components: - type: Transform - pos: -5.5,51.5 + pos: 72.5,-39.5 parent: 2 - uid: 12659 components: - type: Transform - pos: -5.5,50.5 + pos: 70.5,-46.5 parent: 2 - uid: 12660 components: - type: Transform - pos: -5.5,49.5 + pos: 57.5,-36.5 parent: 2 - uid: 12661 components: - type: Transform - pos: -5.5,48.5 + pos: 66.5,-31.5 parent: 2 - uid: 12662 components: - type: Transform - pos: -4.5,33.5 + pos: 62.5,-38.5 parent: 2 - uid: 12663 components: - type: Transform - pos: -1.5,36.5 + pos: 57.5,-35.5 parent: 2 - uid: 12664 components: - type: Transform - pos: -1.5,37.5 + pos: 58.5,-37.5 parent: 2 - uid: 12665 components: - type: Transform - pos: -1.5,38.5 + pos: 61.5,-37.5 parent: 2 - uid: 12666 components: - type: Transform - pos: -1.5,39.5 + pos: 54.5,-31.5 parent: 2 - uid: 12667 components: - type: Transform - pos: -1.5,40.5 + pos: 74.5,-38.5 parent: 2 - uid: 12668 components: - type: Transform - pos: -1.5,41.5 + pos: 67.5,-35.5 parent: 2 - uid: 12669 components: - type: Transform - pos: -1.5,42.5 + pos: 57.5,-34.5 parent: 2 - uid: 12670 components: - type: Transform - pos: -1.5,43.5 + pos: 57.5,-33.5 parent: 2 - uid: 12671 components: - type: Transform - pos: -1.5,44.5 + pos: 66.5,-27.5 parent: 2 - uid: 12672 components: - type: Transform - pos: -1.5,45.5 + pos: 68.5,-27.5 parent: 2 - uid: 12673 components: - type: Transform - pos: -1.5,46.5 + pos: 59.5,-37.5 parent: 2 - uid: 12674 components: - type: Transform - pos: -26.5,-40.5 + pos: 56.5,-31.5 parent: 2 - uid: 12675 components: - type: Transform - pos: -25.5,-40.5 + pos: 69.5,-27.5 parent: 2 - uid: 12676 components: - type: Transform - pos: -24.5,-45.5 + pos: 57.5,-37.5 parent: 2 - uid: 12677 components: - type: Transform - pos: -25.5,-45.5 + pos: 60.5,-37.5 parent: 2 - uid: 12678 components: - type: Transform - pos: -26.5,-45.5 + pos: 53.5,-41.5 parent: 2 - uid: 12679 components: - type: Transform - pos: -27.5,-45.5 + pos: 66.5,-48.5 parent: 2 - uid: 12680 components: - type: Transform - pos: -28.5,-45.5 + pos: 73.5,-46.5 parent: 2 - uid: 12681 components: - type: Transform - pos: -29.5,-45.5 + pos: 78.5,-45.5 parent: 2 - uid: 12682 components: - type: Transform - pos: -30.5,-45.5 + pos: 74.5,-46.5 parent: 2 - uid: 12683 components: - type: Transform - pos: -31.5,-45.5 + pos: 54.5,-41.5 parent: 2 - uid: 12684 components: - type: Transform - pos: -32.5,-45.5 + pos: 55.5,-41.5 parent: 2 - uid: 12685 components: - type: Transform - pos: -34.5,-45.5 + pos: 79.5,-44.5 parent: 2 - uid: 12686 components: - type: Transform - pos: -34.5,-46.5 + pos: 71.5,-46.5 parent: 2 - uid: 12687 components: - type: Transform - pos: -34.5,-47.5 + pos: 75.5,-36.5 parent: 2 - uid: 12688 components: - type: Transform - pos: -34.5,-48.5 + pos: 55.5,-38.5 parent: 2 - uid: 12689 components: - type: Transform - pos: -40.5,-39.5 + pos: 66.5,-47.5 parent: 2 - uid: 12690 components: - type: Transform - pos: -40.5,-40.5 + pos: 80.5,-44.5 parent: 2 - uid: 12691 components: - type: Transform - pos: -42.5,-35.5 + pos: 78.5,-44.5 parent: 2 - uid: 12692 components: - type: Transform - pos: -42.5,-36.5 + pos: 76.5,-45.5 parent: 2 - uid: 12693 components: - type: Transform - pos: -44.5,-34.5 + pos: 77.5,-45.5 parent: 2 - uid: 12694 components: - type: Transform - pos: -47.5,-46.5 + pos: 83.5,-44.5 parent: 2 - uid: 12695 components: - type: Transform - pos: -46.5,-46.5 + pos: 81.5,-44.5 parent: 2 - uid: 12696 components: - type: Transform - pos: -45.5,-46.5 + pos: 82.5,-44.5 parent: 2 - uid: 12697 components: - type: Transform - pos: -44.5,-46.5 + pos: 84.5,-44.5 parent: 2 - uid: 12698 components: - type: Transform - pos: -40.5,-37.5 + pos: 70.5,-39.5 parent: 2 - uid: 12699 components: - type: Transform - pos: -45.5,-34.5 + pos: 68.5,-39.5 parent: 2 - uid: 12700 components: - type: Transform - pos: -41.5,-45.5 + pos: 71.5,-39.5 parent: 2 - uid: 12701 components: - type: Transform - pos: -40.5,-38.5 + pos: 76.5,-37.5 parent: 2 - uid: 12702 components: - type: Transform - pos: -42.5,-45.5 + pos: 75.5,-37.5 parent: 2 - uid: 12703 components: - type: Transform - pos: -41.5,-36.5 + pos: 77.5,-37.5 parent: 2 - uid: 12704 components: - type: Transform - pos: -44.5,-35.5 + pos: 78.5,-38.5 parent: 2 - uid: 12705 components: - type: Transform - pos: -43.5,-35.5 + pos: 78.5,-37.5 parent: 2 - uid: 12706 components: - type: Transform - pos: -43.5,-45.5 + pos: 77.5,-39.5 parent: 2 - uid: 12707 components: - type: Transform - pos: -41.5,-43.5 + pos: 78.5,-39.5 parent: 2 - uid: 12708 components: - type: Transform - pos: -40.5,-43.5 + pos: 66.5,-46.5 parent: 2 - uid: 12709 components: - type: Transform - pos: -40.5,-42.5 + pos: -9.5,-37.5 parent: 2 - uid: 12710 components: - type: Transform - pos: -47.5,-34.5 + pos: -9.5,-40.5 parent: 2 - uid: 12711 components: - type: Transform - pos: -48.5,-34.5 + pos: -9.5,-39.5 parent: 2 - uid: 12712 components: - type: Transform - pos: -37.5,-44.5 + pos: -9.5,-41.5 parent: 2 - uid: 12713 components: - type: Transform - pos: 27.5,28.5 + pos: -9.5,-42.5 parent: 2 - uid: 12714 components: - type: Transform - pos: 28.5,28.5 + pos: -9.5,-38.5 parent: 2 - uid: 12715 components: - type: Transform - pos: 29.5,28.5 + pos: -9.5,-43.5 parent: 2 - uid: 12716 components: - type: Transform - pos: 34.5,27.5 + pos: -9.5,-44.5 parent: 2 - uid: 12717 components: - type: Transform - pos: 30.5,28.5 + pos: -9.5,-36.5 parent: 2 - uid: 12718 components: - type: Transform - pos: 31.5,28.5 + pos: -9.5,-35.5 parent: 2 - uid: 12719 components: - type: Transform - pos: 34.5,26.5 + pos: -9.5,-34.5 parent: 2 - uid: 12720 components: - type: Transform - pos: 32.5,28.5 + pos: 55.5,-23.5 parent: 2 - uid: 12721 components: - type: Transform - pos: 15.5,4.5 + pos: 27.5,-32.5 parent: 2 - uid: 12722 components: - type: Transform - pos: 36.5,28.5 + pos: 27.5,-31.5 parent: 2 - uid: 12723 components: - type: Transform - pos: 8.5,25.5 + pos: 27.5,-30.5 parent: 2 - uid: 12724 components: - type: Transform - pos: 11.5,25.5 + pos: 28.5,-30.5 parent: 2 - uid: 12725 components: - type: Transform - pos: 10.5,25.5 + pos: 29.5,-30.5 parent: 2 - uid: 12726 components: - type: Transform - pos: 12.5,25.5 + pos: 54.5,-27.5 parent: 2 - uid: 12727 components: - type: Transform - pos: 8.5,27.5 + pos: 54.5,-26.5 parent: 2 - uid: 12728 components: - type: Transform - pos: 7.5,27.5 + pos: 53.5,-26.5 parent: 2 - uid: 12729 components: - type: Transform - pos: 6.5,27.5 + pos: 52.5,-26.5 parent: 2 - uid: 12730 components: - type: Transform - pos: 5.5,29.5 + pos: 52.5,-25.5 parent: 2 - uid: 12731 components: - type: Transform - pos: 9.5,25.5 + pos: 52.5,-24.5 parent: 2 - uid: 12732 components: - type: Transform - pos: 5.5,27.5 + pos: 52.5,-23.5 parent: 2 - uid: 12733 components: - type: Transform - pos: 8.5,26.5 + pos: 54.5,-23.5 parent: 2 - uid: 12734 components: - type: Transform - pos: 5.5,28.5 + pos: 37.5,-32.5 parent: 2 - uid: 12735 components: - type: Transform - pos: 37.5,27.5 + pos: 52.5,-27.5 parent: 2 - uid: 12736 components: - type: Transform - pos: -30.5,58.5 + pos: 51.5,-27.5 parent: 2 - uid: 12737 components: - type: Transform - pos: 37.5,28.5 + pos: 51.5,-28.5 parent: 2 - uid: 12738 components: - type: Transform - pos: 77.5,-25.5 + pos: 51.5,-29.5 parent: 2 - uid: 12739 components: - type: Transform - pos: 75.5,-25.5 + pos: 51.5,-30.5 parent: 2 - uid: 12740 components: - type: Transform - pos: 45.5,32.5 + pos: 51.5,-31.5 parent: 2 - uid: 12741 components: - type: Transform - pos: 76.5,-25.5 + pos: 51.5,-32.5 parent: 2 - uid: 12742 components: - type: Transform - pos: 15.5,21.5 + pos: 51.5,-32.5 parent: 2 - uid: 12743 components: - type: Transform - pos: -4.5,35.5 + pos: 51.5,-33.5 parent: 2 - uid: 12744 components: - type: Transform - pos: -19.5,58.5 + pos: 51.5,-34.5 parent: 2 - uid: 12745 components: - type: Transform - pos: -24.5,8.5 + pos: 50.5,-34.5 parent: 2 - uid: 12746 components: - type: Transform - pos: -23.5,8.5 + pos: 49.5,-34.5 parent: 2 - uid: 12747 components: - type: Transform - pos: -22.5,9.5 + pos: 49.5,-33.5 parent: 2 - uid: 12748 components: - type: Transform - pos: -24.5,9.5 + pos: 48.5,-33.5 parent: 2 - uid: 12749 components: - type: Transform - pos: -22.5,8.5 + pos: 48.5,-32.5 parent: 2 - uid: 12750 components: - type: Transform - pos: 2.5,42.5 + pos: 47.5,-30.5 parent: 2 - uid: 12751 components: - type: Transform - pos: 74.5,-28.5 + pos: 46.5,-30.5 parent: 2 - uid: 12752 components: - type: Transform - pos: -53.5,17.5 + pos: 46.5,-29.5 parent: 2 - uid: 12753 components: - type: Transform - pos: -34.5,10.5 + pos: 45.5,-29.5 parent: 2 - uid: 12754 components: - type: Transform - pos: -34.5,9.5 + pos: 44.5,-29.5 parent: 2 - uid: 12755 components: - type: Transform - pos: -50.5,11.5 + pos: 44.5,-30.5 parent: 2 - uid: 12756 components: - type: Transform - pos: -51.5,11.5 + pos: 53.5,-23.5 parent: 2 - uid: 12757 components: - type: Transform - pos: -52.5,11.5 + pos: 52.5,-22.5 parent: 2 - uid: 12758 components: - type: Transform - pos: -53.5,11.5 + pos: 52.5,-21.5 parent: 2 - uid: 12759 components: - type: Transform - pos: -54.5,11.5 + pos: 56.5,-23.5 parent: 2 - uid: 12760 components: - type: Transform - pos: -55.5,11.5 + pos: 57.5,-23.5 parent: 2 - uid: 12761 components: - type: Transform - pos: -55.5,12.5 + pos: 58.5,-23.5 parent: 2 - uid: 12762 components: - type: Transform - pos: -55.5,13.5 + pos: 59.5,-23.5 parent: 2 - uid: 12763 components: - type: Transform - pos: -55.5,14.5 + pos: 60.5,-23.5 parent: 2 - uid: 12764 components: - type: Transform - pos: -55.5,15.5 + pos: 61.5,-23.5 parent: 2 - uid: 12765 components: - type: Transform - pos: -55.5,16.5 + pos: 62.5,-23.5 parent: 2 - uid: 12766 components: - type: Transform - pos: -54.5,16.5 + pos: 62.5,-24.5 parent: 2 - uid: 12767 components: - type: Transform - pos: -53.5,16.5 + pos: 62.5,-24.5 parent: 2 - uid: 12768 components: - type: Transform - pos: -53.5,18.5 + pos: 62.5,-25.5 parent: 2 - uid: 12769 components: - type: Transform - pos: -43.5,9.5 + pos: 62.5,-26.5 parent: 2 - uid: 12770 components: - type: Transform - pos: -43.5,8.5 + pos: 62.5,-26.5 parent: 2 - uid: 12771 components: - type: Transform - pos: -43.5,7.5 + pos: 62.5,-27.5 parent: 2 - uid: 12772 components: - type: Transform - pos: -42.5,7.5 + pos: 61.5,-27.5 parent: 2 - uid: 12773 components: - type: Transform - pos: -41.5,7.5 + pos: 60.5,-27.5 parent: 2 - uid: 12774 components: - type: Transform - pos: -41.5,6.5 + pos: 75.5,-27.5 parent: 2 - uid: 12775 components: - type: Transform - pos: -41.5,5.5 + pos: 74.5,-27.5 parent: 2 - uid: 12776 components: - type: Transform - pos: -41.5,3.5 + pos: 69.5,-28.5 parent: 2 - uid: 12777 components: - type: Transform - pos: -41.5,2.5 + pos: 75.5,-29.5 parent: 2 - uid: 12778 components: - type: Transform - pos: -42.5,2.5 + pos: 74.5,-29.5 parent: 2 - uid: 12779 components: - type: Transform - pos: -42.5,1.5 + pos: -48.5,-46.5 parent: 2 - uid: 12780 components: - type: Transform - pos: -42.5,0.5 + pos: -4.5,64.5 parent: 2 - uid: 12781 components: - type: Transform - pos: -42.5,-0.5 + pos: -4.5,65.5 parent: 2 - uid: 12782 components: - type: Transform - pos: -42.5,-1.5 + pos: -4.5,66.5 parent: 2 - uid: 12783 components: - type: Transform - pos: -42.5,-2.5 + pos: -4.5,67.5 parent: 2 - uid: 12784 components: - type: Transform - pos: -41.5,-1.5 + pos: -20.5,59.5 parent: 2 - uid: 12785 components: - type: Transform - pos: -43.5,-1.5 + pos: -21.5,59.5 parent: 2 - uid: 12786 components: - type: Transform - pos: 14.5,8.5 + pos: -22.5,59.5 parent: 2 - uid: 12787 components: - type: Transform - pos: -34.5,-11.5 + pos: -23.5,59.5 parent: 2 - uid: 12788 components: - type: Transform - pos: -35.5,-11.5 + pos: -24.5,59.5 parent: 2 - uid: 12789 components: - type: Transform - pos: -36.5,-11.5 + pos: -4.5,63.5 parent: 2 - uid: 12790 components: - type: Transform - pos: -36.5,-10.5 + pos: -31.5,54.5 parent: 2 - uid: 12791 components: - type: Transform - pos: -21.5,-3.5 + pos: -31.5,53.5 parent: 2 - uid: 12792 components: - type: Transform - pos: -31.5,55.5 + pos: -31.5,52.5 parent: 2 - uid: 12793 components: - type: Transform - pos: -31.5,56.5 + pos: -31.5,51.5 parent: 2 - uid: 12794 components: - type: Transform - pos: -31.5,57.5 + pos: -31.5,50.5 parent: 2 - uid: 12795 components: - type: Transform - pos: -31.5,58.5 + pos: -30.5,50.5 parent: 2 - uid: 12796 components: - type: Transform - pos: -30.5,59.5 + pos: -29.5,50.5 parent: 2 - uid: 12797 components: - type: Transform - pos: -29.5,59.5 + pos: -28.5,50.5 parent: 2 - uid: 12798 components: - type: Transform - pos: -28.5,59.5 + pos: -27.5,50.5 parent: 2 - uid: 12799 components: - type: Transform - pos: -27.5,59.5 + pos: -26.5,50.5 parent: 2 - uid: 12800 components: - type: Transform - pos: -26.5,59.5 + pos: -26.5,49.5 parent: 2 - uid: 12801 components: - type: Transform - pos: -25.5,59.5 + pos: -25.5,49.5 parent: 2 - uid: 12802 components: - type: Transform - pos: 11.5,-44.5 + pos: -24.5,49.5 parent: 2 - uid: 12803 components: - type: Transform - pos: 11.5,-45.5 + pos: -23.5,49.5 parent: 2 - uid: 12804 components: - type: Transform - pos: 11.5,-46.5 + pos: -22.5,49.5 parent: 2 - uid: 12805 components: - type: Transform - pos: 10.5,-46.5 + pos: -21.5,49.5 parent: 2 - uid: 12806 components: - type: Transform - pos: 77.5,-23.5 + pos: -20.5,49.5 parent: 2 - uid: 12807 components: - type: Transform - pos: 46.5,30.5 + pos: -19.5,49.5 parent: 2 - uid: 12808 components: - type: Transform - pos: 77.5,-22.5 + pos: -18.5,49.5 parent: 2 - uid: 12809 components: - type: Transform - pos: 77.5,-21.5 + pos: -17.5,49.5 parent: 2 - uid: 12810 components: - type: Transform - pos: 77.5,-20.5 + pos: -17.5,48.5 parent: 2 - uid: 12811 components: - type: Transform - pos: -10.5,-38.5 + pos: -17.5,47.5 parent: 2 - uid: 12812 components: - type: Transform - pos: -11.5,-38.5 + pos: -16.5,47.5 parent: 2 - uid: 12813 components: - type: Transform - pos: -9.5,-33.5 + pos: -15.5,47.5 parent: 2 - uid: 12814 components: - type: Transform - pos: -8.5,-33.5 + pos: -14.5,47.5 parent: 2 - uid: 12815 components: - type: Transform - pos: -7.5,-33.5 + pos: -13.5,47.5 parent: 2 - uid: 12816 components: - type: Transform - pos: -6.5,-33.5 + pos: -12.5,47.5 parent: 2 - uid: 12817 components: - type: Transform - pos: -5.5,-33.5 + pos: -11.5,47.5 parent: 2 - uid: 12818 components: - type: Transform - pos: -5.5,-32.5 + pos: -10.5,47.5 parent: 2 - uid: 12819 components: - type: Transform - pos: -5.5,-31.5 + pos: -9.5,47.5 parent: 2 - uid: 12820 components: - type: Transform - pos: -5.5,-30.5 + pos: -8.5,47.5 parent: 2 - uid: 12821 components: - type: Transform - pos: 1.5,14.5 + pos: -7.5,47.5 parent: 2 - uid: 12822 components: - type: Transform - pos: 1.5,13.5 + pos: -6.5,47.5 parent: 2 - uid: 12823 components: - type: Transform - pos: 1.5,12.5 + pos: -5.5,47.5 parent: 2 - uid: 12824 components: - type: Transform - pos: 1.5,11.5 + pos: -4.5,47.5 parent: 2 - uid: 12825 components: - type: Transform - pos: 1.5,10.5 + pos: -3.5,47.5 parent: 2 - uid: 12826 components: - type: Transform - pos: 46.5,31.5 + pos: -2.5,47.5 parent: 2 - uid: 12827 components: - type: Transform - pos: 45.5,31.5 + pos: -22.5,50.5 parent: 2 - uid: 12828 components: - type: Transform - pos: 44.5,32.5 + pos: -22.5,51.5 parent: 2 - uid: 12829 components: - type: Transform - pos: 43.5,32.5 + pos: -23.5,51.5 parent: 2 - uid: 12830 components: - type: Transform - pos: 42.5,32.5 + pos: -24.5,51.5 parent: 2 - uid: 12831 components: - type: Transform - pos: 41.5,32.5 + pos: -25.5,51.5 parent: 2 - uid: 12832 components: - type: Transform - pos: 40.5,32.5 + pos: -14.5,46.5 parent: 2 - uid: 12833 components: - type: Transform - pos: 39.5,32.5 + pos: -14.5,45.5 parent: 2 - uid: 12834 components: - type: Transform - pos: 38.5,32.5 + pos: -14.5,44.5 parent: 2 - uid: 12835 components: - type: Transform - pos: 37.5,32.5 + pos: -14.5,43.5 parent: 2 - uid: 12836 components: - type: Transform - pos: 37.5,31.5 + pos: -19.5,43.5 parent: 2 - uid: 12837 components: - type: Transform - pos: 37.5,30.5 + pos: -18.5,43.5 parent: 2 - uid: 12838 components: - type: Transform - pos: 37.5,29.5 + pos: -17.5,43.5 parent: 2 - uid: 12839 components: - type: Transform - pos: 34.5,28.5 + pos: -16.5,43.5 parent: 2 - uid: 12840 components: - type: Transform - pos: 37.5,26.5 + pos: -15.5,43.5 parent: 2 - uid: 12841 components: - type: Transform - pos: 37.5,25.5 + pos: -23.5,56.5 parent: 2 - uid: 12842 components: - type: Transform - pos: 35.5,28.5 + pos: -24.5,56.5 parent: 2 - uid: 12843 components: - type: Transform - pos: 26.5,28.5 + pos: -22.5,56.5 parent: 2 - uid: 12844 components: - type: Transform - pos: 32.5,29.5 + pos: -22.5,55.5 parent: 2 - uid: 12845 components: - type: Transform - pos: 32.5,30.5 + pos: -22.5,54.5 parent: 2 - uid: 12846 components: - type: Transform - pos: 32.5,31.5 + pos: -21.5,54.5 parent: 2 - uid: 12847 components: - type: Transform - pos: 32.5,32.5 + pos: -20.5,54.5 parent: 2 - uid: 12848 components: - type: Transform - pos: 33.5,32.5 + pos: -19.5,54.5 parent: 2 - uid: 12849 components: - type: Transform - pos: 33.5,33.5 + pos: -18.5,54.5 parent: 2 - uid: 12850 components: - type: Transform - pos: 33.5,34.5 + pos: -17.5,54.5 parent: 2 - uid: 12851 components: - type: Transform - pos: 33.5,35.5 + pos: -17.5,53.5 parent: 2 - uid: 12852 components: - type: Transform - pos: 25.5,28.5 + pos: -17.5,52.5 parent: 2 - uid: 12853 components: - type: Transform - pos: 24.5,28.5 + pos: -17.5,51.5 parent: 2 - uid: 12854 components: - type: Transform - pos: 23.5,28.5 + pos: -17.5,50.5 parent: 2 - uid: 12855 components: - type: Transform - pos: 23.5,29.5 + pos: -4.5,46.5 parent: 2 - uid: 12856 components: - type: Transform - pos: 23.5,30.5 + pos: -4.5,45.5 parent: 2 - uid: 12857 components: - type: Transform - pos: 14.5,37.5 + pos: -4.5,44.5 parent: 2 - uid: 12858 components: - type: Transform - pos: 14.5,36.5 + pos: -3.5,44.5 parent: 2 - uid: 12859 components: - type: Transform - pos: 14.5,35.5 + pos: -0.5,47.5 parent: 2 - uid: 12860 components: - type: Transform - pos: 14.5,34.5 + pos: 0.5,47.5 parent: 2 - uid: 12861 components: - type: Transform - pos: 14.5,33.5 + pos: 1.5,47.5 parent: 2 - uid: 12862 components: - type: Transform - pos: 16.5,33.5 + pos: 2.5,47.5 parent: 2 - uid: 12863 components: - type: Transform - pos: 15.5,33.5 + pos: 3.5,47.5 parent: 2 - uid: 12864 components: - type: Transform - pos: 17.5,33.5 + pos: 4.5,47.5 parent: 2 - uid: 12865 components: - type: Transform - pos: 19.5,33.5 + pos: 5.5,47.5 parent: 2 - uid: 12866 components: - type: Transform - pos: 20.5,33.5 + pos: 6.5,47.5 parent: 2 - uid: 12867 components: - type: Transform - pos: 21.5,33.5 + pos: 5.5,55.5 parent: 2 - uid: 12868 components: - type: Transform - pos: 21.5,32.5 + pos: 2.5,41.5 parent: 2 - uid: 12869 components: - type: Transform - pos: 21.5,31.5 + pos: 3.5,42.5 parent: 2 - uid: 12870 components: - type: Transform - pos: 21.5,30.5 + pos: 4.5,42.5 parent: 2 - uid: 12871 components: - type: Transform - pos: 21.5,29.5 + pos: 4.5,43.5 parent: 2 - uid: 12872 components: - type: Transform - pos: 21.5,28.5 + pos: 4.5,44.5 parent: 2 - uid: 12873 components: - type: Transform - pos: 22.5,28.5 + pos: 5.5,44.5 parent: 2 - uid: 12874 components: - type: Transform - pos: 21.5,16.5 + pos: 6.5,44.5 parent: 2 - uid: 12875 components: - type: Transform - pos: 21.5,17.5 + pos: 6.5,45.5 parent: 2 - uid: 12876 components: - type: Transform - pos: 21.5,18.5 + pos: 6.5,46.5 parent: 2 - uid: 12877 components: - type: Transform - pos: 20.5,18.5 + pos: -6.5,67.5 parent: 2 - uid: 12878 components: - type: Transform - pos: 19.5,18.5 + pos: -6.5,68.5 parent: 2 - uid: 12879 components: - type: Transform - pos: 18.5,18.5 + pos: -5.5,68.5 parent: 2 - uid: 12880 components: - type: Transform - pos: 17.5,18.5 + pos: -4.5,68.5 parent: 2 - uid: 12881 components: - type: Transform - pos: 16.5,18.5 + pos: -4.5,62.5 parent: 2 - uid: 12882 components: - type: Transform - pos: 16.5,19.5 + pos: -4.5,61.5 parent: 2 - uid: 12883 components: - type: Transform - pos: 16.5,20.5 + pos: -3.5,61.5 parent: 2 - uid: 12884 components: - type: Transform - pos: 16.5,21.5 + pos: -2.5,61.5 parent: 2 - uid: 12885 components: - type: Transform - pos: 16.5,22.5 + pos: -1.5,61.5 parent: 2 - uid: 12886 components: - type: Transform - pos: 16.5,23.5 + pos: -0.5,60.5 parent: 2 - uid: 12887 components: - type: Transform - pos: 16.5,24.5 + pos: 0.5,60.5 parent: 2 - uid: 12888 components: - type: Transform - pos: 17.5,24.5 + pos: 1.5,60.5 parent: 2 - uid: 12889 components: - type: Transform - pos: 18.5,24.5 + pos: 1.5,61.5 parent: 2 - uid: 12890 components: - type: Transform - pos: 19.5,24.5 + pos: 1.5,62.5 parent: 2 - uid: 12891 components: - type: Transform - pos: 20.5,24.5 + pos: 0.5,62.5 parent: 2 - uid: 12892 components: - type: Transform - pos: 21.5,24.5 + pos: -1.5,57.5 parent: 2 - uid: 12893 components: - type: Transform - pos: 21.5,25.5 + pos: -1.5,59.5 parent: 2 - uid: 12894 components: - type: Transform - pos: 21.5,26.5 + pos: -1.5,60.5 parent: 2 - uid: 12895 components: - type: Transform - pos: 21.5,27.5 + pos: -1.5,56.5 parent: 2 - uid: 12896 components: - type: Transform - pos: 14.5,21.5 + pos: -1.5,55.5 parent: 2 - uid: 12897 components: - type: Transform - pos: 13.5,21.5 + pos: -1.5,54.5 parent: 2 - uid: 12898 components: - type: Transform - pos: 12.5,21.5 + pos: -1.5,53.5 parent: 2 - uid: 12899 components: - type: Transform - pos: 11.5,21.5 + pos: -1.5,52.5 parent: 2 - uid: 12900 components: - type: Transform - pos: 10.5,21.5 + pos: -1.5,51.5 parent: 2 - uid: 12901 components: - type: Transform - pos: 9.5,21.5 + pos: -1.5,50.5 parent: 2 - uid: 12902 components: - type: Transform - pos: 8.5,21.5 + pos: -1.5,49.5 parent: 2 - uid: 12903 components: - type: Transform - pos: 16.5,17.5 + pos: -1.5,48.5 parent: 2 - uid: 12904 components: - type: Transform - pos: 16.5,16.5 + pos: -2.5,53.5 parent: 2 - uid: 12905 components: - type: Transform - pos: 16.5,15.5 + pos: -3.5,53.5 parent: 2 - uid: 12906 components: - type: Transform - pos: 17.5,15.5 + pos: -11.5,59.5 parent: 2 - uid: 12907 components: - type: Transform - pos: 18.5,15.5 + pos: -12.5,59.5 parent: 2 - uid: 12908 components: - type: Transform - pos: 18.5,14.5 + pos: -12.5,58.5 parent: 2 - uid: 12909 components: - type: Transform - pos: 19.5,14.5 + pos: -11.5,58.5 parent: 2 - uid: 12910 components: - type: Transform - pos: 19.5,13.5 + pos: -10.5,58.5 parent: 2 - uid: 12911 components: - type: Transform - pos: 20.5,13.5 + pos: -9.5,58.5 parent: 2 - uid: 12912 components: - type: Transform - pos: 20.5,12.5 + pos: -8.5,58.5 parent: 2 - uid: 12913 components: - type: Transform - pos: 20.5,11.5 + pos: -7.5,58.5 parent: 2 - uid: 12914 components: - type: Transform - pos: 21.5,11.5 + pos: -6.5,58.5 parent: 2 - uid: 12915 components: - type: Transform - pos: 21.5,10.5 + pos: -5.5,58.5 parent: 2 - uid: 12916 components: - type: Transform - pos: 22.5,10.5 + pos: -5.5,57.5 parent: 2 - uid: 12917 components: - type: Transform - pos: 23.5,10.5 + pos: -5.5,56.5 parent: 2 - uid: 12918 components: - type: Transform - pos: 24.5,10.5 + pos: -5.5,55.5 parent: 2 - uid: 12919 components: - type: Transform - pos: 25.5,10.5 + pos: -5.5,54.5 parent: 2 - uid: 12920 components: - type: Transform - pos: 26.5,10.5 + pos: -5.5,53.5 parent: 2 - uid: 12921 components: - type: Transform - pos: 26.5,9.5 + pos: -5.5,52.5 parent: 2 - uid: 12922 components: - type: Transform - pos: 26.5,8.5 + pos: -5.5,51.5 parent: 2 - uid: 12923 components: - type: Transform - pos: 26.5,7.5 + pos: -5.5,50.5 parent: 2 - uid: 12924 components: - type: Transform - pos: 18.5,33.5 + pos: -5.5,49.5 parent: 2 - uid: 12925 components: - type: Transform - pos: 45.5,28.5 + pos: -5.5,48.5 parent: 2 - uid: 12926 components: - type: Transform - pos: 12.5,24.5 + pos: -4.5,33.5 parent: 2 - uid: 12927 components: - type: Transform - pos: 13.5,24.5 + pos: -1.5,36.5 parent: 2 - uid: 12928 components: - type: Transform - pos: 14.5,24.5 + pos: -1.5,37.5 parent: 2 - uid: 12929 components: - type: Transform - pos: 15.5,24.5 + pos: -1.5,38.5 parent: 2 - uid: 12930 components: - type: Transform - pos: 15.5,17.5 + pos: -1.5,39.5 parent: 2 - uid: 12931 components: - type: Transform - pos: 14.5,17.5 + pos: -1.5,40.5 parent: 2 - uid: 12932 components: - type: Transform - pos: -39.5,-9.5 + pos: -1.5,41.5 parent: 2 - uid: 12933 components: - type: Transform - pos: -38.5,-9.5 + pos: -1.5,42.5 parent: 2 - uid: 12934 components: - type: Transform - pos: -40.5,-9.5 + pos: -1.5,43.5 parent: 2 - uid: 12935 components: - type: Transform - pos: -38.5,-10.5 + pos: -1.5,44.5 parent: 2 - uid: 12936 components: - type: Transform - pos: -41.5,-10.5 + pos: -1.5,45.5 parent: 2 - uid: 12937 components: - type: Transform - pos: -37.5,-11.5 + pos: -1.5,46.5 parent: 2 - uid: 12938 components: - type: Transform - pos: -38.5,-11.5 + pos: -26.5,-40.5 parent: 2 - uid: 12939 components: - type: Transform - pos: -41.5,-9.5 + pos: -25.5,-40.5 parent: 2 - uid: 12940 components: - type: Transform - pos: -17.5,-5.5 + pos: -24.5,-45.5 parent: 2 - uid: 12941 components: - type: Transform - pos: -11.5,19.5 + pos: -25.5,-45.5 parent: 2 - uid: 12942 components: - type: Transform - pos: -13.5,21.5 + pos: -26.5,-45.5 parent: 2 - uid: 12943 components: - type: Transform - pos: -14.5,21.5 + pos: -27.5,-45.5 parent: 2 - uid: 12944 components: - type: Transform - pos: -12.5,21.5 + pos: -28.5,-45.5 parent: 2 - uid: 12945 components: - type: Transform - pos: -14.5,22.5 + pos: -29.5,-45.5 parent: 2 - uid: 12946 components: - type: Transform - pos: -15.5,23.5 + pos: -30.5,-45.5 parent: 2 - uid: 12947 components: - type: Transform - pos: -16.5,24.5 + pos: -31.5,-45.5 parent: 2 - uid: 12948 components: - type: Transform - pos: -15.5,24.5 + pos: -32.5,-45.5 parent: 2 - uid: 12949 components: - type: Transform - pos: -11.5,17.5 + pos: -34.5,-45.5 parent: 2 - uid: 12950 components: - type: Transform - pos: -18.5,24.5 + pos: -34.5,-46.5 parent: 2 - uid: 12951 components: - type: Transform - pos: -17.5,24.5 + pos: -34.5,-47.5 parent: 2 - uid: 12952 components: - type: Transform - pos: -11.5,15.5 + pos: -34.5,-48.5 parent: 2 - uid: 12953 components: - type: Transform - pos: -11.5,16.5 + pos: -40.5,-39.5 parent: 2 - uid: 12954 components: - type: Transform - pos: -13.5,14.5 + pos: -40.5,-40.5 parent: 2 - uid: 12955 components: - type: Transform - pos: -11.5,18.5 + pos: -42.5,-35.5 parent: 2 - uid: 12956 components: - type: Transform - pos: -12.5,15.5 + pos: -42.5,-36.5 parent: 2 - uid: 12957 components: - type: Transform - pos: -12.5,20.5 + pos: -44.5,-34.5 parent: 2 - uid: 12958 components: - type: Transform - pos: -15.5,22.5 + pos: -47.5,-46.5 parent: 2 - uid: 12959 components: - type: Transform - pos: -12.5,14.5 + pos: -46.5,-46.5 parent: 2 - uid: 12960 components: - type: Transform - pos: -14.5,12.5 + pos: -45.5,-46.5 parent: 2 - uid: 12961 components: - type: Transform - pos: -14.5,13.5 + pos: -44.5,-46.5 parent: 2 - uid: 12962 components: - type: Transform - pos: -13.5,13.5 + pos: -40.5,-37.5 parent: 2 - uid: 12963 components: - type: Transform - pos: -15.5,12.5 + pos: -45.5,-34.5 parent: 2 - uid: 12964 components: - type: Transform - pos: -15.5,11.5 + pos: -41.5,-45.5 parent: 2 - uid: 12965 components: - type: Transform - pos: 78.5,-20.5 + pos: -40.5,-38.5 parent: 2 - uid: 12966 components: - type: Transform - pos: 83.5,-20.5 + pos: -42.5,-45.5 parent: 2 - uid: 12967 components: - type: Transform - pos: 80.5,-20.5 + pos: -41.5,-36.5 parent: 2 - uid: 12968 components: - type: Transform - pos: 82.5,-20.5 + pos: -44.5,-35.5 parent: 2 - uid: 12969 components: - type: Transform - pos: 85.5,-20.5 + pos: -43.5,-35.5 parent: 2 - uid: 12970 components: - type: Transform - pos: 81.5,-20.5 + pos: -43.5,-45.5 parent: 2 - uid: 12971 components: - type: Transform - pos: 79.5,-20.5 + pos: -41.5,-43.5 parent: 2 - uid: 12972 components: - type: Transform - pos: 84.5,-20.5 + pos: -40.5,-43.5 parent: 2 - uid: 12973 components: - type: Transform - pos: 87.5,-20.5 + pos: -40.5,-42.5 parent: 2 - uid: 12974 components: - type: Transform - pos: 88.5,-20.5 + pos: -47.5,-34.5 parent: 2 - uid: 12975 components: - type: Transform - pos: 86.5,-20.5 + pos: -48.5,-34.5 parent: 2 - uid: 12976 components: - type: Transform - pos: -16.5,0.5 + pos: -37.5,-44.5 parent: 2 - uid: 12977 components: - type: Transform - pos: -15.5,-16.5 + pos: 27.5,28.5 parent: 2 - uid: 12978 components: - type: Transform - pos: -13.5,-17.5 + pos: 28.5,28.5 parent: 2 - uid: 12979 components: - type: Transform - pos: -14.5,-16.5 + pos: 29.5,28.5 parent: 2 - uid: 12980 components: - type: Transform - pos: 89.5,-20.5 + pos: 34.5,27.5 parent: 2 - uid: 12981 components: - type: Transform - pos: 90.5,-20.5 + pos: 30.5,28.5 parent: 2 - uid: 12982 components: - type: Transform - pos: 97.5,-20.5 + pos: 31.5,28.5 parent: 2 - uid: 12983 components: - type: Transform - pos: 98.5,-20.5 + pos: 34.5,26.5 parent: 2 - uid: 12984 components: - type: Transform - pos: 99.5,-20.5 + pos: 32.5,28.5 parent: 2 - uid: 12985 components: - type: Transform - pos: 100.5,-20.5 + pos: 15.5,4.5 parent: 2 - uid: 12986 components: - type: Transform - pos: 101.5,-20.5 + pos: 36.5,28.5 parent: 2 - uid: 12987 components: - type: Transform - pos: 102.5,-20.5 + pos: 8.5,25.5 parent: 2 - uid: 12988 components: - type: Transform - pos: -18.5,-5.5 + pos: 11.5,25.5 parent: 2 - uid: 12989 components: - type: Transform - pos: -16.5,-7.5 + pos: 10.5,25.5 parent: 2 - uid: 12990 components: - type: Transform - pos: -16.5,-8.5 + pos: 12.5,25.5 parent: 2 - uid: 12991 components: - type: Transform - pos: -16.5,-9.5 + pos: 8.5,27.5 parent: 2 - uid: 12992 components: - type: Transform - pos: -16.5,-10.5 + pos: 7.5,27.5 parent: 2 - uid: 12993 components: - type: Transform - pos: -16.5,-11.5 + pos: 6.5,27.5 parent: 2 - uid: 12994 components: - type: Transform - pos: -16.5,-12.5 + pos: 5.5,29.5 parent: 2 - uid: 12995 components: - type: Transform - pos: -16.5,-13.5 + pos: 9.5,25.5 parent: 2 - uid: 12996 components: - type: Transform - pos: -16.5,-14.5 + pos: 5.5,27.5 parent: 2 - uid: 12997 components: - type: Transform - pos: -16.5,-15.5 + pos: 8.5,26.5 parent: 2 - uid: 12998 components: - type: Transform - pos: -16.5,-16.5 + pos: 5.5,28.5 parent: 2 - uid: 12999 components: - type: Transform - pos: -13.5,-16.5 + pos: 37.5,27.5 parent: 2 - uid: 13000 components: - type: Transform - pos: 8.5,-13.5 + pos: -30.5,58.5 parent: 2 - uid: 13001 components: - type: Transform - pos: -13.5,-18.5 + pos: 37.5,28.5 parent: 2 - uid: 13002 components: - type: Transform - pos: 8.5,-12.5 + pos: 77.5,-25.5 parent: 2 - uid: 13003 components: - type: Transform - pos: 19.5,-17.5 + pos: 75.5,-25.5 parent: 2 - uid: 13004 components: - type: Transform - pos: 8.5,-14.5 + pos: 45.5,32.5 parent: 2 - uid: 13005 components: - type: Transform - pos: 8.5,-15.5 + pos: 76.5,-25.5 parent: 2 - uid: 13006 components: - type: Transform - pos: 8.5,-16.5 + pos: 15.5,21.5 parent: 2 - uid: 13007 components: - type: Transform - pos: 9.5,-16.5 + pos: -4.5,35.5 parent: 2 - uid: 13008 components: - type: Transform - pos: 10.5,-16.5 + pos: -24.5,8.5 parent: 2 - uid: 13009 components: - type: Transform - pos: 11.5,-16.5 + pos: -23.5,8.5 parent: 2 - uid: 13010 components: - type: Transform - pos: 12.5,-16.5 + pos: -22.5,9.5 parent: 2 - uid: 13011 components: - type: Transform - pos: 13.5,-16.5 + pos: -24.5,9.5 parent: 2 - uid: 13012 components: - type: Transform - pos: 14.5,-16.5 + pos: -22.5,8.5 parent: 2 - uid: 13013 components: - type: Transform - pos: 15.5,-16.5 + pos: 2.5,42.5 parent: 2 - uid: 13014 components: - type: Transform - pos: 16.5,-16.5 + pos: 74.5,-28.5 parent: 2 - uid: 13015 components: - type: Transform - pos: 17.5,-16.5 + pos: -53.5,17.5 parent: 2 - uid: 13016 components: - type: Transform - pos: 18.5,-16.5 + pos: -34.5,10.5 parent: 2 - uid: 13017 components: - type: Transform - pos: 19.5,-16.5 + pos: -34.5,9.5 parent: 2 - uid: 13018 components: - type: Transform - pos: 19.5,-18.5 + pos: -50.5,11.5 parent: 2 - uid: 13019 components: - type: Transform - pos: -1.5,-21.5 + pos: -51.5,11.5 parent: 2 - uid: 13020 components: - type: Transform - pos: -0.5,-21.5 + pos: -52.5,11.5 parent: 2 - uid: 13021 components: - type: Transform - pos: 0.5,-21.5 + pos: -53.5,11.5 parent: 2 - uid: 13022 components: - type: Transform - pos: 1.5,-21.5 + pos: -54.5,11.5 parent: 2 - uid: 13023 components: - type: Transform - pos: 2.5,-21.5 + pos: -55.5,11.5 parent: 2 - uid: 13024 components: - type: Transform - pos: 2.5,-20.5 + pos: -55.5,12.5 parent: 2 - uid: 13025 components: - type: Transform - pos: 2.5,-19.5 + pos: -55.5,13.5 parent: 2 - uid: 13026 components: - type: Transform - pos: 2.5,-18.5 + pos: -55.5,14.5 parent: 2 - uid: 13027 components: - type: Transform - pos: 2.5,-17.5 + pos: -55.5,15.5 parent: 2 - uid: 13028 components: - type: Transform - pos: 2.5,-16.5 + pos: -55.5,16.5 parent: 2 - uid: 13029 components: - type: Transform - pos: 3.5,-16.5 + pos: -54.5,16.5 parent: 2 - uid: 13030 components: - type: Transform - pos: 4.5,-16.5 + pos: -53.5,16.5 parent: 2 - uid: 13031 components: - type: Transform - pos: 5.5,-16.5 + pos: -53.5,18.5 parent: 2 - uid: 13032 components: - type: Transform - pos: 6.5,-16.5 + pos: -43.5,9.5 parent: 2 - uid: 13033 components: - type: Transform - pos: 7.5,-16.5 + pos: -43.5,8.5 parent: 2 - uid: 13034 components: - type: Transform - pos: -16.5,1.5 + pos: -43.5,7.5 parent: 2 - uid: 13035 components: - type: Transform - pos: -16.5,2.5 + pos: -42.5,7.5 parent: 2 - uid: 13036 components: - type: Transform - pos: -16.5,3.5 + pos: -41.5,7.5 parent: 2 - uid: 13037 components: - type: Transform - pos: -16.5,4.5 + pos: -41.5,6.5 parent: 2 - uid: 13038 components: - type: Transform - pos: -16.5,5.5 + pos: -41.5,5.5 parent: 2 - uid: 13039 components: - type: Transform - pos: -16.5,6.5 + pos: -41.5,3.5 parent: 2 - uid: 13040 components: - type: Transform - pos: -16.5,7.5 + pos: -41.5,2.5 parent: 2 - uid: 13041 components: - type: Transform - pos: -16.5,8.5 + pos: -42.5,2.5 parent: 2 - uid: 13042 components: - type: Transform - pos: -16.5,9.5 + pos: -42.5,1.5 parent: 2 - uid: 13043 components: - type: Transform - pos: -17.5,9.5 + pos: -42.5,0.5 parent: 2 - uid: 13044 components: - type: Transform - pos: -18.5,9.5 + pos: -42.5,-0.5 parent: 2 - uid: 13045 components: - type: Transform - pos: 20.5,-16.5 + pos: -42.5,-1.5 parent: 2 - uid: 13046 components: - type: Transform - pos: 21.5,-16.5 + pos: -42.5,-2.5 parent: 2 - uid: 13047 components: - type: Transform - pos: 21.5,-15.5 + pos: -41.5,-1.5 parent: 2 - uid: 13048 components: - type: Transform - pos: 21.5,-14.5 + pos: -43.5,-1.5 parent: 2 - uid: 13049 components: - type: Transform - pos: 21.5,-13.5 + pos: 14.5,8.5 parent: 2 - uid: 13050 components: - type: Transform - pos: 21.5,-12.5 + pos: -34.5,-11.5 parent: 2 - uid: 13051 components: - type: Transform - pos: 21.5,-11.5 + pos: -35.5,-11.5 parent: 2 - uid: 13052 components: - type: Transform - pos: 21.5,-10.5 + pos: -36.5,-11.5 parent: 2 - uid: 13053 components: - type: Transform - pos: 21.5,-9.5 + pos: -36.5,-10.5 parent: 2 - uid: 13054 components: - type: Transform - pos: 21.5,-8.5 + pos: -21.5,-3.5 parent: 2 - uid: 13055 components: - type: Transform - pos: 22.5,-8.5 + pos: -31.5,55.5 parent: 2 - uid: 13056 components: - type: Transform - pos: 23.5,-8.5 + pos: -31.5,56.5 parent: 2 - uid: 13057 components: - type: Transform - pos: 24.5,-8.5 + pos: -31.5,57.5 parent: 2 - uid: 13058 components: - type: Transform - pos: 25.5,-8.5 + pos: -31.5,58.5 parent: 2 - uid: 13059 components: - type: Transform - pos: 26.5,-8.5 + pos: -30.5,59.5 parent: 2 - uid: 13060 components: - type: Transform - pos: 26.5,-10.5 + pos: -29.5,59.5 parent: 2 - uid: 13061 components: - type: Transform - pos: 26.5,-11.5 + pos: -28.5,59.5 parent: 2 - uid: 13062 components: - type: Transform - pos: 26.5,-9.5 + pos: -27.5,59.5 parent: 2 - uid: 13063 components: - type: Transform - pos: 27.5,-11.5 + pos: -26.5,59.5 parent: 2 - uid: 13064 components: - type: Transform - pos: 28.5,-11.5 + pos: -25.5,59.5 parent: 2 - uid: 13065 components: - type: Transform - pos: -5.5,-7.5 + pos: 11.5,-44.5 parent: 2 - uid: 13066 components: - type: Transform - pos: -6.5,-7.5 + pos: 11.5,-45.5 parent: 2 - uid: 13067 components: - type: Transform - pos: -7.5,-7.5 + pos: 11.5,-46.5 parent: 2 - uid: 13068 components: - type: Transform - pos: -21.5,41.5 + pos: 10.5,-46.5 parent: 2 - uid: 13069 components: - type: Transform - pos: -21.5,43.5 + pos: 77.5,-23.5 parent: 2 - uid: 13070 components: - type: Transform - pos: -20.5,43.5 + pos: 46.5,30.5 parent: 2 - uid: 13071 components: - type: Transform - pos: -16.5,11.5 + pos: 77.5,-22.5 parent: 2 - uid: 13072 components: - type: Transform - pos: -16.5,10.5 + pos: 77.5,-21.5 parent: 2 - uid: 13073 components: - type: Transform - pos: -19.5,24.5 + pos: 77.5,-20.5 parent: 2 - uid: 13074 components: - type: Transform - pos: -20.5,24.5 + pos: -10.5,-38.5 parent: 2 - uid: 13075 components: - type: Transform - pos: -20.5,25.5 + pos: -11.5,-38.5 parent: 2 - uid: 13076 components: - type: Transform - pos: -20.5,26.5 + pos: -9.5,-33.5 parent: 2 - uid: 13077 components: - type: Transform - pos: -20.5,27.5 + pos: -8.5,-33.5 parent: 2 - uid: 13078 components: - type: Transform - pos: -11.5,20.5 + pos: -7.5,-33.5 parent: 2 - uid: 13079 components: - type: Transform - pos: 7.5,21.5 + pos: -6.5,-33.5 parent: 2 - uid: 13080 components: - type: Transform - pos: 6.5,21.5 + pos: -5.5,-33.5 parent: 2 - uid: 13081 components: - type: Transform - pos: 6.5,20.5 + pos: -5.5,-32.5 parent: 2 - uid: 13082 components: - type: Transform - pos: 6.5,19.5 + pos: -5.5,-31.5 parent: 2 - uid: 13083 components: - type: Transform - pos: 5.5,19.5 + pos: -5.5,-30.5 parent: 2 - uid: 13084 components: - type: Transform - pos: 4.5,19.5 + pos: 1.5,14.5 parent: 2 - uid: 13085 components: - type: Transform - pos: 3.5,19.5 + pos: 1.5,13.5 parent: 2 - uid: 13086 components: - type: Transform - pos: 2.5,19.5 + pos: 1.5,12.5 parent: 2 - uid: 13087 components: - type: Transform - pos: 1.5,19.5 + pos: 1.5,11.5 parent: 2 - uid: 13088 components: - type: Transform - pos: 1.5,18.5 + pos: 1.5,10.5 parent: 2 - uid: 13089 components: - type: Transform - pos: 1.5,17.5 + pos: 46.5,31.5 parent: 2 - uid: 13090 components: - type: Transform - pos: 61.5,-48.5 + pos: 45.5,31.5 parent: 2 - uid: 13091 components: - type: Transform - pos: 60.5,-48.5 + pos: 44.5,32.5 parent: 2 - uid: 13092 components: - type: Transform - pos: 65.5,-48.5 + pos: 43.5,32.5 parent: 2 - uid: 13093 components: - type: Transform - pos: 63.5,-48.5 + pos: 42.5,32.5 parent: 2 - uid: 13094 components: - type: Transform - pos: 62.5,-48.5 + pos: 41.5,32.5 parent: 2 - uid: 13095 components: - type: Transform - pos: 64.5,-48.5 + pos: 40.5,32.5 parent: 2 - uid: 13096 components: - type: Transform - pos: -56.5,63.5 + pos: 39.5,32.5 parent: 2 - uid: 13097 components: - type: Transform - pos: -55.5,62.5 + pos: 38.5,32.5 parent: 2 - uid: 13098 components: - type: Transform - pos: -55.5,63.5 + pos: 37.5,32.5 parent: 2 - uid: 13099 components: - type: Transform - pos: -51.5,23.5 + pos: 37.5,31.5 parent: 2 - uid: 13100 components: - type: Transform - pos: -52.5,23.5 + pos: 37.5,30.5 parent: 2 - uid: 13101 components: - type: Transform - pos: -53.5,23.5 + pos: 37.5,29.5 parent: 2 - uid: 13102 components: - type: Transform - pos: -53.5,22.5 + pos: 34.5,28.5 parent: 2 - uid: 13103 components: - type: Transform - pos: -53.5,21.5 + pos: 37.5,26.5 parent: 2 - uid: 13104 components: - type: Transform - pos: -53.5,20.5 + pos: 37.5,25.5 parent: 2 - uid: 13105 components: - type: Transform - pos: -53.5,19.5 + pos: 35.5,28.5 parent: 2 - uid: 13106 components: - type: Transform - pos: -134.5,11.5 + pos: 26.5,28.5 parent: 2 - uid: 13107 components: - type: Transform - pos: -134.5,10.5 + pos: 32.5,29.5 parent: 2 - uid: 13108 components: - type: Transform - pos: -133.5,10.5 + pos: 32.5,30.5 parent: 2 - uid: 13109 components: - type: Transform - pos: -133.5,9.5 + pos: 32.5,31.5 parent: 2 - uid: 13110 components: - type: Transform - pos: -132.5,9.5 + pos: 32.5,32.5 parent: 2 - uid: 13111 components: - type: Transform - pos: -131.5,9.5 + pos: 33.5,32.5 parent: 2 - uid: 13112 components: - type: Transform - pos: -131.5,9.5 + pos: 33.5,33.5 parent: 2 - uid: 13113 components: - type: Transform - pos: -130.5,9.5 + pos: 33.5,34.5 parent: 2 - uid: 13114 components: - type: Transform - pos: -129.5,9.5 + pos: 33.5,35.5 parent: 2 - uid: 13115 components: - type: Transform - pos: -128.5,9.5 + pos: 25.5,28.5 parent: 2 - uid: 13116 components: - type: Transform - pos: -127.5,9.5 + pos: 24.5,28.5 parent: 2 - uid: 13117 components: - type: Transform - pos: -126.5,9.5 + pos: 23.5,28.5 parent: 2 - uid: 13118 components: - type: Transform - pos: -125.5,9.5 + pos: 23.5,29.5 parent: 2 - uid: 13119 components: - type: Transform - pos: -125.5,8.5 + pos: 23.5,30.5 parent: 2 - uid: 13120 components: - type: Transform - pos: -124.5,8.5 + pos: 14.5,37.5 parent: 2 - uid: 13121 components: - type: Transform - pos: -123.5,8.5 + pos: 14.5,36.5 parent: 2 - uid: 13122 components: - type: Transform - pos: -122.5,8.5 + pos: 14.5,35.5 parent: 2 - uid: 13123 components: - type: Transform - pos: -121.5,8.5 + pos: 14.5,34.5 parent: 2 - uid: 13124 components: - type: Transform - pos: -120.5,8.5 + pos: 14.5,33.5 parent: 2 - uid: 13125 components: - type: Transform - pos: -119.5,8.5 + pos: 16.5,33.5 parent: 2 - uid: 13126 components: - type: Transform - pos: -118.5,7.5 + pos: 15.5,33.5 parent: 2 - uid: 13127 components: - type: Transform - pos: -117.5,7.5 + pos: 17.5,33.5 parent: 2 - uid: 13128 components: - type: Transform - pos: -116.5,7.5 + pos: 19.5,33.5 parent: 2 - uid: 13129 components: - type: Transform - pos: -115.5,7.5 + pos: 20.5,33.5 parent: 2 - uid: 13130 components: - type: Transform - pos: -114.5,7.5 + pos: 21.5,33.5 parent: 2 - uid: 13131 components: - type: Transform - pos: -113.5,7.5 + pos: 21.5,32.5 parent: 2 - uid: 13132 components: - type: Transform - pos: -112.5,7.5 + pos: 21.5,31.5 parent: 2 - uid: 13133 components: - type: Transform - pos: -111.5,7.5 + pos: 21.5,30.5 parent: 2 - uid: 13134 components: - type: Transform - pos: -110.5,7.5 + pos: 21.5,29.5 parent: 2 - uid: 13135 components: - type: Transform - pos: -109.5,7.5 + pos: 21.5,28.5 parent: 2 - uid: 13136 components: - type: Transform - pos: -109.5,8.5 + pos: 22.5,28.5 parent: 2 - uid: 13137 components: - type: Transform - pos: -109.5,9.5 + pos: 21.5,16.5 parent: 2 - uid: 13138 components: - type: Transform - pos: -109.5,10.5 + pos: 21.5,17.5 parent: 2 - uid: 13139 components: - type: Transform - pos: -109.5,11.5 + pos: 21.5,18.5 parent: 2 - uid: 13140 components: - type: Transform - pos: -109.5,12.5 + pos: 20.5,18.5 parent: 2 - uid: 13141 components: - type: Transform - pos: -109.5,13.5 + pos: 19.5,18.5 parent: 2 - uid: 13142 components: - type: Transform - pos: -108.5,12.5 + pos: 18.5,18.5 parent: 2 - uid: 13143 components: - type: Transform - pos: -107.5,12.5 + pos: 17.5,18.5 parent: 2 - uid: 13144 components: - type: Transform - pos: -106.5,12.5 + pos: 16.5,18.5 parent: 2 - uid: 13145 components: - type: Transform - pos: -106.5,13.5 + pos: 16.5,19.5 parent: 2 - uid: 13146 components: - type: Transform - pos: -109.5,6.5 + pos: 16.5,20.5 parent: 2 - uid: 13147 components: - type: Transform - pos: -109.5,5.5 + pos: 16.5,21.5 parent: 2 - uid: 13148 components: - type: Transform - pos: -109.5,4.5 + pos: 16.5,22.5 parent: 2 - uid: 13149 components: - type: Transform - pos: -109.5,3.5 + pos: 16.5,23.5 parent: 2 - uid: 13150 components: - type: Transform - pos: -108.5,3.5 + pos: 16.5,24.5 parent: 2 - uid: 13151 components: - type: Transform - pos: -107.5,3.5 + pos: 17.5,24.5 parent: 2 - uid: 13152 components: - type: Transform - pos: -106.5,3.5 + pos: 18.5,24.5 parent: 2 - uid: 13153 components: - type: Transform - pos: -105.5,3.5 + pos: 19.5,24.5 parent: 2 - uid: 13154 components: - type: Transform - pos: -104.5,3.5 + pos: 20.5,24.5 parent: 2 - uid: 13155 components: - type: Transform - pos: -103.5,3.5 + pos: 21.5,24.5 parent: 2 - uid: 13156 components: - type: Transform - pos: -103.5,2.5 + pos: 21.5,25.5 parent: 2 - uid: 13157 components: - type: Transform - pos: -103.5,1.5 + pos: 21.5,26.5 parent: 2 - uid: 13158 components: - type: Transform - pos: -102.5,1.5 + pos: 21.5,27.5 parent: 2 - uid: 13159 components: - type: Transform - pos: -101.5,1.5 + pos: 14.5,21.5 parent: 2 - uid: 13160 components: - type: Transform - pos: -100.5,1.5 + pos: 13.5,21.5 parent: 2 - uid: 13161 components: - type: Transform - pos: -99.5,1.5 + pos: 12.5,21.5 parent: 2 - uid: 13162 components: - type: Transform - pos: -98.5,1.5 + pos: 11.5,21.5 parent: 2 - uid: 13163 components: - type: Transform - pos: -97.5,1.5 + pos: 10.5,21.5 parent: 2 - uid: 13164 components: - type: Transform - pos: -96.5,1.5 + pos: 9.5,21.5 parent: 2 - uid: 13165 components: - type: Transform - pos: -96.5,2.5 + pos: 8.5,21.5 parent: 2 - uid: 13166 components: - type: Transform - pos: -96.5,3.5 + pos: 16.5,17.5 parent: 2 - uid: 13167 components: - type: Transform - pos: -96.5,4.5 + pos: 16.5,16.5 parent: 2 - uid: 13168 components: - type: Transform - pos: -95.5,4.5 + pos: 16.5,15.5 parent: 2 - uid: 13169 components: - type: Transform - pos: -94.5,4.5 + pos: 17.5,15.5 parent: 2 - uid: 13170 components: - type: Transform - pos: -109.5,23.5 + pos: 18.5,15.5 parent: 2 - uid: 13171 components: - type: Transform - pos: -109.5,22.5 + pos: 18.5,14.5 parent: 2 - uid: 13172 components: - type: Transform - pos: -109.5,21.5 + pos: 19.5,14.5 parent: 2 - uid: 13173 components: - type: Transform - pos: -108.5,21.5 + pos: 19.5,13.5 parent: 2 - uid: 13174 components: - type: Transform - pos: -108.5,20.5 + pos: 20.5,13.5 parent: 2 - uid: 13175 components: - type: Transform - pos: -108.5,19.5 + pos: 20.5,12.5 parent: 2 - uid: 13176 components: - type: Transform - pos: -108.5,18.5 + pos: 20.5,11.5 parent: 2 - uid: 13177 components: - type: Transform - pos: -107.5,18.5 + pos: 21.5,11.5 parent: 2 - uid: 13178 components: - type: Transform - pos: -107.5,17.5 + pos: 21.5,10.5 parent: 2 - uid: 13179 components: - type: Transform - pos: -107.5,16.5 + pos: 22.5,10.5 parent: 2 - uid: 13180 components: - type: Transform - pos: -106.5,16.5 + pos: 23.5,10.5 parent: 2 - uid: 13181 components: - type: Transform - pos: -106.5,15.5 + pos: 24.5,10.5 parent: 2 - uid: 13182 components: - type: Transform - pos: -106.5,14.5 + pos: 18.5,33.5 parent: 2 - uid: 13183 components: - type: Transform - pos: -105.5,16.5 + pos: 45.5,28.5 parent: 2 - uid: 13184 components: - type: Transform - pos: -105.5,17.5 + pos: 12.5,24.5 parent: 2 - uid: 13185 components: - type: Transform - pos: -105.5,18.5 + pos: 13.5,24.5 parent: 2 - uid: 13186 components: - type: Transform - pos: -105.5,19.5 + pos: 14.5,24.5 parent: 2 - uid: 13187 components: - type: Transform - pos: -105.5,20.5 + pos: 15.5,24.5 parent: 2 - uid: 13188 components: - type: Transform - pos: -105.5,21.5 + pos: 15.5,17.5 parent: 2 - uid: 13189 components: - type: Transform - pos: -105.5,22.5 + pos: 14.5,17.5 parent: 2 - uid: 13190 components: - type: Transform - pos: -105.5,23.5 + pos: -39.5,-9.5 parent: 2 - uid: 13191 components: - type: Transform - pos: -104.5,23.5 + pos: -38.5,-9.5 parent: 2 - uid: 13192 components: - type: Transform - pos: -103.5,23.5 + pos: -40.5,-9.5 parent: 2 - uid: 13193 components: - type: Transform - pos: -102.5,23.5 + pos: -38.5,-10.5 parent: 2 - uid: 13194 components: - type: Transform - pos: -105.5,23.5 + pos: -41.5,-10.5 parent: 2 - uid: 13195 components: - type: Transform - pos: -104.5,23.5 + pos: -37.5,-11.5 parent: 2 - uid: 13196 components: - type: Transform - pos: -103.5,-9.5 + pos: -38.5,-11.5 parent: 2 - uid: 13197 components: - type: Transform - pos: -103.5,-7.5 + pos: -41.5,-9.5 parent: 2 - uid: 13198 components: - type: Transform - pos: -107.5,-3.5 + pos: -17.5,-5.5 parent: 2 - uid: 13199 components: - type: Transform - pos: -107.5,-5.5 + pos: -11.5,19.5 parent: 2 - uid: 13200 components: - type: Transform - pos: -107.5,2.5 + pos: -13.5,21.5 parent: 2 - uid: 13201 components: - type: Transform - pos: -107.5,1.5 + pos: -14.5,21.5 parent: 2 - uid: 13202 components: - type: Transform - pos: -105.5,-7.5 + pos: -12.5,21.5 parent: 2 - uid: 13203 components: - type: Transform - pos: -103.5,-8.5 + pos: -14.5,22.5 parent: 2 - uid: 13204 components: - type: Transform - pos: -107.5,-4.5 + pos: -15.5,23.5 parent: 2 - uid: 13205 components: - type: Transform - pos: -107.5,-2.5 + pos: -16.5,24.5 parent: 2 - uid: 13206 components: - type: Transform - pos: -104.5,-7.5 + pos: -15.5,24.5 parent: 2 - uid: 13207 components: - type: Transform - pos: -107.5,0.5 + pos: -11.5,17.5 parent: 2 - uid: 13208 components: - type: Transform - pos: -107.5,-0.5 + pos: -18.5,24.5 parent: 2 - uid: 13209 components: - type: Transform - pos: -106.5,-7.5 + pos: -17.5,24.5 parent: 2 - uid: 13210 components: - type: Transform - pos: -107.5,-6.5 + pos: -11.5,15.5 parent: 2 - uid: 13211 components: - type: Transform - pos: -107.5,-7.5 + pos: -11.5,16.5 parent: 2 - uid: 13212 components: - type: Transform - pos: -107.5,-1.5 + pos: -13.5,14.5 parent: 2 - uid: 13213 components: - type: Transform - pos: -118.5,8.5 + pos: -11.5,18.5 parent: 2 - uid: 13214 components: - type: Transform - pos: -101.5,23.5 + pos: -12.5,15.5 parent: 2 - uid: 13215 components: - type: Transform - pos: -100.5,23.5 + pos: -12.5,20.5 parent: 2 - uid: 13216 components: - type: Transform - pos: -100.5,24.5 + pos: -15.5,22.5 parent: 2 - uid: 13217 components: - type: Transform - pos: -100.5,25.5 + pos: -12.5,14.5 parent: 2 - uid: 13218 components: - type: Transform - pos: -100.5,26.5 + pos: -14.5,12.5 parent: 2 - uid: 13219 components: - type: Transform - pos: 38.5,-47.5 + pos: -14.5,13.5 parent: 2 - uid: 13220 components: - type: Transform - pos: 37.5,-47.5 + pos: -13.5,13.5 parent: 2 - uid: 13221 components: - type: Transform - pos: -37.5,7.5 + pos: -15.5,12.5 parent: 2 - uid: 13222 components: - type: Transform - pos: -37.5,8.5 + pos: -15.5,11.5 parent: 2 - uid: 13223 components: - type: Transform - pos: -32.5,-13.5 + pos: 78.5,-20.5 parent: 2 - uid: 13224 components: - type: Transform - pos: -31.5,-13.5 + pos: 83.5,-20.5 parent: 2 - uid: 13225 components: - type: Transform - pos: -30.5,-13.5 + pos: 80.5,-20.5 parent: 2 - uid: 13226 components: - type: Transform - pos: -28.5,-13.5 + pos: 82.5,-20.5 parent: 2 - uid: 13227 components: - type: Transform - pos: -27.5,-13.5 + pos: 85.5,-20.5 parent: 2 - uid: 13228 components: - type: Transform - pos: -26.5,-13.5 + pos: 81.5,-20.5 parent: 2 - uid: 13229 components: - type: Transform - pos: -25.5,-13.5 + pos: 79.5,-20.5 parent: 2 - uid: 13230 components: - type: Transform - pos: -24.5,-13.5 + pos: 84.5,-20.5 parent: 2 - uid: 13231 components: - type: Transform - pos: -23.5,-13.5 + pos: 87.5,-20.5 parent: 2 - uid: 13232 components: - type: Transform - pos: -22.5,-13.5 + pos: 88.5,-20.5 parent: 2 - uid: 13233 components: - type: Transform - pos: -22.5,-12.5 + pos: 86.5,-20.5 parent: 2 - uid: 13234 components: - type: Transform - pos: -23.5,-10.5 + pos: -16.5,0.5 parent: 2 - uid: 13235 components: - type: Transform - pos: 90.5,-19.5 + pos: -15.5,-16.5 parent: 2 - uid: 13236 components: - type: Transform - pos: 90.5,-18.5 + pos: -13.5,-17.5 parent: 2 - uid: 13237 components: - type: Transform - pos: 90.5,-17.5 + pos: -14.5,-16.5 parent: 2 - uid: 13238 components: - type: Transform - pos: 90.5,-16.5 + pos: 89.5,-20.5 parent: 2 - uid: 13239 components: - type: Transform - pos: 90.5,-15.5 + pos: 90.5,-20.5 parent: 2 - uid: 13240 components: - type: Transform - pos: 90.5,-14.5 + pos: 97.5,-20.5 parent: 2 - uid: 13241 components: - type: Transform - pos: 90.5,-13.5 + pos: 98.5,-20.5 parent: 2 - uid: 13242 components: - type: Transform - pos: 90.5,-12.5 + pos: 99.5,-20.5 parent: 2 - uid: 13243 components: - type: Transform - pos: 90.5,-11.5 + pos: 100.5,-20.5 parent: 2 - uid: 13244 components: - type: Transform - pos: 90.5,-10.5 + pos: 101.5,-20.5 parent: 2 - uid: 13245 components: - type: Transform - pos: 91.5,-10.5 + pos: 102.5,-20.5 parent: 2 - uid: 13246 components: - type: Transform - pos: 92.5,-10.5 + pos: -18.5,-5.5 parent: 2 - uid: 13247 components: - type: Transform - pos: 93.5,-10.5 + pos: -16.5,-7.5 parent: 2 - uid: 13248 components: - type: Transform - pos: 94.5,-10.5 + pos: -16.5,-8.5 parent: 2 - uid: 13249 components: - type: Transform - pos: 95.5,-10.5 + pos: -16.5,-9.5 parent: 2 - uid: 13250 components: - type: Transform - pos: 96.5,-10.5 + pos: -16.5,-10.5 parent: 2 - uid: 13251 components: - type: Transform - pos: 97.5,-10.5 + pos: -16.5,-11.5 parent: 2 - uid: 13252 components: - type: Transform - pos: 98.5,-10.5 + pos: -16.5,-12.5 parent: 2 - uid: 13253 components: - type: Transform - pos: 99.5,-10.5 + pos: -16.5,-13.5 parent: 2 - uid: 13254 components: - type: Transform - pos: 100.5,-10.5 + pos: -16.5,-14.5 parent: 2 - uid: 13255 components: - type: Transform - pos: 26.5,-43.5 + pos: -16.5,-15.5 parent: 2 - uid: 13256 components: - type: Transform - pos: 62.5,-45.5 + pos: -16.5,-16.5 parent: 2 - uid: 13257 components: - type: Transform - pos: 62.5,-43.5 + pos: -13.5,-16.5 parent: 2 - uid: 13258 components: - type: Transform - pos: 62.5,-41.5 + pos: 8.5,-13.5 parent: 2 - uid: 13259 components: - type: Transform - pos: 62.5,-44.5 + pos: -13.5,-18.5 parent: 2 - uid: 13260 components: - type: Transform - pos: 62.5,-42.5 + pos: 8.5,-12.5 parent: 2 - uid: 13261 components: - type: Transform - pos: 62.5,-39.5 + pos: 19.5,-17.5 parent: 2 - uid: 13262 components: - type: Transform - pos: 103.5,-20.5 + pos: 8.5,-14.5 parent: 2 - uid: 13263 components: - type: Transform - pos: 64.5,-37.5 + pos: 8.5,-15.5 parent: 2 - uid: 13264 components: - type: Transform - pos: 22.5,-40.5 + pos: 8.5,-16.5 parent: 2 - uid: 13265 components: - type: Transform - pos: 62.5,-40.5 + pos: 9.5,-16.5 parent: 2 - uid: 13266 components: - type: Transform - pos: 65.5,-37.5 + pos: 10.5,-16.5 parent: 2 - uid: 13267 components: - type: Transform - pos: 63.5,-37.5 + pos: 11.5,-16.5 parent: 2 - uid: 13268 components: - type: Transform - pos: 66.5,-37.5 + pos: 12.5,-16.5 parent: 2 - uid: 13269 components: - type: Transform - pos: 63.5,-46.5 + pos: 13.5,-16.5 parent: 2 - uid: 13270 components: - type: Transform - pos: 64.5,-46.5 + pos: 14.5,-16.5 parent: 2 - uid: 13271 components: - type: Transform - pos: 62.5,-46.5 + pos: 15.5,-16.5 parent: 2 - uid: 13272 components: - type: Transform - pos: 22.5,-39.5 + pos: 16.5,-16.5 parent: 2 - uid: 13273 components: - type: Transform - pos: -46.5,-3.5 + pos: 17.5,-16.5 parent: 2 - uid: 13274 components: - type: Transform - pos: -47.5,-3.5 + pos: 18.5,-16.5 parent: 2 - uid: 13275 components: - type: Transform - pos: -48.5,-3.5 + pos: 19.5,-16.5 parent: 2 - uid: 13276 components: - type: Transform - pos: -49.5,-3.5 + pos: 19.5,-18.5 parent: 2 - uid: 13277 components: - type: Transform - pos: -50.5,-3.5 + pos: -1.5,-21.5 parent: 2 - uid: 13278 components: - type: Transform - pos: -51.5,-3.5 + pos: -0.5,-21.5 parent: 2 - uid: 13279 components: - type: Transform - pos: -52.5,-3.5 + pos: 0.5,-21.5 parent: 2 - uid: 13280 components: - type: Transform - pos: -53.5,-3.5 + pos: 1.5,-21.5 parent: 2 - uid: 13281 components: - type: Transform - pos: -54.5,-3.5 + pos: 2.5,-21.5 parent: 2 - uid: 13282 components: - type: Transform - pos: -55.5,-3.5 + pos: 2.5,-20.5 parent: 2 - uid: 13283 components: - type: Transform - pos: -55.5,-4.5 + pos: 2.5,-19.5 parent: 2 - uid: 13284 components: - type: Transform - pos: -56.5,-4.5 + pos: 2.5,-18.5 parent: 2 - uid: 13285 components: - type: Transform - pos: 47.5,-31.5 + pos: 2.5,-17.5 parent: 2 - uid: 13286 components: - type: Transform - pos: 47.5,-32.5 + pos: 2.5,-16.5 parent: 2 - uid: 13287 components: - type: Transform - pos: -28.5,15.5 + pos: 3.5,-16.5 parent: 2 - uid: 13288 components: - type: Transform - pos: -27.5,15.5 + pos: 4.5,-16.5 parent: 2 - uid: 13289 components: - type: Transform - pos: -24.5,15.5 + pos: 5.5,-16.5 parent: 2 - uid: 13290 components: - type: Transform - pos: -25.5,15.5 + pos: 6.5,-16.5 parent: 2 - uid: 13291 components: - type: Transform - pos: -23.5,15.5 + pos: 7.5,-16.5 parent: 2 - uid: 13292 components: - type: Transform - pos: -22.5,15.5 + pos: -16.5,1.5 parent: 2 - uid: 13293 components: - type: Transform - pos: -22.5,16.5 + pos: -16.5,2.5 parent: 2 - uid: 13294 components: - type: Transform - pos: -21.5,16.5 + pos: -16.5,3.5 parent: 2 - uid: 13295 components: - type: Transform - pos: -20.5,16.5 + pos: -16.5,4.5 parent: 2 - uid: 13296 components: - type: Transform - pos: 5.5,31.5 + pos: -16.5,5.5 parent: 2 - uid: 13297 components: - type: Transform - pos: 5.5,32.5 + pos: -16.5,6.5 parent: 2 - uid: 13298 components: - type: Transform - pos: 5.5,33.5 + pos: -16.5,7.5 parent: 2 - uid: 13299 components: - type: Transform - pos: 6.5,33.5 + pos: -16.5,8.5 parent: 2 - uid: 13300 components: - type: Transform - pos: -44.5,23.5 + pos: -16.5,9.5 parent: 2 - uid: 13301 components: - type: Transform - pos: -44.5,24.5 + pos: -17.5,9.5 parent: 2 - uid: 13302 components: - type: Transform - pos: -44.5,26.5 + pos: -18.5,9.5 parent: 2 - uid: 13303 components: - type: Transform - pos: -44.5,27.5 + pos: 20.5,-16.5 parent: 2 - uid: 13304 components: - type: Transform - pos: -26.5,-7.5 + pos: 21.5,-16.5 parent: 2 - - uid: 40765 + - uid: 13305 components: - type: Transform - pos: 68.5,58.5 - parent: 40203 - - uid: 40766 + pos: 21.5,-15.5 + parent: 2 + - uid: 13306 components: - type: Transform - pos: 68.5,59.5 - parent: 40203 - - uid: 40767 + pos: 21.5,-14.5 + parent: 2 + - uid: 13307 components: - type: Transform - pos: 67.5,59.5 - parent: 40203 - - uid: 40768 + pos: 21.5,-13.5 + parent: 2 + - uid: 13308 components: - type: Transform - pos: 67.5,60.5 - parent: 40203 - - uid: 40769 + pos: 21.5,-12.5 + parent: 2 + - uid: 13309 components: - type: Transform - pos: 67.5,61.5 - parent: 40203 - - uid: 40770 + pos: 21.5,-11.5 + parent: 2 + - uid: 13310 components: - type: Transform - pos: 67.5,62.5 - parent: 40203 - - uid: 40771 + pos: 21.5,-10.5 + parent: 2 + - uid: 13311 components: - type: Transform - pos: 67.5,64.5 - parent: 40203 - - uid: 40772 + pos: 21.5,-9.5 + parent: 2 + - uid: 13312 components: - type: Transform - pos: 67.5,65.5 - parent: 40203 - - uid: 40773 + pos: 21.5,-8.5 + parent: 2 + - uid: 13313 components: - type: Transform - pos: 67.5,63.5 - parent: 40203 - - uid: 40774 + pos: 22.5,-8.5 + parent: 2 + - uid: 13314 components: - type: Transform - pos: 68.5,61.5 - parent: 40203 - - uid: 40775 + pos: 23.5,-8.5 + parent: 2 + - uid: 13315 components: - type: Transform - pos: 69.5,61.5 - parent: 40203 - - uid: 40776 + pos: 24.5,-8.5 + parent: 2 + - uid: 13316 components: - type: Transform - pos: 65.5,67.5 - parent: 40203 - - uid: 40777 + pos: 25.5,-8.5 + parent: 2 + - uid: 13317 components: - type: Transform - pos: 68.5,66.5 - parent: 40203 - - uid: 40778 + pos: 26.5,-8.5 + parent: 2 + - uid: 13318 components: - type: Transform - pos: 68.5,68.5 - parent: 40203 - - uid: 40779 + pos: 26.5,-10.5 + parent: 2 + - uid: 13319 components: - type: Transform - pos: 68.5,69.5 - parent: 40203 - - uid: 40780 + pos: 26.5,-11.5 + parent: 2 + - uid: 13320 components: - type: Transform - pos: 68.5,70.5 - parent: 40203 - - uid: 40781 - components: - - type: Transform - pos: 68.5,71.5 - parent: 40203 - - uid: 40782 + pos: 26.5,-9.5 + parent: 2 + - uid: 13321 components: - type: Transform - pos: 68.5,72.5 - parent: 40203 - - uid: 40783 + pos: 27.5,-11.5 + parent: 2 + - uid: 13322 components: - type: Transform - pos: 68.5,73.5 - parent: 40203 - - uid: 40784 + pos: 28.5,-11.5 + parent: 2 + - uid: 13323 components: - type: Transform - pos: 68.5,74.5 - parent: 40203 - - uid: 40785 + pos: -5.5,-7.5 + parent: 2 + - uid: 13324 components: - type: Transform - pos: 68.5,67.5 - parent: 40203 - - uid: 40786 + pos: -6.5,-7.5 + parent: 2 + - uid: 13325 components: - type: Transform - pos: 68.5,75.5 - parent: 40203 - - uid: 40787 + pos: -7.5,-7.5 + parent: 2 + - uid: 13326 components: - type: Transform - pos: 67.5,75.5 - parent: 40203 - - uid: 40788 + pos: -21.5,41.5 + parent: 2 + - uid: 13327 components: - type: Transform - pos: 66.5,75.5 - parent: 40203 - - uid: 40789 + pos: -21.5,43.5 + parent: 2 + - uid: 13328 components: - type: Transform - pos: 65.5,75.5 - parent: 40203 - - uid: 40790 + pos: -20.5,43.5 + parent: 2 + - uid: 13329 components: - type: Transform - pos: 64.5,75.5 - parent: 40203 - - uid: 40791 + pos: -16.5,11.5 + parent: 2 + - uid: 13330 components: - type: Transform - pos: 63.5,75.5 - parent: 40203 - - uid: 40792 + pos: -16.5,10.5 + parent: 2 + - uid: 13331 components: - type: Transform - pos: 62.5,75.5 - parent: 40203 - - uid: 40793 + pos: -19.5,24.5 + parent: 2 + - uid: 13332 components: - type: Transform - pos: 61.5,75.5 - parent: 40203 - - uid: 40794 + pos: -20.5,24.5 + parent: 2 + - uid: 13333 components: - type: Transform - pos: 60.5,75.5 - parent: 40203 - - uid: 40795 + pos: -20.5,25.5 + parent: 2 + - uid: 13334 components: - type: Transform - pos: 59.5,75.5 - parent: 40203 - - uid: 40796 + pos: -20.5,26.5 + parent: 2 + - uid: 13335 components: - type: Transform - pos: 58.5,75.5 - parent: 40203 - - uid: 40797 + pos: -20.5,27.5 + parent: 2 + - uid: 13336 components: - type: Transform - pos: 57.5,75.5 - parent: 40203 - - uid: 40798 + pos: -11.5,20.5 + parent: 2 + - uid: 13337 components: - type: Transform - pos: 56.5,75.5 - parent: 40203 - - uid: 40799 + pos: 7.5,21.5 + parent: 2 + - uid: 13338 components: - type: Transform - pos: 69.5,72.5 - parent: 40203 - - uid: 40800 + pos: 6.5,21.5 + parent: 2 + - uid: 13339 components: - type: Transform - pos: 70.5,72.5 - parent: 40203 - - uid: 40801 + pos: 6.5,20.5 + parent: 2 + - uid: 13340 components: - type: Transform - pos: 72.5,72.5 - parent: 40203 - - uid: 40802 + pos: 6.5,19.5 + parent: 2 + - uid: 13341 components: - type: Transform - pos: 71.5,72.5 - parent: 40203 - - uid: 40803 + pos: 5.5,19.5 + parent: 2 + - uid: 13342 components: - type: Transform - pos: 72.5,73.5 - parent: 40203 - - uid: 40804 + pos: 4.5,19.5 + parent: 2 + - uid: 13343 components: - type: Transform - pos: 72.5,74.5 - parent: 40203 - - uid: 40805 + pos: 3.5,19.5 + parent: 2 + - uid: 13344 components: - type: Transform - pos: 72.5,76.5 - parent: 40203 - - uid: 40806 + pos: 2.5,19.5 + parent: 2 + - uid: 13345 components: - type: Transform - pos: 72.5,77.5 - parent: 40203 - - uid: 40807 + pos: 1.5,19.5 + parent: 2 + - uid: 13346 components: - type: Transform - pos: 72.5,75.5 - parent: 40203 - - uid: 40808 + pos: 1.5,18.5 + parent: 2 + - uid: 13347 components: - type: Transform - pos: 73.5,77.5 - parent: 40203 - - uid: 40809 + pos: 1.5,17.5 + parent: 2 + - uid: 13348 components: - type: Transform - pos: 74.5,77.5 - parent: 40203 - - uid: 40810 + pos: 61.5,-48.5 + parent: 2 + - uid: 13349 components: - type: Transform - pos: 74.5,78.5 - parent: 40203 - - uid: 40811 + pos: 60.5,-48.5 + parent: 2 + - uid: 13350 components: - type: Transform - pos: 75.5,78.5 - parent: 40203 - - uid: 40812 + pos: 65.5,-48.5 + parent: 2 + - uid: 13351 components: - type: Transform - pos: 69.5,70.5 - parent: 40203 - - uid: 40813 + pos: 63.5,-48.5 + parent: 2 + - uid: 13352 components: - type: Transform - pos: 70.5,70.5 - parent: 40203 - - uid: 40814 + pos: 62.5,-48.5 + parent: 2 + - uid: 13353 components: - type: Transform - pos: 56.5,76.5 - parent: 40203 - - uid: 40815 + pos: 64.5,-48.5 + parent: 2 + - uid: 13354 components: - type: Transform - pos: 56.5,77.5 - parent: 40203 - - uid: 40816 + pos: -56.5,63.5 + parent: 2 + - uid: 13355 components: - type: Transform - pos: 56.5,78.5 - parent: 40203 - - uid: 40817 + pos: -55.5,62.5 + parent: 2 + - uid: 13356 components: - type: Transform - pos: 56.5,79.5 - parent: 40203 - - uid: 40818 + pos: -55.5,63.5 + parent: 2 + - uid: 13357 components: - type: Transform - pos: 55.5,79.5 - parent: 40203 - - uid: 40819 + pos: -134.5,11.5 + parent: 2 + - uid: 13358 components: - type: Transform - pos: 54.5,79.5 - parent: 40203 - - uid: 40820 + pos: -134.5,10.5 + parent: 2 + - uid: 13359 components: - type: Transform - pos: 54.5,80.5 - parent: 40203 - - uid: 40821 + pos: -133.5,10.5 + parent: 2 + - uid: 13360 components: - type: Transform - pos: 65.5,68.5 - parent: 40203 - - uid: 40822 + pos: -133.5,9.5 + parent: 2 + - uid: 13361 components: - type: Transform - pos: 65.5,69.5 - parent: 40203 - - uid: 40823 + pos: -132.5,9.5 + parent: 2 + - uid: 13362 components: - type: Transform - pos: 65.5,66.5 - parent: 40203 - - uid: 40824 + pos: -131.5,9.5 + parent: 2 + - uid: 13363 components: - type: Transform - pos: 66.5,66.5 - parent: 40203 - - uid: 40825 + pos: -131.5,9.5 + parent: 2 + - uid: 13364 components: - type: Transform - pos: 67.5,66.5 - parent: 40203 - - uid: 40826 + pos: -130.5,9.5 + parent: 2 + - uid: 13365 components: - type: Transform - pos: 64.5,69.5 - parent: 40203 - - uid: 40827 + pos: -129.5,9.5 + parent: 2 + - uid: 13366 components: - type: Transform - pos: 63.5,69.5 - parent: 40203 - - uid: 40828 + pos: -128.5,9.5 + parent: 2 + - uid: 13367 components: - type: Transform - pos: 62.5,69.5 - parent: 40203 - - uid: 40829 + pos: -127.5,9.5 + parent: 2 + - uid: 13368 components: - type: Transform - pos: 61.5,69.5 - parent: 40203 - - uid: 40830 + pos: -126.5,9.5 + parent: 2 + - uid: 13369 components: - type: Transform - pos: 60.5,69.5 - parent: 40203 - - uid: 40831 + pos: -125.5,9.5 + parent: 2 + - uid: 13370 components: - type: Transform - pos: 59.5,69.5 - parent: 40203 - - uid: 40832 + pos: -125.5,8.5 + parent: 2 + - uid: 13371 components: - type: Transform - pos: 58.5,69.5 - parent: 40203 - - uid: 40833 + pos: -124.5,8.5 + parent: 2 + - uid: 13372 components: - type: Transform - pos: 57.5,69.5 - parent: 40203 - - uid: 40834 + pos: -123.5,8.5 + parent: 2 + - uid: 13373 components: - type: Transform - pos: 56.5,69.5 - parent: 40203 - - uid: 40835 + pos: -122.5,8.5 + parent: 2 + - uid: 13374 components: - type: Transform - pos: 55.5,69.5 - parent: 40203 - - uid: 40836 + pos: -121.5,8.5 + parent: 2 + - uid: 13375 components: - type: Transform - pos: 55.5,68.5 - parent: 40203 - - uid: 40837 + pos: -120.5,8.5 + parent: 2 + - uid: 13376 components: - type: Transform - pos: 55.5,67.5 - parent: 40203 - - uid: 40838 + pos: -119.5,8.5 + parent: 2 + - uid: 13377 components: - type: Transform - pos: 55.5,66.5 - parent: 40203 - - uid: 40839 + pos: -118.5,7.5 + parent: 2 + - uid: 13378 components: - type: Transform - pos: 61.5,68.5 - parent: 40203 - - uid: 40840 + pos: -117.5,7.5 + parent: 2 + - uid: 13379 components: - type: Transform - pos: 61.5,67.5 - parent: 40203 - - uid: 40841 + pos: -116.5,7.5 + parent: 2 + - uid: 13380 components: - type: Transform - pos: 54.5,66.5 - parent: 40203 - - uid: 40842 + pos: -115.5,7.5 + parent: 2 + - uid: 13381 components: - type: Transform - pos: 53.5,66.5 - parent: 40203 - - uid: 40843 + pos: -114.5,7.5 + parent: 2 + - uid: 13382 components: - type: Transform - pos: 52.5,66.5 - parent: 40203 - - uid: 40844 + pos: -113.5,7.5 + parent: 2 + - uid: 13383 components: - type: Transform - pos: 50.5,66.5 - parent: 40203 - - uid: 40845 + pos: -112.5,7.5 + parent: 2 + - uid: 13384 components: - type: Transform - pos: 49.5,66.5 - parent: 40203 - - uid: 40846 + pos: -111.5,7.5 + parent: 2 + - uid: 13385 components: - type: Transform - pos: 48.5,66.5 - parent: 40203 - - uid: 40847 + pos: -110.5,7.5 + parent: 2 + - uid: 13386 components: - type: Transform - pos: 47.5,66.5 - parent: 40203 - - uid: 40848 + pos: -109.5,7.5 + parent: 2 + - uid: 13387 components: - type: Transform - pos: 46.5,66.5 - parent: 40203 - - uid: 40849 + pos: -109.5,8.5 + parent: 2 + - uid: 13388 components: - type: Transform - pos: 45.5,66.5 - parent: 40203 - - uid: 40850 + pos: -109.5,9.5 + parent: 2 + - uid: 13389 components: - type: Transform - pos: 44.5,66.5 - parent: 40203 - - uid: 40851 + pos: -109.5,10.5 + parent: 2 + - uid: 13390 components: - type: Transform - pos: 51.5,66.5 - parent: 40203 - - uid: 40852 + pos: -109.5,11.5 + parent: 2 + - uid: 13391 components: - type: Transform - pos: 51.5,65.5 - parent: 40203 - - uid: 40853 + pos: -109.5,12.5 + parent: 2 + - uid: 13392 components: - type: Transform - pos: 51.5,64.5 - parent: 40203 - - uid: 40854 + pos: -109.5,13.5 + parent: 2 + - uid: 13393 components: - type: Transform - pos: 51.5,62.5 - parent: 40203 - - uid: 40855 + pos: -108.5,12.5 + parent: 2 + - uid: 13394 components: - type: Transform - pos: 51.5,61.5 - parent: 40203 - - uid: 40856 + pos: -107.5,12.5 + parent: 2 + - uid: 13395 components: - type: Transform - pos: 51.5,60.5 - parent: 40203 - - uid: 40857 + pos: -106.5,12.5 + parent: 2 + - uid: 13396 components: - type: Transform - pos: 51.5,59.5 - parent: 40203 - - uid: 40858 + pos: -106.5,13.5 + parent: 2 + - uid: 13397 components: - type: Transform - pos: 51.5,58.5 - parent: 40203 - - uid: 40859 + pos: -109.5,6.5 + parent: 2 + - uid: 13398 components: - type: Transform - pos: 51.5,57.5 - parent: 40203 - - uid: 40860 + pos: -109.5,5.5 + parent: 2 + - uid: 13399 components: - type: Transform - pos: 51.5,56.5 - parent: 40203 - - uid: 40861 + pos: -109.5,4.5 + parent: 2 + - uid: 13400 components: - type: Transform - pos: 51.5,63.5 - parent: 40203 - - uid: 40862 + pos: -109.5,3.5 + parent: 2 + - uid: 13401 components: - type: Transform - pos: 51.5,55.5 - parent: 40203 - - uid: 40863 + pos: -108.5,3.5 + parent: 2 + - uid: 13402 components: - type: Transform - pos: 51.5,54.5 - parent: 40203 - - uid: 40864 + pos: -107.5,3.5 + parent: 2 + - uid: 13403 components: - type: Transform - pos: 51.5,53.5 - parent: 40203 - - uid: 40865 + pos: -106.5,3.5 + parent: 2 + - uid: 13404 components: - type: Transform - pos: 51.5,52.5 - parent: 40203 - - uid: 40866 + pos: -105.5,3.5 + parent: 2 + - uid: 13405 components: - type: Transform - pos: 52.5,52.5 - parent: 40203 - - uid: 40867 + pos: -104.5,3.5 + parent: 2 + - uid: 13406 components: - type: Transform - pos: 53.5,52.5 - parent: 40203 - - uid: 40868 + pos: -103.5,3.5 + parent: 2 + - uid: 13407 components: - type: Transform - pos: 55.5,52.5 - parent: 40203 - - uid: 40869 + pos: -103.5,2.5 + parent: 2 + - uid: 13408 components: - type: Transform - pos: 56.5,52.5 - parent: 40203 - - uid: 40870 + pos: -103.5,1.5 + parent: 2 + - uid: 13409 components: - type: Transform - pos: 57.5,52.5 - parent: 40203 - - uid: 40871 + pos: -102.5,1.5 + parent: 2 + - uid: 13410 components: - type: Transform - pos: 58.5,52.5 - parent: 40203 - - uid: 40872 + pos: -101.5,1.5 + parent: 2 + - uid: 13411 components: - type: Transform - pos: 54.5,52.5 - parent: 40203 - - uid: 40873 + pos: -100.5,1.5 + parent: 2 + - uid: 13412 components: - type: Transform - pos: 58.5,53.5 - parent: 40203 - - uid: 40874 + pos: -99.5,1.5 + parent: 2 + - uid: 13413 components: - type: Transform - pos: 58.5,54.5 - parent: 40203 - - uid: 40875 + pos: -98.5,1.5 + parent: 2 + - uid: 13414 components: - type: Transform - pos: 58.5,55.5 - parent: 40203 - - uid: 40876 + pos: -97.5,1.5 + parent: 2 + - uid: 13415 components: - type: Transform - pos: 57.5,55.5 - parent: 40203 - - uid: 40877 + pos: -96.5,1.5 + parent: 2 + - uid: 13416 components: - type: Transform - pos: 57.5,56.5 - parent: 40203 - - uid: 40878 + pos: -96.5,2.5 + parent: 2 + - uid: 13417 components: - type: Transform - pos: 57.5,57.5 - parent: 40203 - - uid: 40879 + pos: -96.5,3.5 + parent: 2 + - uid: 13418 components: - type: Transform - pos: 57.5,58.5 - parent: 40203 - - uid: 40880 + pos: -96.5,4.5 + parent: 2 + - uid: 13419 components: - type: Transform - pos: 59.5,52.5 - parent: 40203 - - uid: 40881 + pos: -95.5,4.5 + parent: 2 + - uid: 13420 components: - type: Transform - pos: 59.5,51.5 - parent: 40203 - - uid: 40882 + pos: -94.5,4.5 + parent: 2 + - uid: 13421 components: - type: Transform - pos: 59.5,49.5 - parent: 40203 - - uid: 40883 + pos: -109.5,23.5 + parent: 2 + - uid: 13422 components: - type: Transform - pos: 59.5,48.5 - parent: 40203 - - uid: 40884 + pos: -109.5,22.5 + parent: 2 + - uid: 13423 components: - type: Transform - pos: 59.5,50.5 - parent: 40203 - - uid: 40885 + pos: -109.5,21.5 + parent: 2 + - uid: 13424 components: - type: Transform - pos: 52.5,48.5 - parent: 40203 - - uid: 40886 + pos: -108.5,21.5 + parent: 2 + - uid: 13425 components: - type: Transform - pos: 53.5,48.5 - parent: 40203 - - uid: 40887 + pos: -108.5,20.5 + parent: 2 + - uid: 13426 components: - type: Transform - pos: 54.5,48.5 - parent: 40203 - - uid: 40888 + pos: -108.5,19.5 + parent: 2 + - uid: 13427 components: - type: Transform - pos: 55.5,48.5 - parent: 40203 - - uid: 40889 + pos: -108.5,18.5 + parent: 2 + - uid: 13428 components: - type: Transform - pos: 56.5,48.5 - parent: 40203 - - uid: 40890 + pos: -107.5,18.5 + parent: 2 + - uid: 13429 components: - type: Transform - pos: 57.5,48.5 - parent: 40203 - - uid: 40891 + pos: -107.5,17.5 + parent: 2 + - uid: 13430 components: - type: Transform - pos: 58.5,48.5 - parent: 40203 - - uid: 40892 + pos: -107.5,16.5 + parent: 2 + - uid: 13431 components: - type: Transform - pos: 52.5,47.5 - parent: 40203 - - uid: 40893 + pos: -106.5,16.5 + parent: 2 + - uid: 13432 components: - type: Transform - pos: 52.5,46.5 - parent: 40203 - - uid: 40894 + pos: -106.5,15.5 + parent: 2 + - uid: 13433 components: - type: Transform - pos: 52.5,45.5 - parent: 40203 - - uid: 40895 + pos: -106.5,14.5 + parent: 2 + - uid: 13434 components: - type: Transform - pos: 52.5,44.5 - parent: 40203 - - uid: 40896 + pos: -105.5,16.5 + parent: 2 + - uid: 13435 components: - type: Transform - pos: 52.5,61.5 - parent: 40203 - - uid: 40897 + pos: -105.5,17.5 + parent: 2 + - uid: 13436 components: - type: Transform - pos: 54.5,61.5 - parent: 40203 - - uid: 40898 + pos: -105.5,18.5 + parent: 2 + - uid: 13437 components: - type: Transform - pos: 53.5,61.5 - parent: 40203 - - uid: 40899 + pos: -105.5,19.5 + parent: 2 + - uid: 13438 components: - type: Transform - pos: 55.5,61.5 - parent: 40203 - - uid: 40900 + pos: -105.5,20.5 + parent: 2 + - uid: 13439 components: - type: Transform - pos: 56.5,61.5 - parent: 40203 - - uid: 40901 + pos: -105.5,21.5 + parent: 2 + - uid: 13440 components: - type: Transform - pos: 56.5,62.5 - parent: 40203 - - uid: 40902 + pos: -105.5,22.5 + parent: 2 + - uid: 13441 components: - type: Transform - pos: 57.5,62.5 - parent: 40203 - - uid: 40903 + pos: -105.5,23.5 + parent: 2 + - uid: 13442 components: - type: Transform - pos: 57.5,63.5 - parent: 40203 - - uid: 40904 + pos: -104.5,23.5 + parent: 2 + - uid: 13443 components: - type: Transform - pos: 57.5,64.5 - parent: 40203 - - uid: 40905 + pos: -103.5,23.5 + parent: 2 + - uid: 13444 components: - type: Transform - pos: 46.5,67.5 - parent: 40203 - - uid: 40906 + pos: -102.5,23.5 + parent: 2 + - uid: 13445 components: - type: Transform - pos: 43.5,66.5 - parent: 40203 - - uid: 40907 + pos: -105.5,23.5 + parent: 2 + - uid: 13446 components: - type: Transform - pos: 42.5,66.5 - parent: 40203 - - uid: 40908 + pos: -104.5,23.5 + parent: 2 + - uid: 13447 components: - type: Transform - pos: 41.5,66.5 - parent: 40203 - - uid: 40909 + pos: -103.5,-9.5 + parent: 2 + - uid: 13448 components: - type: Transform - pos: 39.5,66.5 - parent: 40203 - - uid: 40910 + pos: -103.5,-7.5 + parent: 2 + - uid: 13449 components: - type: Transform - pos: 38.5,66.5 - parent: 40203 - - uid: 40911 + pos: -107.5,-3.5 + parent: 2 + - uid: 13450 components: - type: Transform - pos: 37.5,66.5 - parent: 40203 - - uid: 40912 + pos: -107.5,-5.5 + parent: 2 + - uid: 13451 components: - type: Transform - pos: 36.5,66.5 - parent: 40203 - - uid: 40913 + pos: -107.5,2.5 + parent: 2 + - uid: 13452 components: - type: Transform - pos: 35.5,66.5 - parent: 40203 - - uid: 40914 + pos: -107.5,1.5 + parent: 2 + - uid: 13453 components: - type: Transform - pos: 34.5,66.5 - parent: 40203 - - uid: 40915 + pos: -105.5,-7.5 + parent: 2 + - uid: 13454 components: - type: Transform - pos: 33.5,66.5 - parent: 40203 - - uid: 40916 + pos: -103.5,-8.5 + parent: 2 + - uid: 13455 components: - type: Transform - pos: 40.5,66.5 - parent: 40203 - - uid: 40917 + pos: -107.5,-4.5 + parent: 2 + - uid: 13456 components: - type: Transform - pos: 32.5,66.5 - parent: 40203 - - uid: 40918 + pos: -107.5,-2.5 + parent: 2 + - uid: 13457 components: - type: Transform - pos: 30.5,66.5 - parent: 40203 - - uid: 40919 + pos: -104.5,-7.5 + parent: 2 + - uid: 13458 components: - type: Transform - pos: 31.5,66.5 - parent: 40203 - - uid: 40920 + pos: -107.5,0.5 + parent: 2 + - uid: 13459 components: - type: Transform - pos: 36.5,65.5 - parent: 40203 - - uid: 40921 + pos: -107.5,-0.5 + parent: 2 + - uid: 13460 components: - type: Transform - pos: 36.5,64.5 - parent: 40203 - - uid: 40922 + pos: -106.5,-7.5 + parent: 2 + - uid: 13461 components: - type: Transform - pos: 36.5,63.5 - parent: 40203 - - uid: 40923 + pos: -107.5,-6.5 + parent: 2 + - uid: 13462 components: - type: Transform - pos: 35.5,63.5 - parent: 40203 - - uid: 40924 + pos: -107.5,-7.5 + parent: 2 + - uid: 13463 components: - type: Transform - pos: 36.5,62.5 - parent: 40203 - - uid: 40925 + pos: -107.5,-1.5 + parent: 2 + - uid: 13464 components: - type: Transform - pos: 36.5,61.5 - parent: 40203 - - uid: 40926 + pos: -118.5,8.5 + parent: 2 + - uid: 13465 components: - type: Transform - pos: 37.5,61.5 - parent: 40203 - - uid: 40927 + pos: -101.5,23.5 + parent: 2 + - uid: 13466 components: - type: Transform - pos: 38.5,61.5 - parent: 40203 - - uid: 40928 + pos: -100.5,23.5 + parent: 2 + - uid: 13467 components: - type: Transform - pos: 39.5,61.5 - parent: 40203 - - uid: 40929 + pos: -100.5,24.5 + parent: 2 + - uid: 13468 components: - type: Transform - pos: 39.5,62.5 - parent: 40203 - - uid: 40930 + pos: -100.5,25.5 + parent: 2 + - uid: 13469 components: - type: Transform - pos: 39.5,60.5 - parent: 40203 - - uid: 40931 + pos: -100.5,26.5 + parent: 2 + - uid: 13470 components: - type: Transform - pos: 33.5,71.5 - parent: 40203 - - uid: 40932 + pos: 38.5,-47.5 + parent: 2 + - uid: 13471 components: - type: Transform - pos: 33.5,70.5 - parent: 40203 - - uid: 40933 + pos: 37.5,-47.5 + parent: 2 + - uid: 13472 components: - type: Transform - pos: 33.5,69.5 - parent: 40203 - - uid: 40934 + pos: -37.5,7.5 + parent: 2 + - uid: 13473 components: - type: Transform - pos: 33.5,72.5 - parent: 40203 - - uid: 40935 + pos: -37.5,8.5 + parent: 2 + - uid: 13474 components: - type: Transform - pos: 34.5,72.5 - parent: 40203 - - uid: 40936 + pos: -32.5,-13.5 + parent: 2 + - uid: 13475 components: - type: Transform - pos: 35.5,72.5 - parent: 40203 - - uid: 40937 + pos: -31.5,-13.5 + parent: 2 + - uid: 13476 components: - type: Transform - pos: 44.5,73.5 - parent: 40203 - - uid: 40938 + pos: -30.5,-13.5 + parent: 2 + - uid: 13477 components: - type: Transform - pos: 44.5,72.5 - parent: 40203 - - uid: 40939 + pos: -28.5,-13.5 + parent: 2 + - uid: 13478 components: - type: Transform - pos: 44.5,70.5 - parent: 40203 - - uid: 40940 + pos: -27.5,-13.5 + parent: 2 + - uid: 13479 components: - type: Transform - pos: 44.5,69.5 - parent: 40203 - - uid: 40941 + pos: -26.5,-13.5 + parent: 2 + - uid: 13480 components: - type: Transform - pos: 44.5,68.5 - parent: 40203 - - uid: 40942 + pos: -25.5,-13.5 + parent: 2 + - uid: 13481 components: - type: Transform - pos: 44.5,67.5 - parent: 40203 - - uid: 40943 + pos: -24.5,-13.5 + parent: 2 + - uid: 13482 components: - type: Transform - pos: 44.5,71.5 - parent: 40203 - - uid: 40944 + pos: -23.5,-13.5 + parent: 2 + - uid: 13483 components: - type: Transform - pos: 44.5,74.5 - parent: 40203 - - uid: 40945 + pos: -22.5,-13.5 + parent: 2 + - uid: 13484 components: - type: Transform - pos: 43.5,74.5 - parent: 40203 - - uid: 40946 + pos: -22.5,-12.5 + parent: 2 + - uid: 13485 components: - type: Transform - pos: 43.5,75.5 - parent: 40203 - - uid: 40947 + pos: -23.5,-10.5 + parent: 2 + - uid: 13486 components: - type: Transform - pos: 43.5,76.5 - parent: 40203 - - uid: 40948 + pos: 90.5,-19.5 + parent: 2 + - uid: 13487 components: - type: Transform - pos: 43.5,77.5 - parent: 40203 - - uid: 40949 + pos: 90.5,-18.5 + parent: 2 + - uid: 13488 components: - type: Transform - pos: 43.5,78.5 - parent: 40203 - - uid: 40950 + pos: 90.5,-17.5 + parent: 2 + - uid: 13489 components: - type: Transform - pos: 44.5,76.5 - parent: 40203 - - uid: 40951 + pos: 90.5,-16.5 + parent: 2 + - uid: 13490 components: - type: Transform - pos: 45.5,76.5 - parent: 40203 - - uid: 40952 + pos: 90.5,-15.5 + parent: 2 + - uid: 13491 components: - type: Transform - pos: 46.5,76.5 - parent: 40203 - - uid: 40953 + pos: 90.5,-14.5 + parent: 2 + - uid: 13492 components: - type: Transform - pos: 42.5,78.5 - parent: 40203 - - uid: 40954 + pos: 90.5,-13.5 + parent: 2 + - uid: 13493 components: - type: Transform - pos: 41.5,78.5 - parent: 40203 - - uid: 40955 + pos: 90.5,-12.5 + parent: 2 + - uid: 13494 components: - type: Transform - pos: 39.5,78.5 - parent: 40203 - - uid: 40956 + pos: 90.5,-11.5 + parent: 2 + - uid: 13495 components: - type: Transform - pos: 38.5,78.5 - parent: 40203 - - uid: 40957 + pos: 90.5,-10.5 + parent: 2 + - uid: 13496 components: - type: Transform - pos: 37.5,78.5 - parent: 40203 - - uid: 40958 + pos: 91.5,-10.5 + parent: 2 + - uid: 13497 components: - type: Transform - pos: 40.5,78.5 - parent: 40203 - - uid: 40959 + pos: 92.5,-10.5 + parent: 2 + - uid: 13498 components: - type: Transform - pos: 37.5,77.5 - parent: 40203 - - uid: 40960 + pos: 93.5,-10.5 + parent: 2 + - uid: 13499 components: - type: Transform - pos: 37.5,76.5 - parent: 40203 - - uid: 40961 + pos: 94.5,-10.5 + parent: 2 + - uid: 13500 components: - type: Transform - pos: 37.5,75.5 - parent: 40203 - - uid: 40962 + pos: 95.5,-10.5 + parent: 2 + - uid: 13501 components: - type: Transform - pos: 37.5,74.5 - parent: 40203 - - uid: 40963 + pos: 96.5,-10.5 + parent: 2 + - uid: 13502 components: - type: Transform - pos: 38.5,74.5 - parent: 40203 - - uid: 40964 + pos: 97.5,-10.5 + parent: 2 + - uid: 13503 components: - type: Transform - pos: 39.5,74.5 - parent: 40203 - - uid: 40965 + pos: 98.5,-10.5 + parent: 2 + - uid: 13504 components: - type: Transform - pos: 39.5,75.5 - parent: 40203 - - uid: 40966 + pos: 99.5,-10.5 + parent: 2 + - uid: 13505 components: - type: Transform - pos: 59.5,47.5 - parent: 40203 - - uid: 40967 + pos: 100.5,-10.5 + parent: 2 + - uid: 13506 components: - type: Transform - pos: 60.5,47.5 - parent: 40203 - - uid: 40968 + pos: 26.5,-43.5 + parent: 2 + - uid: 13507 components: - type: Transform - pos: 51.5,44.5 - parent: 40203 - - uid: 40969 + pos: 62.5,-45.5 + parent: 2 + - uid: 13508 components: - type: Transform - pos: 50.5,44.5 - parent: 40203 - - uid: 40970 + pos: 62.5,-43.5 + parent: 2 + - uid: 13509 components: - type: Transform - pos: 49.5,44.5 - parent: 40203 - - uid: 40971 + pos: 62.5,-41.5 + parent: 2 + - uid: 13510 components: - type: Transform - pos: 49.5,45.5 - parent: 40203 - - uid: 40972 + pos: 62.5,-44.5 + parent: 2 + - uid: 13511 components: - type: Transform - pos: 49.5,46.5 - parent: 40203 - - uid: 40973 + pos: 62.5,-42.5 + parent: 2 + - uid: 13512 components: - type: Transform - pos: 50.5,54.5 - parent: 40203 - - uid: 40974 + pos: 62.5,-39.5 + parent: 2 + - uid: 13513 components: - type: Transform - pos: 49.5,54.5 - parent: 40203 - - uid: 40975 + pos: 103.5,-20.5 + parent: 2 + - uid: 13514 components: - type: Transform - pos: 48.5,54.5 - parent: 40203 - - uid: 40976 + pos: 64.5,-37.5 + parent: 2 + - uid: 13515 components: - type: Transform - pos: 33.5,68.5 - parent: 40203 - - uid: 40977 + pos: 22.5,-40.5 + parent: 2 + - uid: 13516 components: - type: Transform - pos: 33.5,67.5 - parent: 40203 - - uid: 45069 + pos: 62.5,-40.5 + parent: 2 + - uid: 13517 components: - type: Transform - pos: 10.5,7.5 - parent: 44970 - - uid: 45070 + pos: 65.5,-37.5 + parent: 2 + - uid: 13518 components: - type: Transform - pos: 9.5,7.5 - parent: 44970 - - uid: 45071 + pos: 63.5,-37.5 + parent: 2 + - uid: 13519 components: - type: Transform - pos: 10.5,8.5 - parent: 44970 - - uid: 45072 + pos: 66.5,-37.5 + parent: 2 + - uid: 13520 components: - type: Transform - pos: 10.5,9.5 - parent: 44970 - - uid: 45073 + pos: 63.5,-46.5 + parent: 2 + - uid: 13521 components: - type: Transform - pos: 8.5,7.5 - parent: 44970 - - uid: 45074 + pos: 64.5,-46.5 + parent: 2 + - uid: 13522 components: - type: Transform - pos: 7.5,7.5 - parent: 44970 - - uid: 45075 + pos: 62.5,-46.5 + parent: 2 + - uid: 13523 components: - type: Transform - pos: 6.5,7.5 - parent: 44970 - - uid: 45076 + pos: 22.5,-39.5 + parent: 2 + - uid: 13524 components: - type: Transform - pos: 6.5,6.5 - parent: 44970 - - uid: 45077 + pos: -46.5,-3.5 + parent: 2 + - uid: 13525 components: - type: Transform - pos: 5.5,6.5 - parent: 44970 - - uid: 45078 + pos: -47.5,-3.5 + parent: 2 + - uid: 13526 components: - type: Transform - pos: 6.5,8.5 - parent: 44970 - - uid: 45079 + pos: -48.5,-3.5 + parent: 2 + - uid: 13527 components: - type: Transform - pos: 5.5,8.5 - parent: 44970 - - uid: 45080 + pos: -49.5,-3.5 + parent: 2 + - uid: 13528 components: - type: Transform - pos: 4.5,8.5 - parent: 44970 - - uid: 45081 + pos: -50.5,-3.5 + parent: 2 + - uid: 13529 components: - type: Transform - pos: 3.5,8.5 - parent: 44970 - - uid: 45082 + pos: -51.5,-3.5 + parent: 2 + - uid: 13530 components: - type: Transform - pos: 2.5,8.5 - parent: 44970 - - uid: 45083 + pos: -52.5,-3.5 + parent: 2 + - uid: 13531 components: - type: Transform - pos: 1.5,8.5 - parent: 44970 - - uid: 45084 + pos: -53.5,-3.5 + parent: 2 + - uid: 13532 components: - type: Transform - pos: 0.5,8.5 - parent: 44970 - - uid: 45085 + pos: -54.5,-3.5 + parent: 2 + - uid: 13533 components: - type: Transform - pos: -0.5,8.5 - parent: 44970 - - uid: 45086 + pos: -55.5,-3.5 + parent: 2 + - uid: 13534 components: - type: Transform - pos: -1.5,8.5 - parent: 44970 - - uid: 45087 + pos: -55.5,-4.5 + parent: 2 + - uid: 13535 components: - type: Transform - pos: -2.5,8.5 - parent: 44970 - - uid: 45088 + pos: -56.5,-4.5 + parent: 2 + - uid: 13536 components: - type: Transform - pos: -3.5,8.5 - parent: 44970 - - uid: 45089 + pos: 47.5,-31.5 + parent: 2 + - uid: 13537 components: - type: Transform - pos: -4.5,8.5 - parent: 44970 - - uid: 45090 + pos: 47.5,-32.5 + parent: 2 + - uid: 13538 components: - type: Transform - pos: -4.5,7.5 - parent: 44970 - - uid: 45091 + pos: -28.5,15.5 + parent: 2 + - uid: 13539 components: - type: Transform - pos: -4.5,6.5 - parent: 44970 - - uid: 45092 + pos: -27.5,15.5 + parent: 2 + - uid: 13540 components: - type: Transform - pos: -5.5,6.5 - parent: 44970 -- proto: CableMVStack - entities: - - uid: 13305 + pos: -24.5,15.5 + parent: 2 + - uid: 13541 components: - type: Transform - rot: 6.283185307179586 rad - pos: -2.5309815,-38.42832 + pos: -25.5,15.5 parent: 2 - - uid: 13306 + - uid: 13542 components: - type: Transform - pos: -13.328497,-48.377502 + pos: -23.5,15.5 parent: 2 - - uid: 13307 + - uid: 13543 components: - type: Transform - pos: -33.478085,-43.48842 + pos: -22.5,15.5 parent: 2 - - uid: 13308 + - uid: 13544 components: - type: Transform - pos: 18.639523,5.6768303 + pos: -22.5,16.5 parent: 2 - - uid: 13309 + - uid: 13545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5059824,-44.363564 + pos: -21.5,16.5 parent: 2 -- proto: CableMVStack1 - entities: - - uid: 13310 + - uid: 13546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.67206,-13.043121 + pos: -20.5,16.5 parent: 2 - - uid: 13311 + - uid: 13547 components: - type: Transform - pos: 11.522146,57.480194 + pos: 5.5,31.5 parent: 2 - - uid: 13312 + - uid: 13548 components: - type: Transform - pos: 19.473022,57.45762 + pos: 5.5,32.5 parent: 2 - - uid: 13313 + - uid: 13549 components: - type: Transform - pos: -43.510696,-46.459023 + pos: 5.5,33.5 parent: 2 - - uid: 13314 + - uid: 13550 components: - type: Transform - pos: -46.541946,-46.505898 + pos: 6.5,33.5 parent: 2 - - uid: 13315 + - uid: 13551 components: - type: Transform - pos: -41.448196,-44.459023 + pos: -44.5,23.5 parent: 2 - - uid: 13316 + - uid: 13552 components: - type: Transform - pos: -41.46382,-37.483932 + pos: -44.5,24.5 parent: 2 - - uid: 13317 + - uid: 13553 components: - type: Transform - pos: -46.46382,-34.530807 + pos: -44.5,26.5 parent: 2 - - uid: 13318 + - uid: 13554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.506134,25.309536 + pos: -44.5,27.5 parent: 2 -- proto: CableMVStack10 - entities: - - uid: 13319 + - uid: 13555 components: - type: Transform - pos: 27.423832,-6.237453 + pos: -26.5,-7.5 parent: 2 - - uid: 13320 + - uid: 13556 components: - type: Transform - pos: 40.551544,-49.563538 + pos: 54.5,-13.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 13321 + - uid: 13557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,65.5 + pos: 56.5,-11.5 parent: 2 - - uid: 13322 + - uid: 13558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,64.5 + pos: 52.5,-13.5 parent: 2 - - uid: 13323 + - uid: 13559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,14.5 + pos: 24.5,8.5 parent: 2 - - uid: 13324 + - uid: 13560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-41.5 + pos: 58.5,-15.5 parent: 2 - - uid: 13325 + - uid: 13561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-41.5 + pos: 26.5,8.5 parent: 2 - - uid: 13326 + - uid: 13562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-40.5 + pos: 25.5,8.5 parent: 2 - - uid: 13327 + - uid: 13563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 + pos: 29.5,8.5 parent: 2 - - uid: 13328 + - uid: 13564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-38.5 + pos: 28.5,8.5 parent: 2 - - uid: 13329 + - uid: 13565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-38.5 + pos: 55.5,-13.5 parent: 2 - - uid: 13330 + - uid: 13566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-39.5 + pos: 55.5,-12.5 parent: 2 - - uid: 13331 + - uid: 13567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 + pos: 53.5,-13.5 parent: 2 - - uid: 13332 + - uid: 13568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-42.5 + pos: 27.5,8.5 parent: 2 - - uid: 13333 + - uid: 13569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,54.5 + pos: -20.5,58.5 parent: 2 - - uid: 13334 + - uid: 13570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-49.5 + pos: -106.5,45.5 parent: 2 - - uid: 13335 + - uid: 13571 components: - type: Transform - pos: -18.5,58.5 + pos: -106.5,43.5 parent: 2 - - uid: 13336 + - uid: 13572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -132.5,11.5 + pos: -106.5,42.5 parent: 2 - - uid: 13337 + - uid: 13573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,63.5 + pos: -106.5,44.5 parent: 2 - - uid: 40978 + - uid: 13574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,58.5 - parent: 40203 - - uid: 40979 + pos: -105.5,42.5 + parent: 2 + - uid: 13575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,58.5 - parent: 40203 - - uid: 40980 + pos: -104.5,42.5 + parent: 2 + - uid: 13576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,48.5 - parent: 40203 - - uid: 40981 + pos: -103.5,42.5 + parent: 2 + - uid: 41161 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,48.5 - parent: 40203 -- proto: Candle - entities: - - uid: 13338 + pos: 68.5,58.5 + parent: 40599 + - uid: 41162 components: - type: Transform - pos: 28.33508,15.643229 - parent: 2 - - uid: 13339 + pos: 68.5,59.5 + parent: 40599 + - uid: 41163 components: - type: Transform - pos: 29.582893,23.610386 - parent: 2 -- proto: CandleBlack - entities: - - uid: 13340 + pos: 67.5,59.5 + parent: 40599 + - uid: 41164 components: - type: Transform - pos: -43.506046,27.7493 - parent: 2 -- proto: CandleBlackInfinite - entities: - - uid: 13341 + pos: 67.5,60.5 + parent: 40599 + - uid: 41165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.629932,33.736057 - parent: 2 - - uid: 13342 + pos: 67.5,61.5 + parent: 40599 + - uid: 41166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.20285,33.788143 - parent: 2 - - uid: 13343 + pos: 67.5,62.5 + parent: 40599 + - uid: 41167 components: - type: Transform - pos: 39.195396,13.50923 - parent: 2 - - uid: 13344 + pos: 67.5,64.5 + parent: 40599 + - uid: 41168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.9237931,19.850683 - parent: 2 - - uid: 13345 + pos: 67.5,65.5 + parent: 40599 + - uid: 41169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.3591,31.840223 - parent: 2 - - uid: 13346 + pos: 67.5,63.5 + parent: 40599 + - uid: 41170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.4216,33.444393 - parent: 2 - - uid: 13347 + pos: 68.5,61.5 + parent: 40599 + - uid: 41171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.24452,31.392307 - parent: 2 - - uid: 13348 + pos: 69.5,61.5 + parent: 40599 + - uid: 41172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.68202,31.371473 - parent: 2 - - uid: 13349 + pos: 65.5,67.5 + parent: 40599 + - uid: 41173 components: - type: Transform - pos: -99.7553,51.86091 - parent: 2 - - uid: 13350 + pos: 68.5,66.5 + parent: 40599 + - uid: 41174 components: - type: Transform - pos: -103.794,45.20832 - parent: 2 - - uid: 13351 + pos: 68.5,68.5 + parent: 40599 + - uid: 41175 components: - type: Transform - pos: -97.18357,42.22115 - parent: 2 - - uid: 13352 + pos: 68.5,69.5 + parent: 40599 + - uid: 41176 components: - type: Transform - pos: -35.44418,23.62758 - parent: 2 - - uid: 40982 + pos: 68.5,70.5 + parent: 40599 + - uid: 41177 components: - type: Transform - pos: 31.671791,29.68249 - parent: 40203 -- proto: CandleBlackSmall - entities: - - uid: 13354 + pos: 68.5,71.5 + parent: 40599 + - uid: 41178 components: - type: Transform - pos: 32.427605,20.725168 - parent: 2 - - uid: 13355 + pos: 68.5,72.5 + parent: 40599 + - uid: 41179 components: - type: Transform - pos: -38.529564,23.53055 - parent: 2 - - uid: 13356 + pos: 68.5,73.5 + parent: 40599 + - uid: 41180 components: - type: Transform - pos: -43.693546,27.6868 - parent: 2 - - uid: 13357 + pos: 68.5,74.5 + parent: 40599 + - uid: 41181 components: - type: Transform - pos: -43.51646,27.551382 - parent: 2 - - uid: 13358 + pos: 68.5,67.5 + parent: 40599 + - uid: 41182 components: - type: Transform - pos: -38.82123,26.790966 - parent: 2 -- proto: CandleBlackSmallInfinite - entities: - - uid: 13359 + pos: 68.5,75.5 + parent: 40599 + - uid: 41183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.21162,-2.189506 - parent: 2 - - uid: 13360 + pos: 67.5,75.5 + parent: 40599 + - uid: 41184 components: - type: Transform - pos: 42.652824,9.90967 - parent: 2 - - uid: 13361 + pos: 66.5,75.5 + parent: 40599 + - uid: 41185 components: - type: Transform - pos: -35.60043,23.56508 - parent: 2 - - uid: 13362 + pos: 65.5,75.5 + parent: 40599 + - uid: 41186 components: - type: Transform - pos: -38.66293,23.705706 - parent: 2 - - uid: 13363 + pos: 64.5,75.5 + parent: 40599 + - uid: 41187 components: - type: Transform - pos: -38.1754,26.415966 - parent: 2 - - uid: 13364 + pos: 63.5,75.5 + parent: 40599 + - uid: 41188 components: - type: Transform - pos: -43.73365,26.624731 - parent: 2 - - uid: 40983 + pos: 62.5,75.5 + parent: 40599 + - uid: 41189 components: - type: Transform - pos: 32.624916,32.541862 - parent: 40203 -- proto: CandleBlue - entities: - - uid: 13365 + pos: 61.5,75.5 + parent: 40599 + - uid: 41190 components: - type: Transform - pos: 25.59786,15.582851 - parent: 2 - - uid: 13366 + pos: 60.5,75.5 + parent: 40599 + - uid: 41191 components: - type: Transform - pos: 32.208855,20.631418 - parent: 2 -- proto: CandleBlueInfinite - entities: - - uid: 13367 + pos: 59.5,75.5 + parent: 40599 + - uid: 41192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.11787,-2.048881 - parent: 2 - - uid: 13368 + pos: 58.5,75.5 + parent: 40599 + - uid: 41193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.66386,-15.948029 - parent: 2 -- proto: CandleBlueSmallInfinite - entities: - - uid: 13369 + pos: 57.5,75.5 + parent: 40599 + - uid: 41194 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.26754308,20.647558 - parent: 2 - - uid: 13370 + pos: 56.5,75.5 + parent: 40599 + - uid: 41195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.49198,-15.979279 - parent: 2 -- proto: CandleGreenInfinite - entities: - - uid: 13371 + pos: 69.5,72.5 + parent: 40599 + - uid: 41196 components: - type: Transform - pos: 38.64917,-3.527566 - parent: 2 - - uid: 13372 + pos: 70.5,72.5 + parent: 40599 + - uid: 41197 components: - type: Transform - pos: 39.226646,13.681105 - parent: 2 - - uid: 13373 + pos: 72.5,72.5 + parent: 40599 + - uid: 41198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.168766,-9.260132 - parent: 2 - - uid: 13374 + pos: 71.5,72.5 + parent: 40599 + - uid: 41199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.46564,-12.150757 - parent: 2 - - uid: 13375 + pos: 72.5,73.5 + parent: 40599 + - uid: 41200 components: - type: Transform - pos: -134.80487,10.189709 - parent: 2 - - uid: 40984 + pos: 72.5,74.5 + parent: 40599 + - uid: 41201 components: - type: Transform - pos: 45.4122,26.074556 - parent: 40203 - - uid: 40985 + pos: 72.5,76.5 + parent: 40599 + - uid: 41202 components: - type: Transform - pos: 45.5997,23.871431 - parent: 40203 -- proto: CandleGreenSmall - entities: - - uid: 13376 + pos: 72.5,77.5 + parent: 40599 + - uid: 41203 components: - type: Transform - pos: 29.411018,23.610386 - parent: 2 -- proto: CandleGreenSmallInfinite - entities: - - uid: 40986 + pos: 72.5,75.5 + parent: 40599 + - uid: 41204 components: - type: Transform - pos: 43.209076,28.840181 - parent: 40203 -- proto: CandleInfinite - entities: - - uid: 13377 + pos: 73.5,77.5 + parent: 40599 + - uid: 41205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.56946,-3.3373742 - parent: 2 - - uid: 13378 + pos: 74.5,77.5 + parent: 40599 + - uid: 41206 components: - type: Transform - pos: 39.307262,9.831545 - parent: 2 - - uid: 13379 + pos: 74.5,78.5 + parent: 40599 + - uid: 41207 components: - type: Transform - pos: -46.2827,34.43939 - parent: 2 - - uid: 13380 + pos: 75.5,78.5 + parent: 40599 + - uid: 41208 components: - type: Transform - pos: -64.48851,25.368195 - parent: 2 - - uid: 13381 + pos: 69.5,70.5 + parent: 40599 + - uid: 41209 components: - type: Transform - pos: 57.30376,-26.458227 - parent: 2 - - uid: 13382 + pos: 70.5,70.5 + parent: 40599 + - uid: 41210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.14605618,19.553808 - parent: 2 - - uid: 13383 + pos: 56.5,76.5 + parent: 40599 + - uid: 41211 components: - type: Transform - pos: -131.74237,10.189709 - parent: 2 - - uid: 13384 + pos: 56.5,77.5 + parent: 40599 + - uid: 41212 components: - type: Transform - pos: -38.1013,36.025253 - parent: 2 -- proto: CandlePurple - entities: - - uid: 13386 + pos: 56.5,78.5 + parent: 40599 + - uid: 41213 components: - type: Transform - pos: 25.72286,15.629726 - parent: 2 - - uid: 45093 + pos: 56.5,79.5 + parent: 40599 + - uid: 41214 components: - type: Transform - pos: 4.521971,4.3634686 - parent: 44970 - - uid: 45094 + pos: 55.5,79.5 + parent: 40599 + - uid: 41215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5156653,4.512197 - parent: 44970 -- proto: CandlePurpleInfinite - entities: - - uid: 13387 + pos: 54.5,79.5 + parent: 40599 + - uid: 41216 components: - type: Transform - pos: 42.52721,9.81592 - parent: 2 - - uid: 45095 + pos: 54.5,80.5 + parent: 40599 + - uid: 41217 components: - type: Transform - pos: 4.3032217,4.4728436 - parent: 44970 - - uid: 45096 + pos: 65.5,68.5 + parent: 40599 + - uid: 41218 components: - type: Transform - pos: 4.600096,2.6290936 - parent: 44970 - - uid: 45097 + pos: 65.5,69.5 + parent: 40599 + - uid: 41219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4843347,4.668447 - parent: 44970 -- proto: CandlePurpleSmall - entities: - - uid: 45098 + pos: 65.5,66.5 + parent: 40599 + - uid: 41220 components: - type: Transform - pos: 4.3813467,2.8009686 - parent: 44970 - - uid: 45099 + pos: 66.5,66.5 + parent: 40599 + - uid: 41221 components: - type: Transform - pos: 4.4750967,3.0509686 - parent: 44970 - - uid: 45100 + pos: 67.5,66.5 + parent: 40599 + - uid: 41222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.3594153,4.652822 - parent: 44970 - - uid: 45101 + pos: 64.5,69.5 + parent: 40599 + - uid: 41223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.6874597,4.699697 - parent: 44970 - - uid: 45102 + pos: 63.5,69.5 + parent: 40599 + - uid: 41224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4530847,4.527822 - parent: 44970 -- proto: CandlePurpleSmallInfinite - entities: - - uid: 13388 + pos: 62.5,69.5 + parent: 40599 + - uid: 41225 components: - type: Transform - pos: 39.43346,9.78467 - parent: 2 - - uid: 13389 + pos: 61.5,69.5 + parent: 40599 + - uid: 41226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.38196,-3.3686242 - parent: 2 - - uid: 13390 + pos: 60.5,69.5 + parent: 40599 + - uid: 41227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.325016,-9.150757 - parent: 2 - - uid: 13391 + pos: 59.5,69.5 + parent: 40599 + - uid: 41228 components: - type: Transform - pos: 58.64751,-26.630102 - parent: 2 - - uid: 13392 + pos: 58.5,69.5 + parent: 40599 + - uid: 41229 components: - type: Transform - pos: -134.5705,10.142834 - parent: 2 - - uid: 13393 + pos: 57.5,69.5 + parent: 40599 + - uid: 41230 components: - type: Transform - pos: -132.258,8.361584 - parent: 2 - - uid: 45103 + pos: 56.5,69.5 + parent: 40599 + - uid: 41231 components: - type: Transform - pos: 4.363899,4.345338 - parent: 44970 - - uid: 45104 + pos: 55.5,69.5 + parent: 40599 + - uid: 41232 components: - type: Transform - pos: 1.4420245,4.845338 - parent: 44970 -- proto: CandleRedInfinite - entities: - - uid: 13394 + pos: 55.5,68.5 + parent: 40599 + - uid: 41233 components: - type: Transform - pos: 88.49962,-27.184748 - parent: 2 - - uid: 13395 + pos: 55.5,67.5 + parent: 40599 + - uid: 41234 components: - type: Transform - pos: 58.24126,-27.645727 - parent: 2 - - uid: 13396 + pos: 55.5,66.5 + parent: 40599 + - uid: 41235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.41386,-15.885529 - parent: 2 - - uid: 13397 + pos: 61.5,68.5 + parent: 40599 + - uid: 41236 components: - type: Transform - pos: -127.142395,-15.760302 - parent: 2 -- proto: CandleRedSmall - entities: - - uid: 13398 + pos: 61.5,67.5 + parent: 40599 + - uid: 41237 components: - type: Transform - pos: 29.567268,23.40726 - parent: 2 -- proto: CandleSmall - entities: - - uid: 13399 + pos: 54.5,66.5 + parent: 40599 + - uid: 41238 components: - type: Transform - pos: 32.66198,20.584543 - parent: 2 -- proto: CannabisSeeds - entities: - - uid: 13400 + pos: 53.5,66.5 + parent: 40599 + - uid: 41239 components: - type: Transform - pos: 82.73795,5.689642 - parent: 2 - - uid: 13401 + pos: 52.5,66.5 + parent: 40599 + - uid: 41240 components: - type: Transform - pos: 82.5178,5.5917974 - parent: 2 - - uid: 13402 + pos: 50.5,66.5 + parent: 40599 + - uid: 41241 components: - type: Transform - pos: 82.728455,5.094248 - parent: 2 - - uid: 13403 + pos: 49.5,66.5 + parent: 40599 + - uid: 41242 components: - type: Transform - pos: -113.40921,32.579285 - parent: 2 -- proto: CapacitorStockPart - entities: - - uid: 13404 + pos: 48.5,66.5 + parent: 40599 + - uid: 41243 components: - type: Transform - pos: 4.3175044,15.408846 - parent: 2 - - uid: 13405 + pos: 47.5,66.5 + parent: 40599 + - uid: 41244 components: - type: Transform - pos: 4.3956294,15.565096 - parent: 2 - - uid: 13406 + pos: 46.5,66.5 + parent: 40599 + - uid: 41245 components: - type: Transform - pos: 11.10956,-12.761871 - parent: 2 - - uid: 13407 + pos: 45.5,66.5 + parent: 40599 + - uid: 41246 components: - type: Transform - pos: 27.443117,-5.5743117 - parent: 2 - - uid: 13408 + pos: 44.5,66.5 + parent: 40599 + - uid: 41247 components: - type: Transform - pos: 45.35565,-49.376072 - parent: 2 - - uid: 13409 + pos: 51.5,66.5 + parent: 40599 + - uid: 41248 components: - type: Transform - pos: 18.764523,6.3330803 - parent: 2 -- proto: CaptainIDCard - entities: - - uid: 13410 + pos: 51.5,65.5 + parent: 40599 + - uid: 41249 components: - type: Transform - pos: 18.481169,-12.181192 - parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 13411 + pos: 51.5,64.5 + parent: 40599 + - uid: 41250 components: - type: Transform - pos: -10.5,-68.5 - parent: 2 - - type: GasCanister - releaseValve: True - releasePressure: 100 - - type: Lock - locked: False - - uid: 13412 + pos: 51.5,62.5 + parent: 40599 + - uid: 41251 components: - type: Transform - pos: 47.5,-48.5 - parent: 2 - - uid: 13413 + pos: 51.5,61.5 + parent: 40599 + - uid: 41252 components: - type: Transform - pos: -7.5,-55.5 - parent: 2 -- proto: CargoRequestComputerCircuitboard - entities: - - uid: 13414 + pos: 51.5,60.5 + parent: 40599 + - uid: 41253 components: - type: Transform - pos: 14.400549,11.507145 - parent: 2 -- proto: Carpet - entities: - - uid: 13415 + pos: 51.5,59.5 + parent: 40599 + - uid: 41254 components: - type: Transform - pos: -43.5,-19.5 - parent: 2 - - uid: 13416 + pos: 51.5,58.5 + parent: 40599 + - uid: 41255 components: - type: Transform - pos: -43.5,-18.5 - parent: 2 - - uid: 13417 + pos: 51.5,57.5 + parent: 40599 + - uid: 41256 components: - type: Transform - pos: 3.5,64.5 - parent: 2 - - uid: 13418 + pos: 51.5,56.5 + parent: 40599 + - uid: 41257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - - uid: 13419 + pos: 51.5,63.5 + parent: 40599 + - uid: 41258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - uid: 13420 + pos: 51.5,55.5 + parent: 40599 + - uid: 41259 components: - type: Transform - pos: 28.5,19.5 - parent: 2 - - uid: 13421 + pos: 51.5,54.5 + parent: 40599 + - uid: 41260 components: - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 13422 + pos: 51.5,53.5 + parent: 40599 + - uid: 41261 components: - type: Transform - pos: 29.5,22.5 - parent: 2 - - uid: 13423 + pos: 51.5,52.5 + parent: 40599 + - uid: 41262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 2 - - uid: 13424 + pos: 52.5,52.5 + parent: 40599 + - uid: 41263 components: - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 13425 + pos: 53.5,52.5 + parent: 40599 + - uid: 41264 components: - type: Transform - pos: 29.5,24.5 - parent: 2 - - uid: 13426 + pos: 55.5,52.5 + parent: 40599 + - uid: 41265 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,21.5 - parent: 2 - - uid: 13427 + pos: 56.5,52.5 + parent: 40599 + - uid: 41266 components: - type: Transform - pos: 29.5,23.5 - parent: 2 - - uid: 13428 + pos: 57.5,52.5 + parent: 40599 + - uid: 41267 components: - type: Transform - pos: 28.5,22.5 - parent: 2 - - uid: 13429 + pos: 58.5,52.5 + parent: 40599 + - uid: 41268 components: - type: Transform - pos: 29.5,19.5 - parent: 2 - - uid: 13430 + pos: 54.5,52.5 + parent: 40599 + - uid: 41269 components: - type: Transform - pos: 29.5,20.5 - parent: 2 - - uid: 13431 + pos: 58.5,53.5 + parent: 40599 + - uid: 41270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - uid: 13432 + pos: 58.5,54.5 + parent: 40599 + - uid: 41271 components: - type: Transform - pos: 33.5,20.5 - parent: 2 - - uid: 13433 + pos: 58.5,55.5 + parent: 40599 + - uid: 41272 components: - type: Transform - pos: 32.5,20.5 - parent: 2 - - uid: 13434 + pos: 57.5,55.5 + parent: 40599 + - uid: 41273 components: - type: Transform - pos: 32.5,24.5 - parent: 2 - - uid: 13435 + pos: 57.5,56.5 + parent: 40599 + - uid: 41274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,24.5 - parent: 2 - - uid: 13436 + pos: 57.5,57.5 + parent: 40599 + - uid: 41275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - - uid: 13437 + pos: 57.5,58.5 + parent: 40599 + - uid: 41276 components: - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 13438 + pos: 59.5,52.5 + parent: 40599 + - uid: 41277 components: - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 13439 + pos: 59.5,51.5 + parent: 40599 + - uid: 41278 components: - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 13440 + pos: 59.5,49.5 + parent: 40599 + - uid: 41279 components: - type: Transform - pos: 32.5,23.5 - parent: 2 - - uid: 13441 + pos: 59.5,48.5 + parent: 40599 + - uid: 41280 components: - type: Transform - pos: 33.5,23.5 - parent: 2 - - uid: 13442 + pos: 59.5,50.5 + parent: 40599 + - uid: 41281 components: - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 13443 + pos: 52.5,48.5 + parent: 40599 + - uid: 41282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 2 - - uid: 13444 + pos: 53.5,48.5 + parent: 40599 + - uid: 41283 components: - type: Transform - pos: 28.5,20.5 - parent: 2 - - uid: 13445 + pos: 54.5,48.5 + parent: 40599 + - uid: 41284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,8.5 - parent: 2 - - uid: 13446 + pos: 55.5,48.5 + parent: 40599 + - uid: 41285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,9.5 - parent: 2 - - uid: 13447 + pos: 56.5,48.5 + parent: 40599 + - uid: 41286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,9.5 - parent: 2 - - uid: 13448 + pos: 57.5,48.5 + parent: 40599 + - uid: 41287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 - parent: 2 - - uid: 13449 + pos: 58.5,48.5 + parent: 40599 + - uid: 41288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,8.5 - parent: 2 - - uid: 13450 + pos: 52.5,47.5 + parent: 40599 + - uid: 41289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,8.5 - parent: 2 - - uid: 13451 + pos: 52.5,46.5 + parent: 40599 + - uid: 41290 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-35.5 - parent: 2 - - uid: 13452 + pos: 52.5,45.5 + parent: 40599 + - uid: 41291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-35.5 - parent: 2 - - uid: 13453 + pos: 52.5,44.5 + parent: 40599 + - uid: 41292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 2 - - uid: 13454 + pos: 52.5,61.5 + parent: 40599 + - uid: 41293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 2 - - uid: 13455 + pos: 54.5,61.5 + parent: 40599 + - uid: 41294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 2 - - uid: 13456 + pos: 53.5,61.5 + parent: 40599 + - uid: 41295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 2 - - uid: 13457 + pos: 55.5,61.5 + parent: 40599 + - uid: 41296 components: - type: Transform - pos: 40.5,10.5 - parent: 2 - - uid: 13458 + pos: 56.5,61.5 + parent: 40599 + - uid: 41297 components: - type: Transform - pos: 41.5,10.5 - parent: 2 - - uid: 13459 + pos: 56.5,62.5 + parent: 40599 + - uid: 41298 components: - type: Transform - pos: 40.5,9.5 - parent: 2 - - uid: 13460 + pos: 57.5,62.5 + parent: 40599 + - uid: 41299 components: - type: Transform - pos: 41.5,9.5 - parent: 2 - - uid: 13461 + pos: 57.5,63.5 + parent: 40599 + - uid: 41300 components: - type: Transform - pos: 39.5,10.5 - parent: 2 - - uid: 13462 + pos: 57.5,64.5 + parent: 40599 + - uid: 41301 components: - type: Transform - pos: 39.5,9.5 - parent: 2 - - uid: 13463 + pos: 46.5,67.5 + parent: 40599 + - uid: 41302 components: - type: Transform - pos: 42.5,10.5 - parent: 2 - - uid: 13464 + pos: 43.5,66.5 + parent: 40599 + - uid: 41303 components: - type: Transform - pos: 42.5,9.5 - parent: 2 - - uid: 13465 + pos: 42.5,66.5 + parent: 40599 + - uid: 41304 components: - type: Transform - pos: -43.5,7.5 - parent: 2 - - uid: 13466 + pos: 41.5,66.5 + parent: 40599 + - uid: 41305 components: - type: Transform - pos: -42.5,7.5 - parent: 2 - - uid: 13467 + pos: 39.5,66.5 + parent: 40599 + - uid: 41306 components: - type: Transform - pos: -41.5,7.5 - parent: 2 - - uid: 13468 + pos: 38.5,66.5 + parent: 40599 + - uid: 41307 components: - type: Transform - pos: -41.5,6.5 - parent: 2 - - uid: 13469 + pos: 37.5,66.5 + parent: 40599 + - uid: 41308 components: - type: Transform - pos: -42.5,6.5 - parent: 2 - - uid: 13470 + pos: 36.5,66.5 + parent: 40599 + - uid: 41309 components: - type: Transform - pos: -43.5,6.5 - parent: 2 - - uid: 13471 + pos: 35.5,66.5 + parent: 40599 + - uid: 41310 components: - type: Transform - pos: 2.5,65.5 - parent: 2 - - uid: 13472 + pos: 34.5,66.5 + parent: 40599 + - uid: 41311 components: - type: Transform - pos: 2.5,64.5 - parent: 2 - - uid: 13473 + pos: 33.5,66.5 + parent: 40599 + - uid: 41312 components: - type: Transform - pos: 3.5,65.5 - parent: 2 - - uid: 13474 + pos: 40.5,66.5 + parent: 40599 + - uid: 41313 components: - type: Transform - pos: 1.5,65.5 - parent: 2 - - uid: 13475 + pos: 32.5,66.5 + parent: 40599 + - uid: 41314 components: - type: Transform - pos: 1.5,64.5 - parent: 2 - - uid: 13476 + pos: 30.5,66.5 + parent: 40599 + - uid: 41315 components: - type: Transform - pos: -42.5,-19.5 - parent: 2 - - uid: 13477 + pos: 31.5,66.5 + parent: 40599 + - uid: 41316 components: - type: Transform - pos: 6.5,19.5 - parent: 2 - - uid: 13478 + pos: 36.5,65.5 + parent: 40599 + - uid: 41317 components: - type: Transform - pos: -42.5,-18.5 - parent: 2 - - uid: 13479 + pos: 36.5,64.5 + parent: 40599 + - uid: 41318 components: - type: Transform - pos: 6.5,21.5 - parent: 2 - - uid: 13480 + pos: 36.5,63.5 + parent: 40599 + - uid: 41319 components: - type: Transform - pos: 7.5,19.5 - parent: 2 - - uid: 13481 + pos: 35.5,63.5 + parent: 40599 + - uid: 41320 components: - type: Transform - pos: 7.5,20.5 - parent: 2 - - uid: 13482 + pos: 36.5,62.5 + parent: 40599 + - uid: 41321 components: - type: Transform - pos: 6.5,20.5 - parent: 2 - - uid: 13483 + pos: 36.5,61.5 + parent: 40599 + - uid: 41322 components: - type: Transform - pos: 7.5,21.5 - parent: 2 - - uid: 13484 + pos: 37.5,61.5 + parent: 40599 + - uid: 41323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,11.5 - parent: 2 - - uid: 13485 + pos: 38.5,61.5 + parent: 40599 + - uid: 41324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,8.5 - parent: 2 - - uid: 13486 + pos: 39.5,61.5 + parent: 40599 + - uid: 41325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,9.5 - parent: 2 - - uid: 13487 + pos: 39.5,62.5 + parent: 40599 + - uid: 41326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,10.5 - parent: 2 - - uid: 13488 + pos: 39.5,60.5 + parent: 40599 + - uid: 41327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,11.5 - parent: 2 - - uid: 13489 + pos: 33.5,71.5 + parent: 40599 + - uid: 41328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,7.5 - parent: 2 - - uid: 13490 + pos: 33.5,70.5 + parent: 40599 + - uid: 41329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,10.5 - parent: 2 - - uid: 13491 + pos: 33.5,69.5 + parent: 40599 + - uid: 41330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,9.5 - parent: 2 - - uid: 13492 + pos: 33.5,72.5 + parent: 40599 + - uid: 41331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,8.5 - parent: 2 - - uid: 13493 + pos: 34.5,72.5 + parent: 40599 + - uid: 41332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,7.5 - parent: 2 -- proto: CarpetBlack - entities: - - uid: 13494 + pos: 35.5,72.5 + parent: 40599 + - uid: 41333 components: - type: Transform - pos: 0.5,-20.5 - parent: 2 - - uid: 13495 + pos: 44.5,73.5 + parent: 40599 + - uid: 41334 components: - type: Transform - pos: 87.5,-27.5 - parent: 2 - - uid: 13496 + pos: 44.5,72.5 + parent: 40599 + - uid: 41335 components: - type: Transform - pos: -24.5,5.5 - parent: 2 - - uid: 13497 + pos: 44.5,70.5 + parent: 40599 + - uid: 41336 components: - type: Transform - pos: -24.5,4.5 - parent: 2 - - uid: 13498 + pos: 44.5,69.5 + parent: 40599 + - uid: 41337 components: - type: Transform - pos: -25.5,5.5 - parent: 2 - - uid: 13499 + pos: 44.5,68.5 + parent: 40599 + - uid: 41338 components: - type: Transform - pos: -25.5,4.5 - parent: 2 - - uid: 13500 + pos: 44.5,67.5 + parent: 40599 + - uid: 41339 components: - type: Transform - pos: -26.5,5.5 - parent: 2 - - uid: 13501 + pos: 44.5,71.5 + parent: 40599 + - uid: 41340 components: - type: Transform - pos: -26.5,4.5 - parent: 2 - - uid: 13502 + pos: 44.5,74.5 + parent: 40599 + - uid: 41341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-31.5 - parent: 2 - - uid: 13503 + pos: 43.5,74.5 + parent: 40599 + - uid: 41342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 2 - - uid: 13504 + pos: 43.5,75.5 + parent: 40599 + - uid: 41343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-32.5 - parent: 2 - - uid: 13505 + pos: 43.5,76.5 + parent: 40599 + - uid: 41344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-32.5 - parent: 2 - - uid: 13506 + pos: 43.5,77.5 + parent: 40599 + - uid: 41345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-32.5 - parent: 2 - - uid: 13507 + pos: 43.5,78.5 + parent: 40599 + - uid: 41346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-32.5 - parent: 2 - - uid: 13508 + pos: 44.5,76.5 + parent: 40599 + - uid: 41347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-32.5 - parent: 2 - - uid: 13509 + pos: 45.5,76.5 + parent: 40599 + - uid: 41348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-31.5 - parent: 2 - - uid: 13510 + pos: 46.5,76.5 + parent: 40599 + - uid: 41349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-31.5 - parent: 2 - - uid: 13511 + pos: 42.5,78.5 + parent: 40599 + - uid: 41350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-31.5 - parent: 2 - - uid: 13512 + pos: 41.5,78.5 + parent: 40599 + - uid: 41351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-33.5 - parent: 2 - - uid: 13513 + pos: 39.5,78.5 + parent: 40599 + - uid: 41352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-33.5 - parent: 2 - - uid: 13514 + pos: 38.5,78.5 + parent: 40599 + - uid: 41353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-33.5 - parent: 2 - - uid: 13515 + pos: 37.5,78.5 + parent: 40599 + - uid: 41354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-33.5 - parent: 2 - - uid: 13516 + pos: 40.5,78.5 + parent: 40599 + - uid: 41355 components: - type: Transform - pos: 88.5,-27.5 - parent: 2 - - uid: 13517 + pos: 37.5,77.5 + parent: 40599 + - uid: 41356 components: - type: Transform - pos: 88.5,-28.5 - parent: 2 - - uid: 13518 + pos: 37.5,76.5 + parent: 40599 + - uid: 41357 components: - type: Transform - pos: 87.5,-28.5 - parent: 2 - - uid: 13519 + pos: 37.5,75.5 + parent: 40599 + - uid: 41358 components: - type: Transform - pos: 89.5,-25.5 - parent: 2 - - uid: 13520 + pos: 37.5,74.5 + parent: 40599 + - uid: 41359 components: - type: Transform - pos: 90.5,-25.5 - parent: 2 - - uid: 13521 + pos: 38.5,74.5 + parent: 40599 + - uid: 41360 components: - type: Transform - pos: 91.5,-25.5 - parent: 2 - - uid: 13522 + pos: 39.5,74.5 + parent: 40599 + - uid: 41361 components: - type: Transform - pos: 91.5,-26.5 - parent: 2 - - uid: 13523 + pos: 39.5,75.5 + parent: 40599 + - uid: 41362 components: - type: Transform - pos: 91.5,-26.5 - parent: 2 - - uid: 13524 + pos: 59.5,47.5 + parent: 40599 + - uid: 41363 components: - type: Transform - pos: 91.5,-27.5 - parent: 2 - - uid: 13525 + pos: 60.5,47.5 + parent: 40599 + - uid: 41364 components: - type: Transform - pos: 91.5,-28.5 - parent: 2 - - uid: 13526 + pos: 51.5,44.5 + parent: 40599 + - uid: 41365 components: - type: Transform - pos: 92.5,-27.5 - parent: 2 - - uid: 13527 + pos: 50.5,44.5 + parent: 40599 + - uid: 41366 components: - type: Transform - pos: 92.5,-26.5 - parent: 2 - - uid: 13528 + pos: 49.5,44.5 + parent: 40599 + - uid: 41367 components: - type: Transform - pos: 90.5,-26.5 - parent: 2 - - uid: 13529 + pos: 49.5,45.5 + parent: 40599 + - uid: 41368 components: - type: Transform - pos: 90.5,-27.5 - parent: 2 - - uid: 13530 + pos: 49.5,46.5 + parent: 40599 + - uid: 41369 components: - type: Transform - pos: 90.5,-28.5 - parent: 2 - - uid: 13531 + pos: 50.5,54.5 + parent: 40599 + - uid: 41370 components: - type: Transform - pos: 90.5,-28.5 - parent: 2 - - uid: 13532 + pos: 49.5,54.5 + parent: 40599 + - uid: 41371 components: - type: Transform - pos: -0.5,-20.5 - parent: 2 - - uid: 13533 + pos: 48.5,54.5 + parent: 40599 + - uid: 41372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-21.5 - parent: 2 - - uid: 13534 + pos: 33.5,68.5 + parent: 40599 + - uid: 41373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 2 - - uid: 13535 + pos: 33.5,67.5 + parent: 40599 + - uid: 45454 components: - type: Transform - pos: -0.5,-21.5 - parent: 2 - - uid: 13536 + pos: 10.5,7.5 + parent: 45355 + - uid: 45455 components: - type: Transform - pos: 0.5,-21.5 - parent: 2 - - uid: 13537 + pos: 9.5,7.5 + parent: 45355 + - uid: 45456 components: - type: Transform - pos: 1.5,18.5 - parent: 2 - - uid: 13538 + pos: 10.5,8.5 + parent: 45355 + - uid: 45457 components: - type: Transform - pos: 37.5,-3.5 - parent: 2 - - uid: 13539 + pos: 10.5,9.5 + parent: 45355 + - uid: 45458 components: - type: Transform - pos: 36.5,-2.5 - parent: 2 - - uid: 13540 + pos: 8.5,7.5 + parent: 45355 + - uid: 45459 components: - type: Transform - pos: 37.5,-2.5 - parent: 2 - - uid: 13541 + pos: 7.5,7.5 + parent: 45355 + - uid: 45460 components: - type: Transform - pos: 36.5,-3.5 - parent: 2 - - uid: 13542 + pos: 6.5,7.5 + parent: 45355 + - uid: 45461 components: - type: Transform - pos: 37.5,-4.5 - parent: 2 - - uid: 13543 + pos: 6.5,6.5 + parent: 45355 + - uid: 45462 components: - type: Transform - pos: 36.5,-4.5 - parent: 2 - - uid: 13544 + pos: 5.5,6.5 + parent: 45355 + - uid: 45463 components: - type: Transform - pos: 0.5,18.5 - parent: 2 - - uid: 13545 + pos: 6.5,8.5 + parent: 45355 + - uid: 45464 components: - type: Transform - pos: 2.5,20.5 - parent: 2 - - uid: 13546 + pos: 5.5,8.5 + parent: 45355 + - uid: 45465 components: - type: Transform - pos: 2.5,21.5 - parent: 2 - - uid: 13547 + pos: 4.5,8.5 + parent: 45355 + - uid: 45466 components: - type: Transform - pos: 2.5,18.5 - parent: 2 - - uid: 13548 + pos: 3.5,8.5 + parent: 45355 + - uid: 45467 components: - type: Transform - pos: -1.5,21.5 - parent: 2 - - uid: 13549 + pos: 2.5,8.5 + parent: 45355 + - uid: 45468 components: - type: Transform - pos: 1.5,21.5 - parent: 2 - - uid: 13550 + pos: 1.5,8.5 + parent: 45355 + - uid: 45469 components: - type: Transform - pos: -1.5,18.5 - parent: 2 - - uid: 13551 + pos: 0.5,8.5 + parent: 45355 + - uid: 45470 components: - type: Transform - pos: -0.5,21.5 - parent: 2 - - uid: 13552 + pos: -0.5,8.5 + parent: 45355 + - uid: 45471 components: - type: Transform - pos: -1.5,20.5 - parent: 2 - - uid: 13553 + pos: -1.5,8.5 + parent: 45355 + - uid: 45472 components: - type: Transform - pos: 0.5,21.5 - parent: 2 - - uid: 13554 + pos: -2.5,8.5 + parent: 45355 + - uid: 45473 components: - type: Transform - pos: 2.5,19.5 - parent: 2 - - uid: 13555 + pos: -3.5,8.5 + parent: 45355 + - uid: 45474 components: - type: Transform - pos: -1.5,19.5 - parent: 2 - - uid: 13556 + pos: -4.5,8.5 + parent: 45355 + - uid: 45475 components: - type: Transform - pos: -0.5,18.5 - parent: 2 - - uid: 13557 + pos: -4.5,7.5 + parent: 45355 + - uid: 45476 components: - type: Transform - pos: 67.5,-42.5 - parent: 2 - - uid: 13558 + pos: -4.5,6.5 + parent: 45355 + - uid: 45477 components: - type: Transform - pos: 65.5,-41.5 - parent: 2 - - uid: 13559 + pos: -5.5,6.5 + parent: 45355 + - uid: 46630 components: - type: Transform - pos: 67.5,-41.5 - parent: 2 - - uid: 13560 + pos: 5.5,8.5 + parent: 46584 + - uid: 46631 components: - type: Transform - pos: 65.5,-42.5 - parent: 2 - - uid: 13561 + pos: 5.5,7.5 + parent: 46584 + - uid: 46632 components: - type: Transform - pos: 66.5,-39.5 - parent: 2 - - uid: 13562 + pos: 4.5,7.5 + parent: 46584 + - uid: 46633 components: - type: Transform - pos: 65.5,-43.5 - parent: 2 - - uid: 13563 + pos: 3.5,7.5 + parent: 46584 + - uid: 46634 components: - type: Transform - pos: 67.5,-40.5 - parent: 2 - - uid: 13564 + pos: 3.5,8.5 + parent: 46584 + - uid: 46635 components: - type: Transform - pos: 67.5,-39.5 - parent: 2 - - uid: 13565 + pos: 3.5,9.5 + parent: 46584 + - uid: 46636 components: - type: Transform - pos: 65.5,-40.5 - parent: 2 - - uid: 13566 + pos: 2.5,9.5 + parent: 46584 + - uid: 46637 components: - type: Transform - pos: 65.5,-39.5 - parent: 2 - - uid: 13567 + pos: 1.5,9.5 + parent: 46584 + - uid: 46638 components: - type: Transform - pos: 65.5,-38.5 - parent: 2 - - uid: 13568 + pos: 0.5,9.5 + parent: 46584 + - uid: 46639 components: - type: Transform - pos: 66.5,-43.5 - parent: 2 - - uid: 13569 + pos: -0.5,9.5 + parent: 46584 + - uid: 46640 components: - type: Transform - pos: 66.5,-40.5 - parent: 2 - - uid: 13570 + pos: -1.5,9.5 + parent: 46584 + - uid: 46641 components: - type: Transform - pos: 66.5,-38.5 - parent: 2 - - uid: 13571 + pos: -2.5,9.5 + parent: 46584 + - uid: 46642 components: - type: Transform - pos: 67.5,-43.5 - parent: 2 - - uid: 13572 + pos: -2.5,11.5 + parent: 46584 + - uid: 46643 components: - type: Transform - pos: 66.5,-41.5 - parent: 2 - - uid: 13573 + pos: -2.5,10.5 + parent: 46584 + - uid: 47264 components: - type: Transform - pos: 67.5,-38.5 - parent: 2 - - uid: 13574 + pos: -0.5,-0.5 + parent: 47245 + - uid: 47265 components: - type: Transform - pos: 66.5,-42.5 - parent: 2 - - uid: 13575 + pos: -2.5,-0.5 + parent: 47245 + - uid: 47266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,29.5 - parent: 2 - - uid: 13576 + pos: -1.5,-0.5 + parent: 47245 + - uid: 47267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,29.5 - parent: 2 + pos: 1.5,-0.5 + parent: 47245 + - uid: 47268 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 47245 + - uid: 47269 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 47245 +- proto: CableMVStack + entities: - uid: 13577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,29.5 + rot: 6.283185307179586 rad + pos: -2.5309815,-38.42832 parent: 2 -- proto: CarpetChapel - entities: - uid: 13578 components: - type: Transform - pos: 24.5,13.5 + pos: -13.328497,-48.377502 parent: 2 - uid: 13579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,13.5 + pos: -33.478085,-43.48842 parent: 2 - uid: 13580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,14.5 + pos: 18.639523,5.6768303 parent: 2 - uid: 13581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,14.5 + rot: 1.5707963267948966 rad + pos: 5.5059824,-44.363564 parent: 2 +- proto: CableMVStack1 + entities: - uid: 13582 components: - type: Transform - pos: 27.5,13.5 + rot: 1.5707963267948966 rad + pos: 11.67206,-13.043121 parent: 2 - uid: 13583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,14.5 + pos: 11.522146,57.480194 parent: 2 - uid: 13584 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,14.5 + pos: 19.473022,57.45762 parent: 2 - uid: 13585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,13.5 + pos: -43.510696,-46.459023 parent: 2 - uid: 13586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,12.5 + pos: -46.541946,-46.505898 parent: 2 - uid: 13587 components: - type: Transform - pos: 24.5,11.5 + pos: -41.448196,-44.459023 parent: 2 - uid: 13588 components: - type: Transform - pos: 27.5,11.5 + pos: -41.46382,-37.483932 parent: 2 - uid: 13589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,11.5 + pos: -46.46382,-34.530807 parent: 2 - uid: 13590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,11.5 + rot: -1.5707963267948966 rad + pos: -44.506134,25.309536 parent: 2 + - uid: 47270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.44070828,-0.5638802 + parent: 47245 +- proto: CableMVStack10 + entities: - uid: 13591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,12.5 + pos: 27.423832,-6.237453 parent: 2 - uid: 13592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,12.5 + pos: 40.551544,-49.563538 parent: 2 +- proto: CableTerminal + entities: - uid: 13593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,12.5 + rot: 1.5707963267948966 rad + pos: -58.5,65.5 parent: 2 -- proto: CarpetCyan - entities: - uid: 13594 components: - type: Transform - pos: 4.5,60.5 + rot: 1.5707963267948966 rad + pos: -58.5,64.5 parent: 2 - uid: 13595 components: - type: Transform - pos: 4.5,61.5 + rot: 3.141592653589793 rad + pos: 0.5,14.5 parent: 2 - uid: 13596 components: - type: Transform - pos: 3.5,61.5 + rot: -1.5707963267948966 rad + pos: -12.5,-41.5 parent: 2 - uid: 13597 components: - type: Transform - pos: 3.5,60.5 + rot: 1.5707963267948966 rad + pos: -16.5,-41.5 parent: 2 - uid: 13598 components: - type: Transform - pos: 2.5,61.5 + rot: 1.5707963267948966 rad + pos: -16.5,-40.5 parent: 2 - uid: 13599 components: - type: Transform - pos: 2.5,60.5 + rot: 1.5707963267948966 rad + pos: -16.5,-39.5 parent: 2 - uid: 13600 components: - type: Transform - pos: 5.5,61.5 + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 parent: 2 - uid: 13601 components: - type: Transform - pos: 5.5,60.5 + rot: -1.5707963267948966 rad + pos: -12.5,-38.5 parent: 2 -- proto: CarpetOrange - entities: - uid: 13602 components: - type: Transform - pos: 7.5,-46.5 + rot: -1.5707963267948966 rad + pos: -12.5,-39.5 parent: 2 - uid: 13603 components: - type: Transform - pos: 7.5,-47.5 + rot: -1.5707963267948966 rad + pos: -12.5,-40.5 parent: 2 - uid: 13604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,24.5 + rot: 1.5707963267948966 rad + pos: -27.5,-42.5 parent: 2 -- proto: CarpetPink - entities: - uid: 13605 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,23.5 + pos: 19.5,54.5 parent: 2 - uid: 13606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,22.5 + rot: 3.141592653589793 rad + pos: -16.5,-49.5 parent: 2 - uid: 13607 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,22.5 + pos: -132.5,11.5 parent: 2 - uid: 13608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,23.5 + rot: 1.5707963267948966 rad + pos: -58.5,63.5 parent: 2 - uid: 13609 components: - type: Transform - pos: -7.5,18.5 + rot: 3.141592653589793 rad + pos: -21.5,59.5 parent: 2 + - uid: 41374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 63.5,58.5 + parent: 40599 + - uid: 41375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,58.5 + parent: 40599 + - uid: 41376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,48.5 + parent: 40599 + - uid: 41377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,48.5 + parent: 40599 + - uid: 46644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 46584 +- proto: Candle + entities: + - uid: 8605 + components: + - type: Transform + parent: 8603 + - type: Physics + canCollide: False - uid: 13610 components: - type: Transform - pos: -4.5,20.5 + pos: 43.004223,-9.75223 parent: 2 - uid: 13611 components: - type: Transform - pos: -4.5,19.5 + rot: -1.5707963267948966 rad + pos: 51.344734,-9.4724045 parent: 2 - uid: 13612 components: - type: Transform - pos: -7.5,19.5 + pos: 42.457348,-9.59598 parent: 2 - uid: 13613 components: - type: Transform - pos: -6.5,18.5 + pos: 42.566723,-11.03348 parent: 2 + - uid: 46952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.9549675,-10.259221 + parent: 46943 + - uid: 46953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.4080925,-10.493596 + parent: 46943 + - uid: 46954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.1112175,-10.415471 + parent: 46943 + - uid: 46955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.9356575,-10.431096 + parent: 46943 + - uid: 46956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.3731575,-10.274846 + parent: 46943 + - uid: 46957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.2794075,-10.493596 + parent: 46943 + - uid: 46958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.7012825,-10.509221 + parent: 46943 + - uid: 46959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.812881,-10.571859 + parent: 46943 + - uid: 46960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.265244,-10.431234 + parent: 46943 + - uid: 46961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.577744,-10.493734 + parent: 46943 +- proto: CandleBlack + entities: - uid: 13614 components: - type: Transform - pos: -5.5,19.5 + pos: -43.506046,27.7493 parent: 2 - uid: 13615 components: - type: Transform - pos: -6.5,19.5 + pos: 50.150005,-5.290017 parent: 2 +- proto: CandleBlackInfinite + entities: - uid: 13616 components: - type: Transform - pos: -5.5,18.5 + rot: 1.5707963267948966 rad + pos: 52.629932,33.736057 parent: 2 - uid: 13617 components: - type: Transform - pos: -4.5,18.5 + rot: 1.5707963267948966 rad + pos: 52.20285,33.788143 parent: 2 - uid: 13618 components: - type: Transform - pos: -7.5,20.5 + pos: 39.195396,13.50923 parent: 2 - uid: 13619 components: - type: Transform - pos: -74.5,14.5 + rot: 3.141592653589793 rad + pos: 0.9237931,19.850683 parent: 2 - uid: 13620 components: - type: Transform - pos: -77.5,12.5 + rot: 1.5707963267948966 rad + pos: 52.3591,31.840223 parent: 2 - uid: 13621 components: - type: Transform - pos: -77.5,13.5 + rot: 1.5707963267948966 rad + pos: 52.4216,33.444393 parent: 2 - uid: 13622 components: - type: Transform - pos: -77.5,14.5 + rot: 1.5707963267948966 rad + pos: 52.24452,31.392307 parent: 2 - uid: 13623 components: - type: Transform - pos: -75.5,12.5 + rot: 1.5707963267948966 rad + pos: 52.68202,31.371473 parent: 2 - uid: 13624 components: - type: Transform - pos: -74.5,12.5 + pos: -35.44418,23.62758 parent: 2 - uid: 13625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,14.5 + rot: 3.141592653589793 rad + pos: 49.83994,-9.783078 parent: 2 - uid: 13626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,12.5 + rot: 3.141592653589793 rad + pos: 47.15244,-9.762245 parent: 2 - uid: 13627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,13.5 + pos: 28.73359,19.450497 parent: 2 - uid: 13628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,13.5 + pos: 7.5874004,29.389618 parent: 2 - uid: 13629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,13.5 + pos: 24.432161,-11.379342 parent: 2 - uid: 13630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,14.5 + pos: -7.6956654,28.195196 parent: 2 - uid: 13631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,14.5 + pos: 91.20832,-25.954231 parent: 2 -- proto: CarpetPurple - entities: - uid: 13632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-57.5 + pos: 102.62304,-25.733027 parent: 2 - uid: 13633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-57.5 + pos: -11.613765,-14.26774 parent: 2 - uid: 13634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-56.5 + pos: -21.59116,-1.7395532 parent: 2 - uid: 13635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-56.5 + rot: -1.5707963267948966 rad + pos: -10.15972,15.275701 parent: 2 + - uid: 41378 + components: + - type: Transform + pos: 31.671791,29.68249 + parent: 40599 +- proto: CandleBlackSmall + entities: - uid: 13636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-57.5 + pos: 32.427605,20.725168 parent: 2 - uid: 13637 components: - type: Transform - pos: 32.5,-11.5 + pos: -38.529564,23.53055 parent: 2 - uid: 13638 components: - type: Transform - pos: 32.5,-10.5 + pos: -43.693546,27.6868 parent: 2 - uid: 13639 components: - type: Transform - pos: 33.5,-10.5 + pos: -43.51646,27.551382 parent: 2 - uid: 13640 components: - type: Transform - pos: 33.5,-11.5 + pos: -38.82123,26.790966 parent: 2 +- proto: CandleBlackSmallInfinite + entities: - uid: 13641 components: - type: Transform - pos: 34.5,-11.5 + rot: 1.5707963267948966 rad + pos: 34.21162,-2.189506 parent: 2 - uid: 13642 components: - type: Transform - pos: 34.5,-10.5 + pos: 42.652824,9.90967 parent: 2 -- proto: CarpetSBlue - entities: - uid: 13643 components: - type: Transform - pos: 13.5,-4.5 + pos: -35.60043,23.56508 parent: 2 - uid: 13644 components: - type: Transform - pos: -6.5,-5.5 + pos: -38.66293,23.705706 parent: 2 - uid: 13645 components: - type: Transform - pos: -5.5,-5.5 + pos: -38.1754,26.415966 parent: 2 - uid: 13646 components: - type: Transform - pos: -4.5,-5.5 + pos: -43.73365,26.624731 parent: 2 - uid: 13647 components: - type: Transform - pos: -4.5,-6.5 + pos: 50.837505,-6.149392 parent: 2 - uid: 13648 components: - type: Transform - pos: -5.5,-6.5 + pos: 32.6838,20.605364 parent: 2 - uid: 13649 components: - type: Transform - pos: -6.5,-6.5 + pos: -12.614968,-28.119486 parent: 2 + - uid: 41379 + components: + - type: Transform + pos: 32.624916,32.541862 + parent: 40599 +- proto: CandleBlueInfinite + entities: - uid: 13650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 + rot: 1.5707963267948966 rad + pos: 34.11787,-2.048881 parent: 2 - uid: 13651 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-11.5 + pos: 93.66386,-15.948029 parent: 2 - uid: 13652 components: - type: Transform - pos: -7.5,-11.5 + pos: -12.802468,-27.85386 parent: 2 - uid: 13653 components: - type: Transform - pos: -6.5,-11.5 + pos: -0.8310176,33.91613 parent: 2 - uid: 13654 components: - type: Transform - pos: 10.5,-3.5 + pos: 15.256672,28.358368 parent: 2 - uid: 13655 components: - type: Transform - pos: 10.5,-4.5 + pos: 15.304453,23.500204 parent: 2 - uid: 13656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-4.5 + pos: 19.418009,-15.751528 parent: 2 - uid: 13657 components: - type: Transform - pos: 9.5,-8.5 + pos: 25.7077,25.868443 parent: 2 - uid: 13658 components: - type: Transform - pos: 10.5,-8.5 + pos: -27.223812,-3.779273 parent: 2 +- proto: CandleBlueSmall + entities: - uid: 13659 components: - type: Transform - pos: 11.5,-8.5 + pos: 50.16563,-6.258767 parent: 2 +- proto: CandleBlueSmallInfinite + entities: - uid: 13660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 + pos: 32.1838,20.745989 parent: 2 - uid: 13661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 + rot: 3.141592653589793 rad + pos: 0.26754308,20.647558 parent: 2 - uid: 13662 components: - type: Transform - pos: 13.5,-3.5 + rot: -1.5707963267948966 rad + pos: 93.49198,-15.979279 parent: 2 - uid: 13663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 + pos: -3.591598,-14.26774 parent: 2 +- proto: CandleGreenInfinite + entities: - uid: 13664 components: - type: Transform - pos: 2.5,43.5 + pos: 38.64917,-3.527566 parent: 2 - uid: 13665 components: - type: Transform - pos: 2.5,44.5 + pos: 39.226646,13.681105 parent: 2 - uid: 13666 components: - type: Transform - pos: 3.5,43.5 + rot: -1.5707963267948966 rad + pos: 32.168766,-9.260132 parent: 2 - uid: 13667 components: - type: Transform - pos: 4.5,44.5 + rot: -1.5707963267948966 rad + pos: 35.46564,-12.150757 parent: 2 - uid: 13668 components: - type: Transform - pos: -15.5,57.5 + pos: -134.80487,10.189709 parent: 2 - uid: 13669 components: - type: Transform - pos: -15.5,59.5 + pos: 49.837505,-5.571267 parent: 2 + - uid: 41380 + components: + - type: Transform + pos: 45.4122,26.074556 + parent: 40599 + - uid: 41381 + components: + - type: Transform + pos: 45.5997,23.871431 + parent: 40599 +- proto: CandleGreenSmallInfinite + entities: - uid: 13670 components: - type: Transform - pos: -15.5,58.5 + pos: 49.94688,-6.086892 parent: 2 - uid: 13671 components: - type: Transform - pos: -14.5,59.5 + pos: -12.239968,-20.681986 parent: 2 - uid: 13672 components: - type: Transform - pos: 4.5,43.5 + pos: 28.57734,19.434872 parent: 2 - uid: 13673 components: - type: Transform - pos: 3.5,44.5 + pos: 15.444172,28.561493 parent: 2 - uid: 13674 components: - type: Transform - pos: -14.5,58.5 + pos: 25.410826,25.868443 parent: 2 - uid: 13675 components: - type: Transform - pos: -13.5,59.5 + pos: -3.310348,-14.377115 parent: 2 - uid: 13676 components: - type: Transform - pos: -13.5,58.5 + rot: -1.5707963267948966 rad + pos: -10.362845,15.478826 parent: 2 - uid: 13677 components: - type: Transform - pos: -15.5,60.5 + pos: 40.214672,22.661491 parent: 2 + - uid: 41382 + components: + - type: Transform + pos: 43.209076,28.840181 + parent: 40599 +- proto: CandleInfinite + entities: - uid: 13678 components: - type: Transform - pos: -14.5,60.5 + pos: -95.6953,35.56126 parent: 2 - uid: 13679 components: - type: Transform - pos: -13.5,60.5 + rot: -1.5707963267948966 rad + pos: 45.20932,-9.326571 parent: 2 - uid: 13680 components: - type: Transform - pos: -14.5,57.5 + pos: 45.59832,-9.583375 parent: 2 - uid: 13681 components: - type: Transform - pos: -13.5,57.5 + rot: 1.5707963267948966 rad + pos: 35.56946,-3.3373742 parent: 2 - uid: 13682 components: - type: Transform - pos: 42.5,48.5 + pos: 39.307262,9.831545 parent: 2 - uid: 13683 components: - type: Transform - pos: 41.5,49.5 + pos: -46.2827,34.43939 parent: 2 - uid: 13684 components: - type: Transform - pos: 42.5,49.5 + pos: -64.48851,25.368195 parent: 2 - uid: 13685 components: - type: Transform - pos: 41.5,48.5 + pos: 57.30376,-26.458227 parent: 2 - uid: 13686 components: - type: Transform - pos: 40.5,49.5 + rot: 3.141592653589793 rad + pos: -0.14605618,19.553808 parent: 2 - uid: 13687 components: - type: Transform - pos: 40.5,48.5 + pos: -131.74237,10.189709 parent: 2 - uid: 13688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,2.5 + pos: -38.1013,36.025253 parent: 2 - uid: 13689 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,4.5 + rot: -1.5707963267948966 rad + pos: 51.719734,-9.243238 parent: 2 - uid: 13690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,3.5 + pos: 43.30013,-9.799105 parent: 2 - uid: 13691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,2.5 + pos: 42.23583,-11.09598 parent: 2 - uid: 13692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,3.5 + pos: 41.89208,-9.37723 parent: 2 - uid: 13693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,4.5 + pos: 5.4062676,-32.339043 parent: 2 -- proto: CarpetWhite - entities: - uid: 13694 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,12.5 + pos: -25.794285,-3.2551782 parent: 2 - uid: 13695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,11.5 + pos: -2.1747675,34.150505 parent: 2 - uid: 13696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,11.5 + pos: 32.444107,27.719032 parent: 2 - uid: 13697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,12.5 + pos: 91.17707,-25.719856 parent: 2 - uid: 13698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,10.5 + rot: -1.5707963267948966 rad + pos: -10.112845,15.525701 parent: 2 - uid: 13699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,10.5 + pos: 40.245922,18.630241 parent: 2 - - uid: 13700 + - uid: 46962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,17.5 - parent: 2 - - uid: 13701 + rot: -1.5707963267948966 rad + pos: 2.4080925,-10.259221 + parent: 46943 + - uid: 46963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,16.5 - parent: 2 - - uid: 13702 + rot: -1.5707963267948966 rad + pos: 2.7518425,-10.493596 + parent: 46943 + - uid: 46964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,16.5 - parent: 2 - - uid: 13703 + rot: -1.5707963267948966 rad + pos: 3.3143425,-10.274846 + parent: 46943 + - uid: 46965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,18.5 - parent: 2 - - uid: 13704 + rot: -1.5707963267948966 rad + pos: 3.7205925,-10.462346 + parent: 46943 + - uid: 46966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,17.5 - parent: 2 - - uid: 13705 + rot: -1.5707963267948966 rad + pos: -1.3419074,-10.196721 + parent: 46943 + - uid: 46967 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,16.5 - parent: 2 - - uid: 13706 + rot: -1.5707963267948966 rad + pos: -1.5450325,-10.556096 + parent: 46943 + - uid: 46968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,18.5 - parent: 2 - - uid: 13707 + rot: -1.5707963267948966 rad + pos: -2.7481575,-10.212346 + parent: 46943 + - uid: 46969 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,17.5 - parent: 2 - - uid: 13708 + rot: -1.5707963267948966 rad + pos: -2.1544075,-10.290471 + parent: 46943 + - uid: 46970 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,18.5 + pos: -3.8030758,6.8636203 + parent: 46943 + - uid: 46971 + components: + - type: Transform + pos: 0.6762818,6.4857335 + parent: 46943 +- proto: CandlePurple + entities: + - uid: 45478 + components: + - type: Transform + pos: 4.521971,4.3634686 + parent: 45355 + - uid: 45479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5156653,4.512197 + parent: 45355 +- proto: CandlePurpleInfinite + entities: + - uid: 13700 + components: + - type: Transform + pos: 42.52721,9.81592 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: 50.32188,-6.508767 + parent: 2 + - uid: 13702 + components: + - type: Transform + pos: 7.2905254,29.264618 + parent: 2 + - uid: 13703 + components: + - type: Transform + pos: 24.260286,-11.269967 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: -6.7243433,-20.681986 + parent: 2 + - uid: 13705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.74741,-3.6301782 + parent: 2 + - uid: 45480 + components: + - type: Transform + pos: 4.3032217,4.4728436 + parent: 45355 + - uid: 45481 + components: + - type: Transform + pos: 4.600096,2.6290936 + parent: 45355 + - uid: 45482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4843347,4.668447 + parent: 45355 +- proto: CandlePurpleSmall + entities: + - uid: 13706 + components: + - type: Transform + pos: 50.38438,-6.524392 + parent: 2 + - uid: 13707 + components: + - type: Transform + pos: -6.8206654,28.382696 + parent: 2 + - uid: 45483 + components: + - type: Transform + pos: 4.3813467,2.8009686 + parent: 45355 + - uid: 45484 + components: + - type: Transform + pos: 4.4750967,3.0509686 + parent: 45355 + - uid: 45485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.3594153,4.652822 + parent: 45355 + - uid: 45486 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.6874597,4.699697 + parent: 45355 + - uid: 45487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4530847,4.527822 + parent: 45355 +- proto: CandlePurpleSmallInfinite + entities: + - uid: 13708 + components: + - type: Transform + pos: 29.583231,23.473902 parent: 2 - uid: 13709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,17.5 + pos: 39.43346,9.78467 parent: 2 - uid: 13710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,18.5 + rot: 1.5707963267948966 rad + pos: 35.38196,-3.3686242 parent: 2 - uid: 13711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,18.5 + rot: -1.5707963267948966 rad + pos: 32.325016,-9.150757 parent: 2 - uid: 13712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,17.5 + pos: 58.64751,-26.630102 parent: 2 - uid: 13713 components: - type: Transform - pos: -70.5,-4.5 + pos: -134.5705,10.142834 parent: 2 - uid: 13714 components: - type: Transform - pos: -69.5,-3.5 + pos: -132.258,8.361584 parent: 2 - uid: 13715 components: - type: Transform - pos: -69.5,-2.5 + pos: -79.751396,15.2047205 parent: 2 - uid: 13716 components: - type: Transform - pos: -68.5,-2.5 + pos: 15.429453,23.281454 parent: 2 - uid: 13717 components: - type: Transform - pos: -69.5,-4.5 + pos: 19.714884,-15.548403 parent: 2 - uid: 13718 components: - type: Transform - pos: -65.5,-2.5 + pos: 24.522234,27.750282 parent: 2 - uid: 13719 components: - type: Transform - pos: -68.5,-3.5 + pos: -11.84814,-14.189615 parent: 2 - uid: 13720 components: - type: Transform - pos: -67.5,-4.5 + pos: -0.7216426,33.82238 parent: 2 + - uid: 45488 + components: + - type: Transform + pos: 4.363899,4.345338 + parent: 45355 + - uid: 45489 + components: + - type: Transform + pos: 1.4420245,4.845338 + parent: 45355 +- proto: CandleRed + entities: - uid: 13721 components: - type: Transform - pos: -66.5,-3.5 + pos: 5.6562676,-32.417168 parent: 2 +- proto: CandleRedInfinite + entities: - uid: 13722 components: - type: Transform - pos: -65.5,-4.5 + pos: 88.49962,-27.184748 parent: 2 - uid: 13723 components: - type: Transform - pos: -68.5,-4.5 + pos: 58.24126,-27.645727 parent: 2 - uid: 13724 components: - type: Transform - pos: -66.5,-2.5 + rot: -1.5707963267948966 rad + pos: 93.41386,-15.885529 parent: 2 - uid: 13725 components: - type: Transform - pos: -67.5,-2.5 + pos: -127.142395,-15.760302 parent: 2 - uid: 13726 components: - type: Transform - pos: -67.5,-3.5 + pos: -51.26875,-9.538825 parent: 2 - uid: 13727 components: - type: Transform - pos: -66.5,-4.5 + pos: 29.458231,23.520777 parent: 2 -- proto: CarrotSeeds - entities: - - uid: 40987 - components: - - type: Transform - pos: 52.732292,69.5744 - parent: 40203 -- proto: CartridgeCap - entities: - uid: 13728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.828636,17.392303 + pos: 28.51484,19.575497 parent: 2 - uid: 13729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.609886,17.111053 + pos: -7.8050404,28.335821 parent: 2 - uid: 13730 components: - type: Transform - pos: 67.56301,17.032928 + pos: 102.732414,-20.420527 parent: 2 - - uid: 40988 + - uid: 13731 components: - type: Transform - rot: 3.717551306747922 rad - pos: 41.13054,79.82915 - parent: 40203 - - uid: 40989 + pos: -3.404098,-14.23649 + parent: 2 + - uid: 13732 components: - type: Transform - rot: 0.20943951023931956 rad - pos: 41.72429,78.12602 - parent: 40203 - - uid: 40990 + pos: -23.294285,0.6354467 + parent: 2 + - uid: 46972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.396164,80.65727 - parent: 40203 - - uid: 40991 + pos: 1.1309357,-0.81933594 + parent: 46943 + - type: PointLight + color: '#AF464FFF' + - uid: 46973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.44304,80.65727 - parent: 40203 -- proto: CartridgeMagnum - entities: - - uid: 13731 + pos: -0.83781433,-0.74121094 + parent: 46943 + - uid: 46974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.202366,29.55423 - parent: 2 - - uid: 13732 + pos: 0.06843567,-0.78808594 + parent: 46943 + - type: PointLight + color: '#AF464FFF' + - uid: 46975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.09299,29.55423 - parent: 2 + pos: 1.8184357,-0.77246094 + parent: 46943 +- proto: CandleRedSmall + entities: - uid: 13733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.233616,28.413605 + pos: 49.900005,-5.665017 parent: 2 +- proto: CandleRedSmallInfinite + entities: - uid: 13734 components: - type: Transform - pos: -32.608616,30.351105 + pos: -51.425,-9.49195 parent: 2 - - uid: 40992 + - uid: 13735 components: - type: Transform - rot: 1.7453292519943295 rad - pos: 71.76521,78.614105 - parent: 40203 - - uid: 40993 + pos: 32.631607,27.594032 + parent: 2 + - uid: 13736 components: - type: Transform - rot: 0.3665191429188092 rad - pos: 71.26521,78.31723 - parent: 40203 - - uid: 40994 + pos: 7.400525,29.155243 + parent: 2 + - uid: 13737 components: - type: Transform - rot: -2.1467549799530254 rad - pos: 71.65584,78.145355 - parent: 40203 -- proto: CartridgePistol + pos: 40.292797,22.458366 + parent: 2 +- proto: CandleSmall entities: - - uid: 13736 + - uid: 8606 + components: + - type: Transform + parent: 8603 + - type: Physics + canCollide: False + - uid: 8607 components: - type: Transform - parent: 13735 + parent: 8603 - type: Physics canCollide: False - uid: 13738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.498878,-17.377514 + pos: 42.61263,-9.830355 parent: 2 -- proto: Catwalk - entities: - uid: 13739 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-9.5 + pos: 45.36557,-9.514071 parent: 2 - uid: 13740 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-10.5 + pos: 51.55307,-9.389071 parent: 2 - uid: 13741 components: - type: Transform - pos: 65.5,-5.5 + rot: -1.5707963267948966 rad + pos: 51.386402,-9.274488 parent: 2 - uid: 13742 components: - type: Transform - pos: -58.5,64.5 + pos: 41.972004,-10.93973 parent: 2 - uid: 13743 components: - type: Transform - pos: -58.5,65.5 + pos: 43.48763,-9.93973 parent: 2 - uid: 13744 components: - type: Transform - pos: -19.5,-3.5 + pos: 42.097004,-9.705355 parent: 2 - uid: 13745 components: - type: Transform - pos: 47.5,29.5 + pos: 42.909504,-10.830355 parent: 2 + - uid: 46976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5606575,-10.290471 + parent: 46943 + - uid: 46977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.7794075,-10.134221 + parent: 46943 + - uid: 46978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5643425,-10.181096 + parent: 46943 + - uid: 46979 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.6112175,-10.165471 + parent: 46943 + - uid: 46980 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.3768425,-10.493596 + parent: 46943 + - uid: 46981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.2950324,-10.431096 + parent: 46943 + - uid: 46982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.7481575,-10.337346 + parent: 46943 + - uid: 46983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.1075325,-10.524846 + parent: 46943 + - uid: 46984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.4825325,-10.462346 + parent: 46943 + - uid: 46985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5330925,-10.337346 + parent: 46943 + - uid: 46986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.2674675,-10.446721 + parent: 46943 + - uid: 46987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.9549675,-10.446721 + parent: 46943 + - uid: 46988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.1268425,-10.165471 + parent: 46943 + - uid: 46989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.7830925,-10.212346 + parent: 46943 + - uid: 46990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.2362175,-10.212346 + parent: 46943 + - uid: 46991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5334227,-10.2144985 + parent: 46943 +- proto: CandyBucket + entities: - uid: 13746 components: - type: Transform - pos: 51.5,25.5 + pos: 49.3067,-5.095192 parent: 2 +- proto: CannabisSeeds + entities: - uid: 13747 components: - type: Transform - pos: 51.5,24.5 + pos: 82.73795,5.689642 parent: 2 - uid: 13748 components: - type: Transform - pos: 50.5,18.5 + pos: 82.5178,5.5917974 parent: 2 - uid: 13749 components: - type: Transform - pos: 48.5,29.5 + pos: 82.728455,5.094248 parent: 2 - uid: 13750 components: - type: Transform - pos: 49.5,28.5 + pos: -113.40921,32.579285 parent: 2 +- proto: CapacitorStockPart + entities: - uid: 13751 components: - type: Transform - pos: 51.5,21.5 + pos: 4.3175044,15.408846 parent: 2 - uid: 13752 components: - type: Transform - pos: 51.5,18.5 + pos: 4.3956294,15.565096 parent: 2 - uid: 13753 components: - type: Transform - pos: 11.5,-45.5 + pos: 11.10956,-12.761871 parent: 2 - uid: 13754 components: - type: Transform - pos: 12.5,-42.5 + pos: 27.443117,-5.5743117 parent: 2 - uid: 13755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-38.5 + pos: 45.35565,-49.376072 parent: 2 - uid: 13756 components: - type: Transform - pos: 44.5,-16.5 + pos: 18.764523,6.3330803 parent: 2 +- proto: CaptainIDCard + entities: - uid: 13757 components: - type: Transform - pos: 46.5,-16.5 + pos: 18.481169,-12.181192 parent: 2 +- proto: CarbonDioxideCanister + entities: - uid: 13758 components: - type: Transform - pos: 48.5,-18.5 + pos: -10.5,-68.5 parent: 2 + - type: GasCanister + releaseValve: True + releasePressure: 100 + - type: Lock + locked: False - uid: 13759 components: - type: Transform - pos: 47.5,-16.5 + pos: 47.5,-48.5 parent: 2 - uid: 13760 components: - type: Transform - pos: 47.5,-15.5 + pos: -7.5,-55.5 parent: 2 +- proto: CargoRequestComputerCircuitboard + entities: - uid: 13761 components: - type: Transform - pos: 48.5,-11.5 + pos: 14.400549,11.507145 parent: 2 +- proto: Carpet + entities: - uid: 13762 components: - type: Transform - pos: 48.5,-13.5 + pos: -43.5,-19.5 parent: 2 - uid: 13763 components: - type: Transform - pos: 47.5,-19.5 + pos: -43.5,-18.5 parent: 2 - uid: 13764 components: - type: Transform - pos: 47.5,-18.5 + pos: 3.5,64.5 parent: 2 - uid: 13765 components: - type: Transform - pos: 47.5,-17.5 + rot: 3.141592653589793 rad + pos: 30.5,23.5 parent: 2 - uid: 13766 components: - type: Transform - pos: 43.5,-16.5 + rot: 3.141592653589793 rad + pos: 33.5,21.5 parent: 2 - uid: 13767 components: - type: Transform - pos: 48.5,-12.5 + pos: 28.5,19.5 parent: 2 - uid: 13768 components: - type: Transform - pos: 53.5,-11.5 + pos: 31.5,19.5 parent: 2 - uid: 13769 components: - type: Transform - pos: 51.5,-11.5 + pos: 29.5,22.5 parent: 2 - uid: 13770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-8.5 + rot: 3.141592653589793 rad + pos: 31.5,21.5 parent: 2 - uid: 13771 components: - type: Transform - pos: 50.5,-11.5 + pos: 32.5,19.5 parent: 2 - uid: 13772 components: - type: Transform - pos: 52.5,-11.5 + pos: 29.5,24.5 parent: 2 - uid: 13773 components: - type: Transform - pos: 54.5,-11.5 + rot: 3.141592653589793 rad + pos: 32.5,21.5 parent: 2 - uid: 13774 components: - type: Transform - pos: 57.5,-11.5 + pos: 29.5,23.5 parent: 2 - uid: 13775 components: - type: Transform - pos: 60.5,-11.5 + pos: 28.5,22.5 parent: 2 - uid: 13776 components: - type: Transform - pos: 61.5,-11.5 + pos: 29.5,19.5 parent: 2 - uid: 13777 components: - type: Transform - pos: 61.5,-10.5 + pos: 29.5,20.5 parent: 2 - uid: 13778 components: - type: Transform - pos: 61.5,-8.5 + rot: 3.141592653589793 rad + pos: 33.5,19.5 parent: 2 - uid: 13779 components: - type: Transform - pos: 61.5,-4.5 + pos: 33.5,20.5 parent: 2 - uid: 13780 components: - type: Transform - pos: 61.5,-5.5 + pos: 32.5,20.5 parent: 2 - uid: 13781 components: - type: Transform - pos: 61.5,-6.5 + pos: 32.5,24.5 parent: 2 - uid: 13782 components: - type: Transform - pos: 61.5,-7.5 + rot: 3.141592653589793 rad + pos: 30.5,24.5 parent: 2 - uid: 13783 components: - type: Transform - pos: 60.5,-7.5 + rot: 3.141592653589793 rad + pos: 30.5,23.5 parent: 2 - uid: 13784 components: - type: Transform - pos: 59.5,-7.5 + pos: 28.5,24.5 parent: 2 - uid: 13785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,11.5 + pos: 31.5,20.5 parent: 2 - uid: 13786 components: - type: Transform - pos: 39.5,32.5 + pos: 28.5,23.5 parent: 2 - uid: 13787 components: - type: Transform - pos: 38.5,35.5 + pos: 32.5,23.5 parent: 2 - uid: 13788 components: - type: Transform - pos: 36.5,37.5 + pos: 33.5,23.5 parent: 2 - uid: 13789 components: - type: Transform - pos: 38.5,32.5 + pos: 33.5,24.5 parent: 2 - uid: 13790 components: - type: Transform - pos: 38.5,34.5 + rot: 3.141592653589793 rad + pos: 30.5,22.5 parent: 2 - uid: 13791 components: - type: Transform - pos: 37.5,36.5 + pos: 28.5,20.5 parent: 2 - uid: 13792 components: - type: Transform - pos: 35.5,37.5 + rot: 3.141592653589793 rad + pos: 6.5,-35.5 parent: 2 - uid: 13793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,11.5 + rot: 3.141592653589793 rad + pos: 5.5,-35.5 parent: 2 - uid: 13794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + rot: 3.141592653589793 rad + pos: 5.5,-34.5 parent: 2 - uid: 13795 components: - type: Transform - pos: 37.5,33.5 + rot: 3.141592653589793 rad + pos: 6.5,-34.5 parent: 2 - uid: 13796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,11.5 + rot: 3.141592653589793 rad + pos: 7.5,-34.5 parent: 2 - uid: 13797 components: - type: Transform - pos: 37.5,31.5 + rot: 3.141592653589793 rad + pos: 7.5,-35.5 parent: 2 - uid: 13798 components: - type: Transform - pos: 36.5,33.5 + pos: 40.5,10.5 parent: 2 - uid: 13799 components: - type: Transform - pos: 46.5,29.5 + pos: 41.5,10.5 parent: 2 - uid: 13800 components: - type: Transform - pos: 51.5,20.5 + pos: 40.5,9.5 parent: 2 - uid: 13801 components: - type: Transform - pos: 51.5,19.5 + pos: 41.5,9.5 parent: 2 - uid: 13802 components: - type: Transform - pos: 46.5,31.5 + pos: 39.5,10.5 parent: 2 - uid: 13803 components: - type: Transform - pos: 44.5,32.5 + pos: 39.5,9.5 parent: 2 - uid: 13804 components: - type: Transform - pos: 43.5,32.5 + pos: 42.5,10.5 parent: 2 - uid: 13805 components: - type: Transform - pos: 50.5,24.5 + pos: 42.5,9.5 parent: 2 - uid: 13806 components: - type: Transform - pos: 45.5,31.5 + pos: -43.5,7.5 parent: 2 - uid: 13807 components: - type: Transform - pos: 46.5,30.5 + pos: -42.5,7.5 parent: 2 - uid: 13808 components: - type: Transform - pos: 13.5,-11.5 + pos: -41.5,7.5 parent: 2 - uid: 13809 components: - type: Transform - pos: 14.5,-11.5 + pos: -41.5,6.5 parent: 2 - uid: 13810 components: - type: Transform - pos: 14.5,-12.5 + pos: -42.5,6.5 parent: 2 - uid: 13811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 + pos: -43.5,6.5 parent: 2 - uid: 13812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 + pos: 2.5,65.5 parent: 2 - uid: 13813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-22.5 + pos: 2.5,64.5 parent: 2 - uid: 13814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 + pos: 3.5,65.5 parent: 2 - uid: 13815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-24.5 + pos: 1.5,65.5 parent: 2 - uid: 13816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-28.5 + pos: 1.5,64.5 parent: 2 - uid: 13817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-25.5 + pos: -42.5,-19.5 parent: 2 - uid: 13818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 + pos: 6.5,19.5 parent: 2 - uid: 13819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-27.5 + pos: -42.5,-18.5 parent: 2 - uid: 13820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-49.5 + pos: 6.5,21.5 parent: 2 - uid: 13821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-48.5 + pos: 7.5,19.5 parent: 2 - uid: 13822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-47.5 + pos: 7.5,20.5 parent: 2 - uid: 13823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-46.5 + pos: 6.5,20.5 parent: 2 - uid: 13824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-45.5 + pos: 7.5,21.5 parent: 2 - uid: 13825 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-44.5 + pos: -105.5,11.5 parent: 2 - uid: 13826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-43.5 + pos: -104.5,8.5 parent: 2 - uid: 13827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-42.5 + pos: -104.5,9.5 parent: 2 - uid: 13828 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-41.5 + pos: -104.5,10.5 parent: 2 - uid: 13829 components: - type: Transform - pos: 22.5,-47.5 + rot: 1.5707963267948966 rad + pos: -104.5,11.5 parent: 2 - uid: 13830 components: - type: Transform - pos: 23.5,-47.5 + rot: 1.5707963267948966 rad + pos: -104.5,7.5 parent: 2 - uid: 13831 components: - type: Transform - pos: 24.5,-47.5 + rot: 1.5707963267948966 rad + pos: -105.5,10.5 parent: 2 - uid: 13832 components: - type: Transform - pos: 25.5,-47.5 + rot: 1.5707963267948966 rad + pos: -105.5,9.5 parent: 2 - uid: 13833 components: - type: Transform - pos: 29.5,-47.5 + rot: 1.5707963267948966 rad + pos: -105.5,8.5 parent: 2 - uid: 13834 components: - type: Transform - pos: 30.5,-47.5 + rot: 1.5707963267948966 rad + pos: -105.5,7.5 parent: 2 - uid: 13835 components: - type: Transform - pos: 31.5,-47.5 + pos: -59.5,55.5 parent: 2 - uid: 13836 components: - type: Transform - pos: 32.5,-47.5 + pos: -59.5,54.5 parent: 2 - uid: 13837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-0.5 + pos: -58.5,54.5 parent: 2 - uid: 13838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,0.5 + pos: -58.5,55.5 parent: 2 + - uid: 46992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 46943 + - uid: 46993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 46943 + - uid: 46994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 46943 +- proto: CarpetBlack + entities: - uid: 13839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,0.5 + pos: 0.5,-20.5 parent: 2 - uid: 13840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-0.5 + pos: 87.5,-27.5 parent: 2 - uid: 13841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,1.5 + pos: -24.5,5.5 parent: 2 - uid: 13842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,1.5 + pos: -24.5,4.5 parent: 2 - uid: 13843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,19.5 + pos: -25.5,5.5 parent: 2 - uid: 13844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,18.5 + pos: -25.5,4.5 parent: 2 - uid: 13845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,19.5 + pos: -26.5,5.5 parent: 2 - uid: 13846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,18.5 + pos: -26.5,4.5 parent: 2 - uid: 13847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-17.5 + pos: 41.5,-31.5 parent: 2 - uid: 13848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-17.5 + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 parent: 2 - uid: 13849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-16.5 + rot: 1.5707963267948966 rad + pos: 41.5,-32.5 parent: 2 - uid: 13850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 + rot: 1.5707963267948966 rad + pos: 42.5,-32.5 parent: 2 - uid: 13851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-15.5 + rot: 1.5707963267948966 rad + pos: 43.5,-32.5 parent: 2 - uid: 13852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-15.5 + rot: 1.5707963267948966 rad + pos: 44.5,-32.5 parent: 2 - uid: 13853 components: - type: Transform - pos: 14.5,-13.5 + rot: 1.5707963267948966 rad + pos: 40.5,-32.5 parent: 2 - uid: 13854 components: - type: Transform - pos: 43.5,-41.5 + rot: 1.5707963267948966 rad + pos: 42.5,-31.5 parent: 2 - uid: 13855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-34.5 + rot: 1.5707963267948966 rad + pos: 44.5,-31.5 parent: 2 - uid: 13856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-34.5 + rot: 1.5707963267948966 rad + pos: 43.5,-31.5 parent: 2 - uid: 13857 components: - type: Transform - pos: 44.5,-41.5 + rot: 1.5707963267948966 rad + pos: 43.5,-33.5 parent: 2 - uid: 13858 components: - type: Transform - pos: 39.5,-41.5 + rot: 1.5707963267948966 rad + pos: 42.5,-33.5 parent: 2 - uid: 13859 components: - type: Transform - pos: 43.5,-39.5 + rot: 1.5707963267948966 rad + pos: 41.5,-33.5 parent: 2 - uid: 13860 components: - type: Transform - pos: 43.5,-38.5 + rot: 1.5707963267948966 rad + pos: 44.5,-33.5 parent: 2 - uid: 13861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-37.5 + pos: 88.5,-27.5 parent: 2 - uid: 13862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-38.5 + pos: 88.5,-28.5 parent: 2 - uid: 13863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-36.5 + pos: 87.5,-28.5 parent: 2 - uid: 13864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-36.5 + pos: 89.5,-25.5 parent: 2 - uid: 13865 components: - type: Transform - pos: 40.5,-41.5 + pos: 90.5,-25.5 parent: 2 - uid: 13866 components: - type: Transform - pos: 39.5,-40.5 + pos: 91.5,-25.5 parent: 2 - uid: 13867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-34.5 + pos: 91.5,-26.5 parent: 2 - uid: 13868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-37.5 + pos: 91.5,-26.5 parent: 2 - uid: 13869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-38.5 + pos: 91.5,-27.5 parent: 2 - uid: 13870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-36.5 + pos: 91.5,-28.5 parent: 2 - uid: 13871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-35.5 + pos: 92.5,-27.5 parent: 2 - uid: 13872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-35.5 + pos: 92.5,-26.5 parent: 2 - uid: 13873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,10.5 + pos: 90.5,-26.5 parent: 2 - uid: 13874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,9.5 + pos: 90.5,-27.5 parent: 2 - uid: 13875 components: - type: Transform - pos: 12.5,10.5 + pos: 90.5,-28.5 parent: 2 - uid: 13876 components: - type: Transform - pos: 12.5,9.5 + pos: 90.5,-28.5 parent: 2 - uid: 13877 components: - type: Transform - pos: 93.5,-39.5 + pos: -0.5,-20.5 parent: 2 - uid: 13878 components: - type: Transform - pos: 93.5,-36.5 + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 parent: 2 - uid: 13879 components: - type: Transform - pos: 93.5,-40.5 + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 parent: 2 - uid: 13880 components: - type: Transform - pos: 93.5,-38.5 + pos: -0.5,-21.5 parent: 2 - uid: 13881 components: - type: Transform - pos: 93.5,-35.5 + pos: 0.5,-21.5 parent: 2 - uid: 13882 components: - type: Transform - pos: 94.5,-35.5 + pos: 1.5,18.5 parent: 2 - uid: 13883 components: - type: Transform - pos: 92.5,-35.5 + pos: 37.5,-3.5 parent: 2 - uid: 13884 components: - type: Transform - pos: -14.5,-55.5 + pos: 36.5,-2.5 parent: 2 - uid: 13885 components: - type: Transform - pos: -14.5,-56.5 + pos: 37.5,-2.5 parent: 2 - uid: 13886 components: - type: Transform - pos: -14.5,-48.5 + pos: 36.5,-3.5 parent: 2 - uid: 13887 components: - type: Transform - pos: -14.5,-57.5 + pos: 37.5,-4.5 parent: 2 - uid: 13888 components: - type: Transform - pos: -14.5,-50.5 + pos: 36.5,-4.5 parent: 2 - uid: 13889 components: - type: Transform - pos: -14.5,-49.5 + pos: 0.5,18.5 parent: 2 - uid: 13890 components: - type: Transform - pos: -14.5,-59.5 + pos: 2.5,20.5 parent: 2 - uid: 13891 components: - type: Transform - pos: -14.5,-60.5 + pos: 2.5,21.5 parent: 2 - uid: 13892 components: - type: Transform - pos: -14.5,-61.5 + pos: 2.5,18.5 parent: 2 - uid: 13893 components: - type: Transform - pos: -26.5,-45.5 + pos: -1.5,21.5 parent: 2 - uid: 13894 components: - type: Transform - pos: -12.5,-61.5 + pos: 1.5,21.5 parent: 2 - uid: 13895 components: - type: Transform - pos: -11.5,-61.5 + pos: -1.5,18.5 parent: 2 - uid: 13896 components: - type: Transform - pos: -10.5,-61.5 + pos: -0.5,21.5 parent: 2 - uid: 13897 components: - type: Transform - pos: -27.5,-45.5 + pos: -1.5,20.5 parent: 2 - uid: 13898 components: - type: Transform - pos: -8.5,-61.5 + pos: 0.5,21.5 parent: 2 - uid: 13899 components: - type: Transform - pos: -7.5,-61.5 + pos: 2.5,19.5 parent: 2 - uid: 13900 components: - type: Transform - pos: -6.5,-61.5 + pos: -1.5,19.5 parent: 2 - uid: 13901 components: - type: Transform - pos: 1.5,-61.5 + pos: -0.5,18.5 parent: 2 - uid: 13902 components: - type: Transform - pos: -4.5,-61.5 + pos: 67.5,-42.5 parent: 2 - uid: 13903 components: - type: Transform - pos: -3.5,-61.5 + pos: 65.5,-41.5 parent: 2 - uid: 13904 components: - type: Transform - pos: -2.5,-61.5 + pos: 67.5,-41.5 parent: 2 - uid: 13905 components: - type: Transform - pos: 0.5,-61.5 + pos: 65.5,-42.5 parent: 2 - uid: 13906 components: - type: Transform - pos: -0.5,-61.5 + pos: 66.5,-39.5 parent: 2 - uid: 13907 components: - type: Transform - pos: -25.5,-45.5 + pos: 65.5,-43.5 parent: 2 - uid: 13908 components: - type: Transform - pos: -24.5,-45.5 + pos: 67.5,-40.5 parent: 2 - uid: 13909 components: - type: Transform - pos: -23.5,-45.5 + pos: 67.5,-39.5 parent: 2 - uid: 13910 components: - type: Transform - pos: -22.5,-45.5 + pos: 65.5,-40.5 parent: 2 - uid: 13911 components: - type: Transform - pos: -21.5,-45.5 + pos: 65.5,-39.5 parent: 2 - uid: 13912 components: - type: Transform - pos: -20.5,-45.5 + pos: 65.5,-38.5 parent: 2 - uid: 13913 components: - type: Transform - pos: -19.5,-45.5 + pos: 66.5,-43.5 parent: 2 - uid: 13914 components: - type: Transform - pos: -18.5,-45.5 + pos: 66.5,-40.5 parent: 2 - uid: 13915 components: - type: Transform - pos: -17.5,-45.5 + pos: 66.5,-38.5 parent: 2 - uid: 13916 components: - type: Transform - pos: -16.5,-45.5 + pos: 67.5,-43.5 parent: 2 - uid: 13917 components: - type: Transform - pos: -15.5,-45.5 + pos: 66.5,-41.5 parent: 2 - uid: 13918 components: - type: Transform - pos: -14.5,-45.5 + pos: 67.5,-38.5 parent: 2 - uid: 13919 components: - type: Transform - pos: -13.5,-45.5 + pos: 66.5,-42.5 parent: 2 - uid: 13920 components: - type: Transform - pos: -28.5,-45.5 + rot: -1.5707963267948966 rad + pos: -32.5,29.5 parent: 2 - uid: 13921 components: - type: Transform - pos: -29.5,-45.5 + rot: -1.5707963267948966 rad + pos: -30.5,29.5 parent: 2 - uid: 13922 components: - type: Transform - pos: -14.5,-41.5 + rot: -1.5707963267948966 rad + pos: -31.5,29.5 parent: 2 - uid: 13923 components: - type: Transform - pos: -14.5,-40.5 + pos: 48.5,-11.5 parent: 2 - uid: 13924 components: - type: Transform - pos: -14.5,-39.5 + pos: 48.5,-12.5 parent: 2 - uid: 13925 components: - type: Transform - pos: -14.5,-38.5 + pos: 48.5,-14.5 parent: 2 - uid: 13926 components: - type: Transform - pos: -16.5,-38.5 + pos: 48.5,-13.5 parent: 2 - uid: 13927 components: - type: Transform - pos: -16.5,-39.5 + pos: 48.5,-15.5 parent: 2 - uid: 13928 components: - type: Transform - pos: -16.5,-40.5 + pos: -76.5,17.5 parent: 2 + - uid: 46995 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 46943 + - uid: 46996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 46943 + - uid: 46997 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 46943 + - uid: 46998 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 46943 + - uid: 46999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 46943 + - uid: 47000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 46943 + - uid: 47001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 46943 + - uid: 47002 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 46943 + - uid: 47003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 46943 + - uid: 47004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 46943 + - uid: 47005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 46943 + - uid: 47006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 46943 + - uid: 47007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 46943 + - uid: 47008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 46943 + - uid: 47009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 46943 + - uid: 47010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 46943 + - uid: 47011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 46943 + - uid: 47012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 46943 + - uid: 47013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 46943 + - uid: 47014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 46943 + - uid: 47015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 46943 + - uid: 47016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 46943 + - uid: 47017 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 46943 + - uid: 47018 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 46943 +- proto: CarpetChapel + entities: - uid: 13929 components: - type: Transform - pos: -16.5,-41.5 + rot: 1.5707963267948966 rad + pos: 47.5,-15.5 parent: 2 - uid: 13930 components: - type: Transform - pos: -12.5,-41.5 + rot: 1.5707963267948966 rad + pos: 50.5,-15.5 parent: 2 - uid: 13931 components: - type: Transform - pos: -12.5,-40.5 + rot: -1.5707963267948966 rad + pos: 49.5,-11.5 parent: 2 - uid: 13932 components: - type: Transform - pos: -12.5,-39.5 + rot: -1.5707963267948966 rad + pos: 46.5,-14.5 parent: 2 - uid: 13933 components: - type: Transform - pos: -12.5,-38.5 + pos: 49.5,-12.5 parent: 2 - uid: 13934 components: - type: Transform - pos: -14.5,-37.5 + pos: 49.5,-15.5 parent: 2 - uid: 13935 components: - type: Transform - pos: 0.5,-68.5 + rot: 3.141592653589793 rad + pos: 50.5,-14.5 parent: 2 - uid: 13936 components: - type: Transform - pos: 0.5,-69.5 + rot: 1.5707963267948966 rad + pos: 50.5,-12.5 parent: 2 - uid: 13937 components: - type: Transform - pos: 0.5,-70.5 + rot: 3.141592653589793 rad + pos: 50.5,-11.5 parent: 2 - uid: 13938 components: - type: Transform - pos: 1.5,-70.5 + pos: 46.5,-12.5 parent: 2 - uid: 13939 components: - type: Transform - pos: 1.5,-69.5 + rot: 3.141592653589793 rad + pos: 47.5,-14.5 parent: 2 - uid: 13940 components: - type: Transform - pos: 1.5,-68.5 + pos: 46.5,-15.5 parent: 2 - uid: 13941 components: - type: Transform - pos: 2.5,-68.5 + rot: -1.5707963267948966 rad + pos: 49.5,-14.5 parent: 2 - uid: 13942 components: - type: Transform - pos: 2.5,-69.5 + rot: -1.5707963267948966 rad + pos: 46.5,-11.5 parent: 2 - uid: 13943 components: - type: Transform - pos: 2.5,-70.5 + rot: 1.5707963267948966 rad + pos: 47.5,-12.5 parent: 2 - uid: 13944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-4.5 + rot: 3.141592653589793 rad + pos: 47.5,-11.5 parent: 2 +- proto: CarpetCyan + entities: - uid: 13945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-4.5 + pos: 4.5,60.5 parent: 2 - uid: 13946 components: - type: Transform - pos: -19.5,-2.5 + pos: 4.5,61.5 parent: 2 - uid: 13947 components: - type: Transform - pos: -72.5,38.5 + pos: 3.5,61.5 parent: 2 - uid: 13948 components: - type: Transform - pos: -71.5,38.5 + pos: 3.5,60.5 parent: 2 - uid: 13949 components: - type: Transform - pos: -72.5,39.5 + pos: 2.5,61.5 parent: 2 - uid: 13950 components: - type: Transform - pos: 61.5,-14.5 + pos: 2.5,60.5 parent: 2 - uid: 13951 components: - type: Transform - pos: 61.5,-13.5 + pos: 5.5,61.5 parent: 2 - uid: 13952 components: - type: Transform - pos: 61.5,-19.5 + pos: 5.5,60.5 parent: 2 +- proto: CarpetOrange + entities: - uid: 13953 components: - type: Transform - pos: 61.5,-17.5 + pos: 7.5,-46.5 parent: 2 - uid: 13954 components: - type: Transform - pos: 51.5,-31.5 + pos: 7.5,-47.5 parent: 2 - uid: 13955 components: - type: Transform - pos: 40.5,-27.5 + rot: 3.141592653589793 rad + pos: -17.5,24.5 parent: 2 +- proto: CarpetPink + entities: - uid: 13956 components: - type: Transform - pos: 52.5,-26.5 + rot: -1.5707963267948966 rad + pos: -23.5,23.5 parent: 2 - uid: 13957 components: - type: Transform - pos: 51.5,-32.5 + rot: -1.5707963267948966 rad + pos: -24.5,22.5 parent: 2 - uid: 13958 components: - type: Transform - pos: 52.5,-27.5 + rot: -1.5707963267948966 rad + pos: -23.5,22.5 parent: 2 - uid: 13959 components: - type: Transform - pos: 51.5,-29.5 + rot: -1.5707963267948966 rad + pos: -24.5,23.5 parent: 2 - uid: 13960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 + pos: -7.5,18.5 parent: 2 - uid: 13961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,30.5 + pos: -4.5,20.5 parent: 2 - uid: 13962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,43.5 + pos: -4.5,19.5 parent: 2 - uid: 13963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,32.5 + pos: -7.5,19.5 parent: 2 - uid: 13964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,31.5 + pos: -6.5,18.5 parent: 2 - uid: 13965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,35.5 + pos: -5.5,19.5 parent: 2 - uid: 13966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,36.5 + pos: -6.5,19.5 parent: 2 - uid: 13967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,39.5 + pos: -5.5,18.5 parent: 2 - uid: 13968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,40.5 + pos: -4.5,18.5 parent: 2 - uid: 13969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,22.5 + pos: -7.5,20.5 parent: 2 +- proto: CarpetPurple + entities: - uid: 13970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,20.5 + rot: 1.5707963267948966 rad + pos: 27.5,-57.5 parent: 2 - uid: 13971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,24.5 + rot: 1.5707963267948966 rad + pos: 26.5,-57.5 parent: 2 - uid: 13972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,23.5 + rot: 1.5707963267948966 rad + pos: 26.5,-56.5 parent: 2 - uid: 13973 components: - type: Transform - pos: 52.5,-37.5 + rot: 1.5707963267948966 rad + pos: 27.5,-56.5 parent: 2 - uid: 13974 components: - type: Transform - pos: 41.5,-29.5 + rot: 1.5707963267948966 rad + pos: 28.5,-57.5 parent: 2 - uid: 13975 components: - type: Transform - pos: 40.5,-29.5 + pos: 32.5,-11.5 parent: 2 - uid: 13976 components: - type: Transform - pos: 71.5,0.5 + pos: 32.5,-10.5 parent: 2 - uid: 13977 components: - type: Transform - pos: 73.5,-3.5 + pos: 33.5,-10.5 parent: 2 - uid: 13978 components: - type: Transform - pos: -70.5,38.5 + pos: 33.5,-11.5 parent: 2 - uid: 13979 components: - type: Transform - pos: -72.5,37.5 + pos: 34.5,-11.5 parent: 2 - uid: 13980 components: - type: Transform - pos: 74.5,-5.5 + pos: 34.5,-10.5 parent: 2 +- proto: CarpetSBlue + entities: - uid: 13981 components: - type: Transform - pos: 74.5,-4.5 + pos: 13.5,-4.5 parent: 2 - uid: 13982 components: - type: Transform - pos: 74.5,-2.5 + pos: -6.5,-5.5 parent: 2 - uid: 13983 components: - type: Transform - pos: 71.5,1.5 + pos: -5.5,-5.5 parent: 2 - uid: 13984 components: - type: Transform - pos: 72.5,3.5 + pos: -4.5,-5.5 parent: 2 - uid: 13985 components: - type: Transform - pos: 72.5,2.5 + pos: -4.5,-6.5 parent: 2 - uid: 13986 components: - type: Transform - pos: 71.5,7.5 + pos: -5.5,-6.5 parent: 2 - uid: 13987 components: - type: Transform - pos: 71.5,8.5 + pos: -6.5,-6.5 parent: 2 - uid: 13988 components: - type: Transform - pos: 63.5,18.5 + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 parent: 2 - uid: 13989 components: - type: Transform - pos: 69.5,13.5 + rot: -1.5707963267948966 rad + pos: -8.5,-11.5 parent: 2 - uid: 13990 components: - type: Transform - pos: 68.5,14.5 + pos: -7.5,-11.5 parent: 2 - uid: 13991 components: - type: Transform - pos: 68.5,15.5 + pos: -6.5,-11.5 parent: 2 - uid: 13992 components: - type: Transform - pos: 62.5,18.5 + pos: 10.5,-3.5 parent: 2 - uid: 13993 components: - type: Transform - pos: 61.5,18.5 + pos: 10.5,-4.5 parent: 2 - uid: 13994 components: - type: Transform - pos: 56.5,19.5 + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 parent: 2 - uid: 13995 components: - type: Transform - pos: 55.5,19.5 + pos: 9.5,-8.5 parent: 2 - uid: 13996 components: - type: Transform - pos: 52.5,19.5 + pos: 10.5,-8.5 parent: 2 - uid: 13997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,20.5 + pos: 11.5,-8.5 parent: 2 - uid: 13998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,39.5 + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 parent: 2 - uid: 13999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 parent: 2 - uid: 14000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,43.5 + pos: 13.5,-3.5 parent: 2 - uid: 14001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,43.5 + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 parent: 2 - uid: 14002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,43.5 + pos: 2.5,43.5 parent: 2 - uid: 14003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,43.5 + pos: 2.5,44.5 parent: 2 - uid: 14004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,43.5 + pos: 3.5,43.5 parent: 2 - uid: 14005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,43.5 + pos: 4.5,44.5 parent: 2 - uid: 14006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,44.5 + pos: -15.5,57.5 parent: 2 - uid: 14007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,44.5 + pos: -15.5,59.5 parent: 2 - uid: 14008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,44.5 + pos: -15.5,58.5 parent: 2 - uid: 14009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,44.5 + pos: -14.5,59.5 parent: 2 - uid: 14010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,41.5 + pos: 4.5,43.5 parent: 2 - uid: 14011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,40.5 + pos: 3.5,44.5 parent: 2 - uid: 14012 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,44.5 + pos: -14.5,58.5 parent: 2 - uid: 14013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,43.5 + pos: -13.5,59.5 parent: 2 - uid: 14014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,45.5 + pos: -13.5,58.5 parent: 2 - uid: 14015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,44.5 + pos: -15.5,60.5 parent: 2 - uid: 14016 components: - type: Transform - pos: 49.5,29.5 + pos: -14.5,60.5 parent: 2 - uid: 14017 components: - type: Transform - pos: 51.5,23.5 + pos: -13.5,60.5 parent: 2 - uid: 14018 components: - type: Transform - pos: -19.5,-25.5 + pos: -14.5,57.5 parent: 2 - uid: 14019 components: - type: Transform - pos: -20.5,-25.5 + pos: -13.5,57.5 parent: 2 - uid: 14020 components: - type: Transform - pos: -20.5,-26.5 + rot: 3.141592653589793 rad + pos: -109.5,2.5 parent: 2 - uid: 14021 components: - type: Transform - pos: -25.5,-49.5 + rot: 3.141592653589793 rad + pos: -108.5,4.5 parent: 2 - uid: 14022 components: - type: Transform - pos: -24.5,-48.5 + rot: 3.141592653589793 rad + pos: -109.5,3.5 parent: 2 - uid: 14023 components: - type: Transform - pos: -25.5,-48.5 + rot: 3.141592653589793 rad + pos: -108.5,2.5 parent: 2 - uid: 14024 components: - type: Transform - pos: -23.5,-48.5 + rot: 3.141592653589793 rad + pos: -108.5,3.5 parent: 2 - uid: 14025 components: - type: Transform - pos: -23.5,-49.5 + rot: 3.141592653589793 rad + pos: -109.5,4.5 parent: 2 +- proto: CarpetWhite + entities: - uid: 14026 components: - type: Transform - pos: -25.5,-47.5 + rot: 1.5707963267948966 rad + pos: 63.5,12.5 parent: 2 - uid: 14027 components: - type: Transform - pos: -24.5,-47.5 + rot: 1.5707963267948966 rad + pos: 63.5,11.5 parent: 2 - uid: 14028 components: - type: Transform - pos: -23.5,-47.5 + rot: 1.5707963267948966 rad + pos: 64.5,11.5 parent: 2 - uid: 14029 components: - type: Transform - pos: -24.5,-49.5 + rot: 1.5707963267948966 rad + pos: 64.5,12.5 parent: 2 - uid: 14030 components: - type: Transform - pos: -17.5,-23.5 + rot: 1.5707963267948966 rad + pos: 63.5,10.5 parent: 2 - uid: 14031 components: - type: Transform - pos: -17.5,-22.5 + rot: 1.5707963267948966 rad + pos: 64.5,10.5 parent: 2 +- proto: CarrotSeeds + entities: + - uid: 41383 + components: + - type: Transform + pos: 52.732292,69.5744 + parent: 40599 +- proto: CartridgeCap + entities: - uid: 14032 components: - type: Transform - pos: -16.5,-19.5 + rot: 1.5707963267948966 rad + pos: 67.828636,17.392303 parent: 2 - uid: 14033 components: - type: Transform - pos: -16.5,-20.5 + rot: 3.141592653589793 rad + pos: 65.609886,17.111053 parent: 2 - uid: 14034 components: - type: Transform - pos: -15.5,-32.5 + pos: 67.56301,17.032928 parent: 2 + - uid: 41384 + components: + - type: Transform + rot: 3.717551306747922 rad + pos: 41.13054,79.82915 + parent: 40599 + - uid: 41385 + components: + - type: Transform + rot: 0.20943951023931956 rad + pos: 41.72429,78.12602 + parent: 40599 + - uid: 41386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.396164,80.65727 + parent: 40599 + - uid: 41387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.44304,80.65727 + parent: 40599 +- proto: CartridgeMagnum + entities: - uid: 14035 components: - type: Transform - pos: -12.5,-32.5 + rot: 1.5707963267948966 rad + pos: -32.202366,29.55423 parent: 2 - uid: 14036 components: - type: Transform - pos: -13.5,-32.5 + rot: 1.5707963267948966 rad + pos: -32.09299,29.55423 parent: 2 - uid: 14037 components: - type: Transform - pos: -19.5,-29.5 + rot: 1.5707963267948966 rad + pos: -30.233616,28.413605 parent: 2 - uid: 14038 components: - type: Transform - pos: 11.5,-46.5 + pos: -32.608616,30.351105 parent: 2 + - uid: 41388 + components: + - type: Transform + rot: 1.7453292519943295 rad + pos: 71.76521,78.614105 + parent: 40599 + - uid: 41389 + components: + - type: Transform + rot: 0.3665191429188092 rad + pos: 71.26521,78.31723 + parent: 40599 + - uid: 41390 + components: + - type: Transform + rot: -2.1467549799530254 rad + pos: 71.65584,78.145355 + parent: 40599 +- proto: CartridgePistol + entities: - uid: 14039 components: - type: Transform - pos: 11.5,-43.5 + rot: 1.5707963267948966 rad + pos: -28.498878,-17.377514 parent: 2 +- proto: CarvedPumpkin + entities: - uid: 14040 components: - type: Transform - pos: 13.5,-41.5 + pos: -45.583145,34.64547 parent: 2 - uid: 14041 components: - type: Transform - pos: 13.5,-42.5 + pos: -0.4916234,18.48521 parent: 2 - uid: 14042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-14.5 + pos: 100.40429,-27.485023 parent: 2 - uid: 14043 components: - type: Transform - pos: -11.5,18.5 + pos: 29.48359,19.872372 parent: 2 - uid: 14044 components: - type: Transform - pos: -11.5,19.5 + pos: 34.357464,0.53125095 parent: 2 - uid: 14045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-25.5 + pos: 45.543842,-0.3886032 parent: 2 +- proto: CarvedPumpkinLarge + entities: - uid: 14046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-15.5 + pos: 50.42554,1.1800611 parent: 2 +- proto: CarvedPumpkinSmall + entities: - uid: 14047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-16.5 + pos: -13.333718,-24.405302 parent: 2 - uid: 14048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-16.5 + pos: 26.229036,-4.504342 parent: 2 - uid: 14049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-16.5 + pos: -30.959194,29.679356 parent: 2 - uid: 14050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-16.5 + pos: 29.530464,24.358152 parent: 2 - uid: 14051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 + pos: 19.136759,-15.439028 parent: 2 - uid: 14052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-15.5 + pos: 1.4927516,21.500835 parent: 2 - uid: 14053 components: - type: Transform - pos: -44.5,-27.5 + pos: 36.92517,-0.98491764 parent: 2 - uid: 14054 components: - type: Transform - pos: -43.5,-27.5 + pos: 0.4302516,18.532085 parent: 2 - uid: 14055 components: - type: Transform - pos: -42.5,-27.5 + pos: 102.701164,-26.219398 parent: 2 - uid: 14056 components: - type: Transform - pos: -50.5,-25.5 + pos: 93.482414,-14.496843 parent: 2 - uid: 14057 components: - type: Transform - pos: -51.5,-25.5 + pos: -23.68491,0.5416967 parent: 2 - uid: 14058 components: - type: Transform - pos: -42.5,-23.5 + pos: 44.450092,0.5645218 parent: 2 +- proto: Catwalk + entities: - uid: 14059 components: - type: Transform - pos: -41.5,-23.5 + rot: 1.5707963267948966 rad + pos: -36.5,66.5 parent: 2 - uid: 14060 components: - type: Transform - pos: 1.5,22.5 + rot: 1.5707963267948966 rad + pos: -38.5,65.5 parent: 2 - uid: 14061 components: - type: Transform - pos: 2.5,22.5 + rot: 1.5707963267948966 rad + pos: -36.5,68.5 parent: 2 - uid: 14062 components: - type: Transform - pos: -52.5,-25.5 + rot: 1.5707963267948966 rad + pos: -36.5,65.5 parent: 2 - uid: 14063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,44.5 + rot: 1.5707963267948966 rad + pos: -36.5,63.5 parent: 2 - uid: 14064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,43.5 + rot: 1.5707963267948966 rad + pos: -36.5,64.5 parent: 2 - uid: 14065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,44.5 + rot: 1.5707963267948966 rad + pos: -38.5,63.5 parent: 2 - uid: 14066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,45.5 + pos: -52.5,23.5 parent: 2 - uid: 14067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,45.5 + pos: -53.5,23.5 parent: 2 - uid: 14068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,45.5 + rot: -1.5707963267948966 rad + pos: 62.5,-9.5 parent: 2 - uid: 14069 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,45.5 + rot: -1.5707963267948966 rad + pos: 62.5,-10.5 parent: 2 - uid: 14070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,46.5 + pos: 65.5,-5.5 parent: 2 - uid: 14071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,46.5 + pos: -58.5,64.5 parent: 2 - uid: 14072 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,46.5 + pos: -58.5,65.5 parent: 2 - uid: 14073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,49.5 + pos: -19.5,-3.5 parent: 2 - uid: 14074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,48.5 + pos: 47.5,29.5 parent: 2 - uid: 14075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-43.5 + pos: 51.5,25.5 parent: 2 - uid: 14076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-43.5 + pos: 51.5,24.5 parent: 2 - uid: 14077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-43.5 + pos: 50.5,18.5 parent: 2 - uid: 14078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-43.5 + pos: 48.5,29.5 parent: 2 - uid: 14079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-43.5 + pos: 49.5,28.5 parent: 2 - uid: 14080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-41.5 + pos: 51.5,21.5 parent: 2 - uid: 14081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-41.5 + pos: 51.5,18.5 parent: 2 - uid: 14082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-41.5 + pos: 11.5,-45.5 parent: 2 - uid: 14083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-41.5 + pos: 12.5,-42.5 parent: 2 - uid: 14084 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-41.5 + pos: -21.5,-38.5 parent: 2 - uid: 14085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-39.5 + pos: 48.5,-18.5 parent: 2 - uid: 14086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-39.5 + pos: 47.5,-19.5 parent: 2 - uid: 14087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-39.5 + pos: 62.5,-8.5 parent: 2 - uid: 14088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-39.5 + pos: 57.5,-11.5 parent: 2 - uid: 14089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-37.5 + pos: 60.5,-11.5 parent: 2 - uid: 14090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-37.5 + pos: 61.5,-11.5 parent: 2 - uid: 14091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-37.5 + pos: 61.5,-10.5 parent: 2 - uid: 14092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-37.5 + pos: 61.5,-8.5 parent: 2 - uid: 14093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-37.5 + pos: 61.5,-4.5 parent: 2 - uid: 14094 components: - type: Transform - pos: 33.5,-31.5 + pos: 61.5,-5.5 parent: 2 - uid: 14095 components: - type: Transform - pos: 51.5,-34.5 + pos: 61.5,-6.5 parent: 2 - uid: 14096 components: - type: Transform - pos: 51.5,-35.5 + pos: 61.5,-7.5 parent: 2 - uid: 14097 components: - type: Transform - pos: 50.5,-34.5 + pos: 60.5,-7.5 parent: 2 - uid: 14098 components: - type: Transform - pos: 37.5,-29.5 + pos: 59.5,-7.5 parent: 2 - uid: 14099 components: - type: Transform - pos: 35.5,-30.5 + rot: -1.5707963267948966 rad + pos: -7.5,11.5 parent: 2 - uid: 14100 components: - type: Transform - pos: 36.5,-29.5 + pos: 39.5,32.5 parent: 2 - uid: 14101 components: - type: Transform - pos: 34.5,-31.5 + pos: 38.5,35.5 parent: 2 - uid: 14102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-48.5 + pos: 36.5,37.5 parent: 2 - uid: 14103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-49.5 + pos: 38.5,32.5 parent: 2 - uid: 14104 components: - type: Transform - pos: 36.5,-41.5 + pos: 38.5,34.5 parent: 2 - uid: 14105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-47.5 + pos: 37.5,36.5 parent: 2 - uid: 14106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-47.5 + pos: 35.5,37.5 parent: 2 - uid: 14107 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-47.5 + pos: 11.5,11.5 parent: 2 - uid: 14108 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-47.5 + pos: -6.5,11.5 parent: 2 - uid: 14109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-46.5 + pos: 37.5,33.5 parent: 2 - uid: 14110 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-45.5 + pos: 12.5,11.5 parent: 2 - uid: 14111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-46.5 + pos: 37.5,31.5 parent: 2 - uid: 14112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-45.5 + pos: 36.5,33.5 parent: 2 - uid: 14113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-49.5 + pos: 46.5,29.5 parent: 2 - uid: 14114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-48.5 + pos: 51.5,20.5 parent: 2 - uid: 14115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-47.5 + pos: 51.5,19.5 parent: 2 - uid: 14116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-46.5 + pos: 46.5,31.5 parent: 2 - uid: 14117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-48.5 + pos: 44.5,32.5 parent: 2 - uid: 14118 components: - type: Transform - pos: 71.5,24.5 + pos: 43.5,32.5 parent: 2 - uid: 14119 components: - type: Transform - pos: 76.5,20.5 + pos: 50.5,24.5 parent: 2 - uid: 14120 components: - type: Transform - pos: -31.5,55.5 + pos: 45.5,31.5 parent: 2 - uid: 14121 components: - type: Transform - pos: -31.5,57.5 + pos: 46.5,30.5 parent: 2 - uid: 14122 components: - type: Transform - pos: -31.5,56.5 + pos: 13.5,-11.5 parent: 2 - uid: 14123 components: - type: Transform - pos: 72.5,14.5 + pos: 14.5,-11.5 parent: 2 - uid: 14124 components: - type: Transform - pos: 66.5,-5.5 + pos: 14.5,-12.5 parent: 2 - uid: 14125 components: - type: Transform - pos: 68.5,-1.5 + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 parent: 2 - uid: 14126 components: - type: Transform - pos: 72.5,14.5 + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 parent: 2 - uid: 14127 components: - type: Transform - pos: 64.5,30.5 + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 parent: 2 - uid: 14128 components: - type: Transform - pos: 63.5,30.5 + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 parent: 2 - uid: 14129 components: - type: Transform - pos: 66.5,28.5 + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 parent: 2 - uid: 14130 components: - type: Transform - pos: 72.5,15.5 + rot: 1.5707963267948966 rad + pos: -9.5,-28.5 parent: 2 - uid: 14131 components: - type: Transform - pos: 75.5,22.5 + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 parent: 2 - uid: 14132 components: - type: Transform - pos: -58.5,63.5 + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 parent: 2 - uid: 14133 components: - type: Transform - pos: 74.5,22.5 + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 parent: 2 - uid: 14134 components: - type: Transform - pos: 73.5,16.5 + rot: 1.5707963267948966 rad + pos: -9.5,-49.5 parent: 2 - uid: 14135 components: - type: Transform - pos: 77.5,18.5 + rot: 1.5707963267948966 rad + pos: -9.5,-48.5 parent: 2 - uid: 14136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,27.5 + rot: 1.5707963267948966 rad + pos: -9.5,-47.5 parent: 2 - uid: 14137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,26.5 + rot: 1.5707963267948966 rad + pos: -9.5,-46.5 parent: 2 - uid: 14138 components: - type: Transform - pos: -56.5,65.5 + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 parent: 2 - uid: 14139 components: - type: Transform - pos: -54.5,64.5 + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 parent: 2 - uid: 14140 components: - type: Transform - pos: -54.5,63.5 + rot: 1.5707963267948966 rad + pos: -9.5,-43.5 parent: 2 - uid: 14141 components: - type: Transform - pos: -55.5,64.5 + rot: 1.5707963267948966 rad + pos: -9.5,-42.5 parent: 2 - uid: 14142 components: - type: Transform - pos: -56.5,64.5 + rot: 1.5707963267948966 rad + pos: -9.5,-41.5 parent: 2 - uid: 14143 components: - type: Transform - pos: -58.5,66.5 + pos: 22.5,-47.5 parent: 2 - uid: 14144 components: - type: Transform - pos: -59.5,66.5 + pos: 23.5,-47.5 parent: 2 - uid: 14145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,60.5 + pos: 24.5,-47.5 parent: 2 - uid: 14146 components: - type: Transform - pos: -60.5,70.5 + pos: 25.5,-47.5 parent: 2 - uid: 14147 components: - type: Transform - pos: -59.5,70.5 + pos: 29.5,-47.5 parent: 2 - uid: 14148 components: - type: Transform - pos: -59.5,71.5 + pos: 30.5,-47.5 parent: 2 - uid: 14149 components: - type: Transform - pos: 77.5,17.5 + pos: 31.5,-47.5 parent: 2 - uid: 14150 components: - type: Transform - pos: -27.5,59.5 + pos: 32.5,-47.5 parent: 2 - uid: 14151 components: - type: Transform - pos: -26.5,59.5 + rot: 1.5707963267948966 rad + pos: 25.5,-0.5 parent: 2 - uid: 14152 components: - type: Transform - pos: 70.5,25.5 + rot: 1.5707963267948966 rad + pos: 25.5,0.5 parent: 2 - uid: 14153 components: - type: Transform - pos: -28.5,59.5 + rot: 1.5707963267948966 rad + pos: 24.5,0.5 parent: 2 - uid: 14154 components: - type: Transform - pos: -74.5,74.5 + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 parent: 2 - uid: 14155 components: - type: Transform - pos: -73.5,74.5 + rot: 1.5707963267948966 rad + pos: 24.5,1.5 parent: 2 - uid: 14156 components: - type: Transform - pos: -72.5,74.5 + rot: 1.5707963267948966 rad + pos: 25.5,1.5 parent: 2 - uid: 14157 components: - type: Transform - pos: -71.5,74.5 + rot: 1.5707963267948966 rad + pos: -12.5,19.5 parent: 2 - uid: 14158 components: - type: Transform - pos: -69.5,74.5 + rot: 1.5707963267948966 rad + pos: -12.5,18.5 parent: 2 - uid: 14159 components: - type: Transform - pos: -68.5,23.5 + rot: 1.5707963267948966 rad + pos: -10.5,19.5 parent: 2 - uid: 14160 components: - type: Transform - pos: -69.5,23.5 + rot: 1.5707963267948966 rad + pos: -10.5,18.5 parent: 2 - uid: 14161 components: - type: Transform - pos: -70.5,23.5 + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 parent: 2 - uid: 14162 components: - type: Transform - pos: -71.5,23.5 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 parent: 2 - uid: 14163 components: - type: Transform - pos: -71.5,24.5 + rot: -1.5707963267948966 rad + pos: 25.5,-16.5 parent: 2 - uid: 14164 components: - type: Transform - pos: -71.5,25.5 + rot: -1.5707963267948966 rad + pos: 24.5,-16.5 parent: 2 - uid: 14165 components: - type: Transform - pos: -72.5,25.5 + rot: -1.5707963267948966 rad + pos: 24.5,-15.5 parent: 2 - uid: 14166 components: - type: Transform - pos: -72.5,24.5 + rot: -1.5707963267948966 rad + pos: 25.5,-15.5 parent: 2 - uid: 14167 components: - type: Transform - pos: -73.5,25.5 + pos: 14.5,-13.5 parent: 2 - uid: 14168 components: - type: Transform - pos: -74.5,25.5 + pos: 43.5,-41.5 parent: 2 - uid: 14169 components: - type: Transform - pos: -75.5,25.5 + rot: -1.5707963267948966 rad + pos: -20.5,-34.5 parent: 2 - uid: 14170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,27.5 + rot: -1.5707963267948966 rad + pos: -22.5,-34.5 parent: 2 - uid: 14171 components: - type: Transform - pos: -67.5,74.5 + pos: 44.5,-41.5 parent: 2 - uid: 14172 components: - type: Transform - pos: -66.5,74.5 + pos: 39.5,-41.5 parent: 2 - uid: 14173 components: - type: Transform - pos: -74.5,72.5 + pos: 43.5,-39.5 parent: 2 - uid: 14174 components: - type: Transform - pos: -73.5,72.5 + pos: 43.5,-38.5 parent: 2 - uid: 14175 components: - type: Transform - pos: -70.5,72.5 + rot: -1.5707963267948966 rad + pos: -22.5,-37.5 parent: 2 - uid: 14176 components: - type: Transform - pos: -69.5,72.5 + rot: -1.5707963267948966 rad + pos: -22.5,-38.5 parent: 2 - uid: 14177 components: - type: Transform - pos: -68.5,72.5 + rot: -1.5707963267948966 rad + pos: -21.5,-36.5 parent: 2 - uid: 14178 components: - type: Transform - pos: -67.5,72.5 + rot: -1.5707963267948966 rad + pos: -20.5,-36.5 parent: 2 - uid: 14179 components: - type: Transform - pos: -66.5,72.5 + pos: 40.5,-41.5 parent: 2 - uid: 14180 components: - type: Transform - pos: -66.5,71.5 + pos: 39.5,-40.5 parent: 2 - uid: 14181 components: - type: Transform - pos: -64.5,70.5 + rot: -1.5707963267948966 rad + pos: -21.5,-34.5 parent: 2 - uid: 14182 components: - type: Transform - pos: -66.5,73.5 + rot: -1.5707963267948966 rad + pos: -20.5,-37.5 parent: 2 - uid: 14183 components: - type: Transform - pos: -65.5,70.5 + rot: -1.5707963267948966 rad + pos: -20.5,-38.5 parent: 2 - uid: 14184 components: - type: Transform - pos: -63.5,71.5 + rot: -1.5707963267948966 rad + pos: -22.5,-36.5 parent: 2 - uid: 14185 components: - type: Transform - pos: -63.5,72.5 + rot: -1.5707963267948966 rad + pos: -22.5,-35.5 parent: 2 - uid: 14186 components: - type: Transform - pos: -63.5,73.5 + rot: -1.5707963267948966 rad + pos: -20.5,-35.5 parent: 2 - uid: 14187 components: - type: Transform - pos: -63.5,75.5 + rot: -1.5707963267948966 rad + pos: -7.5,10.5 parent: 2 - uid: 14188 components: - type: Transform - pos: -61.5,74.5 + rot: -1.5707963267948966 rad + pos: -7.5,9.5 parent: 2 - uid: 14189 components: - type: Transform - pos: -61.5,73.5 + pos: 12.5,10.5 parent: 2 - uid: 14190 components: - type: Transform - pos: -61.5,72.5 + pos: 12.5,9.5 parent: 2 - uid: 14191 components: - type: Transform - pos: -61.5,71.5 + pos: 93.5,-39.5 parent: 2 - uid: 14192 components: - type: Transform - pos: -61.5,70.5 + pos: 93.5,-36.5 parent: 2 - uid: 14193 components: - type: Transform - pos: -62.5,70.5 + pos: 93.5,-40.5 parent: 2 - uid: 14194 components: - type: Transform - pos: -59.5,73.5 + pos: 93.5,-38.5 parent: 2 - uid: 14195 components: - type: Transform - pos: -59.5,75.5 + pos: 93.5,-35.5 parent: 2 - uid: 14196 components: - type: Transform - pos: -58.5,70.5 + pos: 94.5,-35.5 parent: 2 - uid: 14197 components: - type: Transform - pos: -57.5,70.5 + pos: 92.5,-35.5 parent: 2 - uid: 14198 components: - type: Transform - pos: -56.5,71.5 + pos: -14.5,-55.5 parent: 2 - uid: 14199 components: - type: Transform - pos: -56.5,72.5 + pos: -14.5,-56.5 parent: 2 - uid: 14200 components: - type: Transform - pos: -55.5,72.5 + pos: -14.5,-48.5 parent: 2 - uid: 14201 components: - type: Transform - pos: -54.5,72.5 + pos: -14.5,-57.5 parent: 2 - uid: 14202 components: - type: Transform - pos: -52.5,72.5 + pos: -14.5,-50.5 parent: 2 - uid: 14203 components: - type: Transform - pos: -50.5,72.5 + pos: -14.5,-49.5 parent: 2 - uid: 14204 components: - type: Transform - pos: -49.5,72.5 + pos: -14.5,-59.5 parent: 2 - uid: 14205 components: - type: Transform - pos: -48.5,72.5 + pos: -14.5,-60.5 parent: 2 - uid: 14206 components: - type: Transform - pos: -55.5,74.5 + pos: -14.5,-61.5 parent: 2 - uid: 14207 components: - type: Transform - pos: -53.5,74.5 + pos: -26.5,-45.5 parent: 2 - uid: 14208 components: - type: Transform - pos: -52.5,74.5 + pos: -12.5,-61.5 parent: 2 - uid: 14209 components: - type: Transform - pos: -51.5,74.5 + pos: -11.5,-61.5 parent: 2 - uid: 14210 components: - type: Transform - pos: -50.5,74.5 + pos: -10.5,-61.5 parent: 2 - uid: 14211 components: - type: Transform - pos: -49.5,74.5 + pos: -27.5,-45.5 parent: 2 - uid: 14212 components: - type: Transform - pos: -56.5,73.5 + pos: -8.5,-61.5 parent: 2 - uid: 14213 components: - type: Transform - pos: -62.5,69.5 + pos: -7.5,-61.5 parent: 2 - uid: 14214 components: - type: Transform - pos: -61.5,68.5 + pos: -6.5,-61.5 parent: 2 - uid: 14215 components: - type: Transform - pos: -60.5,23.5 + pos: 1.5,-61.5 parent: 2 - uid: 14216 components: - type: Transform - pos: -59.5,23.5 + pos: -4.5,-61.5 parent: 2 - uid: 14217 components: - type: Transform - pos: -58.5,23.5 + pos: -3.5,-61.5 parent: 2 - uid: 14218 components: - type: Transform - pos: -57.5,23.5 + pos: -2.5,-61.5 parent: 2 - uid: 14219 components: - type: Transform - pos: -56.5,23.5 + pos: 0.5,-61.5 parent: 2 - uid: 14220 components: - type: Transform - pos: -57.5,24.5 + pos: -0.5,-61.5 parent: 2 - uid: 14221 components: - type: Transform - pos: -57.5,25.5 + pos: -25.5,-45.5 parent: 2 - uid: 14222 components: - type: Transform - pos: -58.5,22.5 + pos: -24.5,-45.5 parent: 2 - uid: 14223 components: - type: Transform - pos: -52.5,22.5 + pos: -23.5,-45.5 parent: 2 - uid: 14224 components: - type: Transform - pos: -51.5,22.5 + pos: -22.5,-45.5 parent: 2 - uid: 14225 components: - type: Transform - pos: -50.5,22.5 + pos: -21.5,-45.5 parent: 2 - uid: 14226 components: - type: Transform - pos: -50.5,21.5 + pos: -20.5,-45.5 parent: 2 - uid: 14227 components: - type: Transform - pos: -83.5,42.5 + pos: -19.5,-45.5 parent: 2 - uid: 14228 components: - type: Transform - pos: -82.5,42.5 + pos: -18.5,-45.5 parent: 2 - uid: 14229 components: - type: Transform - pos: -82.5,43.5 + pos: -17.5,-45.5 parent: 2 - uid: 14230 components: - type: Transform - pos: -82.5,44.5 + pos: -16.5,-45.5 parent: 2 - uid: 14231 components: - type: Transform - pos: -81.5,44.5 + pos: -15.5,-45.5 parent: 2 - uid: 14232 components: - type: Transform - pos: -81.5,45.5 + pos: -14.5,-45.5 parent: 2 - uid: 14233 components: - type: Transform - pos: -80.5,45.5 + pos: -13.5,-45.5 parent: 2 - uid: 14234 components: - type: Transform - pos: -81.5,46.5 + pos: -28.5,-45.5 parent: 2 - uid: 14235 components: - type: Transform - pos: -81.5,47.5 + pos: -29.5,-45.5 parent: 2 - uid: 14236 components: - type: Transform - pos: -81.5,48.5 + pos: -14.5,-41.5 parent: 2 - uid: 14237 components: - type: Transform - pos: -82.5,48.5 + pos: -14.5,-40.5 parent: 2 - uid: 14238 components: - type: Transform - pos: -32.5,57.5 + pos: -14.5,-39.5 parent: 2 - uid: 14239 components: - type: Transform - pos: -31.5,58.5 + pos: -14.5,-38.5 parent: 2 - uid: 14240 components: - type: Transform - pos: -133.5,7.5 + pos: -16.5,-38.5 parent: 2 - uid: 14241 components: - type: Transform - pos: -133.5,8.5 + pos: -16.5,-39.5 parent: 2 - uid: 14242 components: - type: Transform - pos: -133.5,9.5 + pos: -16.5,-40.5 parent: 2 - uid: 14243 components: - type: Transform - pos: -132.5,9.5 + pos: -16.5,-41.5 parent: 2 - uid: 14244 components: - type: Transform - pos: -132.5,10.5 + pos: -12.5,-41.5 parent: 2 - uid: 14245 components: - type: Transform - pos: -34.5,-63.5 + pos: -12.5,-40.5 parent: 2 - uid: 14246 components: - type: Transform - pos: -34.5,-64.5 + pos: -12.5,-39.5 parent: 2 - uid: 14247 components: - type: Transform - pos: -34.5,-65.5 + pos: -12.5,-38.5 parent: 2 - uid: 14248 components: - type: Transform - pos: -34.5,-70.5 + pos: -14.5,-37.5 parent: 2 - uid: 14249 components: - type: Transform - pos: -34.5,-69.5 + pos: 0.5,-68.5 parent: 2 - uid: 14250 components: - type: Transform - pos: -38.5,-67.5 + pos: 0.5,-69.5 parent: 2 - uid: 14251 components: - type: Transform - pos: -37.5,-67.5 + pos: 0.5,-70.5 parent: 2 - uid: 14252 components: - type: Transform - pos: -34.5,-67.5 + pos: 1.5,-70.5 parent: 2 - uid: 14253 components: - type: Transform - pos: -30.5,-67.5 + pos: 1.5,-69.5 parent: 2 - uid: 14254 components: - type: Transform - pos: -31.5,-67.5 + pos: 1.5,-68.5 parent: 2 - uid: 14255 components: - type: Transform - pos: -30.5,-69.5 + pos: 2.5,-68.5 parent: 2 - uid: 14256 components: - type: Transform - pos: -31.5,-69.5 + pos: 2.5,-69.5 parent: 2 - uid: 14257 components: - type: Transform - pos: -33.5,-69.5 + pos: 2.5,-70.5 parent: 2 - uid: 14258 components: - type: Transform - pos: -37.5,-69.5 + rot: 1.5707963267948966 rad + pos: -20.5,-4.5 parent: 2 - uid: 14259 components: - type: Transform - pos: -38.5,-69.5 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 parent: 2 - uid: 14260 components: - type: Transform - pos: -36.5,-69.5 + pos: -19.5,-2.5 parent: 2 - uid: 14261 components: - type: Transform - pos: -38.5,-65.5 + pos: -72.5,38.5 parent: 2 - uid: 14262 components: - type: Transform - pos: -37.5,-65.5 + pos: -71.5,38.5 parent: 2 - uid: 14263 components: - type: Transform - pos: -36.5,-65.5 + pos: -72.5,39.5 parent: 2 - uid: 14264 components: - type: Transform - pos: -31.5,-65.5 + pos: 61.5,-14.5 parent: 2 - uid: 14265 components: - type: Transform - pos: -30.5,-65.5 + pos: 61.5,-13.5 parent: 2 - uid: 14266 components: - type: Transform - pos: -32.5,-65.5 + pos: 61.5,-19.5 parent: 2 - uid: 14267 components: - type: Transform - pos: -33.5,-65.5 + pos: 61.5,-17.5 parent: 2 - uid: 14268 components: - type: Transform - pos: -35.5,-67.5 + pos: 51.5,-31.5 parent: 2 - uid: 14269 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-71.5 + pos: 40.5,-27.5 parent: 2 - uid: 14270 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-71.5 + pos: 52.5,-26.5 parent: 2 - uid: 14271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-72.5 + pos: 51.5,-32.5 parent: 2 - uid: 14272 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-71.5 + pos: 52.5,-27.5 parent: 2 - uid: 14273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-71.5 + pos: 51.5,-29.5 parent: 2 - uid: 14274 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-71.5 + pos: 57.5,41.5 parent: 2 - uid: 14275 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-71.5 + pos: 61.5,30.5 parent: 2 - uid: 14276 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-71.5 + pos: 54.5,43.5 parent: 2 - uid: 14277 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-71.5 + pos: 61.5,32.5 parent: 2 - uid: 14278 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-71.5 + pos: 61.5,31.5 parent: 2 - uid: 14279 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-71.5 + pos: 60.5,35.5 parent: 2 - uid: 14280 components: - type: Transform - pos: -28.5,63.5 + rot: 3.141592653589793 rad + pos: 60.5,36.5 parent: 2 - uid: 14281 components: - type: Transform - pos: -28.5,62.5 + rot: 3.141592653589793 rad + pos: 58.5,39.5 parent: 2 - uid: 14282 components: - type: Transform - pos: -51.5,58.5 + rot: 3.141592653589793 rad + pos: 57.5,40.5 parent: 2 - uid: 14283 components: - type: Transform - pos: -51.5,59.5 + rot: 3.141592653589793 rad + pos: 60.5,22.5 parent: 2 - uid: 14284 components: - type: Transform - pos: -50.5,58.5 + rot: 3.141592653589793 rad + pos: 59.5,20.5 parent: 2 - uid: 14285 components: - type: Transform - pos: -49.5,58.5 + rot: 3.141592653589793 rad + pos: 60.5,24.5 parent: 2 - uid: 14286 components: - type: Transform - pos: -46.5,60.5 + rot: 3.141592653589793 rad + pos: 60.5,23.5 parent: 2 - uid: 14287 components: - type: Transform - pos: -45.5,61.5 + pos: 52.5,-37.5 parent: 2 - uid: 14288 components: - type: Transform - pos: -44.5,61.5 + pos: 41.5,-29.5 parent: 2 - uid: 14289 components: - type: Transform - pos: -43.5,62.5 + pos: 40.5,-29.5 parent: 2 - uid: 14290 components: - type: Transform - pos: -38.5,62.5 + pos: 71.5,0.5 parent: 2 - uid: 14291 components: - type: Transform - pos: -40.5,62.5 + pos: 73.5,-3.5 parent: 2 - uid: 14292 components: - type: Transform - pos: -38.5,61.5 + pos: -70.5,38.5 parent: 2 - uid: 14293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,18.5 + pos: 74.5,-5.5 parent: 2 - uid: 14294 components: - type: Transform - pos: -27.5,18.5 + pos: 74.5,-4.5 parent: 2 - uid: 14295 components: - type: Transform - pos: -27.5,19.5 + pos: 74.5,-2.5 parent: 2 - uid: 14296 components: - type: Transform - pos: -27.5,20.5 + pos: 71.5,1.5 parent: 2 - uid: 14297 components: - type: Transform - pos: -87.5,65.5 + pos: 72.5,3.5 parent: 2 - uid: 14298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-46.5 + pos: 72.5,2.5 parent: 2 - uid: 14299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-43.5 + pos: 71.5,7.5 parent: 2 - uid: 14300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 97.5,-44.5 + pos: 71.5,8.5 parent: 2 - uid: 14301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-46.5 + pos: 63.5,18.5 parent: 2 - uid: 14302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-45.5 + pos: 69.5,13.5 parent: 2 - uid: 14303 components: - type: Transform - pos: -30.5,-37.5 + pos: 68.5,14.5 parent: 2 - uid: 14304 components: - type: Transform - pos: -30.5,-38.5 + pos: 68.5,15.5 parent: 2 - uid: 14305 components: - type: Transform - pos: -30.5,-39.5 + pos: 62.5,18.5 parent: 2 - uid: 14306 components: - type: Transform - pos: -29.5,-37.5 + pos: 61.5,18.5 parent: 2 - uid: 14307 components: - type: Transform - pos: -29.5,-38.5 + pos: 56.5,19.5 parent: 2 - uid: 14308 components: - type: Transform - pos: -28.5,-37.5 + pos: 55.5,19.5 parent: 2 - uid: 14309 components: - type: Transform - pos: -28.5,-38.5 + pos: 52.5,19.5 parent: 2 - uid: 14310 components: - type: Transform - pos: -28.5,-39.5 + rot: 3.141592653589793 rad + pos: 60.5,20.5 parent: 2 - uid: 14311 components: - type: Transform - pos: -27.5,-37.5 + rot: 3.141592653589793 rad + pos: 57.5,39.5 parent: 2 - uid: 14312 components: - type: Transform - pos: -27.5,-38.5 + rot: 3.141592653589793 rad + pos: 57.5,41.5 parent: 2 - uid: 14313 components: - type: Transform - pos: -29.5,-39.5 + rot: 3.141592653589793 rad + pos: 53.5,43.5 parent: 2 - uid: 14314 components: - type: Transform - pos: -27.5,-39.5 + rot: 3.141592653589793 rad + pos: 52.5,43.5 parent: 2 - uid: 14315 components: - type: Transform - pos: -26.5,-37.5 + rot: 3.141592653589793 rad + pos: 51.5,43.5 parent: 2 - uid: 14316 components: - type: Transform - pos: -26.5,-38.5 + rot: 3.141592653589793 rad + pos: 45.5,43.5 parent: 2 - uid: 14317 components: - type: Transform - pos: -26.5,-39.5 + rot: 3.141592653589793 rad + pos: 46.5,43.5 parent: 2 - uid: 14318 components: - type: Transform - pos: 58.5,-39.5 + rot: 3.141592653589793 rad + pos: 44.5,43.5 parent: 2 - - uid: 40995 + - uid: 14319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,56.5 - parent: 40203 - - uid: 40996 + rot: 3.141592653589793 rad + pos: 40.5,44.5 + parent: 2 + - uid: 14320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,55.5 - parent: 40203 - - uid: 40997 + rot: 3.141592653589793 rad + pos: 39.5,44.5 + parent: 2 + - uid: 14321 components: - type: Transform - pos: 45.5,60.5 - parent: 40203 - - uid: 40998 + rot: 3.141592653589793 rad + pos: 38.5,44.5 + parent: 2 + - uid: 14322 components: - type: Transform - pos: 44.5,60.5 - parent: 40203 - - uid: 40999 + rot: 3.141592653589793 rad + pos: 37.5,44.5 + parent: 2 + - uid: 14323 components: - type: Transform - pos: 45.5,62.5 - parent: 40203 - - uid: 41000 + rot: 3.141592653589793 rad + pos: 36.5,41.5 + parent: 2 + - uid: 14324 components: - type: Transform - pos: 44.5,61.5 - parent: 40203 - - uid: 41001 + rot: 3.141592653589793 rad + pos: 37.5,40.5 + parent: 2 + - uid: 14325 components: - type: Transform - pos: 42.5,60.5 - parent: 40203 - - uid: 41002 + rot: 3.141592653589793 rad + pos: 33.5,44.5 + parent: 2 + - uid: 14326 components: - type: Transform - pos: 44.5,62.5 - parent: 40203 - - uid: 41003 + rot: 3.141592653589793 rad + pos: 34.5,43.5 + parent: 2 + - uid: 14327 components: - type: Transform - pos: 45.5,61.5 - parent: 40203 - - uid: 41004 + rot: 3.141592653589793 rad + pos: 32.5,45.5 + parent: 2 + - uid: 14328 components: - type: Transform - pos: 43.5,60.5 - parent: 40203 - - uid: 41005 + rot: 3.141592653589793 rad + pos: 32.5,44.5 + parent: 2 + - uid: 14329 components: - type: Transform - pos: 41.5,62.5 - parent: 40203 - - uid: 41006 + pos: 49.5,29.5 + parent: 2 + - uid: 14330 components: - type: Transform - pos: 41.5,60.5 - parent: 40203 - - uid: 41007 + pos: 51.5,23.5 + parent: 2 + - uid: 14331 components: - type: Transform - pos: 43.5,62.5 - parent: 40203 - - uid: 41008 + pos: -19.5,-25.5 + parent: 2 + - uid: 14332 components: - type: Transform - pos: 43.5,61.5 - parent: 40203 - - uid: 41009 + pos: -20.5,-25.5 + parent: 2 + - uid: 14333 components: - type: Transform - pos: 41.5,61.5 - parent: 40203 - - uid: 41010 + pos: -20.5,-26.5 + parent: 2 + - uid: 14334 components: - type: Transform - pos: 42.5,62.5 - parent: 40203 - - uid: 41011 + pos: -25.5,-49.5 + parent: 2 + - uid: 14335 components: - type: Transform - pos: 42.5,61.5 - parent: 40203 - - uid: 41012 + pos: -24.5,-48.5 + parent: 2 + - uid: 14336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,55.5 - parent: 40203 - - uid: 41013 + pos: -25.5,-48.5 + parent: 2 + - uid: 14337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,56.5 - parent: 40203 - - uid: 41014 + pos: -23.5,-48.5 + parent: 2 + - uid: 14338 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,56.5 - parent: 40203 - - uid: 41015 + pos: -23.5,-49.5 + parent: 2 + - uid: 14339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,56.5 - parent: 40203 - - uid: 41016 + pos: -25.5,-47.5 + parent: 2 + - uid: 14340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,56.5 - parent: 40203 - - uid: 41017 + pos: -24.5,-47.5 + parent: 2 + - uid: 14341 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,50.5 - parent: 40203 - - uid: 41018 + pos: -23.5,-47.5 + parent: 2 + - uid: 14342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,50.5 - parent: 40203 - - uid: 41019 + pos: -24.5,-49.5 + parent: 2 + - uid: 14343 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,50.5 - parent: 40203 - - uid: 41020 + pos: -17.5,-23.5 + parent: 2 + - uid: 14344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,50.5 - parent: 40203 - - uid: 41021 + pos: -17.5,-22.5 + parent: 2 + - uid: 14345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,57.5 - parent: 40203 - - uid: 41022 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,57.5 - parent: 40203 - - uid: 41023 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,57.5 - parent: 40203 - - uid: 41024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,54.5 - parent: 40203 - - uid: 41025 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,52.5 - parent: 40203 - - uid: 41026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,53.5 - parent: 40203 - - uid: 41027 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,52.5 - parent: 40203 - - uid: 41028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,52.5 - parent: 40203 - - uid: 41029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,54.5 - parent: 40203 - - uid: 41030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,55.5 - parent: 40203 - - uid: 41031 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,53.5 - parent: 40203 - - uid: 41032 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,56.5 - parent: 40203 - - uid: 41033 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,57.5 - parent: 40203 - - uid: 41034 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,58.5 - parent: 40203 - - uid: 41035 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,59.5 - parent: 40203 - - uid: 41036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,59.5 - parent: 40203 - - uid: 41037 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,60.5 - parent: 40203 - - uid: 41038 - components: - - type: Transform - pos: 59.5,49.5 - parent: 40203 - - uid: 41039 - components: - - type: Transform - pos: 59.5,48.5 - parent: 40203 - - uid: 41040 - components: - - type: Transform - pos: 58.5,48.5 - parent: 40203 - - uid: 41041 - components: - - type: Transform - pos: 56.5,48.5 - parent: 40203 - - uid: 41042 - components: - - type: Transform - pos: 55.5,48.5 - parent: 40203 - - uid: 41043 - components: - - type: Transform - pos: 54.5,48.5 - parent: 40203 - - uid: 41044 - components: - - type: Transform - pos: 53.5,48.5 - parent: 40203 - - uid: 41045 - components: - - type: Transform - pos: 57.5,48.5 - parent: 40203 - - uid: 41046 - components: - - type: Transform - pos: 52.5,48.5 - parent: 40203 - - uid: 41047 - components: - - type: Transform - pos: 52.5,47.5 - parent: 40203 - - uid: 41048 - components: - - type: Transform - pos: 52.5,46.5 - parent: 40203 - - uid: 41049 - components: - - type: Transform - pos: 52.5,44.5 - parent: 40203 - - uid: 41050 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,37.5 - parent: 40203 - - uid: 41051 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,43.5 - parent: 40203 - - uid: 41052 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,44.5 - parent: 40203 - - uid: 41053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,36.5 - parent: 40203 - - uid: 41054 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,36.5 - parent: 40203 - - uid: 41055 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,38.5 - parent: 40203 - - uid: 41056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,42.5 - parent: 40203 - - uid: 41057 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,45.5 - parent: 40203 - - uid: 41058 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,45.5 - parent: 40203 - - uid: 41059 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,44.5 - parent: 40203 - - uid: 41060 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,43.5 - parent: 40203 - - uid: 41061 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,44.5 - parent: 40203 - - uid: 41062 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,35.5 - parent: 40203 - - uid: 41063 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,36.5 - parent: 40203 - - uid: 41064 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,36.5 - parent: 40203 - - uid: 41065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,37.5 - parent: 40203 - - uid: 41066 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,37.5 - parent: 40203 - - uid: 41067 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,38.5 - parent: 40203 - - uid: 41068 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,42.5 - parent: 40203 - - uid: 41069 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 - parent: 40203 - - uid: 41070 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,40.5 - parent: 40203 - - uid: 41071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,39.5 - parent: 40203 - - uid: 41072 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,41.5 - parent: 40203 - - uid: 41073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,44.5 - parent: 40203 - - uid: 41074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,44.5 - parent: 40203 - - uid: 41075 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,45.5 - parent: 40203 - - uid: 41076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,45.5 - parent: 40203 - - uid: 41077 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,44.5 - parent: 40203 - - uid: 41078 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,35.5 - parent: 40203 - - uid: 41079 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,35.5 - parent: 40203 - - uid: 41080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,44.5 - parent: 40203 - - uid: 41081 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,45.5 - parent: 40203 - - uid: 41082 - components: - - type: Transform - pos: 40.5,53.5 - parent: 40203 - - uid: 41083 - components: - - type: Transform - pos: 42.5,53.5 - parent: 40203 - - uid: 41084 - components: - - type: Transform - pos: 43.5,53.5 - parent: 40203 - - uid: 41085 - components: - - type: Transform - pos: 44.5,53.5 - parent: 40203 - - uid: 41086 - components: - - type: Transform - pos: 41.5,53.5 - parent: 40203 - - uid: 41087 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,36.5 - parent: 40203 - - uid: 41088 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,36.5 - parent: 40203 - - uid: 41089 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,36.5 - parent: 40203 - - uid: 41090 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,36.5 - parent: 40203 - - uid: 41091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,36.5 - parent: 40203 - - uid: 41092 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,34.5 - parent: 40203 - - uid: 41093 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,34.5 - parent: 40203 - - uid: 41094 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,34.5 - parent: 40203 - - uid: 41095 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,34.5 - parent: 40203 - - uid: 41096 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,34.5 - parent: 40203 -- proto: Cautery - entities: - - uid: 14319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.741735,42.55134 - parent: 2 -- proto: Chair - entities: - - uid: 14320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-38.5 - parent: 2 - - uid: 14321 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-3.5 - parent: 2 - - uid: 14322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-3.5 - parent: 2 - - uid: 14323 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-11.5 - parent: 2 - - uid: 14324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,53.5 - parent: 2 - - uid: 14325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,10.5 - parent: 2 - - uid: 14326 - components: - - type: Transform - pos: 32.5,-52.5 - parent: 2 - - uid: 14327 - components: - - type: Transform - pos: 33.5,-52.5 - parent: 2 - - uid: 14328 - components: - - type: Transform - pos: 28.5,-51.5 - parent: 2 - - uid: 14329 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-49.5 - parent: 2 - - uid: 14330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-49.5 - parent: 2 - - uid: 14331 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-54.5 - parent: 2 - - uid: 14332 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-52.5 - parent: 2 - - uid: 14333 - components: - - type: Transform - pos: 28.5,-37.5 - parent: 2 - - uid: 14334 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,19.5 - parent: 2 - - uid: 14335 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,20.5 - parent: 2 - - uid: 14336 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-37.5 - parent: 2 - - uid: 14337 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-49.5 - parent: 2 - - uid: 14338 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-45.5 - parent: 2 - - uid: 14339 - components: - - type: Transform - pos: 25.5,-41.5 - parent: 2 - - uid: 14340 - components: - - type: Transform - pos: -50.5,6.5 - parent: 2 - - uid: 14341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,4.5 - parent: 2 - - uid: 14342 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-50.5 - parent: 2 - - uid: 14343 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,7.5 - parent: 2 - - uid: 14344 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,6.5 - parent: 2 - - uid: 14345 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,7.5 + pos: -16.5,-19.5 parent: 2 - uid: 14346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,6.5 + pos: -16.5,-20.5 parent: 2 - uid: 14347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,1.5 + pos: -15.5,-32.5 parent: 2 - uid: 14348 components: - type: Transform - pos: -50.5,3.5 + pos: -12.5,-32.5 parent: 2 - uid: 14349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,1.5 + pos: -13.5,-32.5 parent: 2 - uid: 14350 components: - type: Transform - pos: -49.5,6.5 + pos: -19.5,-29.5 parent: 2 - uid: 14351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,4.5 + pos: 11.5,-46.5 parent: 2 - uid: 14352 components: - type: Transform - pos: -49.5,3.5 + pos: 11.5,-43.5 parent: 2 - uid: 14353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-34.5 + pos: 13.5,-41.5 parent: 2 - uid: 14354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-35.5 + pos: 13.5,-42.5 parent: 2 - uid: 14355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-33.5 + pos: 57.5,-14.5 parent: 2 - uid: 14356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-33.5 + pos: -11.5,18.5 parent: 2 - uid: 14357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-31.5 + pos: -11.5,19.5 parent: 2 - uid: 14358 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-21.5 + pos: -21.5,-25.5 parent: 2 - uid: 14359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-20.5 + pos: 57.5,-15.5 parent: 2 - uid: 14360 components: - type: Transform - pos: 69.5,-9.5 + rot: 1.5707963267948966 rad + pos: 57.5,-16.5 parent: 2 - uid: 14361 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-10.5 + pos: 56.5,-16.5 parent: 2 - uid: 14362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-21.5 + pos: 55.5,-16.5 parent: 2 - uid: 14363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-22.5 + pos: -44.5,-27.5 parent: 2 - uid: 14364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-21.5 + pos: -43.5,-27.5 parent: 2 - uid: 14365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-14.5 + pos: -42.5,-27.5 parent: 2 - uid: 14366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,6.5 + pos: -50.5,-25.5 parent: 2 - uid: 14367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,5.5 + pos: -51.5,-25.5 parent: 2 - uid: 14368 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-4.5 + pos: -42.5,-23.5 parent: 2 - uid: 14369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-4.5 + pos: -41.5,-23.5 parent: 2 - uid: 14370 components: - type: Transform - pos: 53.5,-15.5 + pos: 1.5,22.5 parent: 2 - uid: 14371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-9.5 + pos: 2.5,22.5 parent: 2 - uid: 14372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-9.5 + pos: -52.5,-25.5 parent: 2 - uid: 14373 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,19.5 - parent: 2 - - uid: 41097 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,62.5 - parent: 40203 - - uid: 41098 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,79.5 - parent: 40203 - - uid: 41099 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,78.5 - parent: 40203 - - uid: 41100 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,78.5 - parent: 40203 - - uid: 41101 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,79.5 - parent: 40203 - - uid: 41102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,73.5 - parent: 40203 - - uid: 41103 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,70.5 - parent: 40203 - - uid: 41104 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,70.5 - parent: 40203 -- proto: ChairCarp - entities: + pos: 14.5,44.5 + parent: 2 - uid: 14374 components: - type: Transform - pos: 6.5,-34.5 + rot: 3.141592653589793 rad + pos: 13.5,43.5 parent: 2 - uid: 14375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-35.5 + rot: 3.141592653589793 rad + pos: 13.5,44.5 parent: 2 - uid: 14376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-35.5 + rot: 3.141592653589793 rad + pos: 13.5,45.5 parent: 2 - uid: 14377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-45.5 + rot: 3.141592653589793 rad + pos: 17.5,45.5 parent: 2 - uid: 14378 components: - type: Transform - pos: -5.5,36.5 + rot: 3.141592653589793 rad + pos: 18.5,45.5 parent: 2 - uid: 14379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,60.5 + rot: 3.141592653589793 rad + pos: 16.5,45.5 parent: 2 - uid: 14380 components: - type: Transform - pos: 41.5,53.5 + rot: 3.141592653589793 rad + pos: 23.5,46.5 parent: 2 - uid: 14381 components: - type: Transform - pos: -67.5,-2.5 + rot: 3.141592653589793 rad + pos: 24.5,46.5 parent: 2 - - type: PointLight - energy: 2 - color: '#F1C232FF' - radius: 2 - uid: 14382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-3.5 + rot: 3.141592653589793 rad + pos: 25.5,46.5 parent: 2 - - type: PointLight - energy: 2 - color: '#3D85C6FF' - radius: 2 - uid: 14383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-3.5 - parent: 2 - - type: PointLight - energy: 2 - color: '#D92020FF' - radius: 2 - - uid: 45105 - components: - - type: Transform - pos: -1.5,5.5 - parent: 44970 - - uid: 45106 - components: - - type: Transform - pos: 1.5,5.5 - parent: 44970 - - uid: 45107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 - parent: 44970 - - uid: 45108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,3.5 - parent: 44970 - - uid: 45109 - components: - - type: Transform - pos: -2.5,5.5 - parent: 44970 - - uid: 45110 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 44970 -- proto: ChairFolding - entities: + pos: 20.5,49.5 + parent: 2 - uid: 14384 components: - type: Transform rot: 3.141592653589793 rad - pos: 102.45449,-21.403572 + pos: 20.5,48.5 parent: 2 - uid: 14385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-52.5 + rot: -1.5707963267948966 rad + pos: 55.5,-43.5 parent: 2 - uid: 14386 components: - type: Transform - pos: 22.48456,-45.425278 + rot: -1.5707963267948966 rad + pos: 56.5,-43.5 parent: 2 - uid: 14387 components: - type: Transform - pos: 23.20331,-45.425278 + rot: -1.5707963267948966 rad + pos: 57.5,-43.5 parent: 2 - uid: 14388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.493212,-49.51819 + rot: -1.5707963267948966 rad + pos: 58.5,-43.5 parent: 2 - uid: 14389 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.41488,53.824158 + pos: 59.5,-43.5 parent: 2 - uid: 14390 components: - type: Transform - pos: 39.5,-45.5 + rot: -1.5707963267948966 rad + pos: 59.5,-41.5 parent: 2 - uid: 14391 components: - type: Transform - pos: 66.53162,-13.495409 + rot: -1.5707963267948966 rad + pos: 58.5,-41.5 parent: 2 - uid: 14392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.513275,-15.403383 + rot: -1.5707963267948966 rad + pos: 57.5,-41.5 parent: 2 - uid: 14393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.50425,-14.596163 + rot: -1.5707963267948966 rad + pos: 56.5,-41.5 parent: 2 - uid: 14394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.65433,17.630648 + rot: -1.5707963267948966 rad + pos: 55.5,-41.5 parent: 2 - uid: 14395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.28711,17.612303 + pos: 55.5,-39.5 parent: 2 - uid: 14396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.54786,52.74994 + rot: -1.5707963267948966 rad + pos: 56.5,-39.5 parent: 2 - uid: 14397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.23829,3.489825 + rot: -1.5707963267948966 rad + pos: 57.5,-39.5 parent: 2 - uid: 14398 components: - type: Transform - pos: -80.160164,4.63045 + rot: -1.5707963267948966 rad + pos: 59.5,-39.5 parent: 2 - uid: 14399 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.128914,3.8335745 + pos: 59.5,-37.5 parent: 2 - uid: 14400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.503914,1.6304494 + pos: 58.5,-37.5 parent: 2 - uid: 14401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.26057,68.79269 + rot: -1.5707963267948966 rad + pos: 57.5,-37.5 parent: 2 - uid: 14402 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.484694,-17.275656 + pos: 56.5,-37.5 parent: 2 - uid: 14403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.484694,-16.29128 + pos: 55.5,-37.5 parent: 2 - uid: 14404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.515944,-15.306906 + pos: 33.5,-31.5 parent: 2 - uid: 14405 components: - type: Transform - pos: 100.48166,-27.555984 + pos: 51.5,-34.5 parent: 2 - uid: 14406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.45253,-40.32536 + pos: 51.5,-35.5 parent: 2 - uid: 14407 components: - type: Transform - pos: -28.495218,43.568424 + pos: 50.5,-34.5 parent: 2 - - uid: 41105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.505125,28.77624 - parent: 40203 -- proto: ChairFoldingSpawnFolded - entities: - uid: 14408 components: - type: Transform - pos: 100.87463,-29.989363 + pos: 37.5,-29.5 parent: 2 - uid: 14409 components: - type: Transform - pos: 101.66916,-28.38411 + pos: 35.5,-30.5 parent: 2 - uid: 14410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.068115,11.309929 + pos: 36.5,-29.5 parent: 2 - uid: 14411 components: - type: Transform - pos: 55.358616,4.978217 + pos: 34.5,-31.5 parent: 2 - uid: 14412 components: - type: Transform - pos: 55.56174,4.696967 + rot: -1.5707963267948966 rad + pos: 32.5,-48.5 parent: 2 - uid: 14413 components: - type: Transform - pos: 55.452366,4.837592 + rot: -1.5707963267948966 rad + pos: 32.5,-49.5 parent: 2 - uid: 14414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.73511,65.5004 + pos: 36.5,-41.5 parent: 2 - uid: 14415 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.484694,-18.181906 + pos: 28.5,-47.5 parent: 2 - - uid: 41106 - components: - - type: Transform - pos: 59.270226,59.64274 - parent: 40203 - - uid: 41107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.722475,68.680145 - parent: 40203 -- proto: ChairGreyscale - entities: - uid: 14416 components: - type: Transform - pos: -25.5,-16.5 + rot: -1.5707963267948966 rad + pos: 27.5,-47.5 parent: 2 - uid: 14417 components: - type: Transform - pos: -25.5,-14.5 + rot: -1.5707963267948966 rad + pos: 26.5,-47.5 parent: 2 - uid: 14418 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,27.5 + pos: 21.5,-47.5 parent: 2 - uid: 14419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-0.5 + rot: -1.5707963267948966 rad + pos: 26.5,-46.5 parent: 2 - uid: 14420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,0.5 + rot: -1.5707963267948966 rad + pos: 26.5,-45.5 parent: 2 - uid: 14421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,1.5 + rot: -1.5707963267948966 rad + pos: 28.5,-46.5 parent: 2 - uid: 14422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,2.5 + rot: -1.5707963267948966 rad + pos: 28.5,-45.5 parent: 2 - uid: 14423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,2.5 + rot: -1.5707963267948966 rad + pos: 23.5,-49.5 parent: 2 - uid: 14424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,1.5 + rot: -1.5707963267948966 rad + pos: 23.5,-48.5 parent: 2 - uid: 14425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-0.5 + rot: -1.5707963267948966 rad + pos: 33.5,-47.5 parent: 2 - uid: 14426 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,0.5 + pos: 33.5,-46.5 parent: 2 - uid: 14427 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-0.5 + pos: 33.5,-48.5 parent: 2 - uid: 14428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,0.5 + pos: 71.5,24.5 parent: 2 - uid: 14429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 + pos: 76.5,20.5 parent: 2 - uid: 14430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,2.5 + pos: -31.5,55.5 parent: 2 - uid: 14431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-0.5 + pos: -31.5,57.5 parent: 2 - uid: 14432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,0.5 + pos: -31.5,56.5 parent: 2 - uid: 14433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,1.5 + pos: 72.5,14.5 parent: 2 - uid: 14434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,2.5 + pos: 66.5,-5.5 parent: 2 - uid: 14435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,27.5 + pos: 68.5,-1.5 parent: 2 - uid: 14436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,27.5 + pos: 72.5,14.5 parent: 2 - uid: 14437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,27.5 + pos: 64.5,30.5 parent: 2 - uid: 14438 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-56.5 + pos: 63.5,30.5 parent: 2 - uid: 14439 components: - type: Transform - pos: 8.5,-53.5 + pos: 66.5,28.5 parent: 2 - uid: 14440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,29.5 + pos: 72.5,15.5 parent: 2 - uid: 14441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,29.5 + pos: 75.5,22.5 parent: 2 - uid: 14442 components: - type: Transform - pos: -22.5,-15.5 + pos: -58.5,63.5 parent: 2 - uid: 14443 components: - type: Transform - pos: -24.5,-14.5 + pos: 74.5,22.5 parent: 2 - uid: 14444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,5.5 + pos: 73.5,16.5 parent: 2 - uid: 14445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,4.5 + pos: 77.5,18.5 parent: 2 - uid: 14446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,3.5 + rot: 3.141592653589793 rad + pos: -75.5,27.5 parent: 2 - uid: 14447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,5.5 + rot: 3.141592653589793 rad + pos: -75.5,26.5 parent: 2 - uid: 14448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,4.5 + pos: -56.5,65.5 parent: 2 - uid: 14449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,3.5 + pos: -54.5,64.5 parent: 2 - uid: 14450 components: - type: Transform - pos: -27.5,-16.5 + pos: -54.5,63.5 parent: 2 - uid: 14451 components: - type: Transform - pos: -28.5,-16.5 + pos: -55.5,64.5 parent: 2 - uid: 14452 components: - type: Transform - pos: -21.5,-15.5 + pos: -56.5,64.5 parent: 2 - uid: 14453 components: - type: Transform - pos: -30.5,-15.5 + pos: -58.5,66.5 parent: 2 - uid: 14454 components: - type: Transform - pos: -31.5,-15.5 + pos: -59.5,66.5 parent: 2 - uid: 14455 components: - type: Transform - pos: -28.5,-14.5 + rot: 3.141592653589793 rad + pos: -51.5,60.5 parent: 2 - uid: 14456 components: - type: Transform - pos: -27.5,-14.5 + pos: -60.5,70.5 parent: 2 - uid: 14457 components: - type: Transform - pos: -24.5,-16.5 + pos: -59.5,70.5 parent: 2 -- proto: ChairOfficeDark - entities: - uid: 14458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.52584,-9.199225 + pos: -59.5,71.5 parent: 2 - uid: 14459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.281586,13.026648 + pos: 77.5,17.5 parent: 2 - uid: 14460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.31654,22.511124 + pos: -27.5,59.5 parent: 2 - uid: 14461 components: - type: Transform - pos: 11.493872,31.580387 + pos: -26.5,59.5 parent: 2 - uid: 14462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5377269,4.737376 + pos: 70.5,25.5 parent: 2 - uid: 14463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.537677,-5.8628364 + pos: -28.5,59.5 parent: 2 - uid: 14464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.6235237,-12.390051 + pos: -74.5,74.5 parent: 2 - uid: 14465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.879389,-11.651037 + pos: -73.5,74.5 parent: 2 - uid: 14466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.501991,4.717472 + pos: -72.5,74.5 parent: 2 - uid: 14467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5306225,-36.83682 + pos: -71.5,74.5 parent: 2 - uid: 14468 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-37.5 + pos: -69.5,74.5 parent: 2 - uid: 14469 components: - type: Transform - pos: 27.950384,5.114047 + pos: -68.5,23.5 parent: 2 - uid: 14470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.446068,-7.1002116 + pos: -69.5,23.5 parent: 2 - uid: 14471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.782337,-12.501369 + pos: -70.5,23.5 parent: 2 - uid: 14472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.319968,-8.344826 + pos: -71.5,23.5 parent: 2 - uid: 14473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.741843,-9.376076 + pos: -71.5,24.5 parent: 2 - uid: 14474 components: - type: Transform - pos: 10.4990225,-5.832334 + pos: -71.5,25.5 parent: 2 - uid: 14475 components: - type: Transform - pos: 17.5,-34.5 + pos: -72.5,25.5 parent: 2 - uid: 14476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.507948,18.67524 + pos: -72.5,24.5 parent: 2 - uid: 14477 components: - type: Transform - pos: 45.5,-54.5 + pos: -73.5,25.5 parent: 2 - uid: 14478 components: - type: Transform - pos: 52.5,-54.5 + pos: -74.5,25.5 parent: 2 - uid: 14479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.7081,-26.339006 + pos: -75.5,25.5 parent: 2 - uid: 14480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,7.5 + rot: 3.141592653589793 rad + pos: -76.5,27.5 parent: 2 - uid: 14481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,6.5 + pos: -67.5,74.5 parent: 2 - uid: 14482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.425217,0.71265566 + pos: -66.5,74.5 parent: 2 - uid: 14483 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.643967,0.69703066 + pos: -74.5,72.5 parent: 2 - uid: 14484 components: - type: Transform - pos: -29.032661,-0.3403287 + pos: -73.5,72.5 parent: 2 - uid: 14485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.67883,-39.494766 + pos: -70.5,72.5 parent: 2 - uid: 14486 components: - type: Transform - pos: 39.5,-48.5 + pos: -69.5,72.5 parent: 2 - uid: 14487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.482006,1.5256951 + pos: -68.5,72.5 parent: 2 - uid: 14488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.482517,1.6282809 + pos: -67.5,72.5 parent: 2 - uid: 14489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,35.5 + pos: -66.5,72.5 parent: 2 - uid: 14490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,35.5 + pos: -66.5,71.5 parent: 2 - uid: 14491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.480796,-31.36179 + pos: -64.5,70.5 parent: 2 - uid: 14492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.569995,-32.342228 + pos: -66.5,73.5 parent: 2 - uid: 14493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.451962,52.655052 + pos: -65.5,70.5 parent: 2 - uid: 14494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-28.5 + pos: -63.5,71.5 parent: 2 - uid: 14495 components: - type: Transform - pos: -8.5,50.5 + pos: -63.5,72.5 parent: 2 - uid: 14496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.3873284,53.703247 + pos: -63.5,73.5 parent: 2 - uid: 14497 components: - type: Transform - pos: -36.5,-15.5 + pos: -63.5,75.5 parent: 2 - uid: 14498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-13.5 + pos: -61.5,74.5 parent: 2 - uid: 14499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.46098,-5.2507005 + pos: -61.5,73.5 parent: 2 - uid: 14500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,57.5 + pos: -61.5,72.5 parent: 2 - uid: 14501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,57.5 + pos: -61.5,71.5 parent: 2 - uid: 14502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.45136,21.7114 + pos: -61.5,70.5 parent: 2 - uid: 14503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.427605,-40.743286 + pos: -62.5,70.5 parent: 2 - uid: 14504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.40352,-30.6016 + pos: -59.5,73.5 parent: 2 - uid: 14505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.42659,-39.21917 + pos: -59.5,75.5 parent: 2 - uid: 14506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.535965,-40.37542 + pos: -58.5,70.5 parent: 2 - uid: 14507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.563354,18.712671 + pos: -57.5,70.5 parent: 2 - uid: 14508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.06964,4.619934 + pos: -56.5,71.5 parent: 2 - uid: 14509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.03839,4.6355596 + pos: -56.5,72.5 parent: 2 - - uid: 41108 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,60.5 - parent: 40203 - - uid: 41109 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 54.96346,71.57883 - parent: 40203 - - uid: 41110 - components: - - type: Transform - pos: 50.5,52.5 - parent: 40203 - - uid: 41111 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,55.5 - parent: 40203 -- proto: ChairOfficeLight - entities: - uid: 14510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.474349,44.10162 + pos: -55.5,72.5 parent: 2 - uid: 14511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-48.5 + pos: -54.5,72.5 parent: 2 - uid: 14512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.267315,-0.7266071 + pos: -52.5,72.5 parent: 2 - uid: 14513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.204815,-1.7109821 + pos: -50.5,72.5 parent: 2 - uid: 14514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.200317,3.1666493 + pos: -49.5,72.5 parent: 2 - uid: 14515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.169067,4.2447743 + pos: -48.5,72.5 parent: 2 - uid: 14516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.549343,11.759819 + pos: -55.5,74.5 parent: 2 - uid: 14517 components: - type: Transform - pos: -5.595339,-4.675059 + pos: -53.5,74.5 parent: 2 - uid: 14518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-53.5 + pos: -52.5,74.5 parent: 2 - uid: 14519 components: - type: Transform - pos: 10.502801,20.621168 + pos: -51.5,74.5 parent: 2 - uid: 14520 components: - type: Transform - pos: 28.475449,57.466667 + pos: -50.5,74.5 parent: 2 - uid: 14521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.459824,60.62635 + pos: -49.5,74.5 parent: 2 - uid: 14522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,43.5 + pos: -56.5,73.5 parent: 2 - uid: 14523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.574158,39.147324 + pos: -62.5,69.5 parent: 2 - uid: 14524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.6798115,53.785717 + pos: -61.5,68.5 parent: 2 - uid: 14525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5235615,60.61986 + pos: -60.5,23.5 parent: 2 - uid: 14526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.4766865,60.49486 + pos: -59.5,23.5 parent: 2 - uid: 14527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,51.5 + pos: -58.5,23.5 parent: 2 - uid: 14528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,56.5 + pos: -57.5,23.5 parent: 2 - uid: 14529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.543747,16.616205 + pos: -56.5,23.5 parent: 2 - uid: 14530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,69.5 + pos: -57.5,24.5 parent: 2 - uid: 14531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.165627,3.6473265 + pos: -57.5,25.5 parent: 2 - uid: 14532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.45307,42.58208 + pos: -58.5,22.5 parent: 2 - uid: 14533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.45307,44.597706 + pos: -52.5,22.5 parent: 2 - uid: 14534 components: - type: Transform - pos: -26.5,55.5 + pos: -51.5,22.5 parent: 2 - uid: 14535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.531195,43.628956 + pos: -50.5,22.5 parent: 2 - uid: 14536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.45307,45.51958 + pos: -50.5,21.5 parent: 2 - uid: 14537 components: - type: Transform - pos: 1.9750614,37.646088 + pos: -83.5,42.5 parent: 2 - uid: 14538 components: - type: Transform - pos: -27.5,55.5 + pos: -82.5,42.5 parent: 2 - uid: 14539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,25.5 + pos: -82.5,43.5 parent: 2 - uid: 14540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,25.5 + pos: -82.5,44.5 parent: 2 - uid: 14541 components: - type: Transform - pos: -109.56268,2.4686198 + pos: -81.5,44.5 parent: 2 - uid: 14542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.174155,63.993267 + pos: -81.5,45.5 parent: 2 - uid: 14543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.560913,-21.055408 + pos: -80.5,45.5 parent: 2 - uid: 14544 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.435915,-21.039783 + pos: -81.5,46.5 parent: 2 - uid: 14545 components: - type: Transform - pos: -88.059395,56.57532 + pos: -81.5,47.5 parent: 2 - - uid: 41112 - components: - - type: Transform - pos: 62.32042,78.5 - parent: 40203 - - uid: 41113 - components: - - type: Transform - pos: 68.32042,78.5 - parent: 40203 - - uid: 41114 - components: - - type: Transform - pos: 65.273544,78.5 - parent: 40203 - - uid: 41115 - components: - - type: Transform - pos: 59.32042,78.5 - parent: 40203 - - uid: 41116 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 61.3796,59.627113 - parent: 40203 -- proto: ChairPilotSeat - entities: - uid: 14546 components: - type: Transform - pos: 2.5,2.5 + pos: -81.5,48.5 parent: 2 - uid: 14547 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-39.5 + pos: -82.5,48.5 parent: 2 -- proto: ChairRitual - entities: - uid: 14548 components: - type: Transform - pos: 28.5,13.5 + pos: -32.5,57.5 parent: 2 - uid: 14549 components: - type: Transform - pos: 24.5,12.5 + pos: -31.5,58.5 parent: 2 - uid: 14550 components: - type: Transform - pos: 24.5,11.5 + pos: -133.5,7.5 parent: 2 - uid: 14551 components: - type: Transform - pos: 25.5,12.5 + pos: -133.5,8.5 parent: 2 - uid: 14552 components: - type: Transform - pos: 25.5,13.5 + pos: -133.5,9.5 parent: 2 - uid: 14553 components: - type: Transform - pos: 24.5,13.5 + pos: -132.5,9.5 parent: 2 - uid: 14554 components: - type: Transform - pos: 25.5,14.5 + pos: -132.5,10.5 parent: 2 - uid: 14555 components: - type: Transform - pos: 27.5,13.5 + pos: -34.5,-63.5 parent: 2 - uid: 14556 components: - type: Transform - pos: 27.5,11.5 + pos: -34.5,-64.5 parent: 2 - uid: 14557 components: - type: Transform - pos: 28.5,12.5 + pos: -34.5,-65.5 parent: 2 - uid: 14558 components: - type: Transform - pos: 27.5,14.5 + pos: -34.5,-70.5 parent: 2 - uid: 14559 components: - type: Transform - pos: 27.5,12.5 + pos: -34.5,-69.5 parent: 2 - uid: 14560 components: - type: Transform - pos: 28.5,14.5 + pos: -38.5,-67.5 parent: 2 - uid: 14561 components: - type: Transform - pos: 28.5,11.5 + pos: -37.5,-67.5 parent: 2 - uid: 14562 components: - type: Transform - pos: 24.5,14.5 + pos: -34.5,-67.5 parent: 2 - uid: 14563 components: - type: Transform - pos: 25.5,11.5 + pos: -30.5,-67.5 parent: 2 -- proto: ChairWeb - entities: - uid: 14564 components: - - type: MetaData - desc: Примёрзни с комфортом! - name: стул из снега - type: Transform - anchored: True - rot: -3.141592653589793 rad - pos: -89.5,62.5 + pos: -31.5,-67.5 parent: 2 - - type: Physics - bodyType: Static - - type: Pullable - prevFixedRotation: True - uid: 14565 components: - - type: MetaData - desc: Примёрзни с комфортом! - name: стул из снега - type: Transform - anchored: True - rot: 3.141592653589793 rad - pos: -88.5,62.5 + pos: -30.5,-69.5 parent: 2 - - type: Physics - bodyType: Static - - type: Pullable - prevFixedRotation: True -- proto: ChairWood - entities: - uid: 14566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.48625,68.69426 + pos: -31.5,-69.5 parent: 2 - uid: 14567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.35864,7.713187 + pos: -33.5,-69.5 parent: 2 - uid: 14568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.33215,17.590208 + pos: -37.5,-69.5 parent: 2 - uid: 14569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.76602,23.644403 + pos: -38.5,-69.5 parent: 2 - uid: 14570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.531647,19.87126 + pos: -36.5,-69.5 parent: 2 - uid: 14571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.70715,17.574583 + pos: -38.5,-65.5 parent: 2 - uid: 14572 components: - type: Transform - pos: 26.53663,40.63643 + pos: -37.5,-65.5 parent: 2 - uid: 14573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.56788,38.69893 + pos: -36.5,-65.5 parent: 2 - uid: 14574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.312897,23.628778 + pos: -31.5,-65.5 parent: 2 - uid: 14575 components: - type: Transform - pos: 37.531647,21.418135 + pos: -30.5,-65.5 parent: 2 - uid: 14576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,4.5 + pos: -32.5,-65.5 parent: 2 - uid: 14577 components: - type: Transform - pos: 24.5,6.5 + pos: -33.5,-65.5 parent: 2 - uid: 14578 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.669277,-10.307123 + pos: -35.5,-67.5 parent: 2 - uid: 14579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.858208,-2.8915977 + rot: 3.141592653589793 rad + pos: -36.5,-71.5 parent: 2 - uid: 14580 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.12206,13.067863 + pos: -36.5,-71.5 parent: 2 - uid: 14581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,43.5 + rot: 3.141592653589793 rad + pos: -34.5,-72.5 parent: 2 - uid: 14582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 91.559525,-25.423542 + rot: 3.141592653589793 rad + pos: -35.5,-71.5 parent: 2 - uid: 14583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6539478,44.524754 + rot: 3.141592653589793 rad + pos: -33.5,-71.5 parent: 2 - uid: 14584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6383228,43.66538 + rot: 3.141592653589793 rad + pos: -29.5,-71.5 parent: 2 - uid: 14585 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.4351978,42.75913 + pos: -34.5,-71.5 parent: 2 - uid: 14586 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5758228,42.75913 + pos: -30.5,-71.5 parent: 2 - uid: 14587 components: - type: Transform - pos: 0.5,21.5 + rot: 3.141592653589793 rad + pos: -31.5,-71.5 parent: 2 - uid: 14588 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,18.5 + pos: -39.5,-71.5 parent: 2 - uid: 14589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5352354,19.13226 + rot: 3.141592653589793 rad + pos: -38.5,-71.5 parent: 2 - uid: 14590 components: - type: Transform - pos: -0.5,21.5 + pos: -28.5,63.5 parent: 2 - uid: 14591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 + pos: -28.5,62.5 parent: 2 - uid: 14592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,18.5 + pos: -51.5,58.5 parent: 2 - uid: 14593 components: - type: Transform - pos: 1.5,21.5 + pos: -51.5,59.5 parent: 2 - uid: 14594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.3135927,20.261866 + pos: -50.5,58.5 parent: 2 - uid: 14595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.434185,68.67675 + pos: -49.5,58.5 parent: 2 - uid: 14596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.35334,17.787445 + pos: -46.5,60.5 parent: 2 - uid: 14597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.43677,11.713186 + pos: -45.5,61.5 parent: 2 - uid: 14598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.7481675,20.1216 + pos: -44.5,61.5 parent: 2 - uid: 14599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.62858,24.53713 + pos: -43.5,62.5 parent: 2 - uid: 14600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.69862,16.214655 + pos: -38.5,62.5 parent: 2 - uid: 14601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.65175,20.315407 + pos: -40.5,62.5 parent: 2 - uid: 14602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.446667,23.606361 + pos: -38.5,61.5 parent: 2 - - uid: 41117 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.831497,26.433424 - parent: 40203 - - uid: 41118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.175247,26.433424 - parent: 40203 - - uid: 41119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.54725,40.859905 - parent: 40203 - - uid: 41120 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,34.5 - parent: 40203 - - uid: 41121 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.690872,25.542799 - parent: 40203 - - uid: 41122 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.175247,26.433424 - parent: 40203 - - uid: 41123 + - uid: 14603 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.190872,25.777174 - parent: 40203 - - uid: 41124 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 74.804405,27.669073 - parent: 40203 - - uid: 41125 - components: - - type: Transform - pos: 56.703117,27.537905 - parent: 40203 -- proto: CheapLighter - entities: + pos: -19.5,18.5 + parent: 2 - uid: 14604 components: - type: Transform - parent: 14603 - - type: Physics - canCollide: False + pos: -27.5,18.5 + parent: 2 - uid: 14605 components: - type: Transform - pos: -25.088907,-15.445789 + pos: -27.5,19.5 parent: 2 - - uid: 41126 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 50.593178,68.07846 - parent: 40203 -- proto: CheapRollerBed - entities: - uid: 14606 components: - - type: MetaData - desc: Качат мышц. - name: тренажер для штанги - type: Transform - pos: -121.37774,11.762642 + pos: -27.5,20.5 parent: 2 - missingComponents: - - Item - - Foldable -- proto: CheapRollerBedSpawnFolded - entities: - uid: 14607 components: - type: Transform - pos: -25.466438,16.690285 + rot: 1.5707963267948966 rad + pos: 98.5,-46.5 parent: 2 -- proto: CheckerBoard - entities: - uid: 14608 components: - type: Transform - pos: 97.49116,-3.3986645 + rot: 1.5707963267948966 rad + pos: 96.5,-43.5 parent: 2 - uid: 14609 components: - type: Transform - pos: -38.476795,26.606562 + rot: 1.5707963267948966 rad + pos: 97.5,-44.5 parent: 2 -- proto: ChemDispenser - entities: - uid: 14610 components: - type: Transform - pos: -10.5,44.5 + rot: 1.5707963267948966 rad + pos: 100.5,-46.5 parent: 2 - uid: 14611 components: - type: Transform - pos: -10.5,39.5 + rot: 1.5707963267948966 rad + pos: 100.5,-45.5 parent: 2 -- proto: ChemicalPayload - entities: - uid: 14612 components: - type: Transform - pos: 38.73019,-49.17668 + pos: -30.5,-37.5 parent: 2 - uid: 14613 components: - type: Transform - pos: 38.433315,-49.379807 + pos: -30.5,-38.5 parent: 2 - uid: 14614 components: - type: Transform - pos: -6.4480906,42.067627 + pos: -30.5,-39.5 parent: 2 - uid: 14615 components: - type: Transform - pos: -6.4373283,42.077126 + pos: -29.5,-37.5 parent: 2 -- proto: ChemistryEmptyBottle01 - entities: - uid: 14616 components: - type: Transform - pos: -8.406277,42.26853 + pos: -29.5,-38.5 parent: 2 - uid: 14617 components: - type: Transform - pos: -8.615728,42.26853 + pos: -28.5,-37.5 parent: 2 - uid: 14618 components: - type: Transform - pos: -8.529668,42.062397 + pos: -28.5,-38.5 parent: 2 - - uid: 41127 - components: - - type: Transform - pos: 61.7882,63.51844 - parent: 40203 -- proto: ChemistryEmptyBottle03 - entities: - uid: 14619 components: - - type: MetaData - name: успокоительное - type: Transform - pos: -3.6786795,69.64291 + pos: -28.5,-39.5 parent: 2 - uid: 14620 components: - - type: MetaData - name: бутылочка омнизина - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.899078,54.390747 - parent: 2 - - uid: 41128 - components: - - type: Transform - pos: 56.24311,59.566467 - parent: 40203 -- proto: ChemistryEmptyBottle04 - entities: - - uid: 5 - components: - - type: MetaData - name: бутылочка дифенилметиламина - type: Transform - pos: -13.463369,57.72706 + pos: -27.5,-37.5 parent: 2 - - type: Tag - tags: - - Bottle - - type: SolutionContainerManager - solutions: null - containers: - - drink - - type: ContainerContainer - containers: - solution@drink: !type:ContainerSlot - ent: 6 - - uid: 41129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.74311,59.628967 - parent: 40203 -- proto: ChemistryHotplate - entities: - uid: 14621 components: - type: Transform - pos: -8.5,41.5 + pos: -27.5,-38.5 parent: 2 - uid: 14622 components: - type: Transform - pos: 30.5,32.5 + pos: -29.5,-39.5 parent: 2 - - type: ItemPlacer - placedEntities: - - 23309 - - type: PlaceableSurface - isPlaceable: False -- proto: ChemMaster - entities: - uid: 14623 components: - type: Transform - pos: -10.5,43.5 + pos: -27.5,-39.5 parent: 2 - uid: 14624 components: - type: Transform - pos: -10.5,38.5 + pos: -26.5,-37.5 parent: 2 -- proto: ChessBoard - entities: - uid: 14625 components: - type: Transform - pos: 8.483881,-54.947712 + pos: -26.5,-38.5 parent: 2 - uid: 14626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.510391,-33.396664 + pos: -26.5,-39.5 parent: 2 - uid: 14627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.52862,-21.430456 + pos: 58.5,-39.5 parent: 2 -- proto: ChopSticks - entities: - uid: 14628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.44698,51.455383 + pos: 51.5,-20.5 parent: 2 -- proto: ChurchBell - entities: - uid: 14629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,8.5 + pos: 50.5,-20.5 parent: 2 -- proto: ChurchOrganInstrument - entities: - uid: 14630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,9.5 + pos: -118.5,-3.5 parent: 2 -- proto: Cigar - entities: - uid: 14631 components: - type: Transform - pos: -27.534801,-20.33517 + pos: -117.5,-4.5 parent: 2 - uid: 14632 components: - type: Transform - pos: -27.644176,-20.257046 + pos: -117.5,-5.5 parent: 2 -- proto: CigarCase - entities: - uid: 14633 components: - type: Transform - pos: -27.529057,-19.976585 + pos: -117.5,-3.5 parent: 2 -- proto: Cigarette - entities: - uid: 14634 components: - type: Transform - pos: 1.599452,65.239655 + pos: -118.5,-4.5 parent: 2 -- proto: CigaretteBicaridine - entities: - uid: 14635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.51325,-27.391449 + pos: -118.5,-5.5 parent: 2 -- proto: CigaretteBlackPepper - entities: - uid: 14636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.65826,-2.5922818 + pos: -107.5,-0.5 parent: 2 -- proto: CigaretteLicoxide - entities: - uid: 14637 components: - type: Transform - pos: -25.463676,-15.122017 + pos: -107.5,-2.5 parent: 2 -- proto: CigaretteMold - entities: - uid: 14638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.28184,29.607618 + pos: -107.5,-1.5 parent: 2 -- proto: CigaretteSpent - entities: - uid: 14639 components: - type: Transform - pos: 65.23152,7.3295026 + rot: 1.5707963267948966 rad + pos: -117.5,-2.5 parent: 2 - uid: 14640 components: - type: Transform - pos: -30.691975,8.051675 + rot: 1.5707963267948966 rad + pos: -117.5,-1.5 parent: 2 - uid: 14641 components: - type: Transform - rot: -1.5678144256260733 rad - pos: -29.973263,8.733681 + rot: 1.5707963267948966 rad + pos: -116.5,-1.5 parent: 2 - uid: 14642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.879475,4.239175 + rot: 1.5707963267948966 rad + pos: -116.5,-0.5 parent: 2 - uid: 14643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.535725,4.2548 + rot: 1.5707963267948966 rad + pos: -117.5,-0.5 parent: 2 - uid: 14644 components: - type: Transform - pos: -12.154511,68.72156 + pos: -51.5,23.5 parent: 2 - uid: 14645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.513886,69.47156 + rot: 3.141592653589793 rad + pos: 77.5,-31.5 parent: 2 - uid: 14646 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.342011,68.62781 + rot: 1.5707963267948966 rad + pos: -38.5,66.5 parent: 2 - uid: 14647 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5451355,68.37781 + pos: 77.5,-32.5 parent: 2 - uid: 14648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.498261,70.50281 + pos: -38.5,68.5 parent: 2 - uid: 14649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.161952,65.020905 + pos: -38.5,67.5 parent: 2 - - uid: 14650 + - uid: 41391 components: - type: Transform - pos: 65.45099,-39.34227 - parent: 2 - - uid: 14651 + rot: 1.5707963267948966 rad + pos: 62.5,56.5 + parent: 40599 + - uid: 41392 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.23224,-39.482895 - parent: 2 - - uid: 14652 + pos: 62.5,55.5 + parent: 40599 + - uid: 41393 components: - type: Transform - pos: 65.45099,-39.27977 - parent: 2 - - uid: 14653 + pos: 45.5,60.5 + parent: 40599 + - uid: 41394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.517433,-15.488216 - parent: 2 - - uid: 14654 + pos: 44.5,60.5 + parent: 40599 + - uid: 41395 components: - type: Transform - pos: -66.68951,-2.4204068 - parent: 2 - - uid: 14655 + pos: 45.5,62.5 + parent: 40599 + - uid: 41396 components: - type: Transform - pos: -40.4032,21.419062 - parent: 2 - - uid: 14656 + pos: 44.5,61.5 + parent: 40599 + - uid: 41397 components: - type: Transform - pos: -40.4032,21.419062 - parent: 2 - - uid: 14657 + pos: 42.5,60.5 + parent: 40599 + - uid: 41398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.293823,21.372187 - parent: 2 - - uid: 14658 + pos: 44.5,62.5 + parent: 40599 + - uid: 41399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.262573,21.262812 - parent: 2 - - uid: 14659 + pos: 45.5,61.5 + parent: 40599 + - uid: 41400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.543823,21.106562 - parent: 2 - - uid: 14660 + pos: 43.5,60.5 + parent: 40599 + - uid: 41401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.14867,26.590937 - parent: 2 - - uid: 40242 + pos: 41.5,62.5 + parent: 40599 + - uid: 41402 components: - type: Transform - parent: 40241 - - type: Physics - canCollide: False - - uid: 40243 + pos: 41.5,60.5 + parent: 40599 + - uid: 41403 components: - type: Transform - parent: 40241 - - type: Physics - canCollide: False - - uid: 41130 + pos: 43.5,62.5 + parent: 40599 + - uid: 41404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.140053,72.95346 - parent: 40203 - - uid: 41131 + pos: 43.5,61.5 + parent: 40599 + - uid: 41405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.983803,73.719086 - parent: 40203 - - uid: 41132 + pos: 41.5,61.5 + parent: 40599 + - uid: 41406 components: - type: Transform - pos: 68.854004,41.116848 - parent: 40203 - - uid: 41133 + pos: 42.5,62.5 + parent: 40599 + - uid: 41407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.760254,41.252266 - parent: 40203 - - uid: 41134 + pos: 42.5,61.5 + parent: 40599 + - uid: 41408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.59359,41.429348 - parent: 40203 - - uid: 41135 + rot: 3.141592653589793 rad + pos: 63.5,55.5 + parent: 40599 + - uid: 41409 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.801926,41.314766 - parent: 40203 - - uid: 41136 + pos: 63.5,56.5 + parent: 40599 + - uid: 41410 components: - type: Transform - pos: 45.684444,26.557226 - parent: 40203 - - uid: 41137 + rot: 3.141592653589793 rad + pos: 64.5,56.5 + parent: 40599 + - uid: 41411 components: - type: Transform - pos: 45.79382,25.963476 - parent: 40203 -- proto: CigaretteSyndicate - entities: - - uid: 41138 + rot: 3.141592653589793 rad + pos: 67.5,56.5 + parent: 40599 + - uid: 41412 components: - type: Transform - pos: 27.792608,61.886677 - parent: 40203 -- proto: CigarGoldCase - entities: - - uid: 14661 + rot: 3.141592653589793 rad + pos: 68.5,56.5 + parent: 40599 + - uid: 41413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.4245415,-9.566095 - parent: 2 - - uid: 14662 + rot: 3.141592653589793 rad + pos: 64.5,50.5 + parent: 40599 + - uid: 41414 components: - type: Transform - pos: 15.553156,-4.267561 - parent: 2 -- proto: CigarGoldSpent - entities: - - uid: 14663 + rot: 3.141592653589793 rad + pos: 65.5,50.5 + parent: 40599 + - uid: 41415 components: - type: Transform - pos: 7.2402697,19.747454 - parent: 2 -- proto: CigarSpent - entities: - - uid: 14664 + rot: 3.141592653589793 rad + pos: 63.5,50.5 + parent: 40599 + - uid: 41416 components: - type: Transform - pos: 67.78601,6.9545026 - parent: 2 - - uid: 14665 + rot: -1.5707963267948966 rad + pos: 66.5,50.5 + parent: 40599 + - uid: 41417 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.80744,69.23019 - parent: 2 - - uid: 14666 + pos: 64.5,57.5 + parent: 40599 + - uid: 41418 components: - type: Transform - pos: -32.516617,29.700043 - parent: 2 - - uid: 41139 + rot: -1.5707963267948966 rad + pos: 67.5,57.5 + parent: 40599 + - uid: 41419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.62155,78.56025 - parent: 40203 - - uid: 41140 + rot: -1.5707963267948966 rad + pos: 65.5,57.5 + parent: 40599 + - uid: 41420 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.4653,78.794624 - parent: 40203 -- proto: CigPackBlack - entities: - - uid: 14667 + pos: 70.5,54.5 + parent: 40599 + - uid: 41421 components: - type: Transform - pos: 8.691622,-47.092056 - parent: 2 - - uid: 14668 + rot: -1.5707963267948966 rad + pos: 70.5,52.5 + parent: 40599 + - uid: 41422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.486504,52.821636 - parent: 2 - - uid: 41141 + rot: -1.5707963267948966 rad + pos: 70.5,53.5 + parent: 40599 + - uid: 41423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.28109,41.398098 - parent: 40203 -- proto: CigPackBlue - entities: - - uid: 14669 + pos: 71.5,52.5 + parent: 40599 + - uid: 41424 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.651665,-39.19853 - parent: 2 -- proto: CigPackGreen - entities: - - uid: 41142 + pos: 72.5,52.5 + parent: 40599 + - uid: 41425 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.436928,73.531586 - parent: 40203 -- proto: CigPackMixed - entities: - - uid: 14670 + pos: 72.5,54.5 + parent: 40599 + - uid: 41426 components: - type: Transform - pos: 7.2835283,20.747702 - parent: 2 -- proto: CigPackMixedMedical - entities: - - uid: 14672 + rot: -1.5707963267948966 rad + pos: 72.5,55.5 + parent: 40599 + - uid: 41427 components: - type: Transform - parent: 14671 - - type: Physics - canCollide: False - - uid: 14673 + rot: -1.5707963267948966 rad + pos: 72.5,53.5 + parent: 40599 + - uid: 41428 components: - type: Transform - pos: 53.351418,-16.465351 - parent: 2 -- proto: CigPackRed - entities: - - uid: 14674 + rot: -1.5707963267948966 rad + pos: 72.5,56.5 + parent: 40599 + - uid: 41429 components: - type: Transform rot: -1.5707963267948966 rad - pos: 92.54462,-16.494904 - parent: 2 - - uid: 41143 + pos: 72.5,57.5 + parent: 40599 + - uid: 41430 components: - - type: MetaData - name: пачка сигарет Chapman Red - type: Transform rot: -1.5707963267948966 rad - pos: 27.995733,61.4023 - parent: 40203 -- proto: CircuitImprinter - entities: - - uid: 14675 + pos: 72.5,58.5 + parent: 40599 + - uid: 41431 components: - type: Transform - pos: 31.5,-43.5 - parent: 2 -- proto: CleanerDispenser - entities: - - uid: 14676 + rot: -1.5707963267948966 rad + pos: 72.5,59.5 + parent: 40599 + - uid: 41432 components: - type: Transform - pos: 3.5,34.5 - parent: 2 -- proto: ClockworkGrille - entities: - - uid: 14677 + rot: -1.5707963267948966 rad + pos: 73.5,59.5 + parent: 40599 + - uid: 41433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,18.5 - parent: 2 - - uid: 14678 + rot: -1.5707963267948966 rad + pos: 72.5,60.5 + parent: 40599 + - uid: 41434 components: - type: Transform - pos: -23.5,20.5 - parent: 2 -- proto: CloningConsoleComputerCircuitboard - entities: - - uid: 41144 + pos: 59.5,49.5 + parent: 40599 + - uid: 41435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.598984,56.39598 - parent: 40203 -- proto: CloningPodMachineCircuitboard - entities: - - uid: 45111 + pos: 59.5,48.5 + parent: 40599 + - uid: 41436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5264397,9.487122 - parent: 44970 -- proto: ClosetBomb - entities: - - uid: 41145 + pos: 58.5,48.5 + parent: 40599 + - uid: 41437 components: - type: Transform - pos: 58.693913,57.61676 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41147 - - 41146 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41148 + pos: 56.5,48.5 + parent: 40599 + - uid: 41438 components: - type: Transform - pos: 59.850163,57.507385 - parent: 40203 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.48 - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - mask: - - Impassable - - TableLayer - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 75 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41149 + pos: 55.5,48.5 + parent: 40599 + - uid: 41439 components: - type: Transform - pos: 57.318913,57.30426 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41151 - - 41150 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Weldable - isWelded: True -- proto: ClosetBombFilled - entities: - - uid: 14679 + pos: 54.5,48.5 + parent: 40599 + - uid: 41440 components: - type: Transform - pos: 41.5,-51.5 - parent: 2 - - uid: 14680 + pos: 53.5,48.5 + parent: 40599 + - uid: 41441 components: - type: Transform - pos: -45.5,-6.5 - parent: 2 -- proto: ClosetChef - entities: - - uid: 8201 + pos: 57.5,48.5 + parent: 40599 + - uid: 41442 components: - type: Transform - pos: -117.5,12.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8203 - - 8202 - - 8206 - - 8204 - - 8209 - - 8207 - - 8205 - - 8208 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetChefFilled - entities: - - uid: 14681 + pos: 52.5,48.5 + parent: 40599 + - uid: 41443 components: - type: Transform - pos: 29.5,39.5 - parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 14682 + pos: 52.5,47.5 + parent: 40599 + - uid: 41444 components: - type: Transform - pos: -39.5,-27.5 - parent: 2 - - uid: 14683 + pos: 52.5,46.5 + parent: 40599 + - uid: 41445 components: - type: Transform - pos: -16.5,-36.5 - parent: 2 - - uid: 14684 + pos: 52.5,44.5 + parent: 40599 + - uid: 41446 components: - type: Transform - pos: 54.5,-24.5 - parent: 2 - - uid: 14685 + rot: 3.141592653589793 rad + pos: 47.5,37.5 + parent: 40599 + - uid: 41447 components: - type: Transform - pos: 77.5,-6.5 - parent: 2 - - uid: 14686 + rot: 3.141592653589793 rad + pos: 47.5,43.5 + parent: 40599 + - uid: 41448 components: - type: Transform - pos: 84.5,-27.5 - parent: 2 - - uid: 14687 + rot: 3.141592653589793 rad + pos: 48.5,44.5 + parent: 40599 + - uid: 41449 components: - type: Transform - pos: 65.5,-19.5 - parent: 2 - - uid: 14688 + rot: 3.141592653589793 rad + pos: 48.5,36.5 + parent: 40599 + - uid: 41450 components: - type: Transform - pos: 65.5,-11.5 - parent: 2 - - uid: 14689 + rot: 3.141592653589793 rad + pos: 49.5,36.5 + parent: 40599 + - uid: 41451 components: - type: Transform - pos: 80.5,-27.5 - parent: 2 - - uid: 14690 + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 40599 + - uid: 41452 components: - type: Transform - pos: 81.5,-6.5 - parent: 2 - - uid: 14691 + rot: 3.141592653589793 rad + pos: 47.5,42.5 + parent: 40599 + - uid: 41453 components: - type: Transform - pos: 62.5,19.5 - parent: 2 - - uid: 14692 + rot: 3.141592653589793 rad + pos: 49.5,45.5 + parent: 40599 + - uid: 41454 components: - type: Transform - pos: 55.5,18.5 - parent: 2 - - uid: 14693 + rot: 3.141592653589793 rad + pos: 55.5,45.5 + parent: 40599 + - uid: 41455 components: - type: Transform - pos: 44.5,44.5 - parent: 2 - - uid: 14694 + rot: -1.5707963267948966 rad + pos: 51.5,44.5 + parent: 40599 + - uid: 41456 components: - type: Transform - pos: 14.5,43.5 - parent: 2 - - uid: 14695 + rot: 3.141592653589793 rad + pos: 57.5,43.5 + parent: 40599 + - uid: 41457 components: - type: Transform - pos: 95.5,-25.5 - parent: 2 - - uid: 14696 + rot: 3.141592653589793 rad + pos: 49.5,44.5 + parent: 40599 + - uid: 41458 components: - type: Transform - pos: 101.5,-20.5 - parent: 2 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 14697 + rot: 3.141592653589793 rad + pos: 55.5,35.5 + parent: 40599 + - uid: 41459 components: - type: Transform - pos: 26.5,47.5 - parent: 2 - - uid: 14698 + rot: 3.141592653589793 rad + pos: 55.5,36.5 + parent: 40599 + - uid: 41460 components: - type: Transform - pos: -31.5,-33.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14699 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14700 + rot: 3.141592653589793 rad + pos: 56.5,36.5 + parent: 40599 + - uid: 41461 components: - type: Transform - pos: -84.5,38.5 - parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 14701 + rot: 3.141592653589793 rad + pos: 56.5,37.5 + parent: 40599 + - uid: 41462 components: - type: Transform - pos: 100.5,-20.5 - parent: 2 - - uid: 14702 + rot: 3.141592653589793 rad + pos: 57.5,37.5 + parent: 40599 + - uid: 41463 components: - type: Transform - pos: -49.5,-0.5 - parent: 2 - - uid: 14703 + rot: 3.141592653589793 rad + pos: 57.5,38.5 + parent: 40599 + - uid: 41464 components: - type: Transform - pos: 33.5,-33.5 - parent: 2 - - uid: 14704 + rot: 3.141592653589793 rad + pos: 57.5,42.5 + parent: 40599 + - uid: 41465 components: - type: Transform - pos: -15.5,-36.5 - parent: 2 - - uid: 14705 + rot: 3.141592653589793 rad + pos: 57.5,41.5 + parent: 40599 + - uid: 41466 components: - type: Transform - pos: 79.5,-27.5 - parent: 2 - - uid: 14706 + rot: 3.141592653589793 rad + pos: 57.5,40.5 + parent: 40599 + - uid: 41467 components: - type: Transform - pos: 85.5,-27.5 - parent: 2 - - uid: 14707 + rot: 3.141592653589793 rad + pos: 47.5,39.5 + parent: 40599 + - uid: 41468 components: - type: Transform - pos: 53.5,-24.5 - parent: 2 - - uid: 14708 + rot: 3.141592653589793 rad + pos: 47.5,41.5 + parent: 40599 + - uid: 41469 components: - type: Transform - pos: 82.5,-6.5 - parent: 2 - - uid: 14709 + rot: -1.5707963267948966 rad + pos: 53.5,44.5 + parent: 40599 + - uid: 41470 components: - type: Transform - pos: 76.5,-6.5 - parent: 2 - - uid: 14710 + rot: -1.5707963267948966 rad + pos: 54.5,44.5 + parent: 40599 + - uid: 41471 components: - type: Transform - pos: 65.5,-18.5 - parent: 2 - - uid: 14711 + rot: 3.141592653589793 rad + pos: 51.5,45.5 + parent: 40599 + - uid: 41472 components: - type: Transform - pos: 65.5,-12.5 - parent: 2 - - uid: 14712 + rot: 3.141592653589793 rad + pos: 53.5,45.5 + parent: 40599 + - uid: 41473 components: - type: Transform - pos: 54.5,18.5 - parent: 2 - - uid: 14713 + rot: -1.5707963267948966 rad + pos: 55.5,44.5 + parent: 40599 + - uid: 41474 components: - type: Transform - pos: 71.5,11.5 - parent: 2 - - uid: 14714 + rot: 3.141592653589793 rad + pos: 50.5,35.5 + parent: 40599 + - uid: 41475 components: - type: Transform - pos: -30.5,12.5 - parent: 2 - - uid: 14715 + rot: 3.141592653589793 rad + pos: 54.5,35.5 + parent: 40599 + - uid: 41476 components: - type: Transform - pos: 72.5,-29.5 - parent: 2 - - uid: 14716 + rot: -1.5707963267948966 rad + pos: 50.5,44.5 + parent: 40599 + - uid: 41477 components: - type: Transform - pos: -56.5,-14.5 - parent: 2 -- proto: ClosetJanitor - entities: - - uid: 14717 + rot: -1.5707963267948966 rad + pos: 52.5,45.5 + parent: 40599 + - uid: 41478 components: - type: Transform - pos: -101.5,25.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14722 - - 14719 - - 14718 - - 14721 - - 14720 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetJanitorFilled - entities: - - uid: 14723 + pos: 40.5,53.5 + parent: 40599 + - uid: 41479 components: - type: Transform - pos: 4.5,34.5 - parent: 2 - - uid: 14724 + pos: 42.5,53.5 + parent: 40599 + - uid: 41480 components: - type: Transform - pos: 5.5,34.5 - parent: 2 -- proto: ClosetL3Filled - entities: - - uid: 14725 + pos: 43.5,53.5 + parent: 40599 + - uid: 41481 components: - type: Transform - pos: 10.5,41.5 - parent: 2 - - uid: 14726 + pos: 44.5,53.5 + parent: 40599 + - uid: 41482 components: - type: Transform - pos: 9.5,39.5 - parent: 2 - - uid: 14727 + pos: 41.5,53.5 + parent: 40599 + - uid: 41483 components: - type: Transform - pos: -86.5,58.5 - parent: 2 -- proto: ClosetL3JanitorFilled + rot: 1.5707963267948966 rad + pos: 68.5,36.5 + parent: 40599 + - uid: 41484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,36.5 + parent: 40599 + - uid: 41485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,36.5 + parent: 40599 + - uid: 41486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,36.5 + parent: 40599 + - uid: 41487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,36.5 + parent: 40599 + - uid: 41488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,34.5 + parent: 40599 + - uid: 41489 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 70.5,34.5 + parent: 40599 + - uid: 41490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,34.5 + parent: 40599 + - uid: 41491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,34.5 + parent: 40599 + - uid: 41492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,34.5 + parent: 40599 + - uid: 46645 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 46584 + - uid: 46646 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 46584 + - uid: 46647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 46584 + - uid: 46648 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 46584 + - uid: 46649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 46584 + - uid: 46650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 46584 + - uid: 46651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 46584 + - uid: 46652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 46584 + - uid: 46653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 46584 + - uid: 46654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 46584 + - uid: 46655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 46584 + - uid: 46656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 46584 + - uid: 46657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 46584 + - uid: 46658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 46584 + - uid: 46659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 46584 + - uid: 46660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 46584 + - uid: 46661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 46584 + - uid: 46662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 46584 + - uid: 46663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 46584 + - uid: 46664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 46584 + - uid: 46665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 46584 + - uid: 46666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,13.5 + parent: 46584 + - uid: 46667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 46584 + - uid: 46668 + components: + - type: Transform + pos: -3.5,10.5 + parent: 46584 + - uid: 46669 + components: + - type: Transform + pos: -4.5,10.5 + parent: 46584 + - uid: 46670 + components: + - type: Transform + pos: -3.5,9.5 + parent: 46584 + - uid: 46671 + components: + - type: Transform + pos: -4.5,9.5 + parent: 46584 + - uid: 46672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 46584 + - uid: 46673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 46584 + - uid: 47271 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 47245 +- proto: Cautery entities: - - uid: 14728 + - uid: 14650 components: - type: Transform - pos: 2.5,34.5 + rot: -1.5707963267948966 rad + pos: -25.741735,42.55134 parent: 2 -- proto: ClosetL3ScienceFilled +- proto: Chair entities: - - uid: 14729 + - uid: 14651 components: - type: Transform - pos: 36.5,-43.5 + pos: 58.5,-16.5 parent: 2 - - uid: 14730 + - uid: 14652 components: - type: Transform - pos: 35.5,-43.5 + rot: -1.5707963267948966 rad + pos: 33.5,-38.5 parent: 2 - - uid: 14731 + - uid: 14653 components: - type: Transform - pos: 41.5,-52.5 + rot: -1.5707963267948966 rad + pos: 98.5,-3.5 parent: 2 -- proto: ClosetL3Security - entities: - - uid: 41152 + - uid: 14654 components: - type: Transform - pos: 64.5,72.5 - parent: 40203 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.48 - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - mask: - - Impassable - - TableLayer - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 75 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: ClosetL3SecurityFilled - entities: - - uid: 14732 + rot: 1.5707963267948966 rad + pos: 96.5,-3.5 + parent: 2 + - uid: 14655 components: - type: Transform - pos: -45.5,-8.5 + rot: 3.141592653589793 rad + pos: 98.5,-11.5 parent: 2 - - uid: 41153 + - uid: 14656 components: - type: Transform - pos: 66.5,72.5 - parent: 40203 - - 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: ClosetL3VirologyFilled - entities: - - uid: 14733 + rot: 1.5707963267948966 rad + pos: 27.5,53.5 + parent: 2 + - uid: 14657 components: - type: Transform - pos: 1.5,58.5 + rot: 3.141592653589793 rad + pos: -44.5,10.5 parent: 2 - - uid: 14734 + - uid: 14658 components: - type: Transform - pos: 22.5,54.5 + pos: 32.5,-52.5 parent: 2 - - uid: 14735 + - uid: 14659 components: - type: Transform - pos: 2.5,58.5 + pos: 33.5,-52.5 parent: 2 -- proto: ClosetLegal - entities: - - uid: 14736 + - uid: 14660 components: - - type: MetaData - desc: Хранилище музыкальных принадлежностей и одежды. - name: шкаф музыканта - type: Transform - pos: 55.5,10.5 + pos: 28.5,-51.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14739 - - 14740 - - 14737 - - 14738 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 14741 + - uid: 14661 components: - type: Transform - pos: -20.5,-29.5 + rot: -1.5707963267948966 rad + pos: 19.5,-49.5 parent: 2 - - uid: 14742 + - uid: 14662 components: - type: Transform - pos: 50.5,-10.5 + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 parent: 2 - - uid: 14743 + - uid: 14663 components: - type: Transform - pos: 62.5,-10.5 + rot: -1.5707963267948966 rad + pos: 25.5,-54.5 parent: 2 - - uid: 14744 + - uid: 14664 components: - type: Transform - pos: 50.5,29.5 + rot: -1.5707963267948966 rad + pos: 36.5,-52.5 parent: 2 - - uid: 14745 + - uid: 14665 components: - type: Transform - pos: 42.5,34.5 + pos: 28.5,-37.5 parent: 2 - - uid: 14746 + - uid: 14666 components: - type: Transform - pos: 51.5,17.5 + rot: 1.5707963267948966 rad + pos: 19.5,19.5 parent: 2 - - uid: 14747 + - uid: 14667 components: - type: Transform - pos: 39.5,31.5 + rot: 1.5707963267948966 rad + pos: 19.5,20.5 parent: 2 - - uid: 14748 + - uid: 14668 components: - type: Transform - pos: 60.5,-18.5 + rot: 1.5707963267948966 rad + pos: 21.5,-37.5 parent: 2 - - uid: 14749 + - uid: 14669 components: - type: Transform - pos: 48.5,-35.5 + rot: 3.141592653589793 rad + pos: 22.5,-49.5 parent: 2 - - uid: 14750 + - uid: 14670 components: - type: Transform - pos: 56.5,21.5 + rot: -1.5707963267948966 rad + pos: 31.5,-45.5 parent: 2 - - uid: 14751 + - uid: 14671 components: - type: Transform - pos: 73.5,6.5 + pos: 25.5,-41.5 parent: 2 - - uid: 14752 + - uid: 14672 components: - type: Transform - pos: 64.5,14.5 + pos: -50.5,6.5 parent: 2 - - uid: 14753 + - uid: 14673 components: - type: Transform - pos: 68.5,0.5 + rot: 3.141592653589793 rad + pos: -49.5,4.5 parent: 2 - - uid: 14754 + - uid: 14674 components: - type: Transform - pos: 39.5,-26.5 + rot: 1.5707963267948966 rad + pos: 1.5,-50.5 parent: 2 - - uid: 14755 + - uid: 14675 components: - type: Transform - pos: 50.5,-28.5 + rot: 1.5707963267948966 rad + pos: -30.5,7.5 parent: 2 - - uid: 14756 + - uid: 14676 components: - type: Transform - pos: -22.5,60.5 + rot: 1.5707963267948966 rad + pos: -30.5,6.5 parent: 2 - - uid: 14757 + - uid: 14677 components: - type: Transform - pos: 75.5,-4.5 + rot: -1.5707963267948966 rad + pos: -28.5,7.5 parent: 2 - - uid: 14758 + - uid: 14678 components: - type: Transform - pos: -16.5,-22.5 + rot: -1.5707963267948966 rad + pos: -28.5,6.5 parent: 2 - - uid: 14759 + - uid: 14679 components: - type: Transform - pos: 49.5,41.5 + rot: 3.141592653589793 rad + pos: -49.5,1.5 parent: 2 - - uid: 14760 + - uid: 14680 components: - type: Transform - pos: 29.5,47.5 + pos: -50.5,3.5 parent: 2 - - uid: 14761 + - uid: 14681 components: - type: Transform - pos: 45.5,44.5 + rot: 3.141592653589793 rad + pos: -50.5,1.5 parent: 2 - - uid: 14762 + - uid: 14682 components: - type: Transform - pos: 55.5,-17.5 + pos: -49.5,6.5 parent: 2 - - uid: 14763 + - uid: 14683 components: - type: Transform - pos: 33.5,-30.5 + rot: 3.141592653589793 rad + pos: -50.5,4.5 parent: 2 - - uid: 14764 + - uid: 14684 components: - type: Transform - pos: -34.5,-34.5 + pos: -49.5,3.5 parent: 2 - - uid: 14765 + - uid: 14685 components: - type: Transform - pos: -46.5,-22.5 + rot: -1.5707963267948966 rad + pos: 33.5,-34.5 parent: 2 - - uid: 14766 + - uid: 14686 components: - type: Transform - pos: 71.5,15.5 + rot: -1.5707963267948966 rad + pos: 33.5,-35.5 parent: 2 - - uid: 14767 + - uid: 14687 components: - type: Transform - pos: 69.5,25.5 + rot: 1.5707963267948966 rad + pos: 29.5,-33.5 parent: 2 - - uid: 14768 + - uid: 14688 components: - type: Transform - pos: 65.5,28.5 + rot: -1.5707963267948966 rad + pos: 31.5,-33.5 parent: 2 - - uid: 14769 + - uid: 14689 components: - type: Transform - pos: 76.5,24.5 + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 parent: 2 - - uid: 14770 + - uid: 14690 components: - type: Transform - pos: -33.5,42.5 + rot: 3.141592653589793 rad + pos: 69.5,-21.5 parent: 2 - - uid: 14771 + - uid: 14691 components: - type: Transform - pos: -78.5,26.5 + rot: 1.5707963267948966 rad + pos: 68.5,-20.5 parent: 2 - - uid: 14772 + - uid: 14692 components: - type: Transform - pos: -41.5,32.5 + pos: 69.5,-9.5 parent: 2 - - uid: 14773 + - uid: 14693 components: - type: Transform - pos: -54.5,36.5 + rot: 1.5707963267948966 rad + pos: 68.5,-10.5 parent: 2 - - uid: 14774 + - uid: 14694 components: - type: Transform - pos: -52.5,60.5 + rot: 1.5707963267948966 rad + pos: 77.5,-21.5 parent: 2 - - uid: 14775 + - uid: 14695 components: - type: Transform - pos: -76.5,46.5 + rot: 3.141592653589793 rad + pos: 78.5,-22.5 parent: 2 - - uid: 14776 + - uid: 14696 components: - type: Transform - pos: -107.5,37.5 + rot: -1.5707963267948966 rad + pos: 79.5,-21.5 parent: 2 - - uid: 14777 + - uid: 14697 components: - type: Transform - pos: -118.5,35.5 + rot: 3.141592653589793 rad + pos: -47.5,-14.5 parent: 2 - - uid: 14778 + - uid: 14698 components: - type: Transform - pos: -80.5,36.5 + rot: -1.5707963267948966 rad + pos: -36.5,6.5 parent: 2 - - uid: 14779 + - uid: 14699 components: - type: Transform - pos: -90.5,34.5 + rot: -1.5707963267948966 rad + pos: -36.5,5.5 parent: 2 - - uid: 14780 + - uid: 14700 components: - type: Transform - pos: 87.5,-3.5 + rot: 3.141592653589793 rad + pos: -29.5,-4.5 parent: 2 - - uid: 14781 + - uid: 14701 components: - type: Transform - pos: -31.5,48.5 + rot: 3.141592653589793 rad + pos: -28.5,-4.5 parent: 2 - - uid: 14782 + - uid: 14702 components: - type: Transform - pos: 59.5,34.5 + rot: 1.5707963267948966 rad + pos: 77.5,-9.5 parent: 2 - - uid: 14783 + - uid: 14703 components: - type: Transform - pos: -142.5,3.5 + rot: -1.5707963267948966 rad + pos: 82.5,-9.5 parent: 2 - - uid: 14784 + - uid: 14704 components: - type: Transform - pos: -59.5,-4.5 + rot: 1.5707963267948966 rad + pos: -25.5,19.5 parent: 2 - - uid: 14785 + - uid: 41493 components: - type: Transform - pos: -64.5,20.5 - parent: 2 -- proto: ClosetRadiationSuitFilled + rot: 3.141592653589793 rad + pos: 61.5,62.5 + parent: 40599 + - uid: 41494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,79.5 + parent: 40599 + - uid: 41495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,78.5 + parent: 40599 + - uid: 41496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,78.5 + parent: 40599 + - uid: 41497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,79.5 + parent: 40599 + - uid: 41498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,73.5 + parent: 40599 + - uid: 41499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,70.5 + parent: 40599 + - uid: 41500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,70.5 + parent: 40599 +- proto: ChairCarp entities: - - uid: 14786 + - uid: 14705 components: - type: Transform - pos: 41.5,-54.5 + pos: 6.5,-34.5 parent: 2 - - uid: 14787 + - uid: 14706 components: - type: Transform - pos: 41.5,-53.5 + rot: -1.5707963267948966 rad + pos: 7.5,-35.5 parent: 2 - - uid: 14788 + - uid: 14707 components: - type: Transform - pos: -18.5,-42.5 + rot: 1.5707963267948966 rad + pos: 5.5,-35.5 parent: 2 - - uid: 14789 + - uid: 14708 components: - type: Transform - pos: -18.5,-40.5 + rot: -1.5707963267948966 rad + pos: -2.5,-45.5 parent: 2 - - uid: 14790 + - uid: 14709 components: - type: Transform - pos: -18.5,-41.5 + pos: -5.5,36.5 parent: 2 - - uid: 14791 + - uid: 14710 components: - type: Transform - pos: -45.5,-7.5 + rot: -1.5707963267948966 rad + pos: 4.5,60.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 14792 + - uid: 45490 components: - type: Transform - pos: -37.5,36.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14793 - - 14794 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14795 + pos: -1.5,5.5 + parent: 45355 + - uid: 45491 components: - type: Transform - pos: -36.5,36.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14796 - - 14797 - - 14798 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41154 + pos: 1.5,5.5 + parent: 45355 + - uid: 45492 components: - type: Transform - pos: 54.5,30.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41158 - - 41157 - - 41156 - - 41155 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetToolFilled - entities: - - uid: 45112 + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 45355 + - uid: 45493 components: - type: Transform - pos: 10.5,7.5 - parent: 44970 -- proto: ClosetWall + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 45355 + - uid: 45494 + components: + - type: Transform + pos: -2.5,5.5 + parent: 45355 + - uid: 45495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 45355 +- proto: ChairFolding entities: - - uid: 14799 + - uid: 14711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 102.45449,-21.403572 + parent: 2 + - uid: 14712 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,32.5 + pos: 24.5,-52.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: - - 14801 - - 14800 - - uid: 14802 + - uid: 14713 components: - type: Transform - pos: 101.5,-41.5 + pos: 22.48456,-45.425278 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99739 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - open: True - - uid: 14803 + - uid: 14714 components: - type: Transform - pos: 97.5,-39.5 + pos: 23.20331,-45.425278 parent: 2 - - type: EntityStorage - open: True -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 14804 + - uid: 14715 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,0.5 + pos: 30.493212,-49.51819 parent: 2 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 14805 + - uid: 14716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,7.5 + pos: 39.5,-45.5 parent: 2 - - uid: 14806 + - uid: 14717 + components: + - type: Transform + pos: 66.53162,-13.495409 + parent: 2 + - uid: 14718 components: - type: Transform rot: 3.141592653589793 rad - pos: -100.5,0.5 + pos: 66.513275,-15.403383 parent: 2 - - uid: 14807 + - uid: 14719 components: - type: Transform - pos: 21.5,14.5 + rot: 1.5707963267948966 rad + pos: 65.50425,-14.596163 parent: 2 - - uid: 14808 + - uid: 14720 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-15.5 + pos: 65.65433,17.630648 parent: 2 - - uid: 14809 + - uid: 14721 components: - type: Transform - pos: -46.5,-1.5 + rot: -1.5707963267948966 rad + pos: 67.28711,17.612303 parent: 2 - - uid: 14810 + - uid: 14722 components: - type: Transform - pos: 14.5,-14.5 + rot: 1.5707963267948966 rad + pos: -81.23829,3.489825 parent: 2 - - uid: 14811 + - uid: 14723 components: - type: Transform - pos: -13.5,-14.5 + pos: -80.160164,4.63045 parent: 2 -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 14812 + - uid: 14724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-43.5 + rot: -1.5707963267948966 rad + pos: -78.128914,3.8335745 parent: 2 -- proto: ClosetWallOrange - entities: - - uid: 14813 + - uid: 14725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-9.5 + rot: -1.5707963267948966 rad + pos: -77.503914,1.6304494 parent: 2 - - uid: 14814 + - uid: 14726 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,-9.5 + pos: -65.26057,68.79269 parent: 2 - - uid: 14815 + - uid: 14727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-9.5 + rot: -1.5707963267948966 rad + pos: -19.484694,-17.275656 parent: 2 -- proto: ClothingBackpackBrigmedic - entities: - - uid: 8320 + - uid: 14728 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - - type: InsideEntityStorage -- proto: ClothingBackpackDuffelBrigmedic - entities: - - uid: 14816 + rot: -1.5707963267948966 rad + pos: -19.484694,-16.29128 + parent: 2 + - uid: 14729 components: - type: Transform - pos: -53.538464,15.934719 + rot: -1.5707963267948966 rad + pos: -19.515944,-15.306906 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBackpackDuffelCaptain - entities: - - uid: 14818 + - uid: 14730 components: - type: Transform - parent: 14817 - - type: Physics - canCollide: False -- proto: ClothingBackpackDuffelMilitary - entities: - - uid: 41159 + pos: 100.48166,-27.555984 + parent: 2 + - uid: 14731 components: - type: Transform - pos: 38.55018,72.6017 - parent: 40203 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 14824 + rot: 1.5707963267948966 rad + pos: 98.45253,-40.32536 + parent: 2 + - uid: 14732 components: - type: Transform - pos: 22.48265,21.753365 + pos: -28.495218,43.568424 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBackpackSatchelBrigmedic - entities: - - uid: 8321 + - uid: 14733 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - - type: InsideEntityStorage -- proto: ClothingBackpackWaterTank - entities: - - uid: 3 + rot: -1.5707963267948966 rad + pos: -63.53128,51.646416 + parent: 2 + - uid: 14734 components: - type: Transform - pos: -31.358772,23.420755 + rot: 3.141592653589793 rad + pos: -64.49476,50.60938 parent: 2 - - type: SolutionAmmoProvider - maxShots: 200 - shots: 30 - - type: SolutionContainerManager - solutions: null - containers: - - tank - - type: ContainerContainer - containers: - solution@tank: !type:ContainerSlot - ent: 4 -- proto: ClothingBeltChefFilled - entities: - - uid: 8203 + - uid: 41501 components: - type: Transform - parent: 8201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltJanitorFilled + rot: 3.141592653589793 rad + pos: 31.505125,28.77624 + parent: 40599 +- proto: ChairFoldingSpawnFolded entities: - - uid: 14718 + - uid: 14735 components: - type: Transform - parent: 14717 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltPlant - entities: - - uid: 14826 + pos: 100.87463,-29.989363 + parent: 2 + - uid: 14736 components: - type: Transform - parent: 14825 - - type: Storage - storedItems: - 14827: - position: 0,0 - _rotation: South - 14829: - position: 1,0 - _rotation: South - 14828: - position: 2,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 14829 - - 14828 - - 14827 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltSalvageWebbing - entities: - - uid: 14796 + pos: 101.66916,-28.38411 + parent: 2 + - uid: 14737 components: - type: Transform - parent: 14795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45113 + rot: 3.141592653589793 rad + pos: 62.068115,11.309929 + parent: 2 + - uid: 14738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.9199209,11.565837 - parent: 44970 -- proto: ClothingBeltSecurityWebbing - entities: - - uid: 14833 + pos: 55.358616,4.978217 + parent: 2 + - uid: 14739 components: - type: Transform - pos: -4.454876,-33.34879 + pos: 55.56174,4.696967 parent: 2 - - uid: 41161 + - uid: 14740 components: - type: Transform - parent: 41160 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingBeltUtility - entities: - - uid: 14834 + pos: 55.452366,4.837592 + parent: 2 + - uid: 14741 components: - type: Transform - pos: 66.66116,-43.4024 + rot: 1.5707963267948966 rad + pos: 12.73511,65.5004 parent: 2 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 14835 + - uid: 14742 components: - type: Transform - pos: -1.4921355,-37.145515 + rot: -1.5707963267948966 rad + pos: -19.484694,-18.181906 parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 14836 + - uid: 41502 components: - type: Transform - pos: -9.490737,11.381115 - parent: 2 - - uid: 14837 + pos: 59.270226,59.64274 + parent: 40599 + - uid: 41503 components: - type: Transform - pos: -9.381362,11.599865 - parent: 2 -- proto: ClothingEyesBlindfold + rot: 3.141592653589793 rad + pos: 30.722475,68.680145 + parent: 40599 +- proto: ChairGreyscale entities: - - uid: 14838 + - uid: 14743 components: - type: Transform - pos: -12.6853695,69.4888 + pos: -25.5,-16.5 parent: 2 - - uid: 14839 + - uid: 14744 components: - type: Transform - pos: -79.49954,14.693098 + pos: -25.5,-14.5 parent: 2 - - uid: 14840 + - uid: 14745 components: - type: Transform - pos: -7.7204657,73.3818 + rot: -1.5707963267948966 rad + pos: 25.5,27.5 parent: 2 -- proto: ClothingEyesGlasses - entities: - - uid: 14841 + - uid: 14746 components: - type: Transform - pos: -22.666113,45.109135 + rot: 1.5707963267948966 rad + pos: 46.5,-0.5 parent: 2 - - uid: 14842 + - uid: 14747 components: - type: Transform - rot: 0.3490658503988659 rad - pos: -23.5477,26.105722 + rot: 1.5707963267948966 rad + pos: 46.5,0.5 parent: 2 - - uid: 14843 + - uid: 14748 components: - type: Transform - pos: -5.5502977,19.035652 + rot: 1.5707963267948966 rad + pos: 46.5,1.5 parent: 2 -- proto: ClothingEyesGlassesChemical - entities: - - uid: 14844 + - uid: 14749 components: - type: Transform - pos: -7.552884,42.557854 + rot: 1.5707963267948966 rad + pos: 46.5,2.5 parent: 2 -- proto: ClothingEyesGlassesMercenary - entities: - - uid: 14846 + - uid: 14750 components: - type: Transform - parent: 14845 - - type: Physics - canCollide: False -- proto: ClothingEyesGlassesMeson - entities: - - uid: 14849 + rot: 1.5707963267948966 rad + pos: 45.5,2.5 + parent: 2 + - uid: 14751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.615309,-12.964996 + rot: 1.5707963267948966 rad + pos: 45.5,1.5 parent: 2 - - uid: 14851 + - uid: 14752 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14852 + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + - uid: 14753 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14853 + rot: 1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - uid: 14754 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14854 + rot: 1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 14755 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14859 + rot: 1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - uid: 14756 components: - type: Transform - pos: 26.425108,-3.2469153 + rot: 1.5707963267948966 rad + pos: 44.5,1.5 parent: 2 - - uid: 41167 + - uid: 14757 components: - type: Transform - rot: 0.3839724354387525 rad - pos: 55.51079,57.504215 - parent: 40203 -- proto: ClothingEyesGlassesSunglasses - entities: - - uid: 14819 + rot: 1.5707963267948966 rad + pos: 44.5,2.5 + parent: 2 + - uid: 14758 components: - type: Transform - parent: 14817 - - type: Physics - canCollide: False - - uid: 14861 + rot: 1.5707963267948966 rad + pos: 43.5,-0.5 + parent: 2 + - uid: 14759 components: - type: Transform - parent: 14860 - - type: Physics - canCollide: False - - uid: 41169 + rot: 1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + - uid: 14760 components: - type: Transform - parent: 41168 - - type: Physics - canCollide: False -- proto: ClothingEyesGlassesThermal - entities: - - uid: 14865 + rot: 1.5707963267948966 rad + pos: 43.5,1.5 + parent: 2 + - uid: 14761 components: - - type: MetaData - desc: Крутые очки для катания. - name: 'горнолыжные очки #2' - type: Transform - parent: 14864 - - type: Physics - canCollide: False - - uid: 14870 + rot: 1.5707963267948966 rad + pos: 43.5,2.5 + parent: 2 + - uid: 14762 components: - - type: MetaData - desc: Крутые очки для катания. - name: 'горнолыжные очки #3' - type: Transform - parent: 14869 - - type: Physics - canCollide: False - - uid: 14875 + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 2 + - uid: 14763 components: - - type: MetaData - desc: Крутые очки для катания. - name: 'горнолыжные очки #1' - type: Transform - parent: 14874 - - type: Physics - canCollide: False - - uid: 14880 + rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 + - uid: 14764 components: - - type: MetaData - desc: Крутые очки для катания. - name: 'горнолыжные очки #4' - type: Transform - parent: 14879 - - type: Physics - canCollide: False - - uid: 41173 + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 + - uid: 14765 components: - type: Transform - rot: 0.4188790204786391 rad - pos: 41.271942,56.81776 - parent: 40203 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]5%[/color]. - priority: 0 - component: Armor - title: null - - uid: 41175 + rot: 3.141592653589793 rad + pos: 8.5,-56.5 + parent: 2 + - uid: 14766 components: - type: Transform - parent: 41174 - - type: Physics - canCollide: False -- proto: ClothingEyesHudBeer - entities: - - uid: 14884 + pos: 8.5,-53.5 + parent: 2 + - uid: 14767 components: - - type: MetaData - desc: Меня всё время спрашивают, знаю ли я Тайлера Дердена. - name: оранжевые очки - type: Transform - pos: 1.724452,65.427155 + rot: 1.5707963267948966 rad + pos: 22.5,29.5 parent: 2 - missingComponents: - - ShowThirstIcons - - SolutionScanner - - uid: 45115 + - uid: 14768 components: - type: Transform - parent: 45114 - - type: Physics - canCollide: False -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 14885 + rot: -1.5707963267948966 rad + pos: 24.5,29.5 + parent: 2 + - uid: 14769 components: - type: Transform - pos: -1.5524054,-35.7023 + pos: -22.5,-15.5 parent: 2 -- proto: ClothingEyesHudMedical - entities: - - uid: 14886 + - uid: 14770 components: - type: Transform - pos: -21.506512,55.580692 + pos: -24.5,-14.5 parent: 2 - - uid: 14887 + - uid: 14771 components: - type: Transform - pos: -4.539809,56.84001 + rot: 1.5707963267948966 rad + pos: -116.5,5.5 parent: 2 -- proto: ClothingEyesHudMedSec - entities: - - uid: 8322 + - uid: 14772 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesHudSecurity - entities: - - uid: 14888 + rot: 1.5707963267948966 rad + pos: -116.5,4.5 + parent: 2 + - uid: 14773 components: - type: Transform - pos: -41.385914,10.774635 + rot: 1.5707963267948966 rad + pos: -116.5,3.5 parent: 2 - - uid: 14889 + - uid: 14774 components: - type: Transform - pos: -41.385914,10.47776 + rot: -1.5707963267948966 rad + pos: -113.5,5.5 parent: 2 -- proto: ClothingHandsGlovesAerostatic - entities: - - uid: 14891 + - uid: 14775 components: - type: Transform - parent: 14890 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 14895 + rot: -1.5707963267948966 rad + pos: -113.5,4.5 + parent: 2 + - uid: 14776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.43204,2.5466933 + rot: -1.5707963267948966 rad + pos: -113.5,3.5 parent: 2 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 14896 + - uid: 14777 components: - type: Transform - pos: 94.80704,4.0623183 + pos: -27.5,-16.5 parent: 2 -- proto: ClothingHandsGlovesColorBlack - entities: - - uid: 14897 + - uid: 14778 components: - type: Transform - pos: -26.491638,1.9695137 + pos: -28.5,-16.5 parent: 2 -- proto: ClothingHandsGlovesColorLightBrown - entities: - - uid: 41178 + - uid: 14779 components: - type: Transform - pos: 47.5807,23.74843 - parent: 40203 -- proto: ClothingHandsGlovesColorPurple - entities: - - uid: 41180 + pos: -21.5,-15.5 + parent: 2 + - uid: 14780 components: - type: Transform - parent: 41179 - - type: Physics - canCollide: False -- proto: ClothingHandsGlovesColorWhite - entities: - - uid: 14898 + pos: -30.5,-15.5 + parent: 2 + - uid: 14781 components: - type: Transform - pos: -79.56864,14.519531 + pos: -31.5,-15.5 parent: 2 - - uid: 14899 + - uid: 14782 components: - type: Transform - pos: -54.578114,15.80353 + pos: -28.5,-14.5 parent: 2 - - uid: 40350 + - uid: 14783 components: - type: Transform - parent: 40348 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40351 + pos: -27.5,-14.5 + parent: 2 + - uid: 14784 components: - type: Transform - parent: 40348 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorYellow + pos: -24.5,-16.5 + parent: 2 +- proto: ChairOfficeDark entities: - - uid: 14855 + - uid: 14785 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14856 + pos: 54.26891,-11.532528 + parent: 2 + - uid: 14786 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14857 + rot: 3.141592653589793 rad + pos: 53.815784,-13.188778 + parent: 2 + - uid: 14787 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14900 + rot: 3.141592653589793 rad + pos: 99.52584,-9.199225 + parent: 2 + - uid: 14788 components: - type: Transform - pos: 12.493604,-13.417599 + rot: 3.141592653589793 rad + pos: 58.281586,13.026648 parent: 2 - - uid: 14901 + - uid: 14789 components: - type: Transform - pos: 26.643858,-3.5594153 + rot: -1.5707963267948966 rad + pos: 46.31654,22.511124 parent: 2 - - uid: 14902 + - uid: 14790 components: - - type: MetaData - desc: Это прекрасно... - name: Золотистые Божественные Перчатки великого Грейтайда - type: Transform - pos: 79.587234,-36.501892 + pos: 11.493872,31.580387 parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 14903 + - uid: 14791 components: - - type: MetaData - desc: Эти перчатки защищают пользователя от поражения электрическим током. - name: изолированные перчатки - type: Transform - pos: -11.224819,-7.63994 + rot: 3.141592653589793 rad + pos: 2.5377269,4.737376 parent: 2 - - uid: 14904 + - uid: 14792 components: - type: Transform - pos: -20.416895,60.60993 + rot: 3.141592653589793 rad + pos: -5.537677,-5.8628364 parent: 2 -- proto: ClothingHandsGlovesCombat - entities: - - uid: 14905 + - uid: 14793 components: - type: Transform - pos: -48.456856,-8.764416 + rot: -1.5707963267948966 rad + pos: -4.6235237,-12.390051 parent: 2 - - uid: 14906 + - uid: 14794 components: - type: Transform - pos: -32.27073,23.454811 + rot: -1.5707963267948966 rad + pos: -9.879389,-11.651037 parent: 2 -- proto: ClothingHandsGlovesConducting - entities: - - uid: 14858 + - uid: 14795 components: - type: Transform - parent: 14850 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesFingerless - entities: - - uid: 14907 + rot: 1.5707963267948966 rad + pos: -20.501991,4.717472 + parent: 2 + - uid: 14796 components: - type: Transform - pos: 48.51179,23.460117 + rot: -1.5707963267948966 rad + pos: -6.5306225,-36.83682 parent: 2 - - uid: 14908 + - uid: 14797 components: - type: Transform - pos: 65.52054,-42.293026 + rot: 3.141592653589793 rad + pos: 31.5,-37.5 parent: 2 - - uid: 14909 + - uid: 14798 components: - type: Transform - pos: 65.57354,-42.453556 + rot: 3.141592653589793 rad + pos: 10.446068,-7.1002116 parent: 2 - - uid: 41181 + - uid: 14799 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.288414,30.802208 - parent: 40203 -- proto: ClothingHandsGlovesFingerlessInsulated - entities: - - uid: 14910 - components: - - type: Transform - pos: 72.55705,-31.710068 + pos: 17.782337,-12.501369 parent: 2 - - uid: 41146 - components: - - type: Transform - parent: 41145 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesJanitor - entities: - - uid: 14719 + - uid: 14800 components: - type: Transform - parent: 14717 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14911 + rot: -1.5707963267948966 rad + pos: 9.319968,-8.344826 + parent: 2 + - uid: 14801 components: - type: Transform - pos: 4.4312325,32.61446 + rot: 1.5707963267948966 rad + pos: 11.741843,-9.376076 parent: 2 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 14912 + - uid: 14802 components: - type: Transform - pos: 22.52689,18.561907 + pos: 10.4990225,-5.832334 parent: 2 - - uid: 14913 + - uid: 14803 components: - type: Transform - pos: -25.214466,42.490177 + pos: 17.5,-34.5 parent: 2 - - uid: 14914 + - uid: 14804 components: - type: Transform - pos: -16.626143,44.446003 + rot: 3.141592653589793 rad + pos: 23.507948,18.67524 parent: 2 - - uid: 14915 + - uid: 14805 components: - type: Transform - pos: -4.539809,57.49626 + pos: 45.5,-54.5 parent: 2 - - uid: 41155 + - uid: 14806 components: - type: Transform - parent: 41154 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41182 + pos: 52.5,-54.5 + parent: 2 + - uid: 14807 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.353416,26.604939 - parent: 40203 -- proto: ClothingHandsGlovesLeather - entities: - - uid: 14917 + pos: 68.7081,-26.339006 + parent: 2 + - uid: 14808 components: - type: Transform - parent: 14916 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 14922 + rot: 1.5707963267948966 rad + pos: -33.5,7.5 + parent: 2 + - uid: 14809 components: - type: Transform - pos: 25.660822,54.458008 + rot: 1.5707963267948966 rad + pos: -33.5,6.5 parent: 2 -- proto: ClothingHandsGlovesPowerglove - entities: - - uid: 14923 + - uid: 14810 components: - - type: MetaData - name: 'горнолыжные перчатки #4' - type: Transform - pos: 5.423332,-19.327442 + rot: 3.141592653589793 rad + pos: -43.425217,0.71265566 parent: 2 - - uid: 14924 + - uid: 14811 components: - - type: MetaData - name: 'горнолыжные перчатки #1' - type: Transform - pos: 5.437126,-23.592083 + rot: 3.141592653589793 rad + pos: -41.643967,0.69703066 parent: 2 - - uid: 14925 + - uid: 14812 components: - - type: MetaData - name: 'горнолыжные перчатки #3' - type: Transform - pos: 4.668204,-19.350077 + pos: -29.032661,-0.3403287 parent: 2 - - uid: 14926 + - uid: 14813 components: - - type: MetaData - name: 'горнолыжные перчатки #2' - type: Transform - pos: 4.6283226,-23.63058 + rot: 1.5707963267948966 rad + pos: 81.67883,-39.494766 parent: 2 -- proto: ClothingHeadBandBotany - entities: - - uid: 14830 + - uid: 14814 components: - type: Transform - parent: 14825 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadBandMerc - entities: - - uid: 14847 + pos: 39.5,-48.5 + parent: 2 + - uid: 14815 components: - type: Transform - parent: 14845 - - type: Physics - canCollide: False -- proto: ClothingHeadCaptainHat - entities: - - uid: 14820 + rot: -1.5707963267948966 rad + pos: -33.482006,1.5256951 + parent: 2 + - uid: 14816 components: - type: Transform - parent: 14817 - - type: Physics - canCollide: False -- proto: ClothingHeadFishCap - entities: - - uid: 14927 + rot: 3.141592653589793 rad + pos: -29.482517,1.6282809 + parent: 2 + - uid: 14817 components: - type: Transform - pos: -74.29785,40.427856 + rot: 3.141592653589793 rad + pos: -10.5,35.5 parent: 2 -- proto: ClothingHeadHatBeretBrigmedic - entities: - - uid: 14929 + - uid: 14818 components: - type: Transform - parent: 14928 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBeretHoS - entities: - - uid: 14937 + rot: 3.141592653589793 rad + pos: -7.5,35.5 + parent: 2 + - uid: 14819 components: - - type: MetaData - desc: Чёрный берет для самых стильных мастеров алкоголя. - name: берет бармена - type: Transform - pos: 48.48054,23.756992 + rot: 1.5707963267948966 rad + pos: -6.480796,-31.36179 parent: 2 -- proto: ClothingHeadHatBeretMedic - entities: - - uid: 14938 + - uid: 14820 components: - type: Transform - pos: 7.4458838,52.761158 + rot: 3.141592653589793 rad + pos: -2.569995,-32.342228 parent: 2 -- proto: ClothingHeadHatBeretSecurityMedic - entities: - - uid: 14930 + - uid: 14821 components: - type: Transform - parent: 14928 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBlacksoft - entities: - - uid: 14940 + rot: -1.5707963267948966 rad + pos: -9.451962,52.655052 + parent: 2 + - uid: 14822 components: - type: Transform - parent: 14939 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBrownFlatcap - entities: - - uid: 14948 + rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + - uid: 14823 components: - type: Transform - pos: -35.34275,36.562195 + pos: -8.5,50.5 parent: 2 -- proto: ClothingHeadHatBunny - entities: - - uid: 14949 + - uid: 14824 components: - type: Transform - rot: -6.283185307179586 rad - pos: 64.496,4.726742 + rot: -1.5707963267948966 rad + pos: 2.3873284,53.703247 parent: 2 - - uid: 14950 + - uid: 14825 components: - type: Transform - pos: -79.483025,14.629606 + pos: -36.5,-15.5 parent: 2 -- proto: ClothingHeadHatCasa - entities: - - uid: 14952 + - uid: 14826 components: - type: Transform - parent: 14951 - - type: Physics - canCollide: False - - uid: 14957 + rot: 1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 2 + - uid: 14827 components: - type: Transform - parent: 14956 - - type: Physics - canCollide: False - - uid: 14960 + rot: 1.5707963267948966 rad + pos: -104.46098,-5.2507005 + parent: 2 + - uid: 14828 components: - type: Transform - parent: 14959 - - type: Physics - canCollide: False - - uid: 14963 + rot: 1.5707963267948966 rad + pos: -8.5,57.5 + parent: 2 + - uid: 14829 components: - type: Transform - parent: 14962 - - type: Physics - canCollide: False - - uid: 14966 + rot: -1.5707963267948966 rad + pos: -6.5,57.5 + parent: 2 + - uid: 14830 components: - type: Transform - parent: 14965 - - type: Physics - canCollide: False -- proto: ClothingHeadHatCatEarsValid - entities: - - uid: 14969 + rot: 1.5707963267948966 rad + pos: -108.45136,21.7114 + parent: 2 + - uid: 14831 components: - type: Transform - parent: 14968 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatChef - entities: - - uid: 8204 + rot: -1.5707963267948966 rad + pos: 66.427605,-40.743286 + parent: 2 + - uid: 14832 components: - type: Transform - parent: 8201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatCone - entities: - - uid: 13353 + rot: 1.5707963267948966 rad + pos: 73.42659,-39.21917 + parent: 2 + - uid: 14833 components: - type: Transform - pos: 13.954541,-27.977076 + rot: 1.5707963267948966 rad + pos: 73.535965,-40.37542 parent: 2 - - uid: 13385 + - uid: 14834 components: - type: Transform - pos: 13.048291,-28.27395 + rot: -1.5707963267948966 rad + pos: -109.563354,18.712671 parent: 2 - - uid: 17310 + - uid: 14835 components: - type: Transform - pos: 16.251415,-28.258326 + rot: 3.141592653589793 rad + pos: -97.06964,4.619934 parent: 2 - - uid: 23946 + - uid: 14836 components: - type: Transform - pos: 15.126416,-27.9302 + rot: 3.141592653589793 rad + pos: -96.03839,4.6355596 parent: 2 -- proto: ClothingHeadHatCowboyBrown - entities: - - uid: 14973 + - uid: 14837 components: - type: Transform - pos: -23.415535,-20.323317 + rot: 3.141592653589793 rad + pos: 62.517838,-33.387253 parent: 2 - - uid: 14974 + - uid: 14838 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.733868,27.519646 + pos: -107.61051,43.26721 parent: 2 -- proto: ClothingHeadHatCowboyGrey - entities: - - uid: 14975 + - uid: 14839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.280743,26.675896 + pos: 53.501072,-14.480213 parent: 2 -- proto: ClothingHeadHatCowboyRed - entities: - - uid: 14976 + - uid: 41504 components: - - type: MetaData - desc: Эта шляпа для настоящих профессионалов своей линии. "СТАРЫ БОХ!" - name: шляпа старого бога - type: Transform - pos: -29.568043,29.516003 - parent: 2 -- proto: ClothingHeadHatCowboyWhite - entities: - - uid: 14737 + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 40599 + - uid: 41505 components: - type: Transform - parent: 14736 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatFancyCrown - entities: - - uid: 14978 + rot: -1.5707963267948966 rad + pos: 54.96346,71.57883 + parent: 40599 + - uid: 41506 components: - type: Transform - parent: 14977 - - type: Physics - canCollide: False -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 41184 + pos: 50.5,52.5 + parent: 40599 + - uid: 41507 components: - type: Transform - parent: 41183 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatFlowerWreath + rot: 1.5707963267948966 rad + pos: 52.5,55.5 + parent: 40599 +- proto: ChairOfficeLight entities: - - uid: 14980 + - uid: 14840 components: - type: Transform - pos: 4.735759,-9.222401 + rot: -1.5707963267948966 rad + pos: -9.474349,44.10162 parent: 2 - - uid: 14981 + - uid: 14841 components: - type: Transform - pos: 34.450188,-26.452251 + rot: 1.5707963267948966 rad + pos: 44.5,-48.5 parent: 2 -- proto: ClothingHeadHatHardhatArmored - entities: - - uid: 14982 + - uid: 14842 components: - type: Transform - pos: 10.503109,-45.608353 + rot: -1.5707963267948966 rad + pos: 60.267315,-0.7266071 parent: 2 - - uid: 41189 + - uid: 14843 components: - type: Transform - pos: 68.26486,61.404446 - parent: 40203 - - uid: 41190 + rot: -1.5707963267948966 rad + pos: 60.204815,-1.7109821 + parent: 2 + - uid: 14844 components: - type: Transform - pos: 68.43674,61.248196 - parent: 40203 -- proto: ClothingHeadHatHardhatBlue - entities: - - uid: 40205 + rot: -1.5707963267948966 rad + pos: 60.200317,3.1666493 + parent: 2 + - uid: 14845 components: - type: Transform - parent: 40204 - - type: HandheldLight - toggleActionEntity: 40206 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 40206 - - type: Physics - canCollide: False - - type: ActionsContainer - - uid: 41192 + rot: -1.5707963267948966 rad + pos: 60.169067,4.2447743 + parent: 2 + - uid: 14846 components: - type: Transform - parent: 41191 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatHardhatWhite - entities: - - uid: 40352 + rot: -1.5707963267948966 rad + pos: 52.549343,11.759819 + parent: 2 + - uid: 14847 components: - type: Transform - parent: 40348 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40353 + pos: -5.595339,-4.675059 + parent: 2 + - uid: 14848 components: - type: Transform - parent: 40348 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatHardhatYellow - entities: - - uid: 41196 + rot: 3.141592653589793 rad + pos: 51.5,-53.5 + parent: 2 + - uid: 14849 components: - type: Transform - rot: -0.5235987755982988 rad - pos: 32.11924,32.672073 - parent: 40203 -- proto: ClothingHeadHatHoodBioCmo - entities: - - uid: 14984 + pos: 10.502801,20.621168 + parent: 2 + - uid: 14850 components: - type: Transform - parent: 14983 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatHoodBioSecurity - entities: - - uid: 41197 + pos: 28.475449,57.466667 + parent: 2 + - uid: 14851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.459824,60.62635 + parent: 2 + - uid: 14852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - uid: 14853 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.45536,71.610565 - parent: 40203 -- proto: ClothingHeadHatHopcap - entities: - - uid: 41170 + pos: -9.574158,39.147324 + parent: 2 + - uid: 14854 components: - - type: MetaData - desc: Большая, стильная фуражка главы. - name: фуражка главы - type: Transform - parent: 41168 - - type: Physics - canCollide: False -- proto: ClothingHeadHatPaper - entities: - - uid: 14986 + rot: 1.5707963267948966 rad + pos: 15.6798115,53.785717 + parent: 2 + - uid: 14855 components: - type: Transform - pos: -117.54237,20.723295 + rot: -1.5707963267948966 rad + pos: 9.5235615,60.61986 parent: 2 -- proto: ClothingHeadHatPartyWaterCup - entities: - - uid: 14987 + - uid: 14856 components: - type: Transform - pos: 17.323902,27.56424 + rot: 1.5707963267948966 rad + pos: 13.4766865,60.49486 parent: 2 - - uid: 14988 + - uid: 14857 components: - type: Transform - pos: 17.620777,27.517365 + rot: 3.141592653589793 rad + pos: -27.5,51.5 parent: 2 - - uid: 14989 + - uid: 14858 components: - type: Transform - pos: 17.558277,27.75174 + rot: 1.5707963267948966 rad + pos: -21.5,56.5 parent: 2 -- proto: ClothingHeadHatPirateTricord - entities: - - uid: 14990 + - uid: 14859 components: - type: Transform - pos: -109.20755,4.591349 + rot: -1.5707963267948966 rad + pos: -55.543747,16.616205 parent: 2 -- proto: ClothingHeadHatPurplesoft - entities: - - uid: 14720 + - uid: 14860 components: - type: Transform - parent: 14717 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatRichard - entities: - - uid: 14991 + rot: 1.5707963267948966 rad + pos: -4.5,69.5 + parent: 2 + - uid: 14861 components: - type: Transform - pos: 59.680374,-1.5741377 + rot: -1.5707963267948966 rad + pos: -43.165627,3.6473265 parent: 2 - - uid: 14992 + - uid: 14862 components: - - type: MetaData - desc: 'Первый вопрос: Тебе нравится причинять боль людям? Второй вопрос: Кто оставляет сообщения на твоем автоответчике? Третий вопрос: Где ты находишься прямо сейчас? Последний вопрос: Почему мы ведем этот разговор?' - type: Transform - pos: -67.5371,-2.4245238 + rot: -1.5707963267948966 rad + pos: -21.45307,42.58208 parent: 2 -- proto: ClothingHeadHatSantahat - entities: - - uid: 14993 + - uid: 14863 components: - type: Transform - pos: 34.470238,46.47495 + rot: -1.5707963267948966 rad + pos: -21.45307,44.597706 parent: 2 -- proto: ClothingHeadHatSecsoftFlipped - entities: - - uid: 40281 + - uid: 14864 components: - type: Transform - parent: 40279 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatStrawHat - entities: - - uid: 14994 + pos: -26.5,55.5 + parent: 2 + - uid: 14865 components: - type: Transform - pos: -41.43014,22.623772 + rot: -1.5707963267948966 rad + pos: -21.531195,43.628956 parent: 2 -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 14995 + - uid: 14866 components: - type: Transform - pos: -4.477309,57.80602 + rot: -1.5707963267948966 rad + pos: -21.45307,45.51958 parent: 2 -- proto: ClothingHeadHatUshanka - entities: - - uid: 14918 + - uid: 14867 components: - type: Transform - parent: 14916 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14996 + pos: 1.9750614,37.646088 + parent: 2 + - uid: 14868 components: - type: Transform - pos: -50.406315,61.59988 + pos: -27.5,55.5 parent: 2 - - uid: 14997 + - uid: 14869 components: - type: Transform - pos: 70.72133,-53.23313 + rot: 1.5707963267948966 rad + pos: -21.5,25.5 parent: 2 - - uid: 14998 + - uid: 14870 components: - type: Transform - pos: 70.81508,-53.54563 + rot: -1.5707963267948966 rad + pos: -19.5,25.5 parent: 2 - - uid: 14999 + - uid: 14871 components: - type: Transform - pos: 70.44008,-53.405006 + pos: -109.56268,2.4686198 parent: 2 - - uid: 15000 + - uid: 14872 components: - type: Transform - pos: 70.5807,-53.63938 + rot: -1.5707963267948966 rad + pos: 10.174155,63.993267 parent: 2 - - uid: 40285 + - uid: 14873 components: - type: Transform - parent: 40283 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41176 + rot: 3.141592653589793 rad + pos: -30.560913,-21.055408 + parent: 2 + - uid: 14874 components: - type: Transform - parent: 41174 - - type: Physics - canCollide: False - - uid: 41198 + rot: 3.141592653589793 rad + pos: -22.435915,-21.039783 + parent: 2 + - uid: 41508 components: - type: Transform - rot: -1.0122909661567112 rad - pos: 40.570694,56.045128 - parent: 40203 - - uid: 41199 + pos: 62.32042,78.5 + parent: 40599 + - uid: 41509 components: - type: Transform - rot: 1.8675022996339325 rad - pos: 44.883194,56.232628 - parent: 40203 - - uid: 41201 + pos: 68.32042,78.5 + parent: 40599 + - uid: 41510 components: - type: Transform - parent: 41200 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41205 + pos: 65.273544,78.5 + parent: 40599 + - uid: 41511 components: - type: Transform - parent: 41204 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHatWelding - entities: - - uid: 15001 + pos: 59.32042,78.5 + parent: 40599 + - uid: 41512 components: - type: Transform - pos: 29.52305,-39.37472 - parent: 2 - - uid: 15002 + rot: -1.5707963267948966 rad + pos: 61.3796,59.627113 + parent: 40599 +- proto: ChairPilotSeat + entities: + - uid: 14875 components: - type: Transform - pos: 27.720707,-6.4755416 + pos: 2.5,2.5 parent: 2 -- proto: ClothingHeadHatWeldingMaskFlameBlue - entities: - - uid: 15003 + - uid: 14876 components: - type: Transform - pos: 18.50567,-35.38392 + rot: 3.141592653589793 rad + pos: 99.5,-39.5 parent: 2 - - uid: 41208 + - uid: 47272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.51895,61.673363 - parent: 40203 -- proto: ClothingHeadHatWitch - entities: - - uid: 15004 + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 47245 + - uid: 47273 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.077618,27.707146 - parent: 2 -- proto: ClothingHeadHatWitch1 - entities: - - uid: 45116 + pos: 2.5,-0.5 + parent: 47245 + - uid: 47274 components: - type: Transform - parent: 45114 - - type: Physics - canCollide: False -- proto: ClothingHeadHelmetBasic + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 47245 +- proto: ChairRitual entities: - - uid: 41162 + - uid: 14877 components: - type: Transform - parent: 41160 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetBone + rot: 3.141592653589793 rad + pos: 53.532322,-16.339588 + parent: 2 +- proto: ChairWood entities: - - uid: 15005 + - uid: 14878 components: - type: Transform - pos: -34.66835,-53.608177 + rot: -1.5707963267948966 rad + pos: -49.48625,68.69426 parent: 2 - - uid: 15006 + - uid: 14879 components: - type: Transform - pos: -77.24187,-9.67132 + rot: 1.5707963267948966 rad + pos: -104.35864,7.713187 parent: 2 - - type: Physics - canCollide: False - - type: PointLight - color: '#CF352EFF' - radius: 1.5 - missingComponents: - - Item - - Pullable -- proto: ClothingHeadHelmetCosmonaut - entities: - - uid: 14866 + - uid: 14880 components: - - type: MetaData - name: 'горнолыжный шлем #2' - type: Transform - parent: 14864 - - type: Physics - canCollide: False - - uid: 14871 + rot: -1.5707963267948966 rad + pos: 38.33215,17.590208 + parent: 2 + - uid: 14881 components: - - type: MetaData - name: 'горнолыжный шлем #3' - type: Transform - parent: 14869 - - type: Physics - canCollide: False - - uid: 14876 + rot: 1.5707963267948966 rad + pos: 36.76602,23.644403 + parent: 2 + - uid: 14882 components: - - type: MetaData - name: 'горнолыжный шлем #1' - type: Transform - parent: 14874 - - type: Physics - canCollide: False - - uid: 14881 + rot: 3.141592653589793 rad + pos: 37.531647,19.87126 + parent: 2 + - uid: 14883 components: - - type: MetaData - name: 'горнолыжный шлем #4' - type: Transform - parent: 14879 - - type: Physics - canCollide: False -- proto: ClothingHeadHelmetCult - entities: - - uid: 15007 + rot: 1.5707963267948966 rad + pos: 36.70715,17.574583 + parent: 2 + - uid: 14884 components: - type: Transform - pos: 22.364405,15.81032 + pos: 26.53663,40.63643 parent: 2 -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 15008 + - uid: 14885 components: - type: Transform - pos: -54.47654,-32.381947 + rot: 3.141592653589793 rad + pos: 26.56788,38.69893 parent: 2 -- proto: ClothingHeadHelmetRiot - entities: - - uid: 15009 + - uid: 14886 components: - type: Transform - pos: -41.182995,-8.277538 + rot: -1.5707963267948966 rad + pos: 38.312897,23.628778 parent: 2 - - uid: 15010 + - uid: 14887 components: - type: Transform - pos: -41.51112,-8.261913 + pos: 37.531647,21.418135 parent: 2 - - uid: 15011 + - uid: 14888 components: - type: Transform - pos: -40.259598,-8.235502 + rot: 3.141592653589793 rad + pos: -13.669277,-10.307123 parent: 2 - - uid: 15012 + - uid: 14889 components: - type: Transform - pos: -40.665848,-8.251127 + rot: 1.5707963267948966 rad + pos: 37.858208,-2.8915977 parent: 2 -- proto: ClothingHeadHelmetSecurityMedic - entities: - - uid: 8323 + - uid: 14890 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetSwat - entities: - - uid: 15013 + rot: 3.141592653589793 rad + pos: 40.12206,13.067863 + parent: 2 + - uid: 14891 components: - type: Transform - pos: -48.47248,-9.170666 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 parent: 2 -- proto: ClothingHeadHelmetTemplar - entities: - - uid: 15014 + - uid: 14892 components: - type: Transform - pos: 27.36161,4.733528 + rot: 1.5707963267948966 rad + pos: 91.559525,-25.423542 parent: 2 -- proto: ClothingHeadNurseHat - entities: - - uid: 15015 + - uid: 14893 components: - - type: MetaData - name: шапочка горничной - type: Transform - pos: 3.2437325,32.817585 + rot: 1.5707963267948966 rad + pos: 1.6539478,44.524754 parent: 2 - - uid: 15017 + - uid: 14894 components: - - type: MetaData - name: шапочка горничной - type: Transform - parent: 15016 - - type: Physics - canCollide: False -- proto: ClothingHeadPaperSackSmile - entities: - - uid: 15019 + rot: 1.5707963267948966 rad + pos: 1.6383228,43.66538 + parent: 2 + - uid: 14895 components: - type: Transform - pos: -104.486885,28.5701 + rot: 3.141592653589793 rad + pos: 3.4351978,42.75913 parent: 2 -- proto: ClothingHeadPyjamaSyndicatePink - entities: - - uid: 15020 + - uid: 14896 components: - - type: MetaData - desc: Чтобы держать твою голову в тепле. - name: розовая пижамная шапочка - type: Transform - pos: 3.4112935,-36.470608 + rot: 3.141592653589793 rad + pos: 2.5758228,42.75913 parent: 2 -- proto: ClothingHeadPyjamaSyndicateRed - entities: - - uid: 15021 + - uid: 14897 components: - - type: MetaData - desc: Чтобы держать твою голову в тепле. - name: красная пижамная шапочка - type: Transform - pos: 3.6300435,-36.361233 + pos: 0.5,21.5 parent: 2 -- proto: ClothingHeadsetBrigmedic - entities: - - uid: 8324 + - uid: 14898 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadsetMining - entities: - - uid: 45118 + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 2 + - uid: 14899 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.3445925,11.515112 - parent: 44970 -- proto: ClothingMaskBandSkull - entities: - - uid: 41209 - components: - - type: Transform - pos: 36.380623,68.64987 - parent: 40203 -- proto: ClothingMaskBreathMedicalSecurity - entities: - - uid: 15 + pos: -6.5352354,19.13226 + parent: 2 + - uid: 14900 components: - type: Transform - parent: 12 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15022 + pos: -0.5,21.5 + parent: 2 + - uid: 14901 components: - type: Transform - pos: -122.15886,18.852543 + rot: 3.141592653589793 rad + pos: 0.5,18.5 parent: 2 -- proto: ClothingMaskFox - entities: - - uid: 15023 + - uid: 14902 components: - type: Transform - pos: -80.2816,14.687473 + rot: 3.141592653589793 rad + pos: -0.5,18.5 parent: 2 -- proto: ClothingMaskGas - entities: - - uid: 15024 + - uid: 14903 components: - type: Transform - pos: -20.808458,60.73184 + pos: 1.5,21.5 parent: 2 - - uid: 15025 + - uid: 14904 components: - type: Transform - pos: 10.568942,37.502342 + rot: -1.5707963267948966 rad + pos: 2.3135927,20.261866 parent: 2 - - uid: 15026 + - uid: 14905 components: - type: Transform - pos: 56.604855,31.825901 + rot: 1.5707963267948966 rad + pos: -51.434185,68.67675 parent: 2 - - uid: 41193 + - uid: 14906 components: - type: Transform - parent: 41191 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41210 + rot: 1.5707963267948966 rad + pos: -104.43677,11.713186 + parent: 2 + - uid: 14907 components: - type: Transform - pos: 39.885696,56.624565 - parent: 40203 - - uid: 41211 + rot: -1.5707963267948966 rad + pos: -2.7481675,20.1216 + parent: 2 + - uid: 14908 components: - type: Transform - rot: 0.3490658503988659 rad - pos: 41.99507,55.937065 - parent: 40203 - - uid: 41212 + rot: -1.5707963267948966 rad + pos: -116.62858,24.53713 + parent: 2 + - uid: 14909 components: - type: Transform - rot: 3.2812189937493397 rad - pos: 44.55604,57.074387 - parent: 40203 -- proto: ClothingMaskGasSecurity - entities: - - uid: 14953 + rot: -1.5707963267948966 rad + pos: -116.69862,16.214655 + parent: 2 + - uid: 14910 components: - - type: MetaData - name: Маска самурая - type: Transform - parent: 14951 - - type: Physics - canCollide: False - - uid: 15027 + rot: -1.5707963267948966 rad + pos: -116.65175,20.315407 + parent: 2 + - uid: 14911 components: - type: Transform - pos: -10.319007,51.32558 + rot: 1.5707963267948966 rad + pos: -32.446667,23.606361 parent: 2 - - uid: 41213 + - uid: 41513 components: - type: Transform - pos: 37.460716,63.398056 - parent: 40203 - - uid: 41214 + rot: 1.5707963267948966 rad + pos: 44.831497,26.433424 + parent: 40599 + - uid: 41514 components: - type: Transform - pos: 36.49433,80.56036 - parent: 40203 - - uid: 41215 + rot: -1.5707963267948966 rad + pos: 46.175247,26.433424 + parent: 40599 + - uid: 41515 components: - type: Transform - pos: 36.666206,80.40411 - parent: 40203 -- proto: ClothingMaskGasSwat - entities: - - uid: 15028 + rot: 3.141592653589793 rad + pos: 68.54725,40.859905 + parent: 40599 + - uid: 41516 components: - type: Transform - pos: -48.47248,-8.436291 - parent: 2 - - uid: 41150 + rot: -1.5707963267948966 rad + pos: 42.5,34.5 + parent: 40599 + - uid: 41517 components: - type: Transform - parent: 41149 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskGasVoiceChameleon - entities: - - uid: 15029 + rot: 1.5707963267948966 rad + pos: 44.690872,25.542799 + parent: 40599 + - uid: 41518 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.677773,31.148817 - parent: 2 -- proto: ClothingMaskItalianMoustache - entities: - - uid: 8205 + pos: 46.175247,26.433424 + parent: 40599 + - uid: 41519 components: - type: Transform - parent: 8201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingMaskMuzzle - entities: - - uid: 15030 + rot: -1.5707963267948966 rad + pos: 46.190872,25.777174 + parent: 40599 + - uid: 41520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.52316,-14.405226 - parent: 2 - - uid: 15031 + rot: 1.5707963267948966 rad + pos: 74.804405,27.669073 + parent: 40599 + - uid: 41521 components: - type: Transform - pos: -10.70503,51.325512 - parent: 2 - - uid: 15032 + pos: 56.703117,27.537905 + parent: 40599 + - uid: 46674 components: - type: Transform - pos: -12.19677,69.921715 - parent: 2 - - uid: 15033 + pos: 3.4877982,5.511879 + parent: 46584 + - uid: 47019 components: - type: Transform - pos: 97.57685,-11.445862 - parent: 2 - - uid: 15034 + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 46943 + - uid: 47020 components: - type: Transform - pos: -79.46285,14.436256 - parent: 2 - - uid: 15035 + rot: -1.5707963267948966 rad + pos: 4.70864,2.6495957 + parent: 46943 + - uid: 47021 components: - type: Transform - pos: -8.118903,73.967735 - parent: 2 -- proto: ClothingMaskNinja + rot: -1.5707963267948966 rad + pos: 4.67739,4.5870957 + parent: 46943 +- proto: CheapLighter entities: - - uid: 14958 + - uid: 14913 components: - type: Transform - parent: 14956 + parent: 14912 - type: Physics canCollide: False - - uid: 14961 + - uid: 14914 components: - type: Transform - parent: 14959 - - type: Physics - canCollide: False - - uid: 14964 + pos: -25.088907,-15.445789 + parent: 2 + - uid: 41522 components: - type: Transform - parent: 14962 - - type: Physics - canCollide: False - - uid: 14967 + rot: 1.5707963267948966 rad + pos: 50.593178,68.07846 + parent: 40599 +- proto: CheapRollerBed + entities: + - uid: 14915 components: + - type: MetaData + desc: Качат мышц. + name: тренажер для штанги - type: Transform - parent: 14965 - - type: Physics - canCollide: False -- proto: ClothingMaskPlague + pos: -121.37774,11.762642 + parent: 2 + missingComponents: + - Item + - Foldable +- proto: CheapRollerBedSpawnFolded entities: - - uid: 15036 + - uid: 14916 components: - type: Transform - pos: -31.77073,23.798561 + pos: -25.466438,16.690285 parent: 2 -- proto: ClothingMaskSadMime +- proto: CheckerBoard entities: - - uid: 15037 + - uid: 14917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.57814,3.3263137 + pos: 97.49116,-3.3986645 parent: 2 -- proto: ClothingMaskScaredMime - entities: - - uid: 15038 + - uid: 14918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.593765,3.6388137 + pos: -38.476795,26.606562 parent: 2 -- proto: ClothingMaskSexyClown +- proto: ChemDispenser entities: - - uid: 15040 + - uid: 14919 components: - type: Transform - parent: 15039 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15045 + pos: -10.5,44.5 + parent: 2 + - uid: 14920 components: - type: Transform - pos: -80.40047,14.42874 + pos: -10.5,39.5 parent: 2 -- proto: ClothingMaskSexyMime +- proto: ChemicalPayload entities: - - uid: 14738 + - uid: 14921 components: - type: Transform - parent: 14736 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15046 + pos: 38.73019,-49.17668 + parent: 2 + - uid: 14922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.268257,11.987856 + pos: 38.433315,-49.379807 parent: 2 - - uid: 15048 + - uid: 14923 components: - type: Transform - parent: 15047 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15055 + pos: -6.4480906,42.067627 + parent: 2 + - uid: 14924 components: - type: Transform - pos: -80.510544,14.63666 + pos: -6.4373283,42.077126 parent: 2 -- proto: ClothingMaskSterile +- proto: ChemistryEmptyBottle01 entities: - - uid: 15056 + - uid: 14925 components: - type: Transform - pos: 22.507605,18.962395 + pos: -8.406277,42.26853 parent: 2 - - uid: 15057 + - uid: 14926 components: - type: Transform - pos: -25.22782,42.717136 + pos: -8.615728,42.26853 parent: 2 - - uid: 15058 + - uid: 14927 components: - type: Transform - pos: -4.477309,57.02751 + pos: -8.529668,42.062397 parent: 2 -- proto: ClothingMaskWeldingGas - entities: - - uid: 14800 + - uid: 41523 components: - type: Transform - parent: 14799 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakBi + pos: 61.7882,63.51844 + parent: 40599 +- proto: ChemistryEmptyBottle03 entities: - - uid: 15060 + - uid: 14928 components: + - type: MetaData + name: успокоительное - type: Transform - parent: 15059 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 14739 + pos: -3.6786795,69.64291 + parent: 2 + - uid: 14929 components: - type: MetaData - desc: Мягкий, красный плащ. Пахнет лавандой. Кажется он вам кого-то напоминает.. - name: красный плащ + name: бутылочка омнизина - type: Transform - parent: 14736 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckCloakIntersex - entities: - - uid: 15061 + rot: -1.5707963267948966 rad + pos: 2.899078,54.390747 + parent: 2 + - uid: 41524 components: - type: Transform - pos: 79.48951,-30.503166 - parent: 2 -- proto: ClothingNeckCloakMiner + pos: 56.24311,59.566467 + parent: 40599 +- proto: ChemistryEmptyBottle04 entities: - - uid: 45119 + - uid: 5 components: + - type: MetaData + name: бутылочка дифенилметиламина - type: Transform - rot: -1.5707963267948966 rad - pos: -1.545465,11.193348 - parent: 44970 -- proto: ClothingNeckCloakMoth - entities: - - uid: 14931 + pos: -13.463369,57.72706 + parent: 2 + - type: Tag + tags: + - Bottle + - type: SolutionContainerManager + solutions: null + containers: + - drink + - type: ContainerContainer + containers: + solution@drink: !type:ContainerSlot + ent: 6 + - uid: 41525 components: - type: Transform - parent: 14928 - - type: Physics - canCollide: False -- proto: ClothingNeckCloakVoid + rot: -1.5707963267948966 rad + pos: 55.74311,59.628967 + parent: 40599 +- proto: ChemistryHotplate entities: - - uid: 15062 + - uid: 14930 components: - type: Transform - pos: -32.286354,23.595436 + pos: -8.5,41.5 parent: 2 -- proto: ClothingNeckClownmedal - entities: - - uid: 15063 + - uid: 14931 components: - type: Transform - pos: -40.291714,8.565586 + pos: 30.5,32.5 parent: 2 -- proto: ClothingNeckHeadphones + - type: ItemPlacer + placedEntities: + - 23698 + - type: PlaceableSurface + isPlaceable: False +- proto: ChemMaster entities: - - uid: 14867 - components: - - type: MetaData - name: 'горнолыжные наушники #2' - - type: Transform - parent: 14864 - - type: Physics - canCollide: False - - uid: 14872 + - uid: 14932 components: - - type: MetaData - name: 'горнолыжные наушники #3' - type: Transform - parent: 14869 - - type: Physics - canCollide: False - - uid: 14877 + pos: -10.5,43.5 + parent: 2 + - uid: 14933 components: - - type: MetaData - name: 'горнолыжные наушники #1' - type: Transform - parent: 14874 - - type: Physics - canCollide: False - - uid: 14882 + pos: -10.5,38.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 14934 components: - - type: MetaData - name: 'горнолыжные наушники #4' - type: Transform - parent: 14879 - - type: Physics - canCollide: False - - uid: 15064 + pos: 8.483881,-54.947712 + parent: 2 + - uid: 14935 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.644647,19.53062 + pos: 30.510391,-33.396664 parent: 2 - - uid: 15065 + - uid: 14936 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.535272,19.452496 + pos: 78.52862,-21.430456 parent: 2 -- proto: ClothingNeckLawyerbadge +- proto: Cigar entities: - - uid: 15066 + - uid: 14937 components: - type: Transform - pos: -21.319386,22.675781 + pos: -27.534801,-20.33517 parent: 2 -- proto: ClothingNeckMantleCap + - uid: 14938 + components: + - type: Transform + pos: -27.644176,-20.257046 + parent: 2 +- proto: CigarCase entities: - - uid: 14821 + - uid: 14939 components: - type: Transform - parent: 14817 - - type: Physics - canCollide: False -- proto: ClothingNeckMantleHOP + pos: -27.529057,-19.976585 + parent: 2 +- proto: Cigarette entities: - - uid: 15067 + - uid: 14940 components: - type: Transform - pos: -12.49514,-12.349632 + pos: 1.599452,65.239655 parent: 2 -- proto: ClothingNeckScarfStripedBlack +- proto: CigaretteBicaridine entities: - uid: 14941 components: - type: Transform - parent: 14939 - - type: Physics - canCollide: False - - uid: 15069 + rot: 3.141592653589793 rad + pos: 57.51325,-27.391449 + parent: 2 +- proto: CigaretteLicoxide + entities: + - uid: 14942 components: - type: Transform - parent: 15068 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15070 + pos: -25.463676,-15.122017 + parent: 2 +- proto: CigaretteMold + entities: + - uid: 14943 components: - type: Transform - parent: 15068 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckScarfStripedBlue + rot: -1.5707963267948966 rad + pos: 40.28184,29.607618 + parent: 2 +- proto: CigaretteSpent entities: - - uid: 15074 + - uid: 14944 components: - type: Transform - parent: 15073 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15075 + pos: 65.23152,7.3295026 + parent: 2 + - uid: 14945 components: - type: Transform - parent: 15073 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15079 + pos: -30.691975,8.051675 + parent: 2 + - uid: 14946 components: - type: Transform - parent: 15078 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15080 + rot: -1.5678144256260733 rad + pos: -29.973263,8.733681 + parent: 2 + - uid: 14947 components: - type: Transform - parent: 15078 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15083 + rot: 3.141592653589793 rad + pos: -28.879475,4.239175 + parent: 2 + - uid: 14948 components: - type: Transform - pos: 5.687616,39.53514 + rot: 3.141592653589793 rad + pos: -30.535725,4.2548 parent: 2 -- proto: ClothingNeckScarfStripedBrown - entities: - - uid: 15084 + - uid: 14949 components: - type: Transform - pos: 70.36195,-52.436256 + pos: -12.154511,68.72156 parent: 2 - - uid: 15085 + - uid: 14950 components: - type: Transform - pos: 70.54945,-52.561256 + rot: -1.5707963267948966 rad + pos: -11.513886,69.47156 parent: 2 -- proto: ClothingNeckScarfStripedGreen - entities: - - uid: 15087 + - uid: 14951 components: - type: Transform - parent: 15086 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15088 + rot: 3.141592653589793 rad + pos: -11.342011,68.62781 + parent: 2 + - uid: 14952 components: - type: Transform - parent: 15086 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15092 + rot: 3.141592653589793 rad + pos: -13.5451355,68.37781 + parent: 2 + - uid: 14953 components: - type: Transform - parent: 15091 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15093 + rot: 1.5707963267948966 rad + pos: -11.498261,70.50281 + parent: 2 + - uid: 14954 components: - type: Transform - parent: 15091 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15097 + rot: 1.5707963267948966 rad + pos: 1.161952,65.020905 + parent: 2 + - uid: 14955 components: - type: Transform - parent: 15096 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41216 + pos: 65.45099,-39.34227 + parent: 2 + - uid: 14956 components: - type: Transform - pos: 74.16173,29.482563 - parent: 40203 -- proto: ClothingNeckScarfStripedLightBlue - entities: - - uid: 15099 + rot: 1.5707963267948966 rad + pos: 65.23224,-39.482895 + parent: 2 + - uid: 14957 components: - type: Transform - pos: 5.2462482,39.53514 + pos: 65.45099,-39.27977 parent: 2 - - uid: 15100 + - uid: 14958 components: - type: Transform - pos: 5.5274982,39.519516 + rot: 1.5707963267948966 rad + pos: -25.517433,-15.488216 parent: 2 - - uid: 41156 + - uid: 14959 components: - type: Transform - parent: 41154 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckScarfStripedOrange - entities: - - uid: 15102 + pos: -40.4032,21.419062 + parent: 2 + - uid: 14960 components: - type: Transform - parent: 15101 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15103 + pos: -40.4032,21.419062 + parent: 2 + - uid: 14961 components: - type: Transform - parent: 15101 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15104 + rot: -1.5707963267948966 rad + pos: -40.293823,21.372187 + parent: 2 + - uid: 14962 components: - type: Transform - parent: 15101 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckScarfStripedPurple - entities: - - uid: 15105 + rot: 3.141592653589793 rad + pos: -40.262573,21.262812 + parent: 2 + - uid: 14963 components: - type: Transform - pos: 24.387617,-43.439083 + rot: 3.141592653589793 rad + pos: -40.543823,21.106562 parent: 2 - - uid: 15106 + - uid: 14964 components: - type: Transform - pos: 24.528242,-43.54846 + rot: 3.141592653589793 rad + pos: -35.14867,26.590937 parent: 2 - - uid: 15107 + - uid: 40640 components: - type: Transform - pos: 24.637617,-43.439083 - parent: 2 - - uid: 41217 + parent: 40639 + - type: Physics + canCollide: False + - uid: 40641 components: - type: Transform - pos: 47.92077,27.576271 - parent: 40203 - - uid: 45120 + parent: 40639 + - type: Physics + canCollide: False + - uid: 41526 components: - - type: MetaData - desc: Стильное маленькое полотенце. - name: полосатое пурпурное полотенце - type: Transform - pos: -5.6917686,9.327798 - parent: 44970 - - uid: 45121 + rot: -1.5707963267948966 rad + pos: 52.140053,72.95346 + parent: 40599 + - uid: 41527 components: - - type: MetaData - desc: Стильное маленькое полотенце. - name: полосатое пурпурное полотенце - type: Transform - pos: -5.4105186,9.369465 - parent: 44970 - - uid: 45122 + rot: 3.141592653589793 rad + pos: 51.983803,73.719086 + parent: 40599 + - uid: 41528 components: - - type: MetaData - desc: Стильное маленькое полотенце. - name: полосатое пурпурное полотенце - type: Transform - pos: 4.6959205,9.515298 - parent: 44970 - - uid: 45123 + pos: 68.854004,41.116848 + parent: 40599 + - uid: 41529 components: - - type: MetaData - desc: Стильное маленькое полотенце. - name: полосатое пурпурное полотенце - type: Transform - pos: 4.404254,9.338215 - parent: 44970 -- proto: ClothingNeckScarfStripedRed - entities: - - uid: 14942 + rot: 3.141592653589793 rad + pos: 68.760254,41.252266 + parent: 40599 + - uid: 41530 components: - type: Transform - parent: 14939 - - type: Physics - canCollide: False - - uid: 15049 + rot: 1.5707963267948966 rad + pos: 68.59359,41.429348 + parent: 40599 + - uid: 41531 components: - type: Transform - parent: 15047 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15109 + rot: 3.141592653589793 rad + pos: 68.801926,41.314766 + parent: 40599 + - uid: 41532 components: - type: Transform - parent: 15108 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15110 + pos: 45.684444,26.557226 + parent: 40599 + - uid: 41533 components: - type: Transform - parent: 15108 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15114 + pos: 45.79382,25.963476 + parent: 40599 +- proto: CigaretteSyndicate + entities: + - uid: 14966 components: - type: Transform - parent: 15113 + parent: 14965 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 15115 + - uid: 41534 components: - type: Transform - parent: 15113 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15118 + pos: 27.792608,61.886677 + parent: 40599 +- proto: CigarGoldCase + entities: + - uid: 14973 components: - type: Transform - pos: -26.5181,4.5066013 + pos: -75.462326,18.644321 parent: 2 - - uid: 15119 + - uid: 14974 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.521355,13.432722 + pos: 4.4245415,-9.566095 parent: 2 - - uid: 15120 + - uid: 14975 components: - type: Transform - pos: -40.51932,6.5139103 + pos: 15.553156,-4.267561 parent: 2 -- proto: ClothingNeckScarfStripedSyndieGreen +- proto: CigarGoldSpent entities: - - uid: 15121 + - uid: 14976 components: - type: Transform - pos: 70.661674,-52.510742 + pos: 7.2402697,19.747454 parent: 2 -- proto: ClothingNeckScarfStripedSyndieRed +- proto: CigarSpent entities: - - uid: 15122 + - uid: 14977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.47138,12.456606 + pos: -80.67999,12.630311 parent: 2 - - uid: 40282 - components: - - type: Transform - parent: 40279 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 15050 - components: - - type: Transform - parent: 15047 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingNeckSecuritymedal - entities: - - uid: 15123 + - uid: 14978 components: - type: Transform - pos: -40.635464,8.581211 + pos: 67.78601,6.9545026 parent: 2 -- proto: ClothingNeckStethoscope - entities: - - uid: 15124 + - uid: 14979 components: - type: Transform - pos: -4.617934,56.599842 + rot: -1.5707963267948966 rad + pos: -65.80744,69.23019 parent: 2 -- proto: ClothingNeckStoleChaplain - entities: - - uid: 15125 + - uid: 14980 components: - type: Transform - pos: 29.49726,5.629672 + pos: -32.516617,29.700043 parent: 2 -- proto: ClothingOuterAerostaticBomberJacket - entities: - - uid: 14868 + - uid: 41535 components: - - type: MetaData - name: 'горнолыжная куртка #2' - type: Transform - parent: 14864 - - type: Physics - canCollide: False - - uid: 14873 + rot: 3.141592653589793 rad + pos: 36.62155,78.56025 + parent: 40599 + - uid: 41536 components: - - type: MetaData - name: 'горнолыжная куртка #3' - type: Transform - parent: 14869 - - type: Physics - canCollide: False - - uid: 14878 + rot: -1.5707963267948966 rad + pos: 36.4653,78.794624 + parent: 40599 +- proto: CigPackBlack + entities: + - uid: 14981 components: - - type: MetaData - name: 'горнолыжная куртка #1' - type: Transform - parent: 14874 - - type: Physics - canCollide: False - - uid: 14883 + pos: 8.691622,-47.092056 + parent: 2 + - uid: 14982 components: - - type: MetaData - name: 'горнолыжная куртка #4' - type: Transform - parent: 14879 - - type: Physics - canCollide: False - - uid: 14892 + rot: 1.5707963267948966 rad + pos: -60.486504,52.821636 + parent: 2 + - uid: 41537 components: - type: Transform - parent: 14890 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15126 + rot: -1.5707963267948966 rad + pos: 68.28109,41.398098 + parent: 40599 +- proto: CigPackBlue + entities: + - uid: 14983 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.594906,2.4653826 + pos: 65.651665,-39.19853 parent: 2 -- proto: ClothingOuterApronBotanist +- proto: CigPackGreen entities: - - uid: 14831 + - uid: 41538 components: - type: Transform - parent: 14825 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterApronChef + rot: -1.5707963267948966 rad + pos: 52.436928,73.531586 + parent: 40599 +- proto: CigPackMixed entities: - - uid: 8206 + - uid: 14984 components: - type: Transform - parent: 8201 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterArmorBasic + pos: 7.2835283,20.747702 + parent: 2 +- proto: CigPackMixedMedical entities: - - uid: 41163 + - uid: 14986 components: - type: Transform - parent: 41160 + parent: 14985 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterArmorBasicSlim - entities: - - uid: 41218 + - uid: 14987 components: - type: Transform - rot: 0.4886921905584123 rad - pos: 40.67518,73.617325 - parent: 40203 -- proto: ClothingOuterArmorBulletproof + pos: 58.284966,-17.370838 + parent: 2 +- proto: CigPackRed entities: - - uid: 15127 + - uid: 14988 components: - type: Transform - pos: -37.650253,-8.391752 + rot: -1.5707963267948966 rad + pos: 92.54462,-16.494904 parent: 2 - - uid: 15128 + - uid: 41539 components: + - type: MetaData + name: пачка сигарет Chapman Red - type: Transform - pos: -37.29088,-8.407377 - parent: 2 -- proto: ClothingOuterArmorHeavy + rot: -1.5707963267948966 rad + pos: 27.995733,61.4023 + parent: 40599 +- proto: CigPackSyndicate entities: - - uid: 15129 + - uid: 47275 components: - type: Transform - pos: -48.488106,-9.467541 - parent: 2 -- proto: ClothingOuterArmorRaid + rot: 2.0943951023931953 rad + pos: -0.2518984,0.15892774 + parent: 47245 +- proto: CircuitImprinter entities: - - uid: 41151 + - uid: 14989 components: - type: Transform - parent: 41149 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterArmorReflective + pos: 31.5,-43.5 + parent: 2 +- proto: CleanerDispenser entities: - - uid: 15130 + - uid: 14990 components: - type: Transform - pos: -36.46998,-8.388493 + pos: 3.5,34.5 parent: 2 -- proto: ClothingOuterArmorRiot +- proto: ClockworkGrille entities: - - uid: 15131 + - uid: 14991 components: - type: Transform - pos: -40.634598,-8.673002 + rot: 1.5707963267948966 rad + pos: -23.5,18.5 parent: 2 - - uid: 15132 + - uid: 14992 components: - type: Transform - pos: -41.20371,-8.621288 + pos: -23.5,20.5 parent: 2 - - uid: 15133 + - uid: 14993 components: - type: Transform - pos: -41.51621,-8.621288 + pos: -73.5,19.5 parent: 2 - - uid: 15134 + - uid: 14994 components: - type: Transform - pos: -40.22256,-8.657377 + pos: -74.5,19.5 parent: 2 -- proto: ClothingOuterBioCmo + - uid: 14995 + components: + - type: Transform + pos: -78.5,19.5 + parent: 2 + - uid: 47022 + components: + - type: Transform + pos: 4.5,3.5 + parent: 46943 +- proto: ClockworkWindow entities: - - uid: 14985 + - uid: 47023 components: - type: Transform - parent: 14983 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCardborg + pos: 4.5,3.5 + parent: 46943 + - type: Occluder +- proto: CloningConsoleComputerCircuitboard entities: - - uid: 15135 + - uid: 41540 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.67935,-0.34403467 - parent: 2 -- proto: ClothingOuterCoatAMG + pos: 53.598984,56.39598 + parent: 40599 +- proto: CloningPodMachineCircuitboard entities: - - uid: 15136 + - uid: 46675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.404509,53.379215 - parent: 2 -- proto: ClothingOuterCoatBomber + rot: 0.3839724354387525 rad + pos: 5.0003815,7.288315 + parent: 46584 +- proto: ClosetBomb entities: - - uid: 14919 + - uid: 41541 components: - type: Transform - parent: 14916 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41185 + pos: 58.693913,57.61676 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41543 + - 41542 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41544 components: - type: Transform - parent: 41183 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatGentle - entities: - - uid: 41171 + pos: 59.850163,57.507385 + parent: 40599 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41545 components: - type: Transform - parent: 41168 - - type: Physics - canCollide: False -- proto: ClothingOuterCoatLab + pos: 57.318913,57.30426 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41547 + - 41546 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Weldable + isWelded: True +- proto: ClosetBombFilled entities: - - uid: 15137 + - uid: 14996 components: - type: Transform - pos: 5.1862535,38.640736 + pos: 41.5,-51.5 parent: 2 - - uid: 15138 + - uid: 14997 components: - type: Transform - pos: 5.692864,37.603294 + pos: -45.5,-6.5 parent: 2 - - uid: 40354 - components: - - type: Transform - parent: 40348 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40355 - components: - - type: Transform - parent: 40348 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatLabSecurityMedic +- proto: ClosetChef entities: - - uid: 14932 + - uid: 8445 components: - type: Transform - parent: 14928 - - type: Physics - canCollide: False -- proto: ClothingOuterCoatPirate + pos: -117.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8447 + - 8446 + - 8450 + - 8448 + - 8453 + - 8451 + - 8449 + - 8452 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetChefFilled entities: - - uid: 15139 + - uid: 14998 components: - type: Transform - pos: -109.5513,3.7632241 + pos: 29.5,39.5 parent: 2 -- proto: ClothingOuterCoatSpaceAsshole +- proto: ClosetEmergencyFilledRandom entities: - - uid: 15140 + - uid: 14999 components: - - type: MetaData - desc: самая крутая куртка в этой галактике! - name: куртка Jagerbeger - type: Transform - rot: -1.5707963267948966 rad - pos: -78.05912,3.01086 + pos: -39.5,-27.5 parent: 2 - - uid: 15141 + - uid: 15000 components: - - type: MetaData - desc: ин твони ван твони файв ай вас майнинг ту калонииии ооон мааарс - type: Transform - rot: -1.5707963267948966 rad - pos: -56.334858,46.56451 + pos: -16.5,-36.5 parent: 2 -- proto: ClothingOuterCoatSyndieCap - entities: - - uid: 15142 + - uid: 15001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.616177,52.607403 + pos: 54.5,-24.5 parent: 2 -- proto: ClothingOuterDogi - entities: - - uid: 14954 + - uid: 15002 components: - type: Transform - parent: 14951 - - type: Physics - canCollide: False -- proto: ClothingOuterFlannelGreen - entities: - - uid: 15143 + pos: 77.5,-6.5 + parent: 2 + - uid: 15003 components: - type: Transform - pos: -46.530743,26.644646 + pos: 84.5,-27.5 parent: 2 -- proto: ClothingOuterFlannelRed - entities: - - uid: 15071 + - uid: 15004 components: - type: Transform - parent: 15068 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15072 + pos: 65.5,-19.5 + parent: 2 + - uid: 15005 components: - type: Transform - parent: 15068 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15144 + pos: 65.5,-11.5 + parent: 2 + - uid: 15006 components: - type: Transform - pos: -46.561993,27.707146 + pos: 81.5,-6.5 parent: 2 -- proto: ClothingOuterHardsuitBrigmedic - entities: - - uid: 16 + - uid: 15007 components: - type: Transform - parent: 12 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]35%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]20%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]20%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]30%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitLuxury - entities: - - uid: 45124 + pos: 62.5,19.5 + parent: 2 + - uid: 15008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.2954649,11.290372 - parent: 44970 -- proto: ClothingOuterSanta - entities: - - uid: 15145 + pos: 55.5,18.5 + parent: 2 + - uid: 15009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.851227,1.3903403 + pos: 44.5,44.5 parent: 2 -- proto: ClothingOuterStraightjacket - entities: - - uid: 15146 + - uid: 15010 components: - type: Transform - pos: -8.269651,73.67275 + pos: 14.5,43.5 parent: 2 - - uid: 15147 + - uid: 15011 components: - type: Transform - pos: -12.294325,69.60957 + pos: 95.5,-25.5 parent: 2 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 41220 + - uid: 15012 components: - type: Transform - parent: 41219 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterSuitRad + pos: 101.5,-20.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom entities: - - uid: 41223 + - uid: 15013 components: - type: Transform - rot: -0.6632251157578453 rad - pos: 60.692635,56.078777 - parent: 40203 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]99%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingOuterSuitShrineMaiden - entities: - - uid: 15148 + pos: 26.5,47.5 + parent: 2 + - uid: 15014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.726227,0.5309653 + pos: -31.5,-33.5 parent: 2 -- proto: ClothingOuterVestArmorMedSec - entities: - - uid: 8325 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15015 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15016 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterVestHazard + pos: -84.5,38.5 + parent: 2 +- proto: ClosetFireFilled entities: - - uid: 41177 + - uid: 15017 components: - type: Transform - parent: 41174 - - type: Physics - canCollide: False - - uid: 41194 + pos: 100.5,-20.5 + parent: 2 + - uid: 15018 components: - type: Transform - parent: 41191 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterVestSecurityMedic - entities: - - uid: 14933 + pos: -49.5,-0.5 + parent: 2 + - uid: 15019 components: - type: Transform - parent: 14928 - - type: Physics - canCollide: False -- proto: ClothingOuterWinterBar - entities: - - uid: 15098 + pos: 33.5,-33.5 + parent: 2 + - uid: 15020 components: - type: Transform - parent: 15096 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterCap - entities: - - uid: 14822 + pos: -15.5,-36.5 + parent: 2 + - uid: 15021 components: - type: Transform - parent: 14817 - - type: Physics - canCollide: False -- proto: ClothingOuterWinterClown - entities: - - uid: 15041 + pos: 85.5,-27.5 + parent: 2 + - uid: 15022 components: - type: Transform - parent: 15039 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterCoat - entities: - - uid: 14862 + pos: 53.5,-24.5 + parent: 2 + - uid: 15023 components: - type: Transform - parent: 14860 - - type: Physics - canCollide: False - - uid: 15111 + pos: 82.5,-6.5 + parent: 2 + - uid: 15024 components: - type: Transform - parent: 15108 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15112 + pos: 76.5,-6.5 + parent: 2 + - uid: 15025 components: - type: Transform - parent: 15108 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15116 + pos: 65.5,-18.5 + parent: 2 + - uid: 15026 components: - type: Transform - parent: 15113 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15117 + pos: 65.5,-12.5 + parent: 2 + - uid: 15027 components: - type: Transform - parent: 15113 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15149 + pos: 54.5,18.5 + parent: 2 + - uid: 15028 components: - type: Transform - pos: -50.593815,60.740505 + pos: 71.5,11.5 parent: 2 -- proto: ClothingOuterWinterColorBlack - entities: - - uid: 40207 + - uid: 15029 components: - type: Transform - parent: 40204 - - type: Physics - canCollide: False - - uid: 41195 + pos: -30.5,12.5 + parent: 2 + - uid: 15030 components: - type: Transform - parent: 41191 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41206 + pos: 72.5,-29.5 + parent: 2 + - uid: 15031 components: - type: Transform - parent: 41204 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41224 + pos: -56.5,-14.5 + parent: 2 + - uid: 15032 components: - type: Transform - rot: -1.1868238913561442 rad - pos: 41.02632,57.48394 - parent: 40203 -- proto: ClothingOuterWinterColorBlue + pos: -104.28335,44.5 + parent: 2 +- proto: ClosetJanitor entities: - - uid: 15151 + - uid: 15033 components: - type: Transform - parent: 15150 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41157 + pos: -101.5,25.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15038 + - 15035 + - 15034 + - 15037 + - 15036 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetJanitorFilled + entities: + - uid: 15039 components: - type: Transform - parent: 41154 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41158 + pos: 4.5,34.5 + parent: 2 + - uid: 15040 components: - type: Transform - parent: 41154 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterColorBrown + pos: 5.5,34.5 + parent: 2 +- proto: ClosetL3Filled entities: - - uid: 41225 + - uid: 15041 components: - type: Transform - rot: 3.385938748868999 rad - pos: 33.472305,68.54956 - parent: 40203 -- proto: ClothingOuterWinterColorGray - entities: - - uid: 41207 + pos: 10.5,41.5 + parent: 2 + - uid: 15042 components: - type: Transform - parent: 41204 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterColorGreen + pos: 9.5,39.5 + parent: 2 +- proto: ClosetL3JanitorFilled entities: - - uid: 41226 + - uid: 15043 components: - type: Transform - pos: 74.398155,29.715948 - parent: 40203 -- proto: ClothingOuterWinterColorLightBrown + pos: 2.5,34.5 + parent: 2 +- proto: ClosetL3ScienceFilled entities: - - uid: 15089 - components: - - type: Transform - parent: 15086 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15090 + - uid: 15044 components: - type: Transform - parent: 15086 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15094 + pos: 36.5,-43.5 + parent: 2 + - uid: 15045 components: - type: Transform - parent: 15091 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15095 + pos: 35.5,-43.5 + parent: 2 + - uid: 15046 components: - type: Transform - parent: 15091 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterColorPurple + pos: 41.5,-52.5 + parent: 2 +- proto: ClosetL3Security entities: - - uid: 41227 + - uid: 41548 components: - type: Transform - pos: 48.771576,27.418306 - parent: 40203 -- proto: ClothingOuterWinterColorRed + pos: 64.5,72.5 + parent: 40599 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: ClosetL3SecurityFilled entities: - - uid: 15152 + - uid: 15047 components: - type: Transform - parent: 15150 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 40286 + pos: -45.5,-8.5 + parent: 2 + - uid: 41549 components: - type: Transform - parent: 40283 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterColorWhite + pos: 66.5,72.5 + parent: 40599 + - 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: ClosetL3VirologyFilled entities: - - uid: 15154 + - uid: 15048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.299484,18.883793 + pos: 1.5,58.5 parent: 2 - - uid: 41228 + - uid: 15049 components: - type: Transform - rot: 2.0943951023931953 rad - pos: 32.65969,27.755405 - parent: 40203 -- proto: ClothingOuterWinterColorYellow - entities: - - uid: 15153 + pos: 22.5,54.5 + parent: 2 + - uid: 15050 components: - type: Transform - parent: 15150 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41229 + pos: 2.5,58.5 + parent: 2 +- proto: ClosetLegal + entities: + - uid: 15051 components: + - type: MetaData + desc: Хранилище музыкальных принадлежностей и одежды. + name: шкаф музыканта - type: Transform - rot: 2.792526803190927 rad - pos: 47.271576,27.121431 - parent: 40203 -- proto: ClothingOuterWinterEngi + pos: 55.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetMaintenanceFilledRandom entities: - - uid: 41230 + - uid: 15052 components: - type: Transform - pos: 47.834076,27.527681 - parent: 40203 -- proto: ClothingOuterWinterGen - entities: - - uid: 15155 + pos: -20.5,-29.5 + parent: 2 + - uid: 15053 components: - type: Transform - pos: 5.224114,36.68142 + pos: 62.5,-10.5 parent: 2 - - uid: 15156 + - uid: 15054 components: - type: Transform - pos: 5.708489,36.634544 + pos: 50.5,29.5 parent: 2 -- proto: ClothingOuterWinterHoS - entities: - - uid: 41231 + - uid: 15055 components: - - type: MetaData - desc: Прочная, утилитарная зимняя куртка, предназначенная для защиты службы безопасности от любых угроз, связанных с бригом и переохлаждением. - name: зимняя бронекуртка службы безопасности - type: Transform - rot: -1.5707963267948966 rad - pos: 39.315804,72.6017 - parent: 40203 -- proto: ClothingOuterWinterHydro - entities: - - uid: 41232 + pos: 42.5,34.5 + parent: 2 + - uid: 15056 components: - type: Transform - pos: 74.69503,29.731573 - parent: 40203 -- proto: ClothingOuterWinterJani - entities: - - uid: 15157 + pos: 51.5,17.5 + parent: 2 + - uid: 15057 components: - type: Transform - pos: 4.1799784,32.471046 + pos: 39.5,31.5 parent: 2 - - uid: 15158 + - uid: 15058 components: - type: Transform - pos: 4.6487284,32.471046 + pos: 60.5,-18.5 parent: 2 - - uid: 41202 + - uid: 15059 components: - type: Transform - parent: 41200 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterMed - entities: - - uid: 15159 + pos: 48.5,-35.5 + parent: 2 + - uid: 15060 components: - type: Transform - pos: 5.6237535,38.640736 + pos: 56.5,21.5 parent: 2 - - uid: 15160 + - uid: 15061 components: - type: Transform - pos: 5.1706285,37.65636 + pos: 73.5,6.5 parent: 2 - - uid: 15161 + - uid: 15062 components: - type: Transform - pos: 5.4206285,37.65636 + pos: 64.5,14.5 parent: 2 - - uid: 15162 + - uid: 15063 components: - type: Transform - pos: 5.4831285,36.68761 + pos: 68.5,0.5 parent: 2 - - uid: 15163 + - uid: 15064 components: - type: Transform - pos: 43.501568,49.581184 + pos: 39.5,-26.5 parent: 2 -- proto: ClothingOuterWinterMime - entities: - - uid: 15051 + - uid: 15065 components: - type: Transform - parent: 15047 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterMiner - entities: - - uid: 14943 + pos: 50.5,-28.5 + parent: 2 + - uid: 15066 components: - type: Transform - parent: 14939 - - type: Physics - canCollide: False - - uid: 14944 - components: - - type: Transform - parent: 14939 - - type: Physics - canCollide: False -- proto: ClothingOuterWinterMusician - entities: - - uid: 15164 - components: - - type: Transform - pos: 56.48471,13.620398 + pos: 75.5,-4.5 parent: 2 - - uid: 15165 + - uid: 15067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.688656,-0.7221174 + pos: -16.5,-22.5 parent: 2 -- proto: ClothingOuterWinterRobo - entities: - - uid: 15166 + - uid: 15068 components: - - type: MetaData - desc: Тяжёлая куртка из 'синтетического' меха животных. На ней множество засечек и изъянов. На воротнике все ещё остались рыжие волоски.. - name: потрёпанная куртка робототехника - type: Transform - pos: 34.434563,-26.671001 + pos: 49.5,41.5 parent: 2 -- proto: ClothingOuterWinterSci - entities: - - uid: 15167 + - uid: 15069 components: - type: Transform - pos: 28.542252,-41.159756 + pos: 29.5,47.5 parent: 2 - - uid: 15168 + - uid: 15070 components: - type: Transform - pos: 28.573502,-41.347256 + pos: 45.5,44.5 parent: 2 - - uid: 15169 + - uid: 15071 components: - type: Transform - pos: 28.573502,-41.52434 + pos: 55.5,-17.5 parent: 2 - - uid: 41233 - components: - - type: Transform - pos: 48.740326,27.808931 - parent: 40203 -- proto: ClothingOuterWinterSec - entities: - - uid: 15170 + - uid: 15072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.683983,10.4657135 + pos: 33.5,-30.5 parent: 2 - - uid: 15171 + - uid: 15073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.683983,10.8250885 + pos: -34.5,-34.5 parent: 2 - - uid: 15172 + - uid: 15074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.652733,10.4657135 + pos: -46.5,-22.5 parent: 2 - - uid: 15173 + - uid: 15075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.730858,10.8250885 + pos: 71.5,15.5 parent: 2 - - uid: 15174 + - uid: 15076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.668358,10.8250885 + pos: 69.5,25.5 parent: 2 - - uid: 15175 + - uid: 15077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.621483,10.4657135 + pos: 65.5,28.5 parent: 2 - - uid: 41164 - components: - - type: Transform - parent: 41160 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterSyndie - entities: - - uid: 15177 - components: - - type: Transform - parent: 15176 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15182 - components: - - type: Transform - parent: 15181 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15186 + - uid: 15078 components: - type: Transform - rot: 0.5235987755982988 rad - pos: -90.80602,12.537157 + pos: 76.5,24.5 parent: 2 -- proto: ClothingOuterWinterViro - entities: - - uid: 15188 - components: - - type: Transform - parent: 15187 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterWinterWeb - entities: - - uid: 15076 + - uid: 15079 components: - type: Transform - parent: 15073 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15077 + pos: -33.5,42.5 + parent: 2 + - uid: 15080 components: - type: Transform - parent: 15073 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -78.5,26.5 + parent: 2 - uid: 15081 components: - type: Transform - parent: 15078 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15082 - components: - - type: Transform - parent: 15078 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15191 - components: - - type: MetaData - desc: Как она вообще работает? - name: куртка ИЗ СНЕГА?? - - type: Transform - pos: -88.386894,65.816925 + pos: -41.5,32.5 parent: 2 -- proto: ClothingShoesAerostatic - entities: - - uid: 14893 - components: - - type: Transform - parent: 14890 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41234 - components: - - type: Transform - pos: 72.429405,27.481573 - parent: 40203 -- proto: ClothingShoesBling - entities: - - uid: 15192 + - uid: 15082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.837894,4.4986978 + pos: -54.5,36.5 parent: 2 - - uid: 15193 + - uid: 15083 components: - type: Transform - pos: 0.5196409,-9.036889 + pos: -52.5,60.5 parent: 2 -- proto: ClothingShoesBootsCombat - entities: - - uid: 15194 + - uid: 15084 components: - type: Transform - pos: -29.357193,-9.998072 + pos: -76.5,46.5 parent: 2 - - uid: 15195 + - uid: 15085 components: - type: Transform - pos: -32.336304,23.329811 + pos: -107.5,37.5 parent: 2 -- proto: ClothingShoesBootsCowboyWhite - entities: - - uid: 14740 - components: - - type: Transform - parent: 14736 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesBootsLaceup - entities: - - uid: 15196 + - uid: 15086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.738012,22.279219 + pos: -118.5,35.5 parent: 2 - - uid: 15197 + - uid: 15087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 95.943214,4.451211 + pos: -80.5,36.5 parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 15198 + - uid: 15088 components: - type: Transform - pos: -9.303237,10.412365 + pos: -90.5,34.5 parent: 2 - - uid: 15199 + - uid: 15089 components: - type: Transform - pos: -9.537612,10.599865 + pos: 87.5,-3.5 parent: 2 -- proto: ClothingShoesBootsPerformer - entities: - - uid: 15200 + - uid: 15090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.50375,4.7799635 + pos: -31.5,48.5 parent: 2 - - uid: 15201 + - uid: 15091 components: - type: Transform - pos: 40.497627,54.30482 + pos: 59.5,34.5 parent: 2 -- proto: ClothingShoesBootsSyndieFilled - entities: - - uid: 41235 - components: - - type: Transform - rot: 0.4537856055185257 rad - pos: 36.378304,74.523575 - parent: 40203 -- proto: ClothingShoesBootsWinter - entities: - - uid: 15202 + - uid: 15092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.550512,22.638594 + pos: -142.5,3.5 parent: 2 - - uid: 15203 + - uid: 15093 components: - type: Transform - pos: -56.522285,46.078777 + pos: -59.5,-4.5 parent: 2 - - uid: 15204 + - uid: 15094 components: - type: Transform - pos: -115.650894,1.5909133 + pos: -64.5,20.5 parent: 2 - - uid: 15205 + - uid: 15095 components: - type: Transform - pos: -115.26027,1.5284133 + pos: 57.5,-20.5 parent: 2 - - uid: 15206 + - uid: 15096 components: - type: Transform - pos: -115.60402,1.8096633 + pos: -33.5,68.5 parent: 2 - - uid: 15207 + - uid: 15097 components: - type: Transform - pos: -115.22902,1.7471633 + pos: -99.5,46.5 parent: 2 - - uid: 40287 - components: - - type: Transform - parent: 40283 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41203 - components: - - type: Transform - parent: 41200 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41236 - components: - - type: Transform - pos: 39.30539,57.477745 - parent: 40203 - - uid: 41237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.226944,57.092003 - parent: 40203 - - uid: 41238 - components: - - type: Transform - pos: 39.43039,57.665245 - parent: 40203 - - uid: 41239 - components: - - type: Transform - pos: 45.36789,57.602745 - parent: 40203 - - uid: 41240 - components: - - type: Transform - pos: 64.380936,41.499718 - parent: 40203 - - uid: 41241 - components: - - type: Transform - pos: 64.599686,41.577843 - parent: 40203 - - uid: 41242 - components: - - type: Transform - pos: 48.334076,25.496431 - parent: 40203 - - uid: 41243 - components: - - type: Transform - pos: 72.66378,27.700323 - parent: 40203 -- proto: ClothingShoesBootsWinterCargo +- proto: ClosetRadiationSuitFilled entities: - - uid: 15208 + - uid: 15098 components: - type: Transform - pos: 69.75258,-52.32688 + pos: 41.5,-54.5 parent: 2 - - uid: 15209 + - uid: 15099 components: - type: Transform - pos: 69.78383,-52.54563 + pos: 41.5,-53.5 parent: 2 - - uid: 15210 + - uid: 15100 components: - type: Transform - pos: 69.8307,-53.123756 + pos: -18.5,-42.5 parent: 2 - - uid: 15211 + - uid: 15101 components: - type: Transform - pos: 69.84633,-53.67063 + pos: -18.5,-40.5 parent: 2 -- proto: ClothingShoesBootsWinterEngi - entities: - - uid: 41244 - components: - - type: Transform - pos: 77.40361,33.547653 - parent: 40203 - - uid: 41245 - components: - - type: Transform - pos: 48.740326,25.465181 - parent: 40203 - - uid: 41246 - components: - - type: Transform - pos: 48.740326,25.465181 - parent: 40203 -- proto: ClothingShoesBootsWinterMed - entities: - - uid: 15212 + - uid: 15102 components: - type: Transform - pos: 5.334561,40.28884 + pos: -18.5,-41.5 parent: 2 - - uid: 15213 + - uid: 15103 components: - type: Transform - pos: 5.725186,41.054466 + pos: -45.5,-7.5 parent: 2 - - uid: 15214 +- proto: ClosetSteelBase + entities: + - uid: 15104 components: - type: Transform - pos: 5.272061,41.03884 + pos: -37.5,36.5 parent: 2 - - uid: 15215 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15105 + - 15106 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15107 components: - type: Transform - pos: 5.725186,40.585716 + pos: -36.5,36.5 parent: 2 - - uid: 41247 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15108 + - 15109 + - 15110 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41550 components: - type: Transform - pos: 54.479225,28.546114 - parent: 40203 - - uid: 41248 + pos: 54.5,30.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41554 + - 41553 + - 41552 + - 41551 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetToolFilled + entities: + - uid: 45496 components: - type: Transform - pos: 54.61985,28.608614 - parent: 40203 -- proto: ClothingShoesBootsWinterSci + pos: 10.5,7.5 + parent: 45355 +- proto: ClosetWall entities: - - uid: 15216 + - uid: 15111 components: - type: Transform - pos: 28.542252,-42.191006 + rot: 1.5707963267948966 rad + pos: 51.5,32.5 parent: 2 - - uid: 15217 + - 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: + - 15113 + - 15112 + - uid: 15114 components: - type: Transform - pos: 28.542252,-42.388924 + pos: 101.5,-41.5 parent: 2 - - uid: 15218 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99739 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + open: True + - uid: 15115 components: - type: Transform - pos: 28.552668,-42.566006 + pos: 97.5,-39.5 parent: 2 - - uid: 41249 + - type: EntityStorage + open: True + - uid: 47246 components: - type: Transform - pos: 48.50595,25.605806 - parent: 40203 -- proto: ClothingShoesBootsWinterSec + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 47245 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 47247 + - 47251 + - 47248 + - 47249 + - 47250 +- proto: ClosetWallEmergencyFilledRandom entities: - - uid: 15219 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.256208,10.7782135 - parent: 2 - - uid: 15220 + - uid: 15116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.224958,10.3875885 + rot: 3.141592653589793 rad + pos: -101.5,0.5 parent: 2 - - uid: 15221 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 15117 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.224958,10.8094635 + pos: -35.5,7.5 parent: 2 - - uid: 15222 + - uid: 15118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.193708,10.4344635 + rot: 3.141592653589793 rad + pos: -100.5,0.5 parent: 2 - - uid: 15223 + - uid: 15119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.193708,10.8094635 + pos: 21.5,14.5 parent: 2 - - uid: 15224 + - uid: 15120 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.178083,10.2313385 + pos: -34.5,-15.5 parent: 2 - - uid: 15225 + - uid: 15121 components: - type: Transform - pos: -96.26072,-6.3848834 + pos: -46.5,-1.5 parent: 2 - - uid: 15226 + - uid: 15122 components: - type: Transform - pos: -96.245094,-6.1817584 + pos: 14.5,-14.5 parent: 2 - - uid: 15227 + - uid: 15123 components: - type: Transform - pos: -96.682594,-6.2911334 + pos: -13.5,-14.5 parent: 2 - - uid: 15228 +- proto: ClosetWallMaintenanceFilledRandom + entities: + - uid: 15124 components: - type: Transform - pos: -96.26072,-6.3067584 + rot: 1.5707963267948966 rad + pos: 95.5,-43.5 parent: 2 - - uid: 15229 +- proto: ClosetWallOrange + entities: + - uid: 15125 components: - type: Transform - pos: -96.72947,-6.4005084 + rot: 3.141592653589793 rad + pos: -107.5,-9.5 parent: 2 - - uid: 15230 + - uid: 15126 components: - type: Transform - pos: -96.66697,-6.1817584 + rot: 3.141592653589793 rad + pos: -106.5,-9.5 parent: 2 - - uid: 15231 + - uid: 15127 components: - type: Transform - pos: 16.560297,-11.893871 + rot: 3.141592653589793 rad + pos: -108.5,-9.5 parent: 2 -- proto: ClothingShoesBootsWinterSyndicate +- proto: ClothingBackpackBrigmedic entities: - - uid: 15178 - components: - - type: Transform - parent: 15176 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15183 + - uid: 8560 components: - type: Transform - parent: 15181 + parent: 8558 - type: Physics canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null - type: InsideEntityStorage - - uid: 15232 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.647427,51.732403 - parent: 2 -- proto: ClothingShoesBootsWinterWeb +- proto: ClothingBackpackDuffelBrigmedic entities: - - uid: 15233 + - uid: 15128 components: - - type: MetaData - desc: Ботинки из плотного снега, я отказываюсь это комментировать. - name: Снежные ботинки... - type: Transform - pos: -88.43377,65.285675 + pos: -53.538464,15.934719 parent: 2 -- proto: ClothingShoesBootsWork + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackDuffelCaptain entities: - - uid: 15234 - components: - - type: Transform - pos: -33.254463,35.312195 - parent: 2 - - uid: 41250 + - uid: 15130 components: - type: Transform - pos: 45.712997,57.64462 - parent: 40203 - - uid: 41251 + parent: 15129 + - type: Physics + canCollide: False +- proto: ClothingBackpackDuffelMilitary + entities: + - uid: 41555 components: - type: Transform - rot: -3.141592653589793 rad - pos: 42.604446,56.60544 - parent: 40203 - - uid: 41252 + pos: 38.55018,72.6017 + parent: 40599 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 15136 components: - type: Transform - pos: 38.5007,68.42918 - parent: 40203 - - uid: 41253 + pos: 22.48265,21.753365 + parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBackpackDuffelSyndicateAmmo + entities: + - uid: 47276 components: - type: Transform - rot: 3.4906585039886595 rad - pos: 33.60761,29.49499 - parent: 40203 -- proto: ClothingShoesChameleonNoSlips + pos: -1.4027272,-0.36618036 + parent: 47245 +- proto: ClothingBackpackSatchelBrigmedic entities: - - uid: 14920 + - uid: 8561 components: - type: Transform - parent: 14916 + parent: 8558 - type: Physics canCollide: False + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null - type: InsideEntityStorage -- proto: ClothingShoesChef +- proto: ClothingBackpackSatchelLeather entities: - - uid: 8207 + - uid: 14967 components: - type: Transform - parent: 8201 + parent: 14965 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesColorBlack + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBackpackWaterTank entities: - - uid: 15235 + - uid: 3 components: - type: Transform - pos: 73.16879,-31.94526 + pos: -31.358772,23.420755 parent: 2 -- proto: ClothingShoesColorBrown + - type: SolutionAmmoProvider + maxShots: 200 + shots: 30 + - type: SolutionContainerManager + solutions: null + containers: + - tank + - type: ContainerContainer + containers: + solution@tank: !type:ContainerSlot + ent: 4 +- proto: ClothingBeltChefFilled entities: - - uid: 15236 + - uid: 8447 components: - type: Transform - pos: 102.8349,1.2808279 - parent: 2 -- proto: ClothingShoesColorWhite + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltJanitorFilled entities: - - uid: 15237 - components: - - type: Transform - pos: 5.240811,40.554466 - parent: 2 - - uid: 15238 + - uid: 15034 components: - type: Transform - pos: 5.709561,40.179466 - parent: 2 - - uid: 15239 + parent: 15033 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltPlant + entities: + - uid: 15138 components: - type: Transform - pos: -122.69011,18.930668 - parent: 2 -- proto: ClothingShoesCult + parent: 15137 + - type: Storage + storedItems: + 15139: + position: 0,0 + _rotation: South + 15141: + position: 1,0 + _rotation: South + 15140: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15141 + - 15140 + - 15139 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltPlantFilled entities: - - uid: 15240 + - uid: 15145 components: - type: Transform - pos: 22.504192,15.349396 + pos: -75.51103,11.432099 parent: 2 -- proto: ClothingShoesGaloshes +- proto: ClothingBeltSalvageWebbing entities: - - uid: 14721 + - uid: 15108 components: - type: Transform - parent: 14717 + parent: 15107 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingShoesLeather - entities: - - uid: 41254 + - uid: 45497 components: - type: Transform - pos: 77.71611,33.62578 - parent: 40203 -- proto: ClothingShoesSkates + rot: -1.5707963267948966 rad + pos: -1.9199209,11.565837 + parent: 45355 +- proto: ClothingBeltSecurityWebbing entities: - - uid: 15241 - components: - - type: MetaData - name: 'роликовые коньки для катка #3' - - type: Transform - rot: 6.283185307179586 rad - pos: 4.6249366,-19.323357 - parent: 2 - - uid: 15242 - components: - - type: MetaData - name: 'роликовые коньки для катка #2' - - type: Transform - pos: 4.6118584,-23.586924 - parent: 2 - - uid: 15243 + - uid: 15146 components: - - type: MetaData - name: 'роликовые коньки для катка #4' - type: Transform - rot: 6.283185307179586 rad - pos: 5.406187,-19.354607 + pos: -4.454876,-33.34879 parent: 2 - - uid: 15244 + - uid: 41557 components: - type: Transform - pos: -58.30461,2.7114036 - parent: 2 - - uid: 15245 + parent: 41556 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltSyndieHolster + entities: + - uid: 47277 components: - - type: MetaData - name: 'роликовые коньки для катка #1' - type: Transform - pos: 5.393956,-23.592205 - parent: 2 - - uid: 15246 + rot: 1.1344640137963142 rad + pos: 4.4512267,-1.4662404 + parent: 47245 +- proto: ClothingBeltUtility + entities: + - uid: 15147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.726124,-30.59719 + pos: 66.66116,-43.4024 parent: 2 -- proto: ClothingShoesSlippers +- proto: ClothingBeltUtilityEngineering entities: - - uid: 15247 + - uid: 15148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.49185,4.7653403 + pos: -1.4921355,-37.145515 parent: 2 - - uid: 15248 + - uid: 46676 components: - type: Transform - pos: 53.471653,-15.72193 - parent: 2 -- proto: ClothingShoesSwat + pos: 5.5689464,2.5224607 + parent: 46584 +- proto: ClothingBeltUtilityFilled entities: - - uid: 15249 + - uid: 15149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.30435,4.329164 + pos: -9.490737,11.381115 parent: 2 -- proto: ClothingShoesTourist - entities: - - uid: 15250 + - uid: 15150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.49185,4.3278403 + pos: -9.381362,11.599865 parent: 2 - - uid: 45125 - components: - - type: Transform - pos: -4.5961885,9.352873 - parent: 44970 - - uid: 45126 - components: - - type: Transform - pos: -4.3461885,9.602873 - parent: 44970 - - uid: 45127 - components: - - type: Transform - pos: 3.461368,9.60462 - parent: 44970 - - uid: 45128 - components: - - type: Transform - pos: 3.680118,9.32337 - parent: 44970 -- proto: ClothingShoesWizard +- proto: ClothingEyesBlindfold entities: - - uid: 15251 + - uid: 15151 components: - - type: MetaData - desc: Вид традиционной японской обуви - name: Гэта - type: Transform - pos: -98.59016,43.204067 + pos: -12.6853695,69.4888 parent: 2 -- proto: ClothingUnderSocksCoder - entities: - - uid: 15252 + - uid: 15152 components: - - type: MetaData - desc: Пришло время контрибьютить, сёстры!!11! - type: Transform - pos: -28.510998,43.220444 + pos: -7.7204657,73.3818 parent: 2 -- proto: ClothingUniformJumpskirtBrigmedic - entities: - - uid: 14934 + - uid: 15154 components: - type: Transform - parent: 14928 + parent: 15153 - type: Physics canCollide: False -- proto: ClothingUniformJumpskirtElegantMaid + - type: InsideEntityStorage +- proto: ClothingEyesGlasses entities: - - uid: 14945 + - uid: 14968 components: - type: Transform - parent: 14939 + parent: 14965 - type: Physics canCollide: False - - uid: 15253 + - uid: 15161 components: - type: Transform - pos: 3.5093575,32.536335 + pos: -22.666113,45.109135 parent: 2 - - uid: 15254 + - uid: 15162 components: - type: Transform - rot: -6.283185307179586 rad - pos: 64.51163,4.398617 + rot: 0.3490658503988659 rad + pos: -23.5477,26.105722 parent: 2 - - uid: 15255 + - uid: 15163 components: - type: Transform - pos: -80.607605,14.821651 + pos: -5.5502977,19.035652 parent: 2 - - uid: 45117 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 15164 components: - type: Transform - parent: 45114 - - type: Physics - canCollide: False -- proto: ClothingUniformJumpskirtJanimaidmini + pos: -7.552884,42.557854 + parent: 2 +- proto: ClothingEyesGlassesHiddenSecurity entities: - - uid: 15018 + - uid: 15166 components: - type: Transform - parent: 15016 + parent: 15165 - type: Physics canCollide: False - - uid: 15256 - components: - - type: Transform - pos: -80.558685,14.638193 - parent: 2 -- proto: ClothingUniformJumpskirtOfLife + - type: InsideEntityStorage +- proto: ClothingEyesGlassesMercenary entities: - - uid: 14935 + - uid: 15174 components: - type: Transform - parent: 14928 + parent: 15173 - type: Physics canCollide: False -- proto: ClothingUniformJumpskirtOldDress +- proto: ClothingEyesGlassesMeson entities: - - uid: 15257 + - uid: 15177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.719906,1.0591327 + pos: 12.615309,-12.964996 parent: 2 -- proto: ClothingUniformJumpskirtPerformer - entities: - - uid: 14979 + - uid: 15179 components: - type: Transform - parent: 14977 + parent: 15178 - type: Physics canCollide: False - - uid: 15258 + - type: InsideEntityStorage + - uid: 15180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.68363,0.016147614 - parent: 2 -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 15259 + parent: 15178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15181 components: - type: Transform - pos: -80.607605,14.552578 - parent: 2 -- proto: ClothingUniformJumpsuitAncient - entities: - - uid: 15260 + parent: 15178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15182 components: - type: Transform - pos: 56.229855,31.544651 - parent: 2 - - uid: 15261 + parent: 15178 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.469437,33.346733 + pos: 26.425108,-3.2469153 parent: 2 - - uid: 15262 + - uid: 41563 components: - type: Transform - pos: 55.584023,33.409233 - parent: 2 - - uid: 15263 + rot: 0.3839724354387525 rad + pos: 55.51079,57.504215 + parent: 40599 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 15189 components: - type: Transform - pos: -77.26024,-10.169998 - parent: 2 + parent: 15188 - type: Physics canCollide: False - missingComponents: - - Item - - Pullable -- proto: ClothingUniformJumpsuitBartender - entities: - - uid: 15264 - components: - - type: MetaData - desc: Красивая и опрятная форма. К сожалению она испачкана в крови.. - - type: Transform - rot: 1.5707963267948966 rad - pos: 95.87848,4.902106 - parent: 2 -- proto: ClothingUniformJumpsuitBrigmedic +- proto: ClothingEyesGlassesSunglasses entities: - - uid: 14936 + - uid: 15131 components: - type: Transform - parent: 14928 + parent: 15129 - type: Physics canCollide: False -- proto: ClothingUniformJumpsuitCapTurtleneck - entities: - - uid: 14823 + - uid: 15194 components: - type: Transform - parent: 14817 + parent: 15193 - type: Physics canCollide: False -- proto: ClothingUniformJumpsuitClownBanana - entities: - - uid: 15265 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 62.76678,1.8247577 - parent: 2 -- proto: ClothingUniformJumpsuitColorGrey - entities: - - uid: 15266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.38754,-31.648384 - parent: 2 -- proto: ClothingUniformJumpsuitEngineeringHazard - entities: - - uid: 41147 + - uid: 41565 components: - type: Transform - parent: 41145 + parent: 41564 - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitHawaiRed +- proto: ClothingEyesGlassesThermal entities: - - uid: 15267 + - uid: 15199 components: + - type: MetaData + desc: Крутые очки для катания. + name: 'горнолыжные очки #2' - type: Transform - pos: 1.411952,65.520905 - parent: 2 -- proto: ClothingUniformJumpsuitHoPTurtleneck - entities: - - uid: 41172 + parent: 15198 + - type: Physics + canCollide: False + - uid: 15204 components: - type: MetaData - desc: Это водолазка главы. - name: водолазка главы + desc: Крутые очки для катания. + name: 'горнолыжные очки #3' - type: Transform - parent: 41168 + parent: 15203 - type: Physics canCollide: False -- proto: ClothingUniformJumpsuitHoSBlack - entities: - - uid: 15268 + - uid: 15209 components: - type: MetaData - desc: Чёрный костюм усиленный вшитыми бронеплитами. - name: чёрный бронированный костюм + desc: Крутые очки для катания. + name: 'горнолыжные очки #1' - type: Transform - pos: -32.27073,23.486061 - parent: 2 -- proto: ClothingUniformJumpsuitKimono - entities: - - uid: 14955 + parent: 15208 + - type: Physics + canCollide: False + - uid: 15214 components: + - type: MetaData + desc: Крутые очки для катания. + name: 'горнолыжные очки #4' - type: Transform - parent: 14951 + parent: 15213 - type: Physics canCollide: False - - uid: 15269 + - uid: 41569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.55712,43.68357 - parent: 2 -- proto: ClothingUniformJumpsuitLawyerBlack - entities: - - uid: 14863 + rot: 0.4188790204786391 rad + pos: 41.271942,56.81776 + parent: 40599 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]5%[/color]. + priority: 0 + component: Armor + title: null + - uid: 41571 components: - type: Transform - parent: 14860 + parent: 41570 - type: Physics canCollide: False -- proto: ClothingUniformJumpsuitMercenary +- proto: ClothingEyesHudBeer entities: - - uid: 14848 + - uid: 15218 + components: + - type: MetaData + desc: Меня всё время спрашивают, знаю ли я Тайлера Дердена. + name: оранжевые очки + - type: Transform + pos: 1.724452,65.427155 + parent: 2 + missingComponents: + - ShowThirstIcons + - SolutionScanner + - uid: 45499 components: - type: Transform - parent: 14845 + parent: 45498 - type: Physics canCollide: False -- proto: ClothingUniformJumpsuitOperative +- proto: ClothingEyesHudDiagnostic entities: - - uid: 15179 + - uid: 15219 components: - type: Transform - parent: 15176 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15184 + pos: -1.5524054,-35.7023 + parent: 2 +- proto: ClothingEyesHudMedical + entities: + - uid: 15220 components: - type: Transform - parent: 15181 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15270 + pos: -21.506512,55.580692 + parent: 2 + - uid: 15221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.584927,54.279278 + pos: -4.539809,56.84001 parent: 2 -- proto: ClothingUniformJumpsuitPyjamaSyndicatePink +- proto: ClothingEyesHudMedSec entities: - - uid: 15271 + - uid: 8562 components: - - type: MetaData - desc: Для долгих ночей. - name: розовая пижама - type: Transform - pos: 4.3345704,-36.626858 - parent: 2 -- proto: ClothingUniformJumpsuitPyjamaSyndicateRed + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesHudSecurity entities: - - uid: 15272 + - uid: 15222 components: - - type: MetaData - desc: Для долгих ночей. - name: красная пижама - type: Transform - pos: 4.6939454,-36.470608 + pos: -41.385914,10.774635 parent: 2 -- proto: ClothingUniformJumpsuitSalvageSpecialist + - uid: 15223 + components: + - type: Transform + pos: -41.385914,10.47776 + parent: 2 +- proto: ClothingHandsGlovesAerostatic entities: - - uid: 14946 + - uid: 15225 components: - type: Transform - parent: 14939 + parent: 15224 - type: Physics canCollide: False - - uid: 14947 + - type: InsideEntityStorage +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 15229 components: - type: Transform - parent: 14939 - - type: Physics - canCollide: False - - uid: 45129 + rot: 3.141592653589793 rad + pos: 103.43204,2.5466933 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 15230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5795894,7.573637 - parent: 44970 -- proto: ClothingUniformJumpsuitSeniorEngineer + pos: 94.80704,4.0623183 + parent: 2 +- proto: ClothingHandsGlovesColorBlack entities: - - uid: 41255 + - uid: 15231 components: - type: Transform - rot: -1.9024088846738192 rad - pos: 32.901245,31.692902 - parent: 40203 -- proto: ClothingUniformRandomBra + pos: -26.491638,1.9695137 + parent: 2 +- proto: ClothingHandsGlovesColorLightBrown entities: - - uid: 45131 + - uid: 41574 components: - type: Transform - parent: 45130 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45132 + pos: 47.5807,23.74843 + parent: 40599 +- proto: ClothingHandsGlovesColorPurple + entities: + - uid: 41576 components: - type: Transform - parent: 45130 + parent: 41575 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 45133 +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 15155 components: - type: Transform - parent: 45130 + parent: 15153 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45138 + - uid: 15232 components: - type: Transform - parent: 45137 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45139 + pos: -54.578114,15.80353 + parent: 2 + - uid: 40746 components: - type: Transform - parent: 45137 + parent: 40744 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45140 + - uid: 40747 components: - type: Transform - parent: 45137 + parent: 40744 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45145 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 15183 components: - type: Transform - parent: 45144 + parent: 15178 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45146 + - uid: 15184 components: - type: Transform - parent: 45144 + parent: 15178 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45147 + - uid: 15185 components: - type: Transform - parent: 45144 + parent: 15178 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45152 + - uid: 15233 components: - type: Transform - parent: 45151 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45153 + pos: 12.493604,-13.417599 + parent: 2 + - uid: 15234 components: - type: Transform - parent: 45151 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45154 + pos: 26.643858,-3.5594153 + parent: 2 + - uid: 15235 components: + - type: MetaData + desc: Это прекрасно... + name: Золотистые Божественные Перчатки великого Грейтайда - type: Transform - parent: 45151 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformRandomShorts + pos: 79.587234,-36.501892 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 45134 + - uid: 15236 components: + - type: MetaData + desc: Эти перчатки защищают пользователя от поражения электрическим током. + name: изолированные перчатки - type: Transform - parent: 45130 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45135 + pos: -11.224819,-7.63994 + parent: 2 + - uid: 15237 components: - type: Transform - parent: 45130 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45136 + pos: -25.467054,60.503143 + parent: 2 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 15167 components: - type: Transform - parent: 45130 + parent: 15165 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45141 + - uid: 15238 components: - type: Transform - parent: 45137 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45142 + pos: -48.456856,-8.764416 + parent: 2 + - uid: 15239 components: - type: Transform - parent: 45137 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45143 + pos: -32.27073,23.454811 + parent: 2 +- proto: ClothingHandsGlovesConducting + entities: + - uid: 15186 components: - type: Transform - parent: 45137 + parent: 15178 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 45148 +- proto: ClothingHandsGlovesFingerless + entities: + - uid: 15240 components: - type: Transform - parent: 45144 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45149 + pos: 48.51179,23.460117 + parent: 2 + - uid: 15241 components: - type: Transform - parent: 45144 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45150 + pos: 65.52054,-42.293026 + parent: 2 + - uid: 15242 components: - type: Transform - parent: 45144 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45155 + pos: 65.57354,-42.453556 + parent: 2 + - uid: 41577 components: - type: Transform - parent: 45151 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45156 + rot: 1.5707963267948966 rad + pos: 31.288414,30.802208 + parent: 40599 +- proto: ClothingHandsGlovesFingerlessInsulated + entities: + - uid: 15243 components: - type: Transform - parent: 45151 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45157 + pos: 72.55705,-31.710068 + parent: 2 + - uid: 41542 components: - type: Transform - parent: 45151 + parent: 41541 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Coal +- proto: ClothingHandsGlovesHop entities: - - uid: 41257 + - uid: 15245 components: - type: Transform - parent: 41256 + parent: 15244 - type: Physics canCollide: False - - uid: 41258 +- proto: ClothingHandsGlovesJanitor + entities: + - uid: 15035 components: - type: Transform - parent: 41256 + parent: 15033 - type: Physics canCollide: False -- proto: Coal1 - entities: - - uid: 15273 + - type: InsideEntityStorage + - uid: 15248 components: - type: Transform - pos: -64.41712,25.660656 + pos: 4.4312325,32.61446 parent: 2 - - uid: 15274 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 15249 components: - type: Transform - pos: -64.72967,25.296074 + pos: 22.52689,18.561907 parent: 2 - - uid: 15275 + - uid: 15250 components: - type: Transform - pos: -64.07853,25.322115 + pos: -25.214466,42.490177 parent: 2 - - uid: 15276 + - uid: 15251 components: - type: Transform - pos: -64.312935,25.165865 + pos: -16.626143,44.446003 parent: 2 - - uid: 15277 + - uid: 15252 components: - type: Transform - pos: -64.130615,25.660656 + pos: -4.539809,57.49626 parent: 2 - - uid: 15278 + - uid: 41551 components: - type: Transform - pos: -63.926018,27.784504 - parent: 2 - - uid: 15279 + parent: 41550 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41578 components: - type: Transform - pos: -91.13754,10.078733 - parent: 2 - - uid: 15280 + rot: -1.5707963267948966 rad + pos: 55.353416,26.604939 + parent: 40599 +- proto: ClothingHandsGlovesLeather + entities: + - uid: 15254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.85871,0.34851646 - parent: 2 - - uid: 15281 + parent: 15253 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 15259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.31184,6.0516415 + pos: 25.660822,54.458008 parent: 2 - - uid: 15282 +- proto: ClothingHandsGlovesPowerglove + entities: + - uid: 15260 components: + - type: MetaData + name: 'горнолыжные перчатки #4' - type: Transform - pos: 101.21809,0.61414146 + pos: 5.423332,-19.327442 parent: 2 - - uid: 15283 + - uid: 15261 components: + - type: MetaData + name: 'горнолыжные перчатки #1' - type: Transform - rot: 1.5707963267948966 rad - pos: -89.48658,27.213303 + pos: 5.437126,-23.592083 parent: 2 - - uid: 15284 + - uid: 15262 components: + - type: MetaData + name: 'горнолыжные перчатки #3' - type: Transform - pos: -89.86158,27.400803 + pos: 4.668204,-19.350077 parent: 2 - - uid: 15285 + - uid: 15263 components: + - type: MetaData + name: 'горнолыжные перчатки #2' - type: Transform - pos: -88.98658,27.275803 + pos: 4.6283226,-23.63058 parent: 2 - - uid: 41259 +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 15168 components: - type: Transform - parent: 41256 + parent: 15165 - type: Physics canCollide: False - - uid: 41260 + - type: InsideEntityStorage +- proto: ClothingHeadBandBotany + entities: + - uid: 15142 components: - type: Transform - parent: 41256 + parent: 15137 - type: Physics canCollide: False - - uid: 41261 + - type: InsideEntityStorage +- proto: ClothingHeadBandMerc + entities: + - uid: 15175 components: - type: Transform - parent: 41256 + parent: 15173 - type: Physics canCollide: False - - uid: 41262 +- proto: ClothingHeadCaptainHat + entities: + - uid: 15132 components: - type: Transform - parent: 41256 + parent: 15129 - type: Physics canCollide: False - - uid: 41263 - components: - - type: Transform - rot: -1.117010721276371 rad - pos: 29.195065,71.633575 - parent: 40203 - - uid: 41264 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.71594,43.466427 - parent: 40203 - - uid: 41265 - components: - - type: Transform - pos: 68.57011,43.73726 - parent: 40203 - - uid: 41266 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.51803,43.51851 - parent: 40203 - - uid: 41267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.79928,43.70601 - parent: 40203 - - uid: 41268 +- proto: ClothingHeadFishCap + entities: + - uid: 15264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.46594,43.591427 - parent: 40203 - - uid: 41269 + pos: -74.29785,40.427856 + parent: 2 +- proto: ClothingHeadHatBeretBrigmedic + entities: + - uid: 15266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.61178,43.83101 - parent: 40203 - - uid: 41270 + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBeretHoS + entities: + - uid: 15274 components: + - type: MetaData + desc: Чёрный берет для самых стильных мастеров алкоголя. + name: берет бармена - type: Transform - rot: 1.5707963267948966 rad - pos: 68.69511,43.66434 - parent: 40203 - - uid: 41271 + pos: 48.48054,23.756992 + parent: 2 +- proto: ClothingHeadHatBeretMedic + entities: + - uid: 15275 components: - type: Transform - pos: 68.45553,43.69559 - parent: 40203 - - uid: 41272 + pos: 7.4458838,52.761158 + parent: 2 +- proto: ClothingHeadHatBeretSecurityMedic + entities: + - uid: 15267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.33053,43.403927 - parent: 40203 - - uid: 41273 + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBlacksoft + entities: + - uid: 15277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.34094,43.653927 - parent: 40203 - - uid: 41274 + parent: 15276 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBrownFlatcap + entities: + - uid: 15285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.74719,43.39351 - parent: 40203 -- proto: Cobweb1 + pos: -35.34275,36.562195 + parent: 2 +- proto: ClothingHeadHatBunny entities: - uid: 15286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,27.5 + rot: -6.283185307179586 rad + pos: 64.496,4.726742 parent: 2 - uid: 15287 components: - type: Transform - pos: 78.5,7.5 - parent: 2 - - uid: 15288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,50.5 + pos: -37.53806,24.900732 parent: 2 +- proto: ClothingHeadHatCasa + entities: - uid: 15289 components: - type: Transform - pos: 87.5,-42.5 - parent: 2 - - uid: 15290 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,56.5 - parent: 2 - - uid: 15291 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,60.5 - parent: 2 + parent: 15288 + - type: Physics + canCollide: False +- proto: ClothingHeadHatCatEarsValid + entities: - uid: 15292 components: - type: Transform - pos: 8.5,61.5 - parent: 2 - - uid: 15293 - components: - - type: Transform - pos: 8.5,65.5 - parent: 2 - - uid: 15294 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,63.5 - parent: 2 - - uid: 15295 + parent: 15291 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatChef + entities: + - uid: 8448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,65.5 - parent: 2 + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatCone + entities: - uid: 15296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,65.5 + pos: 13.954541,-27.977076 parent: 2 - uid: 15297 components: - type: Transform - pos: 12.5,65.5 + pos: 13.048291,-28.27395 parent: 2 - uid: 15298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,61.5 + pos: 16.251415,-28.258326 parent: 2 - uid: 15299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,56.5 + pos: 15.126416,-27.9302 parent: 2 - uid: 15300 components: - type: Transform - pos: 27.5,54.5 + pos: 92.24262,-35.791477 parent: 2 - uid: 15301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,51.5 + pos: 92.784294,-36.072727 parent: 2 - uid: 15302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,54.5 + pos: 94.16971,-36.15606 parent: 2 - uid: 15303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,54.5 + pos: 94.80512,-35.801895 parent: 2 +- proto: ClothingHeadHatCowboyBrown + entities: - uid: 15304 components: - type: Transform - pos: 27.5,61.5 + pos: -23.415535,-20.323317 parent: 2 - uid: 15305 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,54.5 + pos: -46.733868,27.519646 parent: 2 +- proto: ClothingHeadHatCowboyGrey + entities: - uid: 15306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,53.5 + rot: -1.5707963267948966 rad + pos: -46.280743,26.675896 parent: 2 +- proto: ClothingHeadHatCowboyRed + entities: - uid: 15307 components: + - type: MetaData + desc: Эта шляпа для настоящих профессионалов своей линии. "СТАРЫ БОХ!" + name: шляпа старого бога - type: Transform - pos: 15.5,51.5 + pos: -29.568043,29.516003 parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 41580 + components: + - type: Transform + parent: 41579 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatFlowerWreath + entities: - uid: 15308 components: - type: Transform - pos: 23.5,58.5 + pos: 4.735759,-9.222401 parent: 2 - uid: 15309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,61.5 + pos: 34.450188,-26.452251 parent: 2 +- proto: ClothingHeadHatHardhatArmored + entities: - uid: 15310 components: - type: Transform - pos: -48.5,-11.5 + pos: 10.503109,-45.608353 parent: 2 - - uid: 15311 + - uid: 41585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-14.5 - parent: 2 - - uid: 15312 + pos: 68.26486,61.404446 + parent: 40599 + - uid: 41586 components: - type: Transform - pos: -41.5,26.5 - parent: 2 - - uid: 15313 + pos: 68.43674,61.248196 + parent: 40599 +- proto: ClothingHeadHatHardhatBlue + entities: + - uid: 40601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,24.5 - parent: 2 - - uid: 41275 + parent: 40600 + - type: HandheldLight + toggleActionEntity: 40602 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 40602 + - type: Physics + canCollide: False + - type: ActionsContainer + - uid: 41588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,72.5 - parent: 40203 - - uid: 41276 + parent: 41587 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHardhatWhite + entities: + - uid: 40748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,74.5 - parent: 40203 - - uid: 41277 + parent: 40744 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40749 components: - type: Transform - pos: 36.5,80.5 - parent: 40203 - - uid: 41278 + parent: 40744 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 41592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,80.5 - parent: 40203 - - uid: 41279 + rot: -0.5235987755982988 rad + pos: 32.11924,32.672073 + parent: 40599 +- proto: ClothingHeadHatHoodBioCmo + entities: + - uid: 15312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,76.5 - parent: 40203 - - uid: 41280 + parent: 15311 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHoodBioSecurity + entities: + - uid: 41593 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,84.5 - parent: 40203 - - uid: 41281 - components: - - type: Transform - pos: 55.5,57.5 - parent: 40203 - - uid: 41282 + pos: 64.45536,71.610565 + parent: 40599 +- proto: ClothingHeadHatHoodCulthood + entities: + - uid: 47024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,54.5 - parent: 40203 - - uid: 41283 + rot: -1.5707963267948966 rad + pos: 1.4574585,8.864128 + parent: 46943 +- proto: ClothingHeadHatHopcap + entities: + - uid: 41566 components: + - type: MetaData + desc: Большая, стильная фуражка главы. + name: фуражка главы - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,57.5 - parent: 40203 - - uid: 41284 + parent: 41564 + - type: Physics + canCollide: False +- proto: ClothingHeadHatHoshat + entities: + - uid: 15190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,59.5 - parent: 40203 - - uid: 41285 + parent: 15188 + - type: Physics + canCollide: False +- proto: ClothingHeadHatPaper + entities: + - uid: 15314 components: - type: Transform - pos: 48.5,63.5 - parent: 40203 - - uid: 41286 + pos: -117.54237,20.723295 + parent: 2 +- proto: ClothingHeadHatPirateTricord + entities: + - uid: 15315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,63.5 - parent: 40203 - - uid: 41287 + pos: -109.20755,4.591349 + parent: 2 +- proto: ClothingHeadHatPumpkin + entities: + - uid: 15316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,59.5 - parent: 40203 - - uid: 41288 + pos: 0.5240016,21.51646 + parent: 2 + - uid: 15317 components: - type: Transform - pos: 60.5,63.5 - parent: 40203 - - uid: 41289 + pos: 59.555813,-0.8824389 + parent: 2 + - uid: 15318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,68.5 - parent: 40203 - - uid: 41290 + pos: 39.485027,10.588919 + parent: 2 +- proto: ClothingHeadHatPurplesoft + entities: + - uid: 15036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,72.5 - parent: 40203 - - uid: 41291 + parent: 15033 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatRichard + entities: + - uid: 15319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,70.5 - parent: 40203 - - uid: 41292 + pos: 59.680374,-1.5741377 + parent: 2 +- proto: ClothingHeadHatSantahat + entities: + - uid: 15320 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,68.5 - parent: 40203 - - uid: 41293 + pos: 34.470238,46.47495 + parent: 2 +- proto: ClothingHeadHatSecsoftFlipped + entities: + - uid: 40677 components: - type: Transform - pos: 48.5,79.5 - parent: 40203 - - uid: 41294 + parent: 40675 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatStrawHat + entities: + - uid: 15321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,83.5 - parent: 40203 - - uid: 41295 + pos: -41.43014,22.623772 + parent: 2 +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 15322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,81.5 - parent: 40203 - - uid: 41296 + pos: -4.477309,57.80602 + parent: 2 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 15169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,77.5 - parent: 40203 - - uid: 41297 + parent: 15165 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatUshanka + entities: + - uid: 14969 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,77.5 - parent: 40203 - - uid: 41298 + parent: 14965 + - type: Physics + canCollide: False + - uid: 15255 components: - type: Transform - pos: 62.5,79.5 - parent: 40203 - - uid: 41299 + parent: 15253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,77.5 - parent: 40203 - - uid: 41300 + pos: -50.406315,61.59988 + parent: 2 + - uid: 15324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,79.5 - parent: 40203 - - uid: 41301 + pos: 70.72133,-53.23313 + parent: 2 + - uid: 15325 components: - type: Transform - pos: 71.5,79.5 - parent: 40203 - - uid: 41302 + pos: 70.81508,-53.54563 + parent: 2 + - uid: 15326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,77.5 - parent: 40203 - - uid: 41303 + pos: 70.44008,-53.405006 + parent: 2 + - uid: 15327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,71.5 - parent: 40203 - - uid: 41304 + pos: 70.5807,-53.63938 + parent: 2 + - uid: 40681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,75.5 - parent: 40203 - - uid: 41305 + parent: 40679 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,68.5 - parent: 40203 - - uid: 41306 + parent: 41570 + - type: Physics + canCollide: False + - uid: 41594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,68.5 - parent: 40203 - - uid: 41307 + rot: -1.0122909661567112 rad + pos: 40.570694,56.045128 + parent: 40599 + - uid: 41595 components: - type: Transform - pos: 54.5,72.5 - parent: 40203 - - uid: 41308 + rot: 1.8675022996339325 rad + pos: 44.883194,56.232628 + parent: 40599 + - uid: 41597 components: - type: Transform - pos: 39.5,57.5 - parent: 40203 - - uid: 41309 + parent: 41596 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,59.5 - parent: 40203 - - uid: 41310 + parent: 41600 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatWelding + entities: + - uid: 15328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,63.5 - parent: 40203 - - uid: 45158 + pos: 29.52305,-39.37472 + parent: 2 + - uid: 15329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 44970 - - uid: 45159 + pos: 27.720707,-6.4755416 + parent: 2 +- proto: ClothingHeadHatWeldingMaskFlameBlue + entities: + - uid: 15330 components: - type: Transform - pos: -5.5,5.5 - parent: 44970 - - uid: 45160 + pos: 18.50567,-35.38392 + parent: 2 + - uid: 41604 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 44970 - - uid: 45161 + pos: 68.51895,61.673363 + parent: 40599 +- proto: ClothingHeadHatWitch + entities: + - uid: 15331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 44970 - - uid: 45162 + pos: -46.077618,27.707146 + parent: 2 +- proto: ClothingHeadHatWitch1 + entities: + - uid: 45500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 - parent: 44970 - - uid: 45163 + parent: 45498 + - type: Physics + canCollide: False +- proto: ClothingHeadHelmetBasic + entities: + - uid: 41558 components: - type: Transform - pos: -5.5,9.5 - parent: 44970 - - uid: 45164 + parent: 41556 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetBone + entities: + - uid: 15332 components: - type: Transform - pos: 6.5,9.5 - parent: 44970 - - uid: 45165 + pos: -34.66835,-53.608177 + parent: 2 + - uid: 15333 components: - type: Transform - pos: 5.5,5.5 - parent: 44970 - - uid: 45166 + pos: -77.24187,-9.67132 + parent: 2 + - type: Physics + canCollide: False + - type: PointLight + color: '#CF352EFF' + radius: 1.5 + missingComponents: + - Item + - Pullable +- proto: ClothingHeadHelmetCosmonaut + entities: + - uid: 15200 components: + - type: MetaData + name: 'горнолыжный шлем #2' - type: Transform - pos: 9.5,9.5 - parent: 44970 - - uid: 45167 + parent: 15198 + - type: Physics + canCollide: False + - uid: 15205 components: + - type: MetaData + name: 'горнолыжный шлем #3' - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 44970 -- proto: Cobweb2 - entities: - - uid: 15314 + parent: 15203 + - type: Physics + canCollide: False + - uid: 15210 components: + - type: MetaData + name: 'горнолыжный шлем #1' - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,28.5 - parent: 2 - - uid: 15315 + parent: 15208 + - type: Physics + canCollide: False + - uid: 15215 components: + - type: MetaData + name: 'горнолыжный шлем #4' - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,21.5 - parent: 2 - - uid: 15316 + parent: 15213 + - type: Physics + canCollide: False +- proto: ClothingHeadHelmetRiot + entities: + - uid: 15334 components: - type: Transform - pos: -43.5,27.5 + pos: -41.182995,-8.277538 parent: 2 - - uid: 15317 + - uid: 15335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,21.5 + pos: -41.51112,-8.261913 parent: 2 - - uid: 15318 + - uid: 15336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,4.5 + pos: -40.259598,-8.235502 parent: 2 - - uid: 15319 + - uid: 15337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,54.5 + pos: -40.665848,-8.251127 parent: 2 - - uid: 15320 +- proto: ClothingHeadHelmetSecurityMedic + entities: + - uid: 8563 components: - type: Transform - pos: 28.5,54.5 - parent: 2 - - uid: 15321 + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetSwat + entities: + - uid: 15338 components: - type: Transform - pos: 29.5,53.5 + pos: -48.47248,-9.170666 parent: 2 - - uid: 15322 +- proto: ClothingHeadNurseHat + entities: + - uid: 15339 components: + - type: MetaData + name: шапочка горничной - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,51.5 + pos: 3.2437325,32.817585 parent: 2 - - uid: 15323 + - uid: 15341 components: + - type: MetaData + name: шапочка горничной - type: Transform - pos: 2.5,58.5 - parent: 2 - - uid: 15324 + parent: 15340 + - type: Physics + canCollide: False +- proto: ClothingHeadPaperSackSmile + entities: + - uid: 15343 components: - type: Transform - pos: 82.5,8.5 + pos: -104.486885,28.5701 parent: 2 - - uid: 15325 +- proto: ClothingHeadPyjamaSyndicatePink + entities: + - uid: 15344 components: + - type: MetaData + desc: Чтобы держать твою голову в тепле. + name: розовая пижамная шапочка - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,5.5 + pos: 3.4112935,-36.470608 parent: 2 - - uid: 15326 +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 15345 components: + - type: MetaData + desc: Чтобы держать твою голову в тепле. + name: красная пижамная шапочка - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-14.5 + pos: 3.6300435,-36.361233 parent: 2 - - uid: 15327 +- proto: ClothingHeadsetBrigmedic + entities: + - uid: 8564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,72.5 - parent: 2 - - uid: 15328 + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadsetMining + entities: + - uid: 45502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,33.5 - parent: 2 - - uid: 15329 + rot: -1.5707963267948966 rad + pos: -1.3445925,11.515112 + parent: 45355 +- proto: ClothingMaskBandSkull + entities: + - uid: 41605 components: - type: Transform - pos: 57.5,31.5 - parent: 2 - - uid: 15330 + pos: 36.380623,68.64987 + parent: 40599 +- proto: ClothingMaskBear + entities: + - uid: 15195 components: - type: Transform - pos: -9.5,74.5 - parent: 2 - - uid: 15331 + parent: 15193 + - type: Physics + canCollide: False +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 15 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,68.5 - parent: 2 - - uid: 15332 + parent: 12 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,74.5 + pos: -122.15886,18.852543 parent: 2 - - uid: 41311 +- proto: ClothingMaskGas + entities: + - uid: 15347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,74.5 - parent: 40203 - - uid: 41312 + pos: -25.60768,60.76877 + parent: 2 + - uid: 15348 components: - type: Transform - pos: 41.5,74.5 - parent: 40203 - - uid: 41313 + pos: 10.568942,37.502342 + parent: 2 + - uid: 15349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,72.5 - parent: 40203 - - uid: 41314 + pos: 56.604855,31.825901 + parent: 2 + - uid: 41589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,76.5 - parent: 40203 - - uid: 41315 + parent: 41587 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,76.5 - parent: 40203 - - uid: 41316 + pos: 39.885696,56.624565 + parent: 40599 + - uid: 41607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,84.5 - parent: 40203 - - uid: 41317 + rot: 0.3490658503988659 rad + pos: 41.99507,55.937065 + parent: 40599 + - uid: 41608 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,54.5 - parent: 40203 - - uid: 41318 + rot: 3.2812189937493397 rad + pos: 44.55604,57.074387 + parent: 40599 +- proto: ClothingMaskGasSecurity + entities: + - uid: 15350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,54.5 - parent: 40203 - - uid: 41319 + pos: -10.319007,51.32558 + parent: 2 + - uid: 41609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,51.5 - parent: 40203 - - uid: 41320 + pos: 37.460716,63.398056 + parent: 40599 + - uid: 41610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,57.5 - parent: 40203 - - uid: 41321 + pos: 36.49433,80.56036 + parent: 40599 + - uid: 41611 components: - type: Transform - pos: 53.5,63.5 - parent: 40203 - - uid: 41322 + pos: 36.666206,80.40411 + parent: 40599 +- proto: ClothingMaskGasSwat + entities: + - uid: 15351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,59.5 - parent: 40203 - - uid: 41323 + pos: -48.47248,-8.436291 + parent: 2 + - uid: 41546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,63.5 - parent: 40203 - - uid: 41324 + parent: 41545 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasVoiceChameleon + entities: + - uid: 15352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,63.5 - parent: 40203 - - uid: 41325 + rot: -1.5707963267948966 rad + pos: 57.677773,31.148817 + parent: 2 +- proto: ClothingMaskItalianMoustache + entities: + - uid: 8449 components: - type: Transform - pos: 58.5,63.5 - parent: 40203 - - uid: 41326 + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskMuzzle + entities: + - uid: 15156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,66.5 - parent: 40203 - - uid: 41327 + parent: 15153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,70.5 - parent: 40203 - - uid: 41328 + rot: 3.141592653589793 rad + pos: -47.52316,-14.405226 + parent: 2 + - uid: 15354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,68.5 - parent: 40203 - - uid: 41329 + pos: -10.70503,51.325512 + parent: 2 + - uid: 15355 components: - type: Transform - pos: 60.5,83.5 - parent: 40203 - - uid: 41330 + pos: -12.19677,69.921715 + parent: 2 + - uid: 15356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,81.5 - parent: 40203 - - uid: 41331 + pos: 97.57685,-11.445862 + parent: 2 + - uid: 15357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,83.5 - parent: 40203 - - uid: 41332 + pos: -8.118903,73.967735 + parent: 2 +- proto: ClothingMaskPlague + entities: + - uid: 15358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,77.5 - parent: 40203 - - uid: 41333 + pos: -31.77073,23.798561 + parent: 2 +- proto: ClothingMaskSadMime + entities: + - uid: 15359 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,79.5 - parent: 40203 - - uid: 41334 - components: - - type: Transform - pos: 69.5,79.5 - parent: 40203 - - uid: 41335 - components: - - type: Transform - pos: 74.5,79.5 - parent: 40203 - - uid: 41336 + pos: 59.57814,3.3263137 + parent: 2 +- proto: ClothingMaskScaredMime + entities: + - uid: 15360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,73.5 - parent: 40203 - - uid: 41337 + rot: 1.5707963267948966 rad + pos: 59.593765,3.6388137 + parent: 2 +- proto: ClothingMaskSexyClown + entities: + - uid: 15362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,65.5 - parent: 40203 - - uid: 41338 + parent: 15361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyMime + entities: + - uid: 15157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,68.5 - parent: 40203 - - uid: 41339 + parent: 15153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,55.5 - parent: 40203 - - uid: 41340 + rot: 1.5707963267948966 rad + pos: 60.268257,11.987856 + parent: 2 + - uid: 15369 components: - type: Transform - pos: 45.5,57.5 - parent: 40203 - - uid: 41341 + parent: 15368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSterile + entities: + - uid: 15376 components: - type: Transform - pos: 38.5,63.5 - parent: 40203 - - uid: 45168 + pos: 22.507605,18.962395 + parent: 2 + - uid: 15377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 44970 - - uid: 45169 + pos: -25.22782,42.717136 + parent: 2 + - uid: 15378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-2.5 - parent: 44970 - - uid: 45170 + pos: -4.477309,57.02751 + parent: 2 +- proto: ClothingMaskWeldingGas + entities: + - uid: 15112 components: - type: Transform - pos: 4.5,9.5 - parent: 44970 - - uid: 45171 + parent: 15111 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakBi + entities: + - uid: 15380 components: - type: Transform - pos: 7.5,9.5 - parent: 44970 - - uid: 45172 + parent: 15379 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakMiner + entities: + - uid: 45503 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,1.5 - parent: 44970 - - uid: 45173 + pos: -1.545465,11.193348 + parent: 45355 +- proto: ClothingNeckCloakMoth + entities: + - uid: 15268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 44970 -- proto: CombatKnife + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingNeckCloakVoid entities: - - uid: 15333 + - uid: 15381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.414536,51.762184 + pos: -32.286354,23.595436 parent: 2 -- proto: CombatMedipen +- proto: ClothingNeckClownmedal entities: - - uid: 15334 + - uid: 15382 components: - type: Transform - pos: -56.501728,19.491755 + pos: -40.291714,8.565586 parent: 2 -- proto: ComfyChair +- proto: ClothingNeckHeadphones entities: - - uid: 15335 + - uid: 15201 components: + - type: MetaData + name: 'горнолыжные наушники #2' - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-16.5 - parent: 2 - - uid: 15336 + parent: 15198 + - type: Physics + canCollide: False + - uid: 15206 components: + - type: MetaData + name: 'горнолыжные наушники #3' - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-20.5 - parent: 2 - - uid: 15337 + parent: 15203 + - type: Physics + canCollide: False + - uid: 15211 components: + - type: MetaData + name: 'горнолыжные наушники #1' - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,64.5 - parent: 2 - - uid: 15338 + parent: 15208 + - type: Physics + canCollide: False + - uid: 15216 components: + - type: MetaData + name: 'горнолыжные наушники #4' - type: Transform - pos: -42.5,2.5 - parent: 2 - - uid: 15339 + parent: 15213 + - type: Physics + canCollide: False + - uid: 15383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: 13.644647,19.53062 parent: 2 - - uid: 15340 + - uid: 15384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + rot: -1.5707963267948966 rad + pos: 13.535272,19.452496 parent: 2 - - uid: 15341 +- proto: ClothingNeckLawyerbadge + entities: + - uid: 15385 components: - type: Transform - pos: 33.5,21.5 + pos: -21.319386,22.675781 parent: 2 - - uid: 15342 +- proto: ClothingNeckMantleCap + entities: + - uid: 15133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 2 - - uid: 15343 + parent: 15129 + - type: Physics + canCollide: False +- proto: ClothingNeckMantleHOP + entities: + - uid: 15386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + pos: -12.49514,-12.349632 parent: 2 - - uid: 15344 +- proto: ClothingNeckMantleHOSShoulder + entities: + - uid: 15191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 2 - - uid: 15345 + parent: 15188 + - type: Physics + canCollide: False +- proto: ClothingNeckScarfStripedBlack + entities: + - uid: 15278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-4.5 - parent: 2 - - uid: 15346 + parent: 15276 + - type: Physics + canCollide: False + - uid: 15388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-4.5 - parent: 2 - - uid: 15347 + parent: 15387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,24.5 - parent: 2 - - uid: 15348 + parent: 15387 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedBlue + entities: + - uid: 15393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - uid: 15349 + parent: 15392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 15350 + parent: 15392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,22.5 - parent: 2 - - uid: 15351 + parent: 15397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,22.5 - parent: 2 - - uid: 15352 + parent: 15397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,19.5 + pos: 5.687616,39.53514 parent: 2 - - uid: 15353 +- proto: ClothingNeckScarfStripedBrown + entities: + - uid: 14970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,24.5 - parent: 2 - - uid: 15354 + parent: 14965 + - type: Physics + canCollide: False + - uid: 15403 components: - type: Transform - pos: 31.5,21.5 + pos: 70.36195,-52.436256 parent: 2 - - uid: 15355 + - uid: 15404 components: - type: Transform - pos: 32.5,21.5 + pos: 70.54945,-52.561256 parent: 2 - - uid: 15356 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 15406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,19.5 - parent: 2 - - uid: 15357 + parent: 15405 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - - uid: 15358 + parent: 15405 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 2 - - uid: 15359 + parent: 15410 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,7.5 - parent: 2 - - uid: 15360 + parent: 15410 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15416 components: - type: Transform - pos: 26.5,-56.5 - parent: 2 - - uid: 15361 + parent: 15415 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41612 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-54.5 - parent: 2 - - uid: 15362 + pos: 74.16173,29.482563 + parent: 40599 +- proto: ClothingNeckScarfStripedLightBlue + entities: + - uid: 15418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 + pos: 5.2462482,39.53514 parent: 2 - - uid: 15363 + - uid: 15419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-1.5 + pos: 5.5274982,39.519516 parent: 2 - - uid: 15364 + - uid: 41552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 - parent: 2 - - uid: 15365 + parent: 41550 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedOrange + entities: + - uid: 15421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-46.5 - parent: 2 - - uid: 15366 + parent: 15420 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-47.5 - parent: 2 - - uid: 15367 + parent: 15420 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15423 components: - type: Transform - pos: -4.5,-42.5 - parent: 2 - - uid: 15368 + parent: 15420 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedPurple + entities: + - uid: 15424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-43.5 + pos: 24.387617,-43.439083 parent: 2 - - uid: 15369 + - uid: 15425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-48.5 + pos: 24.528242,-43.54846 parent: 2 - - uid: 15370 + - uid: 15426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-45.5 + pos: 24.637617,-43.439083 parent: 2 - - uid: 15371 + - uid: 41613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-48.5 - parent: 2 - - uid: 15372 + pos: 47.92077,27.576271 + parent: 40599 + - uid: 45504 components: + - type: MetaData + desc: Стильное маленькое полотенце. + name: полосатое пурпурное полотенце - type: Transform - pos: -3.5,-42.5 - parent: 2 - - uid: 15373 + pos: -5.6917686,9.327798 + parent: 45355 + - uid: 45505 components: + - type: MetaData + desc: Стильное маленькое полотенце. + name: полосатое пурпурное полотенце - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,18.5 - parent: 2 - - uid: 15374 + pos: -5.4105186,9.369465 + parent: 45355 + - uid: 45506 components: + - type: MetaData + desc: Стильное маленькое полотенце. + name: полосатое пурпурное полотенце - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 - parent: 2 - - uid: 15375 + pos: 4.6959205,9.515298 + parent: 45355 + - uid: 45507 components: + - type: MetaData + desc: Стильное маленькое полотенце. + name: полосатое пурпурное полотенце - type: Transform - pos: 6.5,-48.5 - parent: 2 - - uid: 15376 + pos: 4.404254,9.338215 + parent: 45355 +- proto: ClothingNeckScarfStripedRed + entities: + - uid: 15279 components: - type: Transform - pos: -29.5,8.5 - parent: 2 - - uid: 15377 + parent: 15276 + - type: Physics + canCollide: False + - uid: 15370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 2 - - uid: 15378 + parent: 15368 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 2 - - uid: 15379 + parent: 15427 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15429 components: - type: Transform - pos: -14.5,58.5 - parent: 2 - - uid: 15380 + parent: 15427 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,61.5 + parent: 15432 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15434 + components: + - type: Transform + parent: 15432 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15437 + components: + - type: Transform + pos: -26.5181,4.5066013 parent: 2 - - uid: 15381 + - uid: 15438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,60.5 + pos: -41.521355,13.432722 parent: 2 - - uid: 15382 + - uid: 15439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,44.5 + pos: -40.51932,6.5139103 parent: 2 - - uid: 15383 +- proto: ClothingNeckScarfStripedSyndieGreen + entities: + - uid: 15440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,25.5 + pos: 70.661674,-52.510742 parent: 2 - - uid: 15384 +- proto: ClothingNeckScarfStripedSyndieRed + entities: + - uid: 15441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-17.5 + rot: -1.5707963267948966 rad + pos: 64.47138,12.456606 parent: 2 - - uid: 15385 + - uid: 40678 components: - type: Transform - pos: 7.5,21.5 - parent: 2 - - uid: 15386 + parent: 40675 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 15371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 2 - - uid: 15387 + parent: 15368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckSecuritymedal + entities: + - uid: 15442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 + pos: -40.635464,8.581211 parent: 2 - - uid: 15388 +- proto: ClothingNeckStethoscope + entities: + - uid: 15443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-3.5 + pos: -4.617934,56.599842 parent: 2 - - uid: 15389 +- proto: ClothingNeckStoleChaplain + entities: + - uid: 47026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-4.5 - parent: 2 - - uid: 15390 + parent: 47025 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterAerostaticBomberJacket + entities: + - uid: 15202 components: + - type: MetaData + name: 'горнолыжная куртка #2' - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-4.5 - parent: 2 - - uid: 15391 + parent: 15198 + - type: Physics + canCollide: False + - uid: 15207 components: + - type: MetaData + name: 'горнолыжная куртка #3' - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-39.5 - parent: 2 - - uid: 15392 + parent: 15203 + - type: Physics + canCollide: False + - uid: 15212 components: + - type: MetaData + name: 'горнолыжная куртка #1' - type: Transform - pos: -51.5,25.5 - parent: 2 - - uid: 15393 + parent: 15208 + - type: Physics + canCollide: False + - uid: 15217 components: + - type: MetaData + name: 'горнолыжная куртка #4' - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,64.5 - parent: 2 - - uid: 15394 + parent: 15213 + - type: Physics + canCollide: False + - uid: 15226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,1.5 - parent: 2 - - uid: 15395 + parent: 15224 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,1.5 + rot: -1.5707963267948966 rad + pos: 62.594906,2.4653826 parent: 2 - - uid: 15396 +- proto: ClothingOuterApronBotanist + entities: + - uid: 15143 components: - type: Transform - pos: 92.5,-14.5 - parent: 2 - - uid: 15397 + parent: 15137 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterApronChef + entities: + - uid: 8450 components: - type: Transform - pos: 93.5,-14.5 - parent: 2 - - uid: 15398 + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBasic + entities: + - uid: 41559 components: - type: Transform - pos: 94.5,-14.5 - parent: 2 - - uid: 15399 + parent: 41556 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorBasicSlim + entities: + - uid: 41614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-17.5 - parent: 2 - - uid: 15400 + rot: 0.4886921905584123 rad + pos: 40.67518,73.617325 + parent: 40599 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 15445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-17.5 + pos: -37.650253,-8.391752 parent: 2 - - uid: 15401 + - uid: 15446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-17.5 + pos: -37.29088,-8.407377 parent: 2 - - uid: 15402 +- proto: ClothingOuterArmorHeavy + entities: + - uid: 15447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,26.5 + pos: -48.488106,-9.467541 parent: 2 - - uid: 15403 +- proto: ClothingOuterArmorRaid + entities: + - uid: 41547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,26.5 - parent: 2 - - uid: 15404 + parent: 41545 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorReflective + entities: + - uid: 15448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,26.5 + pos: -36.46998,-8.388493 parent: 2 - - uid: 15405 +- proto: ClothingOuterArmorRiot + entities: + - uid: 15449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,26.5 + pos: -40.634598,-8.673002 parent: 2 - - uid: 15406 + - uid: 15450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,29.5 + pos: -41.20371,-8.621288 parent: 2 - - uid: 15407 + - uid: 15451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,29.5 + pos: -41.51621,-8.621288 parent: 2 - - uid: 15408 + - uid: 15452 components: - type: Transform - pos: -31.5,30.5 + pos: -40.22256,-8.657377 parent: 2 - - uid: 15409 +- proto: ClothingOuterBioCmo + entities: + - uid: 15313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,28.5 - parent: 2 - - uid: 15410 + parent: 15311 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCardborg + entities: + - uid: 15453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,19.5 + rot: -1.5707963267948966 rad + pos: 62.67935,-0.34403467 parent: 2 - - uid: 41342 +- proto: ClothingOuterCoatBomber + entities: + - uid: 14971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,79.5 - parent: 40203 - - uid: 41343 + parent: 14965 + - type: Physics + canCollide: False + - uid: 15256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,73.5 - parent: 40203 - - uid: 41344 + parent: 15253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,36.5 - parent: 40203 -- proto: CommsComputerCircuitboard + parent: 41579 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatGentle entities: - - uid: 15411 + - uid: 41567 components: - type: Transform - pos: 15.634924,12.549124 - parent: 2 -- proto: ComputerAlert + parent: 41564 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatLab entities: - - uid: 15412 + - uid: 15454 components: - type: Transform - pos: 2.5,-53.5 + pos: 5.1862535,38.640736 parent: 2 - - uid: 15413 + - uid: 15455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-51.5 + pos: 5.692864,37.603294 parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 15414 + - uid: 40750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-55.5 - parent: 2 - - uid: 15415 + parent: 40744 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40751 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-55.5 - parent: 2 - - uid: 41345 + parent: 40744 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatLabSecurityMedic + entities: + - uid: 15269 components: - type: Transform - pos: 54.5,72.5 - parent: 40203 -- proto: computerBodyScanner + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingOuterCoatPirate entities: - - uid: 15416 + - uid: 15456 components: - type: Transform - pos: 21.5,22.5 + pos: -109.5513,3.7632241 parent: 2 - - uid: 15417 +- proto: ClothingOuterCoatSpaceAsshole + entities: + - uid: 15457 components: + - type: MetaData + desc: самая крутая куртка в этой галактике! + name: куртка Jagerbeger - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-32.5 + rot: -1.5707963267948966 rad + pos: -78.05912,3.01086 parent: 2 - - uid: 15418 +- proto: ClothingOuterCoatSyndieCap + entities: + - uid: 15458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,43.5 + pos: 27.616177,52.607403 parent: 2 - - uid: 15419 +- proto: ClothingOuterFlannelGreen + entities: + - uid: 15459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,51.5 + pos: -46.530743,26.644646 parent: 2 -- proto: ComputerBroken +- proto: ClothingOuterFlannelRed entities: - - uid: 15420 + - uid: 15390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-41.5 - parent: 2 - - uid: 15421 + parent: 15387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15391 components: - type: Transform - pos: 37.5,-38.5 - parent: 2 - - uid: 15422 + parent: 15387 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,53.5 + pos: -46.561993,27.707146 parent: 2 - - uid: 15423 +- proto: ClothingOuterGhostSheet + entities: + - uid: 15461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,54.5 - parent: 2 - - uid: 15424 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 2 - - uid: 15425 - components: - - type: Transform - pos: -57.5,67.5 - parent: 2 - - uid: 15426 - components: - - type: Transform - pos: 99.5,-38.5 + pos: 52.524338,11.755272 parent: 2 - - uid: 15427 + - uid: 15462 components: - type: Transform - pos: 98.5,-39.5 + rot: -1.5707963267948966 rad + pos: -25.556675,44.404392 parent: 2 - - uid: 41346 +- proto: ClothingOuterHardsuitBrigmedic + entities: + - uid: 16 components: - type: Transform - pos: 55.5,72.5 - parent: 40203 - - uid: 41347 + parent: 12 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]35%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]20%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]30%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitLuxury + entities: + - uid: 45508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,51.5 - parent: 40203 -- proto: ComputerCargoBounty + rot: -1.5707963267948966 rad + pos: -1.2954649,11.290372 + parent: 45355 +- proto: ClothingOuterHoodieChaplain entities: - - uid: 15428 + - uid: 47027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 76.5,-41.5 - parent: 2 - - uid: 15429 + parent: 47025 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterRobesCult + entities: + - uid: 47028 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-40.5 - parent: 2 -- proto: ComputerCargoOrders + pos: -0.4175415,9.489128 + parent: 46943 +- proto: ClothingOuterSanta entities: - - uid: 15430 - components: - - type: Transform - pos: 21.5,36.5 - parent: 2 - - uid: 15431 + - uid: 15463 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: 62.851227,1.3903403 parent: 2 - - uid: 15432 +- proto: ClothingOuterStraightjacket + entities: + - uid: 15464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-41.5 + pos: -8.269651,73.67275 parent: 2 - - uid: 15433 + - uid: 15465 components: - type: Transform - pos: 65.5,-29.5 + pos: -12.294325,69.60957 parent: 2 - - uid: 15434 +- proto: ClothingOuterSuitEmergency + entities: + - uid: 41616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-41.5 - parent: 2 -- proto: ComputerComms + parent: 41615 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterSuitRad entities: - - uid: 15435 + - uid: 41619 components: - type: Transform - pos: 2.5,5.5 - parent: 2 - - uid: 15436 + rot: -0.6632251157578453 rad + pos: 60.692635,56.078777 + parent: 40599 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]10%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]99%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterSuitShrineMaiden + entities: + - uid: 15466 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-9.5 + pos: 62.726227,0.5309653 parent: 2 -- proto: ComputerCrewMonitoring +- proto: ClothingOuterVestArmorMedSec entities: - - uid: 15437 + - uid: 8565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,36.5 - parent: 2 - - uid: 15438 + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterVestHazard + entities: + - uid: 41573 components: - type: Transform - pos: 4.5,4.5 - parent: 2 - - uid: 15439 + parent: 41570 + - type: Physics + canCollide: False + - uid: 41590 components: - type: Transform - pos: -29.5,2.5 - parent: 2 - - uid: 15440 + parent: 41587 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterVestSecurityMedic + entities: + - uid: 15270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,16.5 - parent: 2 - - uid: 15441 + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterBar + entities: + - uid: 15417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,52.5 - parent: 2 - - uid: 15442 + parent: 15415 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterCap + entities: + - uid: 15134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,56.5 - parent: 2 - - uid: 15443 + parent: 15129 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterClown + entities: + - uid: 15363 components: - type: Transform - pos: -95.5,5.5 - parent: 2 -- proto: ComputerCriminalRecords + parent: 15361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterCoat entities: - - uid: 15444 + - uid: 15196 components: - type: Transform - pos: -0.5,4.5 - parent: 2 - - uid: 15445 + parent: 15193 + - type: Physics + canCollide: False + - uid: 15430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,4.5 - parent: 2 - - uid: 15446 + parent: 15427 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-26.5 - parent: 2 - - uid: 15447 + parent: 15427 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15435 components: - type: Transform - pos: -42.5,4.5 - parent: 2 - - uid: 15448 + parent: 15432 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,5.5 - parent: 2 - - uid: 15449 + parent: 15432 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 + pos: -50.593815,60.740505 parent: 2 - - uid: 15450 +- proto: ClothingOuterWinterColorBlack + entities: + - uid: 40603 components: - type: Transform - pos: -105.5,-4.5 - parent: 2 - - uid: 15451 + parent: 40600 + - type: Physics + canCollide: False + - uid: 41591 components: - type: Transform - pos: -97.5,5.5 - parent: 2 - - uid: 15452 + parent: 41587 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41602 components: - type: Transform - pos: 99.5,-8.5 - parent: 2 - - uid: 15453 + parent: 41600 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-16.5 - parent: 2 -- proto: ComputerFrame + rot: -1.1868238913561442 rad + pos: 41.02632,57.48394 + parent: 40599 +- proto: ClothingOuterWinterColorBlue entities: - - uid: 15454 + - uid: 15469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-41.5 - parent: 2 - - uid: 15455 + parent: 15468 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41553 components: - type: Transform - pos: -27.5,52.5 - parent: 2 - - uid: 15456 + parent: 41550 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-31.5 - parent: 2 -- proto: ComputerId + parent: 41550 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorBrown entities: - - uid: 15457 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-8.5 - parent: 2 - - uid: 15458 + - uid: 41621 components: - type: Transform - pos: 1.5,5.5 - parent: 2 - - uid: 15459 + rot: 3.385938748868999 rad + pos: 33.472305,68.54956 + parent: 40599 +- proto: ClothingOuterWinterColorGray + entities: + - uid: 41603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 2 -- proto: ComputerMassMedia + parent: 41600 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorGreen entities: - - uid: 15460 + - uid: 41622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,18.5 - parent: 2 -- proto: ComputerMedicalRecords + pos: 74.398155,29.715948 + parent: 40599 +- proto: ClothingOuterWinterColorLightBrown entities: - - uid: 15461 + - uid: 15408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,36.5 - parent: 2 - - uid: 15462 + parent: 15405 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,15.5 - parent: 2 - - uid: 15463 + parent: 15405 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,56.5 - parent: 2 - - uid: 15464 + parent: 15410 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15414 components: - type: Transform - pos: 5.5,4.5 - parent: 2 -- proto: ComputerPowerMonitoring + parent: 15410 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorPurple entities: - - uid: 15465 + - uid: 41623 components: - type: Transform - pos: -14.5,-36.5 - parent: 2 - - uid: 15466 + pos: 48.771576,27.418306 + parent: 40599 +- proto: ClothingOuterWinterColorRed + entities: + - uid: 15470 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-51.5 - parent: 2 - - uid: 41348 + parent: 15468 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 40682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,51.5 - parent: 40203 -- proto: ComputerRadar + parent: 40679 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorWhite entities: - - uid: 15467 + - uid: 15472 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: -122.299484,18.883793 parent: 2 -- proto: ComputerResearchAndDevelopment + - uid: 41624 + components: + - type: Transform + rot: 2.0943951023931953 rad + pos: 32.65969,27.755405 + parent: 40599 +- proto: ClothingOuterWinterColorYellow entities: - - uid: 15468 + - uid: 15471 components: - type: Transform - pos: 51.5,-52.5 - parent: 2 - - uid: 15469 + parent: 15468 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 - parent: 2 - - uid: 15470 + rot: 2.792526803190927 rad + pos: 47.271576,27.121431 + parent: 40599 +- proto: ClothingOuterWinterEngi + entities: + - uid: 41626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-52.5 - parent: 2 - - uid: 15471 + pos: 47.834076,27.527681 + parent: 40599 +- proto: ClothingOuterWinterGen + entities: + - uid: 15473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-57.5 + pos: 5.224114,36.68142 parent: 2 - - uid: 15472 + - uid: 15474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-37.5 + pos: 5.708489,36.634544 parent: 2 - - uid: 15473 +- proto: ClothingOuterWinterHoS + entities: + - uid: 41627 components: + - type: MetaData + desc: Прочная, утилитарная зимняя куртка, предназначенная для защиты службы безопасности от любых угроз, связанных с бригом и переохлаждением. + name: зимняя бронекуртка службы безопасности - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-45.5 - parent: 2 -- proto: ComputerRoboticsControl + rot: -1.5707963267948966 rad + pos: 39.315804,72.6017 + parent: 40599 +- proto: ClothingOuterWinterHydro entities: - - uid: 15474 + - uid: 41628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,0.5 - parent: 2 + pos: 74.69503,29.731573 + parent: 40599 +- proto: ClothingOuterWinterJani + entities: - uid: 15475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-54.5 + pos: 4.1799784,32.471046 parent: 2 - uid: 15476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-35.5 + pos: 4.6487284,32.471046 parent: 2 -- proto: ComputerSolarControl + - uid: 41598 + components: + - type: Transform + parent: 41596 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterMed entities: - uid: 15477 components: - type: Transform - pos: -58.5,67.5 + pos: 5.6237535,38.640736 parent: 2 - uid: 15478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-47.5 + pos: 5.1706285,37.65636 parent: 2 -- proto: ComputerStationRecords - entities: - uid: 15479 components: - type: Transform - pos: 3.5,5.5 + pos: 5.4206285,37.65636 parent: 2 - uid: 15480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-6.5 + pos: 5.4831285,36.68761 parent: 2 +- proto: ClothingOuterWinterMime + entities: + - uid: 15372 + components: + - type: Transform + parent: 15368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterMiner + entities: + - uid: 15280 + components: + - type: Transform + parent: 15276 + - type: Physics + canCollide: False + - uid: 15281 + components: + - type: Transform + parent: 15276 + - type: Physics + canCollide: False +- proto: ClothingOuterWinterMusician + entities: - uid: 15481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-31.5 + pos: 56.48471,13.620398 parent: 2 - uid: 15482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-0.5 + rot: -1.5707963267948966 rad + pos: 62.688656,-0.7221174 parent: 2 +- proto: ClothingOuterWinterRobo + entities: - uid: 15483 components: + - type: MetaData + desc: Тяжёлая куртка из 'синтетического' меха животных. На ней множество засечек и изъянов. На воротнике все ещё остались рыжие волоски.. + name: потрёпанная куртка робототехника - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-27.5 + pos: 34.434563,-26.671001 parent: 2 +- proto: ClothingOuterWinterSci + entities: - uid: 15484 components: - type: Transform - pos: -104.5,-4.5 + pos: 28.542252,-41.159756 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - uid: 15485 components: - type: Transform - pos: 0.5,4.5 + pos: 28.573502,-41.347256 parent: 2 - uid: 15486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-26.5 + pos: 28.573502,-41.52434 parent: 2 + - uid: 41629 + components: + - type: Transform + pos: 48.740326,27.808931 + parent: 40599 +- proto: ClothingOuterWinterSec + entities: - uid: 15487 components: - type: Transform - pos: -43.5,4.5 + rot: 1.5707963267948966 rad + pos: -26.683983,10.4657135 parent: 2 - uid: 15488 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,3.5 + pos: -25.683983,10.8250885 parent: 2 - uid: 15489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.652733,10.4657135 parent: 2 - uid: 15490 components: - type: Transform - pos: -30.5,2.5 + rot: 1.5707963267948966 rad + pos: -26.730858,10.8250885 parent: 2 - uid: 15491 components: - type: Transform - pos: -28.5,2.5 + rot: 1.5707963267948966 rad + pos: -27.668358,10.8250885 parent: 2 - uid: 15492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,50.5 + rot: 1.5707963267948966 rad + pos: -25.621483,10.4657135 parent: 2 - - uid: 15493 + - uid: 41560 components: - type: Transform - pos: -2.5,-31.5 - parent: 2 + parent: 41556 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterSyndie + entities: + - uid: 15170 + components: + - type: Transform + parent: 15165 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47278 + components: + - type: Transform + rot: -0.4188790204786391 rad + pos: 2.6621776,-3.5230408 + parent: 47245 +- proto: ClothingOuterWinterViro + entities: - uid: 15494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-28.5 - parent: 2 - - uid: 15495 + parent: 15493 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterWeb + entities: + - uid: 15395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-16.5 - parent: 2 - - uid: 15496 + parent: 15392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,21.5 - parent: 2 + parent: 15392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15400 + components: + - type: Transform + parent: 15397 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15401 + components: + - type: Transform + parent: 15397 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesAerostatic + entities: + - uid: 15227 + components: + - type: Transform + parent: 15224 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41630 + components: + - type: Transform + pos: 72.429405,27.481573 + parent: 40599 +- proto: ClothingShoesBling + entities: - uid: 15497 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,20.5 + pos: 62.837894,4.4986978 parent: 2 - uid: 15498 components: - type: Transform - pos: -96.5,5.5 + pos: 0.5196409,-9.036889 parent: 2 -- proto: ComputerSurveillanceWirelessCameraMonitor +- proto: ClothingShoesBootsCombat entities: - uid: 15499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,17.5 + pos: -29.357193,-9.998072 parent: 2 -- proto: ComputerTelevision - entities: - uid: 15500 components: - type: Transform - pos: 16.5,-7.5 + pos: -32.336304,23.329811 parent: 2 + - uid: 47279 + components: + - type: Transform + rot: 0.3839724354387525 rad + pos: 0.19739902,-4.3084717 + parent: 47245 +- proto: ClothingShoesBootsCowboyBrown + entities: + - uid: 15246 + components: + - type: Transform + parent: 15244 + - type: Physics + canCollide: False +- proto: ClothingShoesBootsLaceup + entities: - uid: 15501 components: - type: Transform - pos: 2.5,45.5 + rot: 1.5707963267948966 rad + pos: -25.738012,22.279219 parent: 2 - uid: 15502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,20.5 + rot: 3.141592653589793 rad + pos: 95.943214,4.451211 parent: 2 -- proto: ContainmentField +- proto: ClothingShoesBootsMag entities: - - uid: 41349 + - uid: 15503 components: - type: Transform - pos: 50.5,40.5 - parent: 40203 - - uid: 41350 + pos: -9.303237,10.412365 + parent: 2 + - uid: 15504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,42.5 - parent: 40203 - - uid: 41351 + pos: -9.537612,10.599865 + parent: 2 +- proto: ClothingShoesBootsPerformer + entities: + - uid: 15505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,41.5 - parent: 40203 - - uid: 41352 + rot: -1.5707963267948966 rad + pos: 62.50375,4.7799635 + parent: 2 +- proto: ClothingShoesBootsSyndieFilled + entities: + - uid: 41631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,42.5 - parent: 40203 - - uid: 41353 + rot: 0.4537856055185257 rad + pos: 36.378304,74.523575 + parent: 40599 +- proto: ClothingShoesBootsWinter + entities: + - uid: 15247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,40.5 - parent: 40203 - - uid: 41354 + parent: 15244 + - type: Physics + canCollide: False + - uid: 15506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,38.5 - parent: 40203 - - uid: 41355 + rot: 1.5707963267948966 rad + pos: -25.550512,22.638594 + parent: 2 + - uid: 15507 components: - type: Transform - pos: 50.5,41.5 - parent: 40203 - - uid: 41356 + pos: -115.650894,1.5909133 + parent: 2 + - uid: 15508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,38.5 - parent: 40203 - - uid: 41357 + pos: -115.26027,1.5284133 + parent: 2 + - uid: 15509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,42.5 - parent: 40203 - - uid: 41358 + pos: -115.60402,1.8096633 + parent: 2 + - uid: 15510 components: - type: Transform - pos: 50.5,39.5 - parent: 40203 - - uid: 41359 + pos: -115.22902,1.7471633 + parent: 2 + - uid: 40683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,39.5 - parent: 40203 - - uid: 41360 + parent: 40679 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,38.5 - parent: 40203 -- proto: ContainmentFieldGenerator - entities: - - uid: 15503 + parent: 41596 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41632 components: - type: Transform - pos: -18.5,-49.5 - parent: 2 - - uid: 15504 + pos: 39.30539,57.477745 + parent: 40599 + - uid: 41633 components: - type: Transform - pos: -18.5,-48.5 - parent: 2 - - uid: 15505 + rot: -1.5707963267948966 rad + pos: 40.226944,57.092003 + parent: 40599 + - uid: 41634 components: - type: Transform - pos: -19.5,-49.5 - parent: 2 - - uid: 15506 + pos: 39.43039,57.665245 + parent: 40599 + - uid: 41635 components: - type: Transform - pos: -48.5,-39.5 - parent: 2 -- proto: ContrabassInstrument - entities: - - uid: 15507 + pos: 45.36789,57.602745 + parent: 40599 + - uid: 41636 components: - type: Transform - pos: 56.5,-7.5 - parent: 2 -- proto: ConveyorBelt - entities: - - uid: 15508 + pos: 64.380936,41.499718 + parent: 40599 + - uid: 41637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,51.5 - parent: 2 - - uid: 15509 + pos: 64.599686,41.577843 + parent: 40599 + - uid: 41638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-31.5 - parent: 2 - - uid: 15510 + pos: 48.334076,25.496431 + parent: 40599 + - uid: 41639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-31.5 - parent: 2 + pos: 72.66378,27.700323 + parent: 40599 +- proto: ClothingShoesBootsWinterCargo + entities: - uid: 15511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-34.5 + pos: 69.75258,-52.32688 parent: 2 - uid: 15512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-33.5 + pos: 69.78383,-52.54563 parent: 2 - uid: 15513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-33.5 + pos: 69.8307,-53.123756 parent: 2 - uid: 15514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-33.5 + pos: 69.84633,-53.67063 parent: 2 +- proto: ClothingShoesBootsWinterEngi + entities: + - uid: 41640 + components: + - type: Transform + pos: 77.40361,33.547653 + parent: 40599 + - uid: 41641 + components: + - type: Transform + pos: 48.740326,25.465181 + parent: 40599 + - uid: 41642 + components: + - type: Transform + pos: 48.740326,25.465181 + parent: 40599 +- proto: ClothingShoesBootsWinterMed + entities: - uid: 15515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-33.5 + pos: 5.334561,40.28884 parent: 2 - uid: 15516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,51.5 + pos: 5.725186,41.054466 parent: 2 - uid: 15517 components: - type: Transform - pos: -20.5,-6.5 + pos: 5.272061,41.03884 parent: 2 - uid: 15518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-9.5 + pos: 5.725186,40.585716 parent: 2 + - uid: 41643 + components: + - type: Transform + pos: 54.479225,28.546114 + parent: 40599 + - uid: 41644 + components: + - type: Transform + pos: 54.61985,28.608614 + parent: 40599 +- proto: ClothingShoesBootsWinterSci + entities: - uid: 15519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-10.5 + pos: 28.542252,-42.191006 parent: 2 - uid: 15520 components: - type: Transform - pos: -20.5,-7.5 + pos: 28.542252,-42.388924 parent: 2 - uid: 15521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 + pos: 28.552668,-42.566006 parent: 2 + - uid: 41645 + components: + - type: Transform + pos: 48.50595,25.605806 + parent: 40599 +- proto: ClothingShoesBootsWinterSec + entities: - uid: 15522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-34.5 + rot: 1.5707963267948966 rad + pos: -26.256208,10.7782135 parent: 2 - uid: 15523 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,-34.5 + pos: -26.224958,10.3875885 parent: 2 - uid: 15524 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,-34.5 + pos: -25.224958,10.8094635 parent: 2 - uid: 15525 components: - type: Transform - pos: 70.5,-33.5 + rot: 1.5707963267948966 rad + pos: -25.193708,10.4344635 parent: 2 - uid: 15526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-32.5 + rot: 1.5707963267948966 rad + pos: -27.193708,10.8094635 parent: 2 - uid: 15527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-34.5 + pos: -27.178083,10.2313385 parent: 2 - uid: 15528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-31.5 + pos: -96.26072,-6.3848834 parent: 2 - uid: 15529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-31.5 + pos: -96.245094,-6.1817584 parent: 2 - uid: 15530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-33.5 + pos: -96.682594,-6.2911334 parent: 2 - uid: 15531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-34.5 + pos: -96.26072,-6.3067584 parent: 2 - uid: 15532 components: - type: Transform - pos: -20.5,-10.5 + pos: -96.72947,-6.4005084 parent: 2 - uid: 15533 components: - type: Transform - pos: -20.5,-9.5 + pos: -96.66697,-6.1817584 parent: 2 - uid: 15534 components: - type: Transform - pos: -20.5,-8.5 + pos: 16.560297,-11.893871 parent: 2 +- proto: ClothingShoesBootsWinterSyndicate + entities: - uid: 15535 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-7.5 + rot: -1.5707963267948966 rad + pos: 28.647427,51.732403 parent: 2 +- proto: ClothingShoesBootsWork + entities: - uid: 15536 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-11.5 + pos: -33.254463,35.312195 parent: 2 + - uid: 41646 + components: + - type: Transform + pos: 45.712997,57.64462 + parent: 40599 + - uid: 41647 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: 42.604446,56.60544 + parent: 40599 + - uid: 41648 + components: + - type: Transform + pos: 38.5007,68.42918 + parent: 40599 + - uid: 41649 + components: + - type: Transform + rot: 3.4906585039886595 rad + pos: 33.60761,29.49499 + parent: 40599 +- proto: ClothingShoesChameleonNoSlips + entities: + - uid: 15257 + components: + - type: Transform + parent: 15253 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesChef + entities: + - uid: 8451 + components: + - type: Transform + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesColorBlack + entities: - uid: 15537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-6.5 + pos: 73.16879,-31.94526 parent: 2 +- proto: ClothingShoesColorBrown + entities: - uid: 15538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 + pos: 102.8349,1.2808279 parent: 2 -- proto: CorporateCircuitBoard +- proto: ClothingShoesColorWhite entities: - uid: 15539 components: - type: Transform - pos: 0.40625,11.618078 + pos: 5.240811,40.554466 parent: 2 -- proto: CounterMetalFrame - entities: - uid: 15540 components: - type: Transform - pos: 57.5,-17.5 + pos: 5.709561,40.179466 parent: 2 -- proto: CrateArtifactContainer - entities: - uid: 15541 components: - type: Transform - pos: 55.5,-33.5 + pos: -122.69011,18.930668 parent: 2 -- proto: CrateCoffin +- proto: ClothingShoesCult + entities: + - uid: 47029 + components: + - type: Transform + rot: 2.8797932657906435 rad + pos: 0.5355835,10.520378 + parent: 46943 +- proto: ClothingShoesGaloshes + entities: + - uid: 15037 + components: + - type: Transform + parent: 15033 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesLeather + entities: + - uid: 41650 + components: + - type: Transform + pos: 77.71611,33.62578 + parent: 40599 +- proto: ClothingShoesSkates entities: - uid: 15542 components: + - type: MetaData + name: 'роликовые коньки для катка #3' - type: Transform - pos: 26.5,15.5 + rot: 6.283185307179586 rad + pos: 4.6249366,-19.323357 + parent: 2 + - uid: 15543 + components: + - type: MetaData + name: 'роликовые коньки для катка #2' + - type: Transform + pos: 4.6118584,-23.586924 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15543 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateContrabandStorageSecure - entities: - uid: 15544 components: + - type: MetaData + name: 'роликовые коньки для катка #4' - type: Transform - pos: -19.5,12.5 + rot: 6.283185307179586 rad + pos: 5.406187,-19.354607 parent: 2 - - type: AccessReader - access: - - - Armory - - - Detective - uid: 15545 components: - type: Transform - pos: -36.5,-18.5 + pos: -58.30461,2.7114036 parent: 2 -- proto: CrateElectrical - entities: - uid: 15546 components: + - type: MetaData + name: 'роликовые коньки для катка #1' - type: Transform - pos: -36.5,-60.5 + pos: 5.393956,-23.592205 parent: 2 -- proto: CrateEmptySpawner - entities: - uid: 15547 components: - type: Transform - pos: 59.5,-39.5 + rot: -1.5707963267948966 rad + pos: -35.726124,-30.59719 parent: 2 +- proto: ClothingShoesSlippers + entities: - uid: 15548 components: - type: Transform - pos: 56.5,-41.5 + rot: -1.5707963267948966 rad + pos: 62.49185,4.7653403 parent: 2 - uid: 15549 components: - type: Transform - pos: 63.5,31.5 + pos: 58.472466,-16.761463 parent: 2 +- proto: ClothingShoesSwat + entities: - uid: 15550 components: - type: Transform - pos: -76.5,44.5 + rot: -1.5707963267948966 rad + pos: 62.30435,4.329164 parent: 2 -- proto: CrateEngineeringAMEControl +- proto: ClothingShoesTourist entities: - uid: 15551 components: - type: Transform - pos: -28.5,-38.5 - parent: 2 -- proto: CrateEngineeringAMEJar - entities: - - uid: 15552 - components: - - type: Transform - pos: -21.5,-34.5 + rot: -1.5707963267948966 rad + pos: 62.49185,4.3278403 parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 15553 + - uid: 45509 components: - type: Transform - pos: -32.5,-47.5 - parent: 2 - - uid: 15554 + pos: -4.5961885,9.352873 + parent: 45355 + - uid: 45510 components: - type: Transform - pos: -26.5,-51.5 - parent: 2 -- proto: CrateEngineeringCableBulk - entities: - - uid: 15555 + pos: -4.3461885,9.602873 + parent: 45355 + - uid: 45511 components: - type: Transform - pos: -18.5,60.5 - parent: 2 - - uid: 15556 + pos: 3.461368,9.60462 + parent: 45355 + - uid: 45512 components: - type: Transform - pos: 55.5,-29.5 - parent: 2 -- proto: CrateEngineeringCableLV - entities: - - uid: 15557 + pos: 3.680118,9.32337 + parent: 45355 + - uid: 47280 components: - type: Transform - pos: 21.5,-35.5 - parent: 2 -- proto: CrateEngineeringGear + rot: -0.17453292519943295 rad + pos: -0.61975396,-4.93991 + parent: 47245 +- proto: ClothingUnderSocksCoder entities: - - uid: 14850 + - uid: 15552 components: + - type: MetaData + desc: Пришло время контрибьютить, сёстры!!11! - type: Transform - pos: -3.5,-35.5 + pos: -28.510998,43.220444 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14857 - - 14856 - - 14858 - - 14855 - - 14854 - - 14853 - - 14852 - - 14851 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringParticleAccelerator +- proto: ClothingUniformJumpskirtBrigmedic entities: - - uid: 15558 + - uid: 15271 components: - type: Transform - pos: -32.5,-43.5 - parent: 2 -- proto: CrateEngineeringSecure + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtElegantMaid entities: - - uid: 15559 + - uid: 15158 components: - type: Transform - pos: -26.5,-48.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: - - 15560 - - 15561 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringSpaceHeater - entities: - - uid: 15562 + parent: 15153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15192 components: - type: Transform - pos: 56.5,-17.5 - parent: 2 -- proto: CrateFilledSpawner - entities: - - uid: 15563 + parent: 15188 + - type: Physics + canCollide: False + - uid: 15282 components: - type: Transform - pos: -66.5,47.5 - parent: 2 - - uid: 15564 + parent: 15276 + - type: Physics + canCollide: False + - uid: 15553 components: - type: Transform - pos: 47.5,41.5 + pos: 3.5093575,32.536335 parent: 2 - - uid: 15565 + - uid: 15554 components: - type: Transform - pos: 58.5,-37.5 + rot: -6.283185307179586 rad + pos: 64.51163,4.398617 parent: 2 - - uid: 15566 + - uid: 45501 components: - type: Transform - pos: 59.5,-41.5 - parent: 2 - - uid: 15567 + parent: 45498 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 15159 components: - type: Transform - pos: 57.5,-32.5 - parent: 2 - - uid: 15568 + parent: 15153 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15342 components: - type: Transform - pos: -66.5,46.5 - parent: 2 - - uid: 15569 + parent: 15340 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtOfLife + entities: + - uid: 15272 components: - type: Transform - pos: -73.5,63.5 - parent: 2 - - uid: 15570 + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpskirtOldDress + entities: + - uid: 15555 components: - type: Transform - pos: -67.5,10.5 + rot: -1.5707963267948966 rad + pos: 62.719906,1.0591327 parent: 2 - - uid: 15571 +- proto: ClothingUniformJumpskirtPerformer + entities: + - uid: 15556 components: - type: Transform - pos: -33.5,51.5 + rot: -1.5707963267948966 rad + pos: 62.68363,0.016147614 parent: 2 -- proto: CrateFoodMRE +- proto: ClothingUniformJumpskirtTacticalMaid entities: - - uid: 41361 + - uid: 15171 components: - type: Transform - pos: 42.5,24.5 - parent: 40203 -- proto: CrateFreezer + parent: 15165 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAncient entities: - - uid: 15572 - components: - - type: Transform - pos: 43.5,23.5 - parent: 2 - - uid: 15573 + - uid: 15557 components: - type: Transform - pos: 30.5,39.5 + pos: 56.229855,31.544651 parent: 2 - - uid: 15574 + - uid: 15558 components: - type: Transform - pos: 26.5,56.5 + rot: -1.5707963267948966 rad + pos: 56.469437,33.346733 parent: 2 - - uid: 15575 + - uid: 15559 components: - type: Transform - pos: -29.5,49.5 + pos: 55.584023,33.409233 parent: 2 - - uid: 15576 + - uid: 15560 components: - type: Transform - pos: -55.5,8.5 + pos: -77.26024,-10.169998 parent: 2 - - uid: 15577 + - type: Physics + canCollide: False + missingComponents: + - Item + - Pullable +- proto: ClothingUniformJumpsuitBartender + entities: + - uid: 15561 components: + - type: MetaData + desc: Красивая и опрятная форма. К сожалению она испачкана в крови.. - type: Transform - pos: -18.489769,43.83029 + rot: 1.5707963267948966 rad + pos: 95.87848,4.902106 parent: 2 - - uid: 15578 +- proto: ClothingUniformJumpsuitBrigmedic + entities: + - uid: 15273 components: - type: Transform - pos: -26.5,45.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15581 - - 15580 - - 15579 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15582 + parent: 15265 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitCapTurtleneck + entities: + - uid: 15135 components: - type: Transform - pos: -57.5,45.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15587 - - 15586 - - 15585 - - 15584 - - 15583 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateFunParty + parent: 15129 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitClownBanana entities: - - uid: 15588 + - uid: 15562 components: - type: Transform - pos: 48.5,19.5 + rot: -1.5707963267948966 rad + pos: 62.76678,1.8247577 parent: 2 -- proto: CrateFunToyBox +- proto: ClothingUniformJumpsuitColorGrey entities: - - uid: 15589 + - uid: 15563 components: - type: Transform - pos: -110.5,5.5 + rot: -1.5707963267948966 rad + pos: 73.38754,-31.648384 parent: 2 -- proto: CrateGenericSteel +- proto: ClothingUniformJumpsuitEngineeringHazard entities: - - uid: 15590 + - uid: 41543 components: - type: Transform - pos: 30.5,-40.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15593 - - 15591 - - 15594 - - 15595 - - 15592 - - 15596 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15597 + parent: 41541 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitFlannel + entities: + - uid: 14972 components: - type: Transform - pos: -40.5,-15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15599 - - 15600 - - 15598 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15601 + parent: 14965 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitHawaiRed + entities: + - uid: 15564 components: - type: Transform - pos: 100.5,-45.5 + pos: 1.411952,65.520905 parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41362 - components: - - type: Transform - pos: 28.570065,68.46221 - parent: 40203 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41363 - components: - - type: Transform - pos: 28.663815,69.543846 - parent: 40203 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 41364 + - uid: 47281 components: - type: Transform - pos: 39.5,37.5 - parent: 40203 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateHydroponics + rot: 1.7453292519943295 rad + pos: -1.5220147,-4.66362 + parent: 47245 +- proto: ClothingUniformJumpsuitHoPTurtleneck entities: - - uid: 15602 - components: - - type: Transform - pos: 9.5,38.5 - parent: 2 - - uid: 15603 + - uid: 41568 components: - type: MetaData - desc: Большой контейнер для токсичных удобрений. - name: ящик для удобрений + desc: Это водолазка главы. + name: водолазка главы - type: Transform - pos: -99.5,14.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15604 - - 15605 - - 15606 - - 15607 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateHydroSecure + parent: 41564 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitHoSBlack entities: - - uid: 15608 + - uid: 15565 components: + - type: MetaData + desc: Чёрный костюм усиленный вшитыми бронеплитами. + name: чёрный бронированный костюм - type: Transform - pos: 9.5,37.5 + pos: -32.27073,23.486061 parent: 2 -- proto: CrateMaterialSteel +- proto: ClothingUniformJumpsuitKimono entities: - - uid: 15609 + - uid: 15290 components: - type: Transform - pos: -34.5,-43.5 - parent: 2 -- proto: CrateMedical + parent: 15288 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitLawyerBlack entities: - - uid: 8101 + - uid: 15197 components: - type: Transform - pos: -25.5,47.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8102 - - 8105 - - 8103 - - 8104 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateMedicalScrubs + parent: 15193 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitMercenary entities: - - uid: 15610 + - uid: 15176 components: - type: Transform - pos: 59.5,-32.5 - parent: 2 -- proto: CrateMedicalSurgery + parent: 15173 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitOperative entities: - - uid: 15611 - components: - - type: Transform - pos: -26.5,47.5 - parent: 2 - - uid: 15612 - components: - - type: Transform - pos: 41.5,-41.5 - parent: 2 - - uid: 15613 - components: - - type: Transform - pos: 18.5,-31.5 - parent: 2 - - uid: 15614 + - uid: 15566 components: - type: Transform - pos: -52.5,8.5 + rot: 1.5707963267948966 rad + pos: 27.584927,54.279278 parent: 2 -- proto: CrateNPCCow +- proto: ClothingUniformJumpsuitPyjamaSyndicatePink entities: - - uid: 15615 + - uid: 15567 components: + - type: MetaData + desc: Для долгих ночей. + name: розовая пижама - type: Transform - pos: 22.5,39.5 + pos: 4.3345704,-36.626858 parent: 2 - - type: EntityStorage - open: True - removedMasks: 28 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateNPCGoat +- proto: ClothingUniformJumpsuitPyjamaSyndicateRed entities: - - uid: 15616 + - uid: 15568 components: + - type: MetaData + desc: Для долгих ночей. + name: красная пижама - type: Transform - pos: 20.5,39.5 + pos: 4.6939454,-36.470608 parent: 2 - - type: EntityStorage - open: True - removedMasks: 28 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 135 - hard: True - restitution: 0 - friction: 0.4 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateNPCHamlet +- proto: ClothingUniformJumpsuitSalvageSpecialist entities: - - uid: 15617 + - uid: 15283 components: - type: Transform - pos: 8.5,-5.5 - parent: 2 -- proto: CratePirate - entities: - - uid: 14968 + parent: 15276 + - type: Physics + canCollide: False + - uid: 15284 components: - type: Transform - pos: -126.5,-15.5 - parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.99739 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14971 - - 14969 - - 14970 - - 14972 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CratePlastic - entities: - - uid: 15618 + parent: 15276 + - type: Physics + canCollide: False + - uid: 45513 components: - type: Transform - pos: -52.5,-30.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: 15619 -- proto: CrateSalvageEquipment + rot: -1.5707963267948966 rad + pos: 1.5795894,7.573637 + parent: 45355 +- proto: ClothingUniformJumpsuitSeniorEngineer entities: - - uid: 45174 + - uid: 41651 components: - type: Transform - pos: -5.5,-0.5 - parent: 44970 -- proto: CrateServiceBooks + rot: -1.9024088846738192 rad + pos: 32.901245,31.692902 + parent: 40599 +- proto: ClothingUniformJumpsuitTacticool entities: - - uid: 15620 + - uid: 15172 components: - type: Transform - pos: -108.5,1.5 - parent: 2 -- proto: CrateServiceJanitorialSupplies + parent: 15165 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformRandomBra entities: - - uid: 15621 + - uid: 45515 components: - type: Transform - pos: 69.5,-30.5 - parent: 2 -- proto: CrateServicePersonnel - entities: - - uid: 15622 + parent: 45514 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45516 components: - type: Transform - pos: -8.5,-12.5 - parent: 2 -- proto: CrateStoneGrave - entities: - - uid: 15623 + parent: 45514 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45517 components: - - type: MetaData - name: могила неизвестной боргоматери - type: Transform - pos: 34.5,-26.5 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: [] - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: 15624 -- proto: CrateSyndicate - entities: - - uid: 15625 + parent: 45514 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45522 components: - type: Transform - pos: 40.5,58.5 - parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.4,-0.4 - - 0.4,-0.4 - - 0.4,0.29 - - -0.4,0.29 - mask: - - Impassable - - HighImpassable - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: CrateTrashCartFilled - entities: - - uid: 15626 + parent: 45521 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45523 components: - type: Transform - pos: 35.5,-39.5 - parent: 2 - - uid: 15627 + parent: 45521 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45524 components: - type: Transform - pos: -101.5,22.5 - parent: 2 - - uid: 15628 + parent: 45521 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45529 components: - type: Transform - pos: 75.5,-29.5 - parent: 2 - - uid: 15629 + parent: 45528 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45530 components: - type: Transform - pos: 75.5,-30.5 - parent: 2 -- proto: CrateTrashCartJani - entities: - - uid: 15630 + parent: 45528 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45531 components: - type: Transform - pos: 5.5,30.5 - parent: 2 -- proto: CrateWeb - entities: - - uid: 15631 + parent: 45528 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45536 components: - - type: MetaData - name: снежный ящик - type: Transform - anchored: True - pos: -89.5,64.5 - parent: 2 + parent: 45535 - type: Physics - bodyType: Static - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15632 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True -- proto: CrateWoodenGrave - entities: - - uid: 15633 + canCollide: False + - type: InsideEntityStorage + - uid: 45537 components: - type: Transform - pos: 34.5,46.5 - parent: 2 - - uid: 41365 + parent: 45535 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45538 components: - type: Transform - pos: 47.5,69.5 - parent: 40203 -- proto: CrayonBlue + parent: 45535 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformRandomShorts entities: - - uid: 15635 + - uid: 45518 components: - type: Transform - pos: 42.116352,52.084423 - parent: 2 -- proto: CrayonBox - entities: - - uid: 15636 + parent: 45514 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45519 components: - type: Transform - pos: -110.49875,24.554552 - parent: 2 -- proto: CrayonPurple - entities: - - uid: 15638 + parent: 45514 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45520 components: - type: Transform - pos: -117.27833,24.817198 - parent: 2 -- proto: CrayonRed - entities: - - uid: 15639 + parent: 45514 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45525 components: - - type: MetaData - name: красная помада - type: Transform - pos: 59.57531,4.486457 - parent: 2 - - uid: 15640 + parent: 45521 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45526 components: - type: Transform - pos: 8.246008,-7.195333 - parent: 2 -- proto: CrayonWhite - entities: - - uid: 15641 + parent: 45521 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45527 components: - type: Transform - pos: -49.468014,15.381165 - parent: 2 - - uid: 15642 + parent: 45521 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45532 components: - type: Transform - pos: -117.21583,24.692198 - parent: 2 -- proto: Crematorium - entities: - - uid: 15644 + parent: 45528 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45533 components: - type: Transform - pos: 27.5,6.5 - parent: 2 -- proto: CrewMonitoringComputerCircuitboard - entities: - - uid: 15645 + parent: 45528 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45534 components: - type: Transform - pos: 14.681799,12.517874 - parent: 2 -- proto: CrewMonitoringServer - entities: - - uid: 15646 + parent: 45528 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45539 components: - type: Transform - pos: 4.5,12.5 - parent: 2 -- proto: CriminalRecordsComputerCircuitboard - entities: - - uid: 15647 + parent: 45535 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45540 components: - type: Transform - pos: 14.634924,11.725895 - parent: 2 -- proto: Crowbar - entities: - - uid: 14797 + parent: 45535 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45541 components: - type: Transform - parent: 14795 + parent: 45535 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 15189 +- proto: Coal + entities: + - uid: 41653 components: - type: Transform - parent: 15187 + parent: 41652 - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 15648 + - uid: 41654 components: - type: Transform - pos: 17.5,-41.5 - parent: 2 -- proto: CrowbarRed + parent: 41652 + - type: Physics + canCollide: False +- proto: Coal1 entities: - - uid: 15649 + - uid: 15569 components: - type: Transform - pos: 45.581337,-18.377256 + pos: -64.41712,25.660656 parent: 2 - - uid: 15650 + - uid: 15570 components: - type: Transform - pos: -11.469196,-7.436815 + pos: -64.72967,25.296074 parent: 2 - - uid: 15651 + - uid: 15571 components: - type: Transform - pos: 24.453474,52.45331 + pos: -64.07853,25.322115 parent: 2 - - uid: 15652 + - uid: 15572 components: - type: Transform - pos: 39.58224,-43.295883 + pos: -64.312935,25.165865 parent: 2 - - uid: 15653 + - uid: 15573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.504105,-43.37401 + pos: -64.130615,25.660656 parent: 2 - - uid: 15654 + - uid: 15574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.609646,64.396164 + pos: -63.926018,27.784504 parent: 2 -- proto: CryogenicSleepUnit - entities: - - uid: 15655 + - uid: 15575 components: - type: Transform - pos: 9.5,-33.5 + pos: -91.13754,10.078733 parent: 2 - - uid: 15656 + - uid: 15576 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,10.5 + pos: 99.85871,0.34851646 parent: 2 - - uid: 15657 + - uid: 15577 components: - type: Transform - pos: -55.5,-30.5 + rot: 1.5707963267948966 rad + pos: 96.31184,6.0516415 parent: 2 - - uid: 15658 + - uid: 15578 components: - type: Transform - pos: -55.5,-32.5 + pos: 101.21809,0.61414146 parent: 2 - - uid: 15659 + - uid: 15579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-33.5 - parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 15660 + rot: 1.5707963267948966 rad + pos: -89.48658,27.213303 + parent: 2 + - uid: 15580 components: - type: Transform - pos: 9.5,-35.5 + pos: -89.86158,27.400803 parent: 2 - - uid: 15661 + - uid: 15581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-35.5 + pos: -88.98658,27.275803 parent: 2 - - uid: 15662 + - uid: 41655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-34.5 - parent: 2 - - uid: 15663 + parent: 41652 + - type: Physics + canCollide: False + - uid: 41656 components: - type: Transform - pos: 9.5,-34.5 - parent: 2 -- proto: CryoPod - entities: - - uid: 15664 + parent: 41652 + - type: Physics + canCollide: False + - uid: 41657 components: - type: Transform - pos: -23.5,52.5 - parent: 2 - - uid: 15665 + parent: 41652 + - type: Physics + canCollide: False + - uid: 41658 components: - type: Transform - pos: -21.5,52.5 - parent: 2 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 15666 + parent: 41652 + - type: Physics + canCollide: False + - uid: 41659 components: - type: Transform - pos: -20.66497,50.696533 - parent: 2 - - uid: 15667 + rot: -1.117010721276371 rad + pos: 29.195065,71.633575 + parent: 40599 + - uid: 41660 components: - type: Transform - pos: 43.364365,54.72135 - parent: 2 - - uid: 15668 + rot: 1.5707963267948966 rad + pos: 68.71594,43.466427 + parent: 40599 + - uid: 41661 components: - type: Transform - pos: 7.462455,40.560955 - parent: 2 -- proto: CrystalBlue - entities: - - uid: 15669 + pos: 68.57011,43.73726 + parent: 40599 + - uid: 41662 components: - type: Transform - pos: -32.5,58.5 - parent: 2 - - uid: 15670 + rot: -1.5707963267948966 rad + pos: 68.51803,43.51851 + parent: 40599 + - uid: 41663 components: - type: Transform - pos: -82.5,51.5 - parent: 2 - - uid: 15671 + rot: 3.141592653589793 rad + pos: 68.79928,43.70601 + parent: 40599 + - uid: 41664 components: - type: Transform - pos: -65.5,20.5 - parent: 2 - - uid: 15672 + rot: 3.141592653589793 rad + pos: 68.46594,43.591427 + parent: 40599 + - uid: 41665 components: - type: Transform - pos: 46.5,41.5 - parent: 2 - - uid: 15673 + rot: 3.141592653589793 rad + pos: 68.61178,43.83101 + parent: 40599 + - uid: 41666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-38.5 - parent: 2 - - uid: 15674 + rot: 1.5707963267948966 rad + pos: 68.69511,43.66434 + parent: 40599 + - uid: 41667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-41.5 - parent: 2 - - uid: 15675 + pos: 68.45553,43.69559 + parent: 40599 + - uid: 41668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-45.5 - parent: 2 - - uid: 15676 + pos: 68.33053,43.403927 + parent: 40599 + - uid: 41669 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,36.5 - parent: 2 - - uid: 15677 + pos: 68.34094,43.653927 + parent: 40599 + - uid: 41670 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,20.5 - parent: 2 - - uid: 15678 + pos: 68.74719,43.39351 + parent: 40599 +- proto: Cobweb1 + entities: + - uid: 15582 components: - type: Transform - pos: 32.5,-45.5 + pos: 20.5,29.5 parent: 2 - - uid: 15679 + - uid: 15583 components: - type: Transform - pos: 24.5,-49.5 + rot: 3.141592653589793 rad + pos: -29.5,27.5 parent: 2 - - uid: 15680 + - uid: 15584 components: - type: Transform - pos: -76.5,41.5 + pos: 78.5,7.5 parent: 2 - - uid: 15681 + - uid: 15585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-33.5 + rot: 3.141592653589793 rad + pos: 16.5,50.5 parent: 2 - - uid: 15682 + - uid: 15586 components: - type: Transform - pos: -51.5,-38.5 + pos: 87.5,-42.5 parent: 2 - - uid: 15683 + - uid: 15587 components: - type: Transform - pos: -53.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,56.5 parent: 2 - - uid: 15684 + - uid: 15588 components: - type: Transform - pos: -49.5,-43.5 + rot: 1.5707963267948966 rad + pos: 8.5,60.5 parent: 2 - - uid: 15685 + - uid: 15589 components: - type: Transform - pos: -45.5,-47.5 + pos: 8.5,61.5 parent: 2 - - uid: 15686 + - uid: 15590 components: - type: Transform - pos: -44.5,-38.5 + pos: 8.5,65.5 parent: 2 - - uid: 15687 + - uid: 15591 components: - type: Transform - pos: -73.5,35.5 + rot: 3.141592653589793 rad + pos: 10.5,63.5 parent: 2 - - uid: 15688 + - uid: 15592 components: - type: Transform - pos: 43.5,52.5 + rot: -1.5707963267948966 rad + pos: 10.5,65.5 parent: 2 - - uid: 15689 + - uid: 15593 components: - type: Transform - pos: 48.5,-10.5 + rot: -1.5707963267948966 rad + pos: 14.5,65.5 parent: 2 - - uid: 15690 + - uid: 15594 components: - type: Transform - pos: -28.5,-32.5 + pos: 12.5,65.5 parent: 2 - - uid: 15691 + - uid: 15595 components: - type: Transform - pos: -48.5,-24.5 + rot: -1.5707963267948966 rad + pos: 29.5,61.5 parent: 2 - - uid: 15692 + - uid: 15596 components: - type: Transform - pos: -44.5,-26.5 + rot: 1.5707963267948966 rad + pos: 4.5,56.5 parent: 2 - - uid: 15693 + - uid: 15597 components: - type: Transform - pos: -53.5,-23.5 + pos: 27.5,54.5 parent: 2 - - uid: 15694 + - uid: 15598 components: - type: Transform - pos: -58.5,-22.5 + rot: 1.5707963267948966 rad + pos: 27.5,51.5 parent: 2 - - uid: 15695 + - uid: 15599 components: - type: Transform - pos: 30.5,44.5 + rot: 3.141592653589793 rad + pos: 29.5,54.5 parent: 2 - - uid: 15696 + - uid: 15600 components: - type: Transform - pos: 24.5,48.5 + rot: -1.5707963267948966 rad + pos: 29.5,54.5 parent: 2 - - uid: 15697 + - uid: 15601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,42.5 + pos: 27.5,61.5 parent: 2 - - uid: 15698 + - uid: 15602 components: - type: Transform - pos: -77.5,44.5 + rot: -1.5707963267948966 rad + pos: 20.5,54.5 parent: 2 - - uid: 15699 + - uid: 15603 components: - type: Transform - pos: 85.5,-1.5 + rot: 3.141592653589793 rad + pos: 20.5,53.5 parent: 2 - - uid: 15700 + - uid: 15604 components: - type: Transform - pos: -91.5,-10.5 + pos: 15.5,51.5 parent: 2 - - uid: 15701 + - uid: 15605 components: - type: Transform - pos: -81.5,-3.5 + pos: 23.5,58.5 parent: 2 - - uid: 15702 + - uid: 15606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-16.5 + rot: -1.5707963267948966 rad + pos: 18.5,61.5 parent: 2 - - uid: 15703 + - uid: 15607 components: - type: Transform - pos: -64.5,14.5 + pos: -48.5,-11.5 parent: 2 - - uid: 15704 + - uid: 15608 components: - type: Transform - pos: -83.5,57.5 + rot: 3.141592653589793 rad + pos: -46.5,-14.5 parent: 2 - - uid: 15705 + - uid: 15609 components: - type: Transform - pos: -44.5,38.5 + pos: -41.5,26.5 parent: 2 - - uid: 15706 + - uid: 15610 components: - type: Transform - pos: 67.5,13.5 + rot: 1.5707963267948966 rad + pos: -46.5,24.5 parent: 2 - - uid: 15707 + - uid: 15611 components: - type: Transform - pos: 73.5,2.5 + rot: -1.5707963267948966 rad + pos: 18.5,29.5 parent: 2 - - uid: 15708 + - uid: 15612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,26.5 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 parent: 2 - - uid: 15709 + - uid: 15613 components: - type: Transform - pos: -55.5,41.5 + pos: 20.5,39.5 parent: 2 - - uid: 15710 + - uid: 15614 components: - type: Transform - pos: 96.5,-37.5 + rot: 1.5707963267948966 rad + pos: 20.5,31.5 parent: 2 - - uid: 15711 + - uid: 15615 components: - type: Transform - pos: 96.5,-34.5 + rot: 3.141592653589793 rad + pos: 39.5,17.5 parent: 2 - - uid: 15712 + - uid: 15616 components: - type: Transform - pos: 34.5,-30.5 + rot: 1.5707963267948966 rad + pos: 26.5,17.5 parent: 2 - - uid: 15713 + - uid: 15617 components: - type: Transform - pos: 10.5,-43.5 + pos: 36.5,25.5 parent: 2 - - uid: 15714 + - uid: 15618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,64.5 + rot: 3.141592653589793 rad + pos: 43.5,17.5 parent: 2 - - uid: 15715 + - uid: 15619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,66.5 + pos: 43.5,25.5 parent: 2 - - uid: 15716 + - uid: 41671 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,25.5 - parent: 2 - - uid: 15717 + pos: 41.5,72.5 + parent: 40599 + - uid: 41672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,28.5 - parent: 2 - - uid: 15718 + rot: -1.5707963267948966 rad + pos: 41.5,74.5 + parent: 40599 + - uid: 41673 components: - type: Transform - pos: 53.5,48.5 - parent: 2 - - uid: 15719 + pos: 36.5,80.5 + parent: 40599 + - uid: 41674 components: - type: Transform - pos: -64.5,2.5 - parent: 2 - - uid: 15720 + rot: -1.5707963267948966 rad + pos: 38.5,80.5 + parent: 40599 + - uid: 41675 components: - type: Transform - pos: -63.5,8.5 - parent: 2 - - uid: 15721 + rot: 1.5707963267948966 rad + pos: 40.5,76.5 + parent: 40599 + - uid: 41676 components: - type: Transform - pos: -78.5,22.5 - parent: 2 - - uid: 15722 + rot: -1.5707963267948966 rad + pos: 45.5,84.5 + parent: 40599 + - uid: 41677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,37.5 - parent: 2 - - uid: 15723 + pos: 55.5,57.5 + parent: 40599 + - uid: 41678 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,36.5 - parent: 2 - - uid: 15724 + pos: 61.5,54.5 + parent: 40599 + - uid: 41679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,40.5 - parent: 2 - - uid: 41366 + rot: -1.5707963267948966 rad + pos: 53.5,57.5 + parent: 40599 + - uid: 41680 components: - type: Transform - pos: 23.5,61.5 - parent: 40203 - - uid: 41367 + rot: 1.5707963267948966 rad + pos: 48.5,59.5 + parent: 40599 + - uid: 41681 components: - type: Transform - pos: 19.5,43.5 - parent: 40203 - - uid: 41368 + pos: 48.5,63.5 + parent: 40599 + - uid: 41682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,65.5 - parent: 40203 - - uid: 41369 + rot: -1.5707963267948966 rad + pos: 58.5,63.5 + parent: 40599 + - uid: 41683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,54.5 - parent: 40203 -- proto: CrystalCyan - entities: - - uid: 15725 + rot: 3.141592653589793 rad + pos: 61.5,59.5 + parent: 40599 + - uid: 41684 components: - type: Transform - pos: -33.5,68.5 - parent: 2 - - uid: 15726 + pos: 60.5,63.5 + parent: 40599 + - uid: 41685 components: - type: Transform - pos: 21.5,-45.5 - parent: 2 - - uid: 15727 + rot: 1.5707963267948966 rad + pos: 28.5,68.5 + parent: 40599 + - uid: 41686 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-39.5 - parent: 2 - - uid: 15728 + pos: 34.5,72.5 + parent: 40599 + - uid: 41687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-37.5 - parent: 2 - - uid: 15729 + pos: 41.5,70.5 + parent: 40599 + - uid: 41688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-42.5 - parent: 2 - - uid: 15730 + rot: 3.141592653589793 rad + pos: 41.5,68.5 + parent: 40599 + - uid: 41689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,27.5 - parent: 2 - - uid: 15731 + pos: 48.5,79.5 + parent: 40599 + - uid: 41690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,33.5 - parent: 2 - - uid: 15732 + rot: -1.5707963267948966 rad + pos: 57.5,83.5 + parent: 40599 + - uid: 41691 components: - type: Transform - pos: 31.5,-49.5 - parent: 2 - - uid: 15733 + rot: 3.141592653589793 rad + pos: 57.5,81.5 + parent: 40599 + - uid: 41692 components: - type: Transform - pos: -64.5,45.5 - parent: 2 - - uid: 15734 + rot: 3.141592653589793 rad + pos: 60.5,77.5 + parent: 40599 + - uid: 41693 components: - type: Transform - pos: -72.5,40.5 - parent: 2 - - uid: 15735 + rot: 1.5707963267948966 rad + pos: 62.5,77.5 + parent: 40599 + - uid: 41694 components: - type: Transform - pos: -77.5,36.5 - parent: 2 - - uid: 15736 + pos: 62.5,79.5 + parent: 40599 + - uid: 41695 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,-3.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - pos: -63.5,55.5 - parent: 2 - - uid: 15738 + pos: 65.5,77.5 + parent: 40599 + - uid: 41696 components: - type: Transform - pos: -69.5,54.5 - parent: 2 - - uid: 15739 + rot: -1.5707963267948966 rad + pos: 66.5,79.5 + parent: 40599 + - uid: 41697 components: - type: Transform - pos: -68.5,50.5 - parent: 2 - - uid: 15740 + pos: 71.5,79.5 + parent: 40599 + - uid: 41698 components: - type: Transform - pos: -20.5,-30.5 - parent: 2 - - uid: 15741 + rot: 1.5707963267948966 rad + pos: 71.5,77.5 + parent: 40599 + - uid: 41699 components: - type: Transform - pos: -17.5,-19.5 - parent: 2 - - uid: 15742 + rot: 1.5707963267948966 rad + pos: 71.5,71.5 + parent: 40599 + - uid: 41700 components: - type: Transform - pos: -43.5,-42.5 - parent: 2 - - uid: 15743 + rot: -1.5707963267948966 rad + pos: 75.5,75.5 + parent: 40599 + - uid: 41701 components: - type: Transform - pos: -36.5,-39.5 - parent: 2 - - uid: 15744 + rot: 3.141592653589793 rad + pos: 66.5,68.5 + parent: 40599 + - uid: 41702 components: - type: Transform - pos: -54.5,-41.5 - parent: 2 - - uid: 15745 + rot: 1.5707963267948966 rad + pos: 54.5,68.5 + parent: 40599 + - uid: 41703 components: - type: Transform - pos: -52.5,-34.5 - parent: 2 - - uid: 15746 + pos: 54.5,72.5 + parent: 40599 + - uid: 41704 components: - type: Transform - pos: -47.5,-33.5 - parent: 2 - - uid: 15747 + pos: 39.5,57.5 + parent: 40599 + - uid: 41705 components: - type: Transform - pos: 56.5,44.5 - parent: 2 - - uid: 15748 + rot: 3.141592653589793 rad + pos: 38.5,59.5 + parent: 40599 + - uid: 41706 components: - type: Transform - pos: 62.5,-12.5 - parent: 2 - - uid: 15749 + rot: -1.5707963267948966 rad + pos: 38.5,63.5 + parent: 40599 + - uid: 45542 components: - type: Transform - pos: -33.5,-29.5 - parent: 2 - - uid: 15750 + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 45355 + - uid: 45543 components: - type: Transform - pos: -36.5,-33.5 - parent: 2 - - uid: 15751 + pos: -5.5,5.5 + parent: 45355 + - uid: 45544 components: - type: Transform - pos: -41.5,-30.5 - parent: 2 - - uid: 15752 + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 45355 + - uid: 45545 components: - type: Transform - pos: -74.5,61.5 - parent: 2 - - uid: 15753 + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 45355 + - uid: 45546 components: - type: Transform - pos: -17.5,-26.5 - parent: 2 - - uid: 15754 + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 45355 + - uid: 45547 components: - type: Transform - pos: 33.5,63.5 - parent: 2 - - uid: 15755 + pos: -5.5,9.5 + parent: 45355 + - uid: 45548 components: - type: Transform - pos: -80.5,29.5 - parent: 2 - - uid: 15756 + pos: 6.5,9.5 + parent: 45355 + - uid: 45549 components: - type: Transform - pos: 89.5,-3.5 - parent: 2 - - uid: 15757 + pos: 5.5,5.5 + parent: 45355 + - uid: 45550 components: - type: Transform - pos: -21.5,65.5 - parent: 2 - - uid: 15758 + pos: 9.5,9.5 + parent: 45355 + - uid: 45551 components: - type: Transform - pos: 34.5,57.5 - parent: 2 - - uid: 15759 + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 45355 +- proto: Cobweb2 + entities: + - uid: 15620 components: - type: Transform - pos: -19.5,68.5 + rot: 3.141592653589793 rad + pos: -33.5,28.5 parent: 2 - - uid: 15760 + - uid: 15621 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,63.5 + pos: -38.5,21.5 parent: 2 - - uid: 15761 + - uid: 15622 components: - type: Transform - pos: 78.5,-2.5 + pos: -43.5,27.5 parent: 2 - - uid: 15762 + - uid: 15623 components: - type: Transform - pos: 87.5,3.5 + rot: -1.5707963267948966 rad + pos: -40.5,21.5 parent: 2 - - uid: 15763 + - uid: 15624 components: - type: Transform - pos: 92.5,9.5 + rot: -1.5707963267948966 rad + pos: 82.5,4.5 parent: 2 - - uid: 15764 + - uid: 15625 components: - type: Transform - pos: 82.5,-4.5 + rot: 1.5707963267948966 rad + pos: 29.5,54.5 parent: 2 - - uid: 15765 + - uid: 15626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,20.5 + pos: 28.5,54.5 parent: 2 - - uid: 15766 + - uid: 15627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,31.5 + pos: 29.5,53.5 parent: 2 - - uid: 15767 + - uid: 15628 components: - type: Transform - pos: -85.5,-10.5 + rot: -1.5707963267948966 rad + pos: 29.5,51.5 parent: 2 - - uid: 15768 + - uid: 15629 components: - type: Transform - pos: -131.5,-13.5 + pos: 2.5,58.5 parent: 2 - - uid: 15769 + - uid: 15630 components: - type: Transform - pos: -136.5,-6.5 + pos: 82.5,8.5 parent: 2 - - uid: 15770 + - uid: 15631 components: - type: Transform - pos: -131.5,17.5 + rot: -1.5707963267948966 rad + pos: 83.5,5.5 parent: 2 - - uid: 15771 + - uid: 15632 components: - type: Transform - pos: -100.5,36.5 + rot: 3.141592653589793 rad + pos: -48.5,-14.5 parent: 2 - - uid: 15772 + - uid: 15633 components: - type: Transform - pos: -117.5,36.5 + rot: -1.5707963267948966 rad + pos: -7.5,72.5 parent: 2 - - uid: 15773 + - uid: 15634 components: - type: Transform - pos: -83.5,3.5 + rot: 1.5707963267948966 rad + pos: 52.5,33.5 parent: 2 - - uid: 15774 + - uid: 15635 components: - type: Transform - pos: -75.5,-3.5 + pos: 57.5,31.5 parent: 2 - - uid: 15775 + - uid: 15636 components: - type: Transform - pos: -83.5,-0.5 + pos: -9.5,74.5 parent: 2 - - uid: 15776 + - uid: 15637 components: - type: Transform - pos: -75.5,4.5 + rot: 3.141592653589793 rad + pos: -13.5,68.5 parent: 2 - - uid: 15777 + - uid: 15638 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,-12.5 + pos: -8.5,74.5 parent: 2 - - uid: 15778 + - uid: 15639 components: - type: Transform - pos: -69.5,7.5 + rot: -1.5707963267948966 rad + pos: -51.5,-9.5 parent: 2 - - uid: 15779 + - uid: 15640 components: - type: Transform - pos: -86.5,7.5 + pos: -51.5,-8.5 parent: 2 - - uid: 15780 + - uid: 15641 components: - type: Transform - pos: -88.5,50.5 + rot: -1.5707963267948966 rad + pos: 18.5,27.5 parent: 2 - - uid: 15781 + - uid: 15642 components: - type: Transform - pos: -92.5,50.5 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 2 - - uid: 15782 + - uid: 15643 components: - type: Transform - pos: -78.5,63.5 + pos: 22.5,39.5 parent: 2 - - uid: 15783 + - uid: 15644 components: - type: Transform - pos: 72.5,10.5 + rot: 1.5707963267948966 rad + pos: 36.5,29.5 parent: 2 - - uid: 15784 + - uid: 15645 components: - type: Transform - pos: -33.5,49.5 + rot: -1.5707963267948966 rad + pos: 26.5,17.5 parent: 2 - - uid: 15785 + - uid: 15646 components: - type: Transform - pos: -45.5,33.5 + rot: 3.141592653589793 rad + pos: 41.5,17.5 parent: 2 - - uid: 15786 + - uid: 15647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,29.5 + pos: 41.5,25.5 parent: 2 - - uid: 15787 + - uid: 41707 components: - type: Transform - pos: -54.5,44.5 - parent: 2 - - uid: 15788 + rot: 1.5707963267948966 rad + pos: 36.5,74.5 + parent: 40599 + - uid: 41708 components: - type: Transform - pos: -29.5,61.5 - parent: 2 - - uid: 15789 + pos: 41.5,74.5 + parent: 40599 + - uid: 41709 components: - type: Transform - pos: -82.5,36.5 - parent: 2 - - uid: 15790 + rot: 3.141592653589793 rad + pos: 36.5,72.5 + parent: 40599 + - uid: 41710 components: - type: Transform - pos: 95.5,-34.5 - parent: 2 - - uid: 15791 + rot: 3.141592653589793 rad + pos: 36.5,76.5 + parent: 40599 + - uid: 41711 components: - type: Transform - pos: 38.5,-28.5 - parent: 2 - - uid: 15792 + rot: 3.141592653589793 rad + pos: 40.5,76.5 + parent: 40599 + - uid: 41712 components: - type: Transform - pos: 91.5,-33.5 - parent: 2 - - uid: 15793 + rot: 1.5707963267948966 rad + pos: 40.5,84.5 + parent: 40599 + - uid: 41713 components: - type: Transform - pos: 12.5,-41.5 - parent: 2 - - uid: 15794 + rot: 3.141592653589793 rad + pos: 55.5,54.5 + parent: 40599 + - uid: 41714 components: - type: Transform - pos: -45.5,62.5 - parent: 2 - - uid: 15795 + rot: -1.5707963267948966 rad + pos: 61.5,54.5 + parent: 40599 + - uid: 41715 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,22.5 - parent: 2 - - uid: 15796 + pos: 49.5,51.5 + parent: 40599 + - uid: 41716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,57.5 + parent: 40599 + - uid: 41717 + components: + - type: Transform + pos: 53.5,63.5 + parent: 40599 + - uid: 41718 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,29.5 - parent: 2 - - uid: 15797 + pos: 55.5,59.5 + parent: 40599 + - uid: 41719 components: - type: Transform - pos: 48.5,45.5 - parent: 2 - - uid: 15798 + rot: 1.5707963267948966 rad + pos: 55.5,63.5 + parent: 40599 + - uid: 41720 components: - type: Transform - pos: -83.5,47.5 - parent: 2 - - uid: 15799 + rot: 1.5707963267948966 rad + pos: 55.5,63.5 + parent: 40599 + - uid: 41721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -142.5,-2.5 - parent: 2 - - uid: 15800 + pos: 58.5,63.5 + parent: 40599 + - uid: 41722 components: - type: Transform - pos: -88.5,19.5 - parent: 2 - - uid: 15801 + rot: 1.5707963267948966 rad + pos: 28.5,66.5 + parent: 40599 + - uid: 41723 components: - type: Transform - pos: -61.5,-7.5 - parent: 2 - - uid: 15802 + rot: 1.5707963267948966 rad + pos: 36.5,70.5 + parent: 40599 + - uid: 41724 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-42.5 - parent: 2 - - uid: 41370 + pos: 41.5,68.5 + parent: 40599 + - uid: 41725 components: - type: Transform - pos: 20.5,54.5 - parent: 40203 - - uid: 41371 + pos: 60.5,83.5 + parent: 40599 + - uid: 41726 components: - type: Transform - pos: 27.5,42.5 - parent: 40203 - - uid: 41372 + rot: -1.5707963267948966 rad + pos: 60.5,81.5 + parent: 40599 + - uid: 41727 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,61.5 - parent: 40203 - - uid: 41373 + pos: 59.5,83.5 + parent: 40599 + - uid: 41728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,77.5 + parent: 40599 + - uid: 41729 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,65.5 - parent: 40203 -- proto: CrystalGreen - entities: - - uid: 15803 + pos: 68.5,79.5 + parent: 40599 + - uid: 41730 + components: + - type: Transform + pos: 69.5,79.5 + parent: 40599 + - uid: 41731 + components: + - type: Transform + pos: 74.5,79.5 + parent: 40599 + - uid: 41732 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-36.5 - parent: 2 - - uid: 15804 + pos: 75.5,73.5 + parent: 40599 + - uid: 41733 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-34.5 - parent: 2 - - uid: 15805 + pos: 69.5,65.5 + parent: 40599 + - uid: 41734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,17.5 - parent: 2 - - uid: 15806 + rot: -1.5707963267948966 rad + pos: 66.5,68.5 + parent: 40599 + - uid: 41735 components: - type: Transform - pos: 95.5,-39.5 - parent: 2 - - uid: 15807 + rot: 3.141592653589793 rad + pos: 39.5,55.5 + parent: 40599 + - uid: 41736 components: - type: Transform - pos: 89.5,-37.5 - parent: 2 - - uid: 15808 + pos: 45.5,57.5 + parent: 40599 + - uid: 41737 components: - type: Transform - pos: 91.5,-42.5 - parent: 2 -- proto: CrystalGrey - entities: - - uid: 15809 + pos: 38.5,63.5 + parent: 40599 + - uid: 45552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 2 - - uid: 15810 + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 45355 + - uid: 45553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-26.5 - parent: 2 - - uid: 15811 + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 45355 + - uid: 45554 components: - type: Transform - pos: -37.5,-22.5 - parent: 2 - - uid: 15812 + pos: 4.5,9.5 + parent: 45355 + - uid: 45555 components: - type: Transform - pos: -76.5,26.5 - parent: 2 - - uid: 41374 + pos: 7.5,9.5 + parent: 45355 + - uid: 45556 components: - type: Transform - pos: 59.5,69.5 - parent: 40203 - - uid: 41375 + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 45355 + - uid: 45557 components: - type: Transform - pos: 57.5,72.5 - parent: 40203 -- proto: CrystalOrange + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 45355 +- proto: CombatKnife entities: - - uid: 15813 + - uid: 15648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,47.5 + rot: 0.7853981633974483 rad + pos: -60.48176,51.49334 parent: 2 - - uid: 15814 +- proto: CombatMedipen + entities: + - uid: 15649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,51.5 + pos: -56.501728,19.491755 parent: 2 - - uid: 15815 +- proto: ComfyChair + entities: + - uid: 15650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,50.5 + rot: 3.141592653589793 rad + pos: -76.5,17.5 parent: 2 - - uid: 15816 + - uid: 15651 components: - type: Transform - pos: -48.5,47.5 + rot: 1.5707963267948966 rad + pos: -33.5,-16.5 parent: 2 - - uid: 15817 + - uid: 15652 components: - type: Transform - pos: -44.5,53.5 + rot: 3.141592653589793 rad + pos: -26.5,-20.5 parent: 2 - - uid: 15818 + - uid: 15653 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,52.5 + pos: 3.5,64.5 parent: 2 - - uid: 41376 + - uid: 15654 components: - type: Transform - pos: 63.5,71.5 - parent: 40203 - - uid: 41377 + pos: -42.5,2.5 + parent: 2 + - uid: 15655 components: - type: Transform - pos: 57.5,68.5 - parent: 40203 -- proto: CrystalPink - entities: - - uid: 15819 + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - uid: 15656 components: - type: Transform - pos: -65.5,-25.5 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 parent: 2 - - uid: 15820 + - uid: 15657 components: - type: Transform - pos: 45.5,38.5 + pos: 33.5,21.5 parent: 2 - - uid: 15821 + - uid: 15658 components: - type: Transform - pos: -90.5,44.5 + rot: -1.5707963267948966 rad + pos: 3.5,0.5 parent: 2 - - uid: 15822 + - uid: 15659 components: - type: Transform - pos: -88.5,40.5 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 parent: 2 - - uid: 15823 + - uid: 15660 components: - type: Transform - pos: -81.5,43.5 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 parent: 2 - - uid: 15824 + - uid: 15661 components: - type: Transform - pos: -60.5,-23.5 + rot: 1.5707963267948966 rad + pos: 53.5,-4.5 parent: 2 - - uid: 15825 + - uid: 15662 components: - type: Transform - pos: -73.5,24.5 + rot: -1.5707963267948966 rad + pos: 55.5,-4.5 parent: 2 - - uid: 15826 + - uid: 15663 components: - type: Transform - pos: -69.5,27.5 + rot: -1.5707963267948966 rad + pos: 30.5,24.5 parent: 2 - - uid: 15827 + - uid: 15664 components: - type: Transform - pos: 67.5,35.5 + rot: 3.141592653589793 rad + pos: 33.5,19.5 parent: 2 - - uid: 15828 + - uid: 15665 components: - type: Transform - pos: 51.5,39.5 + rot: 1.5707963267948966 rad + pos: 28.5,23.5 parent: 2 - - uid: 15829 + - uid: 15666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,28.5 + rot: 1.5707963267948966 rad + pos: 28.5,22.5 parent: 2 - - uid: 15830 + - uid: 15667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - uid: 15668 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,24.5 + pos: 32.5,19.5 parent: 2 - - uid: 15831 + - uid: 15669 components: - type: Transform - pos: -48.5,21.5 + rot: 1.5707963267948966 rad + pos: 28.5,24.5 parent: 2 - - uid: 41378 + - uid: 15670 components: - type: Transform - pos: 27.5,62.5 - parent: 40203 - - uid: 45175 + pos: 31.5,21.5 + parent: 2 + - uid: 15671 components: - type: Transform - pos: 16.5,-6.5 - parent: 44970 - - type: PointLight - energy: 2.5 - radius: 5 - - uid: 45176 + pos: 32.5,21.5 + parent: 2 + - uid: 15672 components: - type: Transform - pos: 8.5,-7.5 - parent: 44970 - - type: PointLight - radius: 5 - - uid: 45177 + rot: 3.141592653589793 rad + pos: 31.5,19.5 + parent: 2 + - uid: 15673 components: - type: Transform - pos: -8.5,-1.5 - parent: 44970 - - type: PointLight - energy: 2 - - uid: 45178 + rot: -1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + - uid: 15674 components: - type: Transform - pos: 11.5,-9.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 4 - - uid: 45179 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + - uid: 15675 components: - type: Transform - pos: 2.5,-6.5 - parent: 44970 - - uid: 45180 + rot: -1.5707963267948966 rad + pos: -25.5,7.5 + parent: 2 + - uid: 15676 components: - type: Transform - pos: -0.5,-5.5 - parent: 44970 - - type: PointLight - energy: 2 - - uid: 45181 + pos: 26.5,-56.5 + parent: 2 + - uid: 15677 components: - type: Transform - pos: 5.5,-1.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 4 - - uid: 45182 + rot: 3.141592653589793 rad + pos: 32.5,-54.5 + parent: 2 + - uid: 15678 components: - type: Transform - pos: 0.5,-12.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 6 - - uid: 45183 + rot: 3.141592653589793 rad + pos: 8.5,24.5 + parent: 2 + - uid: 15679 components: - type: Transform - pos: -6.5,-8.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 5 - - uid: 45184 + rot: 3.141592653589793 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 15680 components: - type: Transform - pos: -7.5,-5.5 - parent: 44970 - - type: PointLight - energy: 1 - radius: 4 - - uid: 45185 + rot: 1.5707963267948966 rad + pos: -5.5,-44.5 + parent: 2 + - uid: 15681 components: - type: Transform - pos: -12.5,3.5 - parent: 44970 - - type: PointLight - energy: 2.5 - radius: 6 - - uid: 45186 + rot: 1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 15682 components: - type: Transform - pos: -9.5,10.5 - parent: 44970 - - type: PointLight - energy: 1 - radius: 5 - - uid: 45187 + rot: 1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + - uid: 15683 components: - type: Transform - pos: -1.5,16.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 7 - - uid: 45188 + pos: -4.5,-42.5 + parent: 2 + - uid: 15684 components: - type: Transform - pos: 0.5,16.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 7 - - uid: 45189 + rot: 1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 15685 components: - type: Transform - pos: 0.5,23.5 - parent: 44970 - - type: PointLight - energy: 2.5 - radius: 5 - - uid: 45190 + rot: 3.141592653589793 rad + pos: -4.5,-48.5 + parent: 2 + - uid: 15686 components: - type: Transform - pos: -4.5,20.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 4 - - uid: 45191 + rot: 1.5707963267948966 rad + pos: -5.5,-45.5 + parent: 2 + - uid: 15687 components: - type: Transform - pos: 3.5,19.5 - parent: 44970 - - uid: 45192 + rot: 3.141592653589793 rad + pos: -3.5,-48.5 + parent: 2 + - uid: 15688 components: - type: Transform - pos: 10.5,16.5 - parent: 44970 - - type: PointLight - energy: 2.5 - radius: 6 - - uid: 45193 + pos: -3.5,-42.5 + parent: 2 + - uid: 15689 components: - type: Transform - pos: 13.5,10.5 - parent: 44970 - - type: PointLight - energy: 2 - - uid: 45194 + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 2 + - uid: 15690 components: - type: Transform - pos: 12.5,4.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 4 - - uid: 45195 + rot: -1.5707963267948966 rad + pos: 3.5,-50.5 + parent: 2 + - uid: 15691 components: - type: Transform - pos: 8.5,-13.5 - parent: 44970 - - type: PointLight - energy: 2.5 - radius: 5 - - uid: 45196 + pos: 6.5,-48.5 + parent: 2 + - uid: 15692 components: - type: Transform - pos: 13.5,-2.5 - parent: 44970 - - type: PointLight - energy: 2 - radius: 4 -- proto: CurtainsBlack - entities: - - uid: 15832 + pos: -29.5,8.5 + parent: 2 + - uid: 15693 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,12.5 + pos: 1.5,-20.5 parent: 2 - - uid: 15833 + - uid: 15694 components: - type: Transform - pos: 37.5,-5.5 + rot: 1.5707963267948966 rad + pos: -0.5,-20.5 parent: 2 - - uid: 15834 + - uid: 15695 components: - type: Transform - pos: 32.5,-4.5 + pos: -14.5,58.5 parent: 2 - - uid: 15835 + - uid: 15696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-24.5 + rot: 1.5707963267948966 rad + pos: 2.5,61.5 parent: 2 - - uid: 15836 + - uid: 15697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-24.5 + rot: 1.5707963267948966 rad + pos: 2.5,60.5 parent: 2 - - uid: 15837 + - uid: 15698 components: - type: Transform rot: -1.5707963267948966 rad - pos: 91.5,-24.5 + pos: 3.5,44.5 parent: 2 - - uid: 15838 + - uid: 15699 components: - type: Transform - pos: 40.5,-30.5 + rot: 3.141592653589793 rad + pos: -24.5,25.5 parent: 2 - - uid: 15839 + - uid: 15700 components: - type: Transform - pos: 41.5,-30.5 + rot: 3.141592653589793 rad + pos: -44.5,-17.5 parent: 2 - - uid: 45197 - components: - - type: Transform - pos: 1.5,7.5 - parent: 44970 -- proto: CurtainsBlackOpen - entities: - - uid: 15840 + - uid: 15701 components: - type: Transform - pos: 55.5,13.5 + pos: 7.5,21.5 parent: 2 - - uid: 15841 + - uid: 15702 components: - type: Transform - pos: 48.5,22.5 + rot: 1.5707963267948966 rad + pos: 6.5,20.5 parent: 2 - - uid: 15842 + - uid: 15703 components: - type: Transform - pos: 29.5,6.5 + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 parent: 2 - - uid: 15843 + - uid: 15704 components: - type: Transform - pos: 32.5,-3.5 + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 parent: 2 - - uid: 15844 + - uid: 15705 components: - type: Transform - pos: -23.5,22.5 + rot: -1.5707963267948966 rad + pos: 13.5,-4.5 parent: 2 - - uid: 41379 - components: - - type: Transform - pos: 75.5,77.5 - parent: 40203 - - uid: 41380 + - uid: 15706 components: - type: Transform - pos: 80.5,32.5 - parent: 40203 - - uid: 45198 + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 15707 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 44970 - - uid: 45199 + pos: 75.5,-39.5 + parent: 2 + - uid: 15708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 44970 - - uid: 45200 + rot: 3.141592653589793 rad + pos: -48.5,64.5 + parent: 2 + - uid: 15709 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,7.5 - parent: 44970 - - uid: 45201 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 44970 - - uid: 45202 + pos: -97.5,1.5 + parent: 2 + - uid: 15710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 44970 -- proto: CurtainsBlue - entities: - - uid: 15845 + rot: 1.5707963267948966 rad + pos: -99.5,1.5 + parent: 2 + - uid: 15711 components: - type: Transform - pos: 36.5,-11.5 + pos: 92.5,-14.5 parent: 2 - - uid: 15846 + - uid: 15712 components: - type: Transform - pos: 36.5,-10.5 + pos: 93.5,-14.5 parent: 2 -- proto: CurtainsBlueOpen - entities: - - uid: 15847 + - uid: 15713 components: - type: Transform - pos: -13.5,-12.5 + pos: 94.5,-14.5 parent: 2 - - uid: 15848 + - uid: 15714 components: - type: Transform - pos: 39.5,54.5 + rot: 3.141592653589793 rad + pos: 92.5,-17.5 parent: 2 - - uid: 15849 + - uid: 15715 components: - type: Transform - pos: 18.5,-8.5 + rot: 3.141592653589793 rad + pos: 93.5,-17.5 parent: 2 -- proto: CurtainsCyanOpen - entities: - - uid: 15850 + - uid: 15716 components: - type: Transform - pos: -15.5,62.5 + rot: 3.141592653589793 rad + pos: 94.5,-17.5 parent: 2 -- proto: CurtainsGreenOpen - entities: - - uid: 15851 + - uid: 15717 components: - type: Transform - pos: 4.5,54.5 + rot: 1.5707963267948966 rad + pos: -39.5,26.5 parent: 2 -- proto: CurtainsOrange - entities: - - uid: 15852 + - uid: 15718 components: - type: Transform - pos: 82.5,-33.5 + rot: -1.5707963267948966 rad + pos: -37.5,26.5 parent: 2 -- proto: CurtainsOrangeOpen - entities: - - uid: 15853 + - uid: 15719 components: - type: Transform - pos: 78.5,-41.5 + rot: 1.5707963267948966 rad + pos: -36.5,26.5 parent: 2 - - uid: 15854 + - uid: 15720 components: - type: Transform - pos: 8.5,-46.5 + rot: -1.5707963267948966 rad + pos: -34.5,26.5 parent: 2 - - uid: 15855 + - uid: 15721 components: - type: Transform - pos: -46.5,17.5 + rot: 1.5707963267948966 rad + pos: -33.5,29.5 parent: 2 - - uid: 15856 + - uid: 15722 components: - type: Transform - pos: -50.5,17.5 + rot: -1.5707963267948966 rad + pos: -29.5,29.5 parent: 2 - - uid: 15857 + - uid: 15723 components: - type: Transform - pos: -42.5,17.5 + pos: -31.5,30.5 parent: 2 - - uid: 15858 + - uid: 15724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,18.5 + rot: 3.141592653589793 rad + pos: -31.5,28.5 parent: 2 - - uid: 15859 + - uid: 15725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -117.5,21.5 + pos: 45.5,19.5 parent: 2 - - uid: 15860 + - uid: 41738 components: - type: Transform - pos: -117.5,25.5 - parent: 2 - - uid: 15861 + rot: -1.5707963267948966 rad + pos: 74.5,79.5 + parent: 40599 + - uid: 41739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,17.5 - parent: 2 - - uid: 15862 + rot: -1.5707963267948966 rad + pos: 74.5,73.5 + parent: 40599 + - uid: 41740 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,23.5 - parent: 2 - - uid: 15863 + pos: 80.5,36.5 + parent: 40599 +- proto: CommsComputerCircuitboard + entities: + - uid: 15726 components: - type: Transform - pos: -117.5,19.5 + pos: 15.634924,12.549124 parent: 2 -- proto: CurtainsPink +- proto: ComputerAlert entities: - - uid: 15864 + - uid: 15727 components: - type: Transform - pos: -77.5,12.5 + pos: 2.5,-53.5 parent: 2 - - uid: 15865 + - uid: 15728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,14.5 + rot: 3.141592653589793 rad + pos: 4.5,-51.5 parent: 2 - - uid: 15866 +- proto: ComputerAnalysisConsole + entities: + - uid: 15729 components: - type: Transform - pos: -77.5,13.5 + rot: 3.141592653589793 rad + pos: 52.5,-55.5 parent: 2 - - uid: 15867 + - uid: 15730 components: - type: Transform - pos: -77.5,14.5 + rot: 3.141592653589793 rad + pos: 45.5,-55.5 parent: 2 -- proto: CurtainsPinkOpen + - uid: 41741 + components: + - type: Transform + pos: 54.5,72.5 + parent: 40599 +- proto: computerBodyScanner entities: - - uid: 15868 + - uid: 15731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,11.5 + pos: 21.5,22.5 parent: 2 -- proto: CurtainsPurple - entities: - - uid: 15869 + - uid: 15732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-1.5 + rot: 1.5707963267948966 rad + pos: 16.5,-32.5 parent: 2 - - uid: 15870 + - uid: 15733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,3.5 + rot: 1.5707963267948966 rad + pos: -26.5,43.5 parent: 2 - - uid: 15871 + - uid: 15734 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-31.5 + pos: 2.5,51.5 parent: 2 - - uid: 45203 +- proto: ComputerBroken + entities: + - uid: 15735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,10.5 - parent: 44970 - - uid: 45204 + rot: -1.5707963267948966 rad + pos: 45.5,-41.5 + parent: 2 + - uid: 15736 components: - type: Transform - pos: 6.5,9.5 - parent: 44970 -- proto: CurtainsPurpleOpen - entities: - - uid: 15872 + pos: 37.5,-38.5 + parent: 2 + - uid: 15737 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-0.5 + pos: 20.5,53.5 parent: 2 - - uid: 15873 + - uid: 15738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,0.5 + pos: 20.5,54.5 parent: 2 - - uid: 15874 + - uid: 15739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,1.5 + pos: -38.5,-41.5 parent: 2 - - uid: 15875 + - uid: 15740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,2.5 + pos: -57.5,67.5 parent: 2 - - uid: 15876 + - uid: 15741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-57.5 + pos: 99.5,-38.5 parent: 2 - - uid: 15877 + - uid: 15742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-31.5 + pos: 98.5,-39.5 parent: 2 - - uid: 45205 + - uid: 41742 + components: + - type: Transform + pos: 55.5,72.5 + parent: 40599 + - uid: 41743 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,10.5 - parent: 44970 - - uid: 45206 + pos: 51.5,51.5 + parent: 40599 + - uid: 46677 components: - type: Transform - pos: 7.5,9.5 - parent: 44970 -- proto: CurtainsRed + pos: 2.5,7.5 + parent: 46584 + - uid: 47282 + components: + - type: Transform + pos: 0.5,1.5 + parent: 47245 +- proto: ComputerCargoBounty entities: - - uid: 15878 + - uid: 15743 components: - type: Transform - pos: 40.5,8.5 + rot: 3.141592653589793 rad + pos: 76.5,-41.5 parent: 2 -- proto: CurtainsRedOpen - entities: - - uid: 15879 + - uid: 15744 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,7.5 + pos: 65.5,-40.5 parent: 2 - - uid: 15880 +- proto: ComputerCargoOrders + entities: + - uid: 15745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,8.5 + pos: 21.5,36.5 parent: 2 - - uid: 15881 + - uid: 15746 components: - type: Transform - pos: 41.5,8.5 + rot: -1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - - uid: 15882 + - uid: 15747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,-41.5 + parent: 2 + - uid: 15748 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,7.5 + pos: 75.5,-41.5 parent: 2 - - uid: 15883 + - uid: 15749 components: - type: Transform - pos: -41.5,-19.5 + rot: 1.5707963267948966 rad + pos: 61.5,-33.5 parent: 2 -- proto: CurtainsWhite +- proto: ComputerComms entities: - - uid: 15884 + - uid: 15750 components: - type: Transform - pos: 67.5,5.5 + pos: 2.5,5.5 parent: 2 - - uid: 15885 + - uid: 15751 components: - type: Transform - pos: 1.5,63.5 + rot: -1.5707963267948966 rad + pos: 12.5,-9.5 parent: 2 - - uid: 15886 +- proto: ComputerCrewMonitoring + entities: + - uid: 15752 components: - type: Transform - pos: 3.5,63.5 + rot: 3.141592653589793 rad + pos: 1.5,36.5 parent: 2 -- proto: CurtainsWhiteOpen - entities: - - uid: 15887 + - uid: 15753 components: - type: Transform - pos: 2.5,63.5 + pos: 4.5,4.5 parent: 2 - - uid: 15888 + - uid: 15754 components: - type: Transform - pos: 47.5,27.5 + pos: -29.5,2.5 parent: 2 - - uid: 15889 + - uid: 15755 components: - type: Transform - pos: 24.5,43.5 + rot: 1.5707963267948966 rad + pos: -56.5,16.5 parent: 2 - - uid: 15890 + - uid: 15756 components: - type: Transform - pos: 20.5,43.5 + rot: 1.5707963267948966 rad + pos: -10.5,52.5 parent: 2 - - uid: 15891 + - uid: 15757 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-2.5 + pos: -9.5,56.5 parent: 2 - - uid: 15892 + - uid: 15758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 + pos: -95.5,5.5 parent: 2 - - uid: 15893 +- proto: ComputerCriminalRecords + entities: + - uid: 15759 + components: + - type: Transform + pos: -0.5,4.5 + parent: 2 + - uid: 15760 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,39.5 + pos: -22.5,4.5 parent: 2 - - uid: 15894 + - uid: 15761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,39.5 + rot: 1.5707963267948966 rad + pos: 67.5,-26.5 parent: 2 - - uid: 15895 + - uid: 15762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,39.5 + pos: -42.5,4.5 parent: 2 - - uid: 15896 + - uid: 15763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-49.5 + rot: -1.5707963267948966 rad + pos: -32.5,5.5 parent: 2 - - uid: 41381 + - uid: 15764 components: - type: Transform - pos: 68.5,79.5 - parent: 40203 - - uid: 41382 + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + - uid: 15765 components: - type: Transform - pos: 59.5,79.5 - parent: 40203 - - uid: 41383 + pos: -105.5,-4.5 + parent: 2 + - uid: 15766 components: - type: Transform - pos: 65.5,79.5 - parent: 40203 - - uid: 41384 + pos: -97.5,5.5 + parent: 2 + - uid: 15767 components: - type: Transform - pos: 62.5,79.5 - parent: 40203 -- proto: DartBlue - entities: - - uid: 15897 + pos: 99.5,-8.5 + parent: 2 + - uid: 15768 components: - type: Transform - pos: -30.540325,26.018877 + rot: 3.141592653589793 rad + pos: -37.5,-16.5 parent: 2 -- proto: DartPurple +- proto: ComputerFrame entities: - - uid: 15898 + - uid: 15769 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.338303,25.057678 + pos: 33.5,-41.5 parent: 2 -- proto: DartYellow + - uid: 15770 + components: + - type: Transform + pos: -27.5,52.5 + parent: 2 +- proto: ComputerId entities: - - uid: 15899 + - uid: 15771 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.696575,25.643877 + pos: 8.5,-8.5 parent: 2 -- proto: DawInstrument - entities: - - uid: 15900 + - uid: 15772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-6.5 + pos: 1.5,5.5 parent: 2 -- proto: DefaultStationBeaconAI - entities: - - uid: 15901 + - uid: 15773 components: - type: Transform - pos: 2.5,12.5 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 parent: 2 - - type: NavMapBeacon - text: ИИ - - type: WarpPoint - location: ИИ -- proto: DefaultStationBeaconAnomalyGenerator +- proto: ComputerMassMedia entities: - - uid: 15902 + - uid: 15774 components: - type: Transform - pos: 15.5,-40.5 + rot: 1.5707963267948966 rad + pos: 9.5,18.5 parent: 2 - - type: NavMapBeacon - text: Аномалистика - - type: WarpPoint - location: РНД - Аномалистика -- proto: DefaultStationBeaconArmory +- proto: ComputerMedicalRecords entities: - - uid: 15903 + - uid: 15775 components: - type: Transform - pos: -43.5,-7.5 + rot: 3.141592653589793 rad + pos: 2.5,36.5 parent: 2 - - type: NavMapBeacon - text: Оружейная - - type: WarpPoint - location: СБ - Оружейная -- proto: DefaultStationBeaconArrivals - entities: - - uid: 15904 + - uid: 15776 components: - type: Transform - pos: 80.5,-22.5 + rot: 1.5707963267948966 rad + pos: -56.5,15.5 parent: 2 - - type: NavMapBeacon - text: Прибытие - - type: WarpPoint - location: Прибытие -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 15905 + - uid: 15777 components: - type: Transform - pos: 48.5,-54.5 + rot: 3.141592653589793 rad + pos: -8.5,56.5 parent: 2 - - type: NavMapBeacon - text: Ксеноархеология - - type: WarpPoint - location: РНД - Ксеноархеология -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 15906 + - uid: 15778 components: - type: Transform - pos: -5.5,-59.5 + pos: 5.5,4.5 parent: 2 - - type: NavMapBeacon - text: Атмосферная - - type: WarpPoint - location: Инж - Атмосферная -- proto: DefaultStationBeaconBar +- proto: ComputerPowerMonitoring entities: - - uid: 15907 + - uid: 15779 components: - type: Transform - pos: 41.5,20.5 + pos: -14.5,-36.5 parent: 2 - - type: NavMapBeacon - text: Бар - - type: WarpPoint - location: Сервис - Бар -- proto: DefaultStationBeaconBotany - entities: - - uid: 15908 + - uid: 15780 components: - type: Transform - pos: 12.5,34.5 + rot: 3.141592653589793 rad + pos: 3.5,-51.5 parent: 2 - - type: NavMapBeacon - text: Гидропоника - - type: WarpPoint - location: Сервис - Гидропоника -- proto: DefaultStationBeaconBridge + - uid: 41744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,51.5 + parent: 40599 + - uid: 46678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 46584 +- proto: ComputerRadar entities: - - uid: 15909 + - uid: 15781 components: - type: Transform - pos: 2.5,3.5 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 parent: 2 - - type: NavMapBeacon - text: Мостик - - type: WarpPoint - location: КМД - Мостик -- proto: DefaultStationBeaconBrig +- proto: ComputerResearchAndDevelopment entities: - - uid: 15910 + - uid: 15782 components: - type: Transform - pos: -37.5,0.5 + pos: 51.5,-52.5 parent: 2 - - type: NavMapBeacon - text: Бриг - - type: WarpPoint - location: СБ - Бриг - - uid: 15911 + - uid: 15783 components: - type: Transform - pos: 97.5,-10.5 + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 parent: 2 - - type: NavMapBeacon - text: КПП Отбытие - - type: WarpPoint - location: СБ - КПП Отбытие - - uid: 15912 + - uid: 15784 components: - type: Transform - pos: -23.5,-9.5 + rot: 1.5707963267948966 rad + pos: 35.5,-52.5 parent: 2 - - type: NavMapBeacon - text: Стрельбище - - type: WarpPoint - location: СБ - Стрельбище - - uid: 15913 + - uid: 15785 components: - type: Transform - pos: -43.5,11.5 + rot: 3.141592653589793 rad + pos: 26.5,-57.5 parent: 2 - - type: NavMapBeacon - text: Камеры - - type: WarpPoint - location: СБ - Камеры - - uid: 15914 + - uid: 15786 components: - type: Transform - pos: -30.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 parent: 2 - - type: NavMapBeacon - text: Вход в пермабриг - - type: WarpPoint - location: СБ - Вход в пермабриг - - uid: 15915 + - uid: 15787 components: - type: Transform - pos: -54.5,11.5 + rot: 1.5707963267948966 rad + pos: 30.5,-45.5 parent: 2 - - type: NavMapBeacon - text: Мед брига - - type: WarpPoint - location: СБ - Мед брига -- proto: DefaultStationBeaconCaptainsQuarters +- proto: ComputerRoboticsControl entities: - - uid: 15916 + - uid: 15788 components: - type: Transform - pos: 17.5,-8.5 + rot: 1.5707963267948966 rad + pos: -1.5,0.5 parent: 2 - - type: NavMapBeacon - text: Каюта Капитана - - type: WarpPoint - location: КМД - Каюта Капитана -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 15917 + - uid: 15789 components: - type: Transform - pos: 66.5,-31.5 + rot: -1.5707963267948966 rad + pos: 33.5,-54.5 parent: 2 - - type: NavMapBeacon - text: Стойка снабжения - - type: WarpPoint - location: Снаб - Стойка -- proto: DefaultStationBeaconCERoom - entities: - - uid: 15918 + - uid: 15790 components: - type: Transform - pos: 2.5,-48.5 + rot: 3.141592653589793 rad + pos: 17.5,-35.5 parent: 2 - - type: NavMapBeacon - text: Офис СИ - - type: WarpPoint - location: Инж - Офис СИ -- proto: DefaultStationBeaconChapel +- proto: ComputerSolarControl entities: - - uid: 15919 + - uid: 15791 components: - type: Transform - pos: 26.5,10.5 + pos: -58.5,67.5 parent: 2 - - type: NavMapBeacon - color: '#9FED58FF' - text: Церковь - - type: WarpPoint - location: Сервис - Церковь -- proto: DefaultStationBeaconChemistry - entities: - - uid: 15920 + - uid: 15792 components: - type: Transform - pos: -7.5,40.5 + rot: 3.141592653589793 rad + pos: -33.5,-47.5 parent: 2 - - type: NavMapBeacon - text: Химическая лаборатория - - type: WarpPoint - location: Мед - Химическая лаборатория -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 15921 + - uid: 46679 components: - type: Transform - pos: -14.5,61.5 - parent: 2 - - type: NavMapBeacon - text: Офис ГВ - - type: WarpPoint - location: Мед - Офис ГВ -- proto: DefaultStationBeaconCryonics + pos: 9.5,6.5 + parent: 46584 +- proto: ComputerStationRecords entities: - - uid: 15922 + - uid: 15793 components: - type: Transform - pos: -22.5,51.5 + pos: 3.5,5.5 parent: 2 - - type: NavMapBeacon - text: Криогенетика - - type: WarpPoint - location: Мед - Криогенетика -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 15923 + - uid: 15794 components: - type: Transform - pos: 6.5,-33.5 + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 parent: 2 - - type: NavMapBeacon - text: Капсулы криосна - - type: WarpPoint - location: Капсулы криосна -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 15924 + - uid: 15795 components: - type: Transform - pos: -21.5,6.5 + rot: -1.5707963267948966 rad + pos: -5.5,-31.5 parent: 2 - - type: NavMapBeacon - text: Детектив - - type: WarpPoint - location: СБ - Детектив -- proto: DefaultStationBeaconDisposals - entities: - - uid: 15925 + - uid: 15796 components: - type: Transform - pos: 72.5,-31.5 + rot: 3.141592653589793 rad + pos: -31.5,-0.5 parent: 2 - - type: NavMapBeacon - text: Мусоросброс - - type: WarpPoint - location: Мусоросброс -- proto: DefaultStationBeaconDorms - entities: - - uid: 15926 + - uid: 15797 components: - type: Transform - pos: 35.5,-10.5 + rot: 1.5707963267948966 rad + pos: 22.5,-27.5 parent: 2 - - type: NavMapBeacon - text: Дормы 1 - - type: WarpPoint - location: Дормы 1 - - uid: 15927 + - uid: 15798 components: - type: Transform - pos: 34.5,-3.5 + pos: -104.5,-4.5 parent: 2 - - type: NavMapBeacon - text: Дормы 3 - - type: WarpPoint - location: Дормы 3 - - uid: 15928 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 15799 components: - type: Transform - pos: 40.5,11.5 + pos: 0.5,4.5 parent: 2 - - type: NavMapBeacon - text: Дормы 2 - - type: WarpPoint - location: Дормы 2 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 15929 + - uid: 15800 components: - type: Transform - pos: -9.5,-45.5 + rot: -1.5707963267948966 rad + pos: 69.5,-26.5 parent: 2 - - type: NavMapBeacon - text: Инженерный отдел - - type: WarpPoint - location: Инж - Инженерный отдел - - uid: 15930 + - uid: 15801 components: - type: Transform - pos: 4.5,-42.5 + pos: -43.5,4.5 parent: 2 - - type: NavMapBeacon - text: Инженерный гардероб - - type: WarpPoint - location: Инж - Инженерный гардероб - - uid: 15931 + - uid: 15802 components: - type: Transform - pos: -28.5,-41.5 + rot: 1.5707963267948966 rad + pos: -44.5,3.5 parent: 2 - - type: NavMapBeacon - text: Двигатель Антиматерии - - type: WarpPoint - location: Инж - Двигатель Антиматерии -- proto: DefaultStationBeaconEvac - entities: - - uid: 15932 + - uid: 15803 components: - type: Transform - pos: 103.5,-28.5 + rot: -1.5707963267948966 rad + pos: -27.5,0.5 parent: 2 - - type: NavMapBeacon - text: Отбытие - - type: WarpPoint - location: Отбытие -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 15933 + - uid: 15804 components: - type: Transform - pos: -11.5,10.5 + pos: -30.5,2.5 parent: 2 - - type: NavMapBeacon - text: EVA - - type: WarpPoint - location: EVA -- proto: DefaultStationBeaconGravGen - entities: - - uid: 15934 + - uid: 15805 components: - type: Transform - pos: -21.5,-36.5 + pos: -28.5,2.5 parent: 2 - - type: NavMapBeacon - text: Генераторная - - type: WarpPoint - location: Инж - Генераторная -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 15935 + - uid: 15806 components: - type: Transform - pos: -8.5,-10.5 + rot: -1.5707963267948966 rad + pos: -7.5,50.5 parent: 2 - - type: NavMapBeacon - text: Офис ГП - - type: WarpPoint - location: КМД - Офис ГП -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 15936 + - uid: 15807 components: - type: Transform - pos: -42.5,3.5 + pos: -2.5,-31.5 parent: 2 - - type: NavMapBeacon - text: Офис ГСБ - - type: WarpPoint - location: СБ - Офис ГСБ - - uid: 15937 + - uid: 15808 components: - type: Transform - pos: -32.5,6.5 + rot: 1.5707963267948966 rad + pos: 22.5,-28.5 parent: 2 - - type: NavMapBeacon - text: Допросная - - type: WarpPoint - location: СБ - Допросная -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 15938 + - uid: 15809 components: - type: Transform - pos: 3.5,33.5 + rot: 3.141592653589793 rad + pos: -36.5,-16.5 parent: 2 - - type: NavMapBeacon - text: Каморка Уборщика - - type: WarpPoint - location: Сервис - Каморка уборщика -- proto: DefaultStationBeaconKitchen - entities: - - uid: 15939 + - uid: 15810 components: - type: Transform - pos: 29.5,31.5 + rot: -1.5707963267948966 rad + pos: -107.5,21.5 parent: 2 - - type: NavMapBeacon - text: Кухня - - type: WarpPoint - location: Сервис - Кухня -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 15940 + - uid: 15811 components: - type: Transform - pos: -19.5,24.5 + rot: -1.5707963267948966 rad + pos: -107.5,20.5 parent: 2 - - type: NavMapBeacon - text: Офис АВД - - type: WarpPoint - location: КМД - Офис АВД -- proto: DefaultStationBeaconLibrary - entities: - - uid: 15941 + - uid: 15812 components: - type: Transform - pos: -2.5,21.5 + pos: -96.5,5.5 parent: 2 - - type: NavMapBeacon - color: '#9FED58FF' - text: Библиотека - - type: WarpPoint - location: Сервис - Библиотека -- proto: DefaultStationBeaconMedbay +- proto: ComputerSurveillanceWirelessCameraMonitor entities: - - uid: 15942 + - uid: 15813 components: - type: Transform - pos: -1.5,49.5 + rot: 1.5707963267948966 rad + pos: 9.5,17.5 parent: 2 - - type: NavMapBeacon - text: Холл меда - - type: WarpPoint - location: Мед - Холл мед.отдела -- proto: DefaultStationBeaconMedical +- proto: ComputerTelevision entities: - - uid: 15943 - components: - - type: Transform - pos: -22.5,56.5 - parent: 2 - - type: NavMapBeacon - text: Хранилище медикаментов - - type: WarpPoint - location: Мед - Хранилище медикаментов - - uid: 15944 - components: - - type: Transform - pos: -15.5,48.5 - parent: 2 - - type: NavMapBeacon - text: Палаты - - type: WarpPoint - location: Мед - Палаты - - uid: 15945 - components: - - type: Transform - pos: -28.5,50.5 - parent: 2 - - type: NavMapBeacon - text: Клонерка - - type: WarpPoint - location: Мед - Клонерка - - uid: 15946 - components: - - type: Transform - pos: 2.5,57.5 - parent: 2 - - type: NavMapBeacon - text: Вирусология - - type: WarpPoint - location: Мед - Вирусология - - uid: 15947 - components: - - type: Transform - pos: 3.5,53.5 - parent: 2 - - type: NavMapBeacon - text: Комната Парамедика - - type: WarpPoint - location: Мед - Комната Парамедика - - uid: 15948 - components: - - type: Transform - pos: 3.5,62.5 - parent: 2 - - type: NavMapBeacon - text: Кабинет Психолога - - type: WarpPoint - location: Мед - Кабинет Психолога - - uid: 15949 + - uid: 15814 components: - type: Transform - pos: -6.5,69.5 + pos: 16.5,-7.5 parent: 2 - - type: NavMapBeacon - text: Психдиспансер - - type: WarpPoint - location: Мед - Психдиспансер -- proto: DefaultStationBeaconMorgue - entities: - - uid: 15950 + - uid: 15815 components: - type: Transform - pos: -15.5,43.5 + pos: 2.5,45.5 parent: 2 - - type: NavMapBeacon - text: Морг - - type: WarpPoint - location: Мед - Морг -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 15951 + - uid: 15816 components: - type: Transform - pos: -107.5,6.5 + rot: -1.5707963267948966 rad + pos: 13.5,20.5 parent: 2 - - type: NavMapBeacon - text: Пермабриг - - type: WarpPoint - location: СБ - Пермабриг -- proto: DefaultStationBeaconPowerBank +- proto: ContainmentField entities: - - uid: 15952 + - uid: 41745 components: - type: Transform - pos: -14.5,-42.5 - parent: 2 - - type: NavMapBeacon - text: СМЭСы - - type: WarpPoint - location: Инж - СМЭСы -- proto: DefaultStationBeaconQMRoom - entities: - - uid: 15953 + pos: 50.5,40.5 + parent: 40599 + - uid: 41746 components: - type: Transform - pos: 73.5,-38.5 - parent: 2 - - type: NavMapBeacon - text: Офис КМ - - type: WarpPoint - location: Снаб - Офис КМ -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 15954 + rot: 1.5707963267948966 rad + pos: 53.5,42.5 + parent: 40599 + - uid: 41747 components: - type: Transform - pos: 29.5,-52.5 - parent: 2 - - type: NavMapBeacon - text: Офис НР - - type: WarpPoint - location: РНД - Офис НР -- proto: DefaultStationBeaconRND - entities: - - uid: 15955 + rot: 3.141592653589793 rad + pos: 54.5,41.5 + parent: 40599 + - uid: 41748 components: - type: Transform - pos: 27.5,-38.5 - parent: 2 - - type: NavMapBeacon - text: Стойка НИО - - type: WarpPoint - location: РНД - Стойка -- proto: DefaultStationBeaconRobotics - entities: - - uid: 15956 + rot: 1.5707963267948966 rad + pos: 52.5,42.5 + parent: 40599 + - uid: 41749 components: - type: Transform - pos: 22.5,-33.5 - parent: 2 - - type: NavMapBeacon - text: Роботехника - - type: WarpPoint - location: РНД - Роботехника -- proto: DefaultStationBeaconSalvage - entities: - - uid: 15957 + rot: 3.141592653589793 rad + pos: 54.5,40.5 + parent: 40599 + - uid: 41750 components: - type: Transform - pos: 76.5,-46.5 - parent: 2 - - type: NavMapBeacon - text: Утилизаторская - - type: WarpPoint - location: Снаб - Утилизаторская -- proto: DefaultStationBeaconScience - entities: - - uid: 15958 + rot: -1.5707963267948966 rad + pos: 51.5,38.5 + parent: 40599 + - uid: 41751 components: - type: Transform - pos: 40.5,-47.5 - parent: 2 - - type: NavMapBeacon - text: Зал разработок - - type: WarpPoint - location: РНД - Зал разработок - - uid: 15959 + pos: 50.5,41.5 + parent: 40599 + - uid: 41752 components: - type: Transform - pos: 40.5,-40.5 - parent: 2 - - type: NavMapBeacon - text: Ксенобиология - - type: WarpPoint - location: РНД - Ксенобиология - - uid: 15960 + rot: -1.5707963267948966 rad + pos: 53.5,38.5 + parent: 40599 + - uid: 41753 components: - type: Transform - pos: 27.5,-47.5 - parent: 2 - - type: NavMapBeacon - text: Внутрений двор - - type: WarpPoint - location: РНД - Внутрений двор -- proto: DefaultStationBeaconSecurity - entities: - - uid: 15961 + rot: 1.5707963267948966 rad + pos: 51.5,42.5 + parent: 40599 + - uid: 41754 components: - type: Transform - pos: -26.5,-16.5 - parent: 2 - - type: NavMapBeacon - text: Комната Брифинга - - type: WarpPoint - location: СБ - Комната Брифинга - - uid: 15962 + pos: 50.5,39.5 + parent: 40599 + - uid: 41755 components: - type: Transform - pos: -29.5,-3.5 - parent: 2 - - type: NavMapBeacon - text: Стойка СБ - - type: WarpPoint - location: СБ - Стойка - - uid: 15963 + rot: 3.141592653589793 rad + pos: 54.5,39.5 + parent: 40599 + - uid: 41756 components: - type: Transform - pos: 67.5,-27.5 - parent: 2 - - type: NavMapBeacon - text: КПП Снабжение - - type: WarpPoint - location: СБ - КПП Снабжение -- proto: DefaultStationBeaconSecurityCheckpoint + rot: -1.5707963267948966 rad + pos: 52.5,38.5 + parent: 40599 +- proto: ContainmentFieldGenerator entities: - - uid: 15964 + - uid: 15817 components: - type: Transform - pos: 23.5,-27.5 + pos: -18.5,-49.5 parent: 2 - - type: NavMapBeacon - text: КПП НИО - - type: WarpPoint - location: СБ - КПП НИО - - uid: 15965 + - uid: 15818 components: - type: Transform - pos: -3.5,-32.5 + pos: -18.5,-48.5 parent: 2 - - type: NavMapBeacon - text: КПП ИНЖ - - type: WarpPoint - location: СБ - КПП Инж - - uid: 15966 + - uid: 15819 components: - type: Transform - pos: -8.5,52.5 + pos: -19.5,-49.5 parent: 2 - - type: NavMapBeacon - text: КПП Мед - - type: WarpPoint - location: СБ - КПП Мед -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 15967 + - uid: 15820 components: - type: Transform - pos: 37.5,-53.5 + pos: -48.5,-39.5 parent: 2 - - type: NavMapBeacon - text: Серверная - - type: WarpPoint - location: РНД - Серверная -- proto: DefaultStationBeaconService +- proto: ContrabassInstrument entities: - - uid: 15968 - components: - - type: Transform - pos: 21.5,20.5 - parent: 2 - - type: NavMapBeacon - text: Зоотехник - - type: WarpPoint - location: Сервис - Зоотехник - - uid: 15969 - components: - - type: Transform - pos: 11.5,20.5 - parent: 2 - - type: NavMapBeacon - text: Репортерская - - type: WarpPoint - location: Сервис - Репортерская - - uid: 15970 + - uid: 15821 components: - type: Transform - pos: -8.5,35.5 + pos: 56.5,-7.5 parent: 2 - - type: NavMapBeacon - text: Барбершоп - - type: WarpPoint - location: Сервис - Барбершоп -- proto: DefaultStationBeaconSingularity +- proto: ConveyorBelt entities: - - uid: 15971 + - uid: 15822 components: - type: Transform - pos: -39.5,-41.5 + rot: -1.5707963267948966 rad + pos: 2.5,51.5 parent: 2 - - type: NavMapBeacon - text: Тесла - - type: WarpPoint - location: Инж - Тесла -- proto: DefaultStationBeaconSolars - entities: - - uid: 15972 + - uid: 15823 components: - type: Transform - pos: -34.5,-64.5 + rot: 1.5707963267948966 rad + pos: 22.5,-31.5 parent: 2 - - type: NavMapBeacon - text: Солнечные панели - - type: WarpPoint - location: Инж - Солнечные панели 1 - - uid: 15973 + - uid: 15824 components: - type: Transform - pos: -55.5,63.5 + rot: 1.5707963267948966 rad + pos: 21.5,-31.5 parent: 2 - - type: NavMapBeacon - text: Солнечные панели - - type: WarpPoint - location: Инж - Солнечные панели 2 -- proto: DefaultStationBeaconSupply - entities: - - uid: 15974 + - uid: 15825 components: - type: Transform - pos: 62.5,-43.5 + rot: 1.5707963267948966 rad + pos: 70.5,-34.5 parent: 2 - - type: NavMapBeacon - text: Зал отгрузки - - type: WarpPoint - location: Снаб - Зал отгрузки -- proto: DefaultStationBeaconSurgery - entities: - - uid: 15975 + - uid: 15826 components: - type: Transform - pos: -24.5,46.5 + rot: -1.5707963267948966 rad + pos: 74.5,-33.5 parent: 2 - - type: NavMapBeacon - text: Операционая - - type: WarpPoint - location: Мед - Операционая -- proto: DefaultStationBeaconTechVault - entities: - - uid: 15976 + - uid: 15827 components: - type: Transform - pos: 16.5,7.5 + rot: -1.5707963267948966 rad + pos: 71.5,-33.5 parent: 2 - - type: NavMapBeacon - text: Хранилище плат - - type: WarpPoint - location: Инж - Хранилище плат -- proto: DefaultStationBeaconTEG - entities: - - uid: 15977 + - uid: 15828 components: - type: Transform - pos: -14.5,-50.5 + rot: -1.5707963267948966 rad + pos: 72.5,-33.5 parent: 2 - - type: NavMapBeacon - text: ТЭГ - - type: WarpPoint - location: Инж - ТЭГ -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 15978 + - uid: 15829 components: - type: Transform - pos: -3.5,12.5 + rot: -1.5707963267948966 rad + pos: 73.5,-33.5 parent: 2 - - type: NavMapBeacon - text: Телекоммы - - type: WarpPoint - location: КМД - Телекоммы -- proto: DefaultStationBeaconTheater - entities: - - uid: 15979 + - uid: 15830 components: - type: Transform - pos: 50.5,0.5 + rot: -1.5707963267948966 rad + pos: 1.5,51.5 parent: 2 - - type: NavMapBeacon - color: '#9FED58FF' - text: Театр - - type: WarpPoint - location: Сервис - Театр - - uid: 15980 + - uid: 15831 components: - type: Transform - pos: 57.5,7.5 + pos: -20.5,-6.5 parent: 2 - - type: NavMapBeacon - text: Комнаты Клоунов, Мима, Музыканта - - type: WarpPoint - location: Сервис - Комнаты Клоунов, Мима, Музыканта -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 15981 + - uid: 15832 components: - type: Transform - pos: 25.5,-8.5 + rot: 3.141592653589793 rad + pos: -19.5,-9.5 parent: 2 - - type: NavMapBeacon - text: Склад инструментов - - type: WarpPoint - location: Склад инструментов -- proto: DefaultStationBeaconVault - entities: - - uid: 15982 + - uid: 15833 components: - type: Transform - pos: 2.5,-10.5 + rot: 3.141592653589793 rad + pos: -19.5,-10.5 parent: 2 - - type: NavMapBeacon - text: Хранилище - - type: WarpPoint - location: Хранилище -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 15983 + - uid: 15834 components: - type: Transform - pos: -43.5,-15.5 + pos: -20.5,-7.5 parent: 2 - - type: NavMapBeacon - text: Офис Смотрителя - - type: WarpPoint - location: СБ - Офис Смотрителя -- proto: DefibrillatorCabinetFilled - entities: - - uid: 15984 + - uid: 15835 components: - type: Transform - pos: -17.5,56.5 + rot: 3.141592653589793 rad + pos: -19.5,-8.5 parent: 2 - - uid: 15985 + - uid: 15836 components: - type: Transform - pos: -52.5,14.5 + rot: 3.141592653589793 rad + pos: 75.5,-34.5 parent: 2 - - uid: 15986 + - uid: 15837 components: - type: Transform - pos: 1.5,41.5 + rot: 1.5707963267948966 rad + pos: 72.5,-34.5 parent: 2 - - uid: 15987 + - uid: 15838 components: - type: Transform - pos: -6.5,60.5 + rot: 1.5707963267948966 rad + pos: 71.5,-34.5 parent: 2 - - uid: 15988 + - uid: 15839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-1.5 + pos: 70.5,-33.5 parent: 2 - - uid: 15989 + - uid: 15840 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,0.5 + pos: 75.5,-32.5 parent: 2 - - uid: 15990 + - uid: 15841 components: - type: Transform - pos: -15.5,45.5 + rot: 1.5707963267948966 rad + pos: 74.5,-34.5 parent: 2 -- proto: DeployableBarrier - entities: - - uid: 15991 + - uid: 15842 components: - type: Transform - pos: -48.5,-7.5 + rot: 1.5707963267948966 rad + pos: 76.5,-31.5 parent: 2 - - uid: 15992 + - uid: 15843 components: - type: Transform - pos: -47.5,-6.5 + rot: 1.5707963267948966 rad + pos: 75.5,-31.5 parent: 2 - - uid: 15993 + - uid: 15844 components: - type: Transform - pos: -47.5,-7.5 + rot: 3.141592653589793 rad + pos: 75.5,-33.5 parent: 2 - - uid: 15994 + - uid: 15845 components: - type: Transform - pos: -48.5,-6.5 + rot: 1.5707963267948966 rad + pos: 73.5,-34.5 parent: 2 - - uid: 15995 + - uid: 15846 components: - type: Transform - pos: -99.5,9.5 + pos: -20.5,-10.5 parent: 2 - - uid: 15996 + - uid: 15847 components: - type: Transform - pos: -99.5,10.5 + pos: -20.5,-9.5 parent: 2 - - uid: 15997 + - uid: 15848 components: - type: Transform - pos: 93.5,-8.5 + pos: -20.5,-8.5 parent: 2 - - uid: 15998 + - uid: 15849 components: - type: Transform - pos: 94.5,-12.5 + rot: 3.141592653589793 rad + pos: -19.5,-7.5 parent: 2 - - uid: 15999 + - uid: 15850 components: - type: Transform - pos: 94.5,-8.5 + rot: 3.141592653589793 rad + pos: -19.5,-11.5 parent: 2 - - uid: 16000 + - uid: 15851 components: - type: Transform - pos: 93.5,-9.5 + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 parent: 2 - - uid: 16001 + - uid: 15852 components: - type: Transform - pos: 94.5,-9.5 + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 parent: 2 - - uid: 16002 + - uid: 15853 components: - type: Transform - pos: 92.5,-11.5 + rot: 1.5707963267948966 rad + pos: 77.5,-31.5 parent: 2 - - uid: 16003 + - uid: 46680 components: - type: Transform - pos: 93.5,-12.5 - parent: 2 - - uid: 16004 + pos: -2.5,7.5 + parent: 46584 + - uid: 46681 components: - type: Transform - pos: 92.5,-8.5 - parent: 2 - - uid: 16005 + pos: -2.5,8.5 + parent: 46584 + - uid: 46682 components: - type: Transform - pos: 92.5,-9.5 - parent: 2 - - uid: 16006 + pos: -2.5,6.5 + parent: 46584 + - uid: 46683 components: - type: Transform - pos: 94.5,-11.5 - parent: 2 - - uid: 16007 + pos: -2.5,5.5 + parent: 46584 + - uid: 46684 components: - type: Transform - pos: 93.5,-11.5 - parent: 2 -- proto: DeskBell + pos: -2.5,4.5 + parent: 46584 +- proto: CorporateCircuitBoard entities: - - uid: 16008 - components: - - type: Transform - pos: -29.411972,-1.4043849 - parent: 2 - missingComponents: - - Item - - uid: 16009 - components: - - type: Transform - pos: 40.52068,18.601406 - parent: 2 - missingComponents: - - Item - - Pullable - - uid: 16010 + - uid: 15854 components: - type: Transform - pos: -4.5134487,-13.368498 + pos: 0.40625,11.618078 parent: 2 - missingComponents: - - Item - - uid: 16011 +- proto: Cowbar + entities: + - uid: 15855 components: + - type: MetaData + desc: Ko4erga, но специально для каминов. + name: кочерга - type: Transform - pos: 32.505127,30.646816 + pos: -76.88832,18.175571 parent: 2 - missingComponents: - - Item - - Pullable - - uid: 16012 +- proto: CrateArtifactContainer + entities: + - uid: 15856 components: - type: Transform - pos: -7.4922056,-38.27432 + pos: 55.5,-33.5 parent: 2 - missingComponents: - - Item - - Pullable - - uid: 16013 +- proto: CrateCandles + entities: + - uid: 47030 components: - type: Transform - pos: 31.5,-36.5 - parent: 2 - - uid: 16014 + pos: 4.5,-9.5 + parent: 46943 +- proto: CrateContrabandStorageSecure + entities: + - uid: 15857 components: - type: Transform - pos: 64.51337,-31.429142 + pos: -19.5,12.5 parent: 2 - missingComponents: - - Item - - Pullable - - uid: 16015 + - type: AccessReader + access: + - - Armory + - - Detective + - uid: 15858 components: - type: Transform - pos: 0.4512856,37.57752 + pos: -36.5,-18.5 parent: 2 - missingComponents: - - Item - - uid: 45207 - components: - - type: Transform - pos: 4.379524,2.5255036 - parent: 44970 -- proto: DiceBag +- proto: CrateElectrical entities: - - uid: 16016 - components: - - type: Transform - pos: 2.2767036,20.191603 - parent: 2 - - uid: 16017 + - uid: 15859 components: - type: Transform - pos: -35.476795,26.669062 + pos: -36.5,-60.5 parent: 2 -- proto: DiseaseDiagnoser +- proto: CrateEmergencyInternals entities: - - uid: 16018 + - uid: 15860 components: - type: Transform - pos: 27.5,56.5 + pos: -56.5,55.5 parent: 2 -- proto: DiseaseSwab +- proto: CrateEmptySpawner entities: - - uid: 16019 + - uid: 15861 components: - type: Transform - pos: 14.548613,60.55369 + pos: 59.5,-39.5 parent: 2 - - uid: 16020 + - uid: 15862 components: - type: Transform - pos: 8.486113,60.55369 + pos: 56.5,-41.5 parent: 2 - - uid: 16021 + - uid: 15863 components: - type: Transform - pos: 16.439238,54.52366 + pos: 63.5,31.5 parent: 2 - - uid: 16022 + - uid: 15864 components: - type: Transform - pos: 16.595488,54.383034 + pos: -76.5,44.5 parent: 2 - - uid: 16023 + - uid: 15865 components: - type: Transform - pos: 16.173613,54.61741 + pos: -108.5,51.5 parent: 2 -- proto: DisgustingSweptSoup +- proto: CrateEngineeringAMEControl entities: - - uid: 16024 + - uid: 15866 components: - type: Transform - pos: -63.509865,53.753925 + pos: -28.5,-38.5 parent: 2 -- proto: DisposalBend +- proto: CrateEngineeringAMEJar entities: - - uid: 16025 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,17.5 - parent: 2 - - uid: 16026 - components: - - type: Transform - pos: 68.5,17.5 - parent: 2 - - uid: 16027 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,14.5 - parent: 2 - - uid: 16028 + - uid: 15867 components: - type: Transform - pos: 69.5,14.5 + pos: -21.5,-34.5 parent: 2 - - uid: 16029 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 15868 components: - type: Transform - pos: 56.5,9.5 + pos: -32.5,-47.5 parent: 2 - - uid: 16030 + - uid: 15869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,10.5 + pos: -26.5,-51.5 parent: 2 - - uid: 16031 +- proto: CrateEngineeringCableBulk + entities: + - uid: 15870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,6.5 + pos: -22.5,60.5 parent: 2 - - uid: 16032 + - uid: 15871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,9.5 + pos: 55.5,-29.5 parent: 2 - - uid: 16033 +- proto: CrateEngineeringCableLV + entities: + - uid: 15872 components: - type: Transform - pos: 70.5,10.5 + pos: 21.5,-35.5 parent: 2 - - uid: 16034 +- proto: CrateEngineeringGear + entities: + - uid: 15178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-2.5 + pos: -3.5,-35.5 parent: 2 - - uid: 16035 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15185 + - 15184 + - 15186 + - 15183 + - 15182 + - 15181 + - 15180 + - 15179 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringParticleAccelerator + entities: + - uid: 15873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,0.5 + pos: -32.5,-43.5 parent: 2 - - uid: 16036 +- proto: CrateEngineeringSecure + entities: + - uid: 15874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,1.5 + pos: -26.5,-48.5 parent: 2 - - uid: 16037 + - 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: + - 15875 + - 15876 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringSolar + entities: + - uid: 46685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,0.5 - parent: 2 - - uid: 16038 + pos: 8.5,7.5 + parent: 46584 +- proto: CrateFilledSpawner + entities: + - uid: 15877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-3.5 + pos: -66.5,47.5 parent: 2 - - uid: 16039 + - uid: 15878 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-51.5 + pos: 47.5,41.5 parent: 2 - - uid: 16040 + - uid: 15879 components: - type: Transform - pos: 51.5,-34.5 + pos: 58.5,-37.5 parent: 2 - - uid: 16041 + - uid: 15880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-30.5 + pos: 59.5,-41.5 parent: 2 - - uid: 16042 + - uid: 15881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + pos: 57.5,-32.5 parent: 2 - - uid: 16043 + - uid: 15882 components: - type: Transform - pos: 29.5,36.5 + pos: -66.5,46.5 parent: 2 - - uid: 16044 + - uid: 15883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-0.5 + pos: -73.5,63.5 parent: 2 - - uid: 16045 + - uid: 15884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,12.5 + pos: -67.5,10.5 parent: 2 - - uid: 16046 + - uid: 15885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,25.5 + pos: -33.5,51.5 parent: 2 - - uid: 16047 +- proto: CrateFoodMRE + entities: + - uid: 41757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,25.5 - parent: 2 - - uid: 16048 + pos: 42.5,24.5 + parent: 40599 +- proto: CrateFreezer + entities: + - uid: 15886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-0.5 + pos: 43.5,23.5 parent: 2 - - uid: 16049 + - uid: 15887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,27.5 + pos: 30.5,39.5 parent: 2 - - uid: 16050 + - uid: 15888 components: - type: Transform - pos: 33.5,32.5 + pos: 26.5,56.5 parent: 2 - - uid: 16051 + - uid: 15889 components: - type: Transform - pos: 14.5,0.5 + pos: -29.5,49.5 parent: 2 - - uid: 16052 + - uid: 15890 components: - type: Transform - pos: 18.5,14.5 + pos: -55.5,8.5 parent: 2 - - uid: 16053 + - uid: 15891 components: - type: Transform - pos: 0.5,-48.5 + pos: -18.489769,43.83029 parent: 2 - - uid: 16054 + - uid: 15892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-48.5 + pos: -26.5,45.5 parent: 2 - - uid: 16055 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15895 + - 15894 + - 15893 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFunLizardPlushieBulk + entities: + - uid: 15896 components: - type: Transform - pos: 74.5,-29.5 + pos: 67.5,-33.5 parent: 2 - - uid: 16056 +- proto: CrateFunParty + entities: + - uid: 15897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-45.5 + pos: 48.5,19.5 parent: 2 - - uid: 16057 +- proto: CrateFunToyBox + entities: + - uid: 15898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-45.5 + pos: -110.5,5.5 parent: 2 - - uid: 16058 +- proto: CrateGenericSteel + entities: + - uid: 15899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-45.5 + pos: 30.5,-40.5 parent: 2 - - uid: 16059 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15902 + - 15900 + - 15903 + - 15904 + - 15901 + - 15905 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15906 components: - type: Transform - pos: -3.5,-46.5 + pos: -40.5,-15.5 parent: 2 - - uid: 16060 + - 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: + - 15908 + - 15909 + - 15907 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-53.5 + pos: 100.5,-45.5 parent: 2 - - uid: 16061 - components: - - type: Transform - pos: 13.5,45.5 - parent: 2 - - uid: 16062 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,28.5 - parent: 2 - - uid: 16063 + pos: 28.570065,68.46221 + parent: 40599 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-16.5 - parent: 2 - - uid: 16064 + pos: 28.663815,69.543846 + parent: 40599 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 41760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,28.5 - parent: 2 - - uid: 16065 + pos: 39.5,37.5 + parent: 40599 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 47283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,31.5 - parent: 2 - - uid: 16066 + pos: -2.3111324,-3.8075838 + parent: 47245 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateHydroponics + entities: + - uid: 15911 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,47.5 + pos: 9.5,38.5 parent: 2 - - uid: 16067 + - uid: 15912 components: + - type: MetaData + desc: Большой контейнер для токсичных удобрений. + name: ящик для удобрений - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-0.5 + pos: -99.5,14.5 parent: 2 - - uid: 16068 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15913 + - 15914 + - 15915 + - 15916 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateHydroSecure + entities: + - uid: 15917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,33.5 + pos: 9.5,37.5 parent: 2 - - uid: 16069 +- proto: CrateMaterialPlasma + entities: + - uid: 15918 components: - type: Transform - pos: 20.5,12.5 + pos: -105.532776,49 parent: 2 - - uid: 16070 +- proto: CrateMaterialSteel + entities: + - uid: 15919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-23.5 + pos: -34.5,-43.5 parent: 2 - - uid: 16071 +- proto: CrateMedical + entities: + - uid: 8347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-29.5 + pos: -25.5,47.5 parent: 2 - - uid: 16072 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8348 + - 8351 + - 8349 + - 8350 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalScrubs + entities: + - uid: 15920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-30.5 + pos: 59.5,-32.5 parent: 2 - - uid: 16073 +- proto: CrateMedicalSurgery + entities: + - uid: 15921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 + pos: -26.5,47.5 parent: 2 - - uid: 16074 + - uid: 15922 components: - type: Transform - pos: 19.5,13.5 + pos: 41.5,-41.5 parent: 2 - - uid: 16075 + - uid: 15923 components: - type: Transform - pos: 21.5,11.5 + pos: 18.5,-31.5 parent: 2 - - uid: 16076 + - uid: 15924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,11.5 + pos: -52.5,8.5 parent: 2 - - uid: 16077 +- proto: CrateNPCCow + entities: + - uid: 15925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,13.5 + pos: 22.5,39.5 parent: 2 - - uid: 16078 + - type: EntityStorage + open: True + removedMasks: 28 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 135 + hard: True + restitution: 0 + friction: 0.4 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateNPCGoat + entities: + - uid: 15926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,32.5 + pos: 20.5,39.5 parent: 2 - - uid: 16079 + - type: EntityStorage + open: True + removedMasks: 28 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 135 + hard: True + restitution: 0 + friction: 0.4 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateNPCHamlet + entities: + - uid: 15927 components: - type: Transform - pos: 21.5,31.5 + pos: 8.5,-5.5 parent: 2 - - uid: 16080 +- proto: CratePirate + entities: + - uid: 15291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-16.5 + pos: -126.5,-15.5 parent: 2 - - uid: 16081 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.99739 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15294 + - 15292 + - 15293 + - 15295 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 47031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 2 - - uid: 16082 + pos: 2.5,2.5 + parent: 46943 + - 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: + - 47041 + - 47039 + - 47040 + - 47037 + - 47033 + - 47034 + - 47038 + - 47036 + - 47051 + - 47056 + - 47055 + - 47050 + - 47046 + - 47035 + - 47054 + - 47045 + - 47043 + - 47053 + - 47049 + - 47044 + - 47032 + - 47048 + - 47047 + - 47052 + - 47042 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CratePlastic + entities: + - uid: 15928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,13.5 + pos: -52.5,-30.5 parent: 2 - - uid: 16083 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15929 + - uid: 15930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,13.5 + pos: 67.5,-32.5 parent: 2 - - uid: 16084 +- proto: CrateSalvageEquipment + entities: + - uid: 45558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,12.5 - parent: 2 - - uid: 16085 + pos: -5.5,-0.5 + parent: 45355 +- proto: CrateServiceBooks + entities: + - uid: 15931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,12.5 + pos: -108.5,1.5 parent: 2 - - uid: 16086 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 15932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 + pos: 69.5,-30.5 parent: 2 - - uid: 16087 +- proto: CrateServicePersonnel + entities: + - uid: 15933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 + pos: -8.5,-12.5 parent: 2 - - uid: 16088 +- proto: CrateStoneGrave + entities: + - uid: 15934 components: + - type: MetaData + name: могила неизвестной боргоматери - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-4.5 + pos: 34.5,-26.5 parent: 2 - - uid: 16089 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: [] + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15935 +- proto: CrateSyndicate + entities: + - uid: 47284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-0.5 - parent: 2 - - uid: 16090 + pos: 1.083755,-4.396158 + parent: 47245 + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.4,-0.4 + - 0.4,-0.4 + - 0.4,0.29 + - -0.4,0.29 + mask: + - Impassable + - HighImpassable + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 50 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: CrateTrashCart + entities: + - uid: 15936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,11.5 + pos: 78.5,-32.5 parent: 2 - - uid: 16091 +- proto: CrateTrashCartFilled + entities: + - uid: 15937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,53.5 + pos: 35.5,-39.5 parent: 2 - - uid: 16092 + - uid: 15938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-7.5 + pos: -101.5,22.5 parent: 2 - - uid: 16093 + - uid: 15939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-36.5 + pos: 75.5,-29.5 parent: 2 - - uid: 16094 + - uid: 15940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 + pos: 75.5,-30.5 parent: 2 - - uid: 16095 + - uid: 15941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-12.5 + pos: -115.5,-1.5 parent: 2 - - uid: 16096 +- proto: CrateTrashCartJani + entities: + - uid: 15942 components: - type: Transform - pos: 14.5,-11.5 + pos: 5.5,30.5 parent: 2 - - uid: 16097 +- proto: CrateWoodenGrave + entities: + - uid: 15943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-11.5 + pos: 34.5,46.5 parent: 2 - - uid: 16098 + - uid: 41761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 - parent: 2 - - uid: 16099 + pos: 47.5,69.5 + parent: 40599 +- proto: CrayonBox + entities: + - uid: 15944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 + pos: -110.49875,24.554552 parent: 2 - - uid: 16100 +- proto: CrayonPurple + entities: + - uid: 15945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-4.5 + pos: -117.27833,24.817198 parent: 2 - - uid: 16101 +- proto: CrayonRed + entities: + - uid: 15946 components: + - type: MetaData + name: красная помада - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-4.5 + pos: 59.57531,4.486457 parent: 2 - - uid: 16102 + - uid: 15947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-3.5 + pos: 8.246008,-7.195333 parent: 2 - - uid: 16103 +- proto: CrayonWhite + entities: + - uid: 15948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-3.5 + pos: -49.468014,15.381165 parent: 2 - - uid: 16104 + - uid: 15949 components: - type: Transform - pos: -5.5,0.5 + pos: -117.21583,24.692198 parent: 2 - - uid: 16105 +- proto: Crematorium + entities: + - uid: 15950 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-12.5 + pos: 55.5,-9.5 parent: 2 - - uid: 16106 +- proto: CrewMonitoringComputerCircuitboard + entities: + - uid: 15951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-12.5 + pos: 14.681799,12.517874 parent: 2 - - uid: 16107 +- proto: CrewMonitoringServer + entities: + - uid: 15952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-14.5 + pos: 4.5,12.5 parent: 2 - - uid: 16108 +- proto: CriminalRecordsComputerCircuitboard + entities: + - uid: 15953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-11.5 + pos: 14.634924,11.725895 parent: 2 - - uid: 16109 +- proto: Crowbar + entities: + - uid: 15109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 - parent: 2 - - uid: 16110 + parent: 15107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 2 - - uid: 16111 + parent: 15493 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,39.5 + pos: 17.5,-41.5 parent: 2 - - uid: 16112 +- proto: CrowbarRed + entities: + - uid: 15955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,42.5 + pos: 45.581337,-18.377256 parent: 2 - - uid: 16113 + - uid: 15956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,42.5 + pos: -11.469196,-7.436815 parent: 2 - - uid: 16114 + - uid: 15957 components: - type: Transform - pos: 10.5,47.5 + pos: 24.453474,52.45331 parent: 2 - - uid: 16115 + - uid: 15958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,45.5 + pos: 39.58224,-43.295883 parent: 2 - - uid: 16116 + - uid: 15959 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,61.5 + pos: 39.504105,-43.37401 parent: 2 - - uid: 16117 + - uid: 15960 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-4.5 + pos: -16.609646,64.396164 parent: 2 - - uid: 16118 +- proto: CryogenicSleepUnit + entities: + - uid: 15961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,58.5 + pos: -17.5,58.5 parent: 2 - - uid: 16119 + - uid: 15962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-3.5 + pos: 9.5,-33.5 parent: 2 - - uid: 16120 + - uid: 15963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-1.5 + rot: 1.5707963267948966 rad + pos: -56.5,10.5 parent: 2 - - uid: 16121 + - uid: 15964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 + rot: 3.141592653589793 rad + pos: 3.5,-33.5 parent: 2 - - uid: 16122 + - uid: 15965 components: - type: Transform - pos: -5.5,58.5 + pos: -17.5,59.5 parent: 2 - - uid: 16123 + - uid: 15966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 + pos: -17.5,60.5 parent: 2 - - uid: 16124 + - uid: 15967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 + pos: -17.5,57.5 parent: 2 - - uid: 16125 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 15968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,0.5 + pos: 9.5,-35.5 parent: 2 - - uid: 16126 + - uid: 15969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 + rot: 3.141592653589793 rad + pos: 3.5,-35.5 parent: 2 - - uid: 16127 + - uid: 15970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-2.5 + rot: 3.141592653589793 rad + pos: 3.5,-34.5 parent: 2 - - uid: 16128 + - uid: 15971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-3.5 + pos: 9.5,-34.5 parent: 2 - - uid: 16129 +- proto: CryoPod + entities: + - uid: 15972 components: - type: Transform - pos: 41.5,28.5 + pos: -23.5,52.5 parent: 2 - - uid: 16130 + - uid: 15973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,29.5 + pos: -21.5,52.5 parent: 2 - - uid: 16131 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 15974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,27.5 + pos: -20.66497,50.696533 parent: 2 - - uid: 16132 + - uid: 15975 components: - type: Transform - pos: 38.5,29.5 + pos: 7.462455,40.560955 parent: 2 - - uid: 16133 +- proto: CrystalBlue + entities: + - uid: 15976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,28.5 + pos: -32.5,58.5 parent: 2 - - uid: 16134 + - uid: 15977 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,26.5 + pos: -82.5,51.5 parent: 2 - - uid: 16135 + - uid: 15978 components: - type: Transform - pos: 47.5,26.5 + pos: -65.5,20.5 parent: 2 - - uid: 16136 + - uid: 15979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,18.5 + pos: 46.5,41.5 parent: 2 - - uid: 16137 + - uid: 15980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-50.5 + pos: 42.5,-38.5 parent: 2 - - uid: 16138 + - uid: 15981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-37.5 + rot: -1.5707963267948966 rad + pos: 35.5,-41.5 parent: 2 - - uid: 16139 + - uid: 15982 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-35.5 + pos: 44.5,-45.5 parent: 2 - - uid: 16140 + - uid: 15983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-34.5 + rot: 3.141592653589793 rad + pos: 38.5,36.5 parent: 2 - - uid: 16141 + - uid: 15984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-30.5 + rot: 3.141592653589793 rad + pos: 52.5,20.5 parent: 2 - - uid: 16142 + - uid: 15985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-29.5 + pos: 32.5,-45.5 parent: 2 - - uid: 16143 + - uid: 15986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-31.5 + pos: 24.5,-49.5 parent: 2 - - uid: 16144 + - uid: 15987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-31.5 + rot: 1.5707963267948966 rad + pos: 47.5,-33.5 parent: 2 - - uid: 16145 + - uid: 15988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-32.5 + pos: -51.5,-38.5 parent: 2 - - uid: 16146 + - uid: 15989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-33.5 + pos: -53.5,-44.5 parent: 2 - - uid: 16147 + - uid: 15990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-34.5 + pos: -49.5,-43.5 parent: 2 - - uid: 16148 + - uid: 15991 components: - type: Transform - pos: 49.5,-33.5 + pos: -45.5,-47.5 parent: 2 - - uid: 16149 + - uid: 15992 components: - type: Transform - pos: 48.5,-32.5 + pos: -44.5,-38.5 parent: 2 - - uid: 16150 + - uid: 15993 components: - type: Transform - pos: 46.5,-29.5 + pos: -73.5,35.5 parent: 2 - - uid: 16151 + - uid: 15994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-37.5 + pos: -28.5,-32.5 parent: 2 - - uid: 16152 + - uid: 15995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-37.5 + pos: -48.5,-24.5 parent: 2 - - uid: 16153 + - uid: 15996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-30.5 + pos: -44.5,-26.5 parent: 2 - - uid: 16154 + - uid: 15997 components: - type: Transform - pos: 47.5,-30.5 + pos: -53.5,-23.5 parent: 2 - - uid: 16155 + - uid: 15998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-38.5 + pos: -58.5,-22.5 parent: 2 - - uid: 16156 + - uid: 15999 components: - type: Transform - pos: 30.5,-56.5 + pos: 30.5,44.5 parent: 2 - - uid: 16157 + - uid: 16000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-56.5 + pos: 24.5,48.5 parent: 2 - - uid: 16158 + - uid: 16001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-52.5 + rot: 3.141592653589793 rad + pos: 38.5,42.5 parent: 2 - - uid: 16159 + - uid: 16002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-52.5 + pos: -77.5,44.5 parent: 2 - - uid: 16160 + - uid: 16003 components: - type: Transform - pos: 32.5,-47.5 + pos: 85.5,-1.5 parent: 2 - - uid: 16161 + - uid: 16004 components: - type: Transform - pos: 44.5,-48.5 + pos: -91.5,-10.5 parent: 2 - - uid: 16162 + - uid: 16005 components: - type: Transform - pos: 37.5,-41.5 + pos: -81.5,-3.5 parent: 2 - - uid: 16163 + - uid: 16006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-41.5 + rot: 1.5707963267948966 rad + pos: -55.5,-16.5 parent: 2 - - uid: 16164 + - uid: 16007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-51.5 + pos: -64.5,14.5 parent: 2 - - uid: 16165 + - uid: 16008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-47.5 + pos: -83.5,57.5 parent: 2 - - uid: 16166 + - uid: 16009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 + pos: -44.5,38.5 parent: 2 - - uid: 16167 + - uid: 16010 components: - type: Transform - pos: 26.5,-42.5 + pos: 67.5,13.5 parent: 2 - - uid: 16168 + - uid: 16011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-29.5 + pos: 73.5,2.5 parent: 2 - - uid: 16169 + - uid: 16012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,-37.5 + pos: -63.5,26.5 parent: 2 - - uid: 16170 + - uid: 16013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-38.5 + pos: -55.5,41.5 parent: 2 - - uid: 16171 + - uid: 16014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-23.5 + pos: 96.5,-37.5 parent: 2 - - uid: 16172 + - uid: 16015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,2.5 + pos: 96.5,-34.5 parent: 2 - - uid: 16173 + - uid: 16016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-5.5 + pos: 34.5,-30.5 parent: 2 - - uid: 16174 + - uid: 16017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,2.5 + pos: 10.5,-43.5 parent: 2 - - uid: 16175 + - uid: 16018 components: - type: Transform - pos: 71.5,9.5 + rot: -1.5707963267948966 rad + pos: 24.5,64.5 parent: 2 - - uid: 16176 + - uid: 16019 components: - type: Transform - pos: 72.5,6.5 + rot: -1.5707963267948966 rad + pos: -27.5,66.5 parent: 2 - - uid: 16177 + - uid: 16020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,1.5 + rot: 3.141592653589793 rad + pos: 66.5,25.5 parent: 2 - - uid: 16178 + - uid: 16021 components: - type: Transform - pos: 60.5,19.5 + rot: 3.141592653589793 rad + pos: 62.5,28.5 parent: 2 - - uid: 16179 + - uid: 16022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-3.5 + pos: 53.5,48.5 parent: 2 - - uid: 16180 + - uid: 16023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-2.5 + pos: -64.5,2.5 parent: 2 - - uid: 16181 + - uid: 16024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-5.5 + pos: -63.5,8.5 parent: 2 - - uid: 16182 + - uid: 16025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,18.5 + pos: -78.5,22.5 parent: 2 - - uid: 16183 + - uid: 16026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-6.5 + rot: 1.5707963267948966 rad + pos: -111.5,37.5 parent: 2 - - uid: 16184 + - uid: 16027 components: - type: Transform - pos: 63.5,18.5 + rot: 3.141592653589793 rad + pos: -68.5,36.5 parent: 2 - - uid: 16185 + - uid: 16028 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,18.5 + pos: -29.5,40.5 parent: 2 - - uid: 16186 + - uid: 41762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,6.5 - parent: 2 - - uid: 16187 + pos: 23.5,61.5 + parent: 40599 + - uid: 41763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,23.5 - parent: 2 - - uid: 16188 + pos: 19.5,43.5 + parent: 40599 + - uid: 41764 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,28.5 - parent: 2 - - uid: 16189 + pos: 74.5,65.5 + parent: 40599 + - uid: 41765 components: - type: Transform rot: 1.5707963267948966 rad - pos: -117.5,10.5 - parent: 2 - - uid: 16190 + pos: 79.5,54.5 + parent: 40599 +- proto: CrystalCyan + entities: + - uid: 16029 components: - type: Transform - pos: -110.5,32.5 + pos: 21.5,-45.5 parent: 2 - - uid: 16191 + - uid: 16030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,25.5 + rot: -1.5707963267948966 rad + pos: 45.5,-39.5 parent: 2 - - uid: 16192 + - uid: 16031 components: - type: Transform - pos: -105.5,25.5 + rot: -1.5707963267948966 rad + pos: 40.5,-37.5 parent: 2 - - uid: 16193 + - uid: 16032 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,7.5 + pos: 39.5,-42.5 parent: 2 - - uid: 16194 + - uid: 16033 components: - type: Transform - pos: -113.5,8.5 + rot: 1.5707963267948966 rad + pos: 51.5,27.5 parent: 2 - - uid: 16195 + - uid: 16034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,8.5 + rot: 1.5707963267948966 rad + pos: 41.5,33.5 parent: 2 - - uid: 16196 + - uid: 16035 components: - type: Transform - pos: 50.5,27.5 + pos: 31.5,-49.5 parent: 2 - - uid: 16197 + - uid: 16036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,31.5 + pos: -64.5,45.5 parent: 2 - - uid: 16198 + - uid: 16037 components: - type: Transform - pos: 51.5,26.5 + pos: -72.5,40.5 parent: 2 - - uid: 16199 + - uid: 16038 components: - type: Transform - pos: 46.5,31.5 + pos: -77.5,36.5 parent: 2 - - uid: 16200 + - uid: 16039 components: - type: Transform - pos: 45.5,32.5 + rot: 1.5707963267948966 rad + pos: 70.5,-3.5 parent: 2 - - uid: 16201 + - uid: 16040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,29.5 + pos: -69.5,54.5 parent: 2 - - uid: 16202 + - uid: 16041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,27.5 + pos: -20.5,-30.5 parent: 2 - - uid: 16203 + - uid: 16042 components: - type: Transform - pos: 49.5,29.5 + pos: -17.5,-19.5 parent: 2 - - uid: 16204 + - uid: 16043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,26.5 + pos: -43.5,-42.5 parent: 2 - - uid: 16205 + - uid: 16044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,7.5 + pos: -36.5,-39.5 parent: 2 - - uid: 16206 + - uid: 16045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-14.5 + pos: -54.5,-41.5 parent: 2 - - uid: 16207 + - uid: 16046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-33.5 + pos: -52.5,-34.5 parent: 2 - - uid: 16208 + - uid: 16047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,0.5 + pos: -47.5,-33.5 parent: 2 - - uid: 41385 + - uid: 16048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,59.5 - parent: 40203 - - uid: 41386 + pos: 56.5,44.5 + parent: 2 + - uid: 16049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,52.5 - parent: 40203 - - uid: 41387 + pos: 62.5,-12.5 + parent: 2 + - uid: 16050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,52.5 - parent: 40203 - - uid: 41388 + pos: -33.5,-29.5 + parent: 2 + - uid: 16051 components: - type: Transform - pos: 70.5,56.5 - parent: 40203 - - uid: 41389 + pos: -36.5,-33.5 + parent: 2 + - uid: 16052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,56.5 - parent: 40203 - - uid: 41390 + pos: -41.5,-30.5 + parent: 2 + - uid: 16053 components: - type: Transform - pos: 67.5,57.5 - parent: 40203 - - uid: 41391 + pos: -74.5,61.5 + parent: 2 + - uid: 16054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,57.5 - parent: 40203 - - uid: 41392 + pos: -17.5,-26.5 + parent: 2 + - uid: 16055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,56.5 - parent: 40203 - - uid: 41393 + pos: 33.5,63.5 + parent: 2 + - uid: 16056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,56.5 - parent: 40203 - - uid: 41394 + pos: -80.5,29.5 + parent: 2 + - uid: 16057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,48.5 - parent: 40203 - - uid: 41395 + pos: 89.5,-3.5 + parent: 2 + - uid: 16058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,48.5 - parent: 40203 - - uid: 41396 + pos: -21.5,65.5 + parent: 2 + - uid: 16059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,44.5 - parent: 40203 - - uid: 41397 + pos: 34.5,57.5 + parent: 2 + - uid: 16060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,45.5 - parent: 40203 - - uid: 41398 + pos: -19.5,68.5 + parent: 2 + - uid: 16061 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,44.5 - parent: 40203 - - uid: 41399 + pos: -17.5,63.5 + parent: 2 + - uid: 16062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,43.5 - parent: 40203 - - uid: 41400 + pos: 78.5,-2.5 + parent: 2 + - uid: 16063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,44.5 - parent: 40203 - - uid: 41401 + pos: 87.5,3.5 + parent: 2 + - uid: 16064 components: - type: Transform - pos: 56.5,44.5 - parent: 40203 - - uid: 41402 + pos: 92.5,9.5 + parent: 2 + - uid: 16065 components: - type: Transform - pos: 57.5,43.5 - parent: 40203 - - uid: 41403 + pos: 82.5,-4.5 + parent: 2 + - uid: 16066 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,43.5 - parent: 40203 - - uid: 41404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,43.5 - parent: 40203 - - uid: 41405 + pos: -94.5,20.5 + parent: 2 + - uid: 16067 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,40.5 - parent: 40203 - - uid: 41406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,40.5 - parent: 40203 -- proto: DisposalJunction - entities: - - uid: 16209 + pos: -95.5,31.5 + parent: 2 + - uid: 16068 components: - type: Transform - pos: 62.5,-29.5 + pos: -85.5,-10.5 parent: 2 - - uid: 16210 + - uid: 16069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,39.5 + pos: -131.5,-13.5 parent: 2 - - uid: 16211 + - uid: 16070 components: - type: Transform - pos: -38.5,11.5 + pos: -136.5,-6.5 parent: 2 - - uid: 16212 + - uid: 16071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,47.5 + pos: -131.5,17.5 parent: 2 - - uid: 16213 + - uid: 16072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-46.5 + pos: -100.5,36.5 parent: 2 - - uid: 16214 + - uid: 16073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-38.5 + pos: -117.5,36.5 parent: 2 - - uid: 16215 + - uid: 16074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-46.5 + pos: -83.5,3.5 parent: 2 - - uid: 16216 + - uid: 16075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-16.5 + pos: -75.5,-3.5 parent: 2 - - uid: 16217 + - uid: 16076 components: - type: Transform - pos: -1.5,48.5 + pos: -83.5,-0.5 parent: 2 - - uid: 16218 + - uid: 16077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,25.5 + pos: -75.5,4.5 parent: 2 - - uid: 16219 + - uid: 16078 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-4.5 + pos: -60.5,-12.5 parent: 2 - - uid: 16220 + - uid: 16079 components: - type: Transform - pos: -33.5,-3.5 + pos: -69.5,7.5 parent: 2 - - uid: 16221 + - uid: 16080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,11.5 + pos: -86.5,7.5 parent: 2 - - uid: 16222 + - uid: 16081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,32.5 + pos: -88.5,50.5 parent: 2 - - uid: 16223 + - uid: 16082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,28.5 + pos: -92.5,50.5 parent: 2 - - uid: 16224 + - uid: 16083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-7.5 + pos: -78.5,63.5 parent: 2 - - uid: 16225 + - uid: 16084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,45.5 + pos: 72.5,10.5 parent: 2 - - uid: 16226 + - uid: 16085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,29.5 + pos: -33.5,49.5 parent: 2 - - uid: 16227 + - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-50.5 + pos: -45.5,33.5 parent: 2 - - uid: 16228 + - uid: 16087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-3.5 + pos: -65.5,29.5 parent: 2 - - uid: 16229 + - uid: 16088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 + pos: -54.5,44.5 parent: 2 - - uid: 16230 + - uid: 16089 components: - type: Transform - pos: -16.5,0.5 + pos: -29.5,61.5 parent: 2 - - uid: 16231 + - uid: 16090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,28.5 + pos: -82.5,36.5 parent: 2 - - uid: 16232 + - uid: 16091 components: - type: Transform - pos: 37.5,-45.5 + pos: 95.5,-34.5 parent: 2 - - uid: 16233 + - uid: 16092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-34.5 + pos: 38.5,-28.5 parent: 2 - - uid: 16234 + - uid: 16093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-29.5 + pos: 91.5,-33.5 parent: 2 - - uid: 16235 + - uid: 16094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-35.5 + pos: 12.5,-41.5 parent: 2 - - uid: 16236 + - uid: 16095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-51.5 + pos: -45.5,62.5 parent: 2 - - uid: 16237 + - uid: 16096 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-48.5 + pos: 77.5,22.5 parent: 2 - - uid: 16238 + - uid: 16097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-48.5 + rot: 3.141592653589793 rad + pos: 68.5,29.5 parent: 2 - - uid: 16239 + - uid: 16098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-47.5 + pos: 48.5,45.5 parent: 2 - - uid: 16240 + - uid: 16099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-42.5 + pos: -83.5,47.5 parent: 2 - - uid: 16241 + - uid: 16100 components: - type: Transform - pos: -110.5,30.5 + rot: -1.5707963267948966 rad + pos: -142.5,-2.5 parent: 2 - - uid: 16242 + - uid: 16101 components: - type: Transform - pos: -110.5,28.5 + pos: -88.5,19.5 parent: 2 - - uid: 16243 + - uid: 16102 components: - type: Transform - pos: -37.5,7.5 + pos: -61.5,-7.5 parent: 2 - - uid: 16244 + - uid: 16103 components: - type: Transform - pos: -16.5,-15.5 + rot: -1.5707963267948966 rad + pos: 94.5,-42.5 parent: 2 -- proto: DisposalJunctionFlipped - entities: - - uid: 16245 + - uid: 16104 components: - type: Transform - pos: 61.5,-6.5 + pos: -118.5,31.5 parent: 2 - - uid: 16246 + - uid: 16105 components: - type: Transform - pos: 61.5,-2.5 + rot: 1.5707963267948966 rad + pos: -55.5,-10.5 parent: 2 - - uid: 16247 + - uid: 16106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-38.5 + pos: -100.5,43.5 parent: 2 - - uid: 16248 + - uid: 16107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-37.5 + pos: -97.5,49.5 parent: 2 - - uid: 16249 + - uid: 41766 components: - type: Transform - pos: 25.5,32.5 - parent: 2 - - uid: 16250 + pos: 20.5,54.5 + parent: 40599 + - uid: 41767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 - parent: 2 - - uid: 16251 + pos: 27.5,42.5 + parent: 40599 + - uid: 41768 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 2 - - uid: 16252 + pos: 82.5,61.5 + parent: 40599 + - uid: 41769 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,25.5 - parent: 2 - - uid: 16253 + pos: 79.5,65.5 + parent: 40599 +- proto: CrystalGreen + entities: + - uid: 16108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,27.5 + rot: -1.5707963267948966 rad + pos: 35.5,-36.5 parent: 2 - - uid: 16254 + - uid: 16109 components: - type: Transform - pos: 13.5,39.5 + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 parent: 2 - - uid: 16255 + - uid: 16110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,28.5 + pos: 61.5,17.5 parent: 2 - - uid: 16256 + - uid: 16111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-45.5 + pos: 95.5,-39.5 parent: 2 - - uid: 16257 + - uid: 16112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-38.5 + pos: 89.5,-37.5 parent: 2 - - uid: 16258 + - uid: 16113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-38.5 + pos: 91.5,-42.5 parent: 2 - - uid: 16259 +- proto: CrystalGrey + entities: + - uid: 16114 components: - type: Transform - pos: 8.5,28.5 + rot: -1.5707963267948966 rad + pos: -68.5,50.5 parent: 2 - - uid: 16260 + - uid: 16115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-0.5 + rot: -1.5707963267948966 rad + pos: -63.5,55.5 parent: 2 - - uid: 16261 + - uid: 16116 components: - type: Transform - pos: -16.5,-0.5 + rot: 1.5707963267948966 rad + pos: 52.5,-30.5 parent: 2 - - uid: 16262 + - uid: 16117 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-3.5 + pos: 40.5,-26.5 parent: 2 - - uid: 16263 + - uid: 16118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,46.5 + pos: -37.5,-22.5 parent: 2 - - uid: 16264 + - uid: 16119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,45.5 + pos: -76.5,26.5 parent: 2 - - uid: 16265 + - uid: 41770 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-11.5 - parent: 2 - - uid: 16266 + pos: 59.5,68.5 + parent: 40599 + - uid: 41771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,11.5 - parent: 2 - - uid: 16267 + pos: 57.5,72.5 + parent: 40599 +- proto: CrystalOrange + entities: + - uid: 16120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,11.5 + rot: -1.5707963267948966 rad + pos: -44.5,47.5 parent: 2 - - uid: 16268 + - uid: 16121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,11.5 + rot: -1.5707963267948966 rad + pos: -42.5,51.5 parent: 2 - - uid: 16269 + - uid: 16122 components: - type: Transform - pos: -5.5,54.5 + rot: -1.5707963267948966 rad + pos: -50.5,50.5 parent: 2 - - uid: 16270 + - uid: 16123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-16.5 + pos: -48.5,47.5 parent: 2 - - uid: 16271 + - uid: 16124 components: - type: Transform - pos: -38.5,12.5 + pos: -44.5,53.5 parent: 2 - - uid: 16272 + - uid: 16125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,18.5 + rot: -1.5707963267948966 rad + pos: -48.5,52.5 parent: 2 - - uid: 16273 + - uid: 41772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-34.5 - parent: 2 - - uid: 16274 + pos: 57.5,68.5 + parent: 40599 + - uid: 41773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-41.5 - parent: 2 - - uid: 16275 + pos: 63.5,72.5 + parent: 40599 +- proto: CrystalPink + entities: + - uid: 16126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-23.5 + pos: -65.5,-25.5 parent: 2 - - uid: 16276 + - uid: 16127 components: - type: Transform - pos: -113.5,7.5 + pos: 45.5,38.5 parent: 2 - - uid: 16277 + - uid: 16128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,6.5 + pos: -90.5,44.5 parent: 2 - - uid: 16278 + - uid: 16129 components: - type: Transform - pos: -113.5,1.5 + pos: -88.5,40.5 parent: 2 - - uid: 16279 + - uid: 16130 components: - type: Transform - pos: -105.5,23.5 + pos: -81.5,43.5 parent: 2 - - uid: 16280 + - uid: 16131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,7.5 + pos: -60.5,-23.5 parent: 2 - - uid: 16281 + - uid: 16132 components: - type: Transform - pos: -113.5,4.5 + pos: -73.5,24.5 parent: 2 - - uid: 41407 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,56.5 - parent: 40203 -- proto: DisposalPipe - entities: - - uid: 16282 + - uid: 16133 components: - type: Transform - pos: 51.5,23.5 + pos: -69.5,27.5 parent: 2 - - uid: 16283 + - uid: 16134 components: - type: Transform - pos: 51.5,22.5 + pos: 67.5,35.5 parent: 2 - - uid: 16284 + - uid: 16135 components: - type: Transform - pos: 51.5,24.5 + pos: 51.5,39.5 parent: 2 - - uid: 16285 + - uid: 16136 components: - type: Transform - pos: 69.5,12.5 + rot: 3.141592653589793 rad + pos: 54.5,28.5 parent: 2 - - uid: 16286 + - uid: 16137 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-22.5 + pos: 54.5,24.5 parent: 2 - - uid: 16287 + - uid: 16138 components: - type: Transform - pos: 69.5,11.5 + pos: -48.5,21.5 parent: 2 - - uid: 16288 + - uid: 16139 components: - type: Transform - pos: 71.5,8.5 + pos: -113.5,-0.5 parent: 2 - - uid: 16289 + - uid: 16140 components: - type: Transform - pos: 71.5,7.5 + pos: -104.5,-2.5 parent: 2 - - uid: 16290 + - uid: 16141 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-13.5 + pos: -95.5,-2.5 parent: 2 - - uid: 16291 + - uid: 16142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-8.5 + pos: -113.5,-8.5 parent: 2 - - uid: 16292 + - uid: 16143 components: - type: Transform - pos: 61.5,-5.5 + pos: -120.5,-3.5 parent: 2 - - uid: 16293 + - uid: 16144 components: - type: Transform - pos: 61.5,-4.5 + pos: -51.5,24.5 parent: 2 - - uid: 16294 + - uid: 41774 components: - type: Transform - pos: 61.5,-3.5 - parent: 2 - - uid: 16295 + pos: 27.5,62.5 + parent: 40599 + - uid: 45559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-15.5 - parent: 2 - - uid: 16296 + pos: 16.5,-6.5 + parent: 45355 + - type: PointLight + energy: 2.5 + radius: 5 + - uid: 45560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-17.5 - parent: 2 - - uid: 16297 + pos: 8.5,-7.5 + parent: 45355 + - type: PointLight + radius: 5 + - uid: 45561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,0.5 - parent: 2 - - uid: 16298 + pos: -8.5,-1.5 + parent: 45355 + - type: PointLight + energy: 2 + - uid: 45562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-18.5 - parent: 2 - - uid: 16299 + pos: 11.5,-9.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 4 + - uid: 45563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-19.5 - parent: 2 - - uid: 16300 + pos: 2.5,-6.5 + parent: 45355 + - uid: 45564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-9.5 - parent: 2 - - uid: 16301 + pos: -0.5,-5.5 + parent: 45355 + - type: PointLight + energy: 2 + - uid: 45565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-21.5 - parent: 2 - - uid: 16302 + pos: 5.5,-1.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 4 + - uid: 45566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,19.5 - parent: 2 - - uid: 16303 + pos: 0.5,-12.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 6 + - uid: 45567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,19.5 - parent: 2 - - uid: 16304 + pos: -6.5,-8.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 5 + - uid: 45568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-41.5 - parent: 2 - - uid: 16305 + pos: -7.5,-5.5 + parent: 45355 + - type: PointLight + energy: 1 + radius: 4 + - uid: 45569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-37.5 - parent: 2 - - uid: 16306 + pos: -12.5,3.5 + parent: 45355 + - type: PointLight + energy: 2.5 + radius: 6 + - uid: 45570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 2 - - uid: 16307 + pos: -9.5,10.5 + parent: 45355 + - type: PointLight + energy: 1 + radius: 5 + - uid: 45571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,47.5 - parent: 2 - - uid: 16308 + pos: -1.5,16.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 7 + - uid: 45572 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,37.5 - parent: 2 - - uid: 16309 + pos: 0.5,16.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 7 + - uid: 45573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,32.5 - parent: 2 - - uid: 16310 + pos: 0.5,23.5 + parent: 45355 + - type: PointLight + energy: 2.5 + radius: 5 + - uid: 45574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,31.5 - parent: 2 - - uid: 16311 + pos: -4.5,20.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 4 + - uid: 45575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,31.5 - parent: 2 - - uid: 16312 + pos: 3.5,19.5 + parent: 45355 + - uid: 45576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,31.5 - parent: 2 - - uid: 16313 + pos: 10.5,16.5 + parent: 45355 + - type: PointLight + energy: 2.5 + radius: 6 + - uid: 45577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,34.5 - parent: 2 - - uid: 16314 + pos: 13.5,10.5 + parent: 45355 + - type: PointLight + energy: 2 + - uid: 45578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,35.5 - parent: 2 - - uid: 16315 + pos: 12.5,4.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 4 + - uid: 45579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,38.5 - parent: 2 - - uid: 16316 + pos: 8.5,-13.5 + parent: 45355 + - type: PointLight + energy: 2.5 + radius: 5 + - uid: 45580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,31.5 - parent: 2 - - uid: 16317 + pos: 13.5,-2.5 + parent: 45355 + - type: PointLight + energy: 2 + radius: 4 + - uid: 46686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-0.5 - parent: 2 - - uid: 16318 + pos: 2.5,16.5 + parent: 46584 +- proto: CurtainsBlack + entities: + - uid: 16145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,0.5 + rot: -1.5707963267948966 rad + pos: 64.5,12.5 parent: 2 - - uid: 16319 + - uid: 16146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,25.5 + pos: 37.5,-5.5 parent: 2 - - uid: 16320 + - uid: 16147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,25.5 + pos: 32.5,-4.5 parent: 2 - - uid: 16321 + - uid: 16148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,36.5 + rot: -1.5707963267948966 rad + pos: 88.5,-24.5 parent: 2 - - uid: 16322 + - uid: 16149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,25.5 + rot: -1.5707963267948966 rad + pos: 90.5,-24.5 parent: 2 - - uid: 16323 + - uid: 16150 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,47.5 + pos: 91.5,-24.5 parent: 2 - - uid: 16324 + - uid: 16151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,47.5 + pos: 40.5,-30.5 parent: 2 - - uid: 16325 + - uid: 16152 components: - type: Transform - pos: 13.5,42.5 + pos: 41.5,-30.5 parent: 2 - - uid: 16326 + - uid: 45581 components: - type: Transform - pos: 13.5,40.5 - parent: 2 - - uid: 16327 + pos: 1.5,7.5 + parent: 45355 +- proto: CurtainsBlackOpen + entities: + - uid: 16153 components: - type: Transform - pos: 34.5,26.5 + pos: 55.5,13.5 parent: 2 - - uid: 16328 + - uid: 16154 components: - type: Transform - pos: 34.5,27.5 + pos: 48.5,22.5 parent: 2 - - uid: 16329 + - uid: 16155 components: - type: Transform - pos: 16.5,15.5 + pos: 32.5,-3.5 parent: 2 - - uid: 16330 + - uid: 16156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 + pos: -23.5,22.5 parent: 2 - - uid: 16331 + - uid: 41775 components: - type: Transform - pos: 8.5,27.5 - parent: 2 - - uid: 16332 + pos: 75.5,77.5 + parent: 40599 + - uid: 41776 components: - type: Transform - pos: 8.5,30.5 - parent: 2 - - uid: 16333 + pos: 80.5,32.5 + parent: 40599 + - uid: 45582 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,25.5 - parent: 2 - - uid: 16334 + pos: -2.5,7.5 + parent: 45355 + - uid: 45583 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,32.5 - parent: 2 - - uid: 16335 + pos: 3.5,7.5 + parent: 45355 + - uid: 45584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 45355 + - uid: 45585 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,26.5 - parent: 2 - - uid: 16336 + pos: 7.5,1.5 + parent: 45355 + - uid: 45586 components: - type: Transform - pos: 15.5,40.5 - parent: 2 - - uid: 16337 + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 45355 +- proto: CurtainsBlue + entities: + - uid: 16157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,25.5 + pos: 36.5,-11.5 parent: 2 - - uid: 16338 + - uid: 16158 components: - type: Transform - pos: 8.5,29.5 + pos: 36.5,-10.5 parent: 2 - - uid: 16339 +- proto: CurtainsBlueOpen + entities: + - uid: 16159 components: - type: Transform - pos: 8.5,26.5 + pos: -13.5,-12.5 parent: 2 - - uid: 16340 + - uid: 16160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,25.5 + pos: 18.5,-8.5 parent: 2 - - uid: 16341 +- proto: CurtainsCyanOpen + entities: + - uid: 16161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,39.5 + pos: -15.5,62.5 parent: 2 - - uid: 16342 +- proto: CurtainsGreenOpen + entities: + - uid: 16162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,25.5 + pos: 4.5,54.5 parent: 2 - - uid: 16343 +- proto: CurtainsOrange + entities: + - uid: 16163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-29.5 + pos: 82.5,-33.5 parent: 2 - - uid: 16344 +- proto: CurtainsOrangeOpen + entities: + - uid: 16164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,43.5 + pos: 78.5,-41.5 parent: 2 - - uid: 16345 + - uid: 16165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-48.5 + pos: 8.5,-46.5 parent: 2 - - uid: 16346 + - uid: 16166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-47.5 + pos: -46.5,17.5 parent: 2 - - uid: 16347 + - uid: 16167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,48.5 + pos: -50.5,17.5 parent: 2 - - uid: 16348 + - uid: 16168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,47.5 + pos: -42.5,17.5 parent: 2 - - uid: 16349 + - uid: 16169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,49.5 + rot: 1.5707963267948966 rad + pos: 6.5,18.5 parent: 2 - - uid: 16350 + - uid: 16170 components: - type: Transform - pos: -5.5,47.5 + rot: 1.5707963267948966 rad + pos: -117.5,21.5 parent: 2 - - uid: 16351 + - uid: 16171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,48.5 + pos: -117.5,25.5 parent: 2 - - uid: 16352 + - uid: 16172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,48.5 + rot: 1.5707963267948966 rad + pos: -117.5,17.5 parent: 2 - - uid: 16353 + - uid: 16173 components: - type: Transform - pos: 0.5,-49.5 + rot: -1.5707963267948966 rad + pos: -117.5,23.5 parent: 2 - - uid: 16354 + - uid: 16174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-48.5 + pos: -117.5,19.5 parent: 2 - - uid: 16355 +- proto: CurtainsPinkOpen + entities: + - uid: 16175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-45.5 + rot: -1.5707963267948966 rad + pos: 49.5,11.5 parent: 2 - - uid: 16356 +- proto: CurtainsPurple + entities: + - uid: 16176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-48.5 + rot: -1.5707963267948966 rad + pos: 54.5,-1.5 parent: 2 - - uid: 16357 + - uid: 16177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-16.5 + rot: -1.5707963267948966 rad + pos: 54.5,3.5 parent: 2 - - uid: 16358 + - uid: 16178 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-40.5 + rot: -1.5707963267948966 rad + pos: 8.5,-31.5 parent: 2 - - uid: 16359 + - uid: 16179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-39.5 + rot: -1.5707963267948966 rad + pos: 23.5,11.5 parent: 2 - - uid: 16360 + - uid: 16180 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,-38.5 + pos: 23.5,8.5 parent: 2 - - uid: 16361 + - uid: 45587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-38.5 - parent: 2 - - uid: 16362 + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 45355 + - uid: 45588 components: - type: Transform - pos: 79.5,-44.5 - parent: 2 - - uid: 16363 + pos: 6.5,9.5 + parent: 45355 +- proto: CurtainsPurpleOpen + entities: + - uid: 16181 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-45.5 + pos: 54.5,-0.5 parent: 2 - - uid: 16364 + - uid: 16182 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-45.5 + pos: 54.5,0.5 parent: 2 - - uid: 16365 + - uid: 16183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 76.5,-45.5 + pos: 54.5,1.5 parent: 2 - - uid: 16366 + - uid: 16184 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,-45.5 + pos: 54.5,2.5 parent: 2 - - uid: 16367 + - uid: 16185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-45.5 + rot: 3.141592653589793 rad + pos: 27.5,-57.5 parent: 2 - - uid: 16368 + - uid: 16186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,-45.5 + pos: 4.5,-31.5 parent: 2 - - uid: 16369 + - uid: 16187 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,-45.5 + pos: 23.5,9.5 parent: 2 - - uid: 16370 + - uid: 16188 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,-45.5 + pos: 23.5,10.5 parent: 2 - - uid: 16371 + - uid: 45589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-45.5 - parent: 2 - - uid: 16372 + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 45355 + - uid: 45590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-45.5 - parent: 2 - - uid: 16373 + pos: 7.5,9.5 + parent: 45355 +- proto: CurtainsRed + entities: + - uid: 16189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-44.5 + pos: -78.5,19.5 parent: 2 - - uid: 16374 + - uid: 16190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-43.5 + pos: -73.5,19.5 parent: 2 - - uid: 16375 + - uid: 16191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-42.5 + pos: -74.5,19.5 parent: 2 - - uid: 16376 + - uid: 16192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-41.5 + pos: 40.5,8.5 parent: 2 - - uid: 16377 + - uid: 16193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-40.5 + pos: -56.5,51.5 parent: 2 - - uid: 16378 + - uid: 47057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-39.5 - parent: 2 - - uid: 16379 + pos: -2.5,8.5 + parent: 46943 +- proto: CurtainsRedOpen + entities: + - uid: 16194 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-38.5 + pos: -23.5,7.5 parent: 2 - - uid: 16380 + - uid: 16195 components: - type: Transform - pos: 67.5,-37.5 + rot: 1.5707963267948966 rad + pos: -23.5,8.5 parent: 2 - - uid: 16381 + - uid: 16196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-38.5 + pos: 41.5,8.5 parent: 2 - - uid: 16382 + - uid: 16197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-38.5 + rot: 3.141592653589793 rad + pos: -40.5,7.5 parent: 2 - - uid: 16383 + - uid: 16198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-38.5 + pos: -41.5,-19.5 parent: 2 - - uid: 16384 + - uid: 16199 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,-38.5 + pos: -61.5,49.5 parent: 2 - - uid: 16385 +- proto: CurtainsWhite + entities: + - uid: 16200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-36.5 + pos: 67.5,5.5 parent: 2 - - uid: 16386 + - uid: 16201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-35.5 + pos: 1.5,63.5 parent: 2 - - uid: 16387 + - uid: 16202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-34.5 + pos: 3.5,63.5 parent: 2 - - uid: 16388 +- proto: CurtainsWhiteOpen + entities: + - uid: 16203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-33.5 + pos: 2.5,63.5 parent: 2 - - uid: 16389 + - uid: 16204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-32.5 + pos: 47.5,27.5 parent: 2 - - uid: 16390 + - uid: 16205 components: - type: Transform - pos: 62.5,-31.5 + pos: 24.5,43.5 parent: 2 - - uid: 16391 + - uid: 16206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-28.5 + pos: 20.5,43.5 parent: 2 - - uid: 16392 + - uid: 16207 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-27.5 + pos: -13.5,-2.5 parent: 2 - - uid: 16393 + - uid: 16208 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-26.5 + rot: -1.5707963267948966 rad + pos: 18.5,-2.5 parent: 2 - - uid: 16394 + - uid: 16209 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-25.5 + rot: 1.5707963267948966 rad + pos: -6.5,39.5 parent: 2 - - uid: 16395 + - uid: 16210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-23.5 + rot: -1.5707963267948966 rad + pos: -5.5,39.5 parent: 2 - - uid: 16396 + - uid: 16211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-29.5 + rot: -1.5707963267948966 rad + pos: -4.5,39.5 parent: 2 - - uid: 16397 + - uid: 16212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-29.5 + rot: 3.141592653589793 rad + pos: 12.5,-49.5 parent: 2 - - uid: 16398 + - uid: 41777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-23.5 - parent: 2 - - uid: 16399 + pos: 68.5,79.5 + parent: 40599 + - uid: 41778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-23.5 - parent: 2 - - uid: 16400 + pos: 59.5,79.5 + parent: 40599 + - uid: 41779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-23.5 - parent: 2 - - uid: 16401 + pos: 65.5,79.5 + parent: 40599 + - uid: 41780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-23.5 - parent: 2 - - uid: 16402 + pos: 62.5,79.5 + parent: 40599 +- proto: DartBlue + entities: + - uid: 16213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-23.5 + pos: -30.540325,26.018877 parent: 2 - - uid: 16403 +- proto: DartPurple + entities: + - uid: 16214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-16.5 + rot: -1.5707963267948966 rad + pos: -31.338303,25.057678 parent: 2 - - uid: 16404 +- proto: DartYellow + entities: + - uid: 16215 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,25.5 + pos: -30.696575,25.643877 parent: 2 - - uid: 16405 +- proto: DawInstrument + entities: + - uid: 16216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,25.5 + rot: -1.5707963267948966 rad + pos: 57.5,-6.5 parent: 2 - - uid: 16406 +- proto: DefaultStationBeacon + entities: + - uid: 16217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-37.5 + pos: 26.5,9.5 parent: 2 - - uid: 16407 + - type: NavMapBeacon + text: Игровой зал + - type: WarpPoint + location: Игровой зал +- proto: DefaultStationBeaconAI + entities: + - uid: 16218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-45.5 + pos: 2.5,14.5 parent: 2 - - uid: 16408 + - type: NavMapBeacon + text: ИИ + - type: WarpPoint + location: ИИ +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 16219 components: - type: Transform - pos: -9.5,-47.5 + pos: 15.5,-40.5 parent: 2 - - uid: 16409 + - type: NavMapBeacon + text: Аномалистика + - type: WarpPoint + location: РНД - Аномалистика +- proto: DefaultStationBeaconArmory + entities: + - uid: 16220 components: - type: Transform - pos: -9.5,-49.5 + pos: -43.5,-7.5 parent: 2 - - uid: 16410 + - type: NavMapBeacon + text: Оружейная + - type: WarpPoint + location: СБ - Оружейная +- proto: DefaultStationBeaconArrivals + entities: + - uid: 16221 components: - type: Transform - pos: -9.5,-48.5 + pos: 80.5,-22.5 parent: 2 - - uid: 16411 + - type: NavMapBeacon + text: Прибытие + - type: WarpPoint + location: Прибытие +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 16222 components: - type: Transform - pos: -9.5,-50.5 + pos: 48.5,-54.5 parent: 2 - - uid: 16412 + - type: NavMapBeacon + text: Ксеноархеология + - type: WarpPoint + location: РНД - Ксеноархеология +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 16223 components: - type: Transform - pos: -9.5,-51.5 + pos: -5.5,-59.5 parent: 2 - - uid: 16413 + - type: NavMapBeacon + text: Атмосферная + - type: WarpPoint + location: Инж - Атмосферная +- proto: DefaultStationBeaconBar + entities: + - uid: 16224 components: - type: Transform - pos: -9.5,-52.5 + pos: 41.5,20.5 parent: 2 - - uid: 16414 + - type: NavMapBeacon + text: Бар + - type: WarpPoint + location: Сервис - Бар +- proto: DefaultStationBeaconBotany + entities: + - uid: 16225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 + pos: 12.5,34.5 parent: 2 - - uid: 16415 + - type: NavMapBeacon + text: Гидропоника + - type: WarpPoint + location: Сервис - Гидропоника +- proto: DefaultStationBeaconBridge + entities: + - uid: 16226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-46.5 + pos: 2.5,3.5 parent: 2 - - uid: 16416 + - type: NavMapBeacon + text: Мостик + - type: WarpPoint + location: КМД - Мостик +- proto: DefaultStationBeaconBrig + entities: + - uid: 16227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-44.5 + pos: -37.5,0.5 parent: 2 - - uid: 16417 + - type: NavMapBeacon + text: Бриг + - type: WarpPoint + location: СБ - Бриг + - uid: 16228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-43.5 + pos: 97.5,-10.5 parent: 2 - - uid: 16418 + - type: NavMapBeacon + text: КПП Отбытие + - type: WarpPoint + location: СБ - КПП Отбытие + - uid: 16229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-42.5 + pos: -23.5,-9.5 parent: 2 - - uid: 16419 + - type: NavMapBeacon + text: Стрельбище + - type: WarpPoint + location: СБ - Стрельбище + - uid: 16230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-41.5 + pos: -43.5,11.5 parent: 2 - - uid: 16420 + - type: NavMapBeacon + text: Камеры + - type: WarpPoint + location: СБ - Камеры + - uid: 16231 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-40.5 + pos: -30.5,15.5 parent: 2 - - uid: 16421 + - type: NavMapBeacon + text: Вход в пермабриг + - type: WarpPoint + location: СБ - Вход в пермабриг + - uid: 16232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-39.5 + pos: -54.5,11.5 parent: 2 - - uid: 16422 + - type: NavMapBeacon + text: Мед брига + - type: WarpPoint + location: СБ - Мед брига +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 16233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-36.5 + pos: 12.5,-5.5 parent: 2 - - uid: 16423 + - type: NavMapBeacon + text: Каюта Капитана + - type: WarpPoint + location: КМД - Каюта Капитана +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 16234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-35.5 + pos: 66.5,-31.5 parent: 2 - - uid: 16424 + - type: NavMapBeacon + text: Стойка снабжения + - type: WarpPoint + location: Снаб - Стойка +- proto: DefaultStationBeaconCERoom + entities: + - uid: 16235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-34.5 + pos: 2.5,-48.5 parent: 2 - - uid: 16425 + - type: NavMapBeacon + text: Офис СИ + - type: WarpPoint + location: Инж - Офис СИ +- proto: DefaultStationBeaconChapel + entities: + - uid: 16236 components: - type: Transform - pos: -4.5,-41.5 + pos: 48.5,-10.5 parent: 2 - - uid: 16426 + - type: NavMapBeacon + text: Церковь + - type: WarpPoint + location: Сервис - Церковь +- proto: DefaultStationBeaconChemistry + entities: + - uid: 16237 components: - type: Transform - pos: -4.5,-42.5 + pos: -7.5,40.5 parent: 2 - - uid: 16427 + - type: NavMapBeacon + text: Химическая лаборатория + - type: WarpPoint + location: Мед - Химическая лаборатория +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 16238 components: - type: Transform - pos: -4.5,-43.5 + pos: -14.5,61.5 parent: 2 - - uid: 16428 + - type: NavMapBeacon + text: Офис ГВ + - type: WarpPoint + location: Мед - Офис ГВ +- proto: DefaultStationBeaconCryonics + entities: + - uid: 16239 components: - type: Transform - pos: -4.5,-44.5 + pos: -22.5,51.5 parent: 2 - - uid: 16429 + - type: NavMapBeacon + text: Криогенетика + - type: WarpPoint + location: Мед - Криогенетика +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 16240 components: - type: Transform - pos: -4.5,-45.5 + pos: 6.5,-33.5 parent: 2 - - uid: 16430 + - type: NavMapBeacon + text: Капсулы криосна + - type: WarpPoint + location: Капсулы криосна +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 16241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-46.5 + pos: -21.5,6.5 parent: 2 - - uid: 16431 + - type: NavMapBeacon + text: Детектив + - type: WarpPoint + location: СБ - Детектив +- proto: DefaultStationBeaconDisposals + entities: + - uid: 16242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-46.5 + pos: 72.5,-31.5 parent: 2 - - uid: 16432 + - type: NavMapBeacon + text: Мусоросброс + - type: WarpPoint + location: Мусоросброс +- proto: DefaultStationBeaconDorms + entities: + - uid: 16243 components: - type: Transform - pos: -9.5,-33.5 + pos: 35.5,-10.5 parent: 2 - - uid: 16433 + - type: NavMapBeacon + text: Дормы 1 + - type: WarpPoint + location: Дормы 1 + - uid: 16244 components: - type: Transform - pos: -9.5,-32.5 + pos: 34.5,-3.5 parent: 2 - - uid: 16434 + - type: NavMapBeacon + text: Дормы 3 + - type: WarpPoint + location: Дормы 3 + - uid: 16245 components: - type: Transform - pos: -9.5,-31.5 + pos: 40.5,11.5 parent: 2 - - uid: 16435 + - type: NavMapBeacon + text: Дормы 2 + - type: WarpPoint + location: Дормы 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 16246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-16.5 + pos: -9.5,-45.5 parent: 2 - - uid: 16436 + - type: NavMapBeacon + text: Инженерный отдел + - type: WarpPoint + location: Инж - Инженерный отдел + - uid: 16247 components: - type: Transform - pos: -9.5,-30.5 + pos: 4.5,-42.5 parent: 2 - - uid: 16437 + - type: NavMapBeacon + text: Инженерный гардероб + - type: WarpPoint + location: Инж - Инженерный гардероб + - uid: 16248 components: - type: Transform - pos: -9.5,-29.5 + pos: -28.5,-41.5 parent: 2 - - uid: 16438 + - type: NavMapBeacon + text: Двигатель Антиматерии + - type: WarpPoint + location: Инж - Двигатель Антиматерии +- proto: DefaultStationBeaconEvac + entities: + - uid: 16249 components: - type: Transform - pos: -9.5,-28.5 + pos: 103.5,-28.5 parent: 2 - - uid: 16439 + - type: NavMapBeacon + text: Отбытие + - type: WarpPoint + location: Отбытие +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 16250 components: - type: Transform - pos: -9.5,-27.5 + pos: -11.5,10.5 parent: 2 - - uid: 16440 + - type: NavMapBeacon + text: EVA + - type: WarpPoint + location: EVA +- proto: DefaultStationBeaconGravGen + entities: + - uid: 16251 components: - type: Transform - pos: -9.5,-26.5 + pos: -21.5,-36.5 parent: 2 - - uid: 16441 + - type: NavMapBeacon + text: Генераторная + - type: WarpPoint + location: Инж - Генераторная +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 16252 components: - type: Transform - pos: -9.5,-25.5 + pos: -8.5,-10.5 parent: 2 - - uid: 16442 + - type: NavMapBeacon + text: Офис ГП + - type: WarpPoint + location: КМД - Офис ГП +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 16253 components: - type: Transform - pos: -9.5,-24.5 + pos: -42.5,3.5 parent: 2 - - uid: 16443 + - type: NavMapBeacon + text: Офис ГСБ + - type: WarpPoint + location: СБ - Офис ГСБ + - uid: 16254 components: - type: Transform - pos: -9.5,-23.5 + pos: -32.5,6.5 parent: 2 - - uid: 16444 + - type: NavMapBeacon + text: Допросная + - type: WarpPoint + location: СБ - Допросная +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 16255 components: - type: Transform - pos: -9.5,-22.5 + pos: 3.5,33.5 parent: 2 - - uid: 16445 + - type: NavMapBeacon + text: Каморка Уборщика + - type: WarpPoint + location: Сервис - Каморка уборщика +- proto: DefaultStationBeaconKitchen + entities: + - uid: 16256 components: - type: Transform - pos: -9.5,-21.5 + pos: 29.5,31.5 parent: 2 - - uid: 16446 + - type: NavMapBeacon + text: Кухня + - type: WarpPoint + location: Сервис - Кухня +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 16257 components: - type: Transform - pos: -9.5,-20.5 + pos: -19.5,24.5 parent: 2 - - uid: 16447 + - type: NavMapBeacon + text: Офис АВД + - type: WarpPoint + location: КМД - Офис АВД +- proto: DefaultStationBeaconLibrary + entities: + - uid: 16258 components: - type: Transform - pos: -9.5,-19.5 + pos: -2.5,21.5 parent: 2 - - uid: 16448 + - type: NavMapBeacon + color: '#9FED58FF' + text: Библиотека + - type: WarpPoint + location: Сервис - Библиотека +- proto: DefaultStationBeaconMedbay + entities: + - uid: 16259 components: - type: Transform - pos: -9.5,-18.5 + pos: -1.5,49.5 parent: 2 - - uid: 16449 + - type: NavMapBeacon + text: Холл меда + - type: WarpPoint + location: Мед - Холл мед.отдела +- proto: DefaultStationBeaconMedical + entities: + - uid: 16260 components: - type: Transform - pos: -9.5,-17.5 + pos: -22.5,56.5 parent: 2 - - uid: 16450 + - type: NavMapBeacon + text: Хранилище медикаментов + - type: WarpPoint + location: Мед - Хранилище медикаментов + - uid: 16261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-16.5 + pos: -15.5,48.5 parent: 2 - - uid: 16451 + - type: NavMapBeacon + text: Палаты + - type: WarpPoint + location: Мед - Палаты + - uid: 16262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-16.5 + pos: -28.5,50.5 parent: 2 - - uid: 16452 + - type: NavMapBeacon + text: Клонерка + - type: WarpPoint + location: Мед - Клонерка + - uid: 16263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-16.5 + pos: 2.5,57.5 parent: 2 - - uid: 16453 + - type: NavMapBeacon + text: Вирусология + - type: WarpPoint + location: Мед - Вирусология + - uid: 16264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-16.5 + pos: 3.5,53.5 parent: 2 - - uid: 16454 + - type: NavMapBeacon + text: Комната Парамедика + - type: WarpPoint + location: Мед - Комната Парамедика + - uid: 16265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-16.5 + pos: 3.5,62.5 parent: 2 - - uid: 16455 + - type: NavMapBeacon + text: Кабинет Психолога + - type: WarpPoint + location: Мед - Кабинет Психолога + - uid: 16266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 + pos: -6.5,69.5 parent: 2 - - uid: 16456 + - type: NavMapBeacon + text: Психдиспансер + - type: WarpPoint + location: Мед - Психдиспансер +- proto: DefaultStationBeaconMorgue + entities: + - uid: 16267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 + pos: -15.5,43.5 parent: 2 - - uid: 16457 + - type: NavMapBeacon + text: Морг + - type: WarpPoint + location: Мед - Морг +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 16268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 + pos: -107.5,6.5 parent: 2 - - uid: 16458 + - type: NavMapBeacon + text: Пермабриг + - type: WarpPoint + location: СБ - Пермабриг +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 16269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-16.5 + pos: -14.5,-42.5 parent: 2 - - uid: 16459 + - type: NavMapBeacon + text: СМЭСы + - type: WarpPoint + location: Инж - СМЭСы +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 16270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-16.5 + pos: 73.5,-38.5 parent: 2 - - uid: 16460 + - type: NavMapBeacon + text: Офис КМ + - type: WarpPoint + location: Снаб - Офис КМ +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 16271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-16.5 + pos: 29.5,-52.5 parent: 2 - - uid: 16461 + - type: NavMapBeacon + text: Офис НР + - type: WarpPoint + location: РНД - Офис НР +- proto: DefaultStationBeaconRND + entities: + - uid: 16272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-16.5 + pos: 27.5,-38.5 parent: 2 - - uid: 16462 + - type: NavMapBeacon + text: Стойка НИО + - type: WarpPoint + location: РНД - Стойка +- proto: DefaultStationBeaconRobotics + entities: + - uid: 16273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-16.5 + pos: 22.5,-33.5 parent: 2 - - uid: 16463 + - type: NavMapBeacon + text: Роботехника + - type: WarpPoint + location: РНД - Роботехника +- proto: DefaultStationBeaconSalvage + entities: + - uid: 16274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-16.5 + pos: 76.5,-46.5 parent: 2 - - uid: 16464 + - type: NavMapBeacon + text: Утилизаторская + - type: WarpPoint + location: Снаб - Утилизаторская +- proto: DefaultStationBeaconScience + entities: + - uid: 16275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-16.5 + pos: 40.5,-47.5 parent: 2 - - uid: 16465 + - type: NavMapBeacon + text: Зал разработок + - type: WarpPoint + location: РНД - Зал разработок + - uid: 16276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-16.5 + pos: 40.5,-40.5 parent: 2 - - uid: 16466 + - type: NavMapBeacon + text: Ксенобиология + - type: WarpPoint + location: РНД - Ксенобиология + - uid: 16277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-16.5 + pos: 27.5,-47.5 parent: 2 - - uid: 16467 + - type: NavMapBeacon + text: Внутрений двор + - type: WarpPoint + location: РНД - Внутрений двор +- proto: DefaultStationBeaconSecurity + entities: + - uid: 16278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-16.5 + pos: -26.5,-16.5 parent: 2 - - uid: 16468 + - type: NavMapBeacon + text: Комната Брифинга + - type: WarpPoint + location: СБ - Комната Брифинга + - uid: 16279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-16.5 + pos: -29.5,-3.5 parent: 2 - - uid: 16469 + - type: NavMapBeacon + text: Стойка СБ + - type: WarpPoint + location: СБ - Стойка + - uid: 16280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-16.5 + pos: 67.5,-27.5 parent: 2 - - uid: 16470 + - type: NavMapBeacon + text: КПП Снабжение + - type: WarpPoint + location: СБ - КПП Снабжение +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 16281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-16.5 + pos: 23.5,-27.5 parent: 2 - - uid: 16471 + - type: NavMapBeacon + text: КПП НИО + - type: WarpPoint + location: СБ - КПП НИО + - uid: 16282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-16.5 + pos: -3.5,-32.5 parent: 2 - - uid: 16472 + - type: NavMapBeacon + text: КПП ИНЖ + - type: WarpPoint + location: СБ - КПП Инж + - uid: 16283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-16.5 + pos: -8.5,52.5 parent: 2 - - uid: 16473 + - type: NavMapBeacon + text: КПП Мед + - type: WarpPoint + location: СБ - КПП Мед +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 16284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-16.5 + pos: 37.5,-53.5 parent: 2 - - uid: 16474 + - type: NavMapBeacon + text: Серверная + - type: WarpPoint + location: РНД - Серверная +- proto: DefaultStationBeaconService + entities: + - uid: 16285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-16.5 + pos: 21.5,20.5 parent: 2 - - uid: 16475 + - type: NavMapBeacon + text: Зоотехник + - type: WarpPoint + location: Сервис - Зоотехник + - uid: 16286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-16.5 + pos: 11.5,20.5 parent: 2 - - uid: 16476 + - type: NavMapBeacon + text: Репортерская + - type: WarpPoint + location: Сервис - Репортерская + - uid: 16287 components: - type: Transform - pos: -5.5,52.5 - parent: 2 - - uid: 16477 - components: - - type: Transform - pos: -5.5,51.5 - parent: 2 - - uid: 16478 - components: - - type: Transform - pos: -5.5,50.5 + pos: -8.5,35.5 parent: 2 - - uid: 16479 + - type: NavMapBeacon + text: Барбершоп + - type: WarpPoint + location: Сервис - Барбершоп +- proto: DefaultStationBeaconSingularity + entities: + - uid: 16288 components: - type: Transform - pos: -5.5,49.5 + pos: -39.5,-41.5 parent: 2 - - uid: 16480 + - type: NavMapBeacon + text: Тесла + - type: WarpPoint + location: Инж - Тесла +- proto: DefaultStationBeaconSolars + entities: + - uid: 16289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,46.5 + pos: -34.5,-64.5 parent: 2 - - uid: 16481 + - type: NavMapBeacon + text: Солнечные панели + - type: WarpPoint + location: Инж - Солнечные панели 1 + - uid: 16290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,46.5 + pos: -55.5,63.5 parent: 2 - - uid: 16482 + - type: NavMapBeacon + text: Солнечные панели + - type: WarpPoint + location: Инж - Солнечные панели 2 +- proto: DefaultStationBeaconSupply + entities: + - uid: 16291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,46.5 + pos: 62.5,-43.5 parent: 2 - - uid: 16483 + - type: NavMapBeacon + text: Зал отгрузки + - type: WarpPoint + location: Снаб - Зал отгрузки +- proto: DefaultStationBeaconSurgery + entities: + - uid: 16292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,46.5 + pos: -24.5,46.5 parent: 2 - - uid: 16484 + - type: NavMapBeacon + text: Операционая + - type: WarpPoint + location: Мед - Операционая +- proto: DefaultStationBeaconTechVault + entities: + - uid: 16293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,46.5 + pos: 16.5,7.5 parent: 2 - - uid: 16485 + - type: NavMapBeacon + text: Хранилище плат + - type: WarpPoint + location: Инж - Хранилище плат +- proto: DefaultStationBeaconTEG + entities: + - uid: 16294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,46.5 + pos: -14.5,-50.5 parent: 2 - - uid: 16486 + - type: NavMapBeacon + text: ТЭГ + - type: WarpPoint + location: Инж - ТЭГ +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 16295 components: - type: Transform - pos: 4.5,46.5 + pos: -3.5,12.5 parent: 2 - - uid: 16487 + - type: NavMapBeacon + text: Телекоммы + - type: WarpPoint + location: КМД - Телекоммы +- proto: DefaultStationBeaconTheater + entities: + - uid: 16296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,47.5 + pos: 50.5,0.5 parent: 2 - - uid: 16488 + - type: NavMapBeacon + color: '#9FED58FF' + text: Театр + - type: WarpPoint + location: Сервис - Театр + - uid: 16297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,47.5 + pos: 57.5,7.5 parent: 2 - - uid: 16489 + - type: NavMapBeacon + text: Комнаты Клоуна, Мима, Музыканта + - type: WarpPoint + location: Сервис - Комнаты Клоуна, Мима, Музыканта +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 16298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,47.5 + pos: 25.5,-8.5 parent: 2 - - uid: 16490 + - type: NavMapBeacon + text: Склад инструментов + - type: WarpPoint + location: Склад инструментов +- proto: DefaultStationBeaconVault + entities: + - uid: 16299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,47.5 + pos: 2.5,-10.5 parent: 2 - - uid: 16491 + - type: NavMapBeacon + text: Хранилище + - type: WarpPoint + location: Хранилище +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 16300 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,51.5 + pos: -43.5,-15.5 parent: 2 - - uid: 16492 + - type: NavMapBeacon + text: Офис Смотрителя + - type: WarpPoint + location: СБ - Офис Смотрителя +- proto: DefibrillatorCabinetFilled + entities: + - uid: 16301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,50.5 + pos: -17.5,56.5 parent: 2 - - uid: 16493 + - uid: 16302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,47.5 + pos: -52.5,14.5 parent: 2 - - uid: 16494 + - uid: 16303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,47.5 + pos: 1.5,41.5 parent: 2 - - uid: 16495 + - uid: 16304 components: - type: Transform - pos: 13.5,43.5 + pos: -6.5,60.5 parent: 2 - - uid: 16496 + - uid: 16305 components: - type: Transform - pos: 13.5,41.5 + rot: 3.141592653589793 rad + pos: 8.5,-1.5 parent: 2 - - uid: 16497 + - uid: 16306 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,42.5 + pos: -104.5,0.5 parent: 2 - - uid: 16498 + - uid: 16307 components: - type: Transform - pos: -1.5,52.5 + pos: -15.5,45.5 parent: 2 - - uid: 16499 +- proto: DeployableBarrier + entities: + - uid: 16308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-30.5 + pos: -48.5,-7.5 parent: 2 - - uid: 16500 + - uid: 16309 components: - type: Transform - pos: -33.5,-2.5 + pos: -47.5,-6.5 parent: 2 - - uid: 16501 + - uid: 16310 components: - type: Transform - pos: 15.5,26.5 + pos: -47.5,-7.5 parent: 2 - - uid: 16502 + - uid: 16311 components: - type: Transform - pos: -33.5,-1.5 + pos: -48.5,-6.5 parent: 2 - - uid: 16503 + - uid: 16312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,44.5 + pos: -99.5,9.5 parent: 2 - - uid: 16504 + - uid: 16313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,45.5 + pos: -99.5,10.5 parent: 2 - - uid: 16505 + - uid: 16314 components: - type: Transform - pos: 21.5,-15.5 + pos: 93.5,-8.5 parent: 2 - - uid: 16506 + - uid: 16315 components: - type: Transform - pos: 21.5,-14.5 + pos: 94.5,-12.5 parent: 2 - - uid: 16507 + - uid: 16316 components: - type: Transform - pos: 21.5,-13.5 + pos: 94.5,-8.5 parent: 2 - - uid: 16508 + - uid: 16317 components: - type: Transform - pos: 21.5,-12.5 + pos: 93.5,-9.5 parent: 2 - - uid: 16509 + - uid: 16318 components: - type: Transform - pos: 21.5,-11.5 + pos: 94.5,-9.5 parent: 2 - - uid: 16510 + - uid: 16319 components: - type: Transform - pos: 21.5,-10.5 + pos: 92.5,-11.5 parent: 2 - - uid: 16511 + - uid: 16320 components: - type: Transform - pos: 21.5,-9.5 + pos: 93.5,-12.5 parent: 2 - - uid: 16512 + - uid: 16321 components: - type: Transform - pos: 21.5,-8.5 + pos: 92.5,-8.5 parent: 2 - - uid: 16513 + - uid: 16322 components: - type: Transform - pos: 21.5,-6.5 + pos: 92.5,-9.5 parent: 2 - - uid: 16514 + - uid: 16323 components: - type: Transform - pos: 21.5,-5.5 + pos: 94.5,-11.5 parent: 2 - - uid: 16515 + - uid: 16324 components: - type: Transform - pos: 21.5,-4.5 + pos: 93.5,-11.5 parent: 2 - - uid: 16516 +- proto: DeskBell + entities: + - uid: 16325 components: - type: Transform - pos: 21.5,-3.5 + pos: -29.411972,-1.4043849 parent: 2 - - uid: 16517 + missingComponents: + - Item + - uid: 16326 components: - type: Transform - pos: 21.5,-2.5 + pos: 40.52068,18.601406 parent: 2 - - uid: 16518 + missingComponents: + - Item + - Pullable + - uid: 16327 components: - type: Transform - pos: 21.5,-1.5 + pos: -4.5134487,-13.368498 parent: 2 - - uid: 16519 + missingComponents: + - Item + - uid: 16328 components: - type: Transform - pos: 21.5,0.5 + pos: 32.505127,30.646816 parent: 2 - - uid: 16520 + missingComponents: + - Item + - Pullable + - uid: 16329 components: - type: Transform - pos: 21.5,1.5 + pos: -7.4922056,-38.27432 parent: 2 - - uid: 16521 + missingComponents: + - Item + - Pullable + - uid: 16330 components: - type: Transform - pos: 21.5,2.5 + pos: 31.5,-36.5 parent: 2 - - uid: 16522 + - uid: 16331 components: - type: Transform - pos: 21.5,3.5 + pos: 0.4512856,37.57752 parent: 2 - - uid: 16523 + missingComponents: + - Item + - uid: 16332 components: - type: Transform - pos: 21.5,4.5 + pos: 61.515926,-32.362957 parent: 2 - - uid: 16524 + missingComponents: + - Item + - Pullable + - uid: 45591 components: - type: Transform - pos: 21.5,5.5 - parent: 2 - - uid: 16525 + pos: 4.379524,2.5255036 + parent: 45355 +- proto: DiceBag + entities: + - uid: 16333 components: - type: Transform - pos: 21.5,6.5 + pos: 1.7115016,19.625835 parent: 2 - - uid: 16526 +- proto: Dinkystar + entities: + - uid: 16334 components: + - type: MetaData + desc: Маленькая звёздочка только для самых трудолюбивых мапперов. Она все ещё с тобой, пусть они и не признают. + name: медаль "гордость сообщества" - type: Transform - pos: 21.5,7.5 + pos: -37.60158,24.470276 parent: 2 - - uid: 16527 +- proto: DiseaseDiagnoser + entities: + - uid: 16335 components: - type: Transform - pos: 21.5,8.5 + pos: 27.5,56.5 parent: 2 - - uid: 16528 +- proto: DiseaseSwab + entities: + - uid: 16336 components: - type: Transform - pos: 21.5,9.5 + pos: 14.548613,60.55369 parent: 2 - - uid: 16529 + - uid: 16337 components: - type: Transform - pos: 21.5,10.5 + pos: 8.486113,60.55369 parent: 2 - - uid: 16530 + - uid: 16338 components: - type: Transform - pos: 16.5,16.5 + pos: 16.439238,54.52366 parent: 2 - - uid: 16531 + - uid: 16339 components: - type: Transform - pos: 16.5,17.5 + pos: 16.595488,54.383034 parent: 2 - - uid: 16532 + - uid: 16340 components: - type: Transform - pos: 16.5,18.5 + pos: 16.173613,54.61741 parent: 2 - - uid: 16533 +- proto: DisgustingSweptSoup + entities: + - uid: 16341 components: - type: Transform - pos: 16.5,19.5 + pos: -64.49657,51.77253 parent: 2 - - uid: 16534 +- proto: DisposalBend + entities: + - uid: 16342 components: - type: Transform - pos: 16.5,20.5 + rot: 3.141592653589793 rad + pos: 63.5,17.5 parent: 2 - - uid: 16535 + - uid: 16343 components: - type: Transform - pos: 16.5,21.5 + pos: 68.5,17.5 parent: 2 - - uid: 16536 + - uid: 16344 components: - type: Transform - pos: 16.5,22.5 + rot: 3.141592653589793 rad + pos: 68.5,14.5 parent: 2 - - uid: 16537 + - uid: 16345 components: - type: Transform - pos: 16.5,23.5 + pos: 69.5,14.5 parent: 2 - - uid: 16538 + - uid: 16346 components: - type: Transform - pos: 16.5,24.5 + pos: 56.5,9.5 parent: 2 - - uid: 16539 + - uid: 16347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,14.5 + rot: 3.141592653589793 rad + pos: 69.5,10.5 parent: 2 - - uid: 16540 + - uid: 16348 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,32.5 + pos: 71.5,6.5 parent: 2 - - uid: 16541 + - uid: 16349 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,33.5 + pos: 70.5,9.5 parent: 2 - - uid: 16542 + - uid: 16350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-30.5 + pos: 70.5,10.5 parent: 2 - - uid: 16543 + - uid: 16351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-30.5 + pos: 68.5,-2.5 parent: 2 - - uid: 16544 + - uid: 16352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-29.5 + rot: 1.5707963267948966 rad + pos: 68.5,0.5 parent: 2 - - uid: 16545 + - uid: 16353 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-29.5 + pos: 71.5,1.5 parent: 2 - - uid: 16546 + - uid: 16354 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,-29.5 + pos: 69.5,0.5 parent: 2 - - uid: 16547 + - uid: 16355 components: - type: Transform - pos: 21.5,30.5 + rot: -1.5707963267948966 rad + pos: 67.5,-3.5 parent: 2 - - uid: 16548 + - uid: 16356 components: - type: Transform - pos: 13.5,44.5 + rot: 3.141592653589793 rad + pos: 44.5,-51.5 parent: 2 - - uid: 16549 + - uid: 16357 components: - type: Transform - pos: 21.5,29.5 + pos: 51.5,-34.5 parent: 2 - - uid: 16550 + - uid: 16358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,31.5 + rot: 1.5707963267948966 rad + pos: 35.5,-30.5 parent: 2 - - uid: 16551 + - uid: 16359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,32.5 + rot: 1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 - - uid: 16552 + - uid: 16360 components: - type: Transform - pos: 29.5,34.5 + pos: 29.5,36.5 parent: 2 - - uid: 16553 + - uid: 16361 components: - type: Transform - pos: 29.5,35.5 + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 2 - - uid: 16554 + - uid: 16362 components: - type: Transform - pos: 29.5,33.5 + rot: 3.141592653589793 rad + pos: 19.5,12.5 parent: 2 - - uid: 16555 + - uid: 16363 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,32.5 + pos: 21.5,25.5 parent: 2 - - uid: 16556 + - uid: 16364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,25.5 + rot: 3.141592653589793 rad + pos: 8.5,25.5 parent: 2 - - uid: 16557 + - uid: 16365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,28.5 + rot: 3.141592653589793 rad + pos: 14.5,-0.5 parent: 2 - - uid: 16558 + - uid: 16366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,28.5 + pos: 33.5,32.5 parent: 2 - - uid: 16559 + - uid: 16367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,28.5 + pos: 14.5,0.5 parent: 2 - - uid: 16560 + - uid: 16368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,28.5 + pos: 18.5,14.5 parent: 2 - - uid: 16561 + - uid: 16369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,28.5 + pos: 0.5,-48.5 parent: 2 - - uid: 16562 + - uid: 16370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,28.5 + rot: 3.141592653589793 rad + pos: -3.5,-48.5 parent: 2 - - uid: 16563 + - uid: 16371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,28.5 + pos: 74.5,-29.5 parent: 2 - - uid: 16564 + - uid: 16372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,28.5 + rot: -1.5707963267948966 rad + pos: 79.5,-45.5 parent: 2 - - uid: 16565 + - uid: 16373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,28.5 + rot: 3.141592653589793 rad + pos: 68.5,-45.5 parent: 2 - - uid: 16566 + - uid: 16374 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,28.5 + pos: -12.5,-45.5 parent: 2 - - uid: 16567 + - uid: 16375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,28.5 + pos: -3.5,-46.5 parent: 2 - - uid: 16568 + - uid: 16376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,28.5 + rot: -1.5707963267948966 rad + pos: -9.5,-53.5 parent: 2 - - uid: 16569 + - uid: 16377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,28.5 + pos: 13.5,45.5 parent: 2 - - uid: 16570 + - uid: 16378 components: - type: Transform - pos: 37.5,30.5 + rot: -1.5707963267948966 rad + pos: 9.5,28.5 parent: 2 - - uid: 16571 + - uid: 16379 components: - type: Transform - pos: 37.5,31.5 + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 parent: 2 - - uid: 16572 + - uid: 16380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,32.5 + rot: 3.141592653589793 rad + pos: 38.5,28.5 parent: 2 - - uid: 16573 + - uid: 16381 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,32.5 + pos: 13.5,31.5 parent: 2 - - uid: 16574 + - uid: 16382 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,30.5 + pos: -1.5,47.5 parent: 2 - - uid: 16575 + - uid: 16383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,29.5 + rot: 1.5707963267948966 rad + pos: -33.5,-0.5 parent: 2 - - uid: 16576 + - uid: 16384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-0.5 + rot: -1.5707963267948966 rad + pos: -5.5,33.5 parent: 2 - - uid: 16577 + - uid: 16385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-0.5 + pos: 20.5,12.5 parent: 2 - - uid: 16578 + - uid: 16386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-0.5 + rot: -1.5707963267948966 rad + pos: 64.5,-23.5 parent: 2 - - uid: 16579 + - uid: 16387 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-0.5 + pos: 66.5,-29.5 parent: 2 - - uid: 16580 + - uid: 16388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-0.5 + rot: -1.5707963267948966 rad + pos: 66.5,-30.5 parent: 2 - - uid: 16581 + - uid: 16389 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,0.5 + pos: -9.5,0.5 parent: 2 - - uid: 16582 + - uid: 16390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + pos: 19.5,13.5 parent: 2 - - uid: 16583 + - uid: 16391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + pos: 21.5,11.5 parent: 2 - - uid: 16584 + - uid: 16392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 + rot: 3.141592653589793 rad + pos: 20.5,11.5 parent: 2 - - uid: 16585 + - uid: 16393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 + rot: 3.141592653589793 rad + pos: 18.5,13.5 parent: 2 - - uid: 16586 + - uid: 16394 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-0.5 + pos: 37.5,32.5 parent: 2 - - uid: 16587 + - uid: 16395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 + pos: 21.5,31.5 parent: 2 - - uid: 16588 + - uid: 16396 components: - type: Transform - pos: -16.5,-1.5 + rot: 3.141592653589793 rad + pos: -16.5,-16.5 parent: 2 - - uid: 16589 + - uid: 16397 components: - type: Transform - pos: -16.5,-2.5 + rot: 1.5707963267948966 rad + pos: -13.5,14.5 parent: 2 - - uid: 16590 + - uid: 16398 components: - type: Transform - pos: -16.5,-3.5 + rot: -1.5707963267948966 rad + pos: -13.5,13.5 parent: 2 - - uid: 16591 + - uid: 16399 components: - type: Transform - pos: -16.5,-4.5 + rot: 1.5707963267948966 rad + pos: -14.5,13.5 parent: 2 - - uid: 16592 + - uid: 16400 components: - type: Transform - pos: -16.5,-5.5 + rot: -1.5707963267948966 rad + pos: -14.5,12.5 parent: 2 - - uid: 16593 + - uid: 16401 components: - type: Transform - pos: -16.5,-6.5 + rot: 1.5707963267948966 rad + pos: -15.5,12.5 parent: 2 - - uid: 16594 + - uid: 16402 components: - type: Transform - pos: -16.5,-7.5 + rot: -1.5707963267948966 rad + pos: -15.5,11.5 parent: 2 - - uid: 16595 + - uid: 16403 components: - type: Transform - pos: -16.5,-8.5 + rot: 1.5707963267948966 rad + pos: -16.5,11.5 parent: 2 - - uid: 16596 + - uid: 16404 components: - type: Transform - pos: -16.5,-9.5 + rot: 3.141592653589793 rad + pos: -33.5,-4.5 parent: 2 - - uid: 16597 + - uid: 16405 components: - type: Transform - pos: -16.5,-10.5 + rot: 1.5707963267948966 rad + pos: -47.5,-0.5 parent: 2 - - uid: 16598 + - uid: 16406 components: - type: Transform - pos: -16.5,-11.5 + rot: 1.5707963267948966 rad + pos: -54.5,11.5 parent: 2 - - uid: 16599 + - uid: 16407 components: - type: Transform - pos: -16.5,-12.5 + rot: 1.5707963267948966 rad + pos: -1.5,53.5 parent: 2 - - uid: 16600 + - uid: 16408 components: - type: Transform - pos: -16.5,-13.5 + rot: -1.5707963267948966 rad + pos: 24.5,-7.5 parent: 2 - - uid: 16601 + - uid: 16409 components: - type: Transform - pos: -16.5,-14.5 + rot: 1.5707963267948966 rad + pos: 67.5,-36.5 parent: 2 - - uid: 16602 + - uid: 16410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-16.5 + pos: 17.5,-12.5 parent: 2 - - uid: 16603 + - uid: 16411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-16.5 + rot: 3.141592653589793 rad + pos: 14.5,-12.5 parent: 2 - - uid: 16604 + - uid: 16412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 + pos: 14.5,-11.5 parent: 2 - - uid: 16605 + - uid: 16413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-16.5 + rot: 1.5707963267948966 rad + pos: 11.5,-11.5 parent: 2 - - uid: 16606 + - uid: 16414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-16.5 + pos: 11.5,-12.5 parent: 2 - - uid: 16607 + - uid: 16415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-16.5 + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 parent: 2 - - uid: 16608 + - uid: 16416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,14.5 + rot: 3.141592653589793 rad + pos: -12.5,-4.5 parent: 2 - - uid: 16609 + - uid: 16417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,14.5 + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 parent: 2 - - uid: 16610 + - uid: 16418 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,14.5 + pos: -8.5,-3.5 parent: 2 - - uid: 16611 + - uid: 16419 components: - type: Transform - pos: -16.5,10.5 + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 parent: 2 - - uid: 16612 + - uid: 16420 components: - type: Transform - pos: -16.5,9.5 + pos: -5.5,0.5 parent: 2 - - uid: 16613 + - uid: 16421 components: - type: Transform - pos: -16.5,8.5 + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 parent: 2 - - uid: 16614 + - uid: 16422 components: - type: Transform - pos: -16.5,7.5 + rot: 1.5707963267948966 rad + pos: -44.5,-12.5 parent: 2 - - uid: 16615 + - uid: 16423 components: - type: Transform - pos: -16.5,6.5 + rot: 3.141592653589793 rad + pos: -44.5,-14.5 parent: 2 - - uid: 16616 + - uid: 16424 components: - type: Transform - pos: -16.5,5.5 + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 parent: 2 - - uid: 16617 + - uid: 16425 components: - type: Transform - pos: -16.5,4.5 + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 parent: 2 - - uid: 16618 + - uid: 16426 components: - type: Transform - pos: -16.5,3.5 + rot: -1.5707963267948966 rad + pos: -36.5,12.5 parent: 2 - - uid: 16619 + - uid: 16427 components: - type: Transform - pos: -16.5,2.5 + rot: -1.5707963267948966 rad + pos: 18.5,39.5 parent: 2 - - uid: 16620 + - uid: 16428 components: - type: Transform - pos: -16.5,1.5 + rot: -1.5707963267948966 rad + pos: 26.5,42.5 parent: 2 - - uid: 16621 + - uid: 16429 components: - type: Transform - pos: 64.5,-22.5 + rot: 1.5707963267948966 rad + pos: 25.5,42.5 parent: 2 - - uid: 16622 + - uid: 16430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-24.5 + pos: 10.5,47.5 parent: 2 - - uid: 16623 + - uid: 16431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-3.5 + rot: 1.5707963267948966 rad + pos: 9.5,45.5 parent: 2 - - uid: 16624 + - uid: 16432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-3.5 + rot: 1.5707963267948966 rad + pos: -12.5,61.5 parent: 2 - - uid: 16625 + - uid: 16433 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-3.5 + pos: -25.5,-4.5 parent: 2 - - uid: 16626 + - uid: 16434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-3.5 + rot: 3.141592653589793 rad + pos: -12.5,58.5 parent: 2 - - uid: 16627 + - uid: 16435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-3.5 + rot: 1.5707963267948966 rad + pos: -25.5,-3.5 parent: 2 - - uid: 16628 + - uid: 16436 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-3.5 + pos: -22.5,-1.5 parent: 2 - - uid: 16629 + - uid: 16437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-3.5 + rot: 1.5707963267948966 rad + pos: -22.5,-0.5 parent: 2 - - uid: 16630 + - uid: 16438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-3.5 + pos: -5.5,58.5 parent: 2 - - uid: 16631 + - uid: 16439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 parent: 2 - - uid: 16632 + - uid: 16440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-3.5 + rot: -1.5707963267948966 rad + pos: -23.5,-2.5 parent: 2 - - uid: 16633 + - uid: 16441 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-4.5 + pos: -21.5,0.5 parent: 2 - - uid: 16634 + - uid: 16442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-4.5 + rot: -1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 - - uid: 16635 + - uid: 16443 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-4.5 + pos: -24.5,-2.5 parent: 2 - - uid: 16636 + - uid: 16444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-4.5 + rot: -1.5707963267948966 rad + pos: -24.5,-3.5 parent: 2 - - uid: 16637 + - uid: 16445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-4.5 + pos: 41.5,28.5 parent: 2 - - uid: 16638 + - uid: 16446 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-4.5 + pos: 40.5,29.5 parent: 2 - - uid: 16639 + - uid: 16447 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-5.5 + pos: 41.5,27.5 parent: 2 - - uid: 16640 + - uid: 16448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-6.5 + pos: 38.5,29.5 parent: 2 - - uid: 16641 + - uid: 16449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-7.5 + rot: -1.5707963267948966 rad + pos: 37.5,28.5 parent: 2 - - uid: 16642 + - uid: 16450 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-8.5 + pos: 46.5,26.5 parent: 2 - - uid: 16643 + - uid: 16451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-9.5 + pos: 47.5,26.5 parent: 2 - - uid: 16644 + - uid: 16452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-13.5 + rot: 1.5707963267948966 rad + pos: 43.5,18.5 parent: 2 - - uid: 16645 + - uid: 16453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-12.5 + rot: -1.5707963267948966 rad + pos: 12.5,-50.5 parent: 2 - - uid: 16646 + - uid: 16454 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-10.5 + pos: 32.5,-37.5 parent: 2 - - uid: 16647 + - uid: 16455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-3.5 + rot: -1.5707963267948966 rad + pos: 28.5,-35.5 parent: 2 - - uid: 16648 + - uid: 16456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-3.5 + pos: 28.5,-34.5 parent: 2 - - uid: 16649 + - uid: 16457 components: - type: Transform - pos: -47.5,-2.5 + rot: -1.5707963267948966 rad + pos: 36.5,-30.5 parent: 2 - - uid: 16650 + - uid: 16458 components: - type: Transform - pos: -47.5,-1.5 + rot: 1.5707963267948966 rad + pos: 36.5,-29.5 parent: 2 - - uid: 16651 + - uid: 16459 components: - type: Transform - pos: -37.5,-2.5 + rot: 1.5707963267948966 rad + pos: 32.5,-31.5 parent: 2 - - uid: 16652 + - uid: 16460 components: - type: Transform - pos: -37.5,-1.5 + rot: -1.5707963267948966 rad + pos: 35.5,-31.5 parent: 2 - - uid: 16653 + - uid: 16461 components: - type: Transform - pos: -37.5,-0.5 + rot: 3.141592653589793 rad + pos: 47.5,-32.5 parent: 2 - - uid: 16654 + - uid: 16462 components: - type: Transform - pos: -37.5,0.5 + rot: 3.141592653589793 rad + pos: 48.5,-33.5 parent: 2 - - uid: 16655 + - uid: 16463 components: - type: Transform - pos: -37.5,3.5 + rot: 3.141592653589793 rad + pos: 49.5,-34.5 parent: 2 - - uid: 16656 + - uid: 16464 components: - type: Transform - pos: -37.5,1.5 + pos: 49.5,-33.5 parent: 2 - - uid: 16657 + - uid: 16465 components: - type: Transform - pos: -37.5,2.5 + pos: 48.5,-32.5 parent: 2 - - uid: 16658 + - uid: 16466 components: - type: Transform - pos: -37.5,4.5 + pos: 46.5,-29.5 parent: 2 - - uid: 16659 + - uid: 16467 components: - type: Transform - pos: -37.5,5.5 + rot: -1.5707963267948966 rad + pos: 81.5,-37.5 parent: 2 - - uid: 16660 + - uid: 16468 components: - type: Transform - pos: -37.5,6.5 + rot: 3.141592653589793 rad + pos: 51.5,-37.5 parent: 2 - - uid: 16661 + - uid: 16469 components: - type: Transform - pos: -38.5,10.5 + rot: 3.141592653589793 rad + pos: 46.5,-30.5 parent: 2 - - uid: 16662 + - uid: 16470 components: - type: Transform - pos: -38.5,9.5 + pos: 47.5,-30.5 parent: 2 - - uid: 16663 + - uid: 16471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,11.5 + rot: 3.141592653589793 rad + pos: 62.5,-38.5 parent: 2 - - uid: 16664 + - uid: 16472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,11.5 + pos: 30.5,-56.5 parent: 2 - - uid: 16665 + - uid: 16473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,11.5 + rot: 3.141592653589793 rad + pos: 28.5,-56.5 parent: 2 - - uid: 16666 + - uid: 16474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,11.5 + rot: -1.5707963267948966 rad + pos: 32.5,-52.5 parent: 2 - - uid: 16667 + - uid: 16475 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,11.5 + pos: 28.5,-52.5 parent: 2 - - uid: 16668 + - uid: 16476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,11.5 + pos: 32.5,-47.5 parent: 2 - - uid: 16669 + - uid: 16477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,11.5 + pos: 44.5,-48.5 parent: 2 - - uid: 16670 + - uid: 16478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,11.5 + pos: 37.5,-41.5 parent: 2 - - uid: 16671 + - uid: 16479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,11.5 + rot: 3.141592653589793 rad + pos: 35.5,-41.5 parent: 2 - - uid: 16672 + - uid: 16480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,11.5 + rot: -1.5707963267948966 rad + pos: 23.5,-51.5 parent: 2 - - uid: 16673 + - uid: 16481 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,11.5 - parent: 2 - - uid: 16674 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,41.5 + pos: 19.5,-47.5 parent: 2 - - uid: 16675 + - uid: 16482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,40.5 + rot: -1.5707963267948966 rad + pos: 22.5,-43.5 parent: 2 - - uid: 16676 + - uid: 16483 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,39.5 + pos: 26.5,-42.5 parent: 2 - - uid: 16677 + - uid: 16484 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,37.5 + rot: 1.5707963267948966 rad + pos: 59.5,-29.5 parent: 2 - - uid: 16678 + - uid: 16485 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,36.5 + rot: 1.5707963267948966 rad + pos: 75.5,-37.5 parent: 2 - - uid: 16679 + - uid: 16486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,35.5 + rot: -1.5707963267948966 rad + pos: 75.5,-38.5 parent: 2 - - uid: 16680 + - uid: 16487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,34.5 + rot: 1.5707963267948966 rad + pos: 55.5,-23.5 parent: 2 - - uid: 16681 + - uid: 16488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,38.5 + rot: 1.5707963267948966 rad + pos: 71.5,2.5 parent: 2 - - uid: 16682 + - uid: 16489 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-7.5 + pos: 66.5,-5.5 parent: 2 - - uid: 16683 + - uid: 16490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-7.5 + pos: 72.5,2.5 parent: 2 - - uid: 16684 + - uid: 16491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-36.5 + pos: 71.5,9.5 parent: 2 - - uid: 16685 + - uid: 16492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,45.5 + pos: 72.5,6.5 parent: 2 - - uid: 16686 + - uid: 16493 components: - type: Transform - pos: -5.5,53.5 + rot: 1.5707963267948966 rad + pos: 69.5,1.5 parent: 2 - - uid: 16687 + - uid: 16494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 + pos: 60.5,19.5 parent: 2 - - uid: 16688 + - uid: 16495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-50.5 + rot: 1.5707963267948966 rad + pos: 66.5,-3.5 parent: 2 - - uid: 16689 + - uid: 16496 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-36.5 + pos: 67.5,-2.5 parent: 2 - - uid: 16690 + - uid: 16497 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-12.5 + pos: 64.5,-5.5 parent: 2 - - uid: 16691 + - uid: 16498 components: - type: Transform - pos: 17.5,-4.5 + rot: -1.5707963267948966 rad + pos: 51.5,18.5 parent: 2 - - uid: 16692 + - uid: 16499 components: - type: Transform - pos: 17.5,-5.5 + rot: -1.5707963267948966 rad + pos: 64.5,-6.5 parent: 2 - - uid: 16693 + - uid: 16500 components: - type: Transform - pos: 17.5,-6.5 + pos: 63.5,18.5 parent: 2 - - uid: 16694 + - uid: 16501 components: - type: Transform - pos: 17.5,-7.5 + rot: 3.141592653589793 rad + pos: 60.5,18.5 parent: 2 - - uid: 16695 + - uid: 16502 components: - type: Transform - pos: 17.5,-8.5 + rot: 3.141592653589793 rad + pos: 54.5,6.5 parent: 2 - - uid: 16696 + - uid: 16503 components: - type: Transform - pos: 17.5,-9.5 + rot: -1.5707963267948966 rad + pos: -102.5,23.5 parent: 2 - - uid: 16697 + - uid: 16504 components: - type: Transform - pos: 17.5,-10.5 + rot: 1.5707963267948966 rad + pos: -102.5,28.5 parent: 2 - - uid: 16698 + - uid: 16505 components: - type: Transform - pos: 17.5,-11.5 + rot: 1.5707963267948966 rad + pos: -117.5,10.5 parent: 2 - - uid: 16699 + - uid: 16506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-12.5 + pos: -110.5,32.5 parent: 2 - - uid: 16700 + - uid: 16507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-12.5 + rot: 3.141592653589793 rad + pos: -110.5,25.5 parent: 2 - - uid: 16701 + - uid: 16508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 + pos: -105.5,25.5 parent: 2 - - uid: 16702 + - uid: 16509 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-11.5 - parent: 2 - - uid: 16703 - components: - - type: Transform - pos: 8.5,-13.5 - parent: 2 - - uid: 16704 - components: - - type: Transform - pos: 8.5,-14.5 + pos: -105.5,7.5 parent: 2 - - uid: 16705 + - uid: 16510 components: - type: Transform - pos: 8.5,-15.5 + pos: -113.5,8.5 parent: 2 - - uid: 16706 + - uid: 16511 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-4.5 + rot: 3.141592653589793 rad + pos: -117.5,8.5 parent: 2 - - uid: 16707 + - uid: 16512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-4.5 + pos: 50.5,27.5 parent: 2 - - uid: 16708 + - uid: 16513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 + rot: 3.141592653589793 rad + pos: 45.5,31.5 parent: 2 - - uid: 16709 + - uid: 16514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-3.5 + pos: 51.5,26.5 parent: 2 - - uid: 16710 + - uid: 16515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-3.5 + pos: 46.5,31.5 parent: 2 - - uid: 16711 + - uid: 16516 components: - type: Transform - pos: -5.5,-2.5 + pos: 45.5,32.5 parent: 2 - - uid: 16712 + - uid: 16517 components: - type: Transform - pos: -5.5,-1.5 + rot: 3.141592653589793 rad + pos: 46.5,29.5 parent: 2 - - uid: 16713 + - uid: 16518 components: - type: Transform - pos: -5.5,-0.5 + rot: 3.141592653589793 rad + pos: 49.5,27.5 parent: 2 - - uid: 16714 + - uid: 16519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: 49.5,29.5 parent: 2 - - uid: 16715 + - uid: 16520 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,-5.5 + pos: 50.5,26.5 parent: 2 - - uid: 16716 + - uid: 16521 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,-5.5 + pos: -38.5,7.5 parent: 2 - - uid: 16717 + - uid: 16522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-5.5 + rot: -1.5707963267948966 rad + pos: -32.5,-14.5 parent: 2 - - uid: 16718 + - uid: 16523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-4.5 + rot: -1.5707963267948966 rad + pos: 74.5,-33.5 parent: 2 - - uid: 16719 + - uid: 16524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-4.5 + rot: 1.5707963267948966 rad + pos: 12.5,0.5 parent: 2 - - uid: 16720 + - uid: 16525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-4.5 + rot: -1.5707963267948966 rad + pos: -113.5,0.5 parent: 2 - - uid: 16721 + - uid: 16526 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,-3.5 + pos: -115.5,0.5 parent: 2 - - uid: 16722 + - uid: 41781 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-3.5 - parent: 2 - - uid: 16723 + pos: 72.5,59.5 + parent: 40599 + - uid: 41782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-3.5 - parent: 2 - - uid: 16724 + rot: -1.5707963267948966 rad + pos: 72.5,52.5 + parent: 40599 + - uid: 41783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-3.5 - parent: 2 - - uid: 16725 + rot: 3.141592653589793 rad + pos: 70.5,52.5 + parent: 40599 + - uid: 41784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-3.5 - parent: 2 - - uid: 16726 + pos: 70.5,56.5 + parent: 40599 + - uid: 41785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 - parent: 2 - - uid: 16727 + rot: 3.141592653589793 rad + pos: 67.5,56.5 + parent: 40599 + - uid: 41786 components: - type: Transform - pos: -44.5,-13.5 - parent: 2 - - uid: 16728 + pos: 67.5,57.5 + parent: 40599 + - uid: 41787 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-14.5 - parent: 2 - - uid: 16729 + pos: 64.5,57.5 + parent: 40599 + - uid: 41788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 2 - - uid: 16730 + rot: -1.5707963267948966 rad + pos: 64.5,56.5 + parent: 40599 + - uid: 41789 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-14.5 - parent: 2 - - uid: 16731 + pos: 59.5,56.5 + parent: 40599 + - uid: 41790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-14.5 - parent: 2 - - uid: 16732 + rot: -1.5707963267948966 rad + pos: 59.5,48.5 + parent: 40599 + - uid: 41791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-14.5 - parent: 2 - - uid: 16733 + pos: 52.5,48.5 + parent: 40599 + - uid: 41792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 - parent: 2 - - uid: 16734 + rot: -1.5707963267948966 rad + pos: 51.5,44.5 + parent: 40599 + - uid: 41793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,45.5 + parent: 40599 + - uid: 41794 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-12.5 - parent: 2 - - uid: 16735 + pos: 52.5,44.5 + parent: 40599 + - uid: 41795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-11.5 - parent: 2 - - uid: 16736 + pos: 47.5,43.5 + parent: 40599 + - uid: 41796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-11.5 - parent: 2 - - uid: 16737 + pos: 48.5,44.5 + parent: 40599 + - uid: 41797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-11.5 - parent: 2 - - uid: 16738 + pos: 56.5,44.5 + parent: 40599 + - uid: 41798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-11.5 - parent: 2 - - uid: 16739 + pos: 57.5,43.5 + parent: 40599 + - uid: 41799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-11.5 - parent: 2 - - uid: 16740 + rot: -1.5707963267948966 rad + pos: 48.5,43.5 + parent: 40599 + - uid: 41800 components: - type: Transform - pos: -50.5,16.5 - parent: 2 - - uid: 16741 + rot: 3.141592653589793 rad + pos: 56.5,43.5 + parent: 40599 + - uid: 41801 components: - type: Transform - pos: -50.5,15.5 - parent: 2 - - uid: 16742 + rot: -1.5707963267948966 rad + pos: 47.5,40.5 + parent: 40599 + - uid: 41802 components: - type: Transform - pos: -50.5,14.5 - parent: 2 - - uid: 16743 + rot: 3.141592653589793 rad + pos: 57.5,40.5 + parent: 40599 +- proto: DisposalJunction + entities: + - uid: 16527 components: - type: Transform - pos: -50.5,13.5 + pos: 62.5,-29.5 parent: 2 - - uid: 16744 + - uid: 16528 components: - type: Transform - pos: -50.5,12.5 + rot: -1.5707963267948966 rad + pos: 15.5,39.5 parent: 2 - - uid: 16745 + - uid: 16529 components: - type: Transform - pos: -46.5,12.5 + pos: -38.5,11.5 parent: 2 - - uid: 16746 + - uid: 16530 components: - type: Transform - pos: -46.5,13.5 + rot: 1.5707963267948966 rad + pos: 4.5,47.5 parent: 2 - - uid: 16747 + - uid: 16531 components: - type: Transform - pos: -46.5,14.5 + rot: 3.141592653589793 rad + pos: -9.5,-46.5 parent: 2 - - uid: 16748 + - uid: 16532 components: - type: Transform - pos: -46.5,15.5 + rot: -1.5707963267948966 rad + pos: 67.5,-38.5 parent: 2 - - uid: 16749 + - uid: 16533 components: - type: Transform - pos: -46.5,16.5 + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 parent: 2 - - uid: 16750 + - uid: 16534 components: - type: Transform - pos: -42.5,16.5 + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 parent: 2 - - uid: 16751 + - uid: 16535 components: - type: Transform - pos: -42.5,15.5 + pos: -1.5,48.5 parent: 2 - - uid: 16752 + - uid: 16536 components: - type: Transform - pos: -42.5,14.5 + rot: 1.5707963267948966 rad + pos: 16.5,25.5 parent: 2 - - uid: 16753 + - uid: 16537 components: - type: Transform - pos: -42.5,13.5 + rot: 1.5707963267948966 rad + pos: -32.5,-4.5 parent: 2 - - uid: 16754 + - uid: 16538 components: - type: Transform - pos: -42.5,12.5 + pos: -33.5,-3.5 parent: 2 - - uid: 16755 + - uid: 16539 components: - type: Transform - pos: -38.5,15.5 + rot: 1.5707963267948966 rad + pos: -40.5,11.5 parent: 2 - - uid: 16756 + - uid: 16540 components: - type: Transform - pos: -36.5,15.5 + rot: -1.5707963267948966 rad + pos: 29.5,32.5 parent: 2 - - uid: 16757 + - uid: 16541 components: - type: Transform - pos: -38.5,14.5 + rot: 1.5707963267948966 rad + pos: 34.5,28.5 parent: 2 - - uid: 16758 + - uid: 16542 components: - type: Transform - pos: -36.5,14.5 + rot: 3.141592653589793 rad + pos: 21.5,-7.5 parent: 2 - - uid: 16759 + - uid: 16543 components: - type: Transform - pos: -38.5,13.5 + rot: 1.5707963267948966 rad + pos: 11.5,45.5 parent: 2 - - uid: 16760 + - uid: 16544 components: - type: Transform - pos: -36.5,13.5 + rot: 3.141592653589793 rad + pos: 37.5,29.5 parent: 2 - - uid: 16761 + - uid: 16545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,12.5 + rot: 3.141592653589793 rad + pos: 0.5,-50.5 parent: 2 - - uid: 16762 + - uid: 16546 components: - type: Transform - pos: 18.5,42.5 + rot: 1.5707963267948966 rad + pos: -53.5,-3.5 parent: 2 - - uid: 16763 + - uid: 16547 components: - type: Transform - pos: 18.5,41.5 + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 parent: 2 - - uid: 16764 + - uid: 16548 components: - type: Transform - pos: 18.5,40.5 + pos: -16.5,0.5 parent: 2 - - uid: 16765 + - uid: 16549 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,39.5 + pos: 40.5,28.5 parent: 2 - - uid: 16766 + - uid: 16550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,39.5 + pos: 37.5,-45.5 parent: 2 - - uid: 16767 + - uid: 16551 components: - type: Transform - pos: 25.5,41.5 + rot: 1.5707963267948966 rad + pos: 29.5,-34.5 parent: 2 - - uid: 16768 + - uid: 16552 components: - type: Transform - pos: 25.5,40.5 + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 parent: 2 - - uid: 16769 + - uid: 16553 components: - type: Transform - pos: 25.5,39.5 + rot: 3.141592653589793 rad + pos: 32.5,-51.5 parent: 2 - - uid: 16770 + - uid: 16554 components: - type: Transform - pos: 25.5,38.5 + rot: 3.141592653589793 rad + pos: 32.5,-48.5 parent: 2 - - uid: 16771 + - uid: 16555 components: - type: Transform - pos: 25.5,37.5 + rot: -1.5707963267948966 rad + pos: 37.5,-48.5 parent: 2 - - uid: 16772 + - uid: 16556 components: - type: Transform - pos: 25.5,35.5 + rot: 1.5707963267948966 rad + pos: 23.5,-47.5 parent: 2 - - uid: 16773 + - uid: 16557 components: - type: Transform - pos: 25.5,36.5 + rot: 3.141592653589793 rad + pos: 22.5,-42.5 parent: 2 - - uid: 16774 + - uid: 16558 components: - type: Transform - pos: 25.5,34.5 + pos: -110.5,30.5 parent: 2 - - uid: 16775 + - uid: 16559 components: - type: Transform - pos: 25.5,33.5 + pos: -110.5,28.5 parent: 2 - - uid: 16776 + - uid: 16560 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,44.5 + pos: -37.5,7.5 parent: 2 - - uid: 16777 + - uid: 16561 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,44.5 + pos: -16.5,-15.5 parent: 2 - - uid: 16778 +- proto: DisposalJunctionFlipped + entities: + - uid: 16562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,46.5 + pos: 61.5,-6.5 parent: 2 - - uid: 16779 + - uid: 16563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,61.5 + pos: 61.5,-2.5 parent: 2 - - uid: 16780 + - uid: 16564 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,61.5 + pos: 72.5,-38.5 parent: 2 - - uid: 16781 + - uid: 16565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,61.5 + rot: 3.141592653589793 rad + pos: 62.5,-37.5 parent: 2 - - uid: 16782 + - uid: 16566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,58.5 + pos: 25.5,32.5 parent: 2 - - uid: 16783 + - uid: 16567 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,58.5 + pos: -7.5,0.5 parent: 2 - - uid: 16784 + - uid: 16568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,58.5 + rot: 1.5707963267948966 rad + pos: -47.5,-3.5 parent: 2 - - uid: 16785 + - uid: 16569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,58.5 + rot: 3.141592653589793 rad + pos: 21.5,27.5 parent: 2 - - uid: 16786 + - uid: 16570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,58.5 + pos: 13.5,39.5 parent: 2 - - uid: 16787 + - uid: 16571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,58.5 + rot: 1.5707963267948966 rad + pos: 25.5,28.5 parent: 2 - - uid: 16788 + - uid: 16572 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,59.5 + pos: -9.5,-45.5 parent: 2 - - uid: 16789 + - uid: 16573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,60.5 + rot: -1.5707963267948966 rad + pos: 68.5,-38.5 parent: 2 - - uid: 16790 + - uid: 16574 components: - type: Transform - pos: -5.5,55.5 + rot: 3.141592653589793 rad + pos: -9.5,-38.5 parent: 2 - - uid: 16791 + - uid: 16575 components: - type: Transform - pos: -5.5,56.5 + pos: 8.5,28.5 parent: 2 - - uid: 16792 + - uid: 16576 components: - type: Transform - pos: -5.5,57.5 + rot: 3.141592653589793 rad + pos: 21.5,-0.5 parent: 2 - - uid: 16793 + - uid: 16577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,0.5 + pos: -16.5,-0.5 parent: 2 - - uid: 16794 + - uid: 16578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,0.5 + rot: 1.5707963267948966 rad + pos: -37.5,-3.5 parent: 2 - - uid: 16795 + - uid: 16579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,0.5 + rot: 3.141592653589793 rad + pos: -5.5,46.5 parent: 2 - - uid: 16796 + - uid: 16580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,0.5 + rot: 1.5707963267948966 rad + pos: 10.5,45.5 parent: 2 - - uid: 16797 + - uid: 16581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,29.5 + rot: 3.141592653589793 rad + pos: -32.5,-11.5 parent: 2 - - uid: 16798 + - uid: 16582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,28.5 + pos: -42.5,11.5 parent: 2 - - uid: 16799 + - uid: 16583 components: - type: Transform - pos: 47.5,25.5 + rot: 1.5707963267948966 rad + pos: -46.5,11.5 parent: 2 - - uid: 16800 + - uid: 16584 components: - type: Transform - pos: 47.5,24.5 + rot: 1.5707963267948966 rad + pos: -50.5,11.5 parent: 2 - - uid: 16801 + - uid: 16585 components: - type: Transform - pos: 47.5,23.5 + pos: -5.5,54.5 parent: 2 - - uid: 16802 + - uid: 16586 components: - type: Transform - pos: 47.5,22.5 + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 parent: 2 - - uid: 16803 + - uid: 16587 components: - type: Transform - pos: 47.5,21.5 + pos: -38.5,12.5 parent: 2 - - uid: 16804 + - uid: 16588 components: - type: Transform - pos: 47.5,20.5 + rot: 1.5707963267948966 rad + pos: 47.5,18.5 parent: 2 - - uid: 16805 + - uid: 16589 components: - type: Transform - pos: 47.5,19.5 + rot: 3.141592653589793 rad + pos: 32.5,-34.5 parent: 2 - - uid: 16806 + - uid: 16590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,18.5 + rot: 3.141592653589793 rad + pos: 22.5,-41.5 parent: 2 - - uid: 16807 + - uid: 16591 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,18.5 + pos: 61.5,-23.5 parent: 2 - - uid: 16808 + - uid: 16592 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,18.5 + pos: -113.5,7.5 parent: 2 - - uid: 16809 + - uid: 16593 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,18.5 + pos: 56.5,6.5 parent: 2 - - uid: 16810 + - uid: 16594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,18.5 + pos: -113.5,1.5 parent: 2 - - uid: 16811 + - uid: 16595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 + pos: -105.5,23.5 parent: 2 - - uid: 16812 + - uid: 16596 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-50.5 + pos: -106.5,7.5 parent: 2 - - uid: 16813 + - uid: 16597 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-50.5 + pos: -113.5,4.5 parent: 2 - - uid: 16814 + - uid: 16598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-50.5 + pos: 21.5,8.5 parent: 2 - - uid: 16815 + - uid: 16599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-50.5 + rot: 3.141592653589793 rad + pos: -5.5,38.5 parent: 2 - - uid: 16816 + - uid: 41803 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-50.5 - parent: 2 - - uid: 16817 + pos: 68.5,56.5 + parent: 40599 +- proto: DisposalPipe + entities: + - uid: 16600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-50.5 + pos: 51.5,23.5 parent: 2 - - uid: 16818 + - uid: 16601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-50.5 + pos: 51.5,22.5 parent: 2 - - uid: 16819 + - uid: 16602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-50.5 + pos: 51.5,24.5 parent: 2 - - uid: 16820 + - uid: 16603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 + pos: 69.5,12.5 parent: 2 - - uid: 16821 + - uid: 16604 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-40.5 + pos: 61.5,-22.5 parent: 2 - - uid: 16822 + - uid: 16605 components: - type: Transform - pos: 32.5,-36.5 + pos: 69.5,11.5 parent: 2 - - uid: 16823 + - uid: 16606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 + pos: 71.5,8.5 parent: 2 - - uid: 16824 + - uid: 16607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-35.5 + pos: 71.5,7.5 parent: 2 - - uid: 16825 + - uid: 16608 components: - type: Transform - pos: 32.5,-33.5 + rot: 3.141592653589793 rad + pos: 61.5,-13.5 parent: 2 - - uid: 16826 + - uid: 16609 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-38.5 + pos: 61.5,-8.5 parent: 2 - - uid: 16827 + - uid: 16610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-29.5 + pos: 61.5,-5.5 parent: 2 - - uid: 16828 + - uid: 16611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-29.5 + pos: 61.5,-4.5 parent: 2 - - uid: 16829 + - uid: 16612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-29.5 + pos: 61.5,-3.5 parent: 2 - - uid: 16830 + - uid: 16613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-29.5 + rot: 3.141592653589793 rad + pos: 61.5,-15.5 parent: 2 - - uid: 16831 + - uid: 16614 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-36.5 + pos: 61.5,-17.5 parent: 2 - - uid: 16832 + - uid: 16615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-34.5 + rot: 3.141592653589793 rad + pos: 61.5,0.5 parent: 2 - - uid: 16833 + - uid: 16616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-31.5 + rot: 3.141592653589793 rad + pos: 61.5,-18.5 parent: 2 - - uid: 16834 + - uid: 16617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-34.5 + rot: 3.141592653589793 rad + pos: 61.5,-19.5 parent: 2 - - uid: 16835 + - uid: 16618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-31.5 + rot: 3.141592653589793 rad + pos: 61.5,-9.5 parent: 2 - - uid: 16836 + - uid: 16619 components: - type: Transform - pos: 32.5,-35.5 + rot: 3.141592653589793 rad + pos: 61.5,-21.5 parent: 2 - - uid: 16837 + - uid: 16620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-34.5 + rot: -1.5707963267948966 rad + pos: 53.5,19.5 parent: 2 - - uid: 16838 + - uid: 16621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-37.5 + rot: -1.5707963267948966 rad + pos: 54.5,19.5 parent: 2 - - uid: 16839 + - uid: 16622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-37.5 + pos: 36.5,-41.5 parent: 2 - - uid: 16840 + - uid: 16623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-35.5 + rot: 1.5707963267948966 rad + pos: 77.5,-37.5 parent: 2 - - uid: 16841 + - uid: 16624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-31.5 + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 parent: 2 - - uid: 16842 + - uid: 16625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-35.5 + rot: -1.5707963267948966 rad + pos: 9.5,47.5 parent: 2 - - uid: 16843 + - uid: 16626 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-36.5 + pos: 13.5,37.5 parent: 2 - - uid: 16844 + - uid: 16627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-35.5 + rot: -1.5707963267948966 rad + pos: 28.5,32.5 parent: 2 - - uid: 16845 + - uid: 16628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-37.5 + rot: -1.5707963267948966 rad + pos: 10.5,31.5 parent: 2 - - uid: 16846 + - uid: 16629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-34.5 + rot: -1.5707963267948966 rad + pos: 11.5,31.5 parent: 2 - - uid: 16847 + - uid: 16630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-35.5 + rot: -1.5707963267948966 rad + pos: 12.5,31.5 parent: 2 - - uid: 16848 + - uid: 16631 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-36.5 + pos: 13.5,34.5 parent: 2 - - uid: 16849 + - uid: 16632 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-35.5 + pos: 13.5,35.5 parent: 2 - - uid: 16850 + - uid: 16633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-37.5 + rot: 3.141592653589793 rad + pos: 13.5,38.5 parent: 2 - - uid: 16851 + - uid: 16634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-29.5 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 parent: 2 - - uid: 16852 + - uid: 16635 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-35.5 + pos: 15.5,-0.5 parent: 2 - - uid: 16853 + - uid: 16636 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-35.5 + pos: 13.5,0.5 parent: 2 - - uid: 16854 + - uid: 16637 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-37.5 + pos: 9.5,25.5 parent: 2 - - uid: 16855 + - uid: 16638 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-37.5 + pos: 10.5,25.5 parent: 2 - - uid: 16856 + - uid: 16639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-37.5 + rot: 3.141592653589793 rad + pos: 13.5,36.5 parent: 2 - - uid: 16857 + - uid: 16640 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-37.5 + pos: 12.5,25.5 parent: 2 - - uid: 16858 + - uid: 16641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-37.5 + rot: -1.5707963267948966 rad + pos: 6.5,47.5 parent: 2 - - uid: 16859 + - uid: 16642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-37.5 + rot: -1.5707963267948966 rad + pos: 8.5,47.5 parent: 2 - - uid: 16860 + - uid: 16643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-37.5 + pos: 13.5,42.5 parent: 2 - - uid: 16861 + - uid: 16644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-37.5 + pos: 13.5,40.5 parent: 2 - - uid: 16862 + - uid: 16645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-37.5 + pos: 34.5,26.5 parent: 2 - - uid: 16863 + - uid: 16646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-35.5 + pos: 34.5,27.5 parent: 2 - - uid: 16864 + - uid: 16647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-29.5 + pos: 16.5,15.5 parent: 2 - - uid: 16865 + - uid: 16648 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-29.5 + pos: 17.5,14.5 parent: 2 - - uid: 16866 + - uid: 16649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-29.5 + pos: 8.5,27.5 parent: 2 - - uid: 16867 + - uid: 16650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-29.5 + pos: 8.5,30.5 parent: 2 - - uid: 16868 + - uid: 16651 components: - type: Transform - pos: 32.5,-32.5 + rot: -1.5707963267948966 rad + pos: 17.5,25.5 parent: 2 - - uid: 16869 + - uid: 16652 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-56.5 + pos: 30.5,32.5 parent: 2 - - uid: 16870 + - uid: 16653 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-55.5 + pos: 21.5,26.5 parent: 2 - - uid: 16871 + - uid: 16654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-54.5 + pos: 15.5,40.5 parent: 2 - - uid: 16872 + - uid: 16655 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-52.5 + pos: 11.5,25.5 parent: 2 - - uid: 16873 + - uid: 16656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-52.5 + pos: 8.5,29.5 parent: 2 - - uid: 16874 + - uid: 16657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-52.5 + pos: 8.5,26.5 parent: 2 - - uid: 16875 + - uid: 16658 components: - type: Transform - pos: 28.5,-53.5 + rot: -1.5707963267948966 rad + pos: 19.5,25.5 parent: 2 - - uid: 16876 + - uid: 16659 components: - type: Transform - pos: 32.5,-50.5 + rot: 1.5707963267948966 rad + pos: 14.5,39.5 parent: 2 - - uid: 16877 + - uid: 16660 components: - type: Transform - pos: 32.5,-49.5 + rot: -1.5707963267948966 rad + pos: 18.5,25.5 parent: 2 - - uid: 16878 + - uid: 16661 components: - type: Transform - pos: 44.5,-49.5 + rot: -1.5707963267948966 rad + pos: 71.5,-29.5 parent: 2 - - uid: 16879 + - uid: 16662 components: - type: Transform - pos: 44.5,-50.5 + rot: 3.141592653589793 rad + pos: -5.5,43.5 parent: 2 - - uid: 16880 + - uid: 16663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-48.5 + rot: 1.5707963267948966 rad + pos: -2.5,-48.5 parent: 2 - - uid: 16881 + - uid: 16664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-48.5 + rot: 3.141592653589793 rad + pos: -3.5,-47.5 parent: 2 - - uid: 16882 + - uid: 16665 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-44.5 + rot: -1.5707963267948966 rad + pos: -2.5,48.5 parent: 2 - - uid: 16883 + - uid: 16666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-43.5 + rot: 1.5707963267948966 rad + pos: -0.5,47.5 parent: 2 - - uid: 16884 + - uid: 16667 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-42.5 + pos: -1.5,49.5 parent: 2 - - uid: 16885 + - uid: 16668 components: - type: Transform - pos: 35.5,-40.5 + pos: -5.5,47.5 parent: 2 - - uid: 16886 + - uid: 16669 components: - type: Transform - pos: 35.5,-39.5 + rot: -1.5707963267948966 rad + pos: -4.5,48.5 parent: 2 - - uid: 16887 + - uid: 16670 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-47.5 + pos: -3.5,48.5 parent: 2 - - uid: 16888 + - uid: 16671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-47.5 + pos: 0.5,-49.5 parent: 2 - - uid: 16889 + - uid: 16672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-47.5 + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 parent: 2 - - uid: 16890 + - uid: 16673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-47.5 + rot: 1.5707963267948966 rad + pos: -10.5,-45.5 parent: 2 - - uid: 16891 + - uid: 16674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-47.5 + rot: 1.5707963267948966 rad + pos: -1.5,-48.5 parent: 2 - - uid: 16892 + - uid: 16675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-48.5 + rot: 1.5707963267948966 rad + pos: -7.5,-16.5 parent: 2 - - uid: 16893 + - uid: 16676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-48.5 + rot: 3.141592653589793 rad + pos: 72.5,-40.5 parent: 2 - - uid: 16894 + - uid: 16677 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-46.5 + pos: 72.5,-39.5 parent: 2 - - uid: 16895 + - uid: 16678 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-48.5 + pos: 71.5,-38.5 parent: 2 - - uid: 16896 + - uid: 16679 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-48.5 + pos: 70.5,-38.5 parent: 2 - - uid: 16897 + - uid: 16680 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-47.5 + pos: 79.5,-44.5 parent: 2 - - uid: 16898 + - uid: 16681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 + rot: -1.5707963267948966 rad + pos: 78.5,-45.5 parent: 2 - - uid: 16899 + - uid: 16682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-48.5 + rot: -1.5707963267948966 rad + pos: 77.5,-45.5 parent: 2 - - uid: 16900 + - uid: 16683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-48.5 + rot: -1.5707963267948966 rad + pos: 76.5,-45.5 parent: 2 - - uid: 16901 + - uid: 16684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-48.5 + rot: -1.5707963267948966 rad + pos: 75.5,-45.5 parent: 2 - - uid: 16902 + - uid: 16685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-51.5 + rot: -1.5707963267948966 rad + pos: 73.5,-45.5 parent: 2 - - uid: 16903 + - uid: 16686 components: - type: Transform - pos: 23.5,-50.5 + rot: -1.5707963267948966 rad + pos: 74.5,-45.5 parent: 2 - - uid: 16904 + - uid: 16687 components: - type: Transform - pos: 23.5,-49.5 + rot: -1.5707963267948966 rad + pos: 72.5,-45.5 parent: 2 - - uid: 16905 + - uid: 16688 components: - type: Transform - pos: 23.5,-48.5 + rot: -1.5707963267948966 rad + pos: 71.5,-45.5 parent: 2 - - uid: 16906 + - uid: 16689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-47.5 + pos: 70.5,-45.5 parent: 2 - - uid: 16907 + - uid: 16690 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-47.5 + pos: 69.5,-45.5 parent: 2 - - uid: 16908 + - uid: 16691 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-46.5 + pos: 68.5,-44.5 parent: 2 - - uid: 16909 + - uid: 16692 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-45.5 + pos: 68.5,-43.5 parent: 2 - - uid: 16910 + - uid: 16693 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-44.5 + pos: 68.5,-42.5 parent: 2 - - uid: 16911 + - uid: 16694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-47.5 + rot: 3.141592653589793 rad + pos: 68.5,-41.5 parent: 2 - - uid: 16912 + - uid: 16695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-47.5 + rot: 3.141592653589793 rad + pos: 68.5,-40.5 parent: 2 - - uid: 16913 + - uid: 16696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-47.5 + rot: 3.141592653589793 rad + pos: 68.5,-39.5 parent: 2 - - uid: 16914 + - uid: 16697 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-41.5 + pos: 69.5,-38.5 parent: 2 - - uid: 16915 + - uid: 16698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-41.5 + pos: 67.5,-37.5 parent: 2 - - uid: 16916 + - uid: 16699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-41.5 + rot: -1.5707963267948966 rad + pos: 66.5,-38.5 parent: 2 - - uid: 16917 + - uid: 16700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-41.5 + rot: -1.5707963267948966 rad + pos: 65.5,-38.5 parent: 2 - - uid: 16918 + - uid: 16701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-41.5 + rot: -1.5707963267948966 rad + pos: 64.5,-38.5 parent: 2 - - uid: 16919 + - uid: 16702 components: - type: Transform - pos: 26.5,-43.5 + rot: -1.5707963267948966 rad + pos: 63.5,-38.5 parent: 2 - - uid: 16920 + - uid: 16703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-42.5 + rot: 3.141592653589793 rad + pos: 62.5,-36.5 parent: 2 - - uid: 16921 + - uid: 16704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-42.5 + rot: 3.141592653589793 rad + pos: 62.5,-35.5 parent: 2 - - uid: 16922 + - uid: 16705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-42.5 + rot: 1.5707963267948966 rad + pos: 67.5,-29.5 parent: 2 - - uid: 16923 + - uid: 16706 components: - type: Transform - pos: 59.5,-30.5 + rot: 3.141592653589793 rad + pos: 62.5,-33.5 parent: 2 - - uid: 16924 + - uid: 16707 components: - type: Transform - pos: 59.5,-31.5 + rot: 3.141592653589793 rad + pos: 62.5,-32.5 parent: 2 - - uid: 16925 + - uid: 16708 components: - type: Transform - pos: 59.5,-32.5 + pos: 62.5,-31.5 parent: 2 - - uid: 16926 + - uid: 16709 components: - type: Transform - pos: 59.5,-33.5 + rot: 3.141592653589793 rad + pos: 62.5,-28.5 parent: 2 - - uid: 16927 + - uid: 16710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-29.5 + rot: 3.141592653589793 rad + pos: 62.5,-27.5 parent: 2 - - uid: 16928 + - uid: 16711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-29.5 + rot: 3.141592653589793 rad + pos: 62.5,-26.5 parent: 2 - - uid: 16929 + - uid: 16712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,-25.5 + parent: 2 + - uid: 16713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-37.5 + pos: 63.5,-23.5 parent: 2 - - uid: 16930 + - uid: 16714 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,-37.5 + pos: 72.5,-29.5 parent: 2 - - uid: 16931 + - uid: 16715 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-38.5 + pos: 73.5,-29.5 parent: 2 - - uid: 16932 + - uid: 16716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,-38.5 + pos: 56.5,-23.5 parent: 2 - - uid: 16933 + - uid: 16717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,3.5 + rot: 1.5707963267948966 rad + pos: 57.5,-23.5 parent: 2 - - uid: 16934 + - uid: 16718 components: - type: Transform - pos: 68.5,15.5 + rot: 1.5707963267948966 rad + pos: 58.5,-23.5 parent: 2 - - uid: 16935 + - uid: 16719 components: - type: Transform - pos: 69.5,13.5 + rot: 1.5707963267948966 rad + pos: 59.5,-23.5 parent: 2 - - uid: 16936 + - uid: 16720 components: - type: Transform - pos: -113.5,0.5 + rot: 1.5707963267948966 rad + pos: 60.5,-23.5 parent: 2 - - uid: 16937 + - uid: 16721 components: - type: Transform - pos: 68.5,-0.5 + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 parent: 2 - - uid: 16938 + - uid: 16722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-1.5 + rot: 1.5707963267948966 rad + pos: 14.5,25.5 parent: 2 - - uid: 16939 + - uid: 16723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,18.5 + pos: 13.5,25.5 parent: 2 - - uid: 16940 + - uid: 16724 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,5.5 + pos: -9.5,-37.5 parent: 2 - - uid: 16941 + - uid: 16725 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,1.5 + pos: -11.5,-45.5 parent: 2 - - uid: 16942 + - uid: 16726 components: - type: Transform - pos: 68.5,-1.5 + pos: -9.5,-47.5 parent: 2 - - uid: 16943 + - uid: 16727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 + pos: -9.5,-49.5 parent: 2 - - uid: 16944 + - uid: 16728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-14.5 + pos: -9.5,-48.5 parent: 2 - - uid: 16945 + - uid: 16729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-16.5 + pos: -9.5,-50.5 parent: 2 - - uid: 16946 + - uid: 16730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,17.5 + pos: -9.5,-51.5 parent: 2 - - uid: 16947 + - uid: 16731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,4.5 + pos: -9.5,-52.5 parent: 2 - - uid: 16948 + - uid: 16732 components: - type: Transform - pos: 68.5,16.5 + rot: -1.5707963267948966 rad + pos: -8.5,-46.5 parent: 2 - - uid: 16949 + - uid: 16733 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,19.5 + pos: -7.5,-46.5 parent: 2 - - uid: 16950 + - uid: 16734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,19.5 + rot: 3.141592653589793 rad + pos: -9.5,-44.5 parent: 2 - - uid: 16951 + - uid: 16735 components: - type: Transform - pos: 66.5,-4.5 + rot: 3.141592653589793 rad + pos: -9.5,-43.5 parent: 2 - - uid: 16952 + - uid: 16736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-6.5 + rot: 3.141592653589793 rad + pos: -9.5,-42.5 parent: 2 - - uid: 16953 + - uid: 16737 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-12.5 + pos: -9.5,-41.5 parent: 2 - - uid: 16954 + - uid: 16738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-6.5 + rot: 3.141592653589793 rad + pos: -9.5,-40.5 parent: 2 - - uid: 16955 + - uid: 16739 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,-11.5 + pos: -9.5,-39.5 parent: 2 - - uid: 16956 + - uid: 16740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-5.5 + rot: 3.141592653589793 rad + pos: -9.5,-36.5 parent: 2 - - uid: 16957 + - uid: 16741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,19.5 + rot: 3.141592653589793 rad + pos: -9.5,-35.5 parent: 2 - - uid: 16958 + - uid: 16742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,19.5 + rot: 3.141592653589793 rad + pos: -9.5,-34.5 parent: 2 - - uid: 16959 + - uid: 16743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-10.5 + pos: -4.5,-41.5 parent: 2 - - uid: 16960 + - uid: 16744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-7.5 + pos: -4.5,-42.5 parent: 2 - - uid: 16961 + - uid: 16745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,17.5 + pos: -4.5,-43.5 parent: 2 - - uid: 16962 + - uid: 16746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,18.5 + pos: -4.5,-44.5 parent: 2 - - uid: 16963 + - uid: 16747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,6.5 + pos: -4.5,-45.5 parent: 2 - - uid: 16964 + - uid: 16748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,1.5 + rot: -1.5707963267948966 rad + pos: -6.5,-46.5 parent: 2 - - uid: 16965 + - uid: 16749 components: - type: Transform - pos: 56.5,7.5 + rot: -1.5707963267948966 rad + pos: -5.5,-46.5 parent: 2 - - uid: 16966 + - uid: 16750 components: - type: Transform - pos: 56.5,8.5 + pos: -9.5,-33.5 parent: 2 - - uid: 16967 + - uid: 16751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,6.5 + pos: -9.5,-32.5 parent: 2 - - uid: 16968 + - uid: 16752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,6.5 + pos: -9.5,-31.5 parent: 2 - - uid: 16969 + - uid: 16753 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,6.5 + pos: -6.5,-16.5 parent: 2 - - uid: 16970 + - uid: 16754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,6.5 + pos: -9.5,-30.5 parent: 2 - - uid: 16971 + - uid: 16755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,2.5 + pos: -9.5,-29.5 parent: 2 - - uid: 16972 + - uid: 16756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,4.5 + pos: -9.5,-28.5 parent: 2 - - uid: 16973 + - uid: 16757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,5.5 + pos: -9.5,-27.5 parent: 2 - - uid: 16974 + - uid: 16758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,19.5 + pos: -9.5,-26.5 parent: 2 - - uid: 16975 + - uid: 16759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,19.5 + pos: -9.5,-25.5 parent: 2 - - uid: 16976 + - uid: 16760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-20.5 + pos: -9.5,-24.5 parent: 2 - - uid: 16977 + - uid: 16761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,17.5 + pos: -9.5,-23.5 parent: 2 - - uid: 16978 + - uid: 16762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,17.5 + pos: -9.5,-22.5 parent: 2 - - uid: 16979 + - uid: 16763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,3.5 + pos: -9.5,-21.5 parent: 2 - - uid: 16980 + - uid: 16764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,27.5 + pos: -9.5,-20.5 parent: 2 - - uid: 16981 + - uid: 16765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,26.5 + pos: -9.5,-19.5 parent: 2 - - uid: 16982 + - uid: 16766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,25.5 + pos: -9.5,-18.5 parent: 2 - - uid: 16983 + - uid: 16767 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,24.5 + pos: -9.5,-17.5 parent: 2 - - uid: 16984 + - uid: 16768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,23.5 + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 parent: 2 - - uid: 16985 + - uid: 16769 components: - type: Transform - pos: -113.5,0.5 + rot: 1.5707963267948966 rad + pos: -4.5,-16.5 parent: 2 - - uid: 16986 + - uid: 16770 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,32.5 + pos: -3.5,-16.5 parent: 2 - - uid: 16987 + - uid: 16771 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,30.5 + pos: -2.5,-16.5 parent: 2 - - uid: 16988 + - uid: 16772 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,28.5 + pos: -1.5,-16.5 parent: 2 - - uid: 16989 + - uid: 16773 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,28.5 + pos: -0.5,-16.5 parent: 2 - - uid: 16990 + - uid: 16774 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,30.5 + pos: 0.5,-16.5 parent: 2 - - uid: 16991 + - uid: 16775 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,32.5 + pos: 1.5,-16.5 parent: 2 - - uid: 16992 + - uid: 16776 components: - type: Transform - pos: -110.5,31.5 + rot: 1.5707963267948966 rad + pos: 2.5,-16.5 parent: 2 - - uid: 16993 + - uid: 16777 components: - type: Transform - pos: -110.5,29.5 + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 parent: 2 - - uid: 16994 + - uid: 16778 components: - type: Transform - pos: -110.5,27.5 + rot: 1.5707963267948966 rad + pos: 4.5,-16.5 parent: 2 - - uid: 16995 + - uid: 16779 components: - type: Transform - pos: -110.5,26.5 + rot: 1.5707963267948966 rad + pos: 5.5,-16.5 parent: 2 - - uid: 16996 + - uid: 16780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,25.5 + rot: 1.5707963267948966 rad + pos: 6.5,-16.5 parent: 2 - - uid: 16997 + - uid: 16781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,25.5 + rot: 1.5707963267948966 rad + pos: 7.5,-16.5 parent: 2 - - uid: 16998 + - uid: 16782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,25.5 + rot: 1.5707963267948966 rad + pos: 9.5,-16.5 parent: 2 - - uid: 16999 + - uid: 16783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,25.5 + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 parent: 2 - - uid: 17000 + - uid: 16784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,24.5 + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 parent: 2 - - uid: 17001 + - uid: 16785 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,23.5 + pos: 12.5,-16.5 parent: 2 - - uid: 17002 + - uid: 16786 components: - type: Transform - pos: -105.5,22.5 + rot: 1.5707963267948966 rad + pos: 13.5,-16.5 parent: 2 - - uid: 17003 + - uid: 16787 components: - type: Transform - pos: -105.5,21.5 + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 parent: 2 - - uid: 17004 + - uid: 16788 components: - type: Transform - pos: -105.5,20.5 + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 parent: 2 - - uid: 17005 + - uid: 16789 components: - type: Transform - pos: -105.5,19.5 + rot: 1.5707963267948966 rad + pos: 16.5,-16.5 parent: 2 - - uid: 17006 + - uid: 16790 components: - type: Transform - pos: -105.5,18.5 + rot: 1.5707963267948966 rad + pos: 17.5,-16.5 parent: 2 - - uid: 17007 + - uid: 16791 components: - type: Transform - pos: -105.5,17.5 + rot: 1.5707963267948966 rad + pos: 18.5,-16.5 parent: 2 - - uid: 17008 + - uid: 16792 components: - type: Transform - pos: -105.5,16.5 + rot: 1.5707963267948966 rad + pos: 19.5,-16.5 parent: 2 - - uid: 17009 + - uid: 16793 components: - type: Transform - pos: -105.5,15.5 + rot: 1.5707963267948966 rad + pos: 20.5,-16.5 parent: 2 - - uid: 17010 + - uid: 16794 components: - type: Transform - pos: -105.5,14.5 + pos: -5.5,52.5 parent: 2 - - uid: 17011 + - uid: 16795 components: - type: Transform - pos: -105.5,13.5 + pos: -5.5,51.5 parent: 2 - - uid: 17012 + - uid: 16796 components: - type: Transform - pos: -105.5,12.5 + pos: -5.5,50.5 parent: 2 - - uid: 17013 + - uid: 16797 components: - type: Transform - pos: -105.5,11.5 + pos: -5.5,49.5 parent: 2 - - uid: 17014 + - uid: 16798 components: - type: Transform - pos: -105.5,10.5 + rot: -1.5707963267948966 rad + pos: -11.5,46.5 parent: 2 - - uid: 17015 + - uid: 16799 components: - type: Transform - pos: -105.5,9.5 + rot: -1.5707963267948966 rad + pos: -10.5,46.5 parent: 2 - - uid: 17016 + - uid: 16800 components: - type: Transform - pos: -105.5,8.5 + rot: -1.5707963267948966 rad + pos: -9.5,46.5 parent: 2 - - uid: 17017 + - uid: 16801 components: - type: Transform - pos: -113.5,6.5 + rot: -1.5707963267948966 rad + pos: -8.5,46.5 parent: 2 - - uid: 17018 + - uid: 16802 components: - type: Transform - pos: -113.5,5.5 + rot: -1.5707963267948966 rad + pos: -7.5,46.5 parent: 2 - - uid: 17019 + - uid: 16803 components: - type: Transform - pos: -113.5,3.5 + rot: -1.5707963267948966 rad + pos: -6.5,46.5 parent: 2 - - uid: 17020 + - uid: 16804 components: - type: Transform - pos: -113.5,2.5 + pos: 4.5,46.5 parent: 2 - - uid: 17021 + - uid: 16805 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.5,7.5 + pos: 3.5,47.5 parent: 2 - - uid: 17022 + - uid: 16806 components: - type: Transform rot: -1.5707963267948966 rad - pos: -111.5,7.5 + pos: 2.5,47.5 parent: 2 - - uid: 17023 + - uid: 16807 components: - type: Transform rot: -1.5707963267948966 rad - pos: -110.5,7.5 + pos: 1.5,47.5 parent: 2 - - uid: 17024 + - uid: 16808 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.5,7.5 + pos: 0.5,47.5 parent: 2 - - uid: 17025 + - uid: 16809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,7.5 + rot: 3.141592653589793 rad + pos: -1.5,51.5 parent: 2 - - uid: 17026 + - uid: 16810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,7.5 + rot: 3.141592653589793 rad + pos: -1.5,50.5 parent: 2 - - uid: 17027 + - uid: 16811 components: - type: Transform rot: -1.5707963267948966 rad - pos: -114.5,8.5 + pos: 5.5,47.5 parent: 2 - - uid: 17028 + - uid: 16812 components: - type: Transform rot: -1.5707963267948966 rad - pos: -115.5,8.5 + pos: 7.5,47.5 parent: 2 - - uid: 17029 + - uid: 16813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,8.5 + pos: 13.5,43.5 parent: 2 - - uid: 17030 + - uid: 16814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,9.5 + pos: 13.5,41.5 parent: 2 - - uid: 17031 + - uid: 16815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,4.5 + rot: 3.141592653589793 rad + pos: -5.5,42.5 parent: 2 - - uid: 17032 + - uid: 16816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,4.5 + pos: -1.5,52.5 parent: 2 - - uid: 17033 + - uid: 16817 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,4.5 + pos: 63.5,-30.5 parent: 2 - - uid: 17034 + - uid: 16818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,4.5 + pos: -33.5,-2.5 parent: 2 - - uid: 17035 + - uid: 16819 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,4.5 + pos: 15.5,25.5 parent: 2 - - uid: 17036 + - uid: 16820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,4.5 + pos: -33.5,-1.5 parent: 2 - - uid: 17037 + - uid: 16821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,4.5 + rot: 3.141592653589793 rad + pos: -5.5,44.5 parent: 2 - - uid: 17038 + - uid: 16822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,4.5 + rot: 3.141592653589793 rad + pos: -5.5,45.5 parent: 2 - - uid: 17039 + - uid: 16823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,4.5 + pos: 21.5,-15.5 parent: 2 - - uid: 17040 + - uid: 16824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,4.5 + pos: 21.5,-14.5 parent: 2 - - uid: 17041 + - uid: 16825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,4.5 + pos: 21.5,-13.5 parent: 2 - - uid: 17042 + - uid: 16826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,4.5 + pos: 21.5,-12.5 parent: 2 - - uid: 17043 + - uid: 16827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,4.5 + pos: 21.5,-11.5 parent: 2 - - uid: 17044 + - uid: 16828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,4.5 + pos: 21.5,-10.5 parent: 2 - - uid: 17045 + - uid: 16829 components: - type: Transform - pos: 51.5,21.5 + pos: 21.5,-9.5 parent: 2 - - uid: 17046 + - uid: 16830 components: - type: Transform - pos: 51.5,20.5 + pos: 21.5,-8.5 parent: 2 - - uid: 17047 + - uid: 16831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,32.5 + pos: 21.5,-6.5 parent: 2 - - uid: 17048 + - uid: 16832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,32.5 + pos: 21.5,-5.5 parent: 2 - - uid: 17049 + - uid: 16833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,32.5 + pos: 21.5,-4.5 parent: 2 - - uid: 17050 + - uid: 16834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,32.5 + pos: 21.5,-3.5 parent: 2 - - uid: 17051 + - uid: 16835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,32.5 + pos: 21.5,-2.5 parent: 2 - - uid: 17052 + - uid: 16836 components: - type: Transform - pos: 51.5,25.5 + pos: 21.5,-1.5 parent: 2 - - uid: 17053 + - uid: 16837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,32.5 + pos: 21.5,0.5 parent: 2 - - uid: 17054 + - uid: 16838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,32.5 + pos: 21.5,1.5 parent: 2 - - uid: 17055 + - uid: 16839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,29.5 + pos: 21.5,2.5 parent: 2 - - uid: 17056 + - uid: 16840 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,30.5 + pos: 21.5,3.5 parent: 2 - - uid: 17057 + - uid: 16841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,29.5 + pos: 21.5,4.5 parent: 2 - - uid: 17058 + - uid: 16842 components: - type: Transform - pos: 49.5,28.5 + pos: 21.5,5.5 parent: 2 - - uid: 17059 + - uid: 16843 components: - type: Transform - pos: -38.5,8.5 + pos: 21.5,6.5 parent: 2 - - uid: 17060 + - uid: 16844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 + pos: 21.5,7.5 parent: 2 - - uid: 17061 + - uid: 16845 components: - type: Transform - pos: 74.5,-30.5 + pos: 21.5,9.5 parent: 2 - - uid: 17062 + - uid: 16846 components: - type: Transform - pos: 74.5,-31.5 + pos: 21.5,10.5 parent: 2 - - uid: 17063 + - uid: 16847 components: - type: Transform - pos: 74.5,-32.5 + pos: 16.5,16.5 parent: 2 - - uid: 41408 + - uid: 16848 components: - type: Transform - pos: 70.5,55.5 - parent: 40203 - - uid: 41409 + pos: 16.5,17.5 + parent: 2 + - uid: 16849 components: - type: Transform - pos: 70.5,54.5 - parent: 40203 - - uid: 41410 + pos: 16.5,18.5 + parent: 2 + - uid: 16850 components: - type: Transform - pos: 70.5,53.5 - parent: 40203 - - uid: 41411 + pos: 16.5,19.5 + parent: 2 + - uid: 16851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,52.5 - parent: 40203 - - uid: 41412 + pos: 16.5,20.5 + parent: 2 + - uid: 16852 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,53.5 - parent: 40203 - - uid: 41413 + pos: 16.5,21.5 + parent: 2 + - uid: 16853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,55.5 - parent: 40203 - - uid: 41414 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,56.5 - parent: 40203 - - uid: 41415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,57.5 - parent: 40203 - - uid: 41416 + pos: 16.5,22.5 + parent: 2 + - uid: 16854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,58.5 - parent: 40203 - - uid: 41417 + pos: 16.5,23.5 + parent: 2 + - uid: 16855 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,54.5 - parent: 40203 - - uid: 41418 + pos: 16.5,24.5 + parent: 2 + - uid: 16856 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,59.5 - parent: 40203 - - uid: 41419 + pos: 15.5,14.5 + parent: 2 + - uid: 16857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,56.5 - parent: 40203 - - uid: 41420 + rot: 3.141592653589793 rad + pos: 13.5,32.5 + parent: 2 + - uid: 16858 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,55.5 - parent: 40203 - - uid: 41421 + pos: 13.5,33.5 + parent: 2 + - uid: 16859 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,56.5 - parent: 40203 - - uid: 41422 + pos: 64.5,-30.5 + parent: 2 + - uid: 16860 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,56.5 - parent: 40203 - - uid: 41423 + pos: 65.5,-30.5 + parent: 2 + - uid: 16861 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,56.5 - parent: 40203 - - uid: 41424 - components: - - type: Transform - pos: 59.5,55.5 - parent: 40203 - - uid: 41425 + pos: 68.5,-29.5 + parent: 2 + - uid: 16862 components: - type: Transform - pos: 59.5,53.5 - parent: 40203 - - uid: 41426 + rot: -1.5707963267948966 rad + pos: 69.5,-29.5 + parent: 2 + - uid: 16863 components: - type: Transform - pos: 59.5,52.5 - parent: 40203 - - uid: 41427 + rot: -1.5707963267948966 rad + pos: 70.5,-29.5 + parent: 2 + - uid: 16864 components: - type: Transform - pos: 59.5,51.5 - parent: 40203 - - uid: 41428 + pos: 21.5,30.5 + parent: 2 + - uid: 16865 components: - type: Transform - pos: 59.5,54.5 - parent: 40203 - - uid: 41429 + pos: 13.5,44.5 + parent: 2 + - uid: 16866 components: - type: Transform - pos: 59.5,50.5 - parent: 40203 - - uid: 41430 + pos: 21.5,29.5 + parent: 2 + - uid: 16867 components: - type: Transform - pos: 59.5,49.5 - parent: 40203 - - uid: 41431 + rot: 3.141592653589793 rad + pos: 25.5,31.5 + parent: 2 + - uid: 16868 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,48.5 - parent: 40203 - - uid: 41432 + pos: 32.5,32.5 + parent: 2 + - uid: 16869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,48.5 - parent: 40203 - - uid: 41433 + pos: 29.5,34.5 + parent: 2 + - uid: 16870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,48.5 - parent: 40203 - - uid: 41434 + pos: 29.5,35.5 + parent: 2 + - uid: 16871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,48.5 - parent: 40203 - - uid: 41435 + pos: 29.5,33.5 + parent: 2 + - uid: 16872 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,48.5 - parent: 40203 - - uid: 41436 + pos: 31.5,32.5 + parent: 2 + - uid: 16873 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,48.5 - parent: 40203 - - uid: 41437 - components: - - type: Transform - pos: 52.5,47.5 - parent: 40203 - - uid: 41438 - components: - - type: Transform - pos: 47.5,42.5 - parent: 40203 - - uid: 41439 - components: - - type: Transform - pos: 52.5,46.5 - parent: 40203 - - uid: 41440 - components: - - type: Transform - pos: 57.5,41.5 - parent: 40203 - - uid: 41441 + pos: 20.5,25.5 + parent: 2 + - uid: 16874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,44.5 - parent: 40203 - - uid: 41442 + pos: 22.5,28.5 + parent: 2 + - uid: 16875 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,44.5 - parent: 40203 - - uid: 41443 - components: - - type: Transform - pos: 47.5,41.5 - parent: 40203 - - uid: 41444 + pos: 23.5,28.5 + parent: 2 + - uid: 16876 components: - type: Transform - pos: 57.5,42.5 - parent: 40203 - - uid: 41445 + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 16877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,44.5 - parent: 40203 - - uid: 41446 + rot: 1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 16878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,44.5 - parent: 40203 - - uid: 41447 + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 16879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,44.5 - parent: 40203 -- proto: DisposalPipeBroken - entities: - - uid: 17064 + rot: 1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - uid: 16880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-0.5 + rot: 1.5707963267948966 rad + pos: 29.5,28.5 parent: 2 - - uid: 41448 + - uid: 16881 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,57.5 - parent: 40203 - - uid: 41449 + pos: 30.5,28.5 + parent: 2 + - uid: 16882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,57.5 - parent: 40203 - - uid: 41450 + rot: 1.5707963267948966 rad + pos: 31.5,28.5 + parent: 2 + - uid: 16883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,56.5 - parent: 40203 -- proto: DisposalSignalRouter - entities: - - uid: 41451 + rot: 1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - uid: 16884 components: - type: Transform - pos: 52.5,45.5 - parent: 40203 -- proto: DisposalTrunk - entities: - - uid: 17065 + rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - uid: 16885 components: - type: Transform - pos: 54.5,7.5 + rot: 1.5707963267948966 rad + pos: 35.5,28.5 parent: 2 - - uid: 17066 + - uid: 16886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-2.5 + rot: 1.5707963267948966 rad + pos: 36.5,28.5 parent: 2 - - uid: 17067 + - uid: 16887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 + pos: 37.5,30.5 parent: 2 - - uid: 17068 + - uid: 16888 components: - type: Transform - pos: 26.5,43.5 + pos: 37.5,31.5 parent: 2 - - uid: 17069 + - uid: 16889 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,61.5 + pos: 27.5,32.5 parent: 2 - - uid: 17070 + - uid: 16890 components: - type: Transform - pos: 15.5,41.5 + rot: -1.5707963267948966 rad + pos: 26.5,32.5 parent: 2 - - uid: 17071 + - uid: 16891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,31.5 + rot: 3.141592653589793 rad + pos: 25.5,30.5 parent: 2 - - uid: 17072 + - uid: 16892 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,31.5 + pos: 25.5,29.5 parent: 2 - - uid: 17073 + - uid: 16893 components: - type: Transform - pos: 9.5,29.5 + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 parent: 2 - - uid: 17074 + - uid: 16894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,31.5 + pos: 17.5,-0.5 parent: 2 - - uid: 17075 + - uid: 16895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,27.5 + pos: 18.5,-0.5 parent: 2 - - uid: 17076 + - uid: 16896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-0.5 + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 parent: 2 - - uid: 17077 + - uid: 16897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,25.5 + rot: 1.5707963267948966 rad + pos: 20.5,-0.5 parent: 2 - - uid: 17078 + - uid: 16898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-51.5 + rot: 1.5707963267948966 rad + pos: -8.5,0.5 parent: 2 - - uid: 17079 + - uid: 16899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,-41.5 + rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 - - uid: 17080 + - uid: 16900 components: - type: Transform - pos: 79.5,-43.5 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 - - uid: 17081 + - uid: 16901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-24.5 + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 - - uid: 17082 + - uid: 16902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-38.5 + pos: -13.5,-0.5 parent: 2 - - uid: 17083 + - uid: 16903 components: - type: Transform - pos: -4.5,-40.5 + rot: 1.5707963267948966 rad + pos: -14.5,-0.5 parent: 2 - - uid: 17084 + - uid: 16904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-46.5 + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 parent: 2 - - uid: 17085 + - uid: 16905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-53.5 + pos: -16.5,-1.5 parent: 2 - - uid: 17086 + - uid: 16906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,46.5 + pos: -16.5,-2.5 parent: 2 - - uid: 17087 + - uid: 16907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,45.5 + pos: -16.5,-3.5 parent: 2 - - uid: 17088 + - uid: 16908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-0.5 + pos: -16.5,-4.5 parent: 2 - - uid: 17089 + - uid: 16909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,27.5 + pos: -16.5,-5.5 parent: 2 - - uid: 17090 + - uid: 16910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 + pos: -16.5,-6.5 parent: 2 - - uid: 17091 + - uid: 16911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,33.5 + pos: -16.5,-7.5 parent: 2 - - uid: 17092 + - uid: 16912 components: - type: Transform - pos: 64.5,-21.5 + pos: -16.5,-8.5 parent: 2 - - uid: 17093 + - uid: 16913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,14.5 + pos: -16.5,-9.5 parent: 2 - - uid: 17094 + - uid: 16914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,36.5 + pos: -16.5,-10.5 parent: 2 - - uid: 17095 + - uid: 16915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,14.5 + pos: -16.5,-11.5 parent: 2 - - uid: 17096 + - uid: 16916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-0.5 + pos: -16.5,-12.5 parent: 2 - - uid: 17097 + - uid: 16917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,10.5 + pos: -16.5,-13.5 parent: 2 - - uid: 17098 + - uid: 16918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,10.5 + pos: -16.5,-14.5 parent: 2 - - uid: 17099 + - uid: 16919 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,53.5 + pos: -15.5,-16.5 parent: 2 - - uid: 17100 + - uid: 16920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,38.5 + rot: -1.5707963267948966 rad + pos: -14.5,-16.5 parent: 2 - - uid: 17101 + - uid: 16921 components: - type: Transform - pos: 24.5,-6.5 + rot: -1.5707963267948966 rad + pos: -13.5,-16.5 parent: 2 - - uid: 17102 + - uid: 16922 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,54.5 + pos: -12.5,-16.5 parent: 2 - - uid: 17103 + - uid: 16923 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,-36.5 + pos: -11.5,-16.5 parent: 2 - - uid: 17104 + - uid: 16924 components: - type: Transform - pos: -12.5,-3.5 + rot: -1.5707963267948966 rad + pos: -10.5,-16.5 parent: 2 - - uid: 17105 + - uid: 16925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-6.5 + rot: 1.5707963267948966 rad + pos: -12.5,14.5 parent: 2 - - uid: 17106 + - uid: 16926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-6.5 + rot: 1.5707963267948966 rad + pos: -10.5,14.5 parent: 2 - - uid: 17107 + - uid: 16927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-6.5 + rot: 1.5707963267948966 rad + pos: -11.5,14.5 parent: 2 - - uid: 17108 + - uid: 16928 components: - type: Transform - pos: -42.5,-11.5 + pos: -16.5,10.5 parent: 2 - - uid: 17109 + - uid: 16929 components: - type: Transform - pos: -46.5,17.5 + pos: -16.5,9.5 parent: 2 - - uid: 17110 + - uid: 16930 components: - type: Transform - pos: -42.5,17.5 + pos: -16.5,8.5 parent: 2 - - uid: 17111 + - uid: 16931 components: - type: Transform - pos: -50.5,17.5 + pos: -16.5,7.5 parent: 2 - - uid: 17112 + - uid: 16932 components: - type: Transform - pos: -38.5,16.5 + pos: -16.5,6.5 parent: 2 - - uid: 17113 + - uid: 16933 components: - type: Transform - pos: -36.5,16.5 + pos: -16.5,5.5 parent: 2 - - uid: 17114 + - uid: 16934 components: - type: Transform - pos: 18.5,43.5 + pos: -16.5,4.5 parent: 2 - - uid: 17115 + - uid: 16935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 + pos: -16.5,3.5 parent: 2 - - uid: 17116 + - uid: 16936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,43.5 + pos: -16.5,2.5 parent: 2 - - uid: 17117 + - uid: 16937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,29.5 + pos: -16.5,1.5 parent: 2 - - uid: 17118 + - uid: 16938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,27.5 + pos: 64.5,-22.5 parent: 2 - - uid: 17119 + - uid: 16939 components: - type: Transform - pos: 46.5,27.5 + rot: 3.141592653589793 rad + pos: 62.5,-24.5 parent: 2 - - uid: 17120 + - uid: 16940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,17.5 + rot: -1.5707963267948966 rad + pos: -44.5,-3.5 parent: 2 - - uid: 17121 + - uid: 16941 components: - type: Transform - pos: 12.5,-49.5 + rot: -1.5707963267948966 rad + pos: -43.5,-3.5 parent: 2 - - uid: 17122 + - uid: 16942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-30.5 + rot: -1.5707963267948966 rad + pos: -42.5,-3.5 parent: 2 - - uid: 17123 + - uid: 16943 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-35.5 + rot: -1.5707963267948966 rad + pos: -41.5,-3.5 parent: 2 - - uid: 17124 + - uid: 16944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-35.5 + rot: -1.5707963267948966 rad + pos: -40.5,-3.5 parent: 2 - - uid: 17125 + - uid: 16945 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-37.5 + pos: -39.5,-3.5 parent: 2 - - uid: 17126 + - uid: 16946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-57.5 + rot: -1.5707963267948966 rad + pos: -38.5,-3.5 parent: 2 - - uid: 17127 + - uid: 16947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-51.5 + pos: -36.5,-3.5 parent: 2 - - uid: 17128 + - uid: 16948 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-51.5 + pos: -34.5,-3.5 parent: 2 - - uid: 17129 + - uid: 16949 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-45.5 + pos: -35.5,-3.5 parent: 2 - - uid: 17130 + - uid: 16950 components: - type: Transform - pos: 35.5,-38.5 + rot: 1.5707963267948966 rad + pos: -31.5,-4.5 parent: 2 - - uid: 17131 + - uid: 16951 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-51.5 + pos: -30.5,-4.5 parent: 2 - - uid: 17132 + - uid: 16952 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-48.5 + rot: 1.5707963267948966 rad + pos: -29.5,-4.5 parent: 2 - - uid: 17133 + - uid: 16953 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-41.5 + pos: -28.5,-4.5 parent: 2 - - uid: 17134 + - uid: 16954 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-43.5 + pos: -27.5,-4.5 parent: 2 - - uid: 17135 + - uid: 16955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-34.5 + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 parent: 2 - - uid: 17136 + - uid: 16956 components: - type: Transform - pos: 81.5,-33.5 + rot: 3.141592653589793 rad + pos: -32.5,-5.5 parent: 2 - - uid: 17137 + - uid: 16957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,28.5 + rot: 3.141592653589793 rad + pos: -32.5,-6.5 parent: 2 - - uid: 17138 + - uid: 16958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,30.5 + rot: 3.141592653589793 rad + pos: -32.5,-7.5 parent: 2 - - uid: 17139 + - uid: 16959 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,6.5 + pos: -32.5,-8.5 parent: 2 - - uid: 17140 + - uid: 16960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,32.5 + rot: 3.141592653589793 rad + pos: -32.5,-9.5 parent: 2 - - uid: 17141 + - uid: 16961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,9.5 + rot: 3.141592653589793 rad + pos: -32.5,-13.5 parent: 2 - - uid: 17142 + - uid: 16962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,1.5 + rot: 3.141592653589793 rad + pos: -32.5,-12.5 parent: 2 - - uid: 17143 + - uid: 16963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,28.5 + rot: 3.141592653589793 rad + pos: -32.5,-10.5 parent: 2 - - uid: 17144 + - uid: 16964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,10.5 + rot: 1.5707963267948966 rad + pos: -45.5,-3.5 parent: 2 - - uid: 17145 + - uid: 16965 components: - - type: MetaData - desc: Да, это сетка, вопросы? - name: сетка - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,7.5 + pos: -46.5,-3.5 parent: 2 - - uid: 17146 + - uid: 16966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,4.5 + pos: -47.5,-2.5 parent: 2 - - uid: 17147 + - uid: 16967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-14.5 + pos: -47.5,-1.5 parent: 2 - - uid: 17148 + - uid: 16968 components: - type: Transform - pos: -37.5,8.5 + pos: -37.5,-2.5 parent: 2 - - uid: 17149 + - uid: 16969 components: - type: Transform - pos: -55.5,-2.5 + pos: -37.5,-1.5 parent: 2 - - uid: 17150 + - uid: 16970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-33.5 + pos: -37.5,-0.5 parent: 2 - - uid: 17151 + - uid: 16971 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-15.5 + pos: -37.5,0.5 parent: 2 - - uid: 41452 + - uid: 16972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,59.5 - parent: 40203 - - uid: 41453 + pos: -37.5,3.5 + parent: 2 + - uid: 16973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,54.5 - parent: 40203 - - uid: 41454 + pos: -37.5,1.5 + parent: 2 + - uid: 16974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,40.5 - parent: 40203 - - uid: 41455 + pos: -37.5,2.5 + parent: 2 + - uid: 16975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,40.5 - parent: 40203 -- proto: DisposalUnit - entities: - - uid: 17152 + pos: -37.5,4.5 + parent: 2 + - uid: 16976 components: - type: Transform - pos: 72.5,-41.5 + pos: -37.5,5.5 parent: 2 - - uid: 17153 + - uid: 16977 components: - type: Transform - pos: 24.5,-6.5 + pos: -37.5,6.5 parent: 2 - - uid: 17154 + - uid: 16978 components: - type: Transform - pos: -40.5,10.5 + pos: -38.5,10.5 parent: 2 - - uid: 17155 + - uid: 16979 components: - type: Transform - pos: 12.5,-0.5 + pos: -38.5,9.5 parent: 2 - - uid: 17156 + - uid: 16980 components: - type: Transform - pos: -7.5,-0.5 + rot: 1.5707963267948966 rad + pos: -39.5,11.5 parent: 2 - - uid: 17157 + - uid: 16981 components: - type: Transform - pos: 55.5,9.5 + rot: 1.5707963267948966 rad + pos: -41.5,11.5 parent: 2 - - uid: 17158 + - uid: 16982 components: - type: Transform - pos: 62.5,-2.5 + rot: 1.5707963267948966 rad + pos: -43.5,11.5 parent: 2 - - uid: 17159 + - uid: 16983 components: - type: Transform - pos: 54.5,7.5 + rot: 1.5707963267948966 rad + pos: -44.5,11.5 parent: 2 - - uid: 17160 + - uid: 16984 components: - type: Transform - pos: 33.5,31.5 + rot: 1.5707963267948966 rad + pos: -45.5,11.5 parent: 2 - - uid: 17161 + - uid: 16985 components: - type: Transform - pos: 28.5,36.5 + rot: 1.5707963267948966 rad + pos: -47.5,11.5 parent: 2 - - uid: 17162 + - uid: 16986 components: - type: Transform - pos: 43.5,17.5 + rot: 1.5707963267948966 rad + pos: -48.5,11.5 parent: 2 - - uid: 17163 + - uid: 16987 components: - type: Transform - pos: 7.5,31.5 + rot: 1.5707963267948966 rad + pos: -49.5,11.5 parent: 2 - - uid: 17164 + - uid: 16988 components: - type: Transform - pos: 15.5,41.5 + rot: 1.5707963267948966 rad + pos: -51.5,11.5 parent: 2 - - uid: 17165 + - uid: 16989 components: - type: Transform - pos: 34.5,25.5 + rot: 1.5707963267948966 rad + pos: -52.5,11.5 parent: 2 - - uid: 17166 + - uid: 16990 components: - type: Transform - pos: -6.5,-2.5 + rot: 1.5707963267948966 rad + pos: -53.5,11.5 parent: 2 - - uid: 17167 + - uid: 16991 components: - type: Transform - pos: 20.5,27.5 + rot: 3.141592653589793 rad + pos: -5.5,41.5 parent: 2 - - uid: 17168 + - uid: 16992 components: - type: Transform - pos: 16.5,27.5 + rot: 3.141592653589793 rad + pos: -5.5,40.5 parent: 2 - - uid: 17169 + - uid: 16993 components: - type: Transform - pos: 9.5,29.5 + rot: 3.141592653589793 rad + pos: -5.5,39.5 parent: 2 - - uid: 17170 + - uid: 16994 components: - type: Transform - pos: 33.5,-51.5 + rot: 3.141592653589793 rad + pos: -5.5,37.5 parent: 2 - - uid: 17171 + - uid: 16995 components: - type: Transform - pos: 19.5,-48.5 + rot: 3.141592653589793 rad + pos: -5.5,36.5 parent: 2 - - uid: 17172 + - uid: 16996 components: - type: Transform - pos: 16.5,-41.5 + rot: 3.141592653589793 rad + pos: -5.5,35.5 parent: 2 - - uid: 17173 + - uid: 16997 components: - type: Transform - pos: 21.5,-51.5 + rot: 3.141592653589793 rad + pos: -5.5,34.5 parent: 2 - - uid: 17174 + - uid: 16998 components: - type: Transform - pos: 33.5,-37.5 + rot: -1.5707963267948966 rad + pos: -6.5,38.5 parent: 2 - - uid: 17175 + - uid: 16999 components: - type: Transform - pos: 20.5,31.5 + rot: -1.5707963267948966 rad + pos: 23.5,-7.5 parent: 2 - - uid: 17176 + - uid: 17000 components: - type: Transform - pos: 45.5,-51.5 + rot: -1.5707963267948966 rad + pos: 22.5,-7.5 parent: 2 - - uid: 17177 + - uid: 17001 components: - type: Transform - pos: 35.5,-38.5 + rot: 1.5707963267948966 rad + pos: 68.5,-36.5 parent: 2 - - uid: 17178 + - uid: 17002 components: - type: Transform - pos: 19.5,-35.5 + rot: -1.5707963267948966 rad + pos: 12.5,45.5 parent: 2 - - uid: 17179 + - uid: 17003 components: - type: Transform - pos: 24.5,-45.5 + pos: -5.5,53.5 parent: 2 - - uid: 17180 + - uid: 17004 components: - type: Transform - pos: 21.5,-43.5 + rot: -1.5707963267948966 rad + pos: 2.5,-50.5 parent: 2 - - uid: 17181 + - uid: 17005 components: - type: Transform - pos: 14.5,14.5 + rot: -1.5707963267948966 rad + pos: 1.5,-50.5 parent: 2 - - uid: 17182 + - uid: 17006 components: - type: Transform - pos: -9.5,14.5 + rot: 1.5707963267948966 rad + pos: 69.5,-36.5 parent: 2 - - uid: 17183 + - uid: 17007 components: - type: Transform - pos: 79.5,-43.5 + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 parent: 2 - - uid: 17184 + - uid: 17008 components: - type: Transform - pos: -12.5,-46.5 + pos: 17.5,-4.5 parent: 2 - - uid: 17185 + - uid: 17009 components: - type: Transform - pos: -4.5,-40.5 + pos: 17.5,-5.5 parent: 2 - - uid: 17186 + - uid: 17010 components: - type: Transform - pos: 0.5,-51.5 + pos: 17.5,-6.5 parent: 2 - - uid: 17187 + - uid: 17011 components: - type: Transform - pos: -10.5,-38.5 + pos: 17.5,-7.5 parent: 2 - - uid: 17188 + - uid: 17012 components: - type: Transform - pos: -10.5,-53.5 + pos: 17.5,-8.5 parent: 2 - - uid: 17189 + - uid: 17013 components: - type: Transform - pos: 36.5,-45.5 + pos: 17.5,-9.5 parent: 2 - - uid: 17190 + - uid: 17014 components: - type: Transform - pos: 29.5,-35.5 + pos: 17.5,-10.5 parent: 2 - - uid: 17191 + - uid: 17015 components: - type: Transform - pos: -54.5,10.5 + pos: 17.5,-11.5 parent: 2 - - uid: 17192 + - uid: 17016 components: - type: Transform - pos: 55.5,-24.5 + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 parent: 2 - - uid: 17193 + - uid: 17017 components: - type: Transform - pos: -12.5,46.5 + rot: -1.5707963267948966 rad + pos: 15.5,-12.5 parent: 2 - - uid: 17194 + - uid: 17018 components: - type: Transform - pos: 4.5,45.5 + rot: -1.5707963267948966 rad + pos: 13.5,-11.5 parent: 2 - - uid: 17195 + - uid: 17019 components: - type: Transform - pos: -0.5,53.5 + rot: -1.5707963267948966 rad + pos: 12.5,-11.5 parent: 2 - - uid: 17196 + - uid: 17020 components: - type: Transform - pos: -32.5,-0.5 + pos: 8.5,-13.5 parent: 2 - - uid: 17197 + - uid: 17021 components: - type: Transform - pos: 64.5,-21.5 + pos: 8.5,-14.5 parent: 2 - - uid: 17198 + - uid: 17022 components: - type: Transform - pos: -46.5,-0.5 + pos: 8.5,-15.5 parent: 2 - - uid: 17199 + - uid: 17023 components: - type: Transform - pos: -6.5,33.5 + rot: 1.5707963267948966 rad + pos: -11.5,-4.5 parent: 2 - - uid: 17200 + - uid: 17024 components: - type: Transform - pos: -7.5,38.5 + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 parent: 2 - - uid: 17201 + - uid: 17025 components: - type: Transform - pos: -17.5,22.5 + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 parent: 2 - - uid: 17202 + - uid: 17026 components: - type: Transform - pos: -4.5,54.5 + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 parent: 2 - - uid: 17203 + - uid: 17027 components: - type: Transform - pos: 70.5,-36.5 + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 parent: 2 - - uid: 17204 + - uid: 17028 components: - type: Transform - pos: 59.5,-34.5 + pos: -5.5,-2.5 parent: 2 - - uid: 17205 + - uid: 17029 components: - type: Transform - pos: 67.5,-30.5 + pos: -5.5,-1.5 parent: 2 - - uid: 17206 + - uid: 17030 components: - type: Transform - pos: -106.5,6.5 + pos: -5.5,-0.5 parent: 2 - - uid: 17207 + - uid: 17031 components: - - type: MetaData - desc: Пневматическая установка для ловли мячей. - name: корзина для баскетболла - type: Transform - pos: -124.5,7.5 + rot: -1.5707963267948966 rad + pos: -6.5,0.5 parent: 2 - - uid: 17208 + - uid: 17032 components: - type: Transform - pos: -34.5,-14.5 + rot: 3.141592653589793 rad + pos: -55.5,-5.5 parent: 2 - - uid: 17209 + - uid: 17033 components: - type: Transform - pos: -37.5,8.5 + rot: 3.141592653589793 rad + pos: -53.5,-5.5 parent: 2 - - uid: 17210 + - uid: 17034 components: - type: Transform - pos: -101.5,28.5 + rot: 3.141592653589793 rad + pos: -51.5,-5.5 parent: 2 - - uid: 17211 + - uid: 17035 components: - type: Transform - pos: -116.5,10.5 + rot: 3.141592653589793 rad + pos: -51.5,-4.5 parent: 2 - - uid: 17212 + - uid: 17036 components: - type: Transform - pos: -112.5,1.5 + rot: 3.141592653589793 rad + pos: -53.5,-4.5 parent: 2 - - uid: 17213 + - uid: 17037 components: - type: Transform - pos: -98.5,4.5 + rot: 3.141592653589793 rad + pos: -55.5,-4.5 parent: 2 - - uid: 17214 + - uid: 17038 components: - type: Transform - pos: -55.5,-2.5 + rot: 1.5707963267948966 rad + pos: -54.5,-3.5 parent: 2 - - uid: 17215 + - uid: 17039 components: - type: Transform - pos: -17.5,-15.5 + rot: 1.5707963267948966 rad + pos: -52.5,-3.5 parent: 2 -- proto: DisposalYJunction - entities: - - uid: 17216 + - uid: 17040 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,-3.5 + pos: -50.5,-3.5 parent: 2 - - uid: 17217 + - uid: 17041 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,19.5 + pos: -49.5,-3.5 parent: 2 - - uid: 17218 + - uid: 17042 components: - type: Transform - pos: 62.5,-23.5 + rot: 1.5707963267948966 rad + pos: -48.5,-3.5 parent: 2 - - uid: 17219 + - uid: 17043 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,-30.5 + pos: -43.5,-12.5 parent: 2 - - uid: 17220 + - uid: 17044 components: - type: Transform - pos: 8.5,31.5 + pos: -44.5,-13.5 parent: 2 - - uid: 17221 + - uid: 17045 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,48.5 + pos: -43.5,-14.5 parent: 2 - - uid: 17222 + - uid: 17046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,14.5 + rot: 1.5707963267948966 rad + pos: -42.5,-14.5 parent: 2 - - uid: 17223 + - uid: 17047 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,28.5 + pos: -41.5,-14.5 parent: 2 - - uid: 17224 + - uid: 17048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,38.5 + rot: 1.5707963267948966 rad + pos: -40.5,-14.5 parent: 2 - - uid: 17225 + - uid: 17049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-47.5 + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 parent: 2 -- proto: DogBed - entities: - - uid: 10 + - uid: 17050 components: - type: Transform - pos: -3.5,-10.5 + rot: 3.141592653589793 rad + pos: -38.5,-13.5 parent: 2 - - type: HealOnBuckle - sleepAction: 11 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 11 - - uid: 17226 + - uid: 17051 components: - type: Transform - pos: 24.5,18.5 + rot: 3.141592653589793 rad + pos: -38.5,-12.5 parent: 2 - - uid: 17227 + - uid: 17052 components: - type: Transform - pos: -2.5,-56.5 + rot: 1.5707963267948966 rad + pos: -37.5,-11.5 parent: 2 - - uid: 17228 + - uid: 17053 components: - type: Transform - pos: -44.5,8.5 + rot: 1.5707963267948966 rad + pos: -36.5,-11.5 parent: 2 - - uid: 17229 + - uid: 17054 components: - type: Transform - pos: 3.5,51.5 + rot: 1.5707963267948966 rad + pos: -35.5,-11.5 parent: 2 - - uid: 17230 + - uid: 17055 components: - type: Transform - pos: -4.5,39.5 + rot: 1.5707963267948966 rad + pos: -34.5,-11.5 parent: 2 - - uid: 17231 + - uid: 17056 components: - type: Transform - pos: -15.5,60.5 + rot: 1.5707963267948966 rad + pos: -33.5,-11.5 parent: 2 - - uid: 17232 + - uid: 17057 components: - type: Transform - pos: -41.5,-17.5 + pos: -50.5,16.5 parent: 2 - - uid: 17233 + - uid: 17058 components: - type: Transform - pos: 39.5,48.5 + pos: -50.5,15.5 parent: 2 - - uid: 17234 + - uid: 17059 components: - type: Transform - pos: -3.5,18.5 + pos: -50.5,14.5 parent: 2 - - uid: 17235 + - uid: 17060 components: - type: Transform - pos: 13.5,-2.5 + pos: -50.5,13.5 parent: 2 - - uid: 17236 + - uid: 17061 components: - type: Transform - pos: -102.5,19.5 + pos: -50.5,12.5 parent: 2 -- proto: DonkpocketBoxSpawner - entities: - - uid: 17237 + - uid: 17062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-50.5 + pos: -46.5,12.5 parent: 2 - - uid: 17238 + - uid: 17063 components: - type: Transform - pos: 25.5,60.5 + pos: -46.5,13.5 parent: 2 - - uid: 17239 + - uid: 17064 components: - type: Transform - pos: 78.5,-48.5 + pos: -46.5,14.5 parent: 2 - - uid: 17240 + - uid: 17065 components: - type: Transform - pos: 7.5,43.5 + pos: -46.5,15.5 parent: 2 - - uid: 17241 + - uid: 17066 components: - type: Transform - pos: -46.5,2.5 + pos: -46.5,16.5 parent: 2 - - uid: 17242 + - uid: 17067 components: - type: Transform - pos: 70.5,-43.5 + pos: -42.5,16.5 parent: 2 - - uid: 41456 - components: - - type: Transform - pos: 48.5,78.5 - parent: 40203 -- proto: DoorElectronics - entities: - - uid: 17243 + - uid: 17068 components: - type: Transform - pos: 0.43813276,-43.361412 + pos: -42.5,15.5 parent: 2 - - uid: 17244 + - uid: 17069 components: - type: Transform - pos: 18.561398,6.7080803 + pos: -42.5,14.5 parent: 2 - - uid: 17245 + - uid: 17070 components: - type: Transform - pos: 18.436398,6.5674553 + pos: -42.5,13.5 parent: 2 -- proto: Dresser - entities: - - uid: 8214 + - uid: 17071 components: - type: Transform - pos: 29.5,5.5 + pos: -42.5,12.5 parent: 2 - - type: Storage - storedItems: - 8219: - position: 0,0 - _rotation: West - 8216: - position: 4,0 - _rotation: South - 8217: - position: 5,0 - _rotation: South - 8218: - position: 6,0 - _rotation: South - 8215: - position: 0,1 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 8216 - - 8217 - - 8219 - - 8218 - - 8215 - - uid: 14928 + - uid: 17072 components: - type: Transform - pos: -53.5,15.5 + pos: -38.5,15.5 parent: 2 - - type: Storage - storedItems: - 14929: - position: 0,0 - _rotation: East - 14930: - position: 0,1 - _rotation: West - 14934: - position: 0,2 - _rotation: South - 14936: - position: 2,2 - _rotation: South - 14933: - position: 4,2 - _rotation: South - 14932: - position: 4,0 - _rotation: South - 14931: - position: 6,2 - _rotation: South - 14935: - position: 2,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 14929 - - 14934 - - 14936 - - 14933 - - 14932 - - 14931 - - 14935 - - 14930 - - uid: 14939 + - uid: 17073 components: - type: Transform - pos: -39.5,35.5 + pos: -36.5,15.5 parent: 2 - - type: Storage - storedItems: - 14946: - position: 0,0 - _rotation: South - 14947: - position: 2,0 - _rotation: South - 14940: - position: 5,0 - _rotation: East - 14941: - position: 4,0 - _rotation: South - 14942: - position: 4,2 - _rotation: South - 14945: - position: 5,1 - _rotation: South - 14943: - position: 2,2 - _rotation: South - 14944: - position: 0,2 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 14946 - - 14947 - - 14943 - - 14944 - - 14942 - - 14941 - - 14940 - - 14945 - - uid: 17246 + - uid: 17074 components: - type: Transform - pos: 56.5,13.5 + pos: -38.5,14.5 parent: 2 - - uid: 17247 + - uid: 17075 components: - type: Transform - pos: 63.5,12.5 + pos: -36.5,14.5 parent: 2 - - uid: 17248 + - uid: 17076 components: - type: Transform - pos: 49.5,12.5 + pos: -38.5,13.5 parent: 2 - - uid: 17249 + - uid: 17077 components: - type: Transform - pos: 48.5,23.5 + pos: -36.5,13.5 parent: 2 - - uid: 17250 + - uid: 17078 components: - type: Transform - pos: -26.5,4.5 + rot: -1.5707963267948966 rad + pos: -37.5,12.5 parent: 2 - - uid: 17251 + - uid: 17079 components: - type: Transform - pos: -23.5,23.5 + pos: 18.5,42.5 parent: 2 - - uid: 41179 - components: - - type: Transform - pos: 45.5,28.5 - parent: 40203 - - type: Storage - storedItems: - 41180: - position: 0,0 - _rotation: East - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 41180 - - uid: 41457 - components: - - type: Transform - pos: 63.5,79.5 - parent: 40203 - - uid: 41458 - components: - - type: Transform - pos: 60.5,79.5 - parent: 40203 - - uid: 41459 + - uid: 17080 components: - type: Transform - pos: 66.5,79.5 - parent: 40203 - - uid: 41460 + pos: 18.5,41.5 + parent: 2 + - uid: 17081 components: - type: Transform - pos: 69.5,79.5 - parent: 40203 - - uid: 41461 + pos: 18.5,40.5 + parent: 2 + - uid: 17082 components: - type: Transform - pos: 72.5,79.5 - parent: 40203 - - uid: 41462 + rot: -1.5707963267948966 rad + pos: 16.5,39.5 + parent: 2 + - uid: 17083 components: - type: Transform - pos: 47.5,23.5 - parent: 40203 - - uid: 41463 + rot: -1.5707963267948966 rad + pos: 17.5,39.5 + parent: 2 + - uid: 17084 components: - type: Transform - pos: 45.5,23.5 - parent: 40203 - - uid: 41464 + pos: 25.5,41.5 + parent: 2 + - uid: 17085 components: - type: Transform - pos: 43.5,28.5 - parent: 40203 -- proto: DresserCaptainFilled - entities: - - uid: 17252 + pos: 25.5,40.5 + parent: 2 + - uid: 17086 components: - type: Transform - pos: 18.5,-9.5 + pos: 25.5,39.5 parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 17253 + - uid: 17087 components: - type: Transform - pos: 8.5,-47.5 + pos: 25.5,38.5 parent: 2 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 17254 + - uid: 17088 components: - type: Transform - pos: -14.5,62.5 + pos: 25.5,37.5 parent: 2 -- proto: DresserFilled - entities: - - uid: 17255 + - uid: 17089 components: - type: Transform - pos: 3.5,-32.5 + pos: 25.5,35.5 parent: 2 - - uid: 17256 + - uid: 17090 components: - type: Transform - pos: 9.5,-32.5 + pos: 25.5,36.5 parent: 2 - - uid: 17257 + - uid: 17091 components: - type: Transform - pos: 38.5,-4.5 + pos: 25.5,34.5 parent: 2 - - uid: 17258 + - uid: 17092 components: - type: Transform - pos: 35.5,-12.5 + pos: 25.5,33.5 parent: 2 - - uid: 17259 + - uid: 17093 components: - type: Transform - pos: 35.5,-9.5 + rot: 3.141592653589793 rad + pos: 9.5,44.5 parent: 2 - - uid: 17260 + - uid: 17094 components: - type: Transform - pos: 39.5,9.5 + rot: 3.141592653589793 rad + pos: 11.5,44.5 parent: 2 - - uid: 17261 + - uid: 17095 components: - type: Transform - pos: 42.5,9.5 + rot: 3.141592653589793 rad + pos: 10.5,46.5 parent: 2 - - uid: 17262 + - uid: 17096 components: - type: Transform - pos: 88.5,-27.5 + rot: -1.5707963267948966 rad + pos: -9.5,61.5 parent: 2 - - uid: 17263 + - uid: 17097 components: - type: Transform - pos: 6.5,60.5 + rot: -1.5707963267948966 rad + pos: -10.5,61.5 parent: 2 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 17264 + - uid: 17098 components: - type: Transform - pos: -12.5,-12.5 + rot: -1.5707963267948966 rad + pos: -11.5,61.5 parent: 2 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 17265 + - uid: 17099 components: - type: Transform - pos: -40.5,6.5 + rot: -1.5707963267948966 rad + pos: -11.5,58.5 parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 17266 + - uid: 17100 components: - type: Transform - pos: 80.5,-40.5 + rot: -1.5707963267948966 rad + pos: -10.5,58.5 parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 17267 + - uid: 17101 components: - type: Transform - pos: 28.5,-57.5 + rot: -1.5707963267948966 rad + pos: -9.5,58.5 parent: 2 -- proto: DresserWardenFilled - entities: - - uid: 17268 + - uid: 17102 components: - type: Transform - pos: -41.5,-18.5 + rot: -1.5707963267948966 rad + pos: -8.5,58.5 parent: 2 -- proto: DrinkAlexanderGlass - entities: - - uid: 17269 + - uid: 17103 components: - type: Transform - pos: -23.915451,26.713629 + rot: -1.5707963267948966 rad + pos: -7.5,58.5 parent: 2 -- proto: DrinkAntifreeze - entities: - - uid: 17270 + - uid: 17104 components: - type: Transform - pos: 40.461464,20.47035 + rot: -1.5707963267948966 rad + pos: -6.5,58.5 parent: 2 -- proto: DrinkBananaHonkGlass - entities: - - uid: 17271 + - uid: 17105 components: - type: Transform - pos: 53.63142,11.6875 + rot: 3.141592653589793 rad + pos: -12.5,59.5 parent: 2 -- proto: DrinkBeerBottleFull - entities: - - uid: 17272 + - uid: 17106 components: - type: Transform - pos: -17.604513,60.770355 + rot: 3.141592653589793 rad + pos: -12.5,60.5 parent: 2 - - uid: 17273 + - uid: 17107 components: - type: Transform - pos: -4.3240085,-43.492805 + pos: -5.5,55.5 parent: 2 - - uid: 17274 + - uid: 17108 components: - type: Transform - pos: -78.51213,4.1784406 + pos: -5.5,56.5 parent: 2 - - uid: 17275 + - uid: 17109 components: - type: Transform - pos: -79.82463,4.5065656 + pos: -5.5,57.5 parent: 2 - - uid: 41465 + - uid: 17110 components: - type: Transform - pos: 38.883614,32.806175 - parent: 40203 -- proto: DrinkBeerCan - entities: - - uid: 17276 + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - uid: 17111 components: - type: Transform - pos: 96.61755,-0.5079489 + rot: -1.5707963267948966 rad + pos: -19.5,0.5 parent: 2 - - uid: 17277 + - uid: 17112 components: - type: Transform - pos: -60.68753,51.782227 + rot: -1.5707963267948966 rad + pos: -18.5,0.5 parent: 2 - - uid: 17278 + - uid: 17113 components: - type: Transform - pos: -60.401028,51.53483 + rot: -1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - - uid: 17279 + - uid: 17114 components: - type: Transform - pos: -62.98163,54.13822 + rot: -1.5707963267948966 rad + pos: 41.5,29.5 parent: 2 - - uid: 17280 + - uid: 17115 components: - type: Transform - pos: -62.669075,54.28145 + rot: 1.5707963267948966 rad + pos: 39.5,28.5 parent: 2 - - uid: 17281 + - uid: 17116 components: - type: Transform - pos: -62.929535,52.942036 + pos: 47.5,25.5 parent: 2 - - uid: 17283 + - uid: 17117 components: - type: Transform - parent: 17282 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17284 + pos: 47.5,24.5 + parent: 2 + - uid: 17118 components: - type: Transform - parent: 17282 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17285 + pos: 47.5,23.5 + parent: 2 + - uid: 17119 components: - type: Transform - parent: 17282 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17286 + pos: 47.5,22.5 + parent: 2 + - uid: 17120 components: - type: Transform - rot: -4.363323129985824 rad - pos: -91.90664,11.140566 + pos: 47.5,21.5 parent: 2 - - uid: 17287 + - uid: 17121 components: - type: Transform - pos: -81.624466,3.17995 + pos: 47.5,20.5 parent: 2 - - uid: 17288 + - uid: 17122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.280716,4.60809 + pos: 47.5,19.5 parent: 2 - - uid: 17289 + - uid: 17123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.60193,4.492051 + rot: 1.5707963267948966 rad + pos: 48.5,18.5 parent: 2 - - uid: 17290 + - uid: 17124 components: - type: Transform - pos: -64.80744,68.54269 + rot: 1.5707963267948966 rad + pos: 49.5,18.5 parent: 2 - - uid: 17291 + - uid: 17125 components: - type: Transform - pos: -28.115477,43.8125 + rot: 1.5707963267948966 rad + pos: 50.5,18.5 parent: 2 - - uid: 17292 + - uid: 17126 components: - type: Transform - pos: -28.162352,43.703125 + rot: 1.5707963267948966 rad + pos: 44.5,18.5 parent: 2 - - uid: 40288 + - uid: 17127 components: - type: Transform - parent: 40283 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkBeerglass - entities: - - uid: 17293 + rot: 1.5707963267948966 rad + pos: 45.5,18.5 + parent: 2 + - uid: 17128 components: - type: Transform - pos: 97.24832,-25.422596 + rot: 1.5707963267948966 rad + pos: 46.5,18.5 parent: 2 - - uid: 17294 + - uid: 17129 components: - type: Transform - pos: 97.81082,-25.500721 + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 parent: 2 -- proto: DrinkBlueCuracaoBottleFull - entities: - - uid: 17295 + - uid: 17130 components: - type: Transform - pos: 43.799263,49.16576 + rot: -1.5707963267948966 rad + pos: 10.5,-50.5 parent: 2 -- proto: DrinkBottleAlcoClear - entities: - - uid: 17296 + - uid: 17131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.09299,28.569855 + pos: 9.5,-50.5 parent: 2 -- proto: DrinkBottleBeer - entities: - - uid: 17297 + - uid: 17132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.365776,46.995037 + pos: 8.5,-50.5 parent: 2 - - uid: 17298 + - uid: 17133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.403435,7.699613 + rot: -1.5707963267948966 rad + pos: 7.5,-50.5 parent: 2 - - uid: 17299 + - uid: 17134 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.55945,26.575312 + pos: 6.5,-50.5 parent: 2 - - uid: 17300 + - uid: 17135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.450073,26.747187 + pos: 5.5,-50.5 parent: 2 - - uid: 17301 + - uid: 17136 components: - type: Transform - pos: -40.99695,26.809687 + rot: -1.5707963267948966 rad + pos: 4.5,-50.5 parent: 2 - - uid: 41466 + - uid: 17137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.657627,37.09776 - parent: 40203 - - uid: 41467 + pos: 3.5,-50.5 + parent: 2 + - uid: 17138 components: - type: Transform - pos: 41.162376,37.671833 - parent: 40203 -- proto: DrinkBottleCognac - entities: - - uid: 17302 + rot: 3.141592653589793 rad + pos: 22.5,-40.5 + parent: 2 + - uid: 17139 components: - type: Transform - pos: -29.327366,30.67923 + pos: 32.5,-36.5 parent: 2 -- proto: DrinkBottleNTCahors - entities: - - uid: 17303 + - uid: 17140 components: - type: Transform - pos: 28.088535,15.909019 + rot: 3.141592653589793 rad + pos: 22.5,-39.5 parent: 2 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 15052 + - uid: 17141 components: - type: Transform - parent: 15047 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkBottlePatron - entities: - - uid: 17304 + rot: 1.5707963267948966 rad + pos: 21.5,-35.5 + parent: 2 + - uid: 17142 components: - type: Transform - pos: 18.517927,-10.487949 + pos: 32.5,-33.5 parent: 2 - - uid: 17305 + - uid: 17143 components: - type: Transform - pos: -29.62424,30.507355 + rot: 3.141592653589793 rad + pos: 22.5,-38.5 parent: 2 -- proto: DrinkBottleRum - entities: - - uid: 17306 + - uid: 17144 components: - type: Transform - pos: 17.266304,-2.3632016 + rot: 1.5707963267948966 rad + pos: 39.5,-29.5 parent: 2 - - uid: 17307 + - uid: 17145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.594429,-2.7382016 + rot: 1.5707963267948966 rad + pos: 37.5,-29.5 parent: 2 -- proto: DrinkBottleVodka - entities: - - uid: 41468 + - uid: 17146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.53109,39.168934 - parent: 40203 - - uid: 41469 + rot: 1.5707963267948966 rad + pos: 40.5,-29.5 + parent: 2 + - uid: 17147 components: - type: Transform - pos: 68.729004,42.075184 - parent: 40203 - - uid: 41470 + rot: 1.5707963267948966 rad + pos: 38.5,-29.5 + parent: 2 + - uid: 17148 components: - type: Transform - pos: 67.145676,39.512684 - parent: 40203 - - uid: 41471 + rot: 3.141592653589793 rad + pos: 81.5,-36.5 + parent: 2 + - uid: 17149 components: - type: Transform - pos: 67.291504,39.648098 - parent: 40203 -- proto: DrinkBottleWhiskey - entities: - - uid: 17308 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 + parent: 2 + - uid: 17150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -126.53137,-14.31414 + rot: 1.5707963267948966 rad + pos: 33.5,-31.5 parent: 2 - - uid: 17309 + - uid: 17151 components: - type: Transform - pos: -126.34387,-14.454765 + rot: 1.5707963267948966 rad + pos: 31.5,-34.5 parent: 2 -- proto: DrinkCartonMilk - entities: - - uid: 45208 + - uid: 17152 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.195634,2.5832586 - parent: 44970 -- proto: DrinkCognacBottleFull - entities: - - uid: 41472 + pos: 34.5,-31.5 + parent: 2 + - uid: 17153 components: - type: Transform - pos: 73.392624,78.8535 - parent: 40203 -- proto: DrinkColaCan - entities: - - uid: 8230 + pos: 32.5,-35.5 + parent: 2 + - uid: 17154 components: - type: Transform - parent: 8229 - - type: Physics - canCollide: False -- proto: DrinkColaCanEmpty - entities: - - uid: 41473 + rot: 3.141592653589793 rad + pos: 81.5,-34.5 + parent: 2 + - uid: 17155 components: - type: Transform - rot: -1.8325957145940461 rad - pos: 49.83025,76.750145 - parent: 40203 -- proto: DrinkDoctorsDelightGlass - entities: - - uid: 17311 + rot: 1.5707963267948966 rad + pos: 79.5,-37.5 + parent: 2 + - uid: 17156 components: - type: Transform - pos: 2.7244549,44.38947 + rot: 1.5707963267948966 rad + pos: 80.5,-37.5 parent: 2 - - uid: 17312 + - uid: 17157 components: - type: Transform - pos: -15.61294,58.55791 + rot: 3.141592653589793 rad + pos: 81.5,-35.5 parent: 2 - - uid: 17313 + - uid: 17158 components: - type: Transform - pos: -7.5208673,58.58599 + rot: 3.141592653589793 rad + pos: 47.5,-31.5 parent: 2 -- proto: DrinkFlask - entities: - - uid: 17314 + - uid: 17159 components: - type: Transform - pos: 18.38169,-13.399717 + rot: 1.5707963267948966 rad + pos: 26.5,-35.5 parent: 2 -- proto: DrinkFlaskBar - entities: - - uid: 17315 + - uid: 17160 components: - type: Transform - pos: 43.65217,21.335716 + rot: 3.141592653589793 rad + pos: 51.5,-36.5 parent: 2 -- proto: DrinkFlaskOld - entities: - - uid: 41474 + - uid: 17161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.556557,68.56441 - parent: 40203 -- proto: DrinkGildlagerBottleFull - entities: - - uid: 7935 + rot: 1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + - uid: 17162 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkGlass - entities: - - uid: 17316 + rot: 3.141592653589793 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 17163 components: - type: Transform - pos: -21.243444,47.404636 + rot: 1.5707963267948966 rad + pos: 50.5,-34.5 parent: 2 - - uid: 17317 + - uid: 17164 components: - type: Transform - pos: -21.430944,47.57651 + rot: 1.5707963267948966 rad + pos: 20.5,-35.5 parent: 2 - - uid: 17318 + - uid: 17165 components: - type: Transform - pos: -21.69657,47.48276 + rot: 3.141592653589793 rad + pos: 22.5,-36.5 parent: 2 - - uid: 17319 + - uid: 17166 components: - type: Transform - pos: -18.17995,23.389711 + rot: 3.141592653589793 rad + pos: 51.5,-35.5 parent: 2 - - uid: 17320 + - uid: 17167 components: - type: Transform - pos: -18.866486,23.191889 + rot: 1.5707963267948966 rad + pos: 52.5,-37.5 parent: 2 - - uid: 17321 + - uid: 17168 components: - type: Transform - pos: 42.313087,25.76848 + rot: 1.5707963267948966 rad + pos: 45.5,-29.5 parent: 2 - - uid: 17322 + - uid: 17169 components: - type: Transform - pos: 42.563087,25.76848 + rot: 1.5707963267948966 rad + pos: 25.5,-35.5 parent: 2 - - uid: 17323 + - uid: 17170 components: - type: Transform - pos: 42.813087,25.76848 + rot: 1.5707963267948966 rad + pos: 23.5,-35.5 parent: 2 - - uid: 17324 + - uid: 17171 components: - type: Transform - pos: 2.6115053,-1.5335433 + rot: 1.5707963267948966 rad + pos: 53.5,-37.5 parent: 2 - - uid: 17325 + - uid: 17172 components: - type: Transform - pos: 2.2990053,0.013331652 + rot: 1.5707963267948966 rad + pos: 55.5,-37.5 parent: 2 - - uid: 41475 + - uid: 17173 components: - type: Transform - pos: 73.627,78.806625 - parent: 40203 -- proto: DrinkGlassCoupeShaped - entities: - - uid: 17326 + rot: 1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 + - uid: 17174 components: - type: Transform - pos: 43.203712,25.846605 + rot: 1.5707963267948966 rad + pos: 57.5,-37.5 parent: 2 - - uid: 17327 + - uid: 17175 components: - type: Transform - pos: 43.484962,25.846605 + rot: 1.5707963267948966 rad + pos: 56.5,-37.5 parent: 2 - - uid: 17328 + - uid: 17176 components: - type: Transform - pos: 43.766212,25.846605 + rot: 1.5707963267948966 rad + pos: 58.5,-37.5 parent: 2 -- proto: DrinkGrapeCan - entities: - - uid: 17329 + - uid: 17177 components: - type: Transform - pos: 38.440746,-45.377457 + rot: 1.5707963267948966 rad + pos: 59.5,-37.5 parent: 2 - - uid: 17330 + - uid: 17178 components: - type: Transform - pos: 38.67512,-45.51808 + rot: 1.5707963267948966 rad + pos: 60.5,-37.5 parent: 2 -- proto: DrinkGrapeJuice - entities: - - uid: 45209 + - uid: 17179 components: - type: Transform - pos: 4.4389687,3.463226 - parent: 44970 -- proto: DrinkHotCoco - entities: - - uid: 17331 + rot: 1.5707963267948966 rad + pos: 61.5,-37.5 + parent: 2 + - uid: 17180 components: - type: Transform - pos: -0.38973904,-21.51584 + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 parent: 2 - - uid: 17332 + - uid: 17181 components: - type: Transform - pos: -0.67098904,-21.26584 + rot: 1.5707963267948966 rad + pos: 42.5,-29.5 parent: 2 - - uid: 17333 + - uid: 17182 components: - type: Transform - pos: 23.33048,-40.297527 + rot: 1.5707963267948966 rad + pos: 41.5,-29.5 parent: 2 - - uid: 17334 + - uid: 17183 components: - type: Transform - pos: 23.471106,-40.485027 + rot: 1.5707963267948966 rad + pos: 44.5,-29.5 parent: 2 - - uid: 17335 + - uid: 17184 components: - type: Transform - pos: 23.67423,-40.328777 + rot: 1.5707963267948966 rad + pos: 43.5,-29.5 parent: 2 - - uid: 17336 + - uid: 17185 components: - type: Transform - pos: -37.15722,-14.2210865 + pos: 32.5,-32.5 parent: 2 - - uid: 17338 + - uid: 17186 components: - type: Transform - parent: 17337 - - type: Physics - canCollide: False - - uid: 17339 + rot: -1.5707963267948966 rad + pos: 29.5,-56.5 + parent: 2 + - uid: 17187 components: - type: Transform - parent: 17337 - - type: Physics - canCollide: False - - uid: 17340 + rot: 3.141592653589793 rad + pos: 28.5,-55.5 + parent: 2 + - uid: 17188 components: - type: Transform - parent: 17337 - - type: Physics - canCollide: False - - uid: 17341 + rot: 3.141592653589793 rad + pos: 28.5,-54.5 + parent: 2 + - uid: 17189 components: - type: Transform - parent: 17337 - - type: Physics - canCollide: False -- proto: DrinkHotCoffee - entities: - - uid: 17342 + rot: 1.5707963267948966 rad + pos: 31.5,-52.5 + parent: 2 + - uid: 17190 components: - type: Transform - pos: 54.829105,-4.4284472 + rot: 1.5707963267948966 rad + pos: 30.5,-52.5 parent: 2 - - uid: 17343 + - uid: 17191 components: - type: Transform - pos: 54.25098,-4.3503222 + rot: 1.5707963267948966 rad + pos: 29.5,-52.5 parent: 2 - - uid: 17344 + - uid: 17192 components: - type: Transform - pos: 1.9214928,1.7509642 + pos: 28.5,-53.5 parent: 2 - - uid: 17345 + - uid: 17193 components: - type: Transform - pos: 11.226658,19.56178 + pos: 32.5,-50.5 parent: 2 - - uid: 17346 + - uid: 17194 components: - type: Transform - pos: 8.56513,-4.4591465 + pos: 32.5,-49.5 parent: 2 - - uid: 17347 + - uid: 17195 components: - type: Transform - pos: -107.580574,22.511091 + pos: 44.5,-49.5 parent: 2 - - uid: 41476 + - uid: 17196 components: - type: Transform - pos: 37.36487,59.746525 - parent: 40203 -- proto: DrinkIceCreamGlass - entities: - - uid: 17348 + pos: 44.5,-50.5 + parent: 2 + - uid: 17197 components: - type: Transform - pos: 43.55224,48.612995 + rot: -1.5707963267948966 rad + pos: 43.5,-48.5 parent: 2 -- proto: DrinkIcedCoffeeGlass - entities: - - uid: 17349 + - uid: 17198 components: - type: Transform - pos: -20.697102,26.149164 + rot: -1.5707963267948966 rad + pos: 42.5,-48.5 parent: 2 -- proto: DrinkIceGlass - entities: - - uid: 17350 + - uid: 17199 components: - type: Transform - pos: 43.766647,51.505714 + rot: 3.141592653589793 rad + pos: 37.5,-44.5 parent: 2 - - uid: 17351 + - uid: 17200 components: - type: Transform - pos: 43.297897,51.568214 + rot: 3.141592653589793 rad + pos: 37.5,-43.5 parent: 2 -- proto: DrinkLemonadeGlass - entities: - - uid: 17352 + - uid: 17201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.97377,1.577358 + rot: 3.141592653589793 rad + pos: 37.5,-42.5 parent: 2 -- proto: DrinkMilkCarton - entities: - - uid: 17353 + - uid: 17202 components: - type: Transform - pos: -15.2751465,58.83635 + pos: 35.5,-40.5 parent: 2 - - uid: 45210 + - uid: 17203 components: - type: Transform - pos: 7.476884,2.9426336 - parent: 44970 - - uid: 45211 + pos: 35.5,-39.5 + parent: 2 + - uid: 17204 components: - type: Transform - pos: 7.758134,2.6926336 - parent: 44970 - - uid: 45212 + rot: -1.5707963267948966 rad + pos: 28.5,-47.5 + parent: 2 + - uid: 17205 components: - type: Transform - pos: 7.680009,2.9426336 - parent: 44970 - - uid: 45213 + rot: -1.5707963267948966 rad + pos: 27.5,-47.5 + parent: 2 + - uid: 17206 components: - type: Transform - pos: 7.680009,2.9426336 - parent: 44970 -- proto: DrinkMug - entities: - - uid: 17354 + rot: -1.5707963267948966 rad + pos: 29.5,-47.5 + parent: 2 + - uid: 17207 components: - type: Transform - pos: 2.314417,-50.796593 + rot: -1.5707963267948966 rad + pos: 30.5,-47.5 parent: 2 -- proto: DrinkMugBlack - entities: - - uid: 17355 + - uid: 17208 components: - type: Transform - pos: -1.2994671,-50.586605 + rot: -1.5707963267948966 rad + pos: 31.5,-47.5 parent: 2 - - uid: 17356 + - uid: 17209 components: - type: Transform - pos: -1.4713421,-50.399105 + rot: -1.5707963267948966 rad + pos: 40.5,-48.5 parent: 2 - - uid: 17357 + - uid: 17210 components: - type: Transform - pos: -1.2369671,-50.399105 + rot: -1.5707963267948966 rad + pos: 41.5,-48.5 parent: 2 - - uid: 17358 + - uid: 17211 components: - type: Transform - pos: -1.5650921,-50.586605 + rot: 3.141592653589793 rad + pos: 37.5,-46.5 parent: 2 -- proto: DrinkMugBlue - entities: - - uid: 17359 + - uid: 17212 components: - type: Transform - pos: 6.3082495,-56.213337 + rot: -1.5707963267948966 rad + pos: 39.5,-48.5 parent: 2 - - uid: 17360 + - uid: 17213 components: - type: Transform - pos: 6.3707495,-56.432087 + rot: -1.5707963267948966 rad + pos: 38.5,-48.5 parent: 2 - - uid: 17361 + - uid: 17214 components: - type: Transform - pos: 6.6363745,-56.260212 + rot: 3.141592653589793 rad + pos: 37.5,-47.5 parent: 2 -- proto: DrinkMugMetal - entities: - - uid: 17362 + - uid: 17215 components: - type: Transform - pos: -26.573298,8.102623 + rot: 1.5707963267948966 rad + pos: 36.5,-48.5 parent: 2 -- proto: DrinkMugMoebius - entities: - - uid: 17363 + - uid: 17216 components: - type: Transform - pos: 3.04713,43.45064 + rot: 1.5707963267948966 rad + pos: 35.5,-48.5 parent: 2 - - uid: 41477 + - uid: 17217 components: - type: Transform - pos: 71.66518,74.74509 - parent: 40203 -- proto: DrinkMugOne - entities: - - uid: 17364 + rot: 1.5707963267948966 rad + pos: 34.5,-48.5 + parent: 2 + - uid: 17218 components: - type: Transform - pos: 2.642542,-50.015343 + rot: 1.5707963267948966 rad + pos: 33.5,-48.5 parent: 2 - - uid: 17365 + - uid: 17219 components: - type: Transform - pos: 18.746794,-11.712442 + rot: 1.5707963267948966 rad + pos: 22.5,-51.5 parent: 2 -- proto: DrinkMugRed - entities: - - uid: 17366 + - uid: 17220 components: - type: Transform - pos: 2.312755,43.778767 + pos: 23.5,-50.5 parent: 2 - - uid: 17367 + - uid: 17221 components: - type: Transform - pos: -36.929607,-14.4781475 + pos: 23.5,-49.5 parent: 2 - - uid: 17368 + - uid: 17222 components: - type: Transform - pos: 8.746008,-7.242208 + pos: 23.5,-48.5 parent: 2 - - uid: 41478 + - uid: 17223 components: - type: Transform - pos: 71.33705,75.04196 - parent: 40203 -- proto: DrinkNothing - entities: - - uid: 17369 + rot: -1.5707963267948966 rad + pos: 24.5,-47.5 + parent: 2 + - uid: 17224 components: - type: Transform - pos: 60.25778,11.53125 + rot: -1.5707963267948966 rad + pos: 25.5,-47.5 parent: 2 -- proto: DrinkNTCahors - entities: - - uid: 17370 + - uid: 17225 components: - type: Transform - pos: 28.619785,15.612144 + rot: 3.141592653589793 rad + pos: 26.5,-46.5 parent: 2 -- proto: DrinkRamen - entities: - - uid: 17371 + - uid: 17226 components: - type: Transform - pos: -100.18414,51.548256 + rot: 3.141592653589793 rad + pos: 26.5,-45.5 parent: 2 - - uid: 17372 + - uid: 17227 components: - type: Transform - pos: -98.87164,51.579506 + rot: 3.141592653589793 rad + pos: 26.5,-44.5 parent: 2 -- proto: DrinkRumBottleFull - entities: - - uid: 17373 + - uid: 17228 components: - type: Transform - pos: -26.276423,8.597319 + rot: 1.5707963267948966 rad + pos: 22.5,-47.5 parent: 2 - - uid: 17374 + - uid: 17229 components: - type: Transform - pos: 7.612801,-49.08893 + rot: 1.5707963267948966 rad + pos: 21.5,-47.5 parent: 2 - - uid: 17375 + - uid: 17230 components: - type: Transform - pos: 12.304428,-3.828969 + rot: 1.5707963267948966 rad + pos: 20.5,-47.5 parent: 2 -- proto: DrinkSakeGlass - entities: - - uid: 17376 + - uid: 17231 components: - type: Transform - pos: -99.29071,51.89809 + rot: 1.5707963267948966 rad + pos: 17.5,-41.5 parent: 2 -- proto: DrinkShakeEmpty - entities: - - uid: 17377 + - uid: 17232 components: - type: Transform - pos: 43.188087,25.627855 + rot: 1.5707963267948966 rad + pos: 18.5,-41.5 parent: 2 - - uid: 17378 + - uid: 17233 components: - type: Transform - pos: 43.484962,25.61223 + rot: 1.5707963267948966 rad + pos: 19.5,-41.5 parent: 2 - - uid: 17379 + - uid: 17234 components: - type: Transform - pos: 43.750587,25.61223 + rot: 1.5707963267948966 rad + pos: 20.5,-41.5 parent: 2 -- proto: DrinkShaker - entities: - - uid: 17380 + - uid: 17235 components: - type: Transform - pos: 43.765415,21.843315 + rot: 1.5707963267948966 rad + pos: 21.5,-41.5 parent: 2 - - uid: 17381 + - uid: 17236 components: - type: Transform - pos: -107.572174,12.15694 + pos: 26.5,-43.5 parent: 2 - - uid: 45214 + - uid: 17237 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.555597,3.035201 - parent: 44970 -- proto: DrinkShinyFlask - entities: - - uid: 17382 + pos: 25.5,-42.5 + parent: 2 + - uid: 17238 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.54426,21.661734 + pos: 24.5,-42.5 parent: 2 -- proto: DrinkShotGlass - entities: - - uid: 17383 + - uid: 17239 components: - type: Transform - pos: 42.906837,25.471605 + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 parent: 2 - - uid: 17384 + - uid: 17240 components: - type: Transform - pos: 42.641212,25.471605 + pos: 59.5,-30.5 parent: 2 - - uid: 17385 + - uid: 17241 components: - type: Transform - pos: 42.359962,25.45598 + pos: 59.5,-31.5 parent: 2 - - uid: 17386 + - uid: 17242 components: - type: Transform - pos: 12.250678,-3.3944516 + pos: 59.5,-32.5 parent: 2 - - uid: 17387 + - uid: 17243 components: - type: Transform - pos: 12.695053,-3.938344 + pos: 59.5,-33.5 parent: 2 - - uid: 41479 - components: - - type: Transform - pos: 59.237946,77.66226 - parent: 40203 - - uid: 41480 - components: - - type: Transform - pos: 68.416504,41.773098 - parent: 40203 -- proto: DrinkSnowWhite - entities: - - uid: 17388 + - uid: 17244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.33825,-44.523655 + rot: -1.5707963267948966 rad + pos: 60.5,-29.5 parent: 2 -- proto: DrinkSodaWaterCan - entities: - - uid: 17389 + - uid: 17245 components: - type: Transform - pos: 16.388573,-34.46166 + rot: -1.5707963267948966 rad + pos: 61.5,-29.5 parent: 2 -- proto: DrinkSpaceGlue - entities: - - uid: 17390 + - uid: 17246 components: - type: Transform - pos: -79.812675,12.819479 + rot: 1.5707963267948966 rad + pos: 78.5,-37.5 parent: 2 - - uid: 17391 + - uid: 17247 components: - type: Transform - pos: -9.572407,-7.289655 + rot: 1.5707963267948966 rad + pos: 76.5,-37.5 parent: 2 - - uid: 17392 + - uid: 17248 components: - type: Transform - pos: -79.751526,12.856171 + rot: 1.5707963267948966 rad + pos: 73.5,-38.5 parent: 2 -- proto: DrinkSpaceLube - entities: - - uid: 17393 + - uid: 17249 components: - type: Transform - pos: 29.61559,-37.173176 + rot: 1.5707963267948966 rad + pos: 74.5,-38.5 parent: 2 - - uid: 17394 + - uid: 17250 components: - type: Transform - pos: 29.78843,-37.288403 + rot: 3.141592653589793 rad + pos: 72.5,3.5 parent: 2 - - uid: 17395 + - uid: 17251 components: - type: Transform - pos: 29.837812,-37.140255 + pos: 68.5,15.5 parent: 2 - - uid: 17396 + - uid: 17252 components: - type: Transform - pos: -79.44193,12.8581505 + pos: 69.5,13.5 parent: 2 - - uid: 17397 + - uid: 17253 components: - type: Transform - pos: -79.28568,12.9362755 + pos: 68.5,-0.5 parent: 2 -- proto: DrinkSpaceMountainWindBottleFull - entities: - - uid: 17398 + - uid: 17254 components: - type: Transform - pos: 65.55275,-43.213085 + rot: 3.141592653589793 rad + pos: 61.5,-1.5 parent: 2 -- proto: DrinkTeacup - entities: - - uid: 17399 + - uid: 17255 components: - type: Transform - pos: 39.729763,13.623097 + rot: 1.5707963267948966 rad + pos: 62.5,18.5 parent: 2 - - uid: 17400 + - uid: 17256 components: - type: Transform - pos: 3.6092386,65.522285 + rot: 3.141592653589793 rad + pos: 72.5,5.5 parent: 2 - - uid: 17401 + - uid: 17257 components: - type: Transform - pos: 3.2967386,65.616035 + rot: 1.5707963267948966 rad + pos: 70.5,1.5 parent: 2 -- proto: DrinkTeapot - entities: - - uid: 17402 + - uid: 17258 components: - type: Transform - pos: 3.6092386,65.88166 + pos: 68.5,-1.5 parent: 2 - - uid: 41481 - components: - - type: Transform - pos: 71.42831,75.56656 - parent: 40203 -- proto: DrinkWaterBottleFull - entities: - - uid: 17403 + - uid: 17259 components: - type: Transform - pos: -33.100113,12.7067585 + rot: 3.141592653589793 rad + pos: 61.5,-0.5 parent: 2 - - uid: 17404 + - uid: 17260 components: - type: Transform - pos: -32.896988,12.7223835 + rot: 3.141592653589793 rad + pos: 61.5,-14.5 parent: 2 - - uid: 17405 + - uid: 17261 components: - type: Transform - pos: 51.979843,-22.36058 + rot: 3.141592653589793 rad + pos: 61.5,-16.5 parent: 2 - - uid: 17406 + - uid: 17262 components: - type: Transform - pos: 2.3615053,-1.5804183 + rot: 1.5707963267948966 rad + pos: 64.5,17.5 parent: 2 - - uid: 17407 + - uid: 17263 components: - type: Transform - pos: 2.5646303,0.21645665 + rot: 3.141592653589793 rad + pos: 72.5,4.5 parent: 2 - - uid: 41482 + - uid: 17264 components: - type: Transform - pos: 61.647575,63.659065 - parent: 40203 - - uid: 41483 + pos: 68.5,16.5 + parent: 2 + - uid: 17265 components: - type: Transform - pos: 37.243385,70.74962 - parent: 40203 - - uid: 41485 + rot: -1.5707963267948966 rad + pos: 57.5,19.5 + parent: 2 + - uid: 17266 components: - type: Transform - parent: 41484 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41486 + rot: -1.5707963267948966 rad + pos: 59.5,19.5 + parent: 2 + - uid: 17267 components: - type: Transform - parent: 41484 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkWaterCup - entities: - - uid: 17408 + pos: 66.5,-4.5 + parent: 2 + - uid: 17268 components: - type: Transform - pos: 23.347298,-54.323387 + rot: -1.5707963267948966 rad + pos: 62.5,-6.5 parent: 2 - - uid: 17409 + - uid: 17269 components: - type: Transform - pos: 23.425423,-54.448387 + rot: 3.141592653589793 rad + pos: 61.5,-12.5 parent: 2 - - uid: 17410 + - uid: 17270 components: - type: Transform - pos: 23.550423,-54.354637 + rot: -1.5707963267948966 rad + pos: 63.5,-6.5 parent: 2 - - uid: 17411 + - uid: 17271 components: - type: Transform - pos: 23.612923,-54.495262 + rot: 3.141592653589793 rad + pos: 61.5,-11.5 parent: 2 - - uid: 17412 + - uid: 17272 components: - type: Transform - pos: 23.722298,-54.354637 + rot: -1.5707963267948966 rad + pos: 65.5,-5.5 parent: 2 - - uid: 17413 + - uid: 17273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.640694,-19.398539 + rot: -1.5707963267948966 rad + pos: 55.5,19.5 parent: 2 - - uid: 17414 + - uid: 17274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.46882,-19.148539 + rot: -1.5707963267948966 rad + pos: 52.5,19.5 parent: 2 - - uid: 17415 + - uid: 17275 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.34382,-19.398539 + pos: 61.5,-10.5 parent: 2 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 17416 + - uid: 17276 components: - type: Transform - pos: -26.557673,8.753569 + rot: 3.141592653589793 rad + pos: 61.5,-7.5 parent: 2 -- proto: DrinkWineBottleFull - entities: - - uid: 17417 + - uid: 17277 components: - type: Transform - pos: -75.50765,12.704226 + rot: 1.5707963267948966 rad + pos: 67.5,17.5 parent: 2 - - uid: 17418 + - uid: 17278 components: - type: Transform - pos: 27.47286,15.895351 + rot: 1.5707963267948966 rad + pos: 61.5,18.5 parent: 2 -- proto: DrinkWineGlass - entities: - - uid: 17419 + - uid: 17279 components: - type: Transform - pos: -75.776726,12.875454 + rot: 1.5707963267948966 rad + pos: 60.5,6.5 parent: 2 - - uid: 17420 + - uid: 17280 components: - type: Transform - pos: -75.17742,12.838762 + rot: 3.141592653589793 rad + pos: 61.5,1.5 parent: 2 - - uid: 17421 + - uid: 17281 components: - type: Transform - pos: 27.707235,15.707851 + pos: 56.5,7.5 parent: 2 - - uid: 17422 + - uid: 17282 components: - type: Transform - pos: 27.408741,15.630334 + pos: 56.5,8.5 parent: 2 -- proto: Dropper - entities: - - uid: 17423 + - uid: 17283 components: - type: Transform - pos: 29.228872,56.831463 + rot: 1.5707963267948966 rad + pos: 55.5,6.5 parent: 2 - - uid: 17424 + - uid: 17284 components: - type: Transform - pos: -4.5334964,42.2229 + rot: 1.5707963267948966 rad + pos: 57.5,6.5 parent: 2 - - uid: 17425 + - uid: 17285 components: - type: Transform - pos: 7.4931173,35.8039 + rot: 1.5707963267948966 rad + pos: 59.5,6.5 parent: 2 - - uid: 17426 + - uid: 17286 components: - type: Transform - pos: 13.361622,37.857277 + rot: 1.5707963267948966 rad + pos: 58.5,6.5 parent: 2 -- proto: EggBoxBroken - entities: - - uid: 17427 + - uid: 17287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.524143,-31.644077 + rot: 3.141592653589793 rad + pos: 61.5,2.5 parent: 2 - - uid: 17428 + - uid: 17288 components: - type: Transform - pos: -50.38352,-29.347202 + rot: 3.141592653589793 rad + pos: 61.5,4.5 parent: 2 - - uid: 17429 + - uid: 17289 components: - type: Transform - pos: -52.306026,-30.404987 + rot: 3.141592653589793 rad + pos: 61.5,5.5 parent: 2 - - uid: 17430 + - uid: 17290 components: - type: Transform - pos: -50.1654,-31.373737 + rot: -1.5707963267948966 rad + pos: 56.5,19.5 parent: 2 - - uid: 17431 + - uid: 17291 components: - type: Transform - pos: -52.38415,-29.09249 + rot: -1.5707963267948966 rad + pos: 58.5,19.5 parent: 2 -- proto: Eggshells - entities: - - uid: 17432 + - uid: 17292 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.28977,-31.378452 + pos: 61.5,-20.5 parent: 2 - - uid: 17433 + - uid: 17293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.211643,-29.800327 + rot: 1.5707963267948966 rad + pos: 66.5,17.5 parent: 2 - - uid: 17434 + - uid: 17294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.57102,-30.112827 + pos: 65.5,17.5 parent: 2 - - uid: 17435 + - uid: 17295 components: - type: Transform - pos: -51.680393,-30.706577 + rot: 3.141592653589793 rad + pos: 61.5,3.5 parent: 2 - - uid: 17436 + - uid: 17296 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.63352,-30.581577 + pos: -102.5,27.5 parent: 2 - - uid: 17437 + - uid: 17297 components: - type: Transform - pos: -50.274143,-30.940952 + rot: 3.141592653589793 rad + pos: -102.5,26.5 parent: 2 - - uid: 17438 + - uid: 17298 components: - type: Transform - pos: -52.614,-29.670614 + rot: 3.141592653589793 rad + pos: -102.5,25.5 parent: 2 - - uid: 17439 + - uid: 17299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.75852,-30.706577 + rot: 3.141592653589793 rad + pos: -102.5,24.5 parent: 2 -- proto: EggSpider - entities: - - uid: 17440 + - uid: 17300 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.48808,53.169903 + pos: -103.5,23.5 parent: 2 - - uid: 17441 + - uid: 17301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.284954,53.607403 + rot: 1.5707963267948966 rad + pos: -112.5,32.5 parent: 2 - - uid: 17442 + - uid: 17302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.55058,53.466778 + rot: 1.5707963267948966 rad + pos: -112.5,30.5 parent: 2 - - uid: 41488 + - uid: 17303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.242775,73.899216 - parent: 40203 - - uid: 41489 + pos: -112.5,28.5 + parent: 2 + - uid: 17304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.242775,73.60234 - parent: 40203 - - uid: 41490 + pos: -111.5,28.5 + parent: 2 + - uid: 17305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.3834,73.75859 - parent: 40203 - - uid: 41491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.506683,55.503906 - parent: 40203 - - uid: 41492 + pos: -111.5,30.5 + parent: 2 + - uid: 17306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.764496,55.503906 - parent: 40203 -- proto: ElectricGrillMachineCircuitboard - entities: - - uid: 17443 + rot: 1.5707963267948966 rad + pos: -111.5,32.5 + parent: 2 + - uid: 17307 components: - type: Transform - pos: 15.599145,5.5280046 + pos: -110.5,31.5 parent: 2 -- proto: ElectricGuitarInstrument - entities: - - uid: 17444 + - uid: 17308 components: - type: Transform - pos: 53.370163,-7.194631 + pos: -110.5,29.5 parent: 2 -- proto: EmergencyLight - entities: - - uid: 17445 + - uid: 17309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-28.5 + pos: -110.5,27.5 parent: 2 - - uid: 17446 + - uid: 17310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-13.5 + pos: -110.5,26.5 parent: 2 - - uid: 17447 + - uid: 17311 components: - type: Transform - pos: 6.5,-53.5 + rot: -1.5707963267948966 rad + pos: -109.5,25.5 parent: 2 - - uid: 17448 + - uid: 17312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-17.5 + rot: -1.5707963267948966 rad + pos: -108.5,25.5 parent: 2 - - uid: 17449 + - uid: 17313 components: - type: Transform - pos: -4.5,-58.5 + rot: -1.5707963267948966 rad + pos: -107.5,25.5 parent: 2 - - uid: 17450 + - uid: 17314 components: - type: Transform - pos: -29.5,2.5 + rot: -1.5707963267948966 rad + pos: -106.5,25.5 parent: 2 - - uid: 17451 + - uid: 17315 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,10.5 + pos: -105.5,24.5 parent: 2 - - uid: 17452 + - uid: 17316 components: - type: Transform - pos: 68.5,-36.5 + rot: 1.5707963267948966 rad + pos: -104.5,23.5 parent: 2 - - uid: 17453 + - uid: 17317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-31.5 + pos: -105.5,22.5 parent: 2 - - uid: 17454 + - uid: 17318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-28.5 + pos: -105.5,21.5 parent: 2 - - uid: 17455 + - uid: 17319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-31.5 + pos: -105.5,20.5 parent: 2 - - uid: 17456 + - uid: 17320 components: - type: Transform - pos: 73.5,-43.5 + pos: -105.5,19.5 parent: 2 - - uid: 17457 + - uid: 17321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-38.5 + pos: -105.5,18.5 parent: 2 - - uid: 17458 + - uid: 17322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-43.5 + pos: -105.5,17.5 parent: 2 - - uid: 17459 + - uid: 17323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-44.5 + pos: -105.5,16.5 parent: 2 - - uid: 17460 + - uid: 17324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-47.5 + pos: -105.5,15.5 parent: 2 - - uid: 17461 + - uid: 17325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-44.5 + pos: -105.5,14.5 parent: 2 - - uid: 17462 + - uid: 17326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-40.5 + pos: -105.5,13.5 parent: 2 - - uid: 17463 + - uid: 17327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-40.5 + pos: -105.5,12.5 parent: 2 - - uid: 17464 + - uid: 17328 components: - type: Transform - pos: 78.5,-43.5 + pos: -105.5,11.5 parent: 2 - - uid: 17465 + - uid: 17329 components: - type: Transform - pos: 83.5,-42.5 + pos: -105.5,10.5 parent: 2 - - uid: 17466 + - uid: 17330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,3.5 + pos: -105.5,9.5 parent: 2 - - uid: 17467 + - uid: 17331 components: - type: Transform - pos: -39.5,-2.5 + pos: -105.5,8.5 parent: 2 - - uid: 17468 + - uid: 17332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,16.5 + pos: -113.5,6.5 parent: 2 - - uid: 17469 + - uid: 17333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,6.5 + pos: -113.5,5.5 parent: 2 - - uid: 17470 + - uid: 17334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-9.5 + pos: -113.5,3.5 parent: 2 - - uid: 17471 + - uid: 17335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,7.5 + pos: -113.5,2.5 parent: 2 - - uid: 17472 + - uid: 17336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-9.5 + rot: -1.5707963267948966 rad + pos: -112.5,7.5 parent: 2 - - uid: 17473 + - uid: 17337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,10.5 + rot: -1.5707963267948966 rad + pos: -111.5,7.5 parent: 2 - - uid: 17474 + - uid: 17338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,10.5 + rot: -1.5707963267948966 rad + pos: -110.5,7.5 parent: 2 - - uid: 17475 + - uid: 17339 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,8.5 + pos: -109.5,7.5 parent: 2 - - uid: 17476 + - uid: 17340 components: - type: Transform - pos: -28.5,-6.5 + rot: -1.5707963267948966 rad + pos: -108.5,7.5 parent: 2 - - uid: 17477 + - uid: 17341 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,9.5 + pos: -107.5,7.5 parent: 2 - - uid: 17478 + - uid: 17342 components: - type: Transform - pos: -30.5,-13.5 + rot: -1.5707963267948966 rad + pos: -114.5,8.5 parent: 2 - - uid: 17479 + - uid: 17343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,4.5 + rot: -1.5707963267948966 rad + pos: -115.5,8.5 parent: 2 - - uid: 17480 + - uid: 17344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-11.5 + rot: -1.5707963267948966 rad + pos: -116.5,8.5 parent: 2 - - uid: 17481 + - uid: 17345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,2.5 + rot: 3.141592653589793 rad + pos: -117.5,9.5 parent: 2 - - uid: 17482 + - uid: 17346 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-10.5 + pos: -99.5,4.5 parent: 2 - - uid: 17483 + - uid: 17347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-51.5 + rot: -1.5707963267948966 rad + pos: -100.5,4.5 parent: 2 - - uid: 17484 + - uid: 17348 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,27.5 + pos: -101.5,4.5 parent: 2 - - uid: 17485 + - uid: 17349 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-36.5 + pos: -102.5,4.5 parent: 2 - - uid: 17486 + - uid: 17350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-34.5 + rot: -1.5707963267948966 rad + pos: -103.5,4.5 parent: 2 - - uid: 17487 + - uid: 17351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,21.5 + pos: -104.5,4.5 parent: 2 - - uid: 17488 + - uid: 17352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-46.5 + rot: -1.5707963267948966 rad + pos: -105.5,4.5 parent: 2 - - uid: 17489 + - uid: 17353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-46.5 + rot: -1.5707963267948966 rad + pos: -106.5,4.5 parent: 2 - - uid: 17490 + - uid: 17354 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,38.5 + pos: -107.5,4.5 parent: 2 - - uid: 17491 + - uid: 17355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,22.5 + rot: -1.5707963267948966 rad + pos: -108.5,4.5 parent: 2 - - uid: 17492 + - uid: 17356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-10.5 + rot: -1.5707963267948966 rad + pos: -109.5,4.5 parent: 2 - - uid: 17493 + - uid: 17357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 + rot: -1.5707963267948966 rad + pos: -110.5,4.5 parent: 2 - - uid: 17494 + - uid: 17358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-17.5 + rot: -1.5707963267948966 rad + pos: -111.5,4.5 parent: 2 - - uid: 17495 + - uid: 17359 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,17.5 + pos: -112.5,4.5 parent: 2 - - uid: 17496 + - uid: 17360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,36.5 + pos: 51.5,21.5 parent: 2 - - uid: 17497 + - uid: 17361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,36.5 + pos: 51.5,20.5 parent: 2 - - uid: 17498 + - uid: 17362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-0.5 + rot: -1.5707963267948966 rad + pos: 40.5,32.5 parent: 2 - - uid: 17499 + - uid: 17363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-0.5 + rot: -1.5707963267948966 rad + pos: 39.5,32.5 parent: 2 - - uid: 17500 + - uid: 17364 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-1.5 + pos: 38.5,32.5 parent: 2 - - uid: 17501 + - uid: 17365 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,7.5 + pos: 43.5,32.5 parent: 2 - - uid: 17502 + - uid: 17366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-17.5 + rot: -1.5707963267948966 rad + pos: 42.5,32.5 parent: 2 - - uid: 17503 + - uid: 17367 components: - type: Transform - pos: 30.5,34.5 + pos: 51.5,25.5 parent: 2 - - uid: 17504 + - uid: 17368 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-48.5 + pos: 41.5,32.5 parent: 2 - - uid: 17505 + - uid: 17369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-56.5 + rot: -1.5707963267948966 rad + pos: 44.5,32.5 parent: 2 - - uid: 17506 + - uid: 17370 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-31.5 + pos: 48.5,29.5 parent: 2 - - uid: 17507 + - uid: 17371 components: - type: Transform - pos: 4.5,-40.5 + rot: 3.141592653589793 rad + pos: 46.5,30.5 parent: 2 - - uid: 17508 + - uid: 17372 components: - type: Transform - pos: 43.5,-47.5 + rot: 1.5707963267948966 rad + pos: 47.5,29.5 parent: 2 - - uid: 17509 + - uid: 17373 components: - type: Transform - pos: 30.5,-33.5 + pos: 49.5,28.5 parent: 2 - - uid: 17510 + - uid: 17374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,8.5 + pos: -38.5,8.5 parent: 2 - - uid: 17511 + - uid: 17375 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,31.5 + pos: -33.5,-14.5 parent: 2 - - uid: 17512 + - uid: 17376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,30.5 + pos: 74.5,-30.5 parent: 2 - - uid: 17513 + - uid: 17377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,51.5 + pos: 74.5,-31.5 parent: 2 - - uid: 17514 + - uid: 17378 components: - type: Transform - pos: -1.5,62.5 + pos: 74.5,-32.5 parent: 2 - - uid: 17515 + - uid: 17379 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,68.5 + rot: 1.5707963267948966 rad + pos: 23.5,8.5 parent: 2 - - uid: 17516 + - uid: 17380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,49.5 + rot: 1.5707963267948966 rad + pos: 22.5,8.5 parent: 2 - - uid: 17517 + - uid: 17381 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,56.5 + pos: 62.5,-34.5 parent: 2 - - uid: 17518 + - uid: 17382 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,51.5 + pos: -114.5,0.5 parent: 2 - - uid: 17519 + - uid: 41804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,44.5 - parent: 2 - - uid: 17520 + pos: 70.5,55.5 + parent: 40599 + - uid: 41805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,41.5 - parent: 2 - - uid: 17521 + pos: 70.5,54.5 + parent: 40599 + - uid: 41806 components: - type: Transform - pos: 47.5,-22.5 - parent: 2 - - uid: 17522 + pos: 70.5,53.5 + parent: 40599 + - uid: 41807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,55.5 - parent: 2 - - uid: 17523 + rot: -1.5707963267948966 rad + pos: 71.5,52.5 + parent: 40599 + - uid: 41808 components: - type: Transform - pos: 6.5,58.5 - parent: 2 - - uid: 17524 + rot: 3.141592653589793 rad + pos: 72.5,53.5 + parent: 40599 + - uid: 41809 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,56.5 - parent: 2 - - uid: 17525 + pos: 72.5,55.5 + parent: 40599 + - uid: 41810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,59.5 - parent: 2 - - uid: 17526 + rot: 3.141592653589793 rad + pos: 72.5,56.5 + parent: 40599 + - uid: 41811 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,60.5 - parent: 2 - - uid: 17527 + pos: 72.5,57.5 + parent: 40599 + - uid: 41812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,58.5 + parent: 40599 + - uid: 41813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.5,54.5 + parent: 40599 + - uid: 41814 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,35.5 - parent: 2 - - uid: 17528 + pos: 73.5,59.5 + parent: 40599 + - uid: 41815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,53.5 - parent: 2 - - uid: 17529 + pos: 69.5,56.5 + parent: 40599 + - uid: 41816 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,6.5 - parent: 2 - - uid: 17530 + pos: 68.5,55.5 + parent: 40599 + - uid: 41817 components: - type: Transform - pos: -14.5,62.5 - parent: 2 - - uid: 17531 + rot: -1.5707963267948966 rad + pos: 63.5,56.5 + parent: 40599 + - uid: 41818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 2 - - uid: 17532 + rot: -1.5707963267948966 rad + pos: 61.5,56.5 + parent: 40599 + - uid: 41819 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 2 - - uid: 17533 + pos: 62.5,56.5 + parent: 40599 + - uid: 41820 components: - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 17534 + pos: 59.5,55.5 + parent: 40599 + - uid: 41821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-1.5 - parent: 2 - - uid: 17535 + pos: 59.5,53.5 + parent: 40599 + - uid: 41822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-5.5 - parent: 2 - - uid: 17536 + pos: 59.5,52.5 + parent: 40599 + - uid: 41823 components: - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 17537 + pos: 59.5,51.5 + parent: 40599 + - uid: 41824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-15.5 - parent: 2 - - uid: 17538 + pos: 59.5,54.5 + parent: 40599 + - uid: 41825 components: - type: Transform - pos: 79.5,-7.5 - parent: 2 - - uid: 17539 + pos: 59.5,50.5 + parent: 40599 + - uid: 41826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-26.5 - parent: 2 - - uid: 17540 + pos: 59.5,49.5 + parent: 40599 + - uid: 41827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-52.5 - parent: 2 - - uid: 17541 + pos: 58.5,48.5 + parent: 40599 + - uid: 41828 components: - type: Transform - pos: 47.5,-52.5 - parent: 2 - - uid: 17542 + rot: -1.5707963267948966 rad + pos: 56.5,48.5 + parent: 40599 + - uid: 41829 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-41.5 - parent: 2 - - uid: 17543 + rot: -1.5707963267948966 rad + pos: 55.5,48.5 + parent: 40599 + - uid: 41830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-24.5 - parent: 2 - - uid: 17544 + rot: -1.5707963267948966 rad + pos: 54.5,48.5 + parent: 40599 + - uid: 41831 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-35.5 - parent: 2 - - uid: 17545 + rot: -1.5707963267948966 rad + pos: 53.5,48.5 + parent: 40599 + - uid: 41832 components: - type: Transform - pos: 8.5,-19.5 - parent: 2 - - uid: 17546 + rot: -1.5707963267948966 rad + pos: 57.5,48.5 + parent: 40599 + - uid: 41833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-40.5 - parent: 2 - - uid: 17547 + pos: 52.5,47.5 + parent: 40599 + - uid: 41834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-47.5 - parent: 2 - - uid: 17548 + pos: 47.5,42.5 + parent: 40599 + - uid: 41835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 2 - - uid: 17549 + pos: 52.5,46.5 + parent: 40599 + - uid: 41836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 2 - - uid: 17550 + pos: 57.5,41.5 + parent: 40599 + - uid: 41837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-18.5 - parent: 2 - - uid: 17551 + rot: 1.5707963267948966 rad + pos: 50.5,44.5 + parent: 40599 + - uid: 41838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,16.5 - parent: 2 - - uid: 17552 + rot: 1.5707963267948966 rad + pos: 49.5,44.5 + parent: 40599 + - uid: 41839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,16.5 - parent: 2 - - uid: 41493 + pos: 47.5,41.5 + parent: 40599 + - uid: 41840 components: - type: Transform - pos: 35.5,66.5 - parent: 40203 - - uid: 41494 + pos: 57.5,42.5 + parent: 40599 + - uid: 41841 components: - type: Transform - pos: 29.5,72.5 - parent: 40203 - - uid: 41495 + rot: -1.5707963267948966 rad + pos: 54.5,44.5 + parent: 40599 + - uid: 41842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,68.5 - parent: 40203 - - uid: 41496 + rot: -1.5707963267948966 rad + pos: 55.5,44.5 + parent: 40599 + - uid: 41843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,44.5 + parent: 40599 +- proto: DisposalPipeBroken + entities: + - uid: 17383 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,68.5 - parent: 40203 - - uid: 41497 + pos: -115.5,-0.5 + parent: 2 + - uid: 41844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,71.5 - parent: 40203 - - uid: 41498 + pos: 66.5,57.5 + parent: 40599 + - uid: 41845 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,60.5 - parent: 40203 - - uid: 41499 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,54.5 - parent: 40203 - - uid: 41500 + pos: 65.5,57.5 + parent: 40599 + - uid: 41846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,55.5 - parent: 40203 - - uid: 41501 + pos: 60.5,56.5 + parent: 40599 +- proto: DisposalSignalRouter + entities: + - uid: 41847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,74.5 - parent: 40203 - - uid: 41502 + pos: 52.5,45.5 + parent: 40599 +- proto: DisposalTrunk + entities: + - uid: 17384 components: - type: Transform - pos: 51.5,79.5 - parent: 40203 - - uid: 41503 + pos: 54.5,7.5 + parent: 2 + - uid: 17385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,59.5 - parent: 40203 -- proto: EmergencyMedipen - entities: - - uid: 17553 + rot: -1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + - uid: 17386 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.322029,51.686535 + pos: 18.5,-3.5 parent: 2 - - uid: 17554 + - uid: 17387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.447029,51.73341 + pos: 26.5,43.5 parent: 2 -- proto: EmergencyNitrogenTankFilled - entities: - - uid: 41221 + - uid: 17388 components: - type: Transform - parent: 41219 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: EmergencyOxygenTankFilled - entities: - - uid: 41222 + rot: -1.5707963267948966 rad + pos: -8.5,61.5 + parent: 2 + - uid: 17389 components: - type: Transform - parent: 41219 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: EmergencyRollerBed - entities: - - uid: 17555 + pos: 15.5,41.5 + parent: 2 + - uid: 17390 components: - type: Transform - pos: 2.8639274,40.809498 + rot: 1.5707963267948966 rad + pos: 7.5,31.5 parent: 2 - - uid: 17556 + - uid: 17391 components: - type: Transform - pos: 2.8170524,39.434498 + rot: 3.141592653589793 rad + pos: 33.5,31.5 parent: 2 - - uid: 17557 + - uid: 17392 components: - type: Transform - pos: -3.5,47.5 + pos: 9.5,29.5 parent: 2 - - uid: 17558 + - uid: 17393 components: - type: Transform - pos: -16.5,46.5 + rot: 1.5707963267948966 rad + pos: 20.5,31.5 parent: 2 - - uid: 17559 + - uid: 17394 components: - type: Transform - pos: -17.5,46.5 + rot: 1.5707963267948966 rad + pos: 20.5,27.5 parent: 2 - - uid: 17560 + - uid: 17395 components: - type: Transform - pos: 1.6139274,40.825123 + rot: 3.141592653589793 rad + pos: 12.5,-0.5 parent: 2 - - uid: 17561 + - uid: 17396 components: - type: Transform - pos: 1.5514274,39.387623 + rot: 3.141592653589793 rad + pos: 34.5,25.5 parent: 2 -- proto: Emitter - entities: - - uid: 17562 + - uid: 17397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-48.5 + rot: 3.141592653589793 rad + pos: 0.5,-51.5 parent: 2 - - uid: 17563 + - uid: 17398 components: - type: Transform - pos: -48.5,-34.5 + rot: 3.141592653589793 rad + pos: 72.5,-41.5 parent: 2 - - uid: 17564 + - uid: 17399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-48.5 + pos: 79.5,-43.5 parent: 2 - - uid: 17565 + - uid: 17400 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-46.5 + pos: 55.5,-24.5 parent: 2 -- proto: EncryptionKeySyndie - entities: - - uid: 17566 + - uid: 17401 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.366177,52.701153 + pos: -10.5,-38.5 parent: 2 -- proto: EphedrineChemistryBottle - entities: - - uid: 17568 - components: - - type: Transform - parent: 17567 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: EpinephrineChemistryBottle - entities: - - uid: 17575 + - uid: 17402 components: - type: Transform - pos: 2.0394254,38.58677 + pos: -4.5,-40.5 parent: 2 - - uid: 17576 + - uid: 17403 components: - type: Transform - pos: -54.823296,15.476013 + rot: 3.141592653589793 rad + pos: -12.5,-46.5 parent: 2 - - uid: 17577 + - uid: 17404 components: - type: Transform - pos: 2.586578,54.484497 + rot: 1.5707963267948966 rad + pos: -10.5,-53.5 parent: 2 - - uid: 17578 + - uid: 17405 components: - type: Transform - pos: -103.35984,4.4950776 + rot: 1.5707963267948966 rad + pos: -12.5,46.5 parent: 2 -- proto: ExGrenade - entities: - - uid: 41505 + - uid: 17406 components: - type: Transform - parent: 41504 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ExtinguisherCabinetFilled - entities: - - uid: 17579 + rot: 3.141592653589793 rad + pos: 4.5,45.5 + parent: 2 + - uid: 17407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,55.5 + rot: 3.141592653589793 rad + pos: -7.5,-0.5 parent: 2 - - uid: 17580 + - uid: 17408 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,9.5 + pos: -32.5,-0.5 parent: 2 - - uid: 17581 + - uid: 17409 components: - type: Transform - pos: 0.5,46.5 + rot: 1.5707963267948966 rad + pos: -6.5,33.5 parent: 2 - - uid: 17582 + - uid: 17410 components: - type: Transform - pos: 0.5,46.5 + pos: 64.5,-21.5 parent: 2 - - uid: 17583 + - uid: 17411 components: - type: Transform - pos: 78.5,-36.5 + rot: 1.5707963267948966 rad + pos: 14.5,14.5 parent: 2 - - uid: 17584 + - uid: 17412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-37.5 + rot: 1.5707963267948966 rad + pos: 28.5,36.5 parent: 2 - - uid: 17585 + - uid: 17413 components: - type: Transform - pos: -0.5,-36.5 + rot: -1.5707963267948966 rad + pos: -9.5,14.5 parent: 2 - - uid: 17586 + - uid: 17414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-51.5 + rot: -1.5707963267948966 rad + pos: -46.5,-0.5 parent: 2 - - uid: 17587 + - uid: 17415 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-55.5 + pos: -40.5,10.5 parent: 2 - - uid: 17588 + - uid: 17416 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-51.5 + pos: -54.5,10.5 parent: 2 - - uid: 17589 + - uid: 17417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-55.5 + rot: -1.5707963267948966 rad + pos: -0.5,53.5 parent: 2 - - uid: 17590 + - uid: 17418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-44.5 + rot: 1.5707963267948966 rad + pos: -7.5,38.5 parent: 2 - - uid: 17591 + - uid: 17419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-30.5 + pos: 24.5,-6.5 parent: 2 - - uid: 17592 + - uid: 17420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-46.5 + rot: -1.5707963267948966 rad + pos: -4.5,54.5 parent: 2 - - uid: 17593 + - uid: 17421 components: - type: Transform - pos: 75.5,-48.5 + rot: -1.5707963267948966 rad + pos: 70.5,-36.5 parent: 2 - - uid: 17594 + - uid: 17422 components: - type: Transform - pos: 60.5,-31.5 + pos: -12.5,-3.5 parent: 2 - - uid: 17595 + - uid: 17423 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-35.5 - parent: 2 - - uid: 17596 - components: - - type: Transform - pos: -25.5,-43.5 + pos: -51.5,-6.5 parent: 2 - - uid: 17597 + - uid: 17424 components: - type: Transform - pos: 8.5,-40.5 + rot: 3.141592653589793 rad + pos: -55.5,-6.5 parent: 2 - - uid: 17598 + - uid: 17425 components: - type: Transform - pos: -0.5,-57.5 + rot: 3.141592653589793 rad + pos: -53.5,-6.5 parent: 2 - - uid: 17599 + - uid: 17426 components: - type: Transform - pos: -11.5,-57.5 + pos: -42.5,-11.5 parent: 2 - - uid: 17600 + - uid: 17427 components: - type: Transform - pos: -50.5,9.5 + pos: -46.5,17.5 parent: 2 - - uid: 17601 + - uid: 17428 components: - type: Transform - pos: -11.5,-31.5 + pos: -42.5,17.5 parent: 2 - - uid: 17602 + - uid: 17429 components: - type: Transform - pos: -54.5,8.5 + pos: -50.5,17.5 parent: 2 - - uid: 17603 + - uid: 17430 components: - type: Transform - pos: -32.5,9.5 + pos: -38.5,16.5 parent: 2 - - uid: 17604 + - uid: 17431 components: - type: Transform - pos: -48.5,-1.5 + pos: -36.5,16.5 parent: 2 - - uid: 17605 + - uid: 17432 components: - type: Transform - pos: -11.5,53.5 + pos: 18.5,43.5 parent: 2 - - uid: 17606 + - uid: 17433 components: - type: Transform - pos: -3.5,60.5 + rot: 3.141592653589793 rad + pos: 11.5,43.5 parent: 2 - - uid: 17607 + - uid: 17434 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,37.5 + pos: 9.5,43.5 parent: 2 - - uid: 17608 + - uid: 17435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-45.5 + rot: -1.5707963267948966 rad + pos: 42.5,29.5 parent: 2 - - uid: 17609 + - uid: 17436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-9.5 + rot: -1.5707963267948966 rad + pos: 42.5,27.5 parent: 2 -- proto: ExtinguisherCabinetOpen - entities: - - uid: 41508 + - uid: 17437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,59.5 - parent: 40203 - - uid: 41509 + pos: 46.5,27.5 + parent: 2 + - uid: 17438 components: - type: Transform - pos: 48.5,53.5 - parent: 40203 -- proto: EZNutrientChemistryBottle - entities: - - uid: 17610 + rot: 3.141592653589793 rad + pos: 43.5,17.5 + parent: 2 + - uid: 17439 components: - type: Transform - pos: 7.3711395,32.819363 + pos: 12.5,-49.5 parent: 2 -- proto: FaxMachineBase - entities: - - uid: 17611 + - uid: 17440 components: - type: Transform - pos: 3.5,1.5 + rot: 3.141592653589793 rad + pos: 29.5,-35.5 parent: 2 - - type: FaxMachine - name: Мостик - - uid: 17612 + - uid: 17441 components: - type: Transform - pos: -20.5,3.5 + rot: 1.5707963267948966 rad + pos: 19.5,-35.5 parent: 2 - - type: FaxMachine - name: Офис Детектива - - uid: 17613 + - uid: 17442 components: - type: Transform - pos: 33.5,-53.5 + rot: -1.5707963267948966 rad + pos: 33.5,-37.5 parent: 2 - - type: FaxMachine - name: Офис НРа - - uid: 17614 + - uid: 17443 components: - type: Transform - pos: -9.5,-6.5 + rot: 3.141592653589793 rad + pos: 30.5,-57.5 parent: 2 - - type: FaxMachine - name: Офис ГП - - uid: 17615 + - uid: 17444 components: - type: Transform - pos: 2.5,-49.5 + rot: -1.5707963267948966 rad + pos: 33.5,-51.5 parent: 2 - - type: FaxMachine - name: Офис СИ - - uid: 17616 + - uid: 17445 components: - type: Transform - pos: -40.5,3.5 + rot: -1.5707963267948966 rad + pos: 45.5,-51.5 parent: 2 - - type: FaxMachine - name: Офис ГСБ - - uid: 17617 + - uid: 17446 components: - type: Transform - pos: -40.5,-12.5 + rot: 1.5707963267948966 rad + pos: 36.5,-45.5 parent: 2 - - type: FaxMachine - name: Офис Смотрителя - - uid: 17618 + - uid: 17447 components: - type: Transform - pos: -18.5,26.5 + pos: 35.5,-38.5 parent: 2 - - type: FaxMachine - name: Кабинет АВД - - uid: 17619 + - uid: 17448 components: - type: Transform - pos: -2.5,22.5 + rot: 1.5707963267948966 rad + pos: 21.5,-51.5 parent: 2 - - type: FaxMachine - name: Библиотека - - uid: 17620 + - uid: 17449 components: - type: Transform - pos: -8.5,58.5 + rot: 3.141592653589793 rad + pos: 19.5,-48.5 parent: 2 - - type: FaxMachine - name: Офис ГВ - - uid: 17621 + - uid: 17450 components: - type: Transform - pos: 74.5,-40.5 + rot: 1.5707963267948966 rad + pos: 16.5,-41.5 parent: 2 - - type: FaxMachine - name: Офис КМа - - uid: 17622 + - uid: 17451 components: - type: Transform - pos: -110.5,2.5 + rot: 1.5707963267948966 rad + pos: 21.5,-43.5 parent: 2 - - type: FaxMachine - name: Пермабриг -- proto: FaxMachineCaptain - entities: - - uid: 17623 + - uid: 17452 components: - type: Transform - pos: 13.5,-9.5 + rot: 3.141592653589793 rad + pos: 59.5,-34.5 parent: 2 - - type: FaxMachine - name: Офис Капитана -- proto: FaxMachineSyndie - entities: - - uid: 17624 + - uid: 17453 components: - - type: MetaData - name: факс дальнего действия - type: Transform - pos: -57.5,50.5 + pos: 81.5,-33.5 parent: 2 - - type: FaxMachine - name: ERR 404 - - type: ApcPowerReceiver - needsPower: False -- proto: FenceMetalBroken - entities: - - uid: 17625 + - uid: 17454 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-74.5 + pos: -113.5,28.5 parent: 2 - - uid: 41510 + - uid: 17455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,69.5 - parent: 40203 -- proto: FenceMetalCorner - entities: - - uid: 17626 + rot: 1.5707963267948966 rad + pos: -113.5,30.5 + parent: 2 + - uid: 17456 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,10.5 + pos: -106.5,6.5 parent: 2 - - uid: 17627 + - uid: 17457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,13.5 + rot: 1.5707963267948966 rad + pos: -113.5,32.5 parent: 2 - - uid: 17628 + - uid: 17458 components: - type: Transform - pos: -124.5,10.5 + rot: 1.5707963267948966 rad + pos: 55.5,9.5 parent: 2 - - uid: 17629 + - uid: 17459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,3.5 + rot: -1.5707963267948966 rad + pos: -112.5,1.5 parent: 2 - - uid: 17630 + - uid: 17460 components: - type: Transform rot: -1.5707963267948966 rad - pos: -124.5,0.5 + pos: -101.5,28.5 parent: 2 - - uid: 17631 + - uid: 17461 components: - type: Transform rot: -1.5707963267948966 rad - pos: -125.5,3.5 + pos: -116.5,10.5 parent: 2 - - uid: 17632 + - uid: 17462 components: + - type: MetaData + desc: Да, это сетка, вопросы? + name: сетка - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,76.5 + pos: -124.5,7.5 parent: 2 - - uid: 17633 + - uid: 17463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,76.5 + rot: -1.5707963267948966 rad + pos: -98.5,4.5 parent: 2 - - uid: 17634 + - uid: 17464 components: - type: Transform - pos: -65.5,76.5 + rot: 1.5707963267948966 rad + pos: -34.5,-14.5 parent: 2 - - uid: 17635 + - uid: 17465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,77.5 + pos: -37.5,8.5 parent: 2 - - uid: 17636 + - uid: 17466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,77.5 + pos: -55.5,-2.5 parent: 2 - - uid: 17637 + - uid: 17467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,76.5 + rot: 1.5707963267948966 rad + pos: 73.5,-33.5 parent: 2 - - uid: 17638 + - uid: 17468 components: - type: Transform - pos: -29.5,-74.5 + rot: 1.5707963267948966 rad + pos: -17.5,-15.5 parent: 2 - - uid: 17639 + - uid: 17469 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-74.5 + pos: 24.5,8.5 parent: 2 - - uid: 17640 + - uid: 41848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-73.5 - parent: 2 - - uid: 17641 + rot: -1.5707963267948966 rad + pos: 74.5,59.5 + parent: 40599 + - uid: 41849 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-73.5 - parent: 2 - - uid: 17642 + pos: 68.5,54.5 + parent: 40599 + - uid: 41850 components: - type: Transform - pos: -28.5,-73.5 - parent: 2 - - uid: 17643 + rot: 1.5707963267948966 rad + pos: 46.5,40.5 + parent: 40599 + - uid: 41851 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-73.5 - parent: 2 - - uid: 17644 + pos: 58.5,40.5 + parent: 40599 +- proto: DisposalUnit + entities: + - uid: 17470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-65.5 + pos: 24.5,8.5 parent: 2 - - uid: 17645 + - uid: 17471 components: - type: Transform - pos: -37.5,-60.5 + pos: 72.5,-41.5 parent: 2 - - uid: 17646 + - uid: 17472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-60.5 + pos: 24.5,-6.5 parent: 2 - - uid: 41511 + - uid: 17473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,70.5 - parent: 40203 -- proto: FenceMetalEnd - entities: - - uid: 17647 + pos: -40.5,10.5 + parent: 2 + - uid: 17474 components: - type: Transform - pos: 99.5,-25.5 + pos: 12.5,-0.5 parent: 2 - - uid: 17648 + - uid: 17475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-21.5 + pos: -7.5,-0.5 parent: 2 -- proto: FenceMetalGate - entities: - - uid: 17649 + - uid: 17476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,70.5 + pos: 55.5,9.5 parent: 2 - - uid: 17650 + - uid: 17477 components: - type: Transform - pos: -38.5,-60.5 + pos: 62.5,-2.5 parent: 2 - - uid: 17651 + - uid: 17478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,58.5 + pos: 54.5,7.5 parent: 2 - - uid: 17652 + - uid: 17479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,56.5 + pos: 33.5,31.5 parent: 2 - - uid: 41512 + - uid: 17480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,69.5 - parent: 40203 - - uid: 41513 + pos: 28.5,36.5 + parent: 2 + - uid: 17481 components: - type: Transform - pos: 29.5,70.5 - parent: 40203 - - type: Door - clickOpen: False -- proto: FenceMetalStraight - entities: - - uid: 17653 + pos: 43.5,17.5 + parent: 2 + - uid: 17482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-27.5 + pos: 7.5,31.5 parent: 2 - - uid: 17654 + - uid: 17483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-20.5 + pos: 15.5,41.5 parent: 2 - - uid: 17655 + - uid: 17484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 99.5,-26.5 + pos: 34.5,25.5 parent: 2 - - uid: 17656 + - uid: 17485 components: - type: Transform - pos: -125.5,5.5 + pos: -6.5,-2.5 parent: 2 - - uid: 17657 + - uid: 17486 components: - type: Transform - pos: -125.5,6.5 + pos: 20.5,27.5 parent: 2 - - uid: 17658 + - uid: 17487 components: - type: Transform - pos: -125.5,7.5 + pos: 9.5,29.5 parent: 2 - - uid: 17659 + - uid: 17488 components: - type: Transform - pos: -125.5,4.5 + pos: 33.5,-51.5 parent: 2 - - uid: 17660 + - uid: 17489 components: - type: Transform - pos: -125.5,8.5 + pos: 19.5,-48.5 parent: 2 - - uid: 17661 + - uid: 17490 components: - type: Transform - pos: -125.5,9.5 + pos: 16.5,-41.5 parent: 2 - - uid: 17662 + - uid: 17491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,0.5 + pos: 21.5,-51.5 parent: 2 - - uid: 17663 + - uid: 17492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,0.5 + pos: 33.5,-37.5 parent: 2 - - uid: 17664 + - uid: 17493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,13.5 + pos: 20.5,31.5 parent: 2 - - uid: 17665 + - uid: 17494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,13.5 + pos: 45.5,-51.5 parent: 2 - - uid: 17666 + - uid: 17495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,13.5 + pos: 35.5,-38.5 parent: 2 - - uid: 17667 + - uid: 17496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,13.5 + pos: 19.5,-35.5 parent: 2 - - uid: 17668 + - uid: 17497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,13.5 + pos: 24.5,-45.5 parent: 2 - - uid: 17669 + - uid: 17498 components: - type: Transform - pos: -124.5,12.5 + pos: 21.5,-43.5 parent: 2 - - uid: 17670 + - uid: 17499 components: - type: Transform - pos: -124.5,11.5 + pos: 14.5,14.5 parent: 2 - - uid: 17671 + - uid: 17500 components: - type: Transform - pos: -125.5,9.5 + pos: -9.5,14.5 parent: 2 - - uid: 17672 + - uid: 17501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,2.5 + pos: 79.5,-43.5 parent: 2 - - uid: 17673 + - uid: 17502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,0.5 + pos: -12.5,-46.5 parent: 2 - - uid: 17674 + - uid: 17503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,0.5 + pos: -4.5,-40.5 parent: 2 - - uid: 17675 + - uid: 17504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,0.5 + pos: 0.5,-51.5 parent: 2 - - uid: 17676 + - uid: 17505 components: - type: Transform - pos: -124.5,1.5 + pos: -10.5,-38.5 parent: 2 - - uid: 17677 + - uid: 17506 components: - type: Transform - pos: -47.5,73.5 + pos: -10.5,-53.5 parent: 2 - - uid: 17678 + - uid: 17507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,76.5 + pos: 36.5,-45.5 parent: 2 - - uid: 17679 + - uid: 17508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,76.5 + pos: 29.5,-35.5 parent: 2 - - uid: 17680 + - uid: 17509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,76.5 + pos: -54.5,10.5 parent: 2 - - uid: 17681 + - uid: 17510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,76.5 + pos: 55.5,-24.5 parent: 2 - - uid: 17682 + - uid: 17511 components: - type: Transform - pos: -47.5,75.5 + pos: -12.5,46.5 parent: 2 - - uid: 17683 + - uid: 17512 components: - type: Transform - pos: -47.5,72.5 + pos: 4.5,45.5 parent: 2 - - uid: 17684 + - uid: 17513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,76.5 + pos: -0.5,53.5 parent: 2 - - uid: 17685 + - uid: 17514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,76.5 + pos: -32.5,-0.5 parent: 2 - - uid: 17686 + - uid: 17515 components: - type: Transform - pos: -47.5,70.5 + pos: 64.5,-21.5 parent: 2 - - uid: 17687 + - uid: 17516 components: - type: Transform - pos: -47.5,74.5 + pos: -46.5,-0.5 parent: 2 - - uid: 17688 + - uid: 17517 components: - type: Transform - pos: -47.5,71.5 + pos: -6.5,33.5 parent: 2 - - uid: 17689 + - uid: 17518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,69.5 + pos: -7.5,38.5 parent: 2 - - uid: 17690 + - uid: 17519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,75.5 + pos: -17.5,22.5 parent: 2 - - uid: 17691 + - uid: 17520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,73.5 + pos: -4.5,54.5 parent: 2 - - uid: 17692 + - uid: 17521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,74.5 + pos: 70.5,-36.5 parent: 2 - - uid: 17693 + - uid: 17522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,72.5 + pos: 59.5,-34.5 parent: 2 - - uid: 17694 + - uid: 17523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,71.5 + pos: -106.5,6.5 parent: 2 - - uid: 17695 + - uid: 17524 components: + - type: MetaData + desc: Пневматическая установка для ловли мячей. + name: корзина для баскетболла - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,76.5 + pos: -124.5,7.5 parent: 2 - - uid: 17696 + - uid: 17525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,76.5 + pos: -34.5,-14.5 parent: 2 - - uid: 17697 + - uid: 17526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,76.5 + pos: -37.5,8.5 parent: 2 - - uid: 17698 + - uid: 17527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,77.5 + pos: -101.5,28.5 parent: 2 - - uid: 17699 + - uid: 17528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,77.5 + pos: -116.5,10.5 parent: 2 - - uid: 17700 + - uid: 17529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,77.5 + pos: -112.5,1.5 parent: 2 - - uid: 17701 + - uid: 17530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,77.5 + pos: -98.5,4.5 parent: 2 - - uid: 17702 + - uid: 17531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,77.5 + pos: -55.5,-2.5 parent: 2 - - uid: 17703 + - uid: 17532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,77.5 + pos: -17.5,-15.5 parent: 2 - - uid: 17704 +- proto: DisposalYJunction + entities: + - uid: 17533 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,76.5 + pos: -55.5,-3.5 parent: 2 - - uid: 17705 + - uid: 17534 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,77.5 + pos: 51.5,19.5 parent: 2 - - uid: 17706 + - uid: 17535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,76.5 + pos: 62.5,-23.5 parent: 2 - - uid: 17707 + - uid: 17536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,76.5 + rot: 1.5707963267948966 rad + pos: 62.5,-30.5 parent: 2 - - uid: 17708 + - uid: 17537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,76.5 + pos: 8.5,31.5 parent: 2 - - uid: 17709 + - uid: 17538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,76.5 + rot: 1.5707963267948966 rad + pos: -5.5,48.5 parent: 2 - - uid: 17710 + - uid: 17539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,76.5 + rot: 3.141592653589793 rad + pos: 16.5,14.5 parent: 2 - - uid: 17711 + - uid: 17540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,76.5 + rot: 1.5707963267948966 rad + pos: 21.5,28.5 parent: 2 - - uid: 17712 + - uid: 17541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,76.5 + rot: 3.141592653589793 rad + pos: 26.5,-47.5 parent: 2 - - uid: 17713 +- proto: DogBed + entities: + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,76.5 + pos: -3.5,-10.5 parent: 2 - - uid: 17714 + - type: HealOnBuckle + sleepAction: 11 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 11 + - uid: 17542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-74.5 + pos: 24.5,18.5 parent: 2 - - uid: 17715 + - uid: 17543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-71.5 + pos: -2.5,-56.5 parent: 2 - - uid: 17716 + - uid: 17544 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-72.5 + pos: -44.5,8.5 parent: 2 - - uid: 17717 + - uid: 17545 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-72.5 + pos: 3.5,51.5 parent: 2 - - uid: 17718 + - uid: 17546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-71.5 + pos: -4.5,39.5 parent: 2 - - uid: 17719 + - uid: 17547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-70.5 + pos: -15.5,60.5 parent: 2 - - uid: 17720 + - uid: 17548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-69.5 + pos: -41.5,-17.5 parent: 2 - - uid: 17721 + - uid: 17549 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-68.5 + pos: -3.5,18.5 parent: 2 - - uid: 17722 + - uid: 17550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-67.5 + pos: 13.5,-2.5 parent: 2 - - uid: 17723 + - uid: 17551 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-66.5 + pos: -102.5,19.5 parent: 2 - - uid: 17724 +- proto: DonkpocketBoxSpawner + entities: + - uid: 17552 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-65.5 + pos: -5.5,-50.5 parent: 2 - - uid: 17725 + - uid: 17553 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-64.5 + pos: 25.5,60.5 parent: 2 - - uid: 17726 + - uid: 17554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-70.5 + pos: 78.5,-48.5 parent: 2 - - uid: 17727 + - uid: 17555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-69.5 + pos: 7.5,43.5 parent: 2 - - uid: 17728 + - uid: 17556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-68.5 + pos: -46.5,2.5 parent: 2 - - uid: 17729 + - uid: 17557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-67.5 + pos: 70.5,-43.5 parent: 2 - - uid: 17730 + - uid: 41852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-66.5 + pos: 48.5,78.5 + parent: 40599 +- proto: DoorElectronics + entities: + - uid: 17558 + components: + - type: Transform + pos: 0.43813276,-43.361412 parent: 2 - - uid: 17731 + - uid: 17559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-60.5 + pos: 18.561398,6.7080803 parent: 2 - - uid: 17732 + - uid: 17560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-61.5 + pos: 18.436398,6.5674553 parent: 2 - - uid: 17733 +- proto: Dresser + entities: + - uid: 15244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-63.5 + pos: -78.5,18.5 parent: 2 - - uid: 17734 + - type: Storage + storedItems: + 15245: + position: 0,0 + _rotation: East + 15246: + position: 4,2 + _rotation: South + 15247: + position: 1,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15245 + - 15246 + - 15247 + - uid: 15265 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-62.5 + pos: -53.5,15.5 parent: 2 - - uid: 17735 + - type: Storage + storedItems: + 15266: + position: 0,0 + _rotation: East + 15267: + position: 0,1 + _rotation: West + 15271: + position: 0,2 + _rotation: South + 15273: + position: 2,2 + _rotation: South + 15270: + position: 4,2 + _rotation: South + 15269: + position: 4,0 + _rotation: South + 15268: + position: 6,2 + _rotation: South + 15272: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15266 + - 15271 + - 15273 + - 15270 + - 15269 + - 15268 + - 15272 + - 15267 + - uid: 15276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-74.5 + pos: -39.5,35.5 parent: 2 - - uid: 17736 + - type: Storage + storedItems: + 15283: + position: 0,0 + _rotation: South + 15284: + position: 2,0 + _rotation: South + 15277: + position: 5,0 + _rotation: East + 15278: + position: 4,0 + _rotation: South + 15279: + position: 4,2 + _rotation: South + 15282: + position: 5,1 + _rotation: South + 15280: + position: 2,2 + _rotation: South + 15281: + position: 0,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 15283 + - 15284 + - 15280 + - 15281 + - 15279 + - 15278 + - 15277 + - 15282 + - uid: 17561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-74.5 + pos: 56.5,13.5 parent: 2 - - uid: 17737 + - uid: 17562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-74.5 + pos: 63.5,12.5 parent: 2 - - uid: 17738 + - uid: 17563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-74.5 + pos: 49.5,12.5 parent: 2 - - uid: 17739 + - uid: 17564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-74.5 + pos: 48.5,23.5 parent: 2 - - uid: 17740 + - uid: 17565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-74.5 + pos: -26.5,4.5 parent: 2 - - uid: 17741 + - uid: 17566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-74.5 + pos: -23.5,23.5 parent: 2 - - uid: 41514 + - uid: 41575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,68.5 - parent: 40203 - - uid: 41515 + pos: 45.5,28.5 + parent: 40599 + - type: Storage + storedItems: + 41576: + position: 0,0 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 41576 + - uid: 41853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,70.5 - parent: 40203 - - uid: 41516 + pos: 63.5,79.5 + parent: 40599 + - uid: 41854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,70.5 - parent: 40203 -- proto: FenceWoodHighCorner - entities: - - uid: 17742 + pos: 60.5,79.5 + parent: 40599 + - uid: 41855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,25.5 - parent: 2 - - uid: 17743 + pos: 66.5,79.5 + parent: 40599 + - uid: 41856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,24.5 - parent: 2 - - uid: 41517 + pos: 69.5,79.5 + parent: 40599 + - uid: 41857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,18.5 - parent: 40203 - - uid: 41518 + pos: 72.5,79.5 + parent: 40599 + - uid: 41858 components: - type: Transform - pos: 57.5,18.5 - parent: 40203 -- proto: FenceWoodHighGate - entities: - - uid: 17744 + pos: 47.5,23.5 + parent: 40599 + - uid: 41859 components: - type: Transform - pos: -34.5,23.5 - parent: 2 - - uid: 17745 + pos: 45.5,23.5 + parent: 40599 + - uid: 41860 components: - type: Transform - pos: -89.5,25.5 - parent: 2 - - uid: 17746 + pos: 43.5,28.5 + parent: 40599 +- proto: DresserCaptainFilled + entities: + - uid: 17567 components: - type: Transform - pos: -31.5,70.5 + pos: 18.5,-9.5 parent: 2 - - uid: 41519 +- proto: DresserChiefEngineerFilled + entities: + - uid: 17568 components: - type: Transform - pos: 50.5,18.5 - parent: 40203 -- proto: FenceWoodHighStraight + pos: 8.5,-47.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled entities: - - uid: 41520 + - uid: 17569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,18.5 - parent: 40203 - - uid: 41521 + pos: -14.5,62.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 17570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,18.5 - parent: 40203 - - uid: 41522 + pos: 3.5,-32.5 + parent: 2 + - uid: 17571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 40203 - - uid: 41523 + pos: 9.5,-32.5 + parent: 2 + - uid: 17572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,18.5 - parent: 40203 - - uid: 41524 + pos: 38.5,-4.5 + parent: 2 + - uid: 17573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,18.5 - parent: 40203 - - uid: 41525 + pos: 35.5,-12.5 + parent: 2 + - uid: 17574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,19.5 - parent: 40203 - - uid: 41526 + pos: 35.5,-9.5 + parent: 2 + - uid: 17575 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,21.5 - parent: 40203 - - uid: 41527 + pos: 39.5,9.5 + parent: 2 + - uid: 17576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,20.5 - parent: 40203 - - uid: 41528 + pos: 42.5,9.5 + parent: 2 + - uid: 17577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,18.5 - parent: 40203 - - uid: 41529 + pos: 88.5,-27.5 + parent: 2 + - uid: 17578 components: - type: Transform - pos: 57.5,19.5 - parent: 40203 - - uid: 41530 + pos: 6.5,60.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 17579 components: - type: Transform - pos: 57.5,20.5 - parent: 40203 - - uid: 41531 + pos: -12.5,-12.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 17580 components: - type: Transform - pos: 57.5,21.5 - parent: 40203 - - uid: 41532 + pos: -40.5,6.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 17581 components: - type: Transform - pos: 57.5,23.5 - parent: 40203 - - uid: 41533 + pos: 80.5,-40.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 17582 components: - type: Transform - pos: 57.5,22.5 - parent: 40203 - - uid: 41534 + pos: 28.5,-57.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 17583 components: - type: Transform - pos: 57.5,24.5 - parent: 40203 -- proto: FenceWoodSmallCorner + pos: -41.5,-18.5 + parent: 2 +- proto: DrinkAleBottleFull entities: - - uid: 17747 + - uid: 17584 components: - type: Transform - pos: 96.5,-19.5 + pos: -96.2578,35.84251 parent: 2 - - uid: 17748 +- proto: DrinkAlexanderGlass + entities: + - uid: 17585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-19.5 + pos: -23.915451,26.713629 parent: 2 - - uid: 17749 +- proto: DrinkAntifreeze + entities: + - uid: 17586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-13.5 + pos: 40.461464,20.47035 parent: 2 -- proto: FenceWoodSmallStraight +- proto: DrinkBananaHonkGlass entities: - - uid: 17750 + - uid: 17587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-19.5 + pos: 53.63142,11.6875 parent: 2 - - uid: 17751 +- proto: DrinkBeerBottleFull + entities: + - uid: 17588 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,-19.5 + pos: -22.462698,59.940643 parent: 2 - - uid: 17752 + - uid: 17589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-18.5 + pos: -4.3240085,-43.492805 parent: 2 - - uid: 17753 + - uid: 17590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-17.5 + pos: -78.51213,4.1784406 parent: 2 - - uid: 17754 + - uid: 17591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-16.5 + pos: -79.82463,4.5065656 parent: 2 - - uid: 17755 + - uid: 41861 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-15.5 - parent: 2 - - uid: 17756 + pos: 38.883614,32.806175 + parent: 40599 +- proto: DrinkBeerCan + entities: + - uid: 17592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.5,-14.5 + pos: -37.834328,24.257116 parent: 2 - - uid: 17757 + - uid: 17593 components: - type: Transform - pos: 96.5,-14.5 + rot: -1.5707963267948966 rad + pos: -65.26554,53.77751 parent: 2 - - uid: 17758 + - uid: 17594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,-16.5 + pos: -65.16691,50.481277 parent: 2 - - uid: 17759 + - uid: 17595 components: - type: Transform - pos: 96.5,-15.5 + pos: 96.61755,-0.5079489 parent: 2 - - uid: 41535 + - uid: 17596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,21.5 - parent: 40203 - - uid: 41536 + pos: -63.320248,51.302265 + parent: 2 + - uid: 17597 components: - type: Transform - pos: 55.5,21.5 - parent: 40203 - - uid: 41537 + pos: -65.679535,50.468933 + parent: 2 + - uid: 17599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,20.5 - parent: 40203 - - uid: 41538 + parent: 17598 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,22.5 - parent: 40203 -- proto: FigureSpawner - entities: - - uid: 17760 + parent: 17598 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17601 components: - type: Transform - pos: -7.5,19.5 - parent: 2 -- proto: filingCabinet - entities: - - uid: 17761 + parent: 17598 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17602 components: - type: Transform - pos: 28.5,58.5 + rot: -4.363323129985824 rad + pos: -91.90664,11.140566 parent: 2 - - uid: 41539 + - uid: 17603 components: - type: Transform - pos: 58.256695,59.517395 - parent: 40203 -- proto: filingCabinetDrawer - entities: - - uid: 17762 + pos: -81.624466,3.17995 + parent: 2 + - uid: 17604 components: - type: Transform - pos: -6.5,-35.5 + rot: -1.5707963267948966 rad + pos: -81.280716,4.60809 parent: 2 - - uid: 17763 + - uid: 17605 components: - type: Transform - pos: 31.5,-53.5 + rot: -1.5707963267948966 rad + pos: 94.60193,4.492051 parent: 2 - - uid: 17764 + - uid: 17606 components: - type: Transform - pos: 41.5,-43.5 + pos: -64.80744,68.54269 parent: 2 - - uid: 17765 + - uid: 17607 components: - type: Transform - pos: 27.5,-49.5 + pos: -28.115477,43.8125 parent: 2 - - uid: 17766 + - uid: 17608 components: - type: Transform - pos: 43.5,-47.5 + pos: -28.162352,43.703125 parent: 2 - - uid: 17767 + - uid: 40684 components: - type: Transform - pos: 11.5,17.5 - parent: 2 -- proto: filingCabinetDrawerRandom + parent: 40679 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkBeerglass entities: - - uid: 17768 + - uid: 17609 components: - type: Transform - pos: 72.5,-37.5 + pos: 97.24832,-25.422596 parent: 2 - - uid: 17769 + - uid: 17610 components: - type: Transform - pos: 20.5,17.5 + pos: 97.81082,-25.500721 parent: 2 - - uid: 17770 +- proto: DrinkBloodGlass + entities: + - uid: 47058 components: - type: Transform - pos: -55.5,17.5 - parent: 2 - - uid: 17771 + pos: -3.281166,6.766865 + parent: 46943 +- proto: DrinkBottleAlcoClear + entities: + - uid: 17611 components: - type: Transform - pos: -2.5585213,18.555326 + rot: -1.5707963267948966 rad + pos: -33.09299,28.569855 parent: 2 -- proto: filingCabinetRandom +- proto: DrinkBottleAle entities: - - uid: 17772 + - uid: 17612 components: - type: Transform - pos: -3.5,-7.5 + rot: -1.5707963267948966 rad + pos: -117.322945,-0.8563845 parent: 2 - - uid: 17773 +- proto: DrinkBottleBeer + entities: + - uid: 17613 components: - type: Transform - pos: -6.5,-12.5 + rot: 1.5707963267948966 rad + pos: 99.403435,7.699613 parent: 2 - - uid: 17774 + - uid: 17614 components: - type: Transform - pos: -40.5,-0.5 + rot: -1.5707963267948966 rad + pos: -40.55945,26.575312 parent: 2 - - uid: 17775 + - uid: 17615 components: - type: Transform - pos: -32.5,2.5 + rot: -1.5707963267948966 rad + pos: -40.450073,26.747187 parent: 2 - - uid: 17776 + - uid: 17616 components: - type: Transform - pos: -34.5,5.5 + pos: -40.99695,26.809687 parent: 2 - - uid: 17777 + - uid: 41862 components: - type: Transform - pos: 0.5,22.5 - parent: 2 - - uid: 17778 + rot: -1.5707963267948966 rad + pos: 37.657627,37.09776 + parent: 40599 + - uid: 41863 components: - type: Transform - pos: 0.5,-46.5 - parent: 2 - - uid: 41540 + pos: 41.162376,37.671833 + parent: 40599 +- proto: DrinkBottleCognac + entities: + - uid: 17617 components: - type: Transform - pos: 49.311283,55.5 - parent: 40203 - - uid: 41541 + pos: -29.327366,30.67923 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 15373 components: - type: Transform - pos: 49.29566,54.5 - parent: 40203 -- proto: filingCabinetTall + parent: 15368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkBottlePatron entities: - - uid: 17779 + - uid: 17618 components: - type: Transform - pos: -38,-19.5 + pos: 18.517927,-10.487949 parent: 2 - - uid: 17780 + - uid: 17619 components: - type: Transform - pos: -38,-18.5 + pos: -29.62424,30.507355 parent: 2 -- proto: filingCabinetTallRandom +- proto: DrinkBottleRum entities: - - uid: 17781 + - uid: 17620 components: - type: Transform - pos: -3.5,68.5 + pos: 17.266304,-2.3632016 parent: 2 -- proto: FireAlarm - entities: - - uid: 17782 + - uid: 17621 components: - type: Transform - pos: 55.5,-35.5 + rot: -1.5707963267948966 rad + pos: 17.594429,-2.7382016 parent: 2 - - type: DeviceList - devices: - - 17791 - - 17790 - - 17787 - - 18016 - - 17788 - - 18015 -- proto: FireAxeCabinetFilled +- proto: DrinkBottleVodka entities: - - uid: 17783 + - uid: 17622 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-57.5 + pos: -116.86982,-0.5126345 parent: 2 - - uid: 17784 + - uid: 41864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-1.5 - parent: 2 -- proto: FireExtinguisher + rot: -1.5707963267948966 rad + pos: 67.53109,39.168934 + parent: 40599 + - uid: 41865 + components: + - type: Transform + pos: 68.729004,42.075184 + parent: 40599 + - uid: 41866 + components: + - type: Transform + pos: 67.145676,39.512684 + parent: 40599 + - uid: 41867 + components: + - type: Transform + pos: 67.291504,39.648098 + parent: 40599 +- proto: DrinkBottleWhiskey entities: - - uid: 17785 + - uid: 17623 components: - type: Transform - pos: 69.5603,-51.216446 + rot: -1.5707963267948966 rad + pos: -126.53137,-14.31414 parent: 2 - - uid: 17786 + - uid: 17624 components: - type: Transform - pos: 69.29468,-51.122696 + pos: -126.34387,-14.454765 parent: 2 -- proto: Firelock - entities: - - uid: 17787 + - uid: 17625 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-37.5 + pos: -117.30732,-0.27825952 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17782 - - 44 - - uid: 17788 + - uid: 17626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-46.5 + pos: -117.041695,-0.26263452 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17782 - - 44 - - 45 - - uid: 17789 +- proto: DrinkCanPack + entities: + - uid: 17627 components: - type: Transform rot: 3.141592653589793 rad - pos: 80.5,-44.5 + pos: -65.413956,50.84787 parent: 2 - - type: DeviceNetwork - deviceLists: - - 45 - - 46 - - uid: 17790 +- proto: DrinkCartonMilk + entities: + - uid: 45592 components: - type: Transform - pos: 56.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17782 - - 42 - - 44 - - uid: 17791 + rot: 1.5707963267948966 rad + pos: 7.195634,2.5832586 + parent: 45355 +- proto: DrinkCognacBottleFull + entities: + - uid: 41868 components: - type: Transform - pos: 57.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17782 - - 42 - - 44 - - uid: 17792 + pos: 73.392624,78.8535 + parent: 40599 +- proto: DrinkColaCan + entities: + - uid: 8469 components: - type: Transform - pos: -24.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 113 - - 111 - - uid: 17793 + parent: 8468 + - type: Physics + canCollide: False +- proto: DrinkColaCanEmpty + entities: + - uid: 17628 components: - type: Transform - pos: -24.5,14.5 + rot: 1.5707963267948966 rad + pos: 27.29399,10.838115 parent: 2 - - type: DeviceNetwork - deviceLists: - - 113 - - 111 - - uid: 17794 + - uid: 41869 components: - type: Transform - pos: -22.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 55 - - 127 - - uid: 17795 + rot: -1.8325957145940461 rad + pos: 49.83025,76.750145 + parent: 40599 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 17629 components: - type: Transform - pos: -36.5,13.5 + pos: 2.7244549,44.38947 parent: 2 - - type: DeviceNetwork - deviceLists: - - 120 - - 123 - - uid: 17796 + - uid: 17630 components: - type: Transform - pos: -38.5,13.5 + pos: -15.61294,58.55791 parent: 2 - - type: DeviceNetwork - deviceLists: - - 119 - - 123 - - uid: 17797 + - uid: 17631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-3.5 + pos: -7.5208673,58.58599 parent: 2 - - type: DeviceNetwork - deviceLists: - - 129 - - 132 - - uid: 17798 +- proto: DrinkFlask + entities: + - uid: 17632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,5.5 + pos: 18.38169,-13.399717 parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - - 128 - - uid: 17799 +- proto: DrinkFlaskBar + entities: + - uid: 17633 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-5.5 + pos: 43.65217,21.335716 parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - - 132 - - uid: 17800 +- proto: DrinkFlaskOld + entities: + - uid: 41870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - - 136 - - uid: 17801 + rot: -1.5707963267948966 rad + pos: 34.556557,68.56441 + parent: 40599 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 8165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - - 132 - - uid: 17802 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkGlass + entities: + - uid: 17634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-5.5 + pos: -21.243444,47.404636 parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - - 132 - - uid: 17803 + - uid: 17635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-10.5 + pos: -21.430944,47.57651 parent: 2 - - type: DeviceNetwork - deviceLists: - - 117 - - 116 - - uid: 17804 + - uid: 17636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-13.5 + pos: -21.69657,47.48276 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - uid: 17805 + - uid: 17637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-14.5 + pos: -18.17995,23.389711 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - - 136 - - uid: 17806 + - uid: 17638 components: - type: Transform - pos: -0.5,-41.5 + pos: -18.866486,23.191889 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 17807 + - uid: 17639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-5.5 + pos: 42.313087,25.76848 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - uid: 17808 + - uid: 17640 components: - type: Transform - pos: -35.5,4.5 + pos: 42.563087,25.76848 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - - 132 - - uid: 17809 + - uid: 17641 components: - type: Transform - pos: -31.5,4.5 + pos: 42.813087,25.76848 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - - 122 - - uid: 17810 + - uid: 17642 components: - type: Transform - pos: -11.5,-32.5 + pos: 2.6115053,-1.5335433 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 17811 + - uid: 17643 components: - type: Transform - pos: 5.5,-50.5 + pos: 2.2990053,0.013331652 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - uid: 17812 + - uid: 41871 components: - type: Transform - pos: 9.5,-50.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - - uid: 17813 + pos: 73.627,78.806625 + parent: 40599 +- proto: DrinkGlassCoupeShaped + entities: + - uid: 17644 components: - type: Transform - pos: -9.5,-51.5 + pos: 43.203712,25.846605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - 53 - - uid: 17814 + - uid: 17645 components: - type: Transform - pos: 3.5,-55.5 + pos: 43.484962,25.846605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - 53 - - uid: 17815 + - uid: 17646 components: - type: Transform - pos: 3.5,-54.5 + pos: 43.766212,25.846605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - - 53 - - uid: 17816 +- proto: DrinkGrapeCan + entities: + - uid: 17647 components: - type: Transform - pos: -25.5,-47.5 + pos: 38.440746,-45.377457 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 17817 + - uid: 17648 components: - type: Transform - pos: -24.5,-47.5 + pos: 38.67512,-45.51808 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 17818 + - uid: 17649 components: - type: Transform - pos: -23.5,-47.5 + pos: 24.747139,7.651206 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 17819 +- proto: DrinkGrapeJuice + entities: + - uid: 45593 components: - type: Transform - pos: -28.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - - 51 - - uid: 17820 + pos: 4.4389687,3.463226 + parent: 45355 +- proto: DrinkHotCoco + entities: + - uid: 17650 components: - type: Transform - pos: -31.5,-45.5 + pos: -0.38973904,-21.51584 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - uid: 17821 + - uid: 17651 components: - type: Transform - pos: 12.5,-6.5 + pos: -0.67098904,-21.26584 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - - uid: 17822 + - uid: 17652 components: - type: Transform - pos: 14.5,-8.5 + pos: 23.33048,-40.297527 parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 - - 68 - - uid: 17823 + - uid: 17653 components: - type: Transform - pos: 17.5,-6.5 + pos: 23.471106,-40.485027 parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 - - uid: 17824 + - uid: 17654 components: - type: Transform - pos: 15.5,-12.5 + pos: 23.67423,-40.328777 parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 - - uid: 17825 + - uid: 17655 components: - type: Transform - pos: 13.5,-11.5 + pos: -37.15722,-14.2210865 parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - uid: 17826 + - uid: 17657 components: - type: Transform - pos: 8.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - 75 - - uid: 17827 + parent: 17656 + - type: Physics + canCollide: False + - uid: 17658 components: - type: Transform - pos: 10.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - 75 - - uid: 17828 + parent: 17656 + - type: Physics + canCollide: False + - uid: 17659 components: - type: Transform - pos: 11.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - 75 - - uid: 17829 + parent: 17656 + - type: Physics + canCollide: False + - uid: 17660 components: - type: Transform - pos: 12.5,-14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - 75 - - uid: 17830 + parent: 17656 + - type: Physics + canCollide: False +- proto: DrinkHotCoffee + entities: + - uid: 17661 components: - type: Transform - pos: -4.5,-8.5 + pos: 54.829105,-4.4284472 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - 67 - - uid: 17831 + - uid: 17662 components: - type: Transform - pos: -10.5,-4.5 + pos: 54.25098,-4.3503222 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - uid: 17832 + - uid: 17663 components: - type: Transform - pos: -14.5,-6.5 + pos: 1.9214928,1.7509642 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - - uid: 17833 + - uid: 17664 components: - type: Transform - pos: -11.5,-9.5 + pos: 11.226658,19.56178 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - uid: 17834 + - uid: 17665 components: - type: Transform - pos: -112.5,32.5 + pos: 8.56513,-4.4591465 parent: 2 - - type: DeviceNetwork - deviceLists: - - 110 - - uid: 17835 + - uid: 17666 components: - type: Transform - pos: 2.5,-12.5 + pos: -107.580574,22.511091 parent: 2 - - type: DeviceNetwork - deviceLists: - - 80 - - 140 - - uid: 17836 + - uid: 41872 components: - type: Transform - pos: 10.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 - - uid: 17837 + pos: 37.36487,59.746525 + parent: 40599 +- proto: DrinkIcedCoffeeGlass + entities: + - uid: 17667 components: - type: Transform - pos: 5.5,13.5 + pos: -20.697102,26.149164 parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 - - uid: 17838 +- proto: DrinkLemonadeGlass + entities: + - uid: 17668 components: - type: Transform - pos: -0.5,13.5 + rot: 1.5707963267948966 rad + pos: -122.97377,1.577358 parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 - - uid: 17839 +- proto: DrinkManlyDorfGlass + entities: + - uid: 17669 components: - type: Transform - pos: -5.5,11.5 + pos: -118.730675,32.22305 parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 - - uid: 17840 +- proto: DrinkMilkCarton + entities: + - uid: 17670 components: - type: Transform - pos: -112.5,30.5 + pos: -15.2751465,58.83635 parent: 2 - - type: DeviceNetwork - deviceLists: - - 110 - - uid: 17841 + - uid: 45594 components: - type: Transform - pos: -112.5,28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 110 - - uid: 17842 + pos: 7.476884,2.9426336 + parent: 45355 + - uid: 45595 components: - type: Transform - pos: 23.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 78 - - uid: 17843 + pos: 7.758134,2.6926336 + parent: 45355 + - uid: 45596 components: - type: Transform - pos: 29.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 78 - - uid: 17844 + pos: 7.680009,2.9426336 + parent: 45355 + - uid: 45597 components: - type: Transform - pos: -16.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - - uid: 17845 + pos: 7.680009,2.9426336 + parent: 45355 +- proto: DrinkMug + entities: + - uid: 17671 components: - type: Transform - pos: -19.5,-1.5 + pos: 2.314417,-50.796593 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - - uid: 17846 +- proto: DrinkMugBlack + entities: + - uid: 17672 components: - type: Transform - pos: 28.5,7.5 + pos: -1.2994671,-50.586605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 78 - - uid: 17847 + - uid: 17673 components: - type: Transform - pos: 24.5,7.5 + pos: -1.4713421,-50.399105 parent: 2 - - type: DeviceNetwork - deviceLists: - - 78 - - uid: 17848 + - uid: 17674 components: - type: Transform - pos: 13.5,42.5 + pos: -1.2369671,-50.399105 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - - uid: 17849 + - uid: 17675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,41.5 + pos: -1.5650921,-50.586605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - - uid: 17850 +- proto: DrinkMugBlue + entities: + - uid: 17676 components: - type: Transform - pos: 21.5,30.5 + pos: 6.3082495,-56.213337 parent: 2 - - type: DeviceNetwork - deviceLists: - - 60 - - 88 - - uid: 17851 + - uid: 17677 components: - type: Transform - pos: 25.5,41.5 + pos: 6.3707495,-56.432087 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - uid: 17852 + - uid: 17678 components: - type: Transform - pos: 29.5,35.5 + pos: 6.6363745,-56.260212 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 59 - - uid: 17853 +- proto: DrinkMugMetal + entities: + - uid: 17679 components: - type: Transform - pos: 35.5,33.5 + pos: -26.573298,8.102623 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - uid: 17854 +- proto: DrinkMugMoebius + entities: + - uid: 17680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,37.5 + pos: 3.04713,43.45064 parent: 2 - - type: DeviceNetwork - deviceLists: - - 59 - - uid: 17855 + - uid: 41873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - uid: 17856 + pos: 71.66518,74.74509 + parent: 40599 +- proto: DrinkMugOne + entities: + - uid: 17681 components: - type: Transform - pos: 44.5,18.5 + pos: 2.642542,-50.015343 parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - - 63 - - uid: 17857 + - uid: 17682 components: - type: Transform - pos: 40.5,24.5 + pos: 18.746794,-11.712442 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - 90 - - uid: 17858 +- proto: DrinkMugRed + entities: + - uid: 17683 components: - type: Transform - pos: 37.5,26.5 + pos: 2.312755,43.778767 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - uid: 17859 + - uid: 17684 components: - type: Transform - pos: 49.5,18.5 + pos: -36.929607,-14.4781475 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 17860 + - uid: 17685 components: - type: Transform - pos: 47.5,24.5 + pos: 8.746008,-7.242208 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 17861 + - uid: 41874 components: - type: Transform - pos: 1.5,29.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 62 - - uid: 17862 + pos: 71.33705,75.04196 + parent: 40599 +- proto: DrinkNothing + entities: + - uid: 17686 components: - type: Transform - pos: 3.5,29.5 + pos: 60.25778,11.53125 parent: 2 - - type: DeviceNetwork - deviceLists: - - 62 - - uid: 17863 +- proto: DrinkRumBottleFull + entities: + - uid: 17687 components: - type: Transform - pos: 4.5,29.5 + pos: -26.276423,8.597319 parent: 2 - - type: DeviceNetwork - deviceLists: - - 62 - - uid: 17864 + - uid: 17688 components: - type: Transform - pos: -18.5,39.5 + pos: 7.612801,-49.08893 parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - - uid: 17865 + - uid: 17689 components: - type: Transform - pos: 8.5,48.5 + pos: 12.304428,-3.828969 parent: 2 - - type: DeviceNetwork - deviceLists: - - 153 - - 69 - - uid: 17866 +- proto: DrinkSakeBottleFull + entities: + - uid: 17690 components: - type: Transform - pos: 9.5,44.5 + pos: 44.12622,12.437166 parent: 2 - - type: DeviceNetwork - deviceLists: - - 153 - - uid: 17867 +- proto: DrinkShakeEmpty + entities: + - uid: 17691 components: - type: Transform - pos: 11.5,44.5 + pos: 43.188087,25.627855 parent: 2 - - type: DeviceNetwork - deviceLists: - - 153 - - uid: 17868 + - uid: 17692 components: - type: Transform - pos: 12.5,45.5 + pos: 43.484962,25.61223 parent: 2 - - type: DeviceNetwork - deviceLists: - - 153 - - uid: 17869 + - uid: 17693 components: - type: Transform - pos: 4.5,50.5 + pos: 43.750587,25.61223 parent: 2 - - type: DeviceNetwork - deviceLists: - - 152 - - 69 - - uid: 17870 +- proto: DrinkShaker + entities: + - uid: 17694 components: - type: Transform - pos: -11.5,58.5 + pos: 43.765415,21.843315 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 17871 + - uid: 17695 components: - type: Transform - pos: -11.5,61.5 + pos: -107.572174,12.15694 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - uid: 17872 + - uid: 45598 components: - type: Transform - pos: -4.5,64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - - uid: 17873 + rot: -1.5707963267948966 rad + pos: 7.555597,3.035201 + parent: 45355 +- proto: DrinkShinyFlask + entities: + - uid: 17696 components: - type: Transform - pos: -5.5,64.5 + rot: -1.5707963267948966 rad + pos: -35.54426,21.661734 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - - uid: 17874 +- proto: DrinkShotGlass + entities: + - uid: 17697 components: - type: Transform - pos: -5.5,67.5 + pos: 42.906837,25.471605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 17875 + - uid: 17698 components: - type: Transform - pos: -4.5,67.5 + pos: 42.641212,25.471605 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 17876 + - uid: 17699 components: - type: Transform - pos: -8.5,71.5 + pos: 42.359962,25.45598 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 17877 + - uid: 17700 components: - type: Transform - pos: -10.5,69.5 + pos: 12.250678,-3.3944516 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - - uid: 17878 + - uid: 17701 components: - type: Transform - pos: 0.5,60.5 + pos: 12.695053,-3.938344 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - - 69 - - uid: 17879 + - uid: 17703 components: - type: Transform - pos: -19.5,54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 148 - - 150 - - uid: 17880 + parent: 17702 + - type: Physics + canCollide: False + - uid: 17704 components: - type: Transform - pos: -14.5,45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - - 150 - - uid: 17881 + parent: 17702 + - type: Physics + canCollide: False + - uid: 41875 components: - type: Transform - pos: -19.5,46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 145 - - 150 - - uid: 17882 + pos: 59.237946,77.66226 + parent: 40599 + - uid: 41876 components: - type: Transform - pos: -23.5,47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 145 - - uid: 17883 + pos: 68.416504,41.773098 + parent: 40599 +- proto: DrinkSnowWhite + entities: + - uid: 17706 components: - type: Transform - pos: -30.5,50.5 + rot: 3.141592653589793 rad + pos: 91.33825,-44.523655 parent: 2 - - type: DeviceNetwork - deviceLists: - - 146 - - uid: 17884 +- proto: DrinkSodaWaterCan + entities: + - uid: 17707 components: - type: Transform - pos: -25.5,49.5 + pos: 16.388573,-34.46166 parent: 2 - - type: DeviceNetwork - deviceLists: - - 146 - - uid: 17885 +- proto: DrinkSpaceGlue + entities: + - uid: 17708 components: - type: Transform - pos: 0.5,57.5 + pos: -9.572407,-7.289655 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - - uid: 17886 +- proto: DrinkSpaceLube + entities: + - uid: 17709 components: - type: Transform - pos: 52.5,8.5 + pos: 29.61559,-37.173176 parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - - 99 - - uid: 17887 + - uid: 17710 components: - type: Transform - pos: 56.5,8.5 + pos: 29.78843,-37.288403 parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 - - 99 - - uid: 17888 + - uid: 17711 components: - type: Transform - pos: 56.5,5.5 + pos: 29.837812,-37.140255 parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - - uid: 17889 +- proto: DrinkSpaceMountainWindBottleFull + entities: + - uid: 17712 components: - type: Transform - pos: 61.5,8.5 + pos: 65.55275,-43.213085 parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 - - 99 - - uid: 17890 +- proto: DrinkTeacup + entities: + - uid: 17713 components: - type: Transform - pos: 61.5,5.5 + pos: 39.729763,13.623097 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - 99 - - uid: 17891 + - uid: 17714 components: - type: Transform - pos: 63.5,6.5 + pos: 3.6092386,65.522285 parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 - - 99 - - uid: 17892 + - uid: 17715 components: - type: Transform - pos: 68.5,6.5 + pos: 3.2967386,65.616035 parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 - - uid: 17893 +- proto: DrinkTeaGlass + entities: + - uid: 17716 components: - type: Transform - pos: 58.5,0.5 + pos: -77.621994,18.477816 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 17894 +- proto: DrinkTeapot + entities: + - uid: 17717 components: - type: Transform - pos: 58.5,1.5 + pos: -77.71315,18.764275 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 17895 + - uid: 17718 components: - type: Transform - pos: 61.5,-3.5 + pos: 3.6092386,65.88166 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - - uid: 17896 + - uid: 41877 components: - type: Transform - pos: 56.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - - uid: 17897 + pos: 71.42831,75.56656 + parent: 40599 +- proto: DrinkVodkaBottleFull + entities: + - uid: 17705 components: - type: Transform - pos: 77.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - - 47 - - uid: 17898 + parent: 17702 + - type: Physics + canCollide: False +- proto: DrinkWaterBottleFull + entities: + - uid: 17719 components: - type: Transform - pos: 81.5,-36.5 + pos: -33.100113,12.7067585 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - - uid: 17899 + - uid: 17720 components: - type: Transform - pos: 63.5,-35.5 + pos: -32.896988,12.7223835 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - uid: 17900 + - uid: 17721 components: - type: Transform - pos: 61.5,-35.5 + pos: 51.979843,-22.36058 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - uid: 17901 + - uid: 17722 components: - type: Transform - pos: 68.5,-29.5 + pos: 2.3615053,-1.5804183 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 17902 + - uid: 17723 components: - type: Transform - pos: 44.5,-50.5 + pos: 2.5646303,0.21645665 parent: 2 - - type: DeviceNetwork - deviceLists: - - 32 - - 33 - - uid: 17903 + - uid: 41878 components: - type: Transform - pos: 42.5,-50.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 32 - - 33 - - uid: 17904 + pos: 61.647575,63.659065 + parent: 40599 + - uid: 41879 components: - type: Transform - pos: 37.5,-50.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 32 - - uid: 17905 + pos: 37.243385,70.74962 + parent: 40599 + - uid: 41881 components: - type: Transform - pos: 37.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 32 - - uid: 17906 + parent: 41880 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41882 components: - type: Transform - pos: 34.5,-46.5 + parent: 41880 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkWaterCup + entities: + - uid: 17724 + components: + - type: Transform + pos: 23.347298,-54.323387 parent: 2 - - type: DeviceNetwork - deviceLists: - - 32 - - uid: 17907 + - uid: 17725 components: - type: Transform - pos: 34.5,-48.5 + pos: 23.425423,-54.448387 parent: 2 - - type: DeviceNetwork - deviceLists: - - 32 - - uid: 17908 + - uid: 17726 components: - type: Transform - pos: 32.5,-50.5 + pos: 23.550423,-54.354637 parent: 2 - - type: DeviceNetwork - deviceLists: - - 31 - - uid: 17909 + - uid: 17727 components: - type: Transform - pos: 28.5,-54.5 + pos: 23.612923,-54.495262 parent: 2 - - type: DeviceNetwork - deviceLists: - - 31 - - uid: 17910 + - uid: 17728 components: - type: Transform - pos: 29.5,-56.5 + pos: 23.722298,-54.354637 parent: 2 - - type: DeviceNetwork - deviceLists: - - 31 - - uid: 17911 + - uid: 17729 components: - type: Transform - pos: 20.5,-47.5 + rot: 3.141592653589793 rad + pos: -33.640694,-19.398539 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - - uid: 17912 + - uid: 17730 components: - type: Transform - pos: 22.5,-39.5 + rot: 3.141592653589793 rad + pos: -33.46882,-19.148539 parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 - - uid: 17913 + - uid: 17731 components: - type: Transform - pos: 27.5,-40.5 + rot: 3.141592653589793 rad + pos: -33.34382,-19.398539 parent: 2 - - type: DeviceNetwork - deviceLists: - - 35 - - uid: 17914 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 17732 components: - type: Transform - pos: 27.5,-36.5 + pos: -26.557673,8.753569 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - - 35 - - uid: 17915 +- proto: DrinkWineBottleFull + entities: + - uid: 17733 components: - type: Transform - pos: 25.5,-35.5 + pos: 45.551445,-9.052125 parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 - - 159 - - uid: 17916 +- proto: Dropper + entities: + - uid: 17734 components: - type: Transform - pos: 32.5,-32.5 + pos: 29.228872,56.831463 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - - uid: 17917 + - uid: 17735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 + pos: -4.5334964,42.2229 parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - uid: 17918 + - uid: 17736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 + pos: 7.4931173,35.8039 parent: 2 - - type: DeviceNetwork - deviceLists: - - 161 - - uid: 17919 + - uid: 17737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,24.5 + pos: 13.361622,37.857277 parent: 2 - - type: DeviceNetwork - deviceLists: - - 161 - - uid: 17920 +- proto: EggBoxBroken + entities: + - uid: 17738 components: - type: Transform - pos: -94.5,2.5 + rot: -1.5707963267948966 rad + pos: -50.524143,-31.644077 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - - uid: 17921 + - uid: 17739 components: - type: Transform - pos: -100.5,5.5 + pos: -50.38352,-29.347202 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - - uid: 17922 + - uid: 17740 components: - type: Transform - pos: -102.5,1.5 + pos: -52.306026,-30.404987 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - - 104 - - uid: 17923 + - uid: 17741 components: - type: Transform - pos: -107.5,0.5 + pos: -50.1654,-31.373737 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - uid: 17924 + - uid: 17742 components: - type: Transform - pos: -107.5,27.5 + pos: -52.38415,-29.09249 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 107 - - uid: 17925 +- proto: Eggshells + entities: + - uid: 17743 components: - type: Transform - pos: -110.5,27.5 + rot: 3.141592653589793 rad + pos: -50.28977,-31.378452 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 110 - - uid: 17926 + - uid: 17744 components: - type: Transform - pos: -102.5,26.5 + rot: 3.141592653589793 rad + pos: -50.211643,-29.800327 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 -- proto: FirelockEdge - entities: - - uid: 17927 + - uid: 17745 components: - type: Transform - pos: -33.5,-12.5 + rot: 1.5707963267948966 rad + pos: -50.57102,-30.112827 parent: 2 - - type: DeviceNetwork - deviceLists: - - 138 - - 132 - - uid: 17928 + - uid: 17746 components: - type: Transform - pos: -32.5,-12.5 + pos: -51.680393,-30.706577 parent: 2 - - type: DeviceNetwork - deviceLists: - - 138 - - 132 - - uid: 17929 + - uid: 17747 components: - type: Transform - pos: -34.5,-12.5 + rot: 3.141592653589793 rad + pos: -50.63352,-30.581577 parent: 2 - - type: DeviceNetwork - deviceLists: - - 138 - - 132 - - uid: 17930 + - uid: 17748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,7.5 + pos: -50.274143,-30.940952 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - - uid: 17931 + - uid: 17749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,8.5 + pos: -52.614,-29.670614 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - - uid: 17932 + - uid: 17750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,7.5 + rot: -1.5707963267948966 rad + pos: -52.75852,-30.706577 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - - uid: 17933 +- proto: EggSpider + entities: + - uid: 17751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,13.5 + rot: -1.5707963267948966 rad + pos: 29.48808,53.169903 parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 - - 123 - - uid: 17934 + - uid: 17752 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,13.5 + pos: 22.284954,53.607403 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - - 123 - - uid: 17935 + - uid: 17753 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,13.5 + pos: 22.55058,53.466778 parent: 2 - - type: DeviceNetwork - deviceLists: - - 115 - - 123 - - uid: 17936 + - uid: 41884 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - - 138 - - uid: 17937 + pos: 40.242775,73.899216 + parent: 40599 + - uid: 41885 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 56 - - uid: 17938 + rot: 1.5707963267948966 rad + pos: 40.242775,73.60234 + parent: 40599 + - uid: 41886 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - - uid: 17939 + pos: 40.3834,73.75859 + parent: 40599 + - uid: 41887 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - - uid: 17940 + pos: 60.506683,55.503906 + parent: 40599 + - uid: 41888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - - uid: 17941 + rot: -1.5707963267948966 rad + pos: 60.764496,55.503906 + parent: 40599 +- proto: ElectricGrillMachineCircuitboard + entities: + - uid: 17754 components: - type: Transform - pos: -29.5,-0.5 + pos: 15.599145,5.5280046 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - uid: 17942 +- proto: ElectricGuitarInstrument + entities: + - uid: 17755 components: - type: Transform - pos: -28.5,-0.5 + pos: 53.370163,-7.194631 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - uid: 17943 +- proto: EmergencyLight + entities: + - uid: 17756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 + rot: 1.5707963267948966 rad + pos: 61.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 17944 + - uid: 17757 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-37.5 + pos: 22.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 17945 + - uid: 17758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 + pos: 6.5,-53.5 parent: 2 - - uid: 17946 + - uid: 17759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 + rot: 3.141592653589793 rad + pos: -6.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 17947 + - uid: 17760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-35.5 + pos: -4.5,-58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - uid: 17948 + - uid: 17761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-44.5 + pos: -29.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 17949 + - uid: 17762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-45.5 + rot: 3.141592653589793 rad + pos: -46.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 17950 + - uid: 17763 + components: + - type: Transform + pos: 68.5,-36.5 + parent: 2 + - uid: 17764 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-46.5 + pos: 55.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - uid: 17951 + - uid: 17765 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,32.5 + pos: 63.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 107 - - uid: 17952 + - uid: 17766 components: - type: Transform - pos: -113.5,9.5 + rot: -1.5707963267948966 rad + pos: 67.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - uid: 17953 + - uid: 17767 components: - type: Transform - pos: -114.5,9.5 + pos: 73.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - uid: 17954 + - uid: 17768 components: - type: Transform - pos: -112.5,9.5 + rot: 1.5707963267948966 rad + pos: 54.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - uid: 17955 + - uid: 17769 components: - type: Transform - pos: -4.5,-13.5 + rot: 1.5707963267948966 rad + pos: 54.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 67 - - 74 - - uid: 17956 + - uid: 17770 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-5.5 + pos: 57.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - uid: 17957 + - uid: 17771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-6.5 + rot: 1.5707963267948966 rad + pos: 61.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - - uid: 17958 + - uid: 17772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-10.5 + rot: -1.5707963267948966 rad + pos: 70.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 - - uid: 17959 + - uid: 17773 components: - type: Transform - pos: -115.5,9.5 + rot: -1.5707963267948966 rad + pos: 76.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - uid: 17960 + - uid: 17774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 78.5,-40.5 + parent: 2 + - uid: 17775 + components: + - type: Transform + pos: 78.5,-43.5 + parent: 2 + - uid: 17776 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - uid: 17777 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,30.5 + pos: -36.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 107 - - uid: 17961 + - uid: 17778 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 17779 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,28.5 + pos: -40.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 107 - - uid: 17962 + - uid: 17780 components: - type: Transform - pos: -17.5,-9.5 + rot: 3.141592653589793 rad + pos: -42.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - - 73 - - uid: 17963 + - uid: 17781 components: - type: Transform - pos: -16.5,-9.5 + rot: 3.141592653589793 rad + pos: -39.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - - 73 - - uid: 17964 + - uid: 17782 components: - type: Transform - pos: -15.5,-9.5 + rot: -1.5707963267948966 rad + pos: -19.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - - 73 - - uid: 17965 + - uid: 17783 components: - type: Transform - pos: 20.5,-9.5 + rot: 3.141592653589793 rad + pos: -45.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 57 - - uid: 17966 + - uid: 17784 components: - type: Transform - pos: 21.5,-9.5 + rot: 3.141592653589793 rad + pos: -33.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 57 - - uid: 17967 + - uid: 17785 components: - type: Transform - pos: 22.5,-9.5 + rot: 3.141592653589793 rad + pos: -26.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - 57 - - uid: 17968 + - uid: 17786 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-15.5 + pos: -46.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - - 75 - - uid: 17969 + - uid: 17787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-16.5 + pos: -28.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - - 75 - - uid: 17970 + - uid: 17788 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-17.5 + pos: -52.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - - 75 - - uid: 17971 + - uid: 17789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 + pos: -30.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - - 74 - - uid: 17972 + - uid: 17790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,4.5 + parent: 2 + - uid: 17791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-16.5 + pos: -40.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - - 74 - - uid: 17973 + - uid: 17792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + pos: -44.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - - 74 - - uid: 17974 + - uid: 17793 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,45.5 + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 144 - - 69 - - uid: 17975 + - uid: 17794 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,18.5 + pos: -16.5,-51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 83 - - uid: 17976 + - uid: 17795 components: - type: Transform - pos: 10.5,30.5 + rot: -1.5707963267948966 rad + pos: 13.5,27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 - - 58 - - uid: 17977 + - uid: 17796 components: - type: Transform - pos: 11.5,30.5 + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 - - 58 - - uid: 17978 + - uid: 17797 components: - type: Transform - pos: 12.5,30.5 + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 - - 58 - - uid: 17979 + - uid: 17798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,36.5 + rot: -1.5707963267948966 rad + pos: 43.5,21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - - uid: 17980 + - uid: 17799 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,36.5 + pos: -27.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - - uid: 17981 + - uid: 17800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,35.5 + rot: 3.141592653589793 rad + pos: -16.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - - 60 - - uid: 17982 + - uid: 17801 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,35.5 + pos: 13.5,38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 60 - - 87 - - uid: 17983 + - uid: 17802 components: - type: Transform - pos: 27.5,30.5 + rot: 1.5707963267948966 rad + pos: 26.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 88 - - uid: 17984 + - uid: 17803 components: - type: Transform - pos: 28.5,30.5 + rot: 1.5707963267948966 rad + pos: -17.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 88 - - uid: 17985 + - uid: 17804 components: - type: Transform - pos: 29.5,30.5 + rot: 1.5707963267948966 rad + pos: -16.5,-39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 88 - - uid: 17986 + - uid: 17805 components: - type: Transform - pos: 30.5,30.5 + rot: 3.141592653589793 rad + pos: 18.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 88 - - uid: 17987 + - uid: 17806 components: - type: Transform - pos: 31.5,30.5 + rot: -1.5707963267948966 rad + pos: 17.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 88 - - uid: 17988 + - uid: 17807 components: - type: Transform - pos: 32.5,30.5 + rot: 3.141592653589793 rad + pos: 30.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 88 - - uid: 17989 + - uid: 17808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,34.5 + rot: 3.141592653589793 rad + pos: 3.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - uid: 17990 + - uid: 17809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,18.5 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - 90 - - uid: 17991 + - uid: 17810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,19.5 + rot: 3.141592653589793 rad + pos: 7.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - 90 - - uid: 17992 + - uid: 17811 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,20.5 + pos: 22.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - 90 - - uid: 17993 + - uid: 17812 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,21.5 + pos: 22.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - 90 - - uid: 17994 + - uid: 17813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,22.5 + rot: 3.141592653589793 rad + pos: 6.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - - 90 - - uid: 17995 + - uid: 17814 components: - type: Transform - pos: 47.5,21.5 + pos: 30.5,34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - - uid: 17996 + - uid: 17815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,37.5 + pos: 4.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 155 - - 158 - - uid: 17997 + - uid: 17816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,39.5 + rot: 3.141592653589793 rad + pos: -4.5,-56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 155 - - 158 - - uid: 17998 + - uid: 17817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,40.5 + rot: 1.5707963267948966 rad + pos: 69.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 155 - - 158 - - uid: 17999 + - uid: 17818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,45.5 + pos: 4.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 144 - - 69 - - uid: 18000 + - uid: 17819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,45.5 + pos: 43.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 144 - - 69 - - uid: 18001 + - uid: 17820 components: - type: Transform - pos: -9.5,49.5 + pos: 30.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 156 - - 69 - - uid: 18002 + - uid: 17821 components: - type: Transform - pos: -8.5,49.5 + rot: 1.5707963267948966 rad + pos: -17.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 156 - - 69 - - uid: 18003 + - uid: 17822 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-31.5 + pos: 5.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 18004 + - uid: 17823 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-30.5 + pos: -0.5,30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 18005 + - uid: 17824 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,51.5 + parent: 2 + - uid: 17825 + components: + - type: Transform + pos: -1.5,62.5 + parent: 2 + - uid: 17826 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-36.5 + pos: -8.5,68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - - 35 - - uid: 18006 + - uid: 17827 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-36.5 + pos: -27.5,49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - - 35 - - uid: 18007 + - uid: 17828 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-36.5 + pos: -6.5,56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - - 35 - - uid: 18008 + - uid: 17829 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-28.5 + pos: -18.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - - uid: 18009 + - uid: 17830 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,19.5 + pos: -20.5,44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 112 - - uid: 18010 + - uid: 17831 components: - type: Transform - pos: -100.5,9.5 + rot: 1.5707963267948966 rad + pos: -17.5,41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - - uid: 18011 + - uid: 17832 components: - type: Transform - pos: -109.5,17.5 + pos: 47.5,-22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - uid: 18012 + - uid: 17833 components: - type: Transform - pos: -110.5,17.5 + rot: 1.5707963267948966 rad + pos: -28.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - uid: 18013 + - uid: 17834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,3.5 + pos: 6.5,58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - 105 - - uid: 18014 + - uid: 17835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,2.5 + rot: 3.141592653589793 rad + pos: 20.5,56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - - 105 -- proto: FirelockGlass - entities: - - uid: 18015 + - uid: 17836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-50.5 + rot: 1.5707963267948966 rad + pos: 27.5,59.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17782 - - 44 - - uid: 18016 + - uid: 17837 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-39.5 + pos: 12.5,60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17782 - - 44 - - 48 - - uid: 18017 + - uid: 17838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-43.5 + rot: 1.5707963267948966 rad + pos: -10.5,35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 - - uid: 18018 + - uid: 17839 components: - type: Transform - pos: -1.5,35.5 + rot: -1.5707963267948966 rad + pos: 4.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 158 - - uid: 18019 + - uid: 17840 components: - type: Transform - pos: -47.5,9.5 + rot: 3.141592653589793 rad + pos: 54.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - 123 - - uid: 18020 + - uid: 17841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-11.5 + pos: -14.5,62.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - - 132 - - uid: 18021 + - uid: 17842 components: - type: Transform - pos: -26.5,13.5 + rot: 1.5707963267948966 rad + pos: 15.5,28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 111 - - 126 - - uid: 18022 + - uid: 17843 components: - type: Transform - pos: -24.5,11.5 + rot: -1.5707963267948966 rad + pos: 24.5,19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 126 - - 55 - - uid: 18023 + - uid: 17844 components: - type: Transform - pos: -29.5,11.5 + rot: -1.5707963267948966 rad + pos: 62.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 126 - - 123 - - uid: 18024 + - uid: 17845 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,2.5 + pos: 53.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - - 73 - - uid: 18025 + - uid: 17846 components: - type: Transform - pos: -38.5,9.5 + pos: 28.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - 132 - - uid: 18026 + - uid: 17847 components: - type: Transform - pos: -51.5,11.5 + rot: -1.5707963267948966 rad + pos: 68.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 56 - - 123 - - uid: 18027 + - uid: 17848 components: - type: Transform - pos: -36.5,9.5 + pos: 79.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - - 132 - - uid: 18028 + - uid: 17849 components: - type: Transform - pos: -55.5,14.5 + rot: 3.141592653589793 rad + pos: 82.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 125 - - 56 - - uid: 18029 + - uid: 17850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-1.5 + rot: -1.5707963267948966 rad + pos: 33.5,-52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - - 132 - - uid: 18030 + - uid: 17851 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-1.5 + pos: 47.5,-52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 128 - - 132 - - uid: 18031 + - uid: 17852 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-12.5 + pos: 15.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 138 - - 135 - - uid: 18032 + - uid: 17853 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-10.5 + pos: 25.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - - 135 - - uid: 18033 + - uid: 17854 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-1.5 + pos: 19.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - 132 - - uid: 18034 + - uid: 17855 components: - type: Transform - pos: -26.5,-2.5 + pos: 8.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - 73 - - uid: 18035 + - uid: 17856 components: - type: Transform - pos: -26.5,-4.5 + rot: 1.5707963267948966 rad + pos: -30.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - 73 - - uid: 18036 + - uid: 17857 components: - type: Transform - pos: -31.5,-4.5 + rot: 3.141592653589793 rad + pos: -33.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - 132 - - uid: 18037 + - uid: 17858 components: - type: Transform - pos: -31.5,-2.5 + rot: 3.141592653589793 rad + pos: 10.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - - 132 - - uid: 18038 + - uid: 17859 components: - type: Transform - pos: -5.5,-34.5 + rot: 3.141592653589793 rad + pos: 2.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 - - 54 - - uid: 18039 + - uid: 17860 components: - type: Transform - pos: -7.5,-33.5 + rot: -1.5707963267948966 rad + pos: -19.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 - - uid: 18040 + - uid: 17861 components: - type: Transform - pos: -9.5,-39.5 + rot: -1.5707963267948966 rad + pos: -48.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - 54 - - uid: 18041 + - uid: 17862 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-30.5 + pos: -44.5,16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - 141 - - uid: 18042 + - uid: 17863 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-30.5 + pos: 28.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - 141 - - uid: 18043 + - uid: 17864 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-30.5 + pos: 28.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - 141 - - uid: 18044 + - uid: 41889 components: - type: Transform - pos: -0.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - - 39 - - uid: 18045 + pos: 35.5,66.5 + parent: 40599 + - uid: 41890 + components: + - type: Transform + pos: 29.5,72.5 + parent: 40599 + - uid: 41891 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - 40 - - uid: 18046 + pos: 48.5,68.5 + parent: 40599 + - uid: 41892 components: - type: Transform - pos: -14.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - - 73 - - uid: 18047 + rot: 3.141592653589793 rad + pos: 60.5,68.5 + parent: 40599 + - uid: 41893 components: - type: Transform - pos: -0.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - uid: 18048 + rot: 1.5707963267948966 rad + pos: 68.5,71.5 + parent: 40599 + - uid: 41894 components: - type: Transform - pos: -0.5,-55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - uid: 18049 + rot: -1.5707963267948966 rad + pos: 68.5,60.5 + parent: 40599 + - uid: 41895 components: - type: Transform - pos: 0.5,-56.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - 28 - - uid: 18050 + rot: 3.141592653589793 rad + pos: 56.5,54.5 + parent: 40599 + - uid: 41896 components: - type: Transform - pos: 1.5,-56.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - - 28 - - uid: 18051 + rot: -1.5707963267948966 rad + pos: 53.5,55.5 + parent: 40599 + - uid: 41897 components: - type: Transform - pos: -14.5,-47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - - 28 - - uid: 18052 + rot: 3.141592653589793 rad + pos: 62.5,74.5 + parent: 40599 + - uid: 41898 components: - type: Transform - pos: -14.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - - 51 - - uid: 18053 + pos: 51.5,79.5 + parent: 40599 + - uid: 41899 components: - type: Transform - pos: -20.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - 51 - - uid: 18054 + rot: 3.141592653589793 rad + pos: 37.5,59.5 + parent: 40599 +- proto: EmergencyMedipen + entities: + - uid: 17865 components: - type: Transform - pos: -20.5,-39.5 + rot: -1.5707963267948966 rad + pos: -12.322029,51.686535 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 18055 + - uid: 17866 components: - type: Transform - pos: -22.5,-39.5 + rot: -1.5707963267948966 rad + pos: -12.447029,51.73341 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - - uid: 18056 +- proto: EmergencyNitrogenTankFilled + entities: + - uid: 41617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - - 40 - - uid: 18057 + parent: 41615 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyOxygenTankFilled + entities: + - uid: 41618 components: - type: Transform - pos: -14.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - 73 - - uid: 18058 + parent: 41615 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyRollerBed + entities: + - uid: 17867 components: - type: Transform - pos: -14.5,1.5 + pos: 2.8639274,40.809498 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - 73 - - uid: 18059 + - uid: 17868 components: - type: Transform - pos: -6.5,3.5 + pos: 2.8170524,39.434498 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - uid: 18060 + - uid: 17869 components: - type: Transform - pos: 11.5,3.5 + pos: -3.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - uid: 18061 + - uid: 17870 components: - type: Transform - pos: 19.5,1.5 + pos: -16.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - 57 - - uid: 18062 + - uid: 17871 components: - type: Transform - pos: 19.5,-0.5 + pos: -17.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - 57 - - uid: 18063 + - uid: 17872 components: - type: Transform - pos: 10.5,-1.5 + pos: 1.6139274,40.825123 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - 68 - - uid: 18064 + - uid: 17873 components: - type: Transform - pos: -5.5,-1.5 + pos: 1.5514274,39.387623 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - - 66 - - 64 - - uid: 18065 +- proto: Emitter + entities: + - uid: 17874 components: - type: Transform - pos: -7.5,-3.5 + rot: -1.5707963267948966 rad + pos: -19.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 64 - - uid: 18066 + - uid: 17875 components: - type: Transform - pos: -14.5,6.5 + pos: -48.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - - 73 - - uid: 18067 + - uid: 17876 components: - type: Transform - pos: -14.5,5.5 + rot: -1.5707963267948966 rad + pos: -20.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - - 73 - - uid: 18068 + - uid: 17877 components: - type: Transform - pos: 19.5,9.5 + rot: 3.141592653589793 rad + pos: -48.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - - 57 - - uid: 18069 +- proto: EmptyFlashlightLantern + entities: + - uid: 17878 components: - type: Transform - pos: 16.5,10.5 + pos: -97.5703,35.733135 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - - uid: 18070 +- proto: EncryptionKeySyndie + entities: + - uid: 17879 components: + - type: MetaData + desc: Ключ шифрования, используемый... секундочку... Кто владелец этого чипа? Его контакты повреждены и от него несёт гарью.. + name: повреждённый кроваво-красный ключ шифрования - type: Transform - pos: 18.5,18.5 + rot: 1.5707963267948966 rad + pos: 28.366177,52.701153 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 84 - - uid: 18071 + - type: Electrified + shockTime: 15 + shockNoises: !type:SoundCollectionSpecifier + collection: sparks + airlockElectrifyDisabled: + path: /Audio/Machines/airlock_electrify_on.ogg + airlockElectrifyEnabled: + path: /Audio/Machines/airlock_electrify_off.ogg +- proto: EphedrineChemistryBottle + entities: + - uid: 17880 components: - type: Transform - pos: 14.5,21.5 + pos: 10.538875,54.552586 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 83 - - uid: 18072 + - uid: 17882 components: - type: Transform - pos: 14.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 86 - - uid: 18073 + parent: 17881 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EpinephrineChemistryBottle + entities: + - uid: 17889 components: - type: Transform - pos: 14.5,25.5 + pos: 2.0394254,38.58677 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 86 - - uid: 18074 + - uid: 17890 components: - type: Transform - pos: 15.5,26.5 + pos: -54.823296,15.476013 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 85 - - uid: 18075 + - uid: 17891 components: - type: Transform - pos: 19.5,25.5 + pos: 2.586578,54.484497 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 88 - - uid: 18076 + - uid: 17892 components: - type: Transform - pos: 19.5,24.5 + pos: -103.35984,4.4950776 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - 88 - - uid: 18077 +- proto: ExGrenade + entities: + - uid: 41901 components: - type: Transform - pos: 23.5,1.5 + parent: 41900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExtinguisherCabinetFilled + entities: + - uid: 17893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - uid: 18078 + - uid: 17894 components: - type: Transform - pos: 23.5,0.5 + rot: -1.5707963267948966 rad + pos: 14.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - uid: 18079 + - uid: 17895 components: - type: Transform - pos: 23.5,-0.5 + pos: 0.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - - uid: 18080 + - uid: 17896 components: - type: Transform - pos: 23.5,-7.5 + pos: 0.5,46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 76 - - 57 - - uid: 18081 + - uid: 17897 components: - type: Transform - pos: 23.5,-8.5 + pos: 78.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 76 - - 57 - - uid: 18082 + - uid: 17898 components: - type: Transform - pos: 23.5,-15.5 + rot: 3.141592653589793 rad + pos: 42.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - uid: 18083 + - uid: 17899 components: - type: Transform - pos: 23.5,-16.5 + pos: -0.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - uid: 18084 + - uid: 17900 components: - type: Transform - pos: 23.5,-17.5 + rot: 3.141592653589793 rad + pos: 17.5,-51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - - uid: 18085 + - uid: 17901 components: - type: Transform - pos: 6.5,-20.5 + rot: 3.141592653589793 rad + pos: 24.5,-55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 79 - - uid: 18086 + - uid: 17902 components: - type: Transform - pos: 6.5,-21.5 + rot: 3.141592653589793 rad + pos: 49.5,-51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 79 - - uid: 18087 + - uid: 17903 components: - type: Transform - pos: 2.5,-18.5 + rot: 3.141592653589793 rad + pos: 42.5,-55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - - 79 - - uid: 18088 + - uid: 17904 components: - type: Transform - pos: -8.5,-18.5 + rot: 3.141592653589793 rad + pos: 25.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - - 141 - - uid: 18089 + - uid: 17905 components: - type: Transform - pos: -9.5,-18.5 + rot: 3.141592653589793 rad + pos: 20.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - - 141 - - uid: 18090 + - uid: 17906 components: - type: Transform - pos: -10.5,-18.5 + rot: 3.141592653589793 rad + pos: 41.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - - 141 - - uid: 18091 + - uid: 17907 components: - type: Transform - pos: -12.5,17.5 + pos: 75.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - - uid: 18092 + - uid: 17908 components: - type: Transform - pos: -11.5,17.5 + pos: -25.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - - uid: 18093 + - uid: 17909 components: - type: Transform - pos: -10.5,17.5 + pos: 8.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - - uid: 18094 + - uid: 17910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,27.5 + pos: -0.5,-57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 - - uid: 18095 + - uid: 17911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,25.5 + pos: -11.5,-57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 - - uid: 18096 + - uid: 17912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,30.5 + pos: -50.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 - - 58 - - uid: 18097 + - uid: 17913 components: - type: Transform - pos: 16.5,37.5 + pos: -11.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - - uid: 18098 + - uid: 17914 components: - type: Transform - pos: 19.5,33.5 + pos: -54.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - - 60 - - uid: 18099 + - uid: 17915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,33.5 + pos: -32.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 60 - - 87 - - uid: 18100 + - uid: 17916 components: - type: Transform - pos: 25.5,37.5 + pos: -48.5,-1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - uid: 18101 + - uid: 17917 components: - type: Transform - pos: 25.5,30.5 + pos: -11.5,53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - - 88 - - uid: 18102 + - uid: 17918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,24.5 + pos: -3.5,60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - 89 - - uid: 18103 + - uid: 17919 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,23.5 + pos: -8.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - 89 - - uid: 18104 + - uid: 17920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,22.5 + rot: 1.5707963267948966 rad + pos: 60.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - 89 - - uid: 18105 + - uid: 17921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,21.5 + rot: 1.5707963267948966 rad + pos: -35.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - 89 - - uid: 18106 + - uid: 17922 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,20.5 + pos: -108.5,40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - 89 - - uid: 18107 +- proto: ExtinguisherCabinetOpen + entities: + - uid: 41904 components: - type: Transform - pos: 33.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - uid: 18108 + rot: -1.5707963267948966 rad + pos: 69.5,59.5 + parent: 40599 + - uid: 41905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - 89 - - uid: 18109 + pos: 48.5,53.5 + parent: 40599 + - uid: 46687 components: - type: Transform - pos: 31.5,16.5 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 46584 +- proto: EZNutrientChemistryBottle + entities: + - uid: 17923 + components: + - type: Transform + pos: 7.3711395,32.819363 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - uid: 18110 +- proto: FaxMachineBase + entities: + - uid: 17924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,18.5 + pos: 3.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - - 89 - - uid: 18111 + - type: FaxMachine + name: Мостик + - uid: 17925 components: - type: Transform - pos: -5.5,32.5 + pos: -20.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 142 - - uid: 18112 + - type: FaxMachine + name: Офис Детектива + - uid: 17926 components: - type: Transform - pos: -1.5,44.5 + pos: 33.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 158 - - 69 - - uid: 18113 + - type: FaxMachine + name: Офис НРа + - uid: 17927 components: - type: Transform - pos: 4.5,41.5 + pos: -9.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 154 - - uid: 18114 + - type: FaxMachine + name: Офис ГП + - uid: 17928 components: - type: Transform - pos: -4.5,45.5 + pos: 2.5,-49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 144 - - 69 - - uid: 18115 + - type: FaxMachine + name: Офис СИ + - uid: 17929 components: - type: Transform - pos: -11.5,47.5 + pos: -40.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - - 69 - - uid: 18116 + - type: FaxMachine + name: Офис ГСБ + - uid: 17930 components: - type: Transform - pos: -11.5,48.5 + pos: -40.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - - 69 - - uid: 18117 + - type: FaxMachine + name: Офис Смотрителя + - uid: 17931 components: - type: Transform - pos: -6.5,51.5 + pos: -18.5,26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 156 - - 69 - - uid: 18118 + - type: FaxMachine + name: Кабинет АВД + - uid: 17932 components: - type: Transform - pos: -11.5,50.5 + pos: -2.5,22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - - 156 - - uid: 18119 + - type: FaxMachine + name: Библиотека + - uid: 17933 components: - type: Transform - pos: -5.5,53.5 + pos: -8.5,58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - - 69 - - uid: 18120 + - type: FaxMachine + name: Офис ГВ + - uid: 17934 components: - type: Transform - pos: 6.5,46.5 + pos: 74.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 154 - - 69 - - uid: 18121 + - type: FaxMachine + name: Офис КМа + - uid: 17935 components: - type: Transform - pos: -24.5,55.5 + pos: -110.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 147 - - 148 - - uid: 18122 + - type: FaxMachine + name: Пермабриг +- proto: FaxMachineCaptain + entities: + - uid: 17936 components: - type: Transform - pos: -19.5,49.5 + pos: 13.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - - uid: 18123 + - type: FaxMachine + name: Офис Капитана +- proto: FaxMachineSyndie + entities: + - uid: 17937 components: + - type: MetaData + name: факс дальнего действия - type: Transform - pos: 67.5,-35.5 + pos: -57.5,52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - 43 - - uid: 18124 + - type: FaxMachine + name: ERR 404 + - type: ApcPowerReceiver + needsPower: False +- proto: FenceMetalBroken + entities: + - uid: 17938 components: - type: Transform - pos: 65.5,-35.5 + rot: 1.5707963267948966 rad + pos: -31.5,-74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - - 43 - - uid: 18125 + - uid: 17939 components: - type: Transform - pos: 66.5,-28.5 + rot: -1.5707963267948966 rad + pos: -107.5,52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - - uid: 18126 + - uid: 41906 components: - type: Transform - pos: 64.5,-27.5 + rot: 3.141592653589793 rad + pos: 31.5,69.5 + parent: 40599 +- proto: FenceMetalCorner + entities: + - uid: 17940 + components: + - type: Transform + pos: -106.5,52.5 parent: 2 - - uid: 18127 + - uid: 17941 components: - type: Transform - pos: 64.5,-27.5 + rot: 3.141592653589793 rad + pos: -111.5,52.5 parent: 2 - - uid: 18128 + - uid: 17942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-29.5 + rot: 3.141592653589793 rad + pos: -125.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 18129 + - uid: 17943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-30.5 + rot: 3.141592653589793 rad + pos: -124.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - - uid: 18130 + - uid: 17944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-56.5 + pos: -124.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 33 - - uid: 18131 + - uid: 17945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-56.5 + rot: 1.5707963267948966 rad + pos: -124.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 33 - - uid: 18132 + - uid: 17946 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-51.5 + pos: -124.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 33 - - uid: 18133 + - uid: 17947 components: - type: Transform - pos: 27.5,-27.5 + rot: -1.5707963267948966 rad + pos: -125.5,3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - - uid: 18134 + - uid: 17948 components: - type: Transform - pos: 25.5,-31.5 + rot: 1.5707963267948966 rad + pos: -47.5,76.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 - - 159 - - uid: 18135 + - uid: 17949 components: - type: Transform - pos: 24.5,-30.5 + rot: 3.141592653589793 rad + pos: -75.5,76.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 - - uid: 18136 + - uid: 17950 components: - type: Transform - pos: 25.5,-32.5 + pos: -65.5,76.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 - - 159 - - uid: 18137 + - uid: 17951 components: - type: Transform - pos: 25.5,-33.5 + rot: 3.141592653589793 rad + pos: -65.5,77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 - - 159 - - uid: 18138 + - uid: 17952 components: - type: Transform - pos: 20.5,-40.5 + rot: 1.5707963267948966 rad + pos: -57.5,77.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 18139 + - uid: 17953 components: - type: Transform - pos: 20.5,-41.5 + rot: -1.5707963267948966 rad + pos: -57.5,76.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - - uid: 18140 + - uid: 17954 components: - type: Transform - pos: 23.5,-50.5 + pos: -29.5,-74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 160 - - uid: 18141 + - uid: 17955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,23.5 + rot: -1.5707963267948966 rad + pos: -39.5,-74.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - uid: 18142 + - uid: 17956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,23.5 + pos: -39.5,-73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - - uid: 18143 + - uid: 17957 components: - type: Transform - pos: -111.5,6.5 + rot: 3.141592653589793 rad + pos: -29.5,-73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 103 - - uid: 18144 + - uid: 17958 components: - type: Transform - pos: -111.5,7.5 + pos: -28.5,-73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 103 - - uid: 18145 + - uid: 17959 components: - type: Transform - pos: -105.5,13.5 + rot: -1.5707963267948966 rad + pos: -40.5,-73.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 106 - - uid: 18146 + - uid: 17960 components: - type: Transform - pos: -106.5,13.5 + rot: 3.141592653589793 rad + pos: -28.5,-65.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - - 106 - - uid: 18147 + - uid: 17961 components: - type: Transform - pos: -103.5,14.5 + pos: -37.5,-60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 101 - - uid: 18148 + - uid: 17962 components: - type: Transform - pos: -103.5,15.5 + rot: 3.141592653589793 rad + pos: -40.5,-60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 101 - - uid: 18149 + - uid: 17963 components: - type: Transform - pos: -103.5,16.5 + pos: -111.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 101 - - uid: 18150 + - uid: 17964 components: - type: Transform - pos: -103.5,22.5 + rot: 3.141592653589793 rad + pos: -117.5,47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 108 - - uid: 18151 + - uid: 41907 components: - type: Transform - pos: -103.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 108 - - uid: 18152 + rot: 1.5707963267948966 rad + pos: 31.5,70.5 + parent: 40599 +- proto: FenceMetalEnd + entities: + - uid: 17965 components: - type: Transform - pos: -107.5,17.5 + pos: 99.5,-25.5 parent: 2 - - uid: 18153 + - uid: 17966 components: - type: Transform - pos: -114.5,16.5 + rot: 3.141592653589793 rad + pos: 99.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 94 - - uid: 18154 +- proto: FenceMetalGate + entities: + - uid: 17967 components: - type: Transform - pos: -114.5,20.5 + rot: 1.5707963267948966 rad + pos: -75.5,70.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 93 - - uid: 18155 + - uid: 17968 components: - type: Transform - pos: -114.5,24.5 + pos: -38.5,-60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - - 100 - - uid: 18156 + - uid: 41908 components: - type: Transform - pos: -118.5,2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - - uid: 18157 + rot: 1.5707963267948966 rad + pos: 35.5,69.5 + parent: 40599 + - uid: 41909 components: - type: Transform - pos: -117.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 -- proto: Fireplace + pos: 29.5,70.5 + parent: 40599 + - type: Door + clickOpen: False +- proto: FenceMetalStraight entities: - - uid: 18158 + - uid: 17969 components: - type: Transform - pos: 80.5,-37.5 + rot: 1.5707963267948966 rad + pos: -116.5,47.5 parent: 2 - - uid: 18159 + - uid: 17970 components: - type: Transform - pos: 0.5,-19.5 + pos: -117.5,45.5 parent: 2 - - uid: 18160 + - uid: 17971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,17.5 + rot: 1.5707963267948966 rad + pos: -114.5,47.5 parent: 2 - - uid: 18161 + - uid: 17972 components: - type: Transform - pos: -13.5,-9.5 + rot: 1.5707963267948966 rad + pos: -112.5,47.5 parent: 2 - - uid: 18162 + - uid: 17973 components: - type: Transform - pos: 37.5,-0.5 + rot: 1.5707963267948966 rad + pos: -113.5,47.5 parent: 2 - - uid: 18163 + - uid: 17974 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-36.5 + pos: 99.5,-27.5 parent: 2 - - uid: 18164 + - uid: 17975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,12.5 + rot: 3.141592653589793 rad + pos: 99.5,-20.5 parent: 2 - - uid: 18165 + - uid: 17976 components: - type: Transform - pos: 92.5,-27.5 + rot: 3.141592653589793 rad + pos: 99.5,-26.5 parent: 2 - - uid: 18166 + - uid: 17977 components: - type: Transform - pos: -13.5,62.5 + pos: -125.5,5.5 parent: 2 - - uid: 18167 + - uid: 17978 components: - type: Transform - pos: 6.5,22.5 + pos: -125.5,6.5 parent: 2 - - uid: 18168 + - uid: 17979 components: - type: Transform - pos: 12.5,-2.5 + pos: -125.5,7.5 parent: 2 - - uid: 18169 + - uid: 17980 components: - type: Transform - pos: -48.5,65.5 + pos: -125.5,4.5 parent: 2 - - uid: 18170 + - uid: 17981 components: - type: Transform - pos: -78.5,18.5 + pos: -125.5,8.5 parent: 2 - - uid: 41542 + - uid: 17982 components: - type: Transform - pos: 67.5,43.5 - parent: 40203 - - uid: 41543 + pos: -125.5,9.5 + parent: 2 + - uid: 17983 components: - type: Transform - pos: 77.5,36.5 - parent: 40203 - - uid: 41544 + rot: 1.5707963267948966 rad + pos: -120.5,0.5 + parent: 2 + - uid: 17984 components: - type: Transform - pos: 40.5,37.5 - parent: 40203 - - uid: 41545 + rot: 1.5707963267948966 rad + pos: -119.5,0.5 + parent: 2 + - uid: 17985 components: - type: Transform - pos: 77.5,36.5 - parent: 40203 - - uid: 41546 + rot: 1.5707963267948966 rad + pos: -119.5,13.5 + parent: 2 + - uid: 17986 components: - type: Transform - pos: 41.5,26.5 - parent: 40203 - - uid: 41547 + rot: 1.5707963267948966 rad + pos: -122.5,13.5 + parent: 2 + - uid: 17987 components: - type: Transform - pos: 41.5,26.5 - parent: 40203 -- proto: FlashlightSeclite - entities: - - uid: 18171 + rot: 1.5707963267948966 rad + pos: -123.5,13.5 + parent: 2 + - uid: 17988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.427282,-29.567226 + rot: 1.5707963267948966 rad + pos: -120.5,13.5 parent: 2 - - uid: 41548 + - uid: 17989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.633743,63.616806 - parent: 40203 -- proto: FlippoEngravedLighter - entities: - - uid: 18172 + rot: 1.5707963267948966 rad + pos: -121.5,13.5 + parent: 2 + - uid: 17990 components: - type: Transform - pos: 15.571512,-7.5188613 + pos: -124.5,12.5 parent: 2 -- proto: FlippoLighter - entities: - - uid: 18173 + - uid: 17991 components: - type: Transform - pos: -27.32242,-20.350796 + pos: -124.5,11.5 parent: 2 - - uid: 18174 + - uid: 17992 components: - type: Transform - pos: 80.43086,6.649139 + pos: -125.5,9.5 parent: 2 - - uid: 18175 + - uid: 17993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.35212,-2.4240346 + rot: 3.141592653589793 rad + pos: -124.5,2.5 parent: 2 -- proto: Floodlight - entities: - - uid: 18176 + - uid: 17994 components: - type: Transform - pos: 91.61072,-37.408596 + rot: 1.5707963267948966 rad + pos: -121.5,0.5 parent: 2 -- proto: FloodlightBroken - entities: - - uid: 18177 + - uid: 17995 components: - type: Transform - pos: 95.34509,-36.533596 + rot: 1.5707963267948966 rad + pos: -122.5,0.5 parent: 2 - - uid: 41549 + - uid: 17996 components: - type: Transform - pos: 31.079742,76.871605 - parent: 40203 -- proto: FloorAzureWaterEntity - entities: - - uid: 18178 + rot: 1.5707963267948966 rad + pos: -123.5,0.5 + parent: 2 + - uid: 17997 components: - type: Transform - pos: -74.5,36.5 + pos: -124.5,1.5 parent: 2 - - uid: 18179 + - uid: 17998 components: - type: Transform - pos: -66.5,53.5 + pos: -47.5,73.5 parent: 2 - - uid: 18180 + - uid: 17999 components: - type: Transform - pos: -65.5,54.5 + rot: -1.5707963267948966 rad + pos: -71.5,76.5 parent: 2 - - uid: 18181 + - uid: 18000 components: - type: Transform - pos: -77.5,37.5 + rot: -1.5707963267948966 rad + pos: -72.5,76.5 parent: 2 - - uid: 18182 + - uid: 18001 components: - type: Transform - pos: -65.5,52.5 + rot: -1.5707963267948966 rad + pos: -70.5,76.5 parent: 2 - - uid: 18183 + - uid: 18002 components: - type: Transform - pos: -66.5,50.5 + rot: -1.5707963267948966 rad + pos: -69.5,76.5 parent: 2 - - uid: 18184 + - uid: 18003 components: - type: Transform - pos: -75.5,37.5 + pos: -47.5,75.5 parent: 2 - - uid: 18185 + - uid: 18004 components: - type: Transform - pos: -74.5,36.5 + pos: -47.5,72.5 parent: 2 - - uid: 18186 + - uid: 18005 components: - type: Transform - pos: -74.5,36.5 + rot: -1.5707963267948966 rad + pos: -74.5,76.5 parent: 2 - - uid: 18187 + - uid: 18006 components: - type: Transform - pos: -74.5,36.5 + rot: -1.5707963267948966 rad + pos: -73.5,76.5 parent: 2 - - uid: 18188 + - uid: 18007 components: - type: Transform - pos: -74.5,37.5 + pos: -47.5,70.5 parent: 2 - - uid: 18189 + - uid: 18008 components: - type: Transform - pos: -74.5,37.5 + pos: -47.5,74.5 parent: 2 - - uid: 18190 + - uid: 18009 components: - type: Transform - pos: -74.5,36.5 + pos: -47.5,71.5 parent: 2 - - uid: 18191 + - uid: 18010 components: - type: Transform - pos: -76.5,37.5 + rot: 3.141592653589793 rad + pos: -75.5,69.5 parent: 2 - - uid: 18192 + - uid: 18011 components: - type: Transform - pos: -75.5,37.5 + rot: 3.141592653589793 rad + pos: -75.5,75.5 parent: 2 - - uid: 18193 + - uid: 18012 components: - type: Transform - pos: -74.5,36.5 + rot: 3.141592653589793 rad + pos: -75.5,73.5 parent: 2 - - uid: 18194 + - uid: 18013 components: - type: Transform - pos: -66.5,52.5 + rot: 3.141592653589793 rad + pos: -75.5,74.5 parent: 2 - - uid: 18195 + - uid: 18014 components: - type: Transform - pos: -74.5,36.5 + rot: 3.141592653589793 rad + pos: -75.5,72.5 parent: 2 - - uid: 18196 + - uid: 18015 components: - type: Transform - pos: -75.5,38.5 + rot: 3.141592653589793 rad + pos: -75.5,71.5 parent: 2 - - uid: 18197 + - uid: 18016 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,55.5 + pos: -68.5,76.5 parent: 2 - - uid: 18198 + - uid: 18017 components: - type: Transform - pos: -63.5,54.5 + rot: 1.5707963267948966 rad + pos: -67.5,76.5 parent: 2 - - uid: 18199 + - uid: 18018 components: - type: Transform - pos: -63.5,54.5 + rot: 1.5707963267948966 rad + pos: -66.5,76.5 parent: 2 - - uid: 18200 + - uid: 18019 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,55.5 + pos: -64.5,77.5 parent: 2 - - uid: 18201 + - uid: 18020 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,55.5 + pos: -63.5,77.5 parent: 2 - - uid: 18202 + - uid: 18021 components: - type: Transform - pos: -67.5,49.5 + rot: 1.5707963267948966 rad + pos: -62.5,77.5 parent: 2 - - uid: 18203 + - uid: 18022 components: - type: Transform - pos: -64.5,52.5 + rot: 1.5707963267948966 rad + pos: -61.5,77.5 parent: 2 - - uid: 18204 + - uid: 18023 components: - type: Transform - pos: -64.5,53.5 + rot: 1.5707963267948966 rad + pos: -60.5,77.5 parent: 2 - - uid: 18205 + - uid: 18024 components: - type: Transform - pos: -64.5,54.5 + rot: 1.5707963267948966 rad + pos: -59.5,77.5 parent: 2 - - uid: 18206 + - uid: 18025 components: - type: Transform - pos: -64.5,55.5 + rot: 1.5707963267948966 rad + pos: -56.5,76.5 parent: 2 - - uid: 18207 + - uid: 18026 components: - type: Transform - pos: -64.5,52.5 + rot: 1.5707963267948966 rad + pos: -58.5,77.5 parent: 2 - - uid: 18208 + - uid: 18027 components: - type: Transform - pos: -64.5,53.5 + rot: -1.5707963267948966 rad + pos: -55.5,76.5 parent: 2 - - uid: 18209 + - uid: 18028 components: - type: Transform - pos: -64.5,54.5 + rot: -1.5707963267948966 rad + pos: -54.5,76.5 parent: 2 - - uid: 18210 + - uid: 18029 components: - type: Transform - pos: -64.5,52.5 + rot: -1.5707963267948966 rad + pos: -53.5,76.5 parent: 2 - - uid: 18211 + - uid: 18030 components: - type: Transform - pos: -64.5,55.5 + rot: -1.5707963267948966 rad + pos: -52.5,76.5 parent: 2 - - uid: 18212 + - uid: 18031 components: - type: Transform - pos: -64.5,53.5 + rot: -1.5707963267948966 rad + pos: -51.5,76.5 parent: 2 - - uid: 18213 + - uid: 18032 components: - type: Transform - pos: -64.5,55.5 + rot: -1.5707963267948966 rad + pos: -50.5,76.5 parent: 2 - - uid: 18214 + - uid: 18033 components: - type: Transform - pos: -66.5,49.5 + rot: -1.5707963267948966 rad + pos: -49.5,76.5 parent: 2 - - uid: 18215 + - uid: 18034 components: - type: Transform - pos: -67.5,49.5 + rot: -1.5707963267948966 rad + pos: -48.5,76.5 parent: 2 - - uid: 18216 + - uid: 18035 components: - type: Transform - pos: -74.5,37.5 + rot: -1.5707963267948966 rad + pos: -38.5,-74.5 parent: 2 - - uid: 18217 + - uid: 18036 components: - type: Transform - pos: -76.5,37.5 + rot: 3.141592653589793 rad + pos: -40.5,-71.5 parent: 2 - - uid: 18218 + - uid: 18037 components: - type: Transform - pos: -65.5,50.5 + rot: 3.141592653589793 rad + pos: -40.5,-72.5 parent: 2 - - uid: 18219 + - uid: 18038 components: - type: Transform - pos: -65.5,51.5 + rot: 3.141592653589793 rad + pos: -28.5,-72.5 parent: 2 - - uid: 18220 + - uid: 18039 components: - type: Transform - pos: -66.5,51.5 + rot: 3.141592653589793 rad + pos: -28.5,-71.5 parent: 2 - - uid: 18221 + - uid: 18040 components: - type: Transform - pos: -65.5,50.5 + rot: 3.141592653589793 rad + pos: -40.5,-70.5 parent: 2 - - uid: 18222 + - uid: 18041 components: - type: Transform - pos: -65.5,51.5 + rot: 3.141592653589793 rad + pos: -40.5,-69.5 parent: 2 - - uid: 18223 + - uid: 18042 components: - type: Transform - pos: -65.5,53.5 + rot: 3.141592653589793 rad + pos: -40.5,-68.5 parent: 2 - - uid: 18224 + - uid: 18043 components: - type: Transform - pos: -67.5,50.5 + rot: 3.141592653589793 rad + pos: -40.5,-67.5 parent: 2 - - uid: 18225 + - uid: 18044 components: - type: Transform - pos: -67.5,53.5 + rot: 3.141592653589793 rad + pos: -40.5,-66.5 parent: 2 - - uid: 18226 + - uid: 18045 components: - type: Transform - pos: -67.5,54.5 + rot: 3.141592653589793 rad + pos: -40.5,-65.5 parent: 2 - - uid: 18227 + - uid: 18046 components: - type: Transform - pos: -66.5,54.5 + rot: 3.141592653589793 rad + pos: -40.5,-64.5 parent: 2 - - uid: 18228 + - uid: 18047 components: - type: Transform - pos: -65.5,55.5 + rot: 3.141592653589793 rad + pos: -28.5,-70.5 parent: 2 - - uid: 18229 + - uid: 18048 components: - type: Transform - pos: -65.5,55.5 + rot: 3.141592653589793 rad + pos: -28.5,-69.5 parent: 2 - - uid: 18230 + - uid: 18049 components: - type: Transform - pos: -66.5,55.5 + rot: 3.141592653589793 rad + pos: -28.5,-68.5 parent: 2 - - uid: 18231 + - uid: 18050 components: - type: Transform - pos: -67.5,55.5 + rot: 3.141592653589793 rad + pos: -28.5,-67.5 parent: 2 - - uid: 18232 + - uid: 18051 components: - type: Transform - pos: -67.5,54.5 + rot: 3.141592653589793 rad + pos: -28.5,-66.5 parent: 2 - - uid: 18233 + - uid: 18052 components: - type: Transform - pos: -65.5,54.5 + rot: 1.5707963267948966 rad + pos: -39.5,-60.5 parent: 2 - - uid: 18234 + - uid: 18053 components: - type: Transform - pos: -65.5,54.5 + rot: 3.141592653589793 rad + pos: -40.5,-61.5 parent: 2 - - uid: 18235 + - uid: 18054 components: - type: Transform - pos: -66.5,54.5 + rot: 3.141592653589793 rad + pos: -40.5,-63.5 parent: 2 - - uid: 18236 + - uid: 18055 components: - type: Transform - pos: -66.5,53.5 + rot: 3.141592653589793 rad + pos: -40.5,-62.5 parent: 2 - - uid: 18237 + - uid: 18056 components: - type: Transform - pos: -66.5,53.5 + rot: -1.5707963267948966 rad + pos: -37.5,-74.5 parent: 2 - - uid: 18238 + - uid: 18057 components: - type: Transform - pos: -65.5,53.5 + rot: -1.5707963267948966 rad + pos: -36.5,-74.5 parent: 2 - - uid: 18239 + - uid: 18058 components: - type: Transform - pos: -65.5,52.5 + rot: -1.5707963267948966 rad + pos: -35.5,-74.5 parent: 2 - - uid: 18240 + - uid: 18059 components: - type: Transform - pos: -65.5,53.5 + rot: -1.5707963267948966 rad + pos: -33.5,-74.5 parent: 2 - - uid: 18241 + - uid: 18060 components: - type: Transform - pos: -70.5,51.5 + rot: -1.5707963267948966 rad + pos: -32.5,-74.5 parent: 2 - - uid: 18242 + - uid: 18061 components: - type: Transform - pos: -70.5,52.5 + rot: -1.5707963267948966 rad + pos: -34.5,-74.5 parent: 2 - - uid: 18243 + - uid: 18062 components: - type: Transform - pos: -69.5,52.5 + rot: -1.5707963267948966 rad + pos: -30.5,-74.5 parent: 2 - - uid: 18244 + - uid: 18063 components: - type: Transform - pos: -69.5,51.5 + rot: 3.141592653589793 rad + pos: -111.5,48.5 parent: 2 - - uid: 18245 + - uid: 18064 components: - type: Transform - pos: -68.5,51.5 + rot: 3.141592653589793 rad + pos: -111.5,51.5 parent: 2 - - uid: 18246 + - uid: 18065 components: - type: Transform - pos: -68.5,52.5 + rot: 3.141592653589793 rad + pos: -111.5,50.5 parent: 2 - - uid: 18247 + - uid: 18066 components: - type: Transform - pos: -68.5,53.5 + rot: 3.141592653589793 rad + pos: -111.5,49.5 parent: 2 - - uid: 18248 + - uid: 18067 components: - type: Transform - pos: -69.5,53.5 + pos: -117.5,46.5 parent: 2 - - uid: 18249 + - uid: 18068 components: - type: Transform - pos: -68.5,54.5 + rot: 1.5707963267948966 rad + pos: -110.5,52.5 parent: 2 - - uid: 18250 + - uid: 18069 components: - type: Transform - pos: -67.5,53.5 + rot: 1.5707963267948966 rad + pos: -115.5,47.5 parent: 2 - - uid: 18251 + - uid: 18070 components: - type: Transform - pos: -68.5,53.5 + pos: -117.5,40.5 parent: 2 - - uid: 18252 + - uid: 18071 components: - type: Transform - pos: -69.5,53.5 + rot: 1.5707963267948966 rad + pos: -108.5,52.5 parent: 2 - - uid: 18253 + - uid: 18072 components: - type: Transform - pos: -68.5,54.5 + rot: 1.5707963267948966 rad + pos: -109.5,52.5 parent: 2 - - uid: 18254 + - uid: 41910 components: - type: Transform - pos: -70.5,52.5 - parent: 2 - - uid: 18255 + rot: 3.141592653589793 rad + pos: 31.5,68.5 + parent: 40599 + - uid: 41911 components: - type: Transform - pos: -70.5,51.5 - parent: 2 - - uid: 18256 + rot: -1.5707963267948966 rad + pos: 30.5,70.5 + parent: 40599 + - uid: 41912 components: - type: Transform - pos: -69.5,52.5 - parent: 2 - - uid: 18257 + rot: -1.5707963267948966 rad + pos: 28.5,70.5 + parent: 40599 +- proto: FenceWoodHighCorner + entities: + - uid: 18073 components: - type: Transform - pos: -69.5,51.5 + rot: 1.5707963267948966 rad + pos: -88.5,25.5 parent: 2 - - uid: 18258 + - uid: 18074 components: - type: Transform - pos: -68.5,52.5 + rot: -1.5707963267948966 rad + pos: -88.5,24.5 parent: 2 - - uid: 18259 + - uid: 41913 components: - type: Transform - pos: -68.5,51.5 - parent: 2 - - uid: 18260 + rot: -1.5707963267948966 rad + pos: 45.5,18.5 + parent: 40599 + - uid: 41914 components: - type: Transform - pos: -67.5,52.5 - parent: 2 - - uid: 18261 + pos: 57.5,18.5 + parent: 40599 +- proto: FenceWoodHighGate + entities: + - uid: 18075 components: - type: Transform - pos: -67.5,51.5 + pos: -34.5,23.5 parent: 2 - - uid: 18262 + - uid: 18076 components: - type: Transform - pos: -66.5,52.5 + pos: -89.5,25.5 parent: 2 - - uid: 18263 + - uid: 18077 components: - type: Transform - pos: -66.5,51.5 + rot: -1.5707963267948966 rad + pos: -127.5,19.5 parent: 2 - - uid: 18264 + - type: Airtight + - uid: 18078 components: - type: Transform - pos: -67.5,50.5 + pos: -26.5,70.5 parent: 2 - - uid: 18265 + - type: Airtight + - uid: 18079 components: - type: Transform - pos: -66.5,50.5 + pos: -41.5,-52.5 parent: 2 - - uid: 18266 + - type: Airtight + - uid: 41915 components: - type: Transform - pos: -65.5,50.5 - parent: 2 - - uid: 18267 + pos: 50.5,18.5 + parent: 40599 +- proto: FenceWoodHighStraight + entities: + - uid: 41916 components: - type: Transform - pos: -65.5,51.5 - parent: 2 - - uid: 18268 + rot: -1.5707963267948966 rad + pos: 51.5,18.5 + parent: 40599 + - uid: 41917 components: - type: Transform - pos: -65.5,52.5 - parent: 2 - - uid: 18269 + rot: -1.5707963267948966 rad + pos: 48.5,18.5 + parent: 40599 + - uid: 41918 components: - type: Transform - pos: -65.5,53.5 - parent: 2 - - uid: 18270 + rot: -1.5707963267948966 rad + pos: 49.5,18.5 + parent: 40599 + - uid: 41919 components: - type: Transform - pos: -65.5,54.5 - parent: 2 - - uid: 18271 + rot: -1.5707963267948966 rad + pos: 53.5,18.5 + parent: 40599 + - uid: 41920 components: - type: Transform - pos: -65.5,55.5 - parent: 2 - - uid: 18272 + rot: -1.5707963267948966 rad + pos: 52.5,18.5 + parent: 40599 + - uid: 41921 components: - type: Transform - pos: -66.5,50.5 - parent: 2 - - uid: 18273 + rot: 3.141592653589793 rad + pos: 45.5,19.5 + parent: 40599 + - uid: 41922 components: - type: Transform - pos: -66.5,51.5 - parent: 2 - - uid: 18274 + rot: 3.141592653589793 rad + pos: 45.5,21.5 + parent: 40599 + - uid: 41923 components: - type: Transform - pos: -66.5,52.5 - parent: 2 - - uid: 18275 + rot: 3.141592653589793 rad + pos: 45.5,20.5 + parent: 40599 + - uid: 41924 components: - type: Transform - pos: -66.5,53.5 - parent: 2 - - uid: 18276 + rot: 1.5707963267948966 rad + pos: 56.5,18.5 + parent: 40599 + - uid: 41925 components: - type: Transform - pos: -66.5,54.5 - parent: 2 - - uid: 18277 + pos: 57.5,19.5 + parent: 40599 + - uid: 41926 components: - type: Transform - pos: -67.5,50.5 - parent: 2 - - uid: 18278 + pos: 57.5,20.5 + parent: 40599 + - uid: 41927 components: - type: Transform - pos: -67.5,52.5 - parent: 2 - - uid: 18279 + pos: 57.5,21.5 + parent: 40599 + - uid: 41928 components: - type: Transform - pos: -67.5,51.5 - parent: 2 - - uid: 18280 + pos: 57.5,23.5 + parent: 40599 + - uid: 41929 components: - type: Transform - pos: -67.5,53.5 - parent: 2 - - uid: 18281 + pos: 57.5,22.5 + parent: 40599 + - uid: 41930 components: - type: Transform - pos: -67.5,54.5 - parent: 2 - - uid: 18282 + pos: 57.5,24.5 + parent: 40599 + - uid: 47059 components: - type: Transform - pos: -67.5,55.5 - parent: 2 - - uid: 18283 + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 46943 + - uid: 47060 components: - type: Transform - pos: -68.5,54.5 - parent: 2 - - uid: 18284 + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 46943 + - uid: 47061 components: - type: Transform - pos: -68.5,53.5 - parent: 2 - - uid: 18285 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 46943 +- proto: FenceWoodSmallCorner + entities: + - uid: 18080 components: - type: Transform - pos: -68.5,52.5 + pos: 96.5,-19.5 parent: 2 - - uid: 18286 + - uid: 18081 components: - type: Transform - pos: -68.5,51.5 + rot: -1.5707963267948966 rad + pos: 91.5,-19.5 parent: 2 - - uid: 18287 + - uid: 18082 components: - type: Transform - pos: -69.5,53.5 + rot: 1.5707963267948966 rad + pos: 96.5,-13.5 parent: 2 - - uid: 18288 +- proto: FenceWoodSmallStraight + entities: + - uid: 18083 components: - type: Transform - pos: -69.5,52.5 + rot: -1.5707963267948966 rad + pos: 93.5,-19.5 parent: 2 - - uid: 18289 + - uid: 18084 components: - type: Transform - pos: -69.5,51.5 + rot: 1.5707963267948966 rad + pos: 92.5,-19.5 parent: 2 - - uid: 18290 + - uid: 18085 components: - type: Transform - pos: -70.5,51.5 + rot: 3.141592653589793 rad + pos: 91.5,-18.5 parent: 2 - - uid: 18291 + - uid: 18086 components: - type: Transform - pos: -70.5,52.5 + rot: 3.141592653589793 rad + pos: 91.5,-17.5 parent: 2 - - uid: 18292 + - uid: 18087 components: - type: Transform - pos: -66.5,49.5 + rot: 3.141592653589793 rad + pos: 91.5,-16.5 parent: 2 - - uid: 18293 + - uid: 18088 components: - type: Transform - pos: -68.5,50.5 + rot: 3.141592653589793 rad + pos: 91.5,-15.5 parent: 2 - - uid: 18294 + - uid: 18089 components: - type: Transform - pos: -69.5,54.5 + rot: 3.141592653589793 rad + pos: 91.5,-14.5 parent: 2 - - uid: 18295 + - uid: 18090 components: - type: Transform - pos: -81.5,-0.5 + pos: 96.5,-14.5 parent: 2 - - uid: 18296 + - uid: 18091 components: - type: Transform - pos: -82.5,0.5 + rot: 3.141592653589793 rad + pos: 96.5,-16.5 parent: 2 - - uid: 18297 + - uid: 18092 components: - type: Transform - pos: -81.5,0.5 + pos: 96.5,-15.5 parent: 2 - - uid: 18298 + - uid: 41931 components: - type: Transform - pos: -83.5,0.5 - parent: 2 - - uid: 18299 + rot: 3.141592653589793 rad + pos: 53.5,21.5 + parent: 40599 + - uid: 41932 components: - type: Transform - pos: -80.5,1.5 - parent: 2 - - uid: 18300 + pos: 55.5,21.5 + parent: 40599 + - uid: 41933 components: - type: Transform - pos: -81.5,1.5 - parent: 2 - - uid: 18301 + rot: -1.5707963267948966 rad + pos: 54.5,20.5 + parent: 40599 + - uid: 41934 components: - type: Transform - pos: -82.5,-0.5 - parent: 2 - - uid: 18302 + rot: 1.5707963267948966 rad + pos: 54.5,22.5 + parent: 40599 +- proto: FigureSpawner + entities: + - uid: 18093 components: - type: Transform - pos: -83.5,-0.5 + pos: -7.5,19.5 parent: 2 - - uid: 18303 +- proto: filingCabinet + entities: + - uid: 18094 components: - type: Transform - pos: -82.5,1.5 + pos: 28.5,58.5 parent: 2 - - uid: 18304 + - uid: 41935 components: - type: Transform - pos: -79.5,1.5 - parent: 2 - - uid: 18305 + pos: 58.256695,59.517395 + parent: 40599 +- proto: filingCabinetDrawer + entities: + - uid: 18095 components: - type: Transform - pos: -80.5,0.5 + pos: -6.5,-35.5 parent: 2 - - uid: 18306 + - uid: 18096 components: - type: Transform - pos: -79.5,0.5 + pos: 31.5,-53.5 parent: 2 - - uid: 18307 + - uid: 18097 components: - type: Transform - pos: -80.5,-0.5 + pos: 41.5,-43.5 parent: 2 - - uid: 18308 + - uid: 18098 components: - type: Transform - pos: -84.5,0.5 + pos: 27.5,-49.5 parent: 2 - - uid: 18309 + - uid: 18099 components: - type: Transform - pos: -84.5,-0.5 + pos: 43.5,-47.5 parent: 2 - - uid: 18310 + - uid: 18100 components: - type: Transform - pos: -83.5,1.5 + pos: 11.5,17.5 parent: 2 - - uid: 18311 +- proto: filingCabinetDrawerRandom + entities: + - uid: 18101 components: - type: Transform - pos: -84.5,1.5 + pos: 72.5,-37.5 parent: 2 - - uid: 18312 + - uid: 18102 components: - type: Transform - pos: -79.5,-0.5 + pos: 20.5,17.5 parent: 2 - - uid: 18313 + - uid: 18103 components: - type: Transform - pos: -78.5,1.5 + pos: -55.5,17.5 parent: 2 - - uid: 18314 + - uid: 18104 components: - type: Transform - pos: -78.5,0.5 + pos: -2.5585213,18.555326 parent: 2 - - uid: 18315 + - uid: 18105 components: - type: Transform - pos: -78.5,-0.5 + pos: 67.5,-34.5 parent: 2 - - uid: 18316 +- proto: filingCabinetRandom + entities: + - uid: 18106 components: - type: Transform - pos: -83.5,-1.5 + pos: -3.5,-7.5 parent: 2 - - uid: 18317 + - uid: 18107 components: - type: Transform - pos: -82.5,-1.5 + pos: -6.5,-12.5 parent: 2 - - uid: 18318 + - uid: 18108 components: - type: Transform - pos: -82.5,-2.5 + pos: -40.5,-0.5 parent: 2 - - uid: 18319 + - uid: 18109 components: - type: Transform - pos: -81.5,-2.5 + pos: -32.5,2.5 parent: 2 - - uid: 18320 + - uid: 18110 components: - type: Transform - pos: -84.5,2.5 + pos: -34.5,5.5 parent: 2 - - uid: 18321 + - uid: 18111 components: - type: Transform - pos: -81.5,-1.5 + pos: 0.5,22.5 parent: 2 - - uid: 18322 + - uid: 18112 components: - type: Transform - pos: -81.5,-3.5 + pos: 0.5,-46.5 parent: 2 - - uid: 18323 + - uid: 41936 components: - type: Transform - pos: -80.5,-3.5 - parent: 2 - - uid: 18324 + pos: 49.311283,55.5 + parent: 40599 + - uid: 41937 components: - type: Transform - pos: -80.5,-1.5 - parent: 2 - - uid: 18325 + pos: 49.29566,54.5 + parent: 40599 +- proto: filingCabinetTall + entities: + - uid: 18113 components: - type: Transform - pos: -79.5,-2.5 + pos: -38,-19.5 parent: 2 - - uid: 18326 + - uid: 18114 components: - type: Transform - pos: -79.5,-3.5 + pos: -38,-18.5 parent: 2 - - uid: 18327 +- proto: filingCabinetTallRandom + entities: + - uid: 18115 components: - type: Transform - pos: -79.5,-4.5 + pos: -3.5,68.5 parent: 2 - - uid: 18328 +- proto: FireAlarm + entities: + - uid: 18116 components: - type: Transform - pos: -80.5,-2.5 + rot: 3.141592653589793 rad + pos: 55.5,-14.5 parent: 2 - - uid: 18329 + - type: DeviceList + devices: + - 18344 + - 18487 + - uid: 18117 components: - type: Transform - pos: -78.5,-2.5 + pos: 55.5,-35.5 parent: 2 - - uid: 18330 + - type: DeviceList + devices: + - 18127 + - 18126 + - 18123 + - 18346 + - 18124 + - 18345 + - uid: 18118 components: - type: Transform - pos: -79.5,-1.5 + rot: 3.141592653589793 rad + pos: 50.5,-17.5 parent: 2 - - uid: 18331 + - type: DeviceList + devices: + - 18343 + - 18487 + - 18485 +- proto: FireAxeCabinetFilled + entities: + - uid: 18119 components: - type: Transform - pos: -78.5,-1.5 + rot: 3.141592653589793 rad + pos: -2.5,-57.5 parent: 2 - - uid: 18332 + - uid: 18120 components: - type: Transform - pos: -77.5,-1.5 + rot: 3.141592653589793 rad + pos: -3.5,-1.5 parent: 2 - - uid: 18333 +- proto: FireExtinguisher + entities: + - uid: 18121 components: - type: Transform - pos: -77.5,0.5 + pos: 69.5603,-51.216446 parent: 2 - - uid: 18334 + - uid: 18122 components: - type: Transform - pos: -84.5,-0.5 + pos: 69.29468,-51.122696 parent: 2 - - uid: 18335 +- proto: Firelock + entities: + - uid: 18123 components: - type: Transform - pos: -83.5,0.5 + rot: 3.141592653589793 rad + pos: 53.5,-37.5 parent: 2 - - uid: 18336 + - type: DeviceNetwork + deviceLists: + - 18117 + - 42 + - uid: 18124 components: - type: Transform - pos: -77.5,-0.5 + rot: 3.141592653589793 rad + pos: 71.5,-46.5 parent: 2 - - uid: 18337 + - type: DeviceNetwork + deviceLists: + - 18117 + - 42 + - 43 + - uid: 18125 components: - type: Transform - pos: -83.5,2.5 + rot: 3.141592653589793 rad + pos: 80.5,-44.5 parent: 2 - - uid: 18338 + - type: DeviceNetwork + deviceLists: + - 43 + - 44 + - uid: 18126 components: - type: Transform - pos: -84.5,0.5 + pos: 56.5,-35.5 parent: 2 - - uid: 18339 + - type: DeviceNetwork + deviceLists: + - 18117 + - 40 + - 42 + - uid: 18127 components: - type: Transform - pos: -83.5,-1.5 + pos: 57.5,-35.5 parent: 2 - - uid: 18340 + - type: DeviceNetwork + deviceLists: + - 18117 + - 40 + - 42 + - uid: 18128 components: - type: Transform - pos: -82.5,-2.5 + pos: -24.5,15.5 parent: 2 - - uid: 18341 + - type: DeviceNetwork + deviceLists: + - 110 + - 108 + - uid: 18129 components: - type: Transform - pos: -81.5,-2.5 + pos: -24.5,14.5 parent: 2 - - uid: 18342 + - type: DeviceNetwork + deviceLists: + - 110 + - 108 + - uid: 18130 components: - type: Transform - pos: -80.5,-3.5 + pos: -22.5,9.5 parent: 2 - - uid: 18343 + - type: DeviceNetwork + deviceLists: + - 53 + - 124 + - uid: 18131 components: - type: Transform - pos: -80.5,-3.5 + pos: -36.5,13.5 parent: 2 - - uid: 18344 + - type: DeviceNetwork + deviceLists: + - 117 + - 120 + - uid: 18132 components: - type: Transform - pos: -83.5,-0.5 + pos: -38.5,13.5 parent: 2 - - uid: 18345 + - type: DeviceNetwork + deviceLists: + - 116 + - 120 + - uid: 18133 components: - type: Transform - pos: -81.5,-0.5 + rot: 3.141592653589793 rad + pos: -49.5,-3.5 parent: 2 - - uid: 18346 + - type: DeviceNetwork + deviceLists: + - 126 + - 129 + - uid: 18134 components: - type: Transform - pos: -81.5,-1.5 + rot: 3.141592653589793 rad + pos: -41.5,5.5 parent: 2 - - uid: 18347 + - type: DeviceNetwork + deviceLists: + - 128 + - 125 + - uid: 18135 components: - type: Transform - pos: -82.5,-0.5 + rot: 3.141592653589793 rad + pos: -46.5,-5.5 parent: 2 - - uid: 18348 + - type: DeviceNetwork + deviceLists: + - 113 + - 129 + - uid: 18136 components: - type: Transform - pos: -82.5,-1.5 + rot: 3.141592653589793 rad + pos: -38.5,-10.5 parent: 2 - - uid: 18349 + - type: DeviceNetwork + deviceLists: + - 113 + - 133 + - uid: 18137 components: - type: Transform - pos: -80.5,-1.5 + rot: 3.141592653589793 rad + pos: -43.5,-5.5 parent: 2 - - uid: 18350 + - type: DeviceNetwork + deviceLists: + - 113 + - 129 + - uid: 18138 components: - type: Transform - pos: -79.5,-2.5 + rot: 3.141592653589793 rad + pos: -38.5,-5.5 parent: 2 - - uid: 18351 + - type: DeviceNetwork + deviceLists: + - 113 + - 129 + - uid: 18139 components: - type: Transform - pos: -79.5,-3.5 + rot: 3.141592653589793 rad + pos: -46.5,-10.5 parent: 2 - - uid: 18352 + - type: DeviceNetwork + deviceLists: + - 114 + - 113 + - uid: 18140 components: - type: Transform - pos: -79.5,-3.5 + rot: -1.5707963267948966 rad + pos: -44.5,-13.5 parent: 2 - - uid: 18353 + - type: DeviceNetwork + deviceLists: + - 134 + - uid: 18141 components: - type: Transform - pos: -80.5,-2.5 + rot: -1.5707963267948966 rad + pos: -41.5,-14.5 parent: 2 - - uid: 18354 + - type: DeviceNetwork + deviceLists: + - 134 + - 133 + - uid: 18142 components: - type: Transform - pos: -81.5,-3.5 + pos: -0.5,-41.5 parent: 2 - - uid: 18355 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 18143 components: - type: Transform - pos: -79.5,-4.5 + rot: 3.141592653589793 rad + pos: -21.5,-5.5 parent: 2 - - uid: 18356 + - type: DeviceNetwork + deviceLists: + - 131 + - uid: 18144 components: - type: Transform - pos: -82.5,0.5 + pos: -35.5,4.5 parent: 2 - - uid: 18357 + - type: DeviceNetwork + deviceLists: + - 119 + - 129 + - uid: 18145 components: - type: Transform - pos: -80.5,0.5 + pos: -31.5,4.5 parent: 2 - - uid: 18358 + - type: DeviceNetwork + deviceLists: + - 118 + - 119 + - uid: 18146 components: - type: Transform - pos: -80.5,-0.5 + pos: -11.5,-32.5 parent: 2 - - uid: 18359 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 18147 components: - type: Transform - pos: -79.5,-0.5 + pos: 5.5,-50.5 parent: 2 - - uid: 18360 + - type: DeviceNetwork + deviceLists: + - 37 + - uid: 18148 components: - type: Transform - pos: -79.5,-1.5 + pos: 9.5,-50.5 parent: 2 - - uid: 18361 + - type: DeviceNetwork + deviceLists: + - 37 + - uid: 18149 components: - type: Transform - pos: -81.5,0.5 + pos: -9.5,-51.5 parent: 2 - - uid: 18362 + - type: DeviceNetwork + deviceLists: + - 38 + - 51 + - uid: 18150 components: - type: Transform - pos: -84.5,1.5 + pos: 3.5,-55.5 parent: 2 - - uid: 18363 + - type: DeviceNetwork + deviceLists: + - 36 + - 51 + - uid: 18151 components: - type: Transform - pos: -78.5,-2.5 + pos: 3.5,-54.5 parent: 2 - - uid: 18364 + - type: DeviceNetwork + deviceLists: + - 36 + - 51 + - uid: 18152 components: - type: Transform - pos: -78.5,-1.5 + pos: -25.5,-47.5 parent: 2 - - uid: 41550 + - type: DeviceNetwork + deviceLists: + - 49 + - uid: 18153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,58.5 - parent: 40203 - - uid: 41551 + pos: -24.5,-47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 + - uid: 18154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,60.5 - parent: 40203 - - uid: 41552 + pos: -23.5,-47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 + - uid: 18155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,61.5 - parent: 40203 - - uid: 41553 + pos: -28.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 50 + - 49 + - uid: 18156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,59.5 - parent: 40203 - - uid: 41554 + pos: -31.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 49 + - uid: 18157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,62.5 - parent: 40203 - - uid: 41555 + pos: 12.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 66 + - uid: 18158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,63.5 - parent: 40203 - - uid: 41556 + pos: 14.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 59 + - 66 + - uid: 18159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,64.5 - parent: 40203 - - uid: 41557 + pos: 17.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 59 + - uid: 18160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,65.5 - parent: 40203 - - uid: 41558 + pos: 15.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 59 + - uid: 18161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,65.5 - parent: 40203 - - uid: 41559 + pos: 13.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 79 + - uid: 18162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,63.5 - parent: 40203 - - uid: 41560 + pos: 8.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 79 + - 73 + - uid: 18163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,62.5 - parent: 40203 - - uid: 41561 + pos: 10.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 79 + - 73 + - uid: 18164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,61.5 - parent: 40203 - - uid: 41562 + pos: 11.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 79 + - 73 + - uid: 18165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,65.5 - parent: 40203 - - uid: 41563 + pos: 12.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 79 + - 73 + - uid: 18166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,64.5 - parent: 40203 - - uid: 41564 + pos: -4.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - 65 + - uid: 18167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,64.5 - parent: 40203 - - uid: 41565 + pos: -10.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 62 + - uid: 18168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,63.5 - parent: 40203 - - uid: 41566 + pos: -14.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 18169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,61.5 - parent: 40203 - - uid: 41567 + pos: -11.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 65 + - uid: 18170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,65.5 - parent: 40203 - - uid: 41568 + pos: -112.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 107 + - uid: 18171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,64.5 - parent: 40203 - - uid: 41569 + pos: 2.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - 137 + - uid: 18172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,63.5 - parent: 40203 - - uid: 41570 + pos: 10.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - uid: 18173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,62.5 - parent: 40203 - - uid: 41571 + pos: 5.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - uid: 18174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,61.5 - parent: 40203 - - uid: 41572 + pos: -0.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - uid: 18175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,62.5 - parent: 40203 - - uid: 41573 + pos: -5.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 80 + - uid: 18176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,60.5 - parent: 40203 - - uid: 41574 + pos: -112.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 107 + - uid: 18177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,60.5 - parent: 40203 - - uid: 41575 + pos: -112.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 107 + - uid: 18178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,59.5 - parent: 40203 - - uid: 41576 + pos: -16.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 72 + - uid: 18179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,59.5 - parent: 40203 - - uid: 41577 + pos: -19.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 18180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,61.5 - parent: 40203 - - uid: 41578 + pos: 13.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 18181 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,62.5 - parent: 40203 - - uid: 41579 + pos: 18.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 18182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,63.5 - parent: 40203 - - uid: 41580 + pos: 21.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - 85 + - uid: 18183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,64.5 - parent: 40203 - - uid: 41581 + pos: 25.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 18184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,60.5 - parent: 40203 - - uid: 41582 + pos: 29.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - 57 + - uid: 18185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,64.5 - parent: 40203 - - uid: 41583 + pos: 35.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 18186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,62.5 - parent: 40203 - - uid: 41584 + pos: 34.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 57 + - uid: 18187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,61.5 - parent: 40203 - - uid: 41585 + rot: 3.141592653589793 rad + pos: 35.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 85 + - uid: 18188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,63.5 - parent: 40203 - - uid: 41586 + pos: 44.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 87 + - 61 + - uid: 18189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,61.5 - parent: 40203 - - uid: 41587 + pos: 40.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 87 + - uid: 18190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,63.5 - parent: 40203 - - uid: 41588 + pos: 37.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - uid: 18191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,62.5 - parent: 40203 - - uid: 41589 + pos: 49.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 18192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,64.5 - parent: 40203 - - uid: 41590 + pos: 47.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 18193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,62.5 - parent: 40203 - - uid: 41591 + pos: 1.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - uid: 18194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,64.5 - parent: 40203 - - uid: 41592 + pos: 3.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - uid: 18195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,63.5 - parent: 40203 - - uid: 41593 + pos: 4.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 60 + - uid: 18196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,63.5 - parent: 40203 - - uid: 41594 + pos: -18.5,39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 146 + - uid: 18197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,62.5 - parent: 40203 - - uid: 41595 + pos: 8.5,48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 + - 67 + - uid: 18198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,63.5 - parent: 40203 - - uid: 41596 + pos: 9.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 + - uid: 18199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,63.5 - parent: 40203 - - uid: 41597 + pos: 11.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 + - uid: 18200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,62.5 - parent: 40203 - - uid: 41598 + pos: 12.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 + - uid: 18201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,63.5 - parent: 40203 - - uid: 41599 + pos: 4.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 149 + - 67 + - uid: 18202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,62.5 - parent: 40203 - - uid: 41600 + pos: -11.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 18203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,61.5 - parent: 40203 - - uid: 41601 + pos: -11.5,61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - uid: 18204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,63.5 - parent: 40203 - - uid: 41602 + pos: -4.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 18205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,61.5 - parent: 40203 - - uid: 41603 + pos: -5.5,64.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 18206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,62.5 - parent: 40203 - - uid: 41604 + pos: -5.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 18207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,63.5 - parent: 40203 - - uid: 41605 + pos: -4.5,67.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 18208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,62.5 - parent: 40203 - - uid: 41606 + pos: -8.5,71.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 18209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,61.5 - parent: 40203 - - uid: 41607 + pos: -10.5,69.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 69 + - uid: 18210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,63.5 - parent: 40203 - - uid: 41608 + pos: 0.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 154 + - 67 + - uid: 18211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,62.5 - parent: 40203 - - uid: 41609 + pos: -19.5,54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 145 + - 147 + - uid: 18212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,61.5 - parent: 40203 - - uid: 41610 + pos: -14.5,45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 146 + - 147 + - uid: 18213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,61.5 - parent: 40203 - - uid: 41611 + pos: -19.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 142 + - 147 + - uid: 18214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,62.5 - parent: 40203 - - uid: 41612 + pos: -23.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 142 + - uid: 18215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,63.5 - parent: 40203 - - uid: 41613 + pos: -30.5,50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 143 + - uid: 18216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,64.5 - parent: 40203 - - uid: 41614 + pos: -25.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 143 + - uid: 18217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,64.5 - parent: 40203 - - uid: 41615 + pos: 0.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - uid: 18218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,64.5 - parent: 40203 - - uid: 41616 + pos: 52.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - 96 + - uid: 18219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,64.5 - parent: 40203 - - uid: 41617 + pos: 56.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 95 + - 96 + - uid: 18220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,64.5 - parent: 40203 - - uid: 41618 + pos: 56.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 96 + - uid: 18221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,60.5 - parent: 40203 - - uid: 41619 + pos: 61.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 99 + - 96 + - uid: 18222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,60.5 - parent: 40203 - - uid: 41620 + pos: 61.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - 96 + - uid: 18223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,59.5 - parent: 40203 - - uid: 41621 + pos: 63.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - 96 + - uid: 18224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,60.5 - parent: 40203 - - uid: 41622 + pos: 68.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - uid: 18225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,61.5 - parent: 40203 - - uid: 45215 + pos: 58.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 18226 components: - type: Transform - pos: -5.5,13.5 - parent: 44970 - - uid: 45216 + pos: 58.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 18227 components: - type: Transform - pos: -5.5,15.5 - parent: 44970 - - uid: 45217 + pos: 61.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 18228 components: - type: Transform - pos: -5.5,14.5 - parent: 44970 - - uid: 45218 + pos: 56.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 18229 components: - type: Transform - pos: -5.5,16.5 - parent: 44970 - - uid: 45219 + pos: 77.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 46 + - 45 + - uid: 18230 components: - type: Transform - pos: -4.5,16.5 - parent: 44970 - - uid: 45220 + pos: 81.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 45 + - uid: 18231 components: - type: Transform - pos: -4.5,15.5 - parent: 44970 - - uid: 45221 + pos: 68.5,-29.5 + parent: 2 + - uid: 18232 components: - type: Transform - pos: -4.5,14.5 - parent: 44970 - - uid: 45222 + pos: 44.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - 31 + - uid: 18233 components: - type: Transform - pos: -4.5,13.5 - parent: 44970 - - uid: 45223 + pos: 42.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - 31 + - uid: 18234 components: - type: Transform - pos: -3.5,15.5 - parent: 44970 - - uid: 45224 + pos: 37.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - uid: 18235 components: - type: Transform - pos: -3.5,14.5 - parent: 44970 - - uid: 45225 + pos: 37.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - uid: 18236 components: - type: Transform - pos: -3.5,13.5 - parent: 44970 - - uid: 45226 + pos: 34.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - uid: 18237 components: - type: Transform - pos: -2.5,14.5 - parent: 44970 - - uid: 45227 + pos: 34.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 30 + - uid: 18238 components: - type: Transform - pos: -2.5,13.5 - parent: 44970 - - uid: 45228 + pos: 32.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - uid: 18239 components: - type: Transform - pos: -1.5,14.5 - parent: 44970 - - uid: 45229 + pos: 28.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - uid: 18240 components: - type: Transform - pos: -1.5,13.5 - parent: 44970 - - uid: 45230 + pos: 29.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - uid: 18241 components: - type: Transform - pos: 4.5,14.5 - parent: 44970 - - uid: 45231 + pos: 20.5,-47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 + - uid: 18242 components: - type: Transform - pos: 4.5,16.5 - parent: 44970 - - uid: 45232 + pos: 22.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - uid: 18243 components: - type: Transform - pos: 2.5,15.5 - parent: 44970 - - uid: 45233 + pos: 27.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 33 + - uid: 18244 components: - type: Transform - pos: 3.5,15.5 - parent: 44970 - - uid: 45234 + pos: 27.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 156 + - 33 + - uid: 18245 components: - type: Transform - pos: 4.5,13.5 - parent: 44970 - - uid: 45235 + pos: 25.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28 + - 156 + - uid: 18246 components: - type: Transform - pos: 3.5,13.5 - parent: 44970 - - uid: 45236 + pos: 32.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 156 + - uid: 18247 components: - type: Transform - pos: 2.5,13.5 - parent: 44970 - - uid: 45237 + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 + - uid: 18248 components: - type: Transform - pos: 1.5,15.5 - parent: 44970 - - uid: 45238 + rot: 1.5707963267948966 rad + pos: -16.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 158 + - uid: 18249 components: - type: Transform - pos: 0.5,14.5 - parent: 44970 - - uid: 45239 + rot: 1.5707963267948966 rad + pos: -22.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 158 + - uid: 18250 components: - type: Transform - pos: 1.5,14.5 - parent: 44970 - - uid: 45240 + pos: -94.5,2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 106 + - uid: 18251 components: - type: Transform - pos: 3.5,14.5 - parent: 44970 - - uid: 45241 + pos: -100.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 106 + - uid: 18252 components: - type: Transform - pos: 2.5,14.5 - parent: 44970 - - uid: 45242 + pos: -102.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 106 + - 101 + - uid: 18253 components: - type: Transform - pos: 0.5,14.5 - parent: 44970 - - uid: 45243 + pos: -107.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 102 + - uid: 18254 components: - type: Transform - pos: 1.5,14.5 - parent: 44970 - - uid: 45244 + pos: -107.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 103 + - 104 + - uid: 18255 components: - type: Transform - pos: -5.5,16.5 - parent: 44970 - - uid: 45245 + pos: -110.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 103 + - 107 + - uid: 18256 components: - type: Transform - pos: -4.5,16.5 - parent: 44970 - - uid: 45246 + pos: -102.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 105 +- proto: FirelockEdge + entities: + - uid: 18257 components: - type: Transform - pos: -5.5,15.5 - parent: 44970 - - uid: 45247 + pos: -33.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 135 + - 129 + - uid: 18258 components: - type: Transform - pos: -4.5,15.5 - parent: 44970 - - uid: 45248 + pos: -32.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 135 + - 129 + - uid: 18259 components: - type: Transform - pos: -3.5,15.5 - parent: 44970 - - uid: 45249 + pos: -34.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 135 + - 129 + - uid: 18260 components: - type: Transform - pos: -3.5,14.5 - parent: 44970 - - uid: 45250 + rot: 1.5707963267948966 rad + pos: -24.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 124 + - uid: 18261 components: - type: Transform - pos: -2.5,14.5 - parent: 44970 - - uid: 45251 + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 124 + - uid: 18262 components: - type: Transform - pos: -1.5,14.5 - parent: 44970 - - uid: 45252 + rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 124 + - uid: 18263 components: - type: Transform - pos: -4.5,14.5 - parent: 44970 - - uid: 45253 + rot: 3.141592653589793 rad + pos: -40.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 115 + - 120 + - uid: 18264 components: - type: Transform - pos: -5.5,14.5 - parent: 44970 - - uid: 45254 + rot: 3.141592653589793 rad + pos: -44.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 121 + - 120 + - uid: 18265 components: - type: Transform - pos: 3.5,16.5 - parent: 44970 - - uid: 45255 - components: - - type: Transform - pos: 4.5,15.5 - parent: 44970 - - uid: 45256 - components: - - type: Transform - pos: 1.5,15.5 - parent: 44970 - - uid: 45257 + rot: 3.141592653589793 rad + pos: -48.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 112 + - 120 + - uid: 18266 components: - type: Transform - pos: 2.5,14.5 - parent: 44970 - - uid: 45258 + rot: 1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 133 + - 135 + - uid: 18267 components: - type: Transform - pos: 0.5,13.5 - parent: 44970 - - uid: 45259 + rot: 3.141592653589793 rad + pos: -55.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 54 + - uid: 18268 components: - type: Transform - pos: 1.5,13.5 - parent: 44970 -- proto: FloorCarpetItemWhite - entities: - - uid: 18365 + rot: 1.5707963267948966 rad + pos: -45.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 113 + - uid: 18269 components: - - type: MetaData - name: подушечка - type: Transform - pos: -98.53865,51.488796 + rot: -1.5707963267948966 rad + pos: -41.5,-9.5 parent: 2 - missingComponents: - - Item - - Pullable - - uid: 18366 + - type: DeviceNetwork + deviceLists: + - 113 + - uid: 18270 components: - - type: MetaData - name: подушечка - type: Transform - pos: -100.452995,51.488796 + rot: 3.141592653589793 rad + pos: -38.5,-17.5 parent: 2 - missingComponents: - - Item - - Pullable -- proto: FloorDrain - entities: - - uid: 18367 + - type: DeviceNetwork + deviceLists: + - 133 + - uid: 18271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,32.5 + pos: -29.5,-0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18368 + - type: DeviceNetwork + deviceLists: + - 130 + - uid: 18272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,30.5 + pos: -28.5,-0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18369 + - type: DeviceNetwork + deviceLists: + - 130 + - uid: 18273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,28.5 + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18370 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 18274 components: - type: Transform - pos: 66.5,4.5 + rot: -1.5707963267948966 rad + pos: -7.5,-37.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18371 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 18275 components: - type: Transform - pos: 42.5,25.5 + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18372 + - uid: 18276 components: - type: Transform - pos: 32.5,37.5 + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18373 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 18277 components: - type: Transform - pos: 47.5,27.5 + rot: -1.5707963267948966 rad + pos: -7.5,-35.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18374 + - type: DeviceNetwork + deviceLists: + - 52 + - uid: 18278 components: - type: Transform - pos: 23.5,42.5 + rot: 1.5707963267948966 rad + pos: -7.5,-44.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18375 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 18279 components: - type: Transform - pos: 21.5,42.5 + rot: 1.5707963267948966 rad + pos: -7.5,-45.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18376 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 18280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-2.5 + rot: 1.5707963267948966 rad + pos: -7.5,-46.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18377 + - type: DeviceNetwork + deviceLists: + - 38 + - uid: 18281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-2.5 + rot: -1.5707963267948966 rad + pos: -105.5,32.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18378 + - type: DeviceNetwork + deviceLists: + - 104 + - uid: 18282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,21.5 + pos: -113.5,9.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18379 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 18283 components: - type: Transform - pos: -16.5,43.5 + pos: -114.5,9.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18380 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 18284 components: - type: Transform - pos: 2.5,32.5 + pos: -112.5,9.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18381 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 18285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-33.5 + pos: -4.5,-13.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18382 + - type: DeviceNetwork + deviceLists: + - 65 + - 72 + - uid: 18286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,41.5 + rot: 3.141592653589793 rad + pos: -5.5,-5.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18383 + - type: DeviceNetwork + deviceLists: + - 62 + - uid: 18287 components: - type: Transform - pos: -101.5,27.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 18384 + - type: DeviceNetwork + deviceLists: + - 66 + - uid: 18288 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-49.5 + pos: 17.5,-10.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 41623 + - type: DeviceNetwork + deviceLists: + - 59 + - uid: 18289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,61.5 - parent: 40203 - - type: Fixtures - fixtures: {} - - uid: 41624 + pos: -115.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 18290 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,81.5 - parent: 40203 - - type: Fixtures - fixtures: {} -- proto: FloorLavaEntity - entities: - - uid: 18385 + pos: -105.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 104 + - uid: 18291 components: - type: Transform - pos: -48.5,51.5 + rot: -1.5707963267948966 rad + pos: -105.5,28.5 parent: 2 - - uid: 18386 + - type: DeviceNetwork + deviceLists: + - 104 + - uid: 18292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-49.5 + pos: -17.5,-9.5 parent: 2 - - uid: 18387 + - type: DeviceNetwork + deviceLists: + - 72 + - 71 + - uid: 18293 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-41.5 + pos: -16.5,-9.5 parent: 2 - - uid: 18388 + - type: DeviceNetwork + deviceLists: + - 72 + - 71 + - uid: 18294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-40.5 + pos: -15.5,-9.5 parent: 2 - - uid: 18389 + - type: DeviceNetwork + deviceLists: + - 72 + - 71 + - uid: 18295 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-50.5 + pos: 20.5,-9.5 parent: 2 - - uid: 18390 + - type: DeviceNetwork + deviceLists: + - 73 + - 55 + - uid: 18296 components: - type: Transform - pos: -48.5,49.5 + pos: 21.5,-9.5 parent: 2 - - uid: 18391 + - type: DeviceNetwork + deviceLists: + - 73 + - 55 + - uid: 18297 components: - type: Transform - pos: -47.5,51.5 + pos: 22.5,-9.5 parent: 2 - - uid: 18392 + - type: DeviceNetwork + deviceLists: + - 73 + - 55 + - uid: 18298 components: - type: Transform - pos: -46.5,51.5 + rot: -1.5707963267948966 rad + pos: 7.5,-15.5 parent: 2 - - uid: 18393 + - type: DeviceNetwork + deviceLists: + - 137 + - 73 + - uid: 18299 components: - type: Transform - pos: -47.5,49.5 + rot: -1.5707963267948966 rad + pos: 7.5,-16.5 parent: 2 - - uid: 18394 + - type: DeviceNetwork + deviceLists: + - 137 + - 73 + - uid: 18300 components: - type: Transform - pos: -46.5,50.5 + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 parent: 2 - - uid: 18395 + - type: DeviceNetwork + deviceLists: + - 137 + - 73 + - uid: 18301 components: - type: Transform - pos: -46.5,49.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - - uid: 18396 + - type: DeviceNetwork + deviceLists: + - 137 + - 72 + - uid: 18302 components: - type: Transform - pos: -48.5,50.5 + rot: 1.5707963267948966 rad + pos: -2.5,-16.5 parent: 2 - - uid: 18397 + - type: DeviceNetwork + deviceLists: + - 137 + - 72 + - uid: 18303 components: - type: Transform - pos: -47.5,50.5 + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 parent: 2 - - uid: 18398 + - type: DeviceNetwork + deviceLists: + - 137 + - 72 + - uid: 18304 components: - type: Transform - pos: -45.5,50.5 + rot: 3.141592653589793 rad + pos: -8.5,45.5 parent: 2 - - uid: 18399 + - type: DeviceNetwork + deviceLists: + - 141 + - 67 + - uid: 18305 components: - type: Transform - pos: -45.5,51.5 + rot: 1.5707963267948966 rad + pos: 11.5,18.5 parent: 2 - - uid: 18400 + - type: DeviceNetwork + deviceLists: + - 81 + - uid: 18306 components: - type: Transform - pos: -46.5,52.5 + pos: 10.5,30.5 parent: 2 - - uid: 18401 + - type: DeviceNetwork + deviceLists: + - 83 + - 56 + - uid: 18307 components: - type: Transform - pos: -45.5,49.5 + pos: 11.5,30.5 parent: 2 - - uid: 18402 + - type: DeviceNetwork + deviceLists: + - 83 + - 56 + - uid: 18308 components: - type: Transform - pos: -47.5,48.5 + pos: 12.5,30.5 parent: 2 - - uid: 18403 + - type: DeviceNetwork + deviceLists: + - 83 + - 56 + - uid: 18309 components: - type: Transform - pos: -49.5,50.5 + rot: 3.141592653589793 rad + pos: 12.5,36.5 parent: 2 -- proto: FloorLiquidPlasmaEntity - entities: - - uid: 18404 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 18310 components: - type: Transform - pos: 55.5,24.5 + rot: 3.141592653589793 rad + pos: 8.5,36.5 parent: 2 - - uid: 18405 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 18311 components: - type: Transform - pos: 66.5,34.5 + rot: 1.5707963267948966 rad + pos: 19.5,35.5 parent: 2 - - uid: 18406 + - type: DeviceNetwork + deviceLists: + - 56 + - 58 + - uid: 18312 components: - type: Transform - pos: 56.5,25.5 + rot: -1.5707963267948966 rad + pos: 23.5,35.5 parent: 2 - - uid: 18407 + - type: DeviceNetwork + deviceLists: + - 58 + - 84 + - uid: 18313 components: - type: Transform - pos: 66.5,33.5 + pos: 27.5,30.5 parent: 2 - - uid: 18408 + - type: DeviceNetwork + deviceLists: + - 84 + - 85 + - uid: 18314 components: - type: Transform - pos: -60.5,-24.5 + pos: 28.5,30.5 parent: 2 - - uid: 18409 + - type: DeviceNetwork + deviceLists: + - 84 + - 85 + - uid: 18315 components: - type: Transform - pos: 55.5,26.5 + pos: 29.5,30.5 parent: 2 - - uid: 18410 + - type: DeviceNetwork + deviceLists: + - 84 + - 85 + - uid: 18316 components: - type: Transform - pos: 67.5,33.5 + pos: 30.5,30.5 parent: 2 - - uid: 18411 + - type: DeviceNetwork + deviceLists: + - 84 + - 85 + - uid: 18317 components: - type: Transform - pos: 55.5,27.5 + pos: 31.5,30.5 parent: 2 - - uid: 18412 + - type: DeviceNetwork + deviceLists: + - 84 + - 85 + - uid: 18318 components: - type: Transform - pos: 66.5,35.5 + pos: 32.5,30.5 parent: 2 - - uid: 18413 + - type: DeviceNetwork + deviceLists: + - 84 + - 85 + - uid: 18319 components: - type: Transform - pos: -62.5,-24.5 + rot: -1.5707963267948966 rad + pos: 23.5,34.5 parent: 2 - - uid: 18414 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 18320 components: - type: Transform - pos: 65.5,34.5 + rot: -1.5707963267948966 rad + pos: 40.5,18.5 parent: 2 - - uid: 18415 + - type: DeviceNetwork + deviceLists: + - 86 + - 87 + - uid: 18321 components: - type: Transform - pos: 54.5,24.5 + rot: -1.5707963267948966 rad + pos: 40.5,19.5 parent: 2 - - uid: 18416 + - type: DeviceNetwork + deviceLists: + - 86 + - 87 + - uid: 18322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-48.5 + rot: -1.5707963267948966 rad + pos: 40.5,20.5 parent: 2 - - uid: 18417 + - type: DeviceNetwork + deviceLists: + - 86 + - 87 + - uid: 18323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-48.5 + rot: -1.5707963267948966 rad + pos: 40.5,21.5 parent: 2 - - uid: 18418 + - type: DeviceNetwork + deviceLists: + - 86 + - 87 + - uid: 18324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-49.5 + rot: -1.5707963267948966 rad + pos: 40.5,22.5 parent: 2 - - uid: 18419 + - type: DeviceNetwork + deviceLists: + - 86 + - 87 + - uid: 18325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-48.5 + pos: 47.5,21.5 parent: 2 - - uid: 18420 + - type: DeviceNetwork + deviceLists: + - 61 + - uid: 18326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-49.5 + rot: -1.5707963267948966 rad + pos: 0.5,37.5 parent: 2 - - uid: 18421 + - type: DeviceNetwork + deviceLists: + - 152 + - 155 + - uid: 18327 components: - type: Transform - pos: -88.5,40.5 + rot: -1.5707963267948966 rad + pos: 0.5,39.5 parent: 2 - - uid: 18422 + - type: DeviceNetwork + deviceLists: + - 152 + - 155 + - uid: 18328 components: - type: Transform - pos: -52.5,22.5 + rot: -1.5707963267948966 rad + pos: 0.5,40.5 parent: 2 - - uid: 18423 + - type: DeviceNetwork + deviceLists: + - 152 + - 155 + - uid: 18329 components: - type: Transform - pos: -69.5,27.5 + rot: 3.141592653589793 rad + pos: -7.5,45.5 parent: 2 - - uid: 18424 + - type: DeviceNetwork + deviceLists: + - 141 + - 67 + - uid: 18330 components: - type: Transform - pos: -54.5,23.5 + rot: 3.141592653589793 rad + pos: -6.5,45.5 parent: 2 - - uid: 18425 + - type: DeviceNetwork + deviceLists: + - 141 + - 67 + - uid: 18331 components: - type: Transform - pos: -71.5,27.5 + pos: -9.5,49.5 parent: 2 - - uid: 18426 + - type: DeviceNetwork + deviceLists: + - 153 + - 67 + - uid: 18332 components: - type: Transform - pos: -76.5,27.5 + pos: -8.5,49.5 parent: 2 - - uid: 18427 + - type: DeviceNetwork + deviceLists: + - 153 + - 67 + - uid: 18333 components: - type: Transform - pos: -70.5,27.5 + rot: 3.141592653589793 rad + pos: 30.5,-36.5 parent: 2 - - uid: 18428 + - type: DeviceNetwork + deviceLists: + - 156 + - 33 + - uid: 18334 components: - type: Transform - pos: -70.5,26.5 + rot: 3.141592653589793 rad + pos: 31.5,-36.5 parent: 2 - - uid: 18429 + - type: DeviceNetwork + deviceLists: + - 156 + - 33 + - uid: 18335 components: - type: Transform - pos: -71.5,26.5 + rot: 3.141592653589793 rad + pos: 32.5,-36.5 parent: 2 - - uid: 18430 + - type: DeviceNetwork + deviceLists: + - 156 + - 33 + - uid: 18336 components: - type: Transform - pos: -70.5,25.5 + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 parent: 2 - - uid: 18431 + - type: DeviceNetwork + deviceLists: + - 156 + - uid: 18337 components: - type: Transform - pos: -69.5,26.5 + rot: -1.5707963267948966 rad + pos: -22.5,19.5 parent: 2 - - uid: 18432 + - type: DeviceNetwork + deviceLists: + - 109 + - uid: 18338 components: - type: Transform - pos: -69.5,25.5 + pos: -100.5,9.5 parent: 2 - - uid: 18433 + - type: DeviceNetwork + deviceLists: + - 106 + - uid: 18339 components: - type: Transform - pos: -68.5,25.5 + pos: -109.5,17.5 parent: 2 - - uid: 18434 + - type: DeviceNetwork + deviceLists: + - 103 + - uid: 18340 components: - type: Transform - pos: -75.5,27.5 + pos: -110.5,17.5 parent: 2 - - uid: 18435 + - type: DeviceNetwork + deviceLists: + - 103 + - uid: 18341 components: - type: Transform - pos: -74.5,27.5 + rot: -1.5707963267948966 rad + pos: -106.5,3.5 parent: 2 - - uid: 18436 + - type: DeviceNetwork + deviceLists: + - 101 + - 102 + - uid: 18342 components: - type: Transform - pos: -74.5,26.5 + rot: -1.5707963267948966 rad + pos: -106.5,2.5 parent: 2 - - uid: 18437 + - type: DeviceNetwork + deviceLists: + - 101 + - 102 +- proto: FirelockGlass + entities: + - uid: 18343 components: - type: Transform - pos: -75.5,26.5 + rot: -1.5707963267948966 rad + pos: 48.5,-17.5 parent: 2 - - uid: 18438 + - type: DeviceNetwork + deviceLists: + - 161 + - 18118 + - uid: 18344 components: - type: Transform - pos: -70.5,28.5 + rot: -1.5707963267948966 rad + pos: 56.5,-11.5 parent: 2 - - uid: 18439 + - type: DeviceNetwork + deviceLists: + - 160 + - 18116 + - uid: 18345 components: - type: Transform - pos: -71.5,25.5 + rot: 3.141592653589793 rad + pos: 68.5,-50.5 parent: 2 - - uid: 18440 + - type: DeviceNetwork + deviceLists: + - 18117 + - 42 + - uid: 18346 components: - type: Transform - pos: -70.5,24.5 + rot: 3.141592653589793 rad + pos: 71.5,-39.5 parent: 2 - - uid: 18441 + - type: DeviceNetwork + deviceLists: + - 18117 + - 42 + - 46 + - uid: 18347 components: - type: Transform - pos: -73.5,25.5 + rot: 3.141592653589793 rad + pos: 86.5,-43.5 parent: 2 - - uid: 18442 + - type: DeviceNetwork + deviceLists: + - 44 + - uid: 18348 components: - type: Transform - pos: -73.5,26.5 + pos: -1.5,35.5 parent: 2 - - uid: 18443 + - type: DeviceNetwork + deviceLists: + - 155 + - uid: 18349 components: - type: Transform - pos: -74.5,25.5 + pos: -47.5,9.5 parent: 2 - - uid: 18444 + - type: DeviceNetwork + deviceLists: + - 127 + - 120 + - uid: 18350 components: - type: Transform - pos: -72.5,25.5 + rot: -1.5707963267948966 rad + pos: -35.5,-11.5 parent: 2 - - uid: 18445 + - type: DeviceNetwork + deviceLists: + - 133 + - 129 + - uid: 18351 components: - type: Transform - pos: -72.5,24.5 + pos: -26.5,13.5 parent: 2 - - uid: 18446 + - type: DeviceNetwork + deviceLists: + - 108 + - 123 + - uid: 18352 components: - type: Transform - pos: -71.5,24.5 + pos: -24.5,11.5 parent: 2 - - uid: 18447 + - type: DeviceNetwork + deviceLists: + - 123 + - 53 + - uid: 18353 components: - type: Transform - pos: -71.5,23.5 + pos: -29.5,11.5 parent: 2 - - uid: 18448 + - type: DeviceNetwork + deviceLists: + - 123 + - 120 + - uid: 18354 components: - type: Transform - pos: -70.5,23.5 + rot: 1.5707963267948966 rad + pos: -21.5,2.5 parent: 2 - - uid: 18449 + - type: DeviceNetwork + deviceLists: + - 124 + - 71 + - uid: 18355 components: - type: Transform - pos: -69.5,23.5 + pos: -38.5,9.5 parent: 2 - - uid: 18450 + - type: DeviceNetwork + deviceLists: + - 120 + - 129 + - uid: 18356 components: - type: Transform - pos: -69.5,24.5 + pos: -51.5,11.5 parent: 2 - - uid: 18451 + - type: DeviceNetwork + deviceLists: + - 54 + - 120 + - uid: 18357 components: - type: Transform - pos: -68.5,24.5 + pos: -36.5,9.5 parent: 2 - - uid: 18452 + - type: DeviceNetwork + deviceLists: + - 120 + - 129 + - uid: 18358 components: - type: Transform - pos: -68.5,23.5 + pos: -55.5,14.5 parent: 2 - - uid: 18453 + - type: DeviceNetwork + deviceLists: + - 122 + - 54 + - uid: 18359 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,22.5 + pos: -47.5,-1.5 parent: 2 - - uid: 18454 + - type: DeviceNetwork + deviceLists: + - 127 + - 129 + - uid: 18360 components: - type: Transform rot: 3.141592653589793 rad - pos: -72.5,22.5 + pos: -42.5,-1.5 parent: 2 - - uid: 18455 + - type: DeviceNetwork + deviceLists: + - 125 + - 129 + - uid: 18361 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,22.5 + pos: -29.5,-12.5 parent: 2 - - uid: 18456 + - type: DeviceNetwork + deviceLists: + - 135 + - 132 + - uid: 18362 components: - type: Transform - pos: -74.5,21.5 + rot: 3.141592653589793 rad + pos: -26.5,-10.5 parent: 2 - - uid: 18457 + - type: DeviceNetwork + deviceLists: + - 131 + - 132 + - uid: 18363 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.5,22.5 + pos: -33.5,-1.5 parent: 2 - - uid: 18458 + - type: DeviceNetwork + deviceLists: + - 130 + - 129 + - uid: 18364 components: - type: Transform - pos: -73.5,21.5 + pos: -26.5,-2.5 parent: 2 - - uid: 18459 + - type: DeviceNetwork + deviceLists: + - 130 + - 71 + - uid: 18365 components: - type: Transform - pos: -87.5,40.5 + pos: -26.5,-4.5 parent: 2 - - uid: 18460 + - type: DeviceNetwork + deviceLists: + - 130 + - 71 + - uid: 18366 components: - type: Transform - pos: 42.5,37.5 + pos: -31.5,-4.5 parent: 2 - - uid: 18461 + - type: DeviceNetwork + deviceLists: + - 130 + - 129 + - uid: 18367 components: - type: Transform - pos: 43.5,37.5 + pos: -31.5,-2.5 parent: 2 - - uid: 18462 + - type: DeviceNetwork + deviceLists: + - 130 + - 129 + - uid: 18368 components: - type: Transform - pos: 43.5,38.5 + pos: -5.5,-34.5 parent: 2 - - uid: 18463 + - type: DeviceNetwork + deviceLists: + - 136 + - 52 + - uid: 18369 components: - type: Transform - pos: 49.5,38.5 + pos: -7.5,-33.5 parent: 2 - - uid: 18464 + - type: DeviceNetwork + deviceLists: + - 136 + - uid: 18370 components: - type: Transform - pos: 49.5,37.5 + pos: -9.5,-39.5 parent: 2 - - uid: 18465 + - type: DeviceNetwork + deviceLists: + - 38 + - 52 + - uid: 18371 components: - type: Transform - pos: 48.5,37.5 + rot: -1.5707963267948966 rad + pos: -10.5,-30.5 parent: 2 - - uid: 18466 + - type: DeviceNetwork + deviceLists: + - 52 + - 138 + - uid: 18372 components: - type: Transform - pos: 50.5,38.5 + rot: -1.5707963267948966 rad + pos: -9.5,-30.5 parent: 2 - - uid: 18467 + - type: DeviceNetwork + deviceLists: + - 52 + - 138 + - uid: 18373 components: - type: Transform - pos: 50.5,39.5 + rot: -1.5707963267948966 rad + pos: -8.5,-30.5 parent: 2 - - uid: 18468 + - type: DeviceNetwork + deviceLists: + - 52 + - 138 + - uid: 18374 components: - type: Transform - pos: 51.5,39.5 + pos: -0.5,-48.5 parent: 2 - - uid: 18469 + - type: DeviceNetwork + deviceLists: + - 38 + - 37 + - uid: 18375 components: - type: Transform - pos: 42.5,36.5 + rot: 1.5707963267948966 rad + pos: -11.5,-45.5 parent: 2 - - uid: 18470 + - type: DeviceNetwork + deviceLists: + - 49 + - 38 + - uid: 18376 components: - type: Transform - pos: 41.5,36.5 + pos: -14.5,9.5 parent: 2 - - uid: 18471 + - type: DeviceNetwork + deviceLists: + - 70 + - 71 + - uid: 18377 components: - type: Transform - pos: -60.5,23.5 + pos: -0.5,-54.5 parent: 2 - - uid: 18472 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 18378 components: - type: Transform - pos: -58.5,23.5 + pos: -0.5,-55.5 parent: 2 - - uid: 18473 + - type: DeviceNetwork + deviceLists: + - 51 + - uid: 18379 components: - type: Transform - pos: -59.5,23.5 + pos: 0.5,-56.5 parent: 2 - - uid: 18474 + - type: DeviceNetwork + deviceLists: + - 51 + - 26 + - uid: 18380 components: - type: Transform - pos: -58.5,22.5 + pos: 1.5,-56.5 parent: 2 - - uid: 18475 + - type: DeviceNetwork + deviceLists: + - 51 + - 26 + - uid: 18381 components: - type: Transform - pos: -57.5,23.5 + pos: -14.5,-47.5 parent: 2 - - uid: 18476 + - type: DeviceNetwork + deviceLists: + - 49 + - 26 + - uid: 18382 components: - type: Transform - pos: -57.5,24.5 + pos: -14.5,-43.5 parent: 2 - - uid: 18477 + - type: DeviceNetwork + deviceLists: + - 47 + - 49 + - uid: 18383 components: - type: Transform - pos: -58.5,24.5 + pos: -20.5,-43.5 parent: 2 - - uid: 18478 + - type: DeviceNetwork + deviceLists: + - 48 + - 49 + - uid: 18384 components: - type: Transform - pos: -59.5,24.5 + pos: -20.5,-39.5 parent: 2 - - uid: 18479 + - type: DeviceNetwork + deviceLists: + - 48 + - uid: 18385 components: - type: Transform - pos: -60.5,24.5 + pos: -22.5,-39.5 parent: 2 - - uid: 18480 + - type: DeviceNetwork + deviceLists: + - 48 + - uid: 18386 components: - type: Transform - pos: -57.5,25.5 + rot: 3.141592653589793 rad + pos: -5.5,-39.5 parent: 2 - - uid: 18481 + - type: DeviceNetwork + deviceLists: + - 52 + - 38 + - uid: 18387 components: - type: Transform - pos: -56.5,25.5 + pos: -14.5,-0.5 parent: 2 - - uid: 18482 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - 71 + - uid: 18388 components: - type: Transform - pos: -56.5,24.5 + pos: -14.5,1.5 parent: 2 - - uid: 18483 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - 71 + - uid: 18389 components: - type: Transform - pos: -56.5,23.5 + pos: -6.5,3.5 parent: 2 - - uid: 18484 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - uid: 18390 components: - type: Transform - pos: -57.5,22.5 + pos: 11.5,3.5 parent: 2 - - uid: 18485 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - uid: 18391 components: - type: Transform - pos: -59.5,22.5 + pos: 19.5,1.5 parent: 2 - - uid: 18486 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - 55 + - uid: 18392 components: - type: Transform - pos: -58.5,21.5 + pos: 19.5,-0.5 parent: 2 - - uid: 18487 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - 55 + - uid: 18393 components: - type: Transform - pos: -57.5,21.5 + pos: 10.5,-1.5 parent: 2 - - uid: 18488 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - 66 + - uid: 18394 components: - type: Transform - pos: -59.5,21.5 + pos: -5.5,-1.5 parent: 2 - - uid: 18489 + - type: DeviceNetwork + deviceLists: + - 63 + - 64 + - 62 + - uid: 18395 components: - type: Transform - pos: -59.5,22.5 + pos: -7.5,-3.5 parent: 2 - - uid: 18490 + - type: DeviceNetwork + deviceLists: + - 62 + - uid: 18396 components: - type: Transform - pos: -55.5,23.5 + pos: -14.5,6.5 parent: 2 - - uid: 18491 + - type: DeviceNetwork + deviceLists: + - 70 + - 71 + - uid: 18397 components: - type: Transform - pos: -55.5,22.5 + pos: -14.5,5.5 parent: 2 - - uid: 18492 + - type: DeviceNetwork + deviceLists: + - 70 + - 71 + - uid: 18398 components: - type: Transform - pos: -56.5,22.5 + pos: 19.5,9.5 parent: 2 - - uid: 18493 + - type: DeviceNetwork + deviceLists: + - 75 + - 55 + - uid: 18399 components: - type: Transform - pos: -55.5,24.5 + pos: 16.5,10.5 parent: 2 - - uid: 18494 + - type: DeviceNetwork + deviceLists: + - 75 + - uid: 18400 components: - type: Transform - pos: -55.5,25.5 + pos: 18.5,18.5 parent: 2 - - uid: 18495 + - type: DeviceNetwork + deviceLists: + - 55 + - 82 + - uid: 18401 components: - type: Transform - pos: -67.5,24.5 + pos: 14.5,21.5 parent: 2 - - uid: 18496 + - type: DeviceNetwork + deviceLists: + - 55 + - 81 + - uid: 18402 components: - type: Transform - pos: -67.5,25.5 + pos: 14.5,24.5 parent: 2 - - uid: 18497 + - type: DeviceNetwork + deviceLists: + - 55 + - 83 + - uid: 18403 components: - type: Transform - pos: -68.5,26.5 + pos: 14.5,25.5 parent: 2 - - uid: 18498 + - type: DeviceNetwork + deviceLists: + - 55 + - 83 + - uid: 18404 components: - type: Transform - pos: -67.5,26.5 + pos: 19.5,25.5 parent: 2 - - uid: 18499 + - type: DeviceNetwork + deviceLists: + - 55 + - 85 + - uid: 18405 components: - type: Transform - pos: -70.5,29.5 + pos: 19.5,24.5 parent: 2 - - uid: 18500 + - type: DeviceNetwork + deviceLists: + - 55 + - 85 + - uid: 18406 components: - type: Transform - pos: -71.5,28.5 + pos: 23.5,1.5 parent: 2 - - uid: 18501 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 18407 components: - type: Transform - pos: -71.5,29.5 + pos: 23.5,0.5 parent: 2 - - uid: 18502 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 18408 components: - type: Transform - pos: -69.5,29.5 + pos: 23.5,-0.5 parent: 2 - - uid: 18503 + - type: DeviceNetwork + deviceLists: + - 55 + - uid: 18409 components: - type: Transform - pos: -71.5,28.5 + pos: 23.5,-7.5 parent: 2 - - uid: 18504 + - type: DeviceNetwork + deviceLists: + - 74 + - 55 + - uid: 18410 components: - type: Transform - pos: -72.5,28.5 + pos: 23.5,-8.5 parent: 2 - - uid: 18505 + - type: DeviceNetwork + deviceLists: + - 74 + - 55 + - uid: 18411 components: - type: Transform - pos: -72.5,27.5 + pos: 23.5,-15.5 parent: 2 - - uid: 18506 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 18412 components: - type: Transform - pos: -72.5,26.5 + pos: 23.5,-16.5 parent: 2 - - uid: 18507 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 18413 components: - type: Transform - pos: -73.5,27.5 + pos: 23.5,-17.5 parent: 2 - - uid: 18508 + - type: DeviceNetwork + deviceLists: + - 73 + - uid: 18414 components: - type: Transform - pos: -74.5,28.5 + pos: 6.5,-20.5 parent: 2 - - uid: 18509 + - type: DeviceNetwork + deviceLists: + - 77 + - uid: 18415 components: - type: Transform - pos: -73.5,28.5 + pos: 6.5,-21.5 parent: 2 - - uid: 18510 + - type: DeviceNetwork + deviceLists: + - 77 + - uid: 18416 components: - type: Transform - pos: -72.5,23.5 + pos: 2.5,-18.5 parent: 2 - - uid: 18511 + - type: DeviceNetwork + deviceLists: + - 137 + - 77 + - uid: 18417 components: - type: Transform - pos: -71.5,21.5 + pos: -8.5,-18.5 parent: 2 - - uid: 18512 + - type: DeviceNetwork + deviceLists: + - 72 + - 138 + - uid: 18418 components: - type: Transform - pos: -72.5,21.5 + pos: -9.5,-18.5 parent: 2 - - uid: 18513 + - type: DeviceNetwork + deviceLists: + - 72 + - 138 + - uid: 18419 components: - type: Transform - pos: -73.5,20.5 + pos: -10.5,-18.5 parent: 2 - - uid: 18514 + - type: DeviceNetwork + deviceLists: + - 72 + - 138 + - uid: 18420 components: - type: Transform - pos: -74.5,20.5 + pos: -12.5,17.5 parent: 2 - - uid: 18515 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 18421 components: - type: Transform - pos: -75.5,21.5 + pos: -11.5,17.5 parent: 2 - - uid: 18516 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 18422 components: - type: Transform - pos: -51.5,22.5 + pos: -10.5,17.5 parent: 2 - - uid: 18517 + - type: DeviceNetwork + deviceLists: + - 71 + - uid: 18423 components: - type: Transform - pos: -50.5,22.5 + rot: 1.5707963267948966 rad + pos: 6.5,27.5 parent: 2 - - uid: 18518 + - type: DeviceNetwork + deviceLists: + - 83 + - uid: 18424 components: - type: Transform - pos: -50.5,21.5 + rot: 1.5707963267948966 rad + pos: 6.5,25.5 parent: 2 - - uid: 18519 + - type: DeviceNetwork + deviceLists: + - 83 + - uid: 18425 components: - type: Transform - pos: -49.5,21.5 + rot: 1.5707963267948966 rad + pos: 8.5,30.5 parent: 2 - - uid: 18520 + - type: DeviceNetwork + deviceLists: + - 83 + - 56 + - uid: 18426 components: - type: Transform - pos: -47.5,21.5 + pos: 16.5,37.5 parent: 2 - - uid: 18521 + - type: DeviceNetwork + deviceLists: + - 56 + - uid: 18427 components: - type: Transform - pos: -47.5,20.5 + pos: 19.5,33.5 parent: 2 - - uid: 18522 + - type: DeviceNetwork + deviceLists: + - 56 + - 58 + - uid: 18428 components: - type: Transform - pos: -88.5,41.5 + rot: -1.5707963267948966 rad + pos: 23.5,33.5 parent: 2 - - uid: 18523 + - type: DeviceNetwork + deviceLists: + - 58 + - 84 + - uid: 18429 components: - type: Transform - pos: -87.5,42.5 + pos: 25.5,37.5 parent: 2 - - uid: 18524 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 18430 components: - type: Transform - pos: -89.5,42.5 + pos: 25.5,30.5 parent: 2 - - uid: 18525 + - type: DeviceNetwork + deviceLists: + - 84 + - 85 + - uid: 18431 components: - type: Transform - pos: -88.5,42.5 + rot: 3.141592653589793 rad + pos: 35.5,24.5 parent: 2 - - uid: 18526 + - type: DeviceNetwork + deviceLists: + - 85 + - 86 + - uid: 18432 components: - type: Transform - pos: -89.5,43.5 + rot: 3.141592653589793 rad + pos: 35.5,23.5 parent: 2 - - uid: 18527 + - type: DeviceNetwork + deviceLists: + - 85 + - 86 + - uid: 18433 components: - type: Transform - pos: -88.5,44.5 + rot: 3.141592653589793 rad + pos: 35.5,22.5 parent: 2 - - uid: 18528 + - type: DeviceNetwork + deviceLists: + - 85 + - 86 + - uid: 18434 components: - type: Transform - pos: -89.5,44.5 + rot: 3.141592653589793 rad + pos: 35.5,21.5 parent: 2 - - uid: 18529 + - type: DeviceNetwork + deviceLists: + - 85 + - 86 + - uid: 18435 components: - type: Transform - pos: -90.5,44.5 + rot: 3.141592653589793 rad + pos: 35.5,20.5 parent: 2 - - uid: 18530 + - type: DeviceNetwork + deviceLists: + - 85 + - 86 + - uid: 18436 components: - type: Transform - pos: -90.5,45.5 + pos: 33.5,16.5 parent: 2 - - uid: 18531 + - type: DeviceNetwork + deviceLists: + - 85 + - uid: 18437 components: - type: Transform - pos: -89.5,45.5 + rot: 3.141592653589793 rad + pos: 35.5,19.5 parent: 2 - - uid: 18532 + - type: DeviceNetwork + deviceLists: + - 85 + - 86 + - uid: 18438 components: - type: Transform - pos: -89.5,46.5 + pos: 31.5,16.5 parent: 2 - - uid: 18533 + - type: DeviceNetwork + deviceLists: + - 85 + - uid: 18439 components: - type: Transform - pos: -90.5,46.5 + rot: 3.141592653589793 rad + pos: 35.5,18.5 parent: 2 - - uid: 18534 + - type: DeviceNetwork + deviceLists: + - 85 + - 86 + - uid: 18440 components: - type: Transform - pos: -89.5,47.5 + pos: -5.5,32.5 parent: 2 - - uid: 18535 + - type: DeviceNetwork + deviceLists: + - 139 + - uid: 18441 components: - type: Transform - pos: -88.5,47.5 + pos: -1.5,44.5 parent: 2 - - uid: 18536 + - type: DeviceNetwork + deviceLists: + - 155 + - 67 + - uid: 18442 components: - type: Transform - pos: -87.5,41.5 + pos: 4.5,41.5 parent: 2 - - uid: 18537 + - type: DeviceNetwork + deviceLists: + - 151 + - uid: 18443 components: - type: Transform - pos: -83.5,42.5 + pos: -4.5,45.5 parent: 2 - - uid: 18538 + - type: DeviceNetwork + deviceLists: + - 141 + - 67 + - uid: 18444 components: - type: Transform - pos: -82.5,42.5 + pos: -11.5,47.5 parent: 2 - - uid: 18539 + - type: DeviceNetwork + deviceLists: + - 147 + - 67 + - uid: 18445 components: - type: Transform - pos: -82.5,43.5 + pos: -11.5,48.5 parent: 2 - - uid: 18540 + - type: DeviceNetwork + deviceLists: + - 147 + - 67 + - uid: 18446 components: - type: Transform - pos: -82.5,44.5 + pos: -6.5,51.5 parent: 2 - - uid: 18541 + - type: DeviceNetwork + deviceLists: + - 153 + - 67 + - uid: 18447 components: - type: Transform - pos: -81.5,44.5 + pos: -11.5,50.5 parent: 2 - - uid: 18542 + - type: DeviceNetwork + deviceLists: + - 147 + - 153 + - uid: 18448 components: - type: Transform - pos: -81.5,45.5 + pos: -5.5,53.5 parent: 2 - - uid: 18543 + - type: DeviceNetwork + deviceLists: + - 68 + - 67 + - uid: 18449 components: - type: Transform - pos: -80.5,45.5 + pos: 6.5,46.5 parent: 2 - - uid: 18544 + - type: DeviceNetwork + deviceLists: + - 151 + - 67 + - uid: 18450 components: - type: Transform - pos: -81.5,46.5 + pos: -24.5,55.5 parent: 2 - - uid: 18545 + - type: DeviceNetwork + deviceLists: + - 144 + - 145 + - uid: 18451 components: - type: Transform - pos: -81.5,47.5 + pos: -19.5,49.5 parent: 2 - - uid: 18546 + - type: DeviceNetwork + deviceLists: + - 147 + - uid: 18452 components: - type: Transform - pos: -81.5,48.5 + pos: 66.5,-28.5 parent: 2 - - uid: 18547 + - uid: 18453 components: - type: Transform - pos: -82.5,48.5 + pos: 64.5,-27.5 parent: 2 - - uid: 18548 + - uid: 18454 components: - type: Transform - pos: 67.5,35.5 + pos: 64.5,-27.5 parent: 2 - - uid: 18549 + - uid: 18455 components: - type: Transform - pos: 56.5,24.5 + rot: -1.5707963267948966 rad + pos: 60.5,-29.5 parent: 2 - - uid: 18550 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 18456 components: - type: Transform - pos: -63.5,-24.5 + rot: -1.5707963267948966 rad + pos: 60.5,-30.5 parent: 2 - - uid: 18551 + - type: DeviceNetwork + deviceLists: + - 40 + - uid: 18457 components: - type: Transform - pos: 56.5,26.5 + rot: -1.5707963267948966 rad + pos: 51.5,-56.5 parent: 2 - - uid: 18552 + - type: DeviceNetwork + deviceLists: + - 31 + - uid: 18458 components: - type: Transform - pos: -64.5,-24.5 + rot: -1.5707963267948966 rad + pos: 46.5,-56.5 parent: 2 - - uid: 18553 + - type: DeviceNetwork + deviceLists: + - 31 + - uid: 18459 components: - type: Transform - pos: -61.5,-24.5 + rot: -1.5707963267948966 rad + pos: 50.5,-51.5 parent: 2 - - uid: 18554 + - type: DeviceNetwork + deviceLists: + - 31 + - uid: 18460 components: - type: Transform - pos: 54.5,28.5 + pos: 27.5,-27.5 parent: 2 - - uid: 18555 + - type: DeviceNetwork + deviceLists: + - 156 + - uid: 18461 components: - type: Transform - pos: 65.5,35.5 + pos: 25.5,-31.5 parent: 2 - - uid: 18556 + - type: DeviceNetwork + deviceLists: + - 28 + - 156 + - uid: 18462 components: - type: Transform - pos: -61.5,-23.5 + pos: 24.5,-30.5 parent: 2 - - uid: 18557 + - type: DeviceNetwork + deviceLists: + - 28 + - uid: 18463 components: - type: Transform - pos: -60.5,-23.5 + pos: 25.5,-32.5 parent: 2 - - uid: 18558 + - type: DeviceNetwork + deviceLists: + - 28 + - 156 + - uid: 18464 components: - type: Transform - pos: -66.5,-25.5 + pos: 25.5,-33.5 parent: 2 - - uid: 18559 + - type: DeviceNetwork + deviceLists: + - 28 + - 156 + - uid: 18465 components: - type: Transform - pos: -67.5,-24.5 + pos: 20.5,-40.5 parent: 2 - - uid: 18560 + - type: DeviceNetwork + deviceLists: + - 34 + - uid: 18466 components: - type: Transform - pos: -67.5,-25.5 + pos: 20.5,-41.5 parent: 2 - - uid: 18561 + - type: DeviceNetwork + deviceLists: + - 34 + - uid: 18467 components: - type: Transform - pos: -65.5,-24.5 + pos: 23.5,-50.5 parent: 2 - - uid: 18562 + - type: DeviceNetwork + deviceLists: + - 157 + - uid: 18468 components: - type: Transform - pos: -66.5,-23.5 + rot: 1.5707963267948966 rad + pos: 2.5,23.5 parent: 2 - - uid: 18563 + - type: DeviceNetwork + deviceLists: + - 94 + - uid: 18469 components: - type: Transform - pos: -66.5,-24.5 + rot: 1.5707963267948966 rad + pos: 1.5,23.5 parent: 2 - - uid: 18564 + - type: DeviceNetwork + deviceLists: + - 94 + - uid: 18470 components: - type: Transform - pos: -65.5,-25.5 + pos: -111.5,6.5 parent: 2 - - uid: 18565 + - type: DeviceNetwork + deviceLists: + - 102 + - 100 + - uid: 18471 components: - type: Transform - pos: 56.5,24.5 + pos: -111.5,7.5 parent: 2 - - uid: 18566 + - type: DeviceNetwork + deviceLists: + - 102 + - 100 + - uid: 18472 components: - type: Transform - pos: 54.5,27.5 + pos: -105.5,13.5 parent: 2 - - uid: 18567 + - type: DeviceNetwork + deviceLists: + - 102 + - 103 + - uid: 18473 components: - type: Transform - pos: 56.5,27.5 + pos: -106.5,13.5 parent: 2 - - uid: 18568 + - type: DeviceNetwork + deviceLists: + - 102 + - 103 + - uid: 18474 components: - type: Transform - pos: 57.5,27.5 + pos: -103.5,14.5 parent: 2 - - uid: 18569 + - type: DeviceNetwork + deviceLists: + - 103 + - 98 + - uid: 18475 components: - type: Transform - pos: 64.5,35.5 + pos: -103.5,15.5 parent: 2 - - uid: 18570 + - type: DeviceNetwork + deviceLists: + - 103 + - 98 + - uid: 18476 components: - type: Transform - pos: 55.5,23.5 + pos: -103.5,16.5 parent: 2 - - uid: 18571 + - type: DeviceNetwork + deviceLists: + - 103 + - 98 + - uid: 18477 components: - type: Transform - pos: -80.5,44.5 + pos: -103.5,22.5 parent: 2 - - uid: 18572 + - type: DeviceNetwork + deviceLists: + - 103 + - 105 + - uid: 18478 components: - type: Transform - pos: -81.5,43.5 + pos: -103.5,23.5 parent: 2 - - uid: 18573 + - type: DeviceNetwork + deviceLists: + - 103 + - 105 + - uid: 18479 components: - type: Transform - pos: 68.5,33.5 + pos: -107.5,17.5 parent: 2 - - uid: 18574 + - uid: 18480 components: - type: Transform - pos: 67.5,34.5 + pos: -114.5,16.5 parent: 2 - - uid: 18575 + - type: DeviceNetwork + deviceLists: + - 103 + - 91 + - uid: 18481 components: - type: Transform - pos: 68.5,34.5 + pos: -114.5,20.5 parent: 2 - - uid: 18576 + - type: DeviceNetwork + deviceLists: + - 103 + - 90 + - uid: 18482 components: - type: Transform - pos: 68.5,35.5 + pos: -114.5,24.5 parent: 2 - - uid: 18577 + - type: DeviceNetwork + deviceLists: + - 103 + - 97 + - uid: 18483 components: - type: Transform - pos: 67.5,36.5 + pos: -118.5,2.5 parent: 2 - - uid: 18578 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 18484 components: - type: Transform - pos: 66.5,36.5 + pos: -117.5,9.5 parent: 2 - - uid: 18579 + - type: DeviceNetwork + deviceLists: + - 100 + - uid: 18485 components: - type: Transform - pos: 65.5,36.5 + rot: -1.5707963267948966 rad + pos: 44.5,-10.5 parent: 2 - - uid: 18580 + - type: DeviceNetwork + deviceLists: + - 161 + - 18118 + - uid: 18486 components: - type: Transform - pos: 55.5,25.5 + pos: 14.5,29.5 parent: 2 - - uid: 18581 + - type: DeviceNetwork + deviceLists: + - 159 + - uid: 18487 components: - type: Transform - pos: 54.5,25.5 + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 parent: 2 - - uid: 18582 + - type: DeviceNetwork + deviceLists: + - 161 + - 160 + - 18118 + - 18116 +- proto: Fireplace + entities: + - uid: 18488 components: - type: Transform - pos: 54.5,26.5 + pos: -76.5,18.5 parent: 2 - - uid: 41625 - components: - - type: Transform - pos: 62.5,50.5 - parent: 40203 - - uid: 41626 + - uid: 18489 components: - type: Transform - pos: 62.5,52.5 - parent: 40203 - - uid: 41627 + pos: 80.5,-37.5 + parent: 2 + - uid: 18490 components: - type: Transform - pos: 63.5,50.5 - parent: 40203 - - uid: 41628 + pos: 0.5,-19.5 + parent: 2 + - uid: 18491 components: - type: Transform - pos: 63.5,51.5 - parent: 40203 - - uid: 41629 + rot: 3.141592653589793 rad + pos: 26.5,17.5 + parent: 2 + - uid: 18492 components: - type: Transform - pos: 63.5,52.5 - parent: 40203 - - uid: 41630 + pos: -13.5,-9.5 + parent: 2 + - uid: 18493 components: - type: Transform - pos: 62.5,51.5 - parent: 40203 - - uid: 41631 + pos: 37.5,-0.5 + parent: 2 + - uid: 18494 components: - type: Transform - pos: 64.5,50.5 - parent: 40203 - - uid: 41632 + rot: 3.141592653589793 rad + pos: 6.5,-36.5 + parent: 2 + - uid: 18495 components: - type: Transform - pos: 64.5,52.5 - parent: 40203 - - uid: 41633 + rot: -1.5707963267948966 rad + pos: 42.5,12.5 + parent: 2 + - uid: 18496 components: - type: Transform - pos: 65.5,50.5 - parent: 40203 - - uid: 41634 + pos: 92.5,-27.5 + parent: 2 + - uid: 18497 components: - type: Transform - pos: 65.5,52.5 - parent: 40203 - - uid: 41635 + pos: -13.5,62.5 + parent: 2 + - uid: 18498 components: - type: Transform - pos: 66.5,50.5 - parent: 40203 - - uid: 41636 + pos: 6.5,22.5 + parent: 2 + - uid: 18499 components: - type: Transform - pos: 64.5,51.5 - parent: 40203 - - uid: 41637 + pos: 12.5,-2.5 + parent: 2 + - uid: 18500 components: - type: Transform - pos: 66.5,51.5 - parent: 40203 - - uid: 41638 + pos: -48.5,65.5 + parent: 2 + - uid: 41938 components: - type: Transform - pos: 66.5,52.5 - parent: 40203 - - uid: 41639 + pos: 67.5,43.5 + parent: 40599 + - uid: 41939 components: - type: Transform - pos: 65.5,51.5 - parent: 40203 - - uid: 41640 + pos: 77.5,36.5 + parent: 40599 + - uid: 41940 components: - type: Transform - pos: 67.5,50.5 - parent: 40203 - - uid: 41641 + pos: 40.5,37.5 + parent: 40599 + - uid: 41941 components: - type: Transform - pos: 67.5,51.5 - parent: 40203 - - uid: 41642 + pos: 77.5,36.5 + parent: 40599 + - uid: 41942 components: - type: Transform - pos: 67.5,52.5 - parent: 40203 - - uid: 41643 + pos: 41.5,26.5 + parent: 40599 + - uid: 41943 components: - type: Transform - pos: 68.5,50.5 - parent: 40203 - - uid: 41644 + pos: 41.5,26.5 + parent: 40599 +- proto: FlashlightSeclite + entities: + - uid: 18501 components: - type: Transform - pos: 68.5,52.5 - parent: 40203 - - uid: 41645 + rot: 3.141592653589793 rad + pos: 23.427282,-29.567226 + parent: 2 + - uid: 41944 components: - type: Transform - pos: 68.5,51.5 - parent: 40203 - - uid: 41646 + rot: 3.141592653589793 rad + pos: 37.633743,63.616806 + parent: 40599 +- proto: FleshBlocker + entities: + - uid: 47062 components: - type: Transform - pos: 68.5,53.5 - parent: 40203 - - uid: 41647 + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 46943 + - uid: 47063 components: - type: Transform - pos: 68.5,55.5 - parent: 40203 - - uid: 41648 + rot: 1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 46943 + - uid: 47064 components: - type: Transform - pos: 68.5,56.5 - parent: 40203 - - uid: 41649 + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 46943 + - uid: 47065 components: - type: Transform - pos: 68.5,54.5 - parent: 40203 - - uid: 41650 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 46943 + - uid: 47066 components: - type: Transform - pos: 67.5,53.5 - parent: 40203 - - uid: 41651 + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 46943 + - uid: 47067 components: - type: Transform - pos: 67.5,54.5 - parent: 40203 - - uid: 41652 + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 46943 + - uid: 47068 components: - type: Transform - pos: 67.5,55.5 - parent: 40203 - - uid: 41653 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 46943 +- proto: FlippoEngravedLighter + entities: + - uid: 18502 components: - type: Transform - pos: 67.5,56.5 - parent: 40203 - - uid: 41654 + pos: 15.571512,-7.5188613 + parent: 2 +- proto: FlippoLighter + entities: + - uid: 18503 components: - type: Transform - pos: 66.5,53.5 - parent: 40203 - - uid: 41655 + pos: -27.32242,-20.350796 + parent: 2 + - uid: 18504 components: - type: Transform - pos: 66.5,55.5 - parent: 40203 - - uid: 41656 + pos: 80.43086,6.649139 + parent: 2 + - uid: 18505 components: - type: Transform - pos: 66.5,54.5 - parent: 40203 - - uid: 41657 + pos: -75.66173,18.464489 + parent: 2 +- proto: Floodlight + entities: + - uid: 18506 components: - type: Transform - pos: 66.5,56.5 - parent: 40203 - - uid: 41658 + pos: 91.61072,-37.408596 + parent: 2 +- proto: FloodlightBroken + entities: + - uid: 18507 components: - type: Transform - pos: 65.5,53.5 - parent: 40203 - - uid: 41659 + pos: 95.34509,-36.533596 + parent: 2 + - uid: 41945 components: - type: Transform - pos: 65.5,54.5 - parent: 40203 - - uid: 41660 + pos: 31.079742,76.871605 + parent: 40599 +- proto: FloorAzureWaterEntity + entities: + - uid: 18508 components: - type: Transform - pos: 65.5,55.5 - parent: 40203 - - uid: 41661 + pos: -74.5,36.5 + parent: 2 + - uid: 18509 components: - type: Transform - pos: 65.5,56.5 - parent: 40203 - - uid: 41662 + pos: -66.5,53.5 + parent: 2 + - uid: 18510 components: - type: Transform - pos: 64.5,53.5 - parent: 40203 - - uid: 41663 + pos: -65.5,54.5 + parent: 2 + - uid: 18511 components: - type: Transform - pos: 64.5,54.5 - parent: 40203 - - uid: 41664 + pos: -77.5,37.5 + parent: 2 + - uid: 18512 components: - type: Transform - pos: 64.5,55.5 - parent: 40203 - - uid: 41665 + pos: -65.5,52.5 + parent: 2 + - uid: 18513 components: - type: Transform - pos: 64.5,56.5 - parent: 40203 - - uid: 41666 + pos: -66.5,50.5 + parent: 2 + - uid: 18514 components: - type: Transform - pos: 63.5,53.5 - parent: 40203 - - uid: 41667 + pos: -75.5,37.5 + parent: 2 + - uid: 18515 components: - type: Transform - pos: 63.5,54.5 - parent: 40203 - - uid: 41668 + pos: -74.5,36.5 + parent: 2 + - uid: 18516 components: - type: Transform - pos: 63.5,55.5 - parent: 40203 - - uid: 41669 + pos: -74.5,36.5 + parent: 2 + - uid: 18517 components: - type: Transform - pos: 63.5,56.5 - parent: 40203 - - uid: 45260 + pos: -74.5,36.5 + parent: 2 + - uid: 18518 components: - type: Transform - pos: 6.5,-0.5 - parent: 44970 - - uid: 45261 + pos: -74.5,37.5 + parent: 2 + - uid: 18519 components: - type: Transform - pos: 5.5,-0.5 - parent: 44970 - - uid: 45262 + pos: -74.5,37.5 + parent: 2 + - uid: 18520 components: - type: Transform - pos: 4.5,-0.5 - parent: 44970 - - uid: 45263 + pos: -74.5,36.5 + parent: 2 + - uid: 18521 components: - type: Transform - pos: 3.5,-0.5 - parent: 44970 - - uid: 45264 + pos: -76.5,37.5 + parent: 2 + - uid: 18522 components: - type: Transform - pos: 7.5,-0.5 - parent: 44970 - - uid: 45265 + pos: -75.5,37.5 + parent: 2 + - uid: 18523 components: - type: Transform - pos: 8.5,-0.5 - parent: 44970 - - uid: 45266 + pos: -74.5,36.5 + parent: 2 + - uid: 18524 components: - type: Transform - pos: 3.5,-1.5 - parent: 44970 - - uid: 45267 + pos: -66.5,52.5 + parent: 2 + - uid: 18525 components: - type: Transform - pos: 9.5,-1.5 - parent: 44970 - - uid: 45268 + pos: -74.5,36.5 + parent: 2 + - uid: 18526 components: - type: Transform - pos: 9.5,-2.5 - parent: 44970 - - uid: 45269 + pos: -75.5,38.5 + parent: 2 + - uid: 18527 components: - type: Transform - pos: 4.5,-1.5 - parent: 44970 - - uid: 45270 + rot: 1.5707963267948966 rad + pos: -66.5,55.5 + parent: 2 + - uid: 18528 components: - type: Transform - pos: 4.5,-2.5 - parent: 44970 - - uid: 45271 + rot: 1.5707963267948966 rad + pos: -66.5,55.5 + parent: 2 + - uid: 18529 components: - type: Transform - pos: 10.5,-1.5 - parent: 44970 - - uid: 45272 + pos: -64.5,52.5 + parent: 2 + - uid: 18530 components: - type: Transform - pos: 5.5,-1.5 - parent: 44970 - - uid: 45273 + pos: -64.5,53.5 + parent: 2 + - uid: 18531 components: - type: Transform - pos: 5.5,-2.5 - parent: 44970 - - uid: 45274 + pos: -64.5,54.5 + parent: 2 + - uid: 18532 components: - type: Transform - pos: 5.5,-3.5 - parent: 44970 - - uid: 45275 + pos: -64.5,55.5 + parent: 2 + - uid: 18533 components: - type: Transform - pos: 6.5,-1.5 - parent: 44970 - - uid: 45276 + pos: -65.5,51.5 + parent: 2 + - uid: 18534 components: - type: Transform - pos: 6.5,-2.5 - parent: 44970 - - uid: 45277 + pos: -64.5,53.5 + parent: 2 + - uid: 18535 components: - type: Transform - pos: 6.5,-3.5 - parent: 44970 - - uid: 45278 + pos: -64.5,54.5 + parent: 2 + - uid: 18536 components: - type: Transform - pos: 7.5,-1.5 - parent: 44970 - - uid: 45279 + pos: -64.5,55.5 + parent: 2 + - uid: 18537 components: - type: Transform - pos: 7.5,-2.5 - parent: 44970 - - uid: 45280 + pos: -64.5,55.5 + parent: 2 + - uid: 18538 components: - type: Transform - pos: 7.5,-3.5 - parent: 44970 - - uid: 45281 + pos: -74.5,37.5 + parent: 2 + - uid: 18539 components: - type: Transform - pos: 8.5,-1.5 - parent: 44970 - - uid: 45282 + pos: -76.5,37.5 + parent: 2 + - uid: 18540 components: - type: Transform - pos: 8.5,-2.5 - parent: 44970 - - uid: 45283 + pos: -65.5,50.5 + parent: 2 + - uid: 18541 components: - type: Transform - pos: 8.5,-3.5 - parent: 44970 - - uid: 45284 + pos: -65.5,51.5 + parent: 2 + - uid: 18542 components: - type: Transform - pos: 10.5,-0.5 - parent: 44970 - - uid: 45285 + pos: -66.5,51.5 + parent: 2 + - uid: 18543 components: - type: Transform - pos: 9.5,-0.5 - parent: 44970 - - uid: 45286 + pos: -64.5,52.5 + parent: 2 + - uid: 18544 components: - type: Transform - pos: 9.5,0.5 - parent: 44970 - - uid: 45287 + pos: -65.5,50.5 + parent: 2 + - uid: 18545 components: - type: Transform - pos: 9.5,1.5 - parent: 44970 - - uid: 45288 + pos: -65.5,53.5 + parent: 2 + - uid: 18546 components: - type: Transform - pos: 10.5,0.5 - parent: 44970 - - uid: 45289 + pos: -67.5,50.5 + parent: 2 + - uid: 18547 components: - type: Transform - pos: 1.5,-2.5 - parent: 44970 - - uid: 45290 + pos: -67.5,53.5 + parent: 2 + - uid: 18548 components: - type: Transform - pos: 1.5,-3.5 - parent: 44970 - - uid: 45291 + pos: -67.5,54.5 + parent: 2 + - uid: 18549 components: - type: Transform - pos: 2.5,-3.5 - parent: 44970 - - uid: 45292 + pos: -66.5,54.5 + parent: 2 + - uid: 18550 components: - type: Transform - pos: 2.5,-4.5 - parent: 44970 - - uid: 45293 + pos: -65.5,55.5 + parent: 2 + - uid: 18551 components: - type: Transform - pos: 2.5,-4.5 - parent: 44970 - - uid: 45294 + pos: -65.5,55.5 + parent: 2 + - uid: 18552 components: - type: Transform - pos: 1.5,-4.5 - parent: 44970 - - uid: 45295 + pos: -66.5,55.5 + parent: 2 + - uid: 18553 components: - type: Transform - pos: 0.5,-4.5 - parent: 44970 - - uid: 45296 + pos: -67.5,55.5 + parent: 2 + - uid: 18554 components: - type: Transform - pos: -0.5,-4.5 - parent: 44970 - - uid: 45297 + pos: -67.5,54.5 + parent: 2 + - uid: 18555 components: - type: Transform - pos: -0.5,-5.5 - parent: 44970 - - uid: 45298 + pos: -65.5,54.5 + parent: 2 + - uid: 18556 components: - type: Transform - pos: 0.5,-5.5 - parent: 44970 - - uid: 45299 + pos: -65.5,54.5 + parent: 2 + - uid: 18557 components: - type: Transform - pos: 1.5,-5.5 - parent: 44970 - - uid: 45300 + pos: -66.5,54.5 + parent: 2 + - uid: 18558 components: - type: Transform - pos: -1.5,-4.5 - parent: 44970 - - uid: 45301 + pos: -66.5,53.5 + parent: 2 + - uid: 18559 components: - type: Transform - pos: 2.5,-5.5 - parent: 44970 - - uid: 45302 + pos: -66.5,53.5 + parent: 2 + - uid: 18560 components: - type: Transform - pos: 1.5,-6.5 - parent: 44970 - - uid: 45303 + pos: -65.5,53.5 + parent: 2 + - uid: 18561 components: - type: Transform - pos: 0.5,-6.5 - parent: 44970 - - uid: 45304 + pos: -65.5,52.5 + parent: 2 + - uid: 18562 components: - type: Transform - pos: -0.5,-6.5 - parent: 44970 - - uid: 45305 + pos: -65.5,53.5 + parent: 2 + - uid: 18563 components: - type: Transform - pos: -1.5,-5.5 - parent: 44970 - - uid: 45306 + pos: -70.5,51.5 + parent: 2 + - uid: 18564 components: - type: Transform - pos: -2.5,-4.5 - parent: 44970 - - uid: 45307 + pos: -70.5,52.5 + parent: 2 + - uid: 18565 components: - type: Transform - pos: -2.5,-5.5 - parent: 44970 - - uid: 45308 + pos: -69.5,52.5 + parent: 2 + - uid: 18566 components: - type: Transform - pos: 3.5,-4.5 - parent: 44970 - - uid: 45309 + pos: -69.5,51.5 + parent: 2 + - uid: 18567 components: - type: Transform - pos: 3.5,-5.5 - parent: 44970 - - uid: 45310 + pos: -68.5,51.5 + parent: 2 + - uid: 18568 components: - type: Transform - pos: 4.5,-5.5 - parent: 44970 - - uid: 45311 + pos: -68.5,52.5 + parent: 2 + - uid: 18569 components: - type: Transform - pos: 4.5,-6.5 - parent: 44970 - - uid: 45312 + pos: -68.5,53.5 + parent: 2 + - uid: 18570 components: - type: Transform - pos: 3.5,-6.5 - parent: 44970 - - uid: 45313 + pos: -69.5,53.5 + parent: 2 + - uid: 18571 components: - type: Transform - pos: 2.5,-7.5 - parent: 44970 - - uid: 45314 + pos: -68.5,54.5 + parent: 2 + - uid: 18572 components: - type: Transform - pos: 2.5,-6.5 - parent: 44970 - - uid: 45315 + pos: -67.5,53.5 + parent: 2 + - uid: 18573 components: - type: Transform - pos: 3.5,-7.5 - parent: 44970 - - uid: 45316 + pos: -68.5,53.5 + parent: 2 + - uid: 18574 components: - type: Transform - pos: 1.5,-7.5 - parent: 44970 - - uid: 45317 + pos: -69.5,53.5 + parent: 2 + - uid: 18575 components: - type: Transform - pos: 7.5,-7.5 - parent: 44970 - - uid: 45318 + pos: -68.5,54.5 + parent: 2 + - uid: 18576 components: - type: Transform - pos: 7.5,-8.5 - parent: 44970 - - uid: 45319 + pos: -70.5,52.5 + parent: 2 + - uid: 18577 components: - type: Transform - pos: 7.5,-9.5 - parent: 44970 - - uid: 45320 + pos: -70.5,51.5 + parent: 2 + - uid: 18578 components: - type: Transform - pos: 9.5,-6.5 - parent: 44970 - - uid: 45321 + pos: -69.5,52.5 + parent: 2 + - uid: 18579 components: - type: Transform - pos: 10.5,-8.5 - parent: 44970 - - uid: 45322 + pos: -69.5,51.5 + parent: 2 + - uid: 18580 components: - type: Transform - pos: 13.5,-7.5 - parent: 44970 - - uid: 45323 + pos: -68.5,52.5 + parent: 2 + - uid: 18581 components: - type: Transform - pos: 8.5,-14.5 - parent: 44970 - - uid: 45324 + pos: -68.5,51.5 + parent: 2 + - uid: 18582 components: - type: Transform - pos: 8.5,-9.5 - parent: 44970 - - uid: 45325 + pos: -67.5,52.5 + parent: 2 + - uid: 18583 components: - type: Transform - pos: 17.5,-3.5 - parent: 44970 - - uid: 45326 + pos: -67.5,51.5 + parent: 2 + - uid: 18584 components: - type: Transform - pos: 9.5,-7.5 - parent: 44970 - - uid: 45327 + pos: -66.5,52.5 + parent: 2 + - uid: 18585 components: - type: Transform - pos: 7.5,-6.5 - parent: 44970 - - uid: 45328 + pos: -66.5,51.5 + parent: 2 + - uid: 18586 components: - type: Transform - pos: 6.5,-7.5 - parent: 44970 - - uid: 45329 + pos: -67.5,50.5 + parent: 2 + - uid: 18587 components: - type: Transform - pos: 6.5,-8.5 - parent: 44970 - - uid: 45330 + pos: -66.5,50.5 + parent: 2 + - uid: 18588 components: - type: Transform - pos: 9.5,-9.5 - parent: 44970 - - uid: 45331 + pos: -65.5,53.5 + parent: 2 + - uid: 18589 components: - type: Transform - pos: 8.5,-8.5 - parent: 44970 - - uid: 45332 + pos: -65.5,54.5 + parent: 2 + - uid: 18590 components: - type: Transform - pos: 8.5,-6.5 - parent: 44970 - - uid: 45333 + pos: -65.5,55.5 + parent: 2 + - uid: 18591 components: - type: Transform - pos: 9.5,-8.5 - parent: 44970 - - uid: 45334 + pos: -66.5,51.5 + parent: 2 + - uid: 18592 components: - type: Transform - pos: 8.5,-7.5 - parent: 44970 - - uid: 45335 + pos: -66.5,52.5 + parent: 2 + - uid: 18593 components: - type: Transform - pos: 6.5,-9.5 - parent: 44970 - - uid: 45336 + pos: -66.5,53.5 + parent: 2 + - uid: 18594 components: - type: Transform - pos: 5.5,-10.5 - parent: 44970 - - uid: 45337 + pos: -66.5,54.5 + parent: 2 + - uid: 18595 components: - type: Transform - pos: 6.5,-10.5 - parent: 44970 - - uid: 45338 + pos: -67.5,50.5 + parent: 2 + - uid: 18596 components: - type: Transform - pos: 5.5,-9.5 - parent: 44970 - - uid: 45339 + pos: -67.5,52.5 + parent: 2 + - uid: 18597 components: - type: Transform - pos: 7.5,-10.5 - parent: 44970 - - uid: 45340 + pos: -67.5,51.5 + parent: 2 + - uid: 18598 components: - type: Transform - pos: 9.5,-14.5 - parent: 44970 - - uid: 45341 + pos: -67.5,53.5 + parent: 2 + - uid: 18599 components: - type: Transform - pos: 2.5,-9.5 - parent: 44970 - - uid: 45342 + pos: -67.5,54.5 + parent: 2 + - uid: 18600 components: - type: Transform - pos: 2.5,-10.5 - parent: 44970 - - uid: 45343 + pos: -67.5,55.5 + parent: 2 + - uid: 18601 components: - type: Transform - pos: 1.5,-9.5 - parent: 44970 - - uid: 45344 + pos: -68.5,54.5 + parent: 2 + - uid: 18602 components: - type: Transform - pos: 0.5,-9.5 - parent: 44970 - - uid: 45345 + pos: -68.5,53.5 + parent: 2 + - uid: 18603 components: - type: Transform - pos: 1.5,-10.5 - parent: 44970 - - uid: 45346 + pos: -68.5,52.5 + parent: 2 + - uid: 18604 components: - type: Transform - pos: -0.5,-9.5 - parent: 44970 - - uid: 45347 + pos: -68.5,51.5 + parent: 2 + - uid: 18605 components: - type: Transform - pos: -0.5,-10.5 - parent: 44970 - - uid: 45348 + pos: -69.5,53.5 + parent: 2 + - uid: 18606 components: - type: Transform - pos: 0.5,-10.5 - parent: 44970 - - uid: 45349 + pos: -69.5,52.5 + parent: 2 + - uid: 18607 components: - type: Transform - pos: 4.5,-10.5 - parent: 44970 - - uid: 45350 + pos: -69.5,51.5 + parent: 2 + - uid: 18608 components: - type: Transform - pos: -1.5,-9.5 - parent: 44970 - - uid: 45351 + pos: -70.5,51.5 + parent: 2 + - uid: 18609 components: - type: Transform - pos: -1.5,-8.5 - parent: 44970 - - uid: 45352 + pos: -70.5,52.5 + parent: 2 + - uid: 18610 components: - type: Transform - pos: -0.5,-8.5 - parent: 44970 - - uid: 45353 + pos: -68.5,50.5 + parent: 2 + - uid: 18611 components: - type: Transform - pos: -2.5,-8.5 - parent: 44970 - - uid: 45354 + pos: -69.5,54.5 + parent: 2 + - uid: 18612 components: - type: Transform - pos: -1.5,-10.5 - parent: 44970 - - uid: 45355 + pos: -81.5,-0.5 + parent: 2 + - uid: 18613 components: - type: Transform - pos: -3.5,-8.5 - parent: 44970 - - uid: 45356 + pos: -82.5,0.5 + parent: 2 + - uid: 18614 components: - type: Transform - pos: -2.5,-9.5 - parent: 44970 - - uid: 45357 + pos: -81.5,0.5 + parent: 2 + - uid: 18615 components: - type: Transform - pos: -3.5,-9.5 - parent: 44970 - - uid: 45358 + pos: -83.5,0.5 + parent: 2 + - uid: 18616 components: - type: Transform - pos: -5.5,-8.5 - parent: 44970 - - uid: 45359 + pos: -80.5,1.5 + parent: 2 + - uid: 18617 components: - type: Transform - pos: -3.5,-7.5 - parent: 44970 - - uid: 45360 + pos: -81.5,1.5 + parent: 2 + - uid: 18618 components: - type: Transform - pos: -4.5,-7.5 - parent: 44970 - - uid: 45361 + pos: -82.5,-0.5 + parent: 2 + - uid: 18619 components: - type: Transform - pos: -5.5,-7.5 - parent: 44970 - - uid: 45362 + pos: -83.5,-0.5 + parent: 2 + - uid: 18620 components: - type: Transform - pos: -4.5,-8.5 - parent: 44970 - - uid: 45363 + pos: -82.5,1.5 + parent: 2 + - uid: 18621 components: - type: Transform - pos: -4.5,-9.5 - parent: 44970 - - uid: 45364 + pos: -79.5,1.5 + parent: 2 + - uid: 18622 components: - type: Transform - pos: -6.5,-8.5 - parent: 44970 - - uid: 45365 + pos: -80.5,0.5 + parent: 2 + - uid: 18623 components: - type: Transform - pos: -6.5,-7.5 - parent: 44970 - - uid: 45366 + pos: -79.5,0.5 + parent: 2 + - uid: 18624 components: - type: Transform - pos: -7.5,-6.5 - parent: 44970 - - uid: 45367 + pos: -80.5,-0.5 + parent: 2 + - uid: 18625 components: - type: Transform - pos: -7.5,-7.5 - parent: 44970 - - uid: 45368 + pos: -84.5,0.5 + parent: 2 + - uid: 18626 components: - type: Transform - pos: -5.5,-6.5 - parent: 44970 - - uid: 45369 + pos: -84.5,-0.5 + parent: 2 + - uid: 18627 components: - type: Transform - pos: -6.5,-6.5 - parent: 44970 - - uid: 45370 + pos: -83.5,1.5 + parent: 2 + - uid: 18628 components: - type: Transform - pos: -7.5,-5.5 - parent: 44970 - - uid: 45371 + pos: -84.5,1.5 + parent: 2 + - uid: 18629 components: - type: Transform - pos: -6.5,-5.5 - parent: 44970 - - uid: 45372 + pos: -79.5,-0.5 + parent: 2 + - uid: 18630 components: - type: Transform - pos: -8.5,-5.5 - parent: 44970 - - uid: 45373 + pos: -78.5,1.5 + parent: 2 + - uid: 18631 components: - type: Transform - pos: -8.5,-6.5 - parent: 44970 - - uid: 45374 + pos: -78.5,0.5 + parent: 2 + - uid: 18632 components: - type: Transform - pos: -3.5,-4.5 - parent: 44970 - - uid: 45375 + pos: -78.5,-0.5 + parent: 2 + - uid: 18633 components: - type: Transform - pos: -4.5,-6.5 - parent: 44970 - - uid: 45376 + pos: -83.5,-1.5 + parent: 2 + - uid: 18634 components: - type: Transform - pos: -4.5,-6.5 - parent: 44970 - - uid: 45377 + pos: -82.5,-1.5 + parent: 2 + - uid: 18635 components: - type: Transform - pos: -7.5,-3.5 - parent: 44970 - - uid: 45378 + pos: -82.5,-2.5 + parent: 2 + - uid: 18636 components: - type: Transform - pos: -2.5,-10.5 - parent: 44970 - - uid: 45379 + pos: -81.5,-2.5 + parent: 2 + - uid: 18637 components: - type: Transform - pos: -7.5,-2.5 - parent: 44970 - - uid: 45380 + pos: -84.5,2.5 + parent: 2 + - uid: 18638 components: - type: Transform - pos: -7.5,-1.5 - parent: 44970 - - uid: 45381 + pos: -81.5,-1.5 + parent: 2 + - uid: 18639 components: - type: Transform - pos: -7.5,-0.5 - parent: 44970 - - uid: 45382 + pos: -81.5,-3.5 + parent: 2 + - uid: 18640 components: - type: Transform - pos: -7.5,0.5 - parent: 44970 - - uid: 45383 + pos: -80.5,-3.5 + parent: 2 + - uid: 18641 components: - type: Transform - pos: -7.5,1.5 - parent: 44970 - - uid: 45384 + pos: -80.5,-1.5 + parent: 2 + - uid: 18642 components: - type: Transform - pos: -7.5,2.5 - parent: 44970 - - uid: 45385 + pos: -79.5,-2.5 + parent: 2 + - uid: 18643 components: - type: Transform - pos: -8.5,-3.5 - parent: 44970 - - uid: 45386 + pos: -79.5,-3.5 + parent: 2 + - uid: 18644 components: - type: Transform - pos: -8.5,-2.5 - parent: 44970 - - uid: 45387 + pos: -79.5,-4.5 + parent: 2 + - uid: 18645 components: - type: Transform - pos: -8.5,-1.5 - parent: 44970 - - uid: 45388 + pos: -80.5,-2.5 + parent: 2 + - uid: 18646 components: - type: Transform - pos: -8.5,-0.5 - parent: 44970 - - uid: 45389 + pos: -78.5,-2.5 + parent: 2 + - uid: 18647 components: - type: Transform - pos: -8.5,0.5 - parent: 44970 - - uid: 45390 + pos: -79.5,-1.5 + parent: 2 + - uid: 18648 components: - type: Transform - pos: -8.5,1.5 - parent: 44970 - - uid: 45391 + pos: -78.5,-1.5 + parent: 2 + - uid: 18649 components: - type: Transform - pos: -8.5,2.5 - parent: 44970 - - uid: 45392 + pos: -77.5,-1.5 + parent: 2 + - uid: 18650 components: - type: Transform - pos: -9.5,0.5 - parent: 44970 - - uid: 45393 + pos: -77.5,0.5 + parent: 2 + - uid: 18651 components: - type: Transform - pos: -9.5,-1.5 - parent: 44970 - - uid: 45394 + pos: -84.5,-0.5 + parent: 2 + - uid: 18652 components: - type: Transform - pos: -9.5,-0.5 - parent: 44970 - - uid: 45395 + pos: -83.5,0.5 + parent: 2 + - uid: 18653 components: - type: Transform - pos: -9.5,1.5 - parent: 44970 - - uid: 45396 + pos: -77.5,-0.5 + parent: 2 + - uid: 18654 components: - type: Transform - pos: -7.5,3.5 - parent: 44970 - - uid: 45397 + pos: -83.5,2.5 + parent: 2 + - uid: 18655 components: - type: Transform - pos: -9.5,-2.5 - parent: 44970 - - uid: 45398 + pos: -84.5,0.5 + parent: 2 + - uid: 18656 components: - type: Transform - pos: -2.5,16.5 - parent: 44970 - - uid: 45399 + pos: -83.5,-1.5 + parent: 2 + - uid: 18657 components: - type: Transform - pos: -2.5,16.5 - parent: 44970 - - uid: 45400 + pos: -82.5,-2.5 + parent: 2 + - uid: 18658 components: - type: Transform - pos: -1.5,16.5 - parent: 44970 - - uid: 45401 + pos: -81.5,-2.5 + parent: 2 + - uid: 18659 components: - type: Transform - pos: -1.5,15.5 - parent: 44970 - - uid: 45402 + pos: -80.5,-3.5 + parent: 2 + - uid: 18660 components: - type: Transform - pos: -2.5,15.5 - parent: 44970 - - uid: 45403 + pos: -80.5,-3.5 + parent: 2 + - uid: 18661 components: - type: Transform - pos: -3.5,16.5 - parent: 44970 - - uid: 45404 + pos: -83.5,-0.5 + parent: 2 + - uid: 18662 components: - type: Transform - pos: -0.5,15.5 - parent: 44970 - - uid: 45405 + pos: -81.5,-0.5 + parent: 2 + - uid: 18663 components: - type: Transform - pos: -0.5,16.5 - parent: 44970 - - uid: 45406 + pos: -81.5,-1.5 + parent: 2 + - uid: 18664 components: - type: Transform - pos: -0.5,17.5 - parent: 44970 - - uid: 45407 + pos: -82.5,-0.5 + parent: 2 + - uid: 18665 components: - type: Transform - pos: -1.5,17.5 - parent: 44970 - - uid: 45408 + pos: -82.5,-1.5 + parent: 2 + - uid: 18666 components: - type: Transform - pos: -2.5,17.5 - parent: 44970 - - uid: 45409 + pos: -80.5,-1.5 + parent: 2 + - uid: 18667 components: - type: Transform - pos: -3.5,17.5 - parent: 44970 - - uid: 45410 + pos: -79.5,-2.5 + parent: 2 + - uid: 18668 components: - type: Transform - pos: -3.5,18.5 - parent: 44970 - - uid: 45411 + pos: -79.5,-3.5 + parent: 2 + - uid: 18669 components: - type: Transform - pos: -3.5,19.5 - parent: 44970 - - uid: 45412 + pos: -79.5,-3.5 + parent: 2 + - uid: 18670 components: - type: Transform - pos: -2.5,18.5 - parent: 44970 - - uid: 45413 + pos: -80.5,-2.5 + parent: 2 + - uid: 18671 components: - type: Transform - pos: -2.5,19.5 - parent: 44970 - - uid: 45414 + pos: -81.5,-3.5 + parent: 2 + - uid: 18672 components: - type: Transform - pos: -1.5,18.5 - parent: 44970 - - uid: 45415 + pos: -79.5,-4.5 + parent: 2 + - uid: 18673 components: - type: Transform - pos: -1.5,19.5 - parent: 44970 - - uid: 45416 + pos: -82.5,0.5 + parent: 2 + - uid: 18674 components: - type: Transform - pos: -0.5,18.5 - parent: 44970 - - uid: 45417 + pos: -80.5,0.5 + parent: 2 + - uid: 18675 components: - type: Transform - pos: -0.5,19.5 - parent: 44970 - - uid: 45418 + pos: -80.5,-0.5 + parent: 2 + - uid: 18676 components: - type: Transform - pos: 0.5,18.5 - parent: 44970 - - uid: 45419 + pos: -79.5,-0.5 + parent: 2 + - uid: 18677 components: - type: Transform - pos: 0.5,19.5 - parent: 44970 - - uid: 45420 + pos: -79.5,-1.5 + parent: 2 + - uid: 18678 components: - type: Transform - pos: 1.5,18.5 - parent: 44970 - - uid: 45421 + pos: -81.5,0.5 + parent: 2 + - uid: 18679 components: - type: Transform - pos: 1.5,19.5 - parent: 44970 - - uid: 45422 + pos: -84.5,1.5 + parent: 2 + - uid: 18680 components: - type: Transform - pos: -4.5,18.5 - parent: 44970 - - uid: 45423 + pos: -78.5,-2.5 + parent: 2 + - uid: 18681 components: - type: Transform - pos: 0.5,17.5 - parent: 44970 - - uid: 45424 + pos: -78.5,-1.5 + parent: 2 + - uid: 41946 components: - type: Transform - pos: 1.5,17.5 - parent: 44970 - - uid: 45425 + rot: -1.5707963267948966 rad + pos: 75.5,58.5 + parent: 40599 + - uid: 41947 components: - type: Transform - pos: 0.5,16.5 - parent: 44970 - - uid: 45426 + rot: -1.5707963267948966 rad + pos: 75.5,60.5 + parent: 40599 + - uid: 41948 components: - type: Transform - pos: 0.5,15.5 - parent: 44970 - - uid: 45427 + rot: -1.5707963267948966 rad + pos: 75.5,61.5 + parent: 40599 + - uid: 41949 components: - type: Transform - pos: 1.5,16.5 - parent: 44970 - - uid: 45428 + rot: -1.5707963267948966 rad + pos: 75.5,59.5 + parent: 40599 + - uid: 41950 components: - type: Transform - pos: 2.5,16.5 - parent: 44970 - - uid: 45429 + rot: -1.5707963267948966 rad + pos: 75.5,62.5 + parent: 40599 + - uid: 41951 components: - type: Transform - pos: 2.5,18.5 - parent: 44970 - - uid: 45430 + rot: -1.5707963267948966 rad + pos: 75.5,63.5 + parent: 40599 + - uid: 41952 components: - type: Transform - pos: 2.5,17.5 - parent: 44970 - - uid: 45431 + rot: -1.5707963267948966 rad + pos: 75.5,64.5 + parent: 40599 + - uid: 41953 components: - type: Transform - pos: -4.5,17.5 - parent: 44970 - - uid: 45432 + rot: -1.5707963267948966 rad + pos: 75.5,65.5 + parent: 40599 + - uid: 41954 components: - type: Transform - pos: -10.5,8.5 - parent: 44970 - - uid: 45433 + rot: -1.5707963267948966 rad + pos: 78.5,65.5 + parent: 40599 + - uid: 41955 components: - type: Transform - pos: -10.5,9.5 - parent: 44970 - - uid: 45434 + rot: -1.5707963267948966 rad + pos: 78.5,63.5 + parent: 40599 + - uid: 41956 components: - type: Transform - pos: -9.5,9.5 - parent: 44970 - - uid: 45435 + rot: -1.5707963267948966 rad + pos: 78.5,62.5 + parent: 40599 + - uid: 41957 components: - type: Transform - pos: -9.5,8.5 - parent: 44970 - - uid: 45436 + rot: -1.5707963267948966 rad + pos: 78.5,61.5 + parent: 40599 + - uid: 41958 components: - type: Transform - pos: -8.5,9.5 - parent: 44970 - - uid: 45437 + rot: -1.5707963267948966 rad + pos: 77.5,65.5 + parent: 40599 + - uid: 41959 components: - type: Transform - pos: -8.5,8.5 - parent: 44970 - - uid: 45438 + rot: -1.5707963267948966 rad + pos: 77.5,64.5 + parent: 40599 + - uid: 41960 components: - type: Transform - pos: -8.5,10.5 - parent: 44970 - - uid: 45439 + rot: -1.5707963267948966 rad + pos: 78.5,64.5 + parent: 40599 + - uid: 41961 components: - type: Transform - pos: -9.5,10.5 - parent: 44970 - - uid: 45440 + rot: -1.5707963267948966 rad + pos: 77.5,63.5 + parent: 40599 + - uid: 41962 components: - type: Transform - pos: -9.5,11.5 - parent: 44970 - - uid: 45441 + rot: -1.5707963267948966 rad + pos: 77.5,61.5 + parent: 40599 + - uid: 41963 components: - type: Transform - pos: -8.5,11.5 - parent: 44970 - - uid: 45442 + rot: -1.5707963267948966 rad + pos: 76.5,65.5 + parent: 40599 + - uid: 41964 components: - type: Transform - pos: -8.5,12.5 - parent: 44970 - - uid: 45443 + rot: -1.5707963267948966 rad + pos: 76.5,64.5 + parent: 40599 + - uid: 41965 components: - type: Transform - pos: -9.5,7.5 - parent: 44970 - - uid: 45444 + rot: -1.5707963267948966 rad + pos: 76.5,63.5 + parent: 40599 + - uid: 41966 components: - type: Transform - pos: -10.5,7.5 - parent: 44970 - - uid: 45445 + rot: -1.5707963267948966 rad + pos: 77.5,62.5 + parent: 40599 + - uid: 41967 components: - type: Transform - pos: -10.5,6.5 - parent: 44970 - - uid: 45446 + rot: -1.5707963267948966 rad + pos: 76.5,61.5 + parent: 40599 + - uid: 41968 components: - type: Transform - pos: -9.5,6.5 - parent: 44970 - - uid: 45447 + rot: -1.5707963267948966 rad + pos: 76.5,62.5 + parent: 40599 + - uid: 41969 components: - type: Transform - pos: -8.5,7.5 - parent: 44970 - - uid: 45448 + rot: -1.5707963267948966 rad + pos: 76.5,60.5 + parent: 40599 + - uid: 41970 components: - type: Transform - pos: -11.5,7.5 - parent: 44970 - - uid: 45449 + rot: -1.5707963267948966 rad + pos: 77.5,60.5 + parent: 40599 + - uid: 41971 components: - type: Transform - pos: -11.5,5.5 - parent: 44970 - - uid: 45450 + rot: -1.5707963267948966 rad + pos: 76.5,59.5 + parent: 40599 + - uid: 41972 components: - type: Transform - pos: -10.5,5.5 - parent: 44970 - - uid: 45451 + rot: -1.5707963267948966 rad + pos: 74.5,59.5 + parent: 40599 + - uid: 41973 components: - type: Transform - pos: -12.5,5.5 - parent: 44970 - - uid: 45452 + rot: -1.5707963267948966 rad + pos: 74.5,61.5 + parent: 40599 + - uid: 41974 components: - type: Transform - pos: -11.5,6.5 - parent: 44970 - - uid: 45453 + rot: -1.5707963267948966 rad + pos: 74.5,62.5 + parent: 40599 + - uid: 41975 components: - type: Transform - pos: -12.5,4.5 - parent: 44970 - - uid: 45454 + rot: -1.5707963267948966 rad + pos: 74.5,63.5 + parent: 40599 + - uid: 41976 components: - type: Transform - pos: -11.5,4.5 - parent: 44970 - - uid: 45455 + rot: -1.5707963267948966 rad + pos: 74.5,64.5 + parent: 40599 + - uid: 41977 components: - type: Transform - pos: -11.5,3.5 - parent: 44970 - - uid: 45456 + rot: -1.5707963267948966 rad + pos: 74.5,60.5 + parent: 40599 + - uid: 41978 components: - type: Transform - pos: -12.5,3.5 - parent: 44970 - - uid: 45457 + rot: -1.5707963267948966 rad + pos: 73.5,64.5 + parent: 40599 + - uid: 41979 components: - type: Transform - pos: -12.5,6.5 - parent: 44970 - - uid: 45458 + rot: -1.5707963267948966 rad + pos: 73.5,62.5 + parent: 40599 + - uid: 41980 components: - type: Transform - pos: -10.5,4.5 - parent: 44970 - - uid: 45459 + rot: -1.5707963267948966 rad + pos: 73.5,61.5 + parent: 40599 + - uid: 41981 components: - type: Transform - pos: -9.5,5.5 - parent: 44970 - - uid: 45460 + rot: -1.5707963267948966 rad + pos: 73.5,63.5 + parent: 40599 + - uid: 41982 components: - type: Transform - pos: -10.5,0.5 - parent: 44970 - - uid: 45461 + rot: -1.5707963267948966 rad + pos: 79.5,61.5 + parent: 40599 + - uid: 41983 components: - type: Transform - pos: -12.5,2.5 - parent: 44970 - - uid: 45462 + rot: -1.5707963267948966 rad + pos: 79.5,63.5 + parent: 40599 + - uid: 41984 components: - type: Transform - pos: -13.5,2.5 - parent: 44970 - - uid: 45463 + rot: -1.5707963267948966 rad + pos: 79.5,62.5 + parent: 40599 + - uid: 41985 components: - type: Transform - pos: -13.5,3.5 - parent: 44970 - - uid: 45464 + rot: -1.5707963267948966 rad + pos: 79.5,64.5 + parent: 40599 + - uid: 41986 components: - type: Transform - pos: -13.5,4.5 - parent: 44970 - - uid: 45465 + rot: -1.5707963267948966 rad + pos: 79.5,62.5 + parent: 40599 + - uid: 41987 components: - type: Transform - pos: -13.5,5.5 - parent: 44970 - - uid: 45466 + rot: -1.5707963267948966 rad + pos: 80.5,64.5 + parent: 40599 + - uid: 41988 components: - type: Transform - pos: 8.5,18.5 - parent: 44970 - - uid: 45467 + rot: -1.5707963267948966 rad + pos: 80.5,63.5 + parent: 40599 + - uid: 41989 components: - type: Transform - pos: 8.5,16.5 - parent: 44970 - - uid: 45468 + rot: -1.5707963267948966 rad + pos: 79.5,63.5 + parent: 40599 + - uid: 41990 components: - type: Transform - pos: 9.5,18.5 - parent: 44970 - - uid: 45469 + rot: -1.5707963267948966 rad + pos: 80.5,62.5 + parent: 40599 + - uid: 41991 components: - type: Transform - pos: 9.5,17.5 - parent: 44970 - - uid: 45470 + rot: -1.5707963267948966 rad + pos: 81.5,63.5 + parent: 40599 + - uid: 41992 components: - type: Transform - pos: 8.5,17.5 - parent: 44970 - - uid: 45471 + rot: -1.5707963267948966 rad + pos: 74.5,63.5 + parent: 40599 + - uid: 41993 components: - type: Transform - pos: 9.5,16.5 - parent: 44970 - - uid: 45472 + rot: -1.5707963267948966 rad + pos: 74.5,62.5 + parent: 40599 + - uid: 41994 components: - type: Transform - pos: 10.5,16.5 - parent: 44970 - - uid: 45473 + rot: -1.5707963267948966 rad + pos: 75.5,63.5 + parent: 40599 + - uid: 41995 components: - type: Transform - pos: 10.5,15.5 - parent: 44970 - - uid: 45474 + rot: -1.5707963267948966 rad + pos: 75.5,62.5 + parent: 40599 + - uid: 41996 components: - type: Transform - pos: 9.5,15.5 - parent: 44970 - - uid: 45475 + rot: -1.5707963267948966 rad + pos: 75.5,61.5 + parent: 40599 + - uid: 41997 components: - type: Transform - pos: 10.5,14.5 - parent: 44970 - - uid: 45476 + rot: -1.5707963267948966 rad + pos: 76.5,63.5 + parent: 40599 + - uid: 41998 components: - type: Transform - pos: 11.5,14.5 - parent: 44970 - - uid: 45477 + rot: -1.5707963267948966 rad + pos: 74.5,61.5 + parent: 40599 + - uid: 41999 components: - type: Transform - pos: 11.5,15.5 - parent: 44970 - - uid: 45478 + rot: -1.5707963267948966 rad + pos: 76.5,62.5 + parent: 40599 + - uid: 42000 components: - type: Transform - pos: 10.5,17.5 - parent: 44970 - - uid: 45479 + rot: -1.5707963267948966 rad + pos: 77.5,63.5 + parent: 40599 + - uid: 42001 components: - type: Transform - pos: 11.5,16.5 - parent: 44970 - - uid: 45480 + rot: -1.5707963267948966 rad + pos: 77.5,62.5 + parent: 40599 + - uid: 42002 components: - type: Transform - pos: 12.5,14.5 - parent: 44970 - - uid: 45481 + rot: -1.5707963267948966 rad + pos: 77.5,61.5 + parent: 40599 + - uid: 42003 components: - type: Transform - pos: 12.5,13.5 - parent: 44970 - - uid: 45482 + rot: -1.5707963267948966 rad + pos: 78.5,63.5 + parent: 40599 + - uid: 42004 components: - type: Transform - pos: 11.5,13.5 - parent: 44970 - - uid: 45483 + rot: -1.5707963267948966 rad + pos: 78.5,62.5 + parent: 40599 + - uid: 42005 components: - type: Transform - pos: 11.5,12.5 - parent: 44970 - - uid: 45484 + rot: -1.5707963267948966 rad + pos: 78.5,61.5 + parent: 40599 + - uid: 42006 components: - type: Transform - pos: 13.5,12.5 - parent: 44970 - - uid: 45485 + rot: -1.5707963267948966 rad + pos: 76.5,61.5 + parent: 40599 + - uid: 42007 components: - type: Transform - pos: 12.5,12.5 - parent: 44970 - - uid: 45486 + rot: -1.5707963267948966 rad + pos: 80.5,62.5 + parent: 40599 + - uid: 42008 components: - type: Transform - pos: 10.5,12.5 - parent: 44970 - - uid: 45487 + rot: -1.5707963267948966 rad + pos: 80.5,63.5 + parent: 40599 + - uid: 42009 components: - type: Transform - pos: 12.5,11.5 - parent: 44970 - - uid: 45488 + rot: -1.5707963267948966 rad + pos: 75.5,64.5 + parent: 40599 + - uid: 42010 components: - type: Transform - pos: 13.5,10.5 - parent: 44970 - - uid: 45489 + rot: -1.5707963267948966 rad + pos: 76.5,64.5 + parent: 40599 + - uid: 42011 components: - type: Transform - pos: 14.5,10.5 - parent: 44970 - - uid: 45490 + rot: -1.5707963267948966 rad + pos: 77.5,64.5 + parent: 40599 + - uid: 42012 components: - type: Transform - pos: 13.5,11.5 - parent: 44970 - - uid: 45491 + rot: -1.5707963267948966 rad + pos: 78.5,64.5 + parent: 40599 + - uid: 42013 components: - type: Transform - pos: 13.5,9.5 - parent: 44970 - - uid: 45492 + rot: -1.5707963267948966 rad + pos: 79.5,64.5 + parent: 40599 + - uid: 42014 components: - type: Transform - pos: 14.5,9.5 - parent: 44970 - - uid: 45493 + rot: -1.5707963267948966 rad + pos: 75.5,60.5 + parent: 40599 + - uid: 42015 components: - type: Transform - pos: 12.5,10.5 - parent: 44970 - - uid: 45494 + rot: -1.5707963267948966 rad + pos: 76.5,60.5 + parent: 40599 + - uid: 42016 components: - type: Transform - pos: 11.5,11.5 - parent: 44970 - - uid: 45495 + rot: -1.5707963267948966 rad + pos: 76.5,59.5 + parent: 40599 + - uid: 42017 components: - type: Transform - pos: 10.5,13.5 - parent: 44970 - - uid: 45496 + rot: -1.5707963267948966 rad + pos: 77.5,60.5 + parent: 40599 + - uid: 42018 components: - type: Transform - pos: 12.5,9.5 - parent: 44970 - - uid: 45497 + rot: -1.5707963267948966 rad + pos: 79.5,61.5 + parent: 40599 + - uid: 45599 components: - type: Transform - pos: 13.5,8.5 - parent: 44970 - - uid: 45498 + pos: -5.5,13.5 + parent: 45355 + - uid: 45600 components: - type: Transform - pos: 14.5,8.5 - parent: 44970 - - uid: 45499 + pos: -5.5,15.5 + parent: 45355 + - uid: 45601 components: - type: Transform - pos: 11.5,5.5 - parent: 44970 - - uid: 45500 + pos: -5.5,14.5 + parent: 45355 + - uid: 45602 components: - type: Transform - pos: 11.5,4.5 - parent: 44970 - - uid: 45501 + pos: -5.5,16.5 + parent: 45355 + - uid: 45603 components: - type: Transform - pos: 11.5,3.5 - parent: 44970 - - uid: 45502 + pos: -4.5,16.5 + parent: 45355 + - uid: 45604 components: - type: Transform - pos: 12.5,6.5 - parent: 44970 - - uid: 45503 + pos: -4.5,15.5 + parent: 45355 + - uid: 45605 components: - type: Transform - pos: 12.5,5.5 - parent: 44970 - - uid: 45504 + pos: -4.5,14.5 + parent: 45355 + - uid: 45606 components: - type: Transform - pos: 12.5,4.5 - parent: 44970 - - uid: 45505 + pos: -4.5,13.5 + parent: 45355 + - uid: 45607 components: - type: Transform - pos: 12.5,3.5 - parent: 44970 - - uid: 45506 + pos: -3.5,15.5 + parent: 45355 + - uid: 45608 components: - type: Transform - pos: 13.5,6.5 - parent: 44970 - - uid: 45507 + pos: -3.5,14.5 + parent: 45355 + - uid: 45609 components: - type: Transform - pos: 13.5,5.5 - parent: 44970 - - uid: 45508 + pos: -3.5,13.5 + parent: 45355 + - uid: 45610 components: - type: Transform - pos: 13.5,4.5 - parent: 44970 - - uid: 45509 + pos: -2.5,14.5 + parent: 45355 + - uid: 45611 components: - type: Transform - pos: 13.5,3.5 - parent: 44970 - - uid: 45510 + pos: -2.5,13.5 + parent: 45355 + - uid: 45612 components: - type: Transform - pos: 14.5,6.5 - parent: 44970 - - uid: 45511 + pos: -1.5,14.5 + parent: 45355 + - uid: 45613 components: - type: Transform - pos: 14.5,5.5 - parent: 44970 - - uid: 45512 + pos: -1.5,13.5 + parent: 45355 + - uid: 45614 components: - type: Transform - pos: 14.5,4.5 - parent: 44970 - - uid: 45513 + pos: 4.5,14.5 + parent: 45355 + - uid: 45615 components: - type: Transform - pos: 14.5,3.5 - parent: 44970 - - uid: 45514 + pos: 4.5,16.5 + parent: 45355 + - uid: 45616 components: - type: Transform - pos: 10.5,5.5 - parent: 44970 - - uid: 45515 + pos: 2.5,15.5 + parent: 45355 + - uid: 45617 components: - type: Transform - pos: 10.5,4.5 - parent: 44970 - - uid: 45516 + pos: 3.5,15.5 + parent: 45355 + - uid: 45618 components: - type: Transform - pos: 12.5,2.5 - parent: 44970 - - uid: 45517 + pos: 4.5,13.5 + parent: 45355 + - uid: 45619 components: - type: Transform - pos: 13.5,2.5 - parent: 44970 - - uid: 45518 + pos: 3.5,13.5 + parent: 45355 + - uid: 45620 components: - type: Transform - pos: 15.5,4.5 - parent: 44970 - - uid: 45519 + pos: 2.5,13.5 + parent: 45355 + - uid: 45621 components: - type: Transform - pos: 15.5,5.5 - parent: 44970 - - uid: 45520 + pos: 1.5,15.5 + parent: 45355 + - uid: 45622 components: - type: Transform - pos: 11.5,-3.5 - parent: 44970 - - uid: 45521 + pos: 0.5,14.5 + parent: 45355 + - uid: 45623 components: - type: Transform - pos: 11.5,-4.5 - parent: 44970 - - uid: 45522 + pos: 1.5,14.5 + parent: 45355 + - uid: 45624 components: - type: Transform - pos: 13.5,-4.5 - parent: 44970 - - uid: 45523 + pos: 3.5,14.5 + parent: 45355 + - uid: 45625 components: - type: Transform - pos: 12.5,-3.5 - parent: 44970 - - uid: 45524 + pos: 2.5,14.5 + parent: 45355 + - uid: 45626 components: - type: Transform - pos: 12.5,-2.5 - parent: 44970 - - uid: 45525 + pos: 0.5,14.5 + parent: 45355 + - uid: 45627 components: - type: Transform - pos: 12.5,-1.5 - parent: 44970 - - uid: 45526 + pos: 1.5,14.5 + parent: 45355 + - uid: 45628 components: - type: Transform - pos: 13.5,-3.5 - parent: 44970 - - uid: 45527 + pos: -5.5,16.5 + parent: 45355 + - uid: 45629 components: - type: Transform - pos: 13.5,-2.5 - parent: 44970 - - uid: 45528 + pos: -4.5,16.5 + parent: 45355 + - uid: 45630 components: - type: Transform - pos: 13.5,-1.5 - parent: 44970 - - uid: 45529 + pos: -5.5,15.5 + parent: 45355 + - uid: 45631 components: - type: Transform - pos: 14.5,-3.5 - parent: 44970 - - uid: 45530 + pos: -4.5,15.5 + parent: 45355 + - uid: 45632 components: - type: Transform - pos: 14.5,-2.5 - parent: 44970 - - uid: 45531 + pos: -3.5,15.5 + parent: 45355 + - uid: 45633 components: - type: Transform - pos: 14.5,-1.5 - parent: 44970 - - uid: 45532 + pos: -3.5,14.5 + parent: 45355 + - uid: 45634 components: - type: Transform - pos: 15.5,-3.5 - parent: 44970 - - uid: 45533 + pos: -2.5,14.5 + parent: 45355 + - uid: 45635 components: - type: Transform - pos: 15.5,-2.5 - parent: 44970 - - uid: 45534 + pos: -1.5,14.5 + parent: 45355 + - uid: 45636 components: - type: Transform - pos: 15.5,-1.5 - parent: 44970 - - uid: 45535 + pos: -4.5,14.5 + parent: 45355 + - uid: 45637 components: - type: Transform - pos: 12.5,-4.5 - parent: 44970 - - uid: 45536 + pos: -5.5,14.5 + parent: 45355 + - uid: 45638 components: - type: Transform - pos: 12.5,-5.5 - parent: 44970 - - uid: 45537 + pos: 3.5,16.5 + parent: 45355 + - uid: 45639 components: - type: Transform - pos: 12.5,-6.5 - parent: 44970 - - uid: 45538 + pos: 4.5,15.5 + parent: 45355 + - uid: 45640 components: - type: Transform - pos: 13.5,-5.5 - parent: 44970 - - uid: 45539 + pos: 1.5,15.5 + parent: 45355 + - uid: 45641 components: - type: Transform - pos: 13.5,-6.5 - parent: 44970 - - uid: 45540 + pos: 2.5,14.5 + parent: 45355 + - uid: 45642 components: - type: Transform - pos: 14.5,-5.5 - parent: 44970 - - uid: 45541 + pos: 0.5,13.5 + parent: 45355 + - uid: 45643 components: - type: Transform - pos: 14.5,-6.5 - parent: 44970 - - uid: 45542 + pos: 1.5,13.5 + parent: 45355 +- proto: FloorDrain + entities: + - uid: 18682 components: - type: Transform - pos: 15.5,-5.5 - parent: 44970 - - uid: 45543 + rot: 1.5707963267948966 rad + pos: -104.5,32.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18683 components: - type: Transform - pos: 15.5,-6.5 - parent: 44970 - - uid: 45544 + rot: 1.5707963267948966 rad + pos: -104.5,30.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18684 components: - type: Transform - pos: 14.5,-4.5 - parent: 44970 - - uid: 45545 + rot: 1.5707963267948966 rad + pos: -104.5,28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18685 components: - type: Transform - pos: 15.5,-4.5 - parent: 44970 - - uid: 45546 + pos: 66.5,4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18686 components: - type: Transform - pos: 16.5,-5.5 - parent: 44970 - - uid: 45547 + pos: 42.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18687 components: - type: Transform - pos: 16.5,-4.5 - parent: 44970 - - uid: 45548 + pos: 32.5,37.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18688 components: - type: Transform - pos: 16.5,-3.5 - parent: 44970 - - uid: 45549 + pos: 47.5,27.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18689 components: - type: Transform - pos: 16.5,-2.5 - parent: 44970 - - uid: 45550 + pos: 23.5,42.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18690 components: - type: Transform - pos: 14.5,-7.5 - parent: 44970 - - uid: 45551 + pos: 21.5,42.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18691 components: - type: Transform - pos: 16.5,-6.5 - parent: 44970 - - uid: 45552 + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18692 components: - type: Transform - pos: 16.5,-7.5 - parent: 44970 - - uid: 45553 + rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18693 components: - type: Transform - pos: 15.5,-7.5 - parent: 44970 - - uid: 45554 + rot: -1.5707963267948966 rad + pos: 20.5,21.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18694 components: - type: Transform - pos: 16.5,-8.5 - parent: 44970 - - uid: 45555 + pos: -16.5,43.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18695 components: - type: Transform - pos: 15.5,-8.5 - parent: 44970 - - uid: 45556 + pos: 2.5,32.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18696 components: - type: Transform - pos: 0.5,-11.5 - parent: 44970 - - uid: 45557 + rot: 1.5707963267948966 rad + pos: 82.5,-33.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18697 components: - type: Transform - pos: 1.5,-11.5 - parent: 44970 - - uid: 45558 + rot: 1.5707963267948966 rad + pos: -10.5,41.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18698 components: - type: Transform - pos: 0.5,-12.5 - parent: 44970 - - uid: 45559 + pos: -101.5,27.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 18699 components: - type: Transform - pos: -0.5,-12.5 - parent: 44970 - - uid: 45560 + rot: 3.141592653589793 rad + pos: 12.5,-49.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 42019 components: - type: Transform - pos: -0.5,-11.5 - parent: 44970 - - uid: 45561 + rot: 1.5707963267948966 rad + pos: 57.5,61.5 + parent: 40599 + - type: Fixtures + fixtures: {} + - uid: 42020 components: - type: Transform - pos: -1.5,-12.5 - parent: 44970 - - uid: 45562 + rot: -1.5707963267948966 rad + pos: 60.5,81.5 + parent: 40599 + - type: Fixtures + fixtures: {} +- proto: FloorLavaEntity + entities: + - uid: 18700 components: - type: Transform - pos: -0.5,-13.5 - parent: 44970 - - uid: 45563 + rot: 1.5707963267948966 rad + pos: -6.5,-49.5 + parent: 2 + - uid: 18701 components: - type: Transform - pos: -1.5,-13.5 - parent: 44970 - - uid: 45564 + rot: 3.141592653589793 rad + pos: -6.5,-41.5 + parent: 2 + - uid: 18702 components: - type: Transform - pos: -1.5,-13.5 - parent: 44970 - - uid: 45565 + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 2 + - uid: 18703 components: - type: Transform - pos: 0.5,-13.5 - parent: 44970 - - uid: 45566 + rot: 3.141592653589793 rad + pos: -6.5,-50.5 + parent: 2 + - uid: 18704 components: - type: Transform - pos: 1.5,-12.5 - parent: 44970 - - uid: 45567 + pos: -45.5,50.5 + parent: 2 + - uid: 18705 components: - type: Transform - pos: 1.5,-13.5 - parent: 44970 - - uid: 45568 + pos: -45.5,49.5 + parent: 2 + - uid: 18706 components: - type: Transform - pos: 2.5,-11.5 - parent: 44970 - - uid: 45569 + pos: -47.5,48.5 + parent: 2 + - uid: 18707 components: - type: Transform - pos: 6.5,-11.5 - parent: 44970 - - uid: 45570 + pos: -49.5,50.5 + parent: 2 +- proto: FloorLiquidPlasmaEntity + entities: + - uid: 18708 components: - type: Transform - pos: 5.5,-11.5 - parent: 44970 - - uid: 45571 + pos: -73.5,20.5 + parent: 2 + - uid: 18709 components: - type: Transform - pos: 7.5,-11.5 - parent: 44970 - - uid: 45572 + pos: -74.5,20.5 + parent: 2 + - uid: 18710 components: - type: Transform - pos: 7.5,-12.5 - parent: 44970 - - uid: 45573 + pos: 55.5,24.5 + parent: 2 + - uid: 18711 components: - type: Transform - pos: 6.5,-12.5 - parent: 44970 - - uid: 45574 + pos: 66.5,34.5 + parent: 2 + - uid: 18712 components: - type: Transform - pos: 5.5,-12.5 - parent: 44970 - - uid: 45575 + pos: 56.5,25.5 + parent: 2 + - uid: 18713 components: - type: Transform - pos: 6.5,-13.5 - parent: 44970 - - uid: 45576 + pos: 66.5,33.5 + parent: 2 + - uid: 18714 components: - type: Transform - pos: 7.5,-13.5 - parent: 44970 - - uid: 45577 + pos: -60.5,-24.5 + parent: 2 + - uid: 18715 components: - type: Transform - pos: 8.5,-13.5 - parent: 44970 - - uid: 45578 + pos: 55.5,26.5 + parent: 2 + - uid: 18716 components: - type: Transform - pos: 8.5,-12.5 - parent: 44970 - - uid: 45579 + pos: 67.5,33.5 + parent: 2 + - uid: 18717 components: - type: Transform - pos: 9.5,-13.5 - parent: 44970 - - uid: 45580 + pos: 55.5,27.5 + parent: 2 + - uid: 18718 components: - type: Transform - pos: 8.5,-11.5 - parent: 44970 - - uid: 45581 + pos: 66.5,35.5 + parent: 2 + - uid: 18719 components: - type: Transform - pos: 9.5,-12.5 - parent: 44970 - - uid: 45582 + pos: -62.5,-24.5 + parent: 2 + - uid: 18720 components: - type: Transform - pos: 10.5,-13.5 - parent: 44970 - - uid: 45583 + pos: 65.5,34.5 + parent: 2 + - uid: 18721 components: - type: Transform - pos: 17.5,-4.5 - parent: 44970 - - uid: 45584 + pos: 54.5,24.5 + parent: 2 + - uid: 18722 components: - type: Transform - pos: 17.5,-5.5 - parent: 44970 - - uid: 45585 + rot: 3.141592653589793 rad + pos: -30.5,-48.5 + parent: 2 + - uid: 18723 components: - type: Transform - pos: 17.5,-6.5 - parent: 44970 - - uid: 45586 + rot: 3.141592653589793 rad + pos: -29.5,-48.5 + parent: 2 + - uid: 18724 components: - type: Transform - pos: 17.5,-7.5 - parent: 44970 - - uid: 45587 + rot: 3.141592653589793 rad + pos: -29.5,-49.5 + parent: 2 + - uid: 18725 components: - type: Transform - pos: 10.5,-7.5 - parent: 44970 - - uid: 45588 + rot: 3.141592653589793 rad + pos: -28.5,-48.5 + parent: 2 + - uid: 18726 components: - type: Transform - pos: 10.5,-10.5 - parent: 44970 - - uid: 45589 + rot: 3.141592653589793 rad + pos: -28.5,-49.5 + parent: 2 + - uid: 18727 components: - type: Transform - pos: 10.5,-9.5 - parent: 44970 - - uid: 45590 + pos: -88.5,40.5 + parent: 2 + - uid: 18728 components: - type: Transform - pos: 11.5,-10.5 - parent: 44970 - - uid: 45591 + pos: -52.5,22.5 + parent: 2 + - uid: 18729 components: - type: Transform - pos: 11.5,-9.5 - parent: 44970 - - uid: 45592 + pos: -69.5,27.5 + parent: 2 + - uid: 18730 components: - type: Transform - pos: 12.5,-10.5 - parent: 44970 - - uid: 45593 + pos: -54.5,23.5 + parent: 2 + - uid: 18731 components: - type: Transform - pos: 12.5,-9.5 - parent: 44970 - - uid: 45594 + pos: -71.5,27.5 + parent: 2 + - uid: 18732 components: - type: Transform - pos: 11.5,-8.5 - parent: 44970 - - uid: 45595 + pos: -76.5,27.5 + parent: 2 + - uid: 18733 components: - type: Transform - pos: 7.5,-14.5 - parent: 44970 - - uid: 45596 + pos: -70.5,27.5 + parent: 2 + - uid: 18734 components: - type: Transform - pos: -4.5,19.5 - parent: 44970 - - uid: 45597 + pos: -70.5,26.5 + parent: 2 + - uid: 18735 components: - type: Transform - pos: -4.5,20.5 - parent: 44970 - - uid: 45598 + pos: -71.5,26.5 + parent: 2 + - uid: 18736 components: - type: Transform - pos: -4.5,21.5 - parent: 44970 - - uid: 45599 + pos: -70.5,25.5 + parent: 2 + - uid: 18737 components: - type: Transform - pos: -4.5,22.5 - parent: 44970 - - uid: 45600 + pos: -69.5,26.5 + parent: 2 + - uid: 18738 components: - type: Transform - pos: -3.5,22.5 - parent: 44970 - - uid: 45601 + pos: -69.5,25.5 + parent: 2 + - uid: 18739 components: - type: Transform - pos: -3.5,21.5 - parent: 44970 - - uid: 45602 + pos: -68.5,25.5 + parent: 2 + - uid: 18740 components: - type: Transform - pos: -3.5,20.5 - parent: 44970 - - uid: 45603 + pos: -75.5,27.5 + parent: 2 + - uid: 18741 components: - type: Transform - pos: -2.5,22.5 - parent: 44970 - - uid: 45604 + pos: -74.5,27.5 + parent: 2 + - uid: 18742 components: - type: Transform - pos: -2.5,21.5 - parent: 44970 - - uid: 45605 + pos: -74.5,26.5 + parent: 2 + - uid: 18743 components: - type: Transform - pos: -2.5,20.5 - parent: 44970 - - uid: 45606 + pos: -75.5,26.5 + parent: 2 + - uid: 18744 components: - type: Transform - pos: -1.5,22.5 - parent: 44970 - - uid: 45607 + pos: -70.5,28.5 + parent: 2 + - uid: 18745 components: - type: Transform - pos: -1.5,21.5 - parent: 44970 - - uid: 45608 + pos: -71.5,25.5 + parent: 2 + - uid: 18746 components: - type: Transform - pos: -1.5,20.5 - parent: 44970 - - uid: 45609 + pos: -70.5,24.5 + parent: 2 + - uid: 18747 components: - type: Transform - pos: -0.5,22.5 - parent: 44970 - - uid: 45610 + pos: -73.5,25.5 + parent: 2 + - uid: 18748 components: - type: Transform - pos: -0.5,21.5 - parent: 44970 - - uid: 45611 + pos: -73.5,26.5 + parent: 2 + - uid: 18749 components: - type: Transform - pos: -0.5,20.5 - parent: 44970 - - uid: 45612 + pos: -74.5,25.5 + parent: 2 + - uid: 18750 components: - type: Transform - pos: 0.5,22.5 - parent: 44970 - - uid: 45613 + pos: -72.5,25.5 + parent: 2 + - uid: 18751 components: - type: Transform - pos: 0.5,21.5 - parent: 44970 - - uid: 45614 + pos: -72.5,24.5 + parent: 2 + - uid: 18752 components: - type: Transform - pos: 0.5,20.5 - parent: 44970 - - uid: 45615 + pos: -71.5,24.5 + parent: 2 + - uid: 18753 components: - type: Transform - pos: 1.5,22.5 - parent: 44970 - - uid: 45616 + pos: -71.5,23.5 + parent: 2 + - uid: 18754 components: - type: Transform - pos: 1.5,21.5 - parent: 44970 - - uid: 45617 + pos: -70.5,23.5 + parent: 2 + - uid: 18755 components: - type: Transform - pos: 1.5,20.5 - parent: 44970 - - uid: 45618 + pos: -69.5,23.5 + parent: 2 + - uid: 18756 components: - type: Transform - pos: 2.5,22.5 - parent: 44970 - - uid: 45619 + pos: -69.5,24.5 + parent: 2 + - uid: 18757 components: - type: Transform - pos: 2.5,21.5 - parent: 44970 - - uid: 45620 + pos: -68.5,24.5 + parent: 2 + - uid: 18758 components: - type: Transform - pos: 2.5,20.5 - parent: 44970 - - uid: 45621 + pos: -68.5,23.5 + parent: 2 + - uid: 18759 components: - type: Transform - pos: 2.5,19.5 - parent: 44970 - - uid: 45622 + rot: 3.141592653589793 rad + pos: -71.5,22.5 + parent: 2 + - uid: 18760 components: - type: Transform - pos: 3.5,18.5 - parent: 44970 - - uid: 45623 + rot: 3.141592653589793 rad + pos: -72.5,22.5 + parent: 2 + - uid: 18761 components: - type: Transform - pos: 3.5,19.5 - parent: 44970 - - uid: 45624 + rot: 3.141592653589793 rad + pos: -73.5,22.5 + parent: 2 + - uid: 18762 components: - type: Transform - pos: 3.5,19.5 - parent: 44970 - - uid: 45625 + pos: -74.5,21.5 + parent: 2 + - uid: 18763 components: - type: Transform - pos: 3.5,20.5 - parent: 44970 - - uid: 45626 + rot: 3.141592653589793 rad + pos: -74.5,22.5 + parent: 2 + - uid: 18764 components: - type: Transform - pos: -5.5,20.5 - parent: 44970 - - uid: 45627 + pos: -73.5,21.5 + parent: 2 + - uid: 18765 components: - type: Transform - pos: -5.5,19.5 - parent: 44970 - - uid: 45628 + pos: -87.5,40.5 + parent: 2 + - uid: 18766 components: - type: Transform - pos: -2.5,23.5 - parent: 44970 - - uid: 45629 + pos: 42.5,37.5 + parent: 2 + - uid: 18767 components: - type: Transform - pos: -1.5,24.5 - parent: 44970 - - uid: 45630 + pos: 43.5,37.5 + parent: 2 + - uid: 18768 components: - type: Transform - pos: -2.5,24.5 - parent: 44970 - - uid: 45631 + pos: 43.5,38.5 + parent: 2 + - uid: 18769 components: - type: Transform - pos: -0.5,24.5 - parent: 44970 - - uid: 45632 + pos: 49.5,38.5 + parent: 2 + - uid: 18770 components: - type: Transform - pos: 1.5,24.5 - parent: 44970 - - uid: 45633 + pos: 49.5,37.5 + parent: 2 + - uid: 18771 components: - type: Transform - pos: 0.5,24.5 - parent: 44970 - - uid: 45634 + pos: 48.5,37.5 + parent: 2 + - uid: 18772 components: - type: Transform - pos: 0.5,23.5 - parent: 44970 - - uid: 45635 + pos: 50.5,38.5 + parent: 2 + - uid: 18773 components: - type: Transform - pos: -0.5,23.5 - parent: 44970 - - uid: 45636 + pos: 50.5,39.5 + parent: 2 + - uid: 18774 components: - type: Transform - pos: -1.5,23.5 - parent: 44970 - - uid: 45637 + pos: 51.5,39.5 + parent: 2 + - uid: 18775 components: - type: Transform - pos: 1.5,23.5 - parent: 44970 - - uid: 45638 + pos: 42.5,36.5 + parent: 2 + - uid: 18776 components: - type: Transform - pos: -3.5,23.5 - parent: 44970 - - uid: 45639 + pos: 41.5,36.5 + parent: 2 + - uid: 18777 components: - type: Transform - pos: -10.5,10.5 - parent: 44970 - - uid: 45640 + pos: -60.5,23.5 + parent: 2 + - uid: 18778 components: - type: Transform - pos: -5.5,-9.5 - parent: 44970 - - uid: 45641 + pos: -58.5,23.5 + parent: 2 + - uid: 18779 components: - type: Transform - pos: -6.5,-9.5 - parent: 44970 - - uid: 45642 + pos: -59.5,23.5 + parent: 2 + - uid: 18780 components: - type: Transform - pos: -7.5,-9.5 - parent: 44970 - - uid: 45643 + pos: -58.5,22.5 + parent: 2 + - uid: 18781 components: - type: Transform - pos: -7.5,-8.5 - parent: 44970 - - uid: 45644 + pos: -57.5,23.5 + parent: 2 + - uid: 18782 components: - type: Transform - pos: -5.5,-10.5 - parent: 44970 - - uid: 45645 + pos: -57.5,24.5 + parent: 2 + - uid: 18783 components: - type: Transform - pos: -4.5,-10.5 - parent: 44970 - - uid: 45646 + pos: -58.5,24.5 + parent: 2 + - uid: 18784 components: - type: Transform - pos: -3.5,-10.5 - parent: 44970 - - uid: 45647 + pos: -59.5,24.5 + parent: 2 + - uid: 18785 components: - type: Transform - pos: -9.5,12.5 - parent: 44970 - - uid: 45648 + pos: -60.5,24.5 + parent: 2 + - uid: 18786 components: - type: Transform - pos: -8.5,13.5 - parent: 44970 - - uid: 45649 + pos: -57.5,25.5 + parent: 2 + - uid: 18787 components: - type: Transform - pos: -7.5,4.5 - parent: 44970 - - uid: 45650 + pos: -56.5,25.5 + parent: 2 + - uid: 18788 components: - type: Transform - pos: -8.5,3.5 - parent: 44970 - - uid: 45651 + pos: -56.5,24.5 + parent: 2 + - uid: 18789 components: - type: Transform - pos: -8.5,3.5 - parent: 44970 - - uid: 45652 + pos: -56.5,23.5 + parent: 2 + - uid: 18790 components: - type: Transform - pos: -9.5,2.5 - parent: 44970 - - uid: 45653 + pos: -57.5,22.5 + parent: 2 + - uid: 18791 components: - type: Transform - pos: -10.5,-0.5 - parent: 44970 - - uid: 45654 + pos: -59.5,22.5 + parent: 2 + - uid: 18792 components: - type: Transform - pos: -10.5,-1.5 - parent: 44970 -- proto: FloorSnowChasm - entities: - - uid: 18583 + pos: -58.5,21.5 + parent: 2 + - uid: 18793 components: - type: Transform - pos: -120.5,-2.5 + pos: -57.5,21.5 parent: 2 - - uid: 18584 + - uid: 18794 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-2.5 + pos: -59.5,21.5 parent: 2 - - uid: 18585 + - uid: 18795 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-1.5 + pos: -59.5,22.5 parent: 2 - - uid: 18586 + - uid: 18796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 + pos: -55.5,23.5 parent: 2 - - uid: 18587 + - uid: 18797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 + pos: -55.5,22.5 parent: 2 - - uid: 18588 + - uid: 18798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + pos: -56.5,22.5 parent: 2 - - uid: 18589 + - uid: 18799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 + pos: -55.5,24.5 parent: 2 - - uid: 18590 + - uid: 18800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-9.5 + pos: -55.5,25.5 parent: 2 - - uid: 18591 + - uid: 18801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 + pos: -67.5,24.5 parent: 2 - - uid: 18592 + - uid: 18802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 + pos: -67.5,25.5 parent: 2 - - uid: 18593 + - uid: 18803 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-10.5 + pos: -68.5,26.5 parent: 2 - - uid: 18594 + - uid: 18804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-7.5 + pos: -67.5,26.5 parent: 2 - - uid: 18595 + - uid: 18805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-6.5 + pos: -70.5,29.5 parent: 2 - - uid: 18596 + - uid: 18806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-8.5 + pos: -71.5,28.5 parent: 2 - - uid: 18597 + - uid: 18807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-7.5 + pos: -71.5,29.5 parent: 2 - - uid: 18598 + - uid: 18808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-9.5 + pos: -69.5,29.5 parent: 2 - - uid: 18599 + - uid: 18809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + pos: -71.5,28.5 parent: 2 - - uid: 18600 + - uid: 18810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 + pos: -72.5,28.5 parent: 2 - - uid: 18601 + - uid: 18811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-6.5 + pos: -72.5,27.5 parent: 2 - - uid: 18602 + - uid: 18812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-6.5 + pos: -72.5,26.5 parent: 2 - - uid: 18603 + - uid: 18813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 + pos: -73.5,27.5 parent: 2 - - uid: 18604 + - uid: 18814 components: - type: Transform - pos: 79.5,-32.5 + pos: -74.5,28.5 parent: 2 - - uid: 18605 + - uid: 18815 components: - type: Transform - pos: 79.5,-33.5 + pos: -73.5,28.5 parent: 2 - - uid: 18606 + - uid: 18816 components: - type: Transform - pos: 78.5,-33.5 + pos: -72.5,23.5 parent: 2 - - uid: 18607 + - uid: 18817 components: - type: Transform - pos: 77.5,-32.5 + pos: -71.5,21.5 parent: 2 - - uid: 18608 + - uid: 18818 components: - type: Transform - pos: 78.5,-30.5 + pos: -72.5,21.5 parent: 2 - - uid: 18609 + - uid: 18819 components: - type: Transform - pos: 79.5,-34.5 + pos: -75.5,21.5 parent: 2 - - uid: 18610 + - uid: 18820 components: - type: Transform - pos: 79.5,-31.5 + pos: -51.5,22.5 parent: 2 - - uid: 18611 + - uid: 18821 components: - type: Transform - pos: 77.5,-30.5 + pos: -50.5,22.5 parent: 2 - - uid: 18612 + - uid: 18822 components: - type: Transform - pos: 78.5,-34.5 + pos: -50.5,21.5 parent: 2 - - uid: 18613 + - uid: 18823 components: - type: Transform - pos: 78.5,-32.5 + pos: -49.5,21.5 parent: 2 - - uid: 18614 + - uid: 18824 components: - type: Transform - pos: 78.5,-31.5 + pos: -47.5,21.5 parent: 2 - - uid: 18615 + - uid: 18825 components: - type: Transform - pos: 77.5,-31.5 + pos: -47.5,20.5 parent: 2 - - uid: 18616 + - uid: 18826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-1.5 + pos: -88.5,41.5 parent: 2 - - uid: 18617 + - uid: 18827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-3.5 + pos: -87.5,42.5 parent: 2 - - uid: 18618 + - uid: 18828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-0.5 + pos: -89.5,42.5 parent: 2 - - uid: 18619 + - uid: 18829 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-1.5 + pos: -88.5,42.5 parent: 2 - - uid: 18620 + - uid: 18830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-1.5 + pos: -89.5,43.5 parent: 2 - - uid: 18621 + - uid: 18831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-2.5 + pos: -88.5,44.5 parent: 2 - - uid: 18622 + - uid: 18832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-1.5 + pos: -89.5,44.5 parent: 2 - - uid: 18623 + - uid: 18833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-0.5 + pos: -90.5,44.5 parent: 2 - - uid: 18624 + - uid: 18834 components: - type: Transform - pos: -115.5,-2.5 + pos: -90.5,45.5 parent: 2 - - uid: 18625 + - uid: 18835 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-2.5 + pos: -89.5,45.5 parent: 2 - - uid: 18626 + - uid: 18836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-2.5 + pos: -89.5,46.5 parent: 2 - - uid: 18627 + - uid: 18837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,-2.5 + pos: -90.5,46.5 parent: 2 - - uid: 18628 + - uid: 18838 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,-1.5 + pos: -89.5,47.5 parent: 2 - - uid: 18629 + - uid: 18839 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,-0.5 + pos: -88.5,47.5 parent: 2 - - uid: 18630 + - uid: 18840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-2.5 + pos: -87.5,41.5 parent: 2 - - uid: 18631 + - uid: 18841 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-1.5 + pos: -83.5,42.5 parent: 2 - - uid: 18632 + - uid: 18842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-0.5 + pos: -82.5,42.5 parent: 2 - - uid: 18633 + - uid: 18843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,-2.5 + pos: -82.5,43.5 parent: 2 - - uid: 18634 + - uid: 18844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,-1.5 + pos: -82.5,44.5 parent: 2 - - uid: 18635 + - uid: 18845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,-0.5 + pos: -81.5,44.5 parent: 2 - - uid: 18636 + - uid: 18846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-2.5 + pos: -81.5,45.5 parent: 2 - - uid: 18637 + - uid: 18847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-1.5 + pos: -80.5,45.5 parent: 2 - - uid: 18638 + - uid: 18848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-0.5 + pos: -81.5,46.5 parent: 2 - - uid: 18639 + - uid: 18849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-0.5 + pos: -81.5,47.5 parent: 2 - - uid: 18640 + - uid: 18850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-0.5 + pos: -81.5,48.5 parent: 2 - - uid: 18641 + - uid: 18851 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-1.5 + pos: -82.5,48.5 parent: 2 - - uid: 18642 + - uid: 18852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-2.5 + pos: 67.5,35.5 parent: 2 - - uid: 18643 + - uid: 18853 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-0.5 + pos: 56.5,24.5 parent: 2 - - uid: 18644 + - uid: 18854 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-1.5 + pos: -63.5,-24.5 parent: 2 - - uid: 18645 + - uid: 18855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-2.5 + pos: 56.5,26.5 parent: 2 - - uid: 18646 + - uid: 18856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-0.5 + pos: -64.5,-24.5 parent: 2 - - uid: 18647 + - uid: 18857 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-1.5 + pos: -61.5,-24.5 parent: 2 - - uid: 18648 + - uid: 18858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-2.5 + pos: 54.5,28.5 parent: 2 - - uid: 18649 + - uid: 18859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,-0.5 + pos: 65.5,35.5 parent: 2 - - uid: 18650 + - uid: 18860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,-1.5 + pos: -61.5,-23.5 parent: 2 - - uid: 18651 + - uid: 18861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,-2.5 + pos: -60.5,-23.5 parent: 2 - - uid: 18652 + - uid: 18862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-0.5 + pos: -66.5,-25.5 parent: 2 - - uid: 18653 + - uid: 18863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-1.5 + pos: -67.5,-24.5 parent: 2 - - uid: 18654 + - uid: 18864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-2.5 + pos: -67.5,-25.5 parent: 2 - - uid: 18655 + - uid: 18865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-1.5 + pos: -65.5,-24.5 parent: 2 - - uid: 18656 + - uid: 18866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-2.5 + pos: -66.5,-23.5 parent: 2 - - uid: 18657 + - uid: 18867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-3.5 + pos: -66.5,-24.5 parent: 2 - - uid: 18658 + - uid: 18868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-3.5 + pos: -65.5,-25.5 parent: 2 - - uid: 18659 + - uid: 18869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,-3.5 + pos: 56.5,24.5 parent: 2 - - uid: 18660 + - uid: 18870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 + pos: 54.5,27.5 parent: 2 - - uid: 18661 + - uid: 18871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-2.5 + pos: 56.5,27.5 parent: 2 - - uid: 18662 + - uid: 18872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-1.5 + pos: 57.5,27.5 parent: 2 - - uid: 18663 + - uid: 18873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-2.5 + pos: 64.5,35.5 parent: 2 - - uid: 18664 + - uid: 18874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-3.5 + pos: 55.5,23.5 parent: 2 - - uid: 18665 + - uid: 18875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-3.5 + pos: -80.5,44.5 parent: 2 - - uid: 18666 + - uid: 18876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-3.5 + pos: -81.5,43.5 parent: 2 - - uid: 18667 + - uid: 18877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-0.5 + pos: 68.5,33.5 parent: 2 - - uid: 18668 + - uid: 18878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-1.5 + pos: 67.5,34.5 parent: 2 - - uid: 18669 + - uid: 18879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-2.5 + pos: 68.5,34.5 parent: 2 - - uid: 18670 + - uid: 18880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-0.5 + pos: 68.5,35.5 parent: 2 - - uid: 18671 + - uid: 18881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-1.5 + pos: 67.5,36.5 parent: 2 - - uid: 18672 + - uid: 18882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-2.5 + pos: 66.5,36.5 parent: 2 - - uid: 18673 + - uid: 18883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-4.5 + pos: 65.5,36.5 parent: 2 - - uid: 18674 + - uid: 18884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-4.5 + pos: 55.5,25.5 parent: 2 - - uid: 18675 + - uid: 18885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-4.5 + pos: 54.5,25.5 parent: 2 - - uid: 18676 + - uid: 18886 components: - type: Transform - pos: -115.5,-4.5 + pos: 54.5,26.5 parent: 2 - - uid: 18677 + - uid: 18887 components: - type: Transform - pos: -114.5,-5.5 + pos: -112.5,-7.5 parent: 2 - - uid: 18678 + - uid: 18888 components: - type: Transform - pos: -113.5,-6.5 + pos: -112.5,-1.5 parent: 2 - - uid: 18679 + - uid: 18889 components: - type: Transform - pos: -113.5,-7.5 + pos: -110.5,-0.5 parent: 2 - - uid: 18680 + - uid: 18890 components: - type: Transform - pos: -113.5,-7.5 + pos: -112.5,-2.5 parent: 2 - - uid: 18681 + - uid: 18891 + components: + - type: Transform + pos: -112.5,-5.5 + parent: 2 + - uid: 18892 components: - type: Transform pos: -116.5,-3.5 parent: 2 - - uid: 18682 + - uid: 18893 components: - type: Transform - pos: -116.5,-4.5 + pos: -111.5,-1.5 parent: 2 - - uid: 18683 + - uid: 18894 components: - type: Transform - pos: -116.5,-5.5 + pos: -115.5,-5.5 parent: 2 - - uid: 18684 + - uid: 18895 components: - type: Transform - pos: -115.5,-3.5 + pos: -112.5,-6.5 parent: 2 - - uid: 18685 + - uid: 18896 components: - type: Transform - pos: -115.5,-4.5 + pos: -112.5,-6.5 parent: 2 - - uid: 18686 + - uid: 18897 components: - type: Transform - pos: -115.5,-5.5 + pos: -114.5,-5.5 parent: 2 - - uid: 18687 + - uid: 18898 components: - type: Transform - pos: -114.5,-3.5 + pos: -116.5,-4.5 parent: 2 - - uid: 18688 + - uid: 18899 components: - type: Transform - pos: -114.5,-4.5 + pos: -111.5,-0.5 parent: 2 - - uid: 18689 + - uid: 18900 components: - type: Transform - pos: -114.5,-5.5 + pos: -109.5,-2.5 parent: 2 - - uid: 18690 + - uid: 18901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-3.5 + pos: -108.5,-2.5 parent: 2 - - uid: 18691 + - uid: 18902 components: - type: Transform - pos: -112.5,-5.5 + pos: -109.5,-0.5 parent: 2 - - uid: 18692 + - uid: 18903 components: - type: Transform - pos: -112.5,-6.5 + pos: -109.5,-1.5 parent: 2 - - uid: 18693 + - uid: 18904 components: - type: Transform - pos: -112.5,-7.5 + pos: -107.5,-0.5 parent: 2 - - uid: 18694 + - uid: 18905 components: - type: Transform - pos: -112.5,-8.5 + pos: -108.5,-0.5 parent: 2 - - uid: 18695 + - uid: 18906 components: - type: Transform - pos: -113.5,-6.5 + pos: -107.5,-2.5 parent: 2 - - uid: 18696 + - uid: 18907 components: - type: Transform - pos: -113.5,-7.5 + pos: -108.5,-1.5 parent: 2 - - uid: 18697 + - uid: 18908 components: - type: Transform - pos: -113.5,-8.5 + pos: -107.5,-0.5 parent: 2 - - uid: 18698 + - uid: 18909 components: - type: Transform - pos: -112.5,-4.5 + pos: -107.5,-1.5 parent: 2 - - uid: 18699 + - uid: 18910 components: - type: Transform - pos: -112.5,-4.5 + pos: -107.5,-1.5 parent: 2 - - uid: 18700 + - uid: 18911 components: - type: Transform - pos: -114.5,-6.5 + pos: -107.5,-2.5 parent: 2 - - uid: 18701 + - uid: 18912 components: - type: Transform - pos: -113.5,-6.5 + pos: -94.5,-5.5 parent: 2 - - uid: 18702 + - uid: 18913 components: - type: Transform - pos: -114.5,-6.5 + pos: -112.5,-3.5 parent: 2 - - uid: 18703 + - uid: 18914 components: - type: Transform - pos: -115.5,-5.5 + pos: -94.5,-3.5 parent: 2 - - uid: 18704 + - uid: 18915 components: - type: Transform - pos: -116.5,-5.5 + pos: -94.5,-4.5 parent: 2 - - uid: 18705 + - uid: 18916 components: - type: Transform - pos: -117.5,-4.5 + pos: -95.5,-3.5 parent: 2 - - uid: 18706 + - uid: 18917 components: - type: Transform - pos: -117.5,-4.5 + pos: -97.5,-3.5 parent: 2 - - uid: 18707 + - uid: 18918 components: - type: Transform - pos: -116.5,-5.5 + pos: -95.5,-4.5 parent: 2 - - uid: 18708 + - uid: 18919 components: - type: Transform - pos: -115.5,-6.5 + pos: -97.5,-4.5 parent: 2 - - uid: 18709 + - uid: 18920 components: - type: Transform - pos: -114.5,-7.5 + pos: -95.5,-3.5 parent: 2 - - uid: 18710 + - uid: 18921 components: - type: Transform - pos: -113.5,-7.5 + pos: -96.5,-3.5 parent: 2 - - uid: 18711 + - uid: 18922 components: - type: Transform - pos: -113.5,-8.5 + pos: -96.5,-4.5 parent: 2 - - uid: 18712 + - uid: 18923 components: - type: Transform - pos: -97.5,-2.5 + pos: -113.5,-6.5 parent: 2 - - uid: 18713 + - uid: 18924 components: - type: Transform - pos: -96.5,-3.5 + pos: -112.5,-7.5 parent: 2 - - uid: 18714 + - uid: 18925 components: - type: Transform - pos: -96.5,-4.5 + pos: -114.5,-5.5 parent: 2 - - uid: 18715 + - uid: 18926 components: - type: Transform - pos: -95.5,-4.5 + pos: -112.5,-6.5 parent: 2 - - uid: 18716 + - uid: 18927 components: - type: Transform - pos: -95.5,-4.5 + pos: -113.5,-6.5 parent: 2 - - uid: 18717 + - uid: 18928 components: - type: Transform - pos: -96.5,-4.5 + pos: -113.5,-5.5 parent: 2 - - uid: 18718 + - uid: 18929 components: - type: Transform - pos: -96.5,-3.5 + pos: -114.5,-6.5 parent: 2 - - uid: 18719 + - uid: 18930 components: - type: Transform - pos: -97.5,-3.5 + pos: -114.5,-6.5 parent: 2 - - uid: 18720 + - uid: 18931 components: - type: Transform - pos: -97.5,-2.5 + pos: -113.5,-5.5 parent: 2 - - uid: 18721 + - uid: 18932 components: - type: Transform - pos: -97.5,-4.5 + pos: -115.5,-4.5 parent: 2 - - uid: 18722 + - uid: 18933 components: - type: Transform - pos: -97.5,-4.5 + pos: -114.5,-4.5 parent: 2 - - uid: 18723 + - uid: 18934 components: - type: Transform - pos: -96.5,-3.5 + pos: -116.5,-4.5 parent: 2 - - uid: 18724 + - uid: 18935 components: - type: Transform - pos: -96.5,-2.5 + pos: -116.5,-5.5 parent: 2 - - uid: 18725 + - uid: 18936 components: - type: Transform - pos: -97.5,-2.5 + pos: -116.5,-5.5 parent: 2 - - uid: 18726 + - uid: 18937 components: - type: Transform - pos: -97.5,-1.5 + pos: -113.5,-1.5 parent: 2 - - uid: 18727 + - uid: 18938 components: - type: Transform - pos: -98.5,-0.5 + pos: -112.5,-5.5 parent: 2 - - uid: 18728 + - uid: 18939 components: - type: Transform - pos: -98.5,-0.5 + pos: -116.5,-4.5 parent: 2 - - uid: 18729 + - uid: 18940 components: - type: Transform - pos: -97.5,-1.5 + pos: -112.5,-4.5 parent: 2 - - uid: 18730 + - uid: 18941 components: - type: Transform - pos: -96.5,-2.5 + pos: -95.5,-2.5 parent: 2 - - uid: 18731 + - uid: 18942 components: - type: Transform - pos: -96.5,-3.5 + pos: -96.5,-2.5 parent: 2 - - uid: 18732 + - uid: 18943 components: - type: Transform - pos: -95.5,-4.5 + pos: -96.5,-3.5 parent: 2 - - uid: 18733 + - uid: 18944 components: - type: Transform - pos: -94.5,-4.5 + pos: -98.5,-1.5 parent: 2 - - uid: 18734 + - uid: 18945 components: - type: Transform - pos: -94.5,-4.5 + pos: -96.5,-2.5 parent: 2 - - uid: 18735 + - uid: 18946 components: - type: Transform - pos: -94.5,-5.5 + pos: -97.5,-2.5 parent: 2 - - uid: 18736 + - uid: 18947 components: - type: Transform - pos: -94.5,-4.5 + pos: -112.5,-6.5 parent: 2 - - uid: 18737 + - uid: 18948 components: - type: Transform - pos: -95.5,-3.5 + pos: -112.5,-4.5 parent: 2 - - uid: 18738 + - uid: 18949 components: - type: Transform - pos: -95.5,-2.5 + pos: -114.5,-4.5 parent: 2 - - uid: 18739 + - uid: 18950 components: - type: Transform - pos: -96.5,-2.5 + pos: -113.5,-2.5 parent: 2 - - uid: 18740 + - uid: 18951 components: - type: Transform - pos: -96.5,-1.5 + pos: -120.5,-1.5 parent: 2 - - uid: 18741 + - uid: 18952 components: - type: Transform - pos: -96.5,-1.5 + pos: -113.5,-5.5 parent: 2 - - uid: 18742 + - uid: 18953 components: - type: Transform - pos: -97.5,-0.5 + pos: -113.5,-4.5 parent: 2 - - uid: 18743 + - uid: 18954 components: - type: Transform - pos: -97.5,-0.5 + pos: -119.5,-0.5 parent: 2 - - uid: 18744 + - uid: 18955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-2.5 + pos: -115.5,-4.5 parent: 2 - - uid: 18745 + - uid: 18956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-0.5 + pos: -114.5,-4.5 parent: 2 - - uid: 18746 + - uid: 18957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-1.5 + pos: -115.5,-4.5 parent: 2 - - uid: 18747 + - uid: 18958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-1.5 + pos: -112.5,-4.5 parent: 2 - - uid: 18748 + - uid: 18959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-0.5 + pos: -123.5,-0.5 parent: 2 - - uid: 18749 + - uid: 18960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-2.5 + pos: -119.5,-1.5 parent: 2 - - uid: 18750 + - uid: 18961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-0.5 + pos: -113.5,-0.5 parent: 2 - - uid: 18751 + - uid: 18962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-4.5 + pos: -118.5,-3.5 parent: 2 - - uid: 18752 + - uid: 18963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-5.5 + pos: -119.5,-1.5 parent: 2 - - uid: 18753 + - uid: 18964 components: - type: Transform - pos: -124.5,-0.5 + pos: -121.5,-0.5 parent: 2 - - uid: 18754 + - uid: 18965 components: - type: Transform - pos: -120.5,-1.5 + pos: -115.5,-4.5 parent: 2 - - uid: 18755 + - uid: 18966 components: - type: Transform - pos: -121.5,-1.5 + pos: -121.5,-0.5 parent: 2 - - uid: 18756 + - uid: 18967 components: - type: Transform - pos: -123.5,-1.5 + pos: -120.5,-0.5 parent: 2 - - uid: 18757 + - uid: 18968 components: - type: Transform - pos: -122.5,-1.5 + pos: -117.5,-3.5 parent: 2 - - uid: 18758 + - uid: 18969 components: - type: Transform - pos: -121.5,-2.5 + pos: -119.5,-3.5 parent: 2 - - uid: 18759 + - uid: 18970 components: - type: Transform - pos: -122.5,-2.5 + pos: -119.5,-2.5 parent: 2 - - uid: 18760 + - uid: 18971 components: - type: Transform - pos: -123.5,-0.5 + pos: -119.5,-2.5 parent: 2 - - uid: 41670 + - uid: 18972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,21.5 - parent: 40203 -- proto: FloorTileItemDarkPavement - entities: - - uid: 41671 + pos: -114.5,-4.5 + parent: 2 + - uid: 18973 components: - type: Transform - rot: -2.792526803190927 rad - pos: 50.615902,53.661423 - parent: 40203 - - uid: 41672 + pos: -112.5,-6.5 + parent: 2 + - uid: 18974 components: - type: Transform - rot: 3.490658503988659 rad - pos: 57.537777,52.630173 - parent: 40203 - - uid: 41673 + pos: -115.5,-5.5 + parent: 2 + - uid: 18975 components: - type: Transform - rot: 5.235987755982989 rad - pos: 60.77226,51.458298 - parent: 40203 - - uid: 41674 + pos: -113.5,-4.5 + parent: 2 + - uid: 18976 components: - type: Transform - rot: 0.5235987755982988 rad - pos: 52.193405,51.536423 - parent: 40203 -- proto: FloorTileItemGrayConcrete - entities: - - uid: 41675 + pos: -112.5,-4.5 + parent: 2 + - uid: 18977 components: - type: Transform - rot: 0.8377580409572782 rad - pos: 61.53104,57.086075 - parent: 40203 -- proto: FloorTileItemGrayConcreteMono - entities: - - uid: 41676 + pos: -117.5,-4.5 + parent: 2 + - uid: 18978 components: - type: Transform - rot: -0.47123889803846897 rad - pos: 59.359165,55.429825 - parent: 40203 - - uid: 41677 + pos: -121.5,-0.5 + parent: 2 + - uid: 18979 components: - type: Transform - rot: 0.3839724354387525 rad - pos: 58.03418,56.836075 - parent: 40203 -- proto: FloorTileItemSteelDiagonal - entities: - - uid: 41678 + pos: -122.5,-0.5 + parent: 2 + - uid: 18980 components: - type: Transform - rot: 2.792526803190927 rad - pos: 69.494064,74.19014 - parent: 40203 - - uid: 41679 + pos: -104.5,-2.5 + parent: 2 + - uid: 18981 components: - type: Transform - rot: 1.2217304763960306 rad - pos: 64.25969,75.47139 - parent: 40203 - - uid: 41680 + pos: -106.5,-0.5 + parent: 2 + - uid: 18982 components: - type: Transform - rot: 0.5235987755982988 rad - pos: 68.431564,75.75264 - parent: 40203 - - uid: 41681 + pos: -99.5,-1.5 + parent: 2 + - uid: 18983 components: - type: Transform - rot: 1.7453292519943295 rad - pos: 61.056564,74.518265 - parent: 40203 -- proto: FloorTileItemSteelHerringbone - entities: - - uid: 41682 + pos: -103.5,-1.5 + parent: 2 + - uid: 18984 components: - type: Transform - rot: 2.0943951023931953 rad - pos: 57.350758,77.16485 - parent: 40203 - - uid: 41683 + pos: -102.5,-2.5 + parent: 2 + - uid: 18985 components: - type: Transform - rot: 0.17453292519943295 rad - pos: 54.678883,75.33672 - parent: 40203 - - uid: 41684 + pos: -99.5,-2.5 + parent: 2 + - uid: 18986 components: - type: Transform - rot: 1.3264502315156905 rad - pos: 54.507008,78.8836 - parent: 40203 -- proto: FloorTileItemWhite - entities: - - uid: 18761 + pos: -105.5,-0.5 + parent: 2 + - uid: 18987 components: - type: Transform - pos: 4.4294615,57.413853 + pos: -98.5,-0.5 parent: 2 - - uid: 18762 + - uid: 18988 components: - type: Transform - pos: 10.6325865,58.570103 + pos: -97.5,-2.5 parent: 2 - - uid: 18763 + - uid: 18989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.523212,56.507603 + pos: -100.5,-1.5 parent: 2 - - uid: 18764 + - uid: 18990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.476337,57.491978 + pos: -99.5,-0.5 parent: 2 -- proto: FloorTileItemWood - entities: - - uid: 18765 + - uid: 18991 components: - type: Transform - pos: -39.523952,25.379528 + pos: -104.5,-1.5 parent: 2 - - uid: 18766 + - uid: 18992 components: - type: Transform - pos: -32.133327,27.332653 + pos: -104.5,-0.5 parent: 2 -- proto: FloorTileItemWoodLarge - entities: - - uid: 18767 + - uid: 18993 components: - type: Transform - pos: -45.531563,26.551403 + pos: -97.5,-3.5 parent: 2 -- proto: FloorWaterEntity - entities: - - uid: 41685 + - uid: 18994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41686 + pos: -97.5,-0.5 + parent: 2 + - uid: 18995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41687 + pos: -98.5,-2.5 + parent: 2 + - uid: 18996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41688 + pos: -97.5,-1.5 + parent: 2 + - uid: 18997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41689 + pos: -96.5,-0.5 + parent: 2 + - uid: 18998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41690 + pos: -105.5,-2.5 + parent: 2 + - uid: 18999 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41691 + pos: -100.5,-0.5 + parent: 2 + - uid: 19000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41692 + pos: -100.5,-2.5 + parent: 2 + - uid: 19001 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41693 + pos: -103.5,-2.5 + parent: 2 + - uid: 19002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41694 + pos: -102.5,-1.5 + parent: 2 + - uid: 19003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41695 + pos: -102.5,-0.5 + parent: 2 + - uid: 19004 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41696 + pos: -101.5,-2.5 + parent: 2 + - uid: 19005 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41697 + pos: -101.5,-1.5 + parent: 2 + - uid: 19006 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41698 + pos: -105.5,-1.5 + parent: 2 + - uid: 19007 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41699 + pos: -103.5,-0.5 + parent: 2 + - uid: 19008 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41700 + pos: -106.5,-2.5 + parent: 2 + - uid: 19009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41701 + pos: -106.5,-1.5 + parent: 2 + - uid: 19010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41702 + pos: -101.5,-0.5 + parent: 2 + - uid: 19011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41703 + pos: -96.5,-1.5 + parent: 2 + - uid: 19012 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41704 + pos: -110.5,-2.5 + parent: 2 + - uid: 19013 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41705 + pos: -115.5,-3.5 + parent: 2 + - uid: 19014 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41706 + pos: -110.5,-1.5 + parent: 2 + - uid: 19015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41707 + pos: -111.5,-2.5 + parent: 2 + - uid: 19016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41708 + pos: -113.5,-3.5 + parent: 2 + - uid: 19017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41709 + pos: -112.5,-0.5 + parent: 2 + - uid: 19018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41710 + pos: -114.5,-3.5 + parent: 2 + - uid: 19019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41711 + pos: -119.5,-2.5 + parent: 2 + - uid: 19020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41712 + pos: -115.5,-6.5 + parent: 2 + - uid: 19021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41713 + pos: -113.5,-7.5 + parent: 2 + - uid: 19022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41714 + pos: -112.5,-7.5 + parent: 2 + - uid: 19023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41715 + pos: -112.5,-8.5 + parent: 2 + - uid: 19024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41716 + pos: -114.5,-6.5 + parent: 2 + - uid: 19025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41717 + pos: -113.5,-7.5 + parent: 2 + - uid: 19026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41718 + pos: -114.5,-6.5 + parent: 2 + - uid: 19027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41719 + pos: -113.5,-7.5 + parent: 2 + - uid: 19028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41720 + pos: -122.5,-0.5 + parent: 2 + - uid: 19029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41721 + pos: -113.5,-4.5 + parent: 2 + - uid: 19030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41722 + pos: -116.5,-4.5 + parent: 2 + - uid: 19031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41723 + pos: -113.5,-4.5 + parent: 2 + - uid: 19032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41724 + pos: -116.5,-6.5 + parent: 2 + - uid: 19033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41725 + pos: -121.5,-1.5 + parent: 2 + - uid: 19034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41726 + pos: -120.5,-2.5 + parent: 2 + - uid: 19035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41727 + pos: -122.5,-1.5 + parent: 2 + - uid: 19036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41728 + pos: -122.5,-1.5 + parent: 2 + - uid: 19037 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41729 + pos: -122.5,-1.5 + parent: 2 + - uid: 19038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41730 + pos: -118.5,-4.5 + parent: 2 + - uid: 19039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41731 + pos: -118.5,-4.5 + parent: 2 + - uid: 19040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41732 + pos: -118.5,-4.5 + parent: 2 + - uid: 19041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41733 + pos: -73.5,20.5 + parent: 2 + - uid: 19042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41734 + pos: -75.5,21.5 + parent: 2 + - uid: 19043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41735 + pos: -75.5,20.5 + parent: 2 + - uid: 19044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41736 + pos: -67.5,-23.5 + parent: 2 + - uid: 42021 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41737 + pos: 62.5,50.5 + parent: 40599 + - uid: 42022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41738 + pos: 62.5,52.5 + parent: 40599 + - uid: 42023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41739 + pos: 63.5,50.5 + parent: 40599 + - uid: 42024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41740 + pos: 63.5,51.5 + parent: 40599 + - uid: 42025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41741 + pos: 63.5,52.5 + parent: 40599 + - uid: 42026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41742 + pos: 62.5,51.5 + parent: 40599 + - uid: 42027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41743 + pos: 64.5,50.5 + parent: 40599 + - uid: 42028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41744 + pos: 64.5,52.5 + parent: 40599 + - uid: 42029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41745 + pos: 65.5,50.5 + parent: 40599 + - uid: 42030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41746 + pos: 65.5,52.5 + parent: 40599 + - uid: 42031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41747 + pos: 66.5,50.5 + parent: 40599 + - uid: 42032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41748 + pos: 64.5,51.5 + parent: 40599 + - uid: 42033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41749 + pos: 66.5,51.5 + parent: 40599 + - uid: 42034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41750 + pos: 66.5,52.5 + parent: 40599 + - uid: 42035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41751 + pos: 65.5,51.5 + parent: 40599 + - uid: 42036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41752 + pos: 67.5,50.5 + parent: 40599 + - uid: 42037 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41753 + pos: 67.5,51.5 + parent: 40599 + - uid: 42038 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41754 + pos: 67.5,52.5 + parent: 40599 + - uid: 42039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41755 + pos: 68.5,50.5 + parent: 40599 + - uid: 42040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41756 + pos: 68.5,52.5 + parent: 40599 + - uid: 42041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41757 + pos: 68.5,51.5 + parent: 40599 + - uid: 42042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41758 + pos: 68.5,53.5 + parent: 40599 + - uid: 42043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41759 + pos: 68.5,55.5 + parent: 40599 + - uid: 42044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41760 + pos: 68.5,56.5 + parent: 40599 + - uid: 42045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41761 + pos: 68.5,54.5 + parent: 40599 + - uid: 42046 components: - type: Transform - rot: 3.141592653589793 rad pos: 67.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41762 + parent: 40599 + - uid: 42047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41763 + pos: 67.5,54.5 + parent: 40599 + - uid: 42048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41764 + pos: 67.5,55.5 + parent: 40599 + - uid: 42049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41765 + pos: 67.5,56.5 + parent: 40599 + - uid: 42050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,56.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41766 + pos: 66.5,53.5 + parent: 40599 + - uid: 42051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,55.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41767 + pos: 66.5,55.5 + parent: 40599 + - uid: 42052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,54.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41768 + pos: 66.5,54.5 + parent: 40599 + - uid: 42053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,53.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41769 + pos: 66.5,56.5 + parent: 40599 + - uid: 42054 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41770 + pos: 65.5,53.5 + parent: 40599 + - uid: 42055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41771 + pos: 65.5,54.5 + parent: 40599 + - uid: 42056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41772 + pos: 65.5,55.5 + parent: 40599 + - uid: 42057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,52.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41773 + pos: 65.5,56.5 + parent: 40599 + - uid: 42058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,50.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41774 + pos: 64.5,53.5 + parent: 40599 + - uid: 42059 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,51.5 - parent: 40203 - missingComponents: - - TileEntityEffect - - uid: 41775 + pos: 64.5,54.5 + parent: 40599 + - uid: 42060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,45.5 - parent: 40203 - - uid: 41776 + pos: 64.5,55.5 + parent: 40599 + - uid: 42061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,45.5 - parent: 40203 - - uid: 41777 + pos: 64.5,56.5 + parent: 40599 + - uid: 42062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,41.5 - parent: 40203 - - uid: 41778 + pos: 63.5,53.5 + parent: 40599 + - uid: 42063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,40.5 - parent: 40203 - - uid: 41779 + pos: 63.5,54.5 + parent: 40599 + - uid: 42064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,41.5 - parent: 40203 - - uid: 41780 + pos: 63.5,55.5 + parent: 40599 + - uid: 42065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,40.5 - parent: 40203 - - uid: 41781 + pos: 63.5,56.5 + parent: 40599 + - uid: 45644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,39.5 - parent: 40203 - - uid: 41782 + pos: 6.5,-0.5 + parent: 45355 + - uid: 45645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,39.5 - parent: 40203 -- proto: FloraGreyStalagmite1 - entities: - - uid: 18768 + pos: 5.5,-0.5 + parent: 45355 + - uid: 45646 components: - type: Transform - pos: -44.018322,-43.082207 - parent: 2 - - uid: 18769 + pos: 4.5,-0.5 + parent: 45355 + - uid: 45647 components: - type: Transform - pos: -29.393757,-32.47761 - parent: 2 - - uid: 18770 + pos: 3.5,-0.5 + parent: 45355 + - uid: 45648 components: - type: Transform - pos: 31.48461,46.442074 - parent: 2 - - uid: 18771 + pos: 7.5,-0.5 + parent: 45355 + - uid: 45649 components: - type: Transform - pos: 19.470648,47.60126 - parent: 2 - - uid: 18772 + pos: 8.5,-0.5 + parent: 45355 + - uid: 45650 components: - type: Transform - pos: 36.64754,43.31632 - parent: 2 - - uid: 18773 + pos: 9.5,-1.5 + parent: 45355 + - uid: 45651 components: - type: Transform - pos: 43.515476,42.809765 - parent: 2 - - uid: 18774 + pos: 9.5,-2.5 + parent: 45355 + - uid: 45652 components: - type: Transform - pos: 33.774704,55.368675 - parent: 2 - - uid: 18775 + pos: 4.5,-1.5 + parent: 45355 + - uid: 45653 components: - type: Transform - pos: -44.145596,63.528923 - parent: 2 - - uid: 18776 + pos: 10.5,-1.5 + parent: 45355 + - uid: 45654 components: - type: Transform - pos: -34.99341,56.45096 - parent: 2 - - uid: 18777 + pos: 5.5,-1.5 + parent: 45355 + - uid: 45655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.52093,43.443344 - parent: 2 - - uid: 18778 + pos: 5.5,-2.5 + parent: 45355 + - uid: 45656 components: - type: Transform - pos: -86.61973,37.550564 - parent: 2 - - uid: 18779 + pos: 6.5,-1.5 + parent: 45355 + - uid: 45657 components: - type: Transform - pos: -115.444244,36.582355 - parent: 2 - - uid: 18780 + pos: 6.5,-2.5 + parent: 45355 + - uid: 45658 components: - type: Transform - pos: -80.611404,57.304478 - parent: 2 - - uid: 18781 + pos: 6.5,-3.5 + parent: 45355 + - uid: 45659 components: - type: Transform - pos: -34.579254,69.56238 - parent: 2 - - uid: 18782 + pos: 7.5,-1.5 + parent: 45355 + - uid: 45660 components: - type: Transform - pos: -24.818995,68.5339 - parent: 2 - - uid: 41783 + pos: 7.5,-2.5 + parent: 45355 + - uid: 45661 components: - type: Transform - pos: 23.331152,59.555054 - parent: 40203 - - uid: 45655 + pos: 7.5,-3.5 + parent: 45355 + - uid: 45662 components: - type: Transform - pos: 2.9027252,16.723743 - parent: 44970 -- proto: FloraGreyStalagmite2 - entities: - - uid: 18783 + pos: 8.5,-1.5 + parent: 45355 + - uid: 45663 components: - type: Transform - pos: 103.29234,1.9135017 - parent: 2 - - uid: 18784 + pos: 8.5,-2.5 + parent: 45355 + - uid: 45664 components: - type: Transform - pos: -68.64094,39.362946 - parent: 2 - - uid: 18785 + pos: 8.5,-3.5 + parent: 45355 + - uid: 45665 components: - type: Transform - pos: 55.321953,21.000837 - parent: 2 - - uid: 18786 + pos: 10.5,-0.5 + parent: 45355 + - uid: 45666 components: - type: Transform - pos: -39.67903,-39.755035 - parent: 2 - - uid: 18787 + pos: 9.5,-0.5 + parent: 45355 + - uid: 45667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.594486,34.12192 - parent: 2 - - uid: 18788 + pos: 9.5,0.5 + parent: 45355 + - uid: 45668 components: - type: Transform - pos: -52.651352,-45.666935 - parent: 2 - - uid: 18789 + pos: 9.5,1.5 + parent: 45355 + - uid: 45669 components: - type: Transform - pos: -23.822514,-25.673378 - parent: 2 - - uid: 18790 + pos: 10.5,0.5 + parent: 45355 + - uid: 45670 components: - type: Transform - pos: -39.057907,-32.476578 - parent: 2 - - uid: 18791 + pos: 1.5,-3.5 + parent: 45355 + - uid: 45671 components: - type: Transform - pos: -39.386032,-28.445328 - parent: 2 - - uid: 18792 + pos: 2.5,-4.5 + parent: 45355 + - uid: 45672 components: - type: Transform - pos: -51.24333,-26.720293 - parent: 2 - - uid: 18793 + pos: 2.5,-4.5 + parent: 45355 + - uid: 45673 components: - type: Transform - pos: 32.73461,43.291267 - parent: 2 - - uid: 18794 + pos: 1.5,-4.5 + parent: 45355 + - uid: 45674 components: - type: Transform - pos: -24.310562,36.5948 - parent: 2 - - uid: 18795 + pos: 0.5,-4.5 + parent: 45355 + - uid: 45675 components: - type: Transform - pos: -73.62654,39.683006 - parent: 2 - - uid: 18796 + pos: -0.5,-4.5 + parent: 45355 + - uid: 45676 components: - type: Transform - pos: -63.243683,37.744766 - parent: 2 - - uid: 18797 + pos: -0.5,-5.5 + parent: 45355 + - uid: 45677 components: - type: Transform - pos: 47.39396,44.25898 - parent: 2 - - uid: 18798 + pos: 0.5,-5.5 + parent: 45355 + - uid: 45678 components: - type: Transform - pos: 56.505505,39.906723 - parent: 2 - - uid: 18799 + pos: 1.5,-5.5 + parent: 45355 + - uid: 45679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.428745,47.469788 - parent: 2 - - uid: 18800 + pos: -1.5,-4.5 + parent: 45355 + - uid: 45680 components: - type: Transform - pos: -43.719044,51.276848 - parent: 2 - - uid: 18801 + pos: 2.5,-5.5 + parent: 45355 + - uid: 45681 components: - type: Transform - pos: 32.79033,55.345238 - parent: 2 - - uid: 18802 + pos: 1.5,-6.5 + parent: 45355 + - uid: 45682 components: - type: Transform - pos: -44.583096,63.528923 - parent: 2 - - uid: 18803 + pos: 0.5,-6.5 + parent: 45355 + - uid: 45683 components: - type: Transform - pos: -37.01811,61.55396 - parent: 2 - - uid: 18804 + pos: -0.5,-6.5 + parent: 45355 + - uid: 45684 components: - type: Transform - pos: -37.252483,61.257084 - parent: 2 - - uid: 18805 + pos: -1.5,-5.5 + parent: 45355 + - uid: 45685 components: - type: Transform - pos: -40.14966,60.29471 - parent: 2 - - uid: 18806 + pos: -2.5,-4.5 + parent: 45355 + - uid: 45686 components: - type: Transform - pos: -61.770164,-8.722572 - parent: 2 - - uid: 18807 + pos: 3.5,-5.5 + parent: 45355 + - uid: 45687 components: - type: Transform - pos: -66.59625,4.6866136 - parent: 2 - - uid: 18808 + pos: 3.5,-6.5 + parent: 45355 + - uid: 45688 components: - type: Transform - pos: -86.25363,15.182786 - parent: 2 - - uid: 18809 + pos: 2.5,-7.5 + parent: 45355 + - uid: 45689 components: - type: Transform - pos: -34.368317,69.44519 - parent: 2 - - uid: 18810 + pos: 2.5,-6.5 + parent: 45355 + - uid: 45690 components: - type: Transform - pos: -20.423004,64.28894 - parent: 2 - - uid: 18811 + pos: 1.5,-7.5 + parent: 45355 + - uid: 45691 components: - type: Transform - pos: -34.62613,69.63269 - parent: 2 - - uid: 18812 + pos: 7.5,-7.5 + parent: 45355 + - uid: 45692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.385712,46.401 - parent: 2 - - uid: 41784 + pos: 7.5,-8.5 + parent: 45355 + - uid: 45693 components: - type: Transform - pos: 34.905663,45.504845 - parent: 40203 - - uid: 45656 + pos: 7.5,-9.5 + parent: 45355 + - uid: 45694 components: - type: Transform - pos: -2.15423,15.014379 - parent: 44970 - - uid: 45657 + pos: 10.5,-8.5 + parent: 45355 + - uid: 45695 components: - type: Transform - pos: -3.4250636,15.896323 - parent: 44970 - - uid: 45658 + pos: 8.5,-14.5 + parent: 45355 + - uid: 45696 components: - type: Transform - pos: -2.7931192,15.243546 - parent: 44970 - - uid: 45659 + pos: 8.5,-9.5 + parent: 45355 + - uid: 45697 components: - type: Transform - pos: -4.0014524,16.597712 - parent: 44970 - - uid: 45660 + pos: 17.5,-3.5 + parent: 45355 + - uid: 45698 components: - type: Transform - pos: 0.73605835,15.202909 - parent: 44970 -- proto: FloraGreyStalagmite3 - entities: - - uid: 18813 + pos: 9.5,-7.5 + parent: 45355 + - uid: 45699 components: - type: Transform - pos: 102.43297,5.5385017 - parent: 2 - - uid: 18814 + pos: 7.5,-6.5 + parent: 45355 + - uid: 45700 components: - type: Transform - pos: 55.853203,21.407087 - parent: 2 - - uid: 18815 + pos: 6.5,-7.5 + parent: 45355 + - uid: 45701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.368298,34.776505 - parent: 2 - - uid: 18816 + pos: 6.5,-8.5 + parent: 45355 + - uid: 45702 components: - type: Transform - pos: -33.12396,-33.55431 - parent: 2 - - uid: 18817 + pos: 9.5,-9.5 + parent: 45355 + - uid: 45703 components: - type: Transform - pos: -30.505245,-26.82673 - parent: 2 - - uid: 18818 + pos: 8.5,-8.5 + parent: 45355 + - uid: 45704 components: - type: Transform - pos: -40.479782,-31.492203 - parent: 2 - - uid: 18819 + pos: 8.5,-6.5 + parent: 45355 + - uid: 45705 components: - type: Transform - pos: -56.623474,-20.683155 - parent: 2 - - uid: 18820 + pos: 9.5,-8.5 + parent: 45355 + - uid: 45706 components: - type: Transform - pos: 55.462578,21.614647 - parent: 2 - - uid: 18821 + pos: 8.5,-7.5 + parent: 45355 + - uid: 45707 components: - type: Transform - pos: -27.623062,37.5323 - parent: 2 - - uid: 18822 + pos: 6.5,-9.5 + parent: 45355 + - uid: 45708 components: - type: Transform - pos: 103.01109,1.7572517 - parent: 2 - - uid: 18823 + pos: 5.5,-10.5 + parent: 45355 + - uid: 45709 components: - type: Transform - pos: 62.521347,32.584866 - parent: 2 - - uid: 18824 + pos: 6.5,-10.5 + parent: 45355 + - uid: 45710 components: - type: Transform - pos: 56.630505,39.687973 - parent: 2 - - uid: 18825 + pos: 5.5,-9.5 + parent: 45355 + - uid: 45711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.851727,48.259792 - parent: 2 - - uid: 18826 + pos: 7.5,-10.5 + parent: 45355 + - uid: 45712 components: - type: Transform - pos: -43.687794,51.620598 - parent: 2 - - uid: 18827 + pos: 9.5,-14.5 + parent: 45355 + - uid: 45713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.897495,46.657288 - parent: 2 - - uid: 18828 + pos: -0.5,-9.5 + parent: 45355 + - uid: 45714 components: - type: Transform - pos: 34.19402,59.71244 - parent: 2 - - uid: 18829 + pos: -0.5,-10.5 + parent: 45355 + - uid: 45715 components: - type: Transform - pos: -37.439983,61.71021 - parent: 2 - - uid: 18830 + pos: 0.5,-10.5 + parent: 45355 + - uid: 45716 components: - type: Transform - pos: -36.45561,60.913334 - parent: 2 - - uid: 18831 + pos: 4.5,-10.5 + parent: 45355 + - uid: 45717 components: - type: Transform - pos: -40.571533,60.48221 - parent: 2 - - uid: 18832 + pos: -1.5,-9.5 + parent: 45355 + - uid: 45718 components: - type: Transform - pos: -61.699852,-9.038979 - parent: 2 - - uid: 18833 + pos: -2.5,-8.5 + parent: 45355 + - uid: 45719 components: - type: Transform - pos: -62.519196,-0.59986687 - parent: 2 - - uid: 18834 + pos: -1.5,-10.5 + parent: 45355 + - uid: 45720 components: - type: Transform - pos: -61.491997,15.545826 - parent: 2 - - uid: 18835 + pos: -3.5,-8.5 + parent: 45355 + - uid: 45721 components: - type: Transform - pos: -115.350494,36.418293 - parent: 2 - - uid: 18836 + pos: -2.5,-9.5 + parent: 45355 + - uid: 45722 components: - type: Transform - pos: -74.34057,-24.690931 - parent: 2 - - uid: 18837 + pos: -3.5,-9.5 + parent: 45355 + - uid: 45723 components: - type: Transform - pos: -67.520256,-25.429213 - parent: 2 - - uid: 18838 + pos: -5.5,-8.5 + parent: 45355 + - uid: 45724 components: - type: Transform - pos: -20.52935,64.453 - parent: 2 - - uid: 41785 + pos: -3.5,-7.5 + parent: 45355 + - uid: 45725 components: - type: Transform - pos: 20.475252,51.434723 - parent: 40203 - - uid: 41786 + pos: -4.5,-7.5 + parent: 45355 + - uid: 45726 components: - type: Transform - pos: 35.327538,45.73922 - parent: 40203 - - uid: 45661 + pos: -5.5,-7.5 + parent: 45355 + - uid: 45727 components: - type: Transform - pos: 1.6735585,16.161243 - parent: 44970 -- proto: FloraGreyStalagmite4 - entities: - - uid: 18839 + pos: -4.5,-8.5 + parent: 45355 + - uid: 45728 components: - type: Transform - pos: -36.31974,-46.662876 - parent: 2 - - uid: 18840 + pos: -4.5,-9.5 + parent: 45355 + - uid: 45729 components: - type: Transform - pos: -21.484697,-26.600515 - parent: 2 - - uid: 18841 + pos: -6.5,-8.5 + parent: 45355 + - uid: 45730 components: - type: Transform - pos: -37.46771,-30.569935 - parent: 2 - - uid: 18842 + pos: -6.5,-7.5 + parent: 45355 + - uid: 45731 components: - type: Transform - pos: 86.65296,4.4916267 - parent: 2 - - uid: 18843 + pos: -7.5,-6.5 + parent: 45355 + - uid: 45732 components: - type: Transform - pos: -47.629395,37.444145 - parent: 2 - - uid: 18844 + pos: -7.5,-7.5 + parent: 45355 + - uid: 45733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.57559,-3.3542852 - parent: 2 - - uid: 18845 + pos: -5.5,-6.5 + parent: 45355 + - uid: 45734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.48569,-0.22939968 - parent: 2 - - uid: 18846 + pos: -6.5,-6.5 + parent: 45355 + - uid: 45735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.55764,27.606134 - parent: 2 - - uid: 18847 + pos: -7.5,-5.5 + parent: 45355 + - uid: 45736 components: - type: Transform - pos: 47.83146,44.587105 - parent: 2 - - uid: 18848 + pos: -8.5,-5.5 + parent: 45355 + - uid: 45737 components: - type: Transform - pos: 37.01871,43.365776 - parent: 2 - - uid: 18849 + pos: -8.5,-6.5 + parent: 45355 + - uid: 45738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.44437,46.516663 - parent: 2 - - uid: 18850 + pos: -7.5,-3.5 + parent: 45355 + - uid: 45739 components: - type: Transform - pos: -47.187794,47.511223 - parent: 2 - - uid: 18851 + pos: -2.5,-10.5 + parent: 45355 + - uid: 45740 components: - type: Transform - pos: 33.61064,54.85305 - parent: 2 - - uid: 18852 + pos: -7.5,-2.5 + parent: 45355 + - uid: 45741 components: - type: Transform - pos: -45.567924,58.533623 - parent: 2 - - uid: 18853 + pos: -7.5,-1.5 + parent: 45355 + - uid: 45742 components: - type: Transform - pos: -36.814983,61.21021 - parent: 2 - - uid: 18854 + pos: -7.5,-0.5 + parent: 45355 + - uid: 45743 components: - type: Transform - pos: -35.446533,56.51346 - parent: 2 - - uid: 18855 + pos: -7.5,0.5 + parent: 45355 + - uid: 45744 components: - type: Transform - pos: -83.1307,51.39813 - parent: 2 - - uid: 18856 + pos: -7.5,1.5 + parent: 45355 + - uid: 45745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.08343,43.49022 - parent: 2 - - uid: 18857 + pos: -7.5,2.5 + parent: 45355 + - uid: 45746 components: - type: Transform - pos: -66.5273,4.636072 - parent: 2 - - uid: 18858 + pos: -8.5,-3.5 + parent: 45355 + - uid: 45747 components: - type: Transform - pos: -86.53205,15.40781 - parent: 2 - - uid: 18859 + pos: -8.5,-2.5 + parent: 45355 + - uid: 45748 components: - type: Transform - pos: -83.684395,23.598963 - parent: 2 - - uid: 18860 + pos: -8.5,-1.5 + parent: 45355 + - uid: 45749 components: - type: Transform - pos: -78.51833,20.470057 - parent: 2 - - uid: 18861 + pos: -8.5,-0.5 + parent: 45355 + - uid: 45750 components: - type: Transform - pos: -81.52795,26.525595 - parent: 2 - - uid: 18862 + pos: -8.5,0.5 + parent: 45355 + - uid: 45751 components: - type: Transform - pos: -81.31701,26.279501 - parent: 2 - - uid: 18863 + pos: -8.5,1.5 + parent: 45355 + - uid: 45752 components: - type: Transform - pos: -62.56607,-0.42799187 - parent: 2 - - uid: 18864 + pos: -8.5,2.5 + parent: 45355 + - uid: 45753 components: - type: Transform - pos: -61.53887,15.288013 - parent: 2 - - uid: 18865 + pos: -9.5,0.5 + parent: 45355 + - uid: 45754 components: - type: Transform - pos: -20.37613,64.38269 - parent: 2 - - uid: 18866 + pos: -9.5,-1.5 + parent: 45355 + - uid: 45755 components: - type: Transform - pos: -24.506495,68.54952 - parent: 2 - - uid: 18867 + pos: -9.5,-0.5 + parent: 45355 + - uid: 45756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.48815,-16.613672 - parent: 2 - - uid: 18868 + pos: -9.5,1.5 + parent: 45355 + - uid: 45757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.44925,23.472488 - parent: 2 - - uid: 41787 + pos: -7.5,3.5 + parent: 45355 + - uid: 45758 components: - type: Transform - pos: 23.456152,59.60193 - parent: 40203 - - uid: 41788 + pos: -9.5,-2.5 + parent: 45355 + - uid: 45759 components: - type: Transform - pos: 31.564457,56.39302 - parent: 40203 - - uid: 41789 + pos: -2.5,16.5 + parent: 45355 + - uid: 45760 components: - type: Transform - pos: 34.608788,45.661095 - parent: 40203 - - uid: 45662 + pos: -2.5,16.5 + parent: 45355 + - uid: 45761 components: - type: Transform - pos: -1.3150636,15.209854 - parent: 44970 -- proto: FloraGreyStalagmite5 - entities: - - uid: 18869 + pos: -1.5,16.5 + parent: 45355 + - uid: 45762 components: - type: Transform - pos: -47.54717,47.729973 - parent: 2 - - uid: 18870 + pos: -1.5,15.5 + parent: 45355 + - uid: 45763 components: - type: Transform - pos: -52.035046,-35.222733 - parent: 2 - - uid: 18871 + pos: -2.5,15.5 + parent: 45355 + - uid: 45764 components: - type: Transform - pos: -44.73817,-43.37879 - parent: 2 - - uid: 18872 + pos: -3.5,16.5 + parent: 45355 + - uid: 45765 components: - type: Transform - pos: 32.476078,43.391556 - parent: 2 - - uid: 18873 + pos: -0.5,15.5 + parent: 45355 + - uid: 45766 components: - type: Transform - pos: 61.540245,20.415308 - parent: 2 - - uid: 18874 + pos: -0.5,16.5 + parent: 45355 + - uid: 45767 components: - type: Transform - pos: -55.44063,34.225395 - parent: 2 - - uid: 18875 + pos: -0.5,17.5 + parent: 45355 + - uid: 45768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.30997,-3.1667852 - parent: 2 - - uid: 18876 + pos: -1.5,17.5 + parent: 45355 + - uid: 45769 components: - type: Transform - pos: 94.21422,1.9760017 - parent: 2 - - uid: 18877 + pos: -2.5,17.5 + parent: 45355 + - uid: 45770 components: - type: Transform - pos: 47.472084,44.72773 - parent: 2 - - uid: 18878 + pos: -3.5,17.5 + parent: 45355 + - uid: 45771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.57529,-7.485481 - parent: 2 - - uid: 18879 + pos: -3.5,18.5 + parent: 45355 + - uid: 45772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.72006,-0.43252468 - parent: 2 - - uid: 18880 + pos: -3.5,19.5 + parent: 45355 + - uid: 45773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.80764,27.52801 - parent: 2 - - uid: 18881 + pos: -2.5,18.5 + parent: 45355 + - uid: 45774 components: - type: Transform - pos: 36.784336,43.709526 - parent: 2 - - uid: 18882 + pos: -2.5,19.5 + parent: 45355 + - uid: 45775 components: - type: Transform - pos: 43.609226,42.528515 - parent: 2 - - uid: 18883 + pos: -1.5,18.5 + parent: 45355 + - uid: 45776 components: - type: Transform - pos: 23.346066,65.4911 - parent: 2 - - uid: 18884 + pos: -1.5,19.5 + parent: 45355 + - uid: 45777 components: - type: Transform - pos: 33.25908,55.22805 - parent: 2 - - uid: 18885 + pos: -0.5,18.5 + parent: 45355 + - uid: 45778 components: - type: Transform - pos: -36.627483,61.64771 - parent: 2 - - uid: 18886 + pos: -0.5,19.5 + parent: 45355 + - uid: 45779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.4616,27.63027 - parent: 2 - - uid: 18887 + pos: 0.5,18.5 + parent: 45355 + - uid: 45780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.47405,43.77147 - parent: 2 - - uid: 18888 + pos: 0.5,19.5 + parent: 45355 + - uid: 45781 components: - type: Transform - pos: -24.350245,68.81515 - parent: 2 - - uid: 18889 + pos: 1.5,18.5 + parent: 45355 + - uid: 45782 components: - type: Transform - pos: -61.18731,15.405201 - parent: 2 - - uid: 18890 + pos: 1.5,19.5 + parent: 45355 + - uid: 45783 components: - type: Transform - pos: -86.4791,37.7615 - parent: 2 - - uid: 18891 + pos: -4.5,18.5 + parent: 45355 + - uid: 45784 components: - type: Transform - pos: -70.36513,46.428333 - parent: 2 - - uid: 18892 + pos: 0.5,17.5 + parent: 45355 + - uid: 45785 components: - type: Transform - pos: -62.341125,22.502546 - parent: 2 - - uid: 18893 + pos: 1.5,17.5 + parent: 45355 + - uid: 45786 components: - type: Transform - pos: -73.68916,6.4838057 - parent: 2 - - uid: 18894 + pos: 0.5,16.5 + parent: 45355 + - uid: 45787 components: - type: Transform - pos: -67.62515,-12.531757 - parent: 2 - - uid: 18895 + pos: 0.5,15.5 + parent: 45355 + - uid: 45788 components: - type: Transform - pos: -61.894142,-9.024729 - parent: 2 - - uid: 18896 + pos: 1.5,16.5 + parent: 45355 + - uid: 45789 components: - type: Transform - pos: -56.11831,-16.58891 - parent: 2 - - uid: 18897 + pos: 2.5,16.5 + parent: 45355 + - uid: 45790 components: - type: Transform - pos: -62.644196,-0.16236687 - parent: 2 - - uid: 18898 + pos: 2.5,18.5 + parent: 45355 + - uid: 45791 components: - type: Transform - pos: -80.47078,57.46854 - parent: 2 - - uid: 18899 + pos: 2.5,17.5 + parent: 45355 + - uid: 45792 components: - type: Transform - pos: -67.69604,-25.394056 - parent: 2 - - uid: 41790 + pos: -4.5,17.5 + parent: 45355 + - uid: 45793 components: - type: Transform - pos: 31.423832,56.61177 - parent: 40203 - - uid: 45663 + pos: -10.5,8.5 + parent: 45355 + - uid: 45794 components: - type: Transform - pos: -3.1958969,16.132435 - parent: 44970 - - uid: 45664 + pos: -10.5,9.5 + parent: 45355 + - uid: 45795 components: - type: Transform - pos: -3.0431192,15.50049 - parent: 44970 - - uid: 45665 + pos: -9.5,9.5 + parent: 45355 + - uid: 45796 components: - type: Transform - pos: 2.5173085,16.307076 - parent: 44970 - - uid: 45666 + pos: -9.5,8.5 + parent: 45355 + - uid: 45797 components: - type: Transform - pos: 0.9756417,15.859159 - parent: 44970 -- proto: FloraGreyStalagmite6 - entities: - - uid: 18900 + pos: -8.5,9.5 + parent: 45355 + - uid: 45798 components: - type: Transform - pos: -83.490074,51.351254 - parent: 2 - - uid: 18901 + pos: -8.5,8.5 + parent: 45355 + - uid: 45799 components: - type: Transform - pos: -68.50031,39.737946 - parent: 2 - - uid: 18902 + pos: -8.5,10.5 + parent: 45355 + - uid: 45800 components: - type: Transform - pos: -61.306183,33.401016 - parent: 2 - - uid: 18903 + pos: -9.5,10.5 + parent: 45355 + - uid: 45801 components: - type: Transform - pos: -27.380245,-26.67048 - parent: 2 - - uid: 18904 + pos: -9.5,11.5 + parent: 45355 + - uid: 45802 components: - type: Transform - pos: -51.440197,-41.91033 - parent: 2 - - uid: 18905 + pos: -8.5,11.5 + parent: 45355 + - uid: 45803 components: - type: Transform - pos: -54.455822,-38.050957 - parent: 2 - - uid: 18906 + pos: -8.5,12.5 + parent: 45355 + - uid: 45804 components: - type: Transform - pos: -50.377697,-37.519707 - parent: 2 - - uid: 18907 + pos: -9.5,7.5 + parent: 45355 + - uid: 45805 components: - type: Transform - pos: 16.703608,44.235615 - parent: 2 - - uid: 18908 + pos: -10.5,7.5 + parent: 45355 + - uid: 45806 components: - type: Transform - pos: 31.125235,46.42645 - parent: 2 - - uid: 18909 + pos: -10.5,6.5 + parent: 45355 + - uid: 45807 components: - type: Transform - pos: 33.287197,46.603783 - parent: 2 - - uid: 18910 + pos: -9.5,6.5 + parent: 45355 + - uid: 45808 components: - type: Transform - pos: 37.033966,42.942413 - parent: 2 - - uid: 18911 + pos: -8.5,7.5 + parent: 45355 + - uid: 45809 components: - type: Transform - pos: 98.54234,-0.66462326 - parent: 2 - - uid: 18912 + pos: -11.5,7.5 + parent: 45355 + - uid: 45810 components: - type: Transform - pos: -40.613365,37.144115 - parent: 2 - - uid: 18913 + pos: -11.5,5.5 + parent: 45355 + - uid: 45811 components: - type: Transform - pos: 62.286972,32.63174 - parent: 2 - - uid: 18914 + pos: -10.5,5.5 + parent: 45355 + - uid: 45812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.50869,-10.452179 - parent: 2 - - uid: 18915 + pos: -12.5,5.5 + parent: 45355 + - uid: 45813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.56076,4.4011774 - parent: 2 - - uid: 18916 + pos: -11.5,6.5 + parent: 45355 + - uid: 45814 components: - type: Transform - pos: 36.33121,43.47515 - parent: 2 - - uid: 18917 + pos: -12.5,4.5 + parent: 45355 + - uid: 45815 components: - type: Transform - pos: 22.631588,46.366955 - parent: 2 - - uid: 18918 + pos: -11.5,4.5 + parent: 45355 + - uid: 45816 components: - type: Transform - pos: 52.50299,-32.476738 - parent: 2 - - uid: 18919 + pos: -11.5,3.5 + parent: 45355 + - uid: 45817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.0861,48.447292 - parent: 2 - - uid: 18920 + pos: -12.5,3.5 + parent: 45355 + - uid: 45818 components: - type: Transform - pos: 34.404957,59.407753 - parent: 2 - - uid: 18921 + pos: -12.5,6.5 + parent: 45355 + - uid: 45819 components: - type: Transform - pos: -36.377483,60.975834 - parent: 2 - - uid: 18922 + pos: -10.5,4.5 + parent: 45355 + - uid: 45820 components: - type: Transform - pos: -36.35996,61.350834 - parent: 2 - - uid: 18923 + pos: -9.5,5.5 + parent: 45355 + - uid: 45821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.30535,27.25527 - parent: 2 - - uid: 18924 + pos: -10.5,0.5 + parent: 45355 + - uid: 45822 components: - type: Transform - pos: -80.49034,61.527775 - parent: 2 - - uid: 18925 + pos: -12.5,2.5 + parent: 45355 + - uid: 45823 components: - type: Transform - pos: -73.40875,6.2803636 - parent: 2 - - uid: 18926 + pos: -13.5,2.5 + parent: 45355 + - uid: 45824 components: - type: Transform - pos: -62.528236,22.496458 - parent: 2 - - uid: 18927 + pos: -13.5,3.5 + parent: 45355 + - uid: 45825 components: - type: Transform - pos: -78.31218,20.269896 - parent: 2 - - uid: 18928 + pos: -13.5,4.5 + parent: 45355 + - uid: 45826 components: - type: Transform - pos: -82.97238,13.260911 - parent: 2 - - uid: 18929 + pos: -13.5,5.5 + parent: 45355 + - uid: 45827 components: - type: Transform - pos: -86.95676,15.417161 - parent: 2 - - uid: 18930 + pos: 8.5,18.5 + parent: 45355 + - uid: 45828 components: - type: Transform - pos: -67.28381,-12.683272 - parent: 2 - - uid: 18931 + pos: 8.5,16.5 + parent: 45355 + - uid: 45829 components: - type: Transform - pos: -115.23331,36.699543 - parent: 2 - - uid: 18932 + pos: 9.5,18.5 + parent: 45355 + - uid: 45830 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5819,-16.426172 - parent: 2 - - uid: 18933 + pos: 9.5,17.5 + parent: 45355 + - uid: 45831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.9805,23.409988 - parent: 2 - - uid: 18934 + pos: 8.5,17.5 + parent: 45355 + - uid: 45832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.432587,46.5885 - parent: 2 - - uid: 41791 + pos: 9.5,16.5 + parent: 45355 + - uid: 45833 components: - type: Transform - pos: 20.490877,51.512848 - parent: 40203 - - uid: 45667 + pos: 10.5,16.5 + parent: 45355 + - uid: 45834 components: - type: Transform - pos: -4.0778413,16.8616 - parent: 44970 - - uid: 45668 + pos: 10.5,15.5 + parent: 45355 + - uid: 45835 components: - type: Transform - pos: -3.8903413,16.229656 - parent: 44970 - - uid: 45669 + pos: 9.5,15.5 + parent: 45355 + - uid: 45836 components: - type: Transform - pos: -3.584786,16.069935 - parent: 44970 - - uid: 45670 + pos: 10.5,14.5 + parent: 45355 + - uid: 45837 components: - type: Transform - pos: -3.0292304,15.743546 - parent: 44970 - - uid: 45671 + pos: 11.5,14.5 + parent: 45355 + - uid: 45838 components: - type: Transform - pos: 0.3089751,15.140409 - parent: 44970 - - uid: 45672 + pos: 11.5,15.5 + parent: 45355 + - uid: 45839 components: - type: Transform - pos: -2.3139524,15.104656 - parent: 44970 - - uid: 45673 + pos: 10.5,17.5 + parent: 45355 + - uid: 45840 components: - type: Transform - pos: -1.682008,15.06299 - parent: 44970 - - uid: 45674 + pos: 11.5,16.5 + parent: 45355 + - uid: 45841 components: - type: Transform - pos: 0.9027251,15.421659 - parent: 44970 - - uid: 45675 + pos: 12.5,14.5 + parent: 45355 + - uid: 45842 components: - type: Transform - pos: 1.2464751,15.984159 - parent: 44970 - - uid: 45676 + pos: 12.5,13.5 + parent: 45355 + - uid: 45843 components: - type: Transform - pos: 2.2152252,15.984159 - parent: 44970 - - uid: 45677 + pos: 11.5,13.5 + parent: 45355 + - uid: 45844 components: - type: Transform - pos: 2.9339752,16.817493 - parent: 44970 - - uid: 45678 + pos: 11.5,12.5 + parent: 45355 + - uid: 45845 components: - type: Transform - pos: 2.8610585,16.182076 - parent: 44970 - - uid: 45679 + pos: 13.5,12.5 + parent: 45355 + - uid: 45846 components: - type: Transform - pos: 1.1839751,15.765409 - parent: 44970 - - uid: 45680 + pos: 12.5,12.5 + parent: 45355 + - uid: 45847 components: - type: Transform - pos: -2.871292,15.584854 - parent: 44970 -- proto: FloraRockSolid01 - entities: - - uid: 18935 + pos: 10.5,12.5 + parent: 45355 + - uid: 45848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.626484,-21.673767 - parent: 2 - - uid: 18936 + pos: 12.5,11.5 + parent: 45355 + - uid: 45849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.797843,-30.090118 - parent: 2 - - uid: 18937 + pos: 13.5,10.5 + parent: 45355 + - uid: 45850 components: - type: Transform - pos: -18.409931,-31.22976 - parent: 2 - - uid: 18938 + pos: 14.5,10.5 + parent: 45355 + - uid: 45851 components: - type: Transform - pos: -51.237476,-42.191505 - parent: 2 - - uid: 18939 + pos: 13.5,11.5 + parent: 45355 + - uid: 45852 components: - type: Transform - pos: -35.4274,-34.388577 - parent: 2 - - uid: 18940 + pos: 13.5,9.5 + parent: 45355 + - uid: 45853 components: - type: Transform - pos: -39.521267,-22.531828 - parent: 2 - - uid: 18941 + pos: 14.5,9.5 + parent: 45355 + - uid: 45854 components: - type: Transform - pos: -51.973087,-26.501543 - parent: 2 - - uid: 18942 + pos: 12.5,10.5 + parent: 45355 + - uid: 45855 components: - type: Transform - pos: -14.783329,34.24091 - parent: 2 - - uid: 18943 + pos: 11.5,11.5 + parent: 45355 + - uid: 45856 components: - type: Transform - pos: -86.65371,18.678427 - parent: 2 - - uid: 18944 + pos: 10.5,13.5 + parent: 45355 + - uid: 45857 components: - type: Transform - pos: -38.9414,-62.758217 - parent: 2 - - uid: 45681 + pos: 12.5,9.5 + parent: 45355 + - uid: 45858 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.1647723,-14.46128 - parent: 44970 - - uid: 45682 + pos: 13.5,8.5 + parent: 45355 + - uid: 45859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.793405,-0.03288406 - parent: 44970 - - uid: 45683 + pos: 14.5,8.5 + parent: 45355 + - uid: 45860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.435548,18.587032 - parent: 44970 -- proto: FloraRockSolid02 - entities: - - uid: 18945 + pos: 11.5,5.5 + parent: 45355 + - uid: 45861 components: - type: Transform - pos: -30.407883,-26.109953 - parent: 2 - - uid: 18946 + pos: 11.5,4.5 + parent: 45355 + - uid: 45862 components: - type: Transform - pos: -56.42115,-25.385908 - parent: 2 - - uid: 18947 + pos: 11.5,3.5 + parent: 45355 + - uid: 45863 components: - type: Transform - pos: -64.18862,10.373893 - parent: 2 - - uid: 18948 + pos: 12.5,6.5 + parent: 45355 + - uid: 45864 components: - type: Transform - pos: -57.538147,-13.42688 - parent: 2 - - uid: 18949 + pos: 12.5,5.5 + parent: 45355 + - uid: 45865 components: - type: Transform - pos: -39.41015,-62.406654 - parent: 2 - - uid: 45684 + pos: 12.5,4.5 + parent: 45355 + - uid: 45866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.060729,14.309612 - parent: 44970 - - uid: 45685 + pos: 12.5,3.5 + parent: 45355 + - uid: 45867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.304405,14.12389 - parent: 44970 - - uid: 45686 + pos: 13.5,6.5 + parent: 45355 + - uid: 45868 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.583126,-1.1800494 - parent: 44970 -- proto: FloraRockSolid03 - entities: - - uid: 18950 + pos: 13.5,5.5 + parent: 45355 + - uid: 45869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.49028,-9.560314 - parent: 2 - - uid: 18951 + pos: 13.5,4.5 + parent: 45355 + - uid: 45870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.130512,-26.064709 - parent: 2 - - uid: 18952 + pos: 13.5,3.5 + parent: 45355 + - uid: 45871 components: - type: Transform - pos: -16.450424,-23.446232 - parent: 2 - - uid: 18953 + pos: 14.5,6.5 + parent: 45355 + - uid: 45872 components: - type: Transform - pos: -49.98204,-36.94663 - parent: 2 - - uid: 18954 + pos: 14.5,5.5 + parent: 45355 + - uid: 45873 components: - type: Transform - pos: -42.490017,-28.484953 - parent: 2 - - uid: 18955 + pos: 14.5,4.5 + parent: 45355 + - uid: 45874 components: - type: Transform - pos: -30.51855,-33.407394 - parent: 2 - - uid: 18956 + pos: 14.5,3.5 + parent: 45355 + - uid: 45875 components: - type: Transform - pos: -58.530525,-19.504498 - parent: 2 - - uid: 18957 + pos: 10.5,5.5 + parent: 45355 + - uid: 45876 components: - type: Transform - pos: -86.5,-12.5 - parent: 2 - - uid: 18958 + pos: 10.5,4.5 + parent: 45355 + - uid: 45877 components: - type: Transform - pos: -73.5,-15.5 - parent: 2 - - uid: 18959 + pos: 12.5,2.5 + parent: 45355 + - uid: 45878 components: - type: Transform - pos: -63.480827,-11.48525 - parent: 2 - - uid: 18960 + pos: 13.5,2.5 + parent: 45355 + - uid: 45879 components: - type: Transform - pos: -83.41504,13.6461525 - parent: 2 - - uid: 18961 + pos: 15.5,4.5 + parent: 45355 + - uid: 45880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.49116,20.613113 - parent: 2 - - uid: 45687 + pos: 15.5,5.5 + parent: 45355 + - uid: 45881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.587032,-4.304634 - parent: 44970 - - uid: 45688 + pos: 11.5,-4.5 + parent: 45355 + - uid: 45882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.457189,8.426202 - parent: 44970 -- proto: FloraStalagmite1 - entities: - - uid: 18962 + pos: 13.5,-4.5 + parent: 45355 + - uid: 45883 components: - type: Transform - pos: 102.04234,5.8197517 - parent: 2 - - uid: 18963 + pos: 12.5,-3.5 + parent: 45355 + - uid: 45884 components: - type: Transform - pos: 66.632935,14.465519 - parent: 2 - - uid: 18964 + pos: 13.5,-3.5 + parent: 45355 + - uid: 45885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.458652,32.68442 - parent: 2 - - uid: 18965 + pos: 13.5,-2.5 + parent: 45355 + - uid: 45886 components: - type: Transform - pos: -57.50313,37.66106 - parent: 2 - - uid: 18966 + pos: 14.5,-3.5 + parent: 45355 + - uid: 45887 components: - type: Transform - pos: 94.44859,1.6010017 - parent: 2 - - uid: 18967 + pos: 14.5,-2.5 + parent: 45355 + - uid: 45888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.47006,-2.3387747 - parent: 2 - - uid: 18968 + pos: 14.5,-1.5 + parent: 45355 + - uid: 45889 components: - type: Transform - pos: 54.525036,42.604115 - parent: 2 - - uid: 18969 + pos: 15.5,-3.5 + parent: 45355 + - uid: 45890 components: - type: Transform - pos: 44.456116,-28.461113 - parent: 2 - - uid: 18970 + pos: 15.5,-2.5 + parent: 45355 + - uid: 45891 components: - type: Transform - pos: -45.125294,53.464348 - parent: 2 - - uid: 18971 + pos: 15.5,-1.5 + parent: 45355 + - uid: 45892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.60062,51.829163 - parent: 2 - - uid: 18972 + pos: 12.5,-4.5 + parent: 45355 + - uid: 45893 components: - type: Transform - pos: -41.449436,56.30371 - parent: 2 - - uid: 18973 + pos: 12.5,-5.5 + parent: 45355 + - uid: 45894 components: - type: Transform - pos: -83.51124,62.564114 - parent: 2 - - uid: 41792 + pos: 13.5,-6.5 + parent: 45355 + - uid: 45895 components: - type: Transform - pos: 18.602024,44.66945 - parent: 40203 - - uid: 41793 + pos: 13.5,-5.5 + parent: 45355 + - uid: 45896 components: - type: Transform - pos: 26.86792,45.48922 - parent: 40203 - - uid: 41794 + pos: 14.5,-5.5 + parent: 45355 + - uid: 45897 components: - type: Transform - pos: 38.547604,51.595234 - parent: 40203 -- proto: FloraStalagmite2 - entities: - - uid: 18974 + pos: 14.5,-6.5 + parent: 45355 + - uid: 45898 components: - type: Transform - pos: 58.40004,18.430933 - parent: 2 - - uid: 18975 + pos: 15.5,-5.5 + parent: 45355 + - uid: 45899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.45812,28.473413 - parent: 2 - - uid: 18976 + pos: 15.5,-6.5 + parent: 45355 + - uid: 45900 components: - type: Transform - pos: -42.726345,38.57124 - parent: 2 - - uid: 18977 + pos: 14.5,-4.5 + parent: 45355 + - uid: 45901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.44212,-1.6256576 - parent: 2 - - uid: 18978 + pos: 15.5,-4.5 + parent: 45355 + - uid: 45902 components: - type: Transform - pos: -23.529312,36.4073 - parent: 2 - - uid: 18979 + pos: 16.5,-5.5 + parent: 45355 + - uid: 45903 components: - type: Transform - pos: 61.302597,38.4861 - parent: 2 - - uid: 18980 + pos: 16.5,-4.5 + parent: 45355 + - uid: 45904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.26279,-7.360481 - parent: 2 - - uid: 18981 + pos: 16.5,-3.5 + parent: 45355 + - uid: 45905 components: - type: Transform - pos: 39.421726,45.497265 - parent: 2 - - uid: 18982 + pos: 16.5,-2.5 + parent: 45355 + - uid: 45906 components: - type: Transform - pos: -41.24631,56.51369 - parent: 2 - - uid: 18983 + pos: 16.5,-6.5 + parent: 45355 + - uid: 45907 components: - type: Transform - pos: -38.338245,54.801624 - parent: 2 - - uid: 18984 + pos: 16.5,-7.5 + parent: 45355 + - uid: 45908 components: - type: Transform - pos: -49.55578,56.719494 - parent: 2 - - uid: 18985 + pos: 15.5,-7.5 + parent: 45355 + - uid: 45909 components: - type: Transform - pos: -83.69874,62.70474 - parent: 2 - - uid: 18986 + pos: 16.5,-8.5 + parent: 45355 + - uid: 45910 components: - type: Transform - pos: -90.442116,51.369244 - parent: 2 - - uid: 18987 + pos: 15.5,-8.5 + parent: 45355 + - uid: 45911 components: - type: Transform - pos: -91.067116,51.619244 - parent: 2 - - uid: 41795 + pos: 0.5,-11.5 + parent: 45355 + - uid: 45912 components: - type: Transform - pos: 18.945774,44.41945 - parent: 40203 - - uid: 41796 + pos: 1.5,-11.5 + parent: 45355 + - uid: 45913 components: - type: Transform - pos: 28.571045,50.528847 - parent: 40203 - - uid: 41797 + pos: 0.5,-12.5 + parent: 45355 + - uid: 45914 components: - type: Transform - pos: 22.393652,53.711304 - parent: 40203 - - uid: 41798 + pos: -0.5,-12.5 + parent: 45355 + - uid: 45915 components: - type: Transform - pos: 26.39917,45.473595 - parent: 40203 - - uid: 41799 + pos: -0.5,-11.5 + parent: 45355 + - uid: 45916 components: - type: Transform - pos: 38.360104,51.251484 - parent: 40203 -- proto: FloraStalagmite3 - entities: - - uid: 18988 + pos: -1.5,-12.5 + parent: 45355 + - uid: 45917 components: - type: Transform - pos: -110.267494,37.600235 - parent: 2 - - uid: 18989 + pos: -0.5,-13.5 + parent: 45355 + - uid: 45918 components: - type: Transform - pos: -65.39993,38.307266 - parent: 2 - - uid: 18990 + pos: -1.5,-13.5 + parent: 45355 + - uid: 45919 components: - type: Transform - pos: 98.12047,-0.50837326 - parent: 2 - - uid: 18991 + pos: -1.5,-13.5 + parent: 45355 + - uid: 45920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.38016,-2.2453723 - parent: 2 - - uid: 18992 + pos: 0.5,-13.5 + parent: 45355 + - uid: 45921 components: - type: Transform - pos: -39.13671,40.35249 - parent: 2 - - uid: 18993 + pos: 1.5,-12.5 + parent: 45355 + - uid: 45922 components: - type: Transform - pos: -25.826187,39.516674 - parent: 2 - - uid: 18994 + pos: 6.5,-11.5 + parent: 45355 + - uid: 45923 components: - type: Transform - pos: 50.47174,-29.492363 - parent: 2 - - uid: 18995 + pos: 5.5,-11.5 + parent: 45355 + - uid: 45924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.61735,54.822292 - parent: 2 - - uid: 18996 + pos: 7.5,-11.5 + parent: 45355 + - uid: 45925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.36735,53.666042 - parent: 2 - - uid: 18997 + pos: 7.5,-12.5 + parent: 45355 + - uid: 45926 components: - type: Transform - pos: 31.497955,65.65556 - parent: 2 - - uid: 18998 + pos: 6.5,-12.5 + parent: 45355 + - uid: 45927 components: - type: Transform - pos: -40.60387,58.411 - parent: 2 - - uid: 18999 + pos: 5.5,-12.5 + parent: 45355 + - uid: 45928 components: - type: Transform - pos: -50.067173,56.594494 - parent: 2 - - uid: 19000 + pos: 6.5,-13.5 + parent: 45355 + - uid: 45929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.61977,45.652794 - parent: 2 - - uid: 19001 + pos: 7.5,-13.5 + parent: 45355 + - uid: 45930 components: - type: Transform - pos: -83.29249,62.439114 - parent: 2 - - uid: 19002 + pos: 8.5,-13.5 + parent: 45355 + - uid: 45931 components: - type: Transform - pos: -90.89524,51.462994 - parent: 2 - - uid: 19003 + pos: 8.5,-12.5 + parent: 45355 + - uid: 45932 components: - type: Transform - pos: -68.687614,14.731235 - parent: 2 - - uid: 19004 + pos: 9.5,-13.5 + parent: 45355 + - uid: 45933 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.813324,44.90319 - parent: 2 - - uid: 41800 + pos: 8.5,-11.5 + parent: 45355 + - uid: 45934 components: - type: Transform - pos: 16.490875,49.686523 - parent: 40203 -- proto: FloraStalagmite4 - entities: - - uid: 19005 + pos: 9.5,-12.5 + parent: 45355 + - uid: 45935 components: - type: Transform - pos: -66.57017,34.919716 - parent: 2 - - uid: 19006 + pos: 10.5,-13.5 + parent: 45355 + - uid: 45936 components: - type: Transform - pos: -38.76171,40.53999 - parent: 2 - - uid: 19007 + pos: 17.5,-4.5 + parent: 45355 + - uid: 45937 components: - type: Transform - pos: -23.810562,36.641674 - parent: 2 - - uid: 19008 + pos: 17.5,-5.5 + parent: 45355 + - uid: 45938 components: - type: Transform - pos: 98.51109,7.2728767 - parent: 2 - - uid: 19009 + pos: 17.5,-6.5 + parent: 45355 + - uid: 45939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.326935,25.587463 - parent: 2 - - uid: 19010 + pos: 17.5,-7.5 + parent: 45355 + - uid: 45940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.30627,22.638134 - parent: 2 - - uid: 19011 + pos: 10.5,-7.5 + parent: 45355 + - uid: 45941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.456535,-16.465868 - parent: 2 - - uid: 19012 + pos: 10.5,-10.5 + parent: 45355 + - uid: 45942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.49363,16.423029 - parent: 2 - - uid: 19013 + pos: 10.5,-9.5 + parent: 45355 + - uid: 45943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.513885,14.696718 - parent: 2 - - uid: 19014 + pos: 11.5,-10.5 + parent: 45355 + - uid: 45944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.491,21.593443 - parent: 2 - - uid: 19015 + pos: 11.5,-9.5 + parent: 45355 + - uid: 45945 components: - type: Transform - pos: 53.537674,18.400517 - parent: 2 - - uid: 19016 + pos: 12.5,-10.5 + parent: 45355 + - uid: 45946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.539227,53.509792 - parent: 2 - - uid: 19017 + pos: 12.5,-9.5 + parent: 45355 + - uid: 45947 components: - type: Transform - pos: 31.849518,65.42119 - parent: 2 - - uid: 19018 + pos: 11.5,-8.5 + parent: 45355 + - uid: 45948 components: - type: Transform - pos: -40.60387,58.69225 - parent: 2 - - uid: 19019 + pos: 7.5,-14.5 + parent: 45355 + - uid: 45949 components: - type: Transform - pos: -77.43015,61.4809 - parent: 2 -- proto: FloraStalagmite5 - entities: - - uid: 19020 + pos: -4.5,19.5 + parent: 45355 + - uid: 45950 components: - type: Transform - pos: -109.298744,37.537735 - parent: 2 - - uid: 19021 + pos: -4.5,20.5 + parent: 45355 + - uid: 45951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.42261,34.59067 - parent: 2 - - uid: 19022 + pos: -4.5,21.5 + parent: 45355 + - uid: 45952 components: - type: Transform - pos: 90.87901,-1.6162293 - parent: 2 - - uid: 19023 + pos: -4.5,22.5 + parent: 45355 + - uid: 45953 components: - type: Transform - pos: 91.29537,4.6947517 - parent: 2 - - uid: 19024 + pos: -3.5,22.5 + parent: 45355 + - uid: 45954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.48868,-14.280304 - parent: 2 - - uid: 19025 + pos: -3.5,21.5 + parent: 45355 + - uid: 45955 components: - type: Transform - pos: 61.583847,38.51735 - parent: 2 - - uid: 19026 + pos: -3.5,20.5 + parent: 45355 + - uid: 45956 components: - type: Transform - pos: 55.32191,44.197865 - parent: 2 - - uid: 19027 + pos: -2.5,22.5 + parent: 45355 + - uid: 45957 components: - type: Transform - pos: 39.765476,45.54414 - parent: 2 - - uid: 19028 + pos: -2.5,21.5 + parent: 45355 + - uid: 45958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.03812,51.657288 - parent: 2 - - uid: 19029 + pos: -2.5,20.5 + parent: 45355 + - uid: 45959 components: - type: Transform - pos: -45.67217,53.558098 - parent: 2 - - uid: 19030 + pos: -1.5,22.5 + parent: 45355 + - uid: 45960 components: - type: Transform - pos: -38.26012,54.645374 - parent: 2 - - uid: 19031 + pos: -1.5,21.5 + parent: 45355 + - uid: 45961 components: - type: Transform - pos: -90.67649,51.712994 - parent: 2 - - uid: 41801 + pos: -1.5,20.5 + parent: 45355 + - uid: 45962 components: - type: Transform - pos: 28.43042,50.810097 - parent: 40203 - - uid: 41802 + pos: -0.5,22.5 + parent: 45355 + - uid: 45963 components: - type: Transform - pos: 22.612402,53.60193 - parent: 40203 - - uid: 41803 + pos: -0.5,21.5 + parent: 45355 + - uid: 45964 components: - type: Transform - pos: 17.352024,53.821056 - parent: 40203 -- proto: FloraStalagmite6 - entities: - - uid: 19032 + pos: -0.5,20.5 + parent: 45355 + - uid: 45965 components: - type: Transform - pos: -109.72062,37.350235 - parent: 2 - - uid: 19033 + pos: 0.5,22.5 + parent: 45355 + - uid: 45966 components: - type: Transform - pos: -65.45344,42.66738 - parent: 2 - - uid: 19034 + pos: 0.5,21.5 + parent: 45355 + - uid: 45967 components: - type: Transform - pos: -66.28892,34.56034 - parent: 2 - - uid: 19035 + pos: 0.5,20.5 + parent: 45355 + - uid: 45968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.612785,-16.856493 - parent: 2 - - uid: 19036 + pos: 1.5,22.5 + parent: 45355 + - uid: 45969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.638885,14.446718 - parent: 2 - - uid: 19037 + pos: 1.5,21.5 + parent: 45355 + - uid: 45970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.53787,21.296568 - parent: 2 - - uid: 19038 + pos: 1.5,20.5 + parent: 45355 + - uid: 45971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.701935,25.290588 - parent: 2 - - uid: 19039 + pos: 2.5,22.5 + parent: 45355 + - uid: 45972 components: - type: Transform - pos: 53.756424,18.353642 - parent: 2 - - uid: 19040 + pos: 2.5,21.5 + parent: 45355 + - uid: 45973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.382977,51.900417 - parent: 2 - - uid: 19041 + pos: 2.5,20.5 + parent: 45355 + - uid: 45974 components: - type: Transform - pos: 32.320175,65.500656 - parent: 2 - - uid: 19042 + pos: 2.5,19.5 + parent: 45355 + - uid: 45975 components: - type: Transform - pos: -38.619495,54.44225 - parent: 2 - - uid: 19043 + pos: 3.5,18.5 + parent: 45355 + - uid: 45976 components: - type: Transform - pos: -49.821404,56.406994 - parent: 2 - - uid: 19044 + pos: 3.5,19.5 + parent: 45355 + - uid: 45977 components: - type: Transform - pos: -48.938427,52.345192 - parent: 2 - - uid: 19045 + pos: 3.5,19.5 + parent: 45355 + - uid: 45978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.30727,45.402794 - parent: 2 - - uid: 19046 + pos: 3.5,20.5 + parent: 45355 + - uid: 45979 components: - type: Transform - pos: -68.406364,14.293735 - parent: 2 - - uid: 41804 + pos: -5.5,20.5 + parent: 45355 + - uid: 45980 components: - type: Transform - pos: 16.834625,49.38965 - parent: 40203 -- proto: FloraTree01 - entities: - - uid: 19047 + pos: -5.5,19.5 + parent: 45355 + - uid: 45981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.7992115,-28.44827 - parent: 2 - - uid: 19048 + pos: -2.5,23.5 + parent: 45355 + - uid: 45982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.6949577,-21.670637 - parent: 2 -- proto: FloraTree03 - entities: - - uid: 19049 + pos: -1.5,24.5 + parent: 45355 + - uid: 45983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.792488,-21.771542 - parent: 2 - - uid: 19050 + pos: -2.5,24.5 + parent: 45355 + - uid: 45984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.163707,-23.295637 - parent: 2 - - uid: 41805 + pos: -0.5,24.5 + parent: 45355 + - uid: 45985 components: - type: Transform - pos: 48.13744,72.03712 - parent: 40203 -- proto: FloraTree04 - entities: - - uid: 19051 + pos: 1.5,24.5 + parent: 45355 + - uid: 45986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.870613,-27.130917 - parent: 2 - - uid: 19052 + pos: 0.5,24.5 + parent: 45355 + - uid: 45987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.069957,-27.061262 - parent: 2 - - uid: 19053 + pos: 0.5,23.5 + parent: 45355 + - uid: 45988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.288707,-24.920637 - parent: 2 - - uid: 41806 + pos: -0.5,23.5 + parent: 45355 + - uid: 45989 components: - type: Transform - pos: 51.090565,68.58399 - parent: 40203 - - uid: 41807 + pos: -1.5,23.5 + parent: 45355 + - uid: 45990 components: - type: Transform - pos: 51.090565,68.58399 - parent: 40203 -- proto: FloraTree05 - entities: - - uid: 19054 + pos: 1.5,23.5 + parent: 45355 + - uid: 45991 components: - - type: MetaData - desc: Оно точно ничего не сломает, не ломайте его. - name: манговое дерево - type: Transform - rot: -1.5707963267948966 rad - pos: -2.8255053,49.84973 - parent: 2 -- proto: FloraTree06 - entities: - - uid: 19055 + pos: -3.5,23.5 + parent: 45355 + - uid: 45992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.854988,-24.271542 - parent: 2 -- proto: FloraTreeConifer01 - entities: - - uid: 19056 + pos: -10.5,10.5 + parent: 45355 + - uid: 45993 components: - type: Transform - pos: -91.669304,-1.0524912 - parent: 2 - - uid: 19057 + pos: -5.5,-9.5 + parent: 45355 + - uid: 45994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.181652,-12.655373 - parent: 2 - - uid: 19058 + pos: -6.5,-9.5 + parent: 45355 + - uid: 45995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.292233,-4.9177246 - parent: 2 - - uid: 19059 + pos: -7.5,-9.5 + parent: 45355 + - uid: 45996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.25755,2.1777267 - parent: 2 - - uid: 19060 + pos: -7.5,-8.5 + parent: 45355 + - uid: 45997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.361366,-0.15720701 - parent: 2 - - uid: 19061 + pos: -5.5,-10.5 + parent: 45355 + - uid: 45998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.283241,-3.3373098 - parent: 2 - - uid: 19062 + pos: -4.5,-10.5 + parent: 45355 + - uid: 45999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.15718,-16.837992 - parent: 2 - - uid: 19063 + pos: -3.5,-10.5 + parent: 45355 + - uid: 46000 components: - type: Transform - pos: -1.2420921,7.2241993 - parent: 2 - - uid: 19064 + pos: -9.5,12.5 + parent: 45355 + - uid: 46001 components: - type: Transform - pos: -26.5,-55.5 - parent: 2 - - uid: 19065 + pos: -8.5,13.5 + parent: 45355 + - uid: 46002 components: - type: Transform - pos: 86.871056,-6.848641 - parent: 2 - - uid: 19066 + pos: -7.5,4.5 + parent: 45355 + - uid: 46003 components: - type: Transform - pos: 85.900795,-8.595261 - parent: 2 - - uid: 19067 + pos: -8.5,3.5 + parent: 45355 + - uid: 46004 components: - type: Transform - pos: 87.563934,-21.452082 - parent: 2 - - uid: 19068 + pos: -8.5,3.5 + parent: 45355 + - uid: 46005 components: - type: Transform - pos: -44.948822,-56.42806 - parent: 2 - - uid: 19069 + pos: -9.5,2.5 + parent: 45355 + - uid: 46006 components: - type: Transform - pos: -47.811768,-56.26004 - parent: 2 - - uid: 19070 + pos: -10.5,-0.5 + parent: 45355 + - uid: 46007 components: - type: Transform - pos: -49.616455,-54.689728 - parent: 2 - - uid: 19071 + pos: -10.5,-1.5 + parent: 45355 + - uid: 46688 components: - type: Transform - pos: -42.90431,-55.3099 - parent: 2 - - uid: 19072 + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 46584 + - uid: 46689 components: - type: Transform - pos: -42.71681,-58.356773 - parent: 2 - - uid: 19073 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 46584 + - uid: 46690 components: - type: Transform - pos: -19.23426,33.864883 - parent: 2 - - uid: 19074 + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 46584 + - uid: 46691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 84.03884,-6.974319 - parent: 2 - - uid: 19075 + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 46584 + - uid: 46692 components: - type: Transform - pos: -10.58639,30.130043 - parent: 2 - - uid: 19076 + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 46584 + - uid: 46693 components: - type: Transform - pos: -15.279507,27.776035 - parent: 2 - - uid: 19077 + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 46584 +- proto: FloorSnowChasm + entities: + - uid: 19045 components: - type: Transform - pos: -13.263882,32.04993 + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 parent: 2 - - uid: 19078 + - uid: 19046 components: - type: Transform - pos: 37.721203,-9.697929 + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 parent: 2 - - uid: 19079 + - uid: 19047 components: - type: Transform - pos: -89.491646,-5.421454 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 parent: 2 - - uid: 19080 + - uid: 19048 components: - type: Transform - pos: -90.429146,0.20354605 + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 parent: 2 - - uid: 19081 + - uid: 19049 components: - type: Transform - pos: -87.79494,-7.8007865 + rot: -1.5707963267948966 rad + pos: 6.5,-9.5 parent: 2 - - uid: 19082 + - uid: 19050 components: - type: Transform - pos: -82.44662,-11.149384 + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 parent: 2 - - uid: 19083 + - uid: 19051 components: - type: Transform - pos: -74.834496,-14.742662 + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 parent: 2 - - uid: 19084 + - uid: 19052 components: - type: Transform - pos: -69.29214,-15.157843 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 parent: 2 - - uid: 19085 + - uid: 19053 components: - type: Transform - pos: -89.5697,-10.501167 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 parent: 2 - - uid: 19086 + - uid: 19054 components: - type: Transform - pos: -112.6813,-13.853037 + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 parent: 2 - - uid: 19087 + - uid: 19055 components: - type: Transform - pos: -113.691315,-9.840519 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 parent: 2 - - uid: 19088 + - uid: 19056 components: - type: Transform - pos: -123.681915,-11.463993 + rot: -1.5707963267948966 rad + pos: -1.5,-7.5 parent: 2 - - uid: 19089 + - uid: 19057 components: - type: Transform - pos: -131.55449,3.623808 + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 parent: 2 - - uid: 19090 + - uid: 19058 components: - type: Transform - pos: -131.48631,-2.2912188 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 parent: 2 - - uid: 19091 + - uid: 19059 components: - type: Transform - pos: -120.40227,23.674152 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 parent: 2 - - uid: 19092 + - uid: 19060 components: - type: Transform - pos: -121.3104,19.437807 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - - uid: 19093 + - uid: 19061 components: - type: Transform - pos: -128.20016,6.856362 + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 parent: 2 - - uid: 19094 + - uid: 19062 components: - type: Transform - pos: -127.03587,1.661581 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 parent: 2 - - uid: 19095 + - uid: 42066 components: - type: Transform - pos: -130.55264,-3.2808104 - parent: 2 - - uid: 19096 + rot: 1.5707963267948966 rad + pos: 54.5,21.5 + parent: 40599 +- proto: FloorTileItemDarkPavement + entities: + - uid: 42067 components: - type: Transform - pos: -116.63716,-6.6862674 - parent: 2 -- proto: FloraTreeConifer02 - entities: - - uid: 19097 + rot: -2.792526803190927 rad + pos: 50.615902,53.661423 + parent: 40599 + - uid: 42068 components: - type: Transform - pos: 100.58188,-16.364399 - parent: 2 - - uid: 19098 + rot: 3.490658503988659 rad + pos: 57.537777,52.630173 + parent: 40599 + - uid: 42069 components: - type: Transform - pos: -92.77601,2.468275 - parent: 2 - - uid: 19099 + rot: 5.235987755982989 rad + pos: 60.77226,51.458298 + parent: 40599 + - uid: 42070 components: - type: Transform - pos: 10.294164,5.5523243 - parent: 2 - - uid: 19100 + rot: 0.5235987755982988 rad + pos: 52.193405,51.536423 + parent: 40599 +- proto: FloorTileItemGrayConcrete + entities: + - uid: 42071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.201412,-24.406338 - parent: 2 - - uid: 19101 + rot: 0.8377580409572782 rad + pos: 61.53104,57.086075 + parent: 40599 +- proto: FloorTileItemGrayConcreteMono + entities: + - uid: 42072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.713062,-18.147276 - parent: 2 - - uid: 19102 + rot: -0.47123889803846897 rad + pos: 59.359165,55.429825 + parent: 40599 + - uid: 42073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.68843,-19.291117 - parent: 2 - - uid: 19103 + rot: 0.3839724354387525 rad + pos: 58.03418,56.836075 + parent: 40599 +- proto: FloorTileItemSteelDiagonal + entities: + - uid: 42074 components: - type: Transform - pos: -8.1940565,4.629953 - parent: 2 - - uid: 19104 + rot: 2.792526803190927 rad + pos: 69.494064,74.19014 + parent: 40599 + - uid: 42075 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.278418,-27.359484 - parent: 2 - - uid: 19105 + rot: 1.2217304763960306 rad + pos: 64.25969,75.47139 + parent: 40599 + - uid: 42076 components: - type: Transform - pos: -5.5981274,7.341829 - parent: 2 - - uid: 19106 + rot: 0.5235987755982988 rad + pos: 68.431564,75.75264 + parent: 40599 + - uid: 42077 components: - type: Transform - pos: 66.527435,-9.508797 - parent: 2 - - uid: 19107 + rot: 1.7453292519943295 rad + pos: 61.056564,74.518265 + parent: 40599 +- proto: FloorTileItemSteelHerringbone + entities: + - uid: 42078 components: - type: Transform - pos: -55.145092,-50.303165 - parent: 2 - - uid: 19108 + rot: 2.0943951023931953 rad + pos: 57.350758,77.16485 + parent: 40599 + - uid: 42079 components: - type: Transform - pos: -56.544384,-48.532085 - parent: 2 - - uid: 19109 + rot: 0.17453292519943295 rad + pos: 54.678883,75.33672 + parent: 40599 + - uid: 42080 components: - type: Transform - pos: -52.786877,-50.50638 - parent: 2 - - uid: 19110 + rot: 1.3264502315156905 rad + pos: 54.507008,78.8836 + parent: 40599 +- proto: FloorTileItemWhite + entities: + - uid: 19063 components: - type: Transform - pos: -50.536877,-52.948994 + pos: 4.4294615,57.413853 parent: 2 - - uid: 19111 + - uid: 19064 components: - type: Transform - pos: -44.88844,-53.90993 + pos: 10.6325865,58.570103 parent: 2 - - uid: 19112 + - uid: 19065 components: - type: Transform - pos: -40.45875,-58.78493 + rot: -1.5707963267948966 rad + pos: 18.523212,56.507603 parent: 2 - - uid: 19113 + - uid: 19066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.89349,-0.6076951 + rot: -1.5707963267948966 rad + pos: 17.476337,57.491978 parent: 2 - - uid: 19114 +- proto: FloorTileItemWood + entities: + - uid: 19067 components: - type: Transform - pos: -59.87805,2.8148155 + pos: -39.523952,25.379528 parent: 2 - - uid: 19115 + - uid: 19068 components: - type: Transform - pos: -17.70301,34.083633 + pos: -32.133327,27.332653 parent: 2 - - uid: 19116 +- proto: FloorTileItemWoodLarge + entities: + - uid: 19069 components: - type: Transform - pos: -122.38059,-6.1641116 + pos: -45.531563,26.551403 parent: 2 - - uid: 19117 +- proto: FloorWaterEntity + entities: + - uid: 42081 components: - type: Transform - pos: -18.07801,35.34926 - parent: 2 - - uid: 19118 + rot: 3.141592653589793 rad + pos: 63.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42082 components: - type: Transform - pos: -77.615944,-18.463848 - parent: 2 - - uid: 19119 + rot: 3.141592653589793 rad + pos: 63.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42083 components: - type: Transform - pos: -7.8988895,30.692543 - parent: 2 - - uid: 19120 + rot: 3.141592653589793 rad + pos: 63.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42084 components: - type: Transform - pos: -2.923976,24.783024 - parent: 2 - - uid: 19121 + rot: 3.141592653589793 rad + pos: 63.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42085 components: - type: Transform - pos: -12.795131,26.57291 - parent: 2 - - uid: 19122 + rot: 3.141592653589793 rad + pos: 63.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42086 components: - type: Transform - pos: 34.486828,-7.401054 - parent: 2 - - uid: 19123 + rot: 3.141592653589793 rad + pos: 63.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42087 components: - type: Transform - pos: 40.8428,0.533314 - parent: 2 - - uid: 19124 + rot: 3.141592653589793 rad + pos: 64.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42088 components: - type: Transform - pos: 41.91396,-21.044197 - parent: 2 - - uid: 19125 + rot: 3.141592653589793 rad + pos: 63.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42089 components: - type: Transform - pos: 8.236084,5.5383263 - parent: 2 - - uid: 19126 + rot: 3.141592653589793 rad + pos: 64.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42090 components: - type: Transform - pos: 5.829834,8.163326 - parent: 2 - - uid: 19127 + rot: 3.141592653589793 rad + pos: 64.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42091 components: - type: Transform - pos: -4.972203,5.3266544 - parent: 2 - - uid: 19128 + rot: 3.141592653589793 rad + pos: 64.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42092 components: - type: Transform - pos: -88.50727,-1.858954 - parent: 2 - - uid: 19129 + rot: 3.141592653589793 rad + pos: 64.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42093 components: - type: Transform - pos: -85.04945,-16.203203 - parent: 2 - - uid: 19130 + rot: 3.141592653589793 rad + pos: 64.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42094 components: - type: Transform - pos: -81.11068,-15.344696 - parent: 2 - - uid: 19131 + rot: 3.141592653589793 rad + pos: 65.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42095 components: - type: Transform - pos: -77.90481,-13.805162 - parent: 2 - - uid: 19132 + rot: 3.141592653589793 rad + pos: 65.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42096 components: - type: Transform - pos: -66.80455,-17.52503 - parent: 2 - - uid: 19133 + rot: 3.141592653589793 rad + pos: 65.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42097 components: - type: Transform - pos: -68.55117,-19.40003 - parent: 2 - - uid: 19134 + rot: 3.141592653589793 rad + pos: 64.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42098 components: - type: Transform - pos: -64.387405,-21.439093 - parent: 2 - - uid: 19135 + rot: 3.141592653589793 rad + pos: 65.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42099 components: - type: Transform - pos: -73.06981,-14.7761 - parent: 2 - - uid: 19136 + rot: 3.141592653589793 rad + pos: 65.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42100 components: - type: Transform - pos: -129.1099,9.901508 - parent: 2 - - uid: 19137 + rot: 3.141592653589793 rad + pos: 65.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42101 components: - type: Transform - pos: -123.29634,17.95719 - parent: 2 - - uid: 19138 + rot: 3.141592653589793 rad + pos: 65.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42102 components: - type: Transform - pos: -125.83455,11.95112 - parent: 2 - - uid: 19139 + rot: 3.141592653589793 rad + pos: 66.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42103 components: - type: Transform - pos: -124.97046,-2.5788493 - parent: 2 - - uid: 19140 + rot: 3.141592653589793 rad + pos: 66.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42104 components: - type: Transform - pos: -117.152054,-13.287313 - parent: 2 - - uid: 19141 + rot: 3.141592653589793 rad + pos: 66.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42105 components: - type: Transform - pos: -126.86105,-6.226663 - parent: 2 - - uid: 19142 + rot: 3.141592653589793 rad + pos: 66.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42106 components: - type: Transform - pos: -132.73233,1.2426271 - parent: 2 - - uid: 19143 + rot: 3.141592653589793 rad + pos: 66.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42107 components: - type: Transform - pos: -117.13844,-9.115555 - parent: 2 - - uid: 19144 + rot: 3.141592653589793 rad + pos: 66.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42108 components: - type: Transform - pos: -56.15918,69.416664 - parent: 2 - - uid: 19145 + rot: 3.141592653589793 rad + pos: 66.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42109 components: - type: Transform - pos: -37.642708,-63.361618 - parent: 2 - - uid: 19146 + rot: 3.141592653589793 rad + pos: 67.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42110 components: - type: Transform - pos: -31.722492,-62.687782 - parent: 2 - - uid: 19147 + rot: 3.141592653589793 rad + pos: 67.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42111 components: - type: Transform - pos: -39.683838,-61.742985 - parent: 2 -- proto: FloraTreeConifer03 - entities: - - uid: 19148 + rot: 3.141592653589793 rad + pos: 67.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42112 components: - type: Transform - pos: -104.24762,-12.514573 - parent: 2 - - uid: 19149 + rot: 3.141592653589793 rad + pos: 67.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42113 components: - type: Transform - pos: 97.20688,-14.3186 - parent: 2 - - uid: 19150 + rot: 3.141592653589793 rad + pos: 67.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42114 components: - type: Transform - pos: 97.36313,-16.146725 - parent: 2 - - uid: 19151 + rot: 3.141592653589793 rad + pos: 67.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42115 components: - type: Transform - pos: 79.861534,-24.622877 - parent: 2 - - uid: 19152 + rot: 3.141592653589793 rad + pos: 68.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42116 components: - type: Transform - pos: -89.852486,-4.093472 - parent: 2 - - uid: 19153 + rot: 3.141592653589793 rad + pos: 67.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.3319,-23.559944 - parent: 2 - - uid: 19154 + rot: 3.141592653589793 rad + pos: 68.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.58158,-24.818771 - parent: 2 - - uid: 19155 + rot: 3.141592653589793 rad + pos: 68.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.959232,-15.653713 - parent: 2 - - uid: 19156 + rot: 3.141592653589793 rad + pos: 68.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.857723,5.945834 - parent: 2 - - uid: 19157 + rot: 3.141592653589793 rad + pos: 68.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.537537,12.389416 - parent: 2 - - uid: 19158 + rot: 3.141592653589793 rad + pos: 68.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.31343,-7.7453923 - parent: 2 - - uid: 19159 + rot: 3.141592653589793 rad + pos: 68.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.717663,-24.920881 - parent: 2 - - uid: 19160 + rot: 3.141592653589793 rad + pos: 62.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42124 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.3893633,-30.051624 - parent: 2 - - uid: 19161 + pos: 62.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42125 components: - type: Transform - pos: 3.614197,7.9429493 - parent: 2 - - uid: 19162 + rot: 3.141592653589793 rad + pos: 62.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42126 components: - type: Transform - pos: -26.5,-69.5 - parent: 2 - - uid: 19163 + rot: 3.141592653589793 rad + pos: 63.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42127 components: - type: Transform - pos: 64.594315,-14.419857 - parent: 2 - - uid: 19164 + rot: 3.141592653589793 rad + pos: 63.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42128 components: - type: Transform - pos: 73.61217,-7.451648 - parent: 2 - - uid: 19165 + rot: 3.141592653589793 rad + pos: 63.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42129 components: - type: Transform - pos: 90.191795,-21.250511 - parent: 2 - - uid: 19166 + rot: 3.141592653589793 rad + pos: 63.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42130 components: - type: Transform - pos: 82.44983,-21.5257 - parent: 2 - - uid: 19167 + rot: 3.141592653589793 rad + pos: 63.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42131 components: - type: Transform - pos: 70.8351,-21.292606 - parent: 2 - - uid: 19168 + rot: 3.141592653589793 rad + pos: 63.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42132 components: - type: Transform - pos: 89.45364,-9.258804 - parent: 2 - - uid: 19169 + rot: 3.141592653589793 rad + pos: 63.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42133 components: - type: Transform - pos: 85.2366,-24.502125 - parent: 2 - - uid: 19170 + rot: 3.141592653589793 rad + pos: 64.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42134 components: - type: Transform - pos: -6.426011,24.630806 - parent: 2 - - uid: 19171 + rot: 3.141592653589793 rad + pos: 64.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42135 components: - type: Transform - pos: -58.004467,-47.467228 - parent: 2 - - uid: 19172 + rot: 3.141592653589793 rad + pos: 64.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42136 components: - type: Transform - pos: -48.4275,-53.511494 - parent: 2 - - uid: 19173 + rot: 3.141592653589793 rad + pos: 64.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42137 components: - type: Transform - pos: -46.318127,-54.68337 - parent: 2 - - uid: 19174 + rot: 3.141592653589793 rad + pos: 64.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42138 components: - type: Transform - pos: -53.911877,-51.519306 - parent: 2 - - uid: 19175 + rot: 3.141592653589793 rad + pos: 64.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42139 components: - type: Transform - pos: -51.755627,-51.96462 - parent: 2 - - uid: 19176 + rot: 3.141592653589793 rad + pos: 64.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.29074,-25.69833 - parent: 2 - - uid: 19177 + rot: 3.141592653589793 rad + pos: 65.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.409115,4.68918 - parent: 2 - - uid: 19178 + rot: 3.141592653589793 rad + pos: 65.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42142 components: - type: Transform - pos: -18.42176,33.31801 - parent: 2 - - uid: 19179 + rot: 3.141592653589793 rad + pos: 65.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42143 components: - type: Transform - pos: -20.760033,34.614883 - parent: 2 - - uid: 19180 + rot: 3.141592653589793 rad + pos: 65.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42144 components: - type: Transform - pos: -75.503105,3.11745 - parent: 2 - - uid: 19181 + rot: 3.141592653589793 rad + pos: 65.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42145 components: - type: Transform - pos: -3.1488895,30.270668 - parent: 2 - - uid: 19182 + rot: 3.141592653589793 rad + pos: 65.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42146 components: - type: Transform - pos: 44.292732,-7.5498405 - parent: 2 - - uid: 19183 + rot: 3.141592653589793 rad + pos: 65.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42147 components: - type: Transform - pos: 28.338074,66.77217 - parent: 2 - - uid: 19184 + rot: 3.141592653589793 rad + pos: 66.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42148 components: - type: Transform - pos: 25.525574,68.52998 - parent: 2 - - uid: 19185 + rot: 3.141592653589793 rad + pos: 66.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42149 components: - type: Transform - pos: -2.5840106,6.2102013 - parent: 2 - - uid: 19186 + rot: 3.141592653589793 rad + pos: 66.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42150 components: - type: Transform - pos: -86.42133,-4.812079 - parent: 2 - - uid: 19187 + rot: 3.141592653589793 rad + pos: 66.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42151 components: - type: Transform - pos: -87.19564,-14.4832325 - parent: 2 - - uid: 19188 + rot: 3.141592653589793 rad + pos: 66.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42152 components: - type: Transform - pos: -84.251305,-10.780975 - parent: 2 - - uid: 19189 + rot: 3.141592653589793 rad + pos: 66.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42153 components: - type: Transform - pos: -79.71675,-10.141504 - parent: 2 - - uid: 19190 + rot: 3.141592653589793 rad + pos: 66.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42154 components: - type: Transform - pos: -80.39644,-16.446192 - parent: 2 - - uid: 19191 + rot: 3.141592653589793 rad + pos: 67.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42155 components: - type: Transform - pos: -75.490746,-14.039537 - parent: 2 - - uid: 19192 + rot: 3.141592653589793 rad + pos: 67.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42156 components: - type: Transform - pos: -75.121124,-18.526772 - parent: 2 - - uid: 19193 + rot: 3.141592653589793 rad + pos: 67.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42157 components: - type: Transform - pos: -63.262405,-18.532843 - parent: 2 - - uid: 19194 + rot: 3.141592653589793 rad + pos: 67.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42158 components: - type: Transform - pos: -92.69145,-11.580708 - parent: 2 - - uid: 19195 + rot: 3.141592653589793 rad + pos: 67.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42159 components: - type: Transform - pos: -94.42672,-9.568556 - parent: 2 - - uid: 19196 + rot: 3.141592653589793 rad + pos: 67.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42160 components: - type: Transform - pos: -121.00159,-13.454582 - parent: 2 - - uid: 19197 + rot: 3.141592653589793 rad + pos: 67.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42161 components: - type: Transform - pos: -128.74442,-9.167118 - parent: 2 - - uid: 19198 + rot: 3.141592653589793 rad + pos: 68.5,56.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42162 components: - type: Transform - pos: -125.13504,-10.245243 - parent: 2 - - uid: 19199 + rot: 3.141592653589793 rad + pos: 68.5,55.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42163 components: - type: Transform - pos: -135.30449,1.9597455 - parent: 2 - - uid: 19200 + rot: 3.141592653589793 rad + pos: 68.5,54.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42164 components: - type: Transform - pos: -134.55449,-2.063138 - parent: 2 - - uid: 19201 + rot: 3.141592653589793 rad + pos: 68.5,53.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42165 components: - type: Transform - pos: -122.04289,20.923649 - parent: 2 - - uid: 19202 + rot: 3.141592653589793 rad + pos: 68.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42166 components: - type: Transform - pos: -122.74098,14.902712 - parent: 2 - - uid: 19203 + rot: 3.141592653589793 rad + pos: 68.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42167 components: - type: Transform - pos: -128.25803,3.6798463 - parent: 2 - - uid: 19204 + rot: 3.141592653589793 rad + pos: 68.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42168 components: - type: Transform - pos: -126.78653,7.6268396 - parent: 2 - - uid: 19205 + rot: 3.141592653589793 rad + pos: 62.5,52.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42169 components: - type: Transform - pos: -128.53702,-5.1375237 - parent: 2 - - uid: 19206 + rot: 3.141592653589793 rad + pos: 62.5,50.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42170 components: - type: Transform - pos: -108.37817,-12.769699 - parent: 2 - - uid: 19207 + rot: 3.141592653589793 rad + pos: 62.5,51.5 + parent: 40599 + missingComponents: + - TileEntityEffect + - uid: 42171 components: - type: Transform - pos: 32.943054,-25.389698 - parent: 2 - - uid: 19208 + rot: 3.141592653589793 rad + pos: 54.5,45.5 + parent: 40599 + - uid: 42172 components: - type: Transform - pos: -71.69599,70.541664 - parent: 2 - - uid: 19209 + rot: 3.141592653589793 rad + pos: 50.5,45.5 + parent: 40599 + - uid: 42173 components: - type: Transform - pos: -54.855244,70.260414 - parent: 2 - - uid: 19210 + rot: 3.141592653589793 rad + pos: 46.5,41.5 + parent: 40599 + - uid: 42174 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.343105,-71.27218 - parent: 2 -- proto: FloraTreeSnow01 - entities: - - uid: 19211 + pos: 46.5,40.5 + parent: 40599 + - uid: 42175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.819572,-7.305222 - parent: 2 - - uid: 19212 + rot: -1.5707963267948966 rad + pos: 58.5,41.5 + parent: 40599 + - uid: 42176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.76337,-10.782381 - parent: 2 - - uid: 19213 + rot: -1.5707963267948966 rad + pos: 58.5,40.5 + parent: 40599 + - uid: 42177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.908314,-1.5299866 - parent: 2 - - uid: 19214 + rot: 3.141592653589793 rad + pos: 46.5,39.5 + parent: 40599 + - uid: 42178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.048283,-20.612474 - parent: 2 - - uid: 19215 + rot: -1.5707963267948966 rad + pos: 58.5,39.5 + parent: 40599 +- proto: FloraGreyStalagmite1 + entities: + - uid: 19070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.02597,-29.945316 + pos: -44.018322,-43.082207 parent: 2 - - uid: 19216 + - uid: 19071 components: - type: Transform - pos: -74.065605,4.1174498 + pos: -29.393757,-32.47761 parent: 2 - - uid: 19217 + - uid: 19072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.61839,-21.120125 + pos: 31.48461,46.442074 parent: 2 - - uid: 19218 + - uid: 19073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.04919,-9.339479 + pos: 19.470648,47.60126 parent: 2 - - uid: 19219 + - uid: 19074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.95544,-7.261354 + pos: 36.64754,43.31632 parent: 2 - - uid: 19220 + - uid: 19075 components: - type: Transform - pos: -0.17397594,24.298649 + pos: 43.515476,42.809765 parent: 2 - - uid: 19221 + - uid: 19076 components: - type: Transform - pos: 37.174328,-7.541679 + pos: 33.774704,55.368675 parent: 2 - - uid: 19222 + - uid: 19077 components: - type: Transform - pos: -127.164246,-9.538309 + pos: -44.145596,63.528923 parent: 2 - - uid: 19223 + - uid: 19078 components: - type: Transform - pos: -133.29846,-5.277633 + pos: -34.99341,56.45096 parent: 2 - - uid: 19224 + - uid: 19079 components: - type: Transform - pos: -122.600685,-12.034094 + rot: 1.5707963267948966 rad + pos: -71.52093,43.443344 parent: 2 - - uid: 19225 + - uid: 19080 components: - type: Transform - pos: -70.15496,-19.418156 + pos: -86.61973,37.550564 parent: 2 - - uid: 19226 + - uid: 19081 components: - type: Transform - pos: -123.13532,-7.290792 + pos: -115.444244,36.582355 parent: 2 - - uid: 19227 + - uid: 19082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.655605,-66.89718 + pos: -80.611404,57.304478 parent: 2 - - uid: 41808 - components: - - type: Transform - pos: 35.461685,25.972685 - parent: 40203 - - uid: 41809 - components: - - type: Transform - pos: 45.441742,36.27958 - parent: 40203 - - uid: 41810 + - uid: 19083 components: - type: Transform - pos: 41.364914,39.217342 - parent: 40203 - - uid: 41811 + pos: -24.818995,68.5339 + parent: 2 + - uid: 42179 components: - type: Transform - pos: 82.886475,33.7469 - parent: 40203 - - uid: 45689 + pos: 23.331152,59.555054 + parent: 40599 + - uid: 46008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.482787,-8.363316 - parent: 44970 - - uid: 45690 + pos: 2.9027252,16.723743 + parent: 45355 +- proto: FloraGreyStalagmite2 + entities: + - uid: 19084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.515173,-12.550816 - parent: 44970 - - uid: 45691 + pos: 103.29234,1.9135017 + parent: 2 + - uid: 19085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.546423,-10.441441 - parent: 44970 - - uid: 45692 + pos: -68.64094,39.362946 + parent: 2 + - uid: 19086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.8862715,-14.740809 - parent: 44970 - - uid: 45693 + pos: 55.321953,21.000837 + parent: 2 + - uid: 19087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.613717,-15.459559 - parent: 44970 - - uid: 45694 + pos: -39.67903,-39.755035 + parent: 2 + - uid: 19088 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.317617,-0.6030139 - parent: 44970 - - uid: 45695 + pos: 43.594486,34.12192 + parent: 2 + - uid: 19089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.959325,8.089431 - parent: 44970 - - uid: 45696 + pos: -52.651352,-45.666935 + parent: 2 + - uid: 19090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.798578,15.1384 - parent: 44970 -- proto: FloraTreeSnow02 - entities: - - uid: 19228 + pos: -23.822514,-25.673378 + parent: 2 + - uid: 19091 components: - type: Transform - pos: -120.122154,-7.9236217 + pos: -39.057907,-32.476578 parent: 2 - - uid: 19229 + - uid: 19092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.450592,-18.414192 + pos: -39.386032,-28.445328 parent: 2 - - uid: 19230 + - uid: 19093 components: - type: Transform - pos: 0.582947,7.3023243 + pos: -51.24333,-26.720293 parent: 2 - - uid: 19231 + - uid: 19094 components: - type: Transform - pos: -14.378601,26.786457 + pos: 32.73461,43.291267 parent: 2 - - uid: 19232 + - uid: 19095 components: - type: Transform - pos: -122.10101,-3.8337555 + pos: -24.310562,36.5948 parent: 2 - - uid: 19233 + - uid: 19096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.45443,-11.725639 + pos: -73.62654,39.683006 parent: 2 - - uid: 19234 + - uid: 19097 components: - type: Transform - pos: 11.51918,7.5610294 + pos: -63.243683,37.744766 parent: 2 - - uid: 19235 + - uid: 19098 components: - type: Transform - pos: -120.51166,14.566118 + pos: 47.39396,44.25898 parent: 2 - - uid: 19236 + - uid: 19099 components: - type: Transform - pos: -115.50795,-13.066473 + pos: 56.505505,39.906723 parent: 2 - - uid: 19237 + - uid: 19100 components: - type: Transform - pos: -84.178604,-13.843458 + rot: -1.5707963267948966 rad + pos: -45.428745,47.469788 parent: 2 - - uid: 41812 + - uid: 19101 components: - type: Transform - pos: 27.656998,32.331406 - parent: 40203 - - uid: 41813 + pos: -43.719044,51.276848 + parent: 2 + - uid: 19102 components: - type: Transform - pos: 39.50061,24.062729 - parent: 40203 - - uid: 41814 + pos: 32.79033,55.345238 + parent: 2 + - uid: 19103 components: - type: Transform - pos: 40.66179,43.436092 - parent: 40203 - - uid: 41815 + pos: -44.583096,63.528923 + parent: 2 + - uid: 19104 components: - type: Transform - pos: 80.0271,39.44221 - parent: 40203 - - uid: 45697 + pos: -37.01811,61.55396 + parent: 2 + - uid: 19105 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.6699524,-15.2067795 - parent: 44970 -- proto: FloraTreeSnow03 - entities: - - uid: 19238 + pos: -37.252483,61.257084 + parent: 2 + - uid: 19106 components: - type: Transform - pos: 76.892784,-25.513502 + pos: -40.14966,60.29471 parent: 2 - - uid: 19239 + - uid: 19107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.315598,-24.232727 + pos: -61.770164,-8.722572 parent: 2 - - uid: 19240 + - uid: 19108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.347485,3.0837348 + pos: -66.59625,4.6866136 parent: 2 - - uid: 19241 + - uid: 19109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.563522,1.6892184 + pos: -86.25363,15.182786 parent: 2 - - uid: 19242 + - uid: 19110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.402668,-7.199308 + pos: -20.423004,64.28894 parent: 2 - - uid: 19243 + - uid: 19111 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.011658,-21.985718 + pos: -31.385712,46.401 parent: 2 - - uid: 19244 + - uid: 42180 components: - type: Transform - pos: 13.376041,4.7866993 - parent: 2 - - uid: 19245 + pos: 34.905663,45.504845 + parent: 40599 + - uid: 46009 components: - type: Transform - pos: -14.849867,21.357962 - parent: 2 - - uid: 19246 + pos: -2.15423,15.014379 + parent: 45355 + - uid: 46010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.79974,1.3610549 - parent: 2 - - uid: 19247 + pos: -3.4250636,15.896323 + parent: 45355 + - uid: 46011 components: - type: Transform - pos: -117.86664,-7.9979014 - parent: 2 - - uid: 19248 + pos: -2.7931192,15.243546 + parent: 45355 + - uid: 46012 components: - type: Transform - pos: -75.23748,1.42995 - parent: 2 - - uid: 19249 + pos: -4.0014524,16.597712 + parent: 45355 + - uid: 46013 components: - type: Transform - pos: 4.8027954,24.428684 - parent: 2 - - uid: 19250 + pos: 0.73605835,15.202909 + parent: 45355 +- proto: FloraGreyStalagmite3 + entities: + - uid: 19112 components: - type: Transform - pos: 35.674328,-7.041679 + pos: -37.524822,71.555374 parent: 2 - - uid: 19251 + - uid: 19113 components: - type: Transform - pos: 31.188595,-5.6385345 + pos: 102.43297,5.5385017 parent: 2 - - uid: 19252 + - uid: 19114 components: - type: Transform - pos: 41.213852,-14.6109295 + pos: 55.853203,21.407087 parent: 2 - - uid: 19253 + - uid: 19115 components: - type: Transform - pos: 2.1095643,7.3820763 + rot: 3.141592653589793 rad + pos: 36.368298,34.776505 parent: 2 - - uid: 19254 + - uid: 19116 components: - type: Transform - pos: -119.59857,-9.304255 + pos: -33.12396,-33.55431 parent: 2 - - uid: 19255 + - uid: 19117 components: - type: Transform - pos: -87.898285,-12.202673 + pos: -30.505245,-26.82673 parent: 2 - - uid: 19256 + - uid: 19118 components: - type: Transform - pos: -62.349266,-21.34523 + pos: -40.479782,-31.492203 parent: 2 - - uid: 19257 + - uid: 19119 components: - type: Transform - pos: -71.953094,-16.140877 + pos: -56.623474,-20.683155 parent: 2 - - uid: 19258 + - uid: 19120 components: - type: Transform - pos: -89.607185,-0.7023649 + pos: 55.462578,21.614647 parent: 2 - - uid: 19259 + - uid: 19121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.907673,-73.38629 + pos: -27.623062,37.5323 parent: 2 - - uid: 41816 + - uid: 19122 components: - type: Transform - pos: 26.930435,34.675156 - parent: 40203 - - uid: 41817 + pos: 103.01109,1.7572517 + parent: 2 + - uid: 19123 components: - type: Transform - pos: 40.091255,29.652372 - parent: 40203 - - uid: 41818 + pos: 62.521347,32.584866 + parent: 2 + - uid: 19124 components: - type: Transform - pos: 37.770393,40.55935 - parent: 40203 - - uid: 41819 + pos: 56.630505,39.687973 + parent: 2 + - uid: 19125 components: - type: Transform - pos: 29.976799,36.357967 - parent: 40203 - - uid: 41820 + rot: -1.5707963267948966 rad + pos: -49.851727,48.259792 + parent: 2 + - uid: 19126 components: - type: Transform - pos: 44.046707,42.08844 - parent: 40203 - - uid: 41821 + pos: -43.687794,51.620598 + parent: 2 + - uid: 19127 components: - type: Transform - pos: 77.65142,29.880468 - parent: 40203 - - uid: 41822 + rot: -1.5707963267948966 rad + pos: -42.897495,46.657288 + parent: 2 + - uid: 19128 components: - type: Transform - pos: 82.34077,41.155254 - parent: 40203 - - uid: 41823 + pos: 34.19402,59.71244 + parent: 2 + - uid: 19129 components: - type: Transform - pos: 73.45946,31.62696 - parent: 40203 - - uid: 41824 + pos: -37.439983,61.71021 + parent: 2 + - uid: 19130 components: - type: Transform - pos: 60.604717,29.297094 - parent: 40203 - - uid: 41825 + pos: -36.45561,60.913334 + parent: 2 + - uid: 19131 components: - type: Transform - pos: 28.914082,40.18123 - parent: 40203 - - uid: 45698 + pos: -40.571533,60.48221 + parent: 2 + - uid: 19132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.050729156,-15.1911545 - parent: 44970 -- proto: FloraTreeSnow04 - entities: - - uid: 19260 + pos: -61.699852,-9.038979 + parent: 2 + - uid: 19133 components: - type: Transform - pos: -101.523994,-11.092698 + pos: -62.519196,-0.59986687 parent: 2 - - uid: 19261 + - uid: 19134 components: - type: Transform - pos: 97.5975,-24.501892 + pos: -61.491997,15.545826 parent: 2 - - uid: 19262 + - uid: 19135 components: - type: Transform - pos: 99.56625,-17.676899 + pos: -115.350494,36.418293 parent: 2 - - uid: 19263 + - uid: 19136 components: - type: Transform - pos: 83.30169,-23.685377 + pos: -74.34057,-24.690931 parent: 2 - - uid: 19264 + - uid: 19137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.171303,14.009338 + pos: -67.520256,-25.429213 parent: 2 - - uid: 19265 + - uid: 19138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.295517,-10.647301 + pos: -20.52935,64.453 parent: 2 - - uid: 19266 + - uid: 19139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.117764,-24.40325 + pos: -117.37909,32.3793 parent: 2 - - uid: 19267 + - uid: 19140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.811054,7.138578 + pos: -97.79074,45.386734 parent: 2 - - uid: 19268 + - uid: 42181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.32,-16.07546 - parent: 2 - - uid: 19269 + pos: 20.475252,51.434723 + parent: 40599 + - uid: 42182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.957355,-2.1133704 - parent: 2 - - uid: 19270 + pos: 35.327538,45.73922 + parent: 40599 + - uid: 46014 components: - type: Transform - pos: -14.378601,21.968887 - parent: 2 - - uid: 19271 + pos: 1.6735585,16.161243 + parent: 45355 +- proto: FloraGreyStalagmite4 + entities: + - uid: 19141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.784115,5.361055 + pos: -53.55943,25.54044 parent: 2 - - uid: 19272 + - uid: 19142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.514923,30.99669 + pos: -36.31974,-46.662876 parent: 2 - - uid: 19273 + - uid: 19143 components: - type: Transform - pos: -4.2113895,31.208168 + pos: -21.484697,-26.600515 parent: 2 - - uid: 19274 + - uid: 19144 components: - type: Transform - pos: -15.904507,32.08118 + pos: -37.46771,-30.569935 parent: 2 - - uid: 19275 + - uid: 19145 components: - type: Transform - pos: 29.782345,-4.1229095 + pos: 86.65296,4.4916267 parent: 2 - - uid: 19276 + - uid: 19146 components: - type: Transform - pos: 32.188595,0.4156146 + pos: -47.629395,37.444145 parent: 2 - - uid: 19277 + - uid: 19147 components: - type: Transform - pos: 42.104477,-11.517628 + rot: -1.5707963267948966 rad + pos: 83.57559,-3.3542852 parent: 2 - - uid: 19278 + - uid: 19148 components: - type: Transform - pos: 5.001709,7.2172794 + rot: -1.5707963267948966 rad + pos: 72.48569,-0.22939968 parent: 2 - - uid: 19279 + - uid: 19149 components: - type: Transform - pos: -8.378452,7.8110294 + rot: -1.5707963267948966 rad + pos: 66.55764,27.606134 parent: 2 - - uid: 19280 + - uid: 19150 components: - type: Transform - pos: -126.7672,10.217663 + pos: 47.83146,44.587105 parent: 2 - - uid: 19281 + - uid: 19151 components: - type: Transform - pos: -110.78415,-12.510317 + pos: 37.01871,43.365776 parent: 2 - - uid: 19282 + - uid: 19152 components: - type: Transform - pos: -127.83267,11.38818 + rot: -1.5707963267948966 rad + pos: -42.44437,46.516663 parent: 2 - - uid: 19283 + - uid: 19153 components: - type: Transform - pos: 10.549877,-29.313246 + pos: -47.187794,47.511223 parent: 2 - - uid: 19284 + - uid: 19154 components: - type: Transform - pos: -73.47724,69.479164 + pos: 33.61064,54.85305 parent: 2 - - uid: 19285 + - uid: 19155 components: - type: Transform - pos: -57.494064,75.43609 + pos: -45.567924,58.533623 parent: 2 - - uid: 41826 + - uid: 19156 components: - type: Transform - pos: 46.438892,20.758368 - parent: 40203 - - uid: 41827 + pos: -36.814983,61.21021 + parent: 2 + - uid: 19157 components: - type: Transform - pos: 58.75167,33.85061 - parent: 40203 - - uid: 41828 + pos: -35.446533,56.51346 + parent: 2 + - uid: 19158 components: - type: Transform - pos: 56.40831,32.870625 - parent: 40203 - - uid: 45699 + pos: -83.1307,51.39813 + parent: 2 + - uid: 19159 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.236332,-15.355529 - parent: 44970 - - uid: 45700 + rot: 1.5707963267948966 rad + pos: -72.08343,43.49022 + parent: 2 + - uid: 19160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.406036,12.064729 - parent: 44970 - - uid: 45701 + pos: -66.5273,4.636072 + parent: 2 + - uid: 19161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.286016,17.132244 - parent: 44970 -- proto: FloraTreeSnow05 - entities: - - uid: 19286 + pos: -86.53205,15.40781 + parent: 2 + - uid: 19162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.507336,-5.3337474 + pos: -83.684395,23.598963 parent: 2 - - uid: 19287 + - uid: 19163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.88179,13.115231 + pos: -78.51833,20.470057 parent: 2 - - uid: 19288 + - uid: 19164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.270557,9.740141 + pos: -81.52795,26.525595 parent: 2 - - uid: 19289 + - uid: 19165 components: - type: Transform - pos: 6.504822,6.4741993 + pos: -81.31701,26.279501 parent: 2 - - uid: 19290 + - uid: 19166 components: - type: Transform - pos: -4.5852327,25.533638 + pos: -62.56607,-0.42799187 parent: 2 - - uid: 19291 + - uid: 19167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.97161,-25.451319 + pos: -61.53887,15.288013 parent: 2 - - uid: 19292 + - uid: 19168 components: - type: Transform - pos: -1.673976,24.298649 + pos: -20.37613,64.38269 parent: 2 - - uid: 19293 + - uid: 19169 components: - type: Transform - pos: -16.310757,30.64368 + pos: -24.506495,68.54952 parent: 2 - - uid: 19294 + - uid: 19170 components: - type: Transform - pos: 29.017761,67.54561 + rot: 3.141592653589793 rad + pos: -56.48815,-16.613672 parent: 2 - - uid: 19295 + - uid: 19171 components: - type: Transform - pos: -126.408264,14.619928 + rot: 1.5707963267948966 rad + pos: -83.44925,23.472488 parent: 2 - - uid: 19296 + - uid: 19172 components: - type: Transform - pos: -126.74074,5.411743 + pos: -97.462616,45.542984 parent: 2 - - uid: 19297 + - uid: 42183 components: - type: Transform - pos: -126.42221,0.3104272 - parent: 2 - - uid: 19298 + pos: 23.456152,59.60193 + parent: 40599 + - uid: 42184 components: - type: Transform - pos: -125.46069,-6.8999896 - parent: 2 - - uid: 19299 + pos: 31.564457,56.39302 + parent: 40599 + - uid: 42185 components: - type: Transform - pos: -115.692444,-8.998375 - parent: 2 - - uid: 19300 + pos: 34.608788,45.661095 + parent: 40599 + - uid: 46015 components: - type: Transform - pos: -65.962975,-17.834398 - parent: 2 - - uid: 19301 + pos: -1.3150636,15.209854 + parent: 45355 +- proto: FloraGreyStalagmite5 + entities: + - uid: 19173 components: - type: Transform - pos: -65.44599,75.135414 + pos: -37.134197,71.617874 parent: 2 - - uid: 19302 + - uid: 19174 components: - type: Transform - pos: -57.056564,74.43609 + pos: -47.54717,47.729973 parent: 2 - - uid: 19303 + - uid: 19175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.740627,-65.68097 + pos: -52.035046,-35.222733 parent: 2 - - uid: 19304 + - uid: 19176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.63998,-72.19405 + pos: -44.73817,-43.37879 parent: 2 - - uid: 41829 - components: - - type: Transform - pos: 48.876392,19.492743 - parent: 40203 - - uid: 41830 - components: - - type: Transform - pos: 51.47974,31.558582 - parent: 40203 - - uid: 41831 + - uid: 19177 components: - type: Transform - pos: 34.17211,37.061092 - parent: 40203 - - uid: 41832 + pos: 32.476078,43.391556 + parent: 2 + - uid: 19178 components: - type: Transform - pos: 61.517296,38.374046 - parent: 40203 - - uid: 41833 + pos: 61.540245,20.415308 + parent: 2 + - uid: 19179 components: - type: Transform - pos: 69.596664,23.876787 - parent: 40203 - - uid: 41834 + pos: -55.44063,34.225395 + parent: 2 + - uid: 19180 components: - type: Transform - pos: 84.49702,39.538067 - parent: 40203 - - uid: 41835 + rot: -1.5707963267948966 rad + pos: 83.30997,-3.1667852 + parent: 2 + - uid: 19181 components: - type: Transform - pos: 70.69383,44.77529 - parent: 40203 -- proto: FloraTreeSnow06 - entities: - - uid: 19305 + pos: 94.21422,1.9760017 + parent: 2 + - uid: 19182 components: - type: Transform - pos: 100.53665,-33.94917 + pos: 47.472084,44.72773 parent: 2 - - uid: 19306 + - uid: 19183 components: - type: Transform rot: -1.5707963267948966 rad - pos: 83.93981,-8.105104 + pos: 65.57529,-7.485481 parent: 2 - - uid: 19307 + - uid: 19184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.71197,-20.1928 + rot: -1.5707963267948966 rad + pos: 72.72006,-0.43252468 parent: 2 - - uid: 19308 + - uid: 19185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.744308,8.744913 + rot: -1.5707963267948966 rad + pos: 66.80764,27.52801 parent: 2 - - uid: 19309 + - uid: 19186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.887745,6.857328 + pos: 36.784336,43.709526 parent: 2 - - uid: 19310 + - uid: 19187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.921696,-15.723898 + pos: 43.609226,42.528515 parent: 2 - - uid: 19311 + - uid: 19188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.901346,-27.16413 + pos: 23.346066,65.4911 parent: 2 - - uid: 19312 + - uid: 19189 components: - type: Transform - pos: -3.7169676,5.6773243 + pos: 33.25908,55.22805 parent: 2 - - uid: 19313 + - uid: 19190 components: - type: Transform - pos: -24.5,-54.5 + pos: -36.627483,61.64771 parent: 2 - - uid: 19314 + - uid: 19191 components: - type: Transform - pos: -8.382108,23.486763 + rot: 3.141592653589793 rad + pos: 59.4616,27.63027 parent: 2 - - uid: 19315 + - uid: 19192 components: - type: Transform - pos: -127.21039,-4.46668 + rot: 1.5707963267948966 rad + pos: -72.47405,43.77147 parent: 2 - - uid: 19316 + - uid: 19193 components: - type: Transform - pos: -90.87544,-9.454807 + pos: -24.350245,68.81515 parent: 2 - - uid: 19317 + - uid: 19194 components: - type: Transform - pos: -9.33639,29.817543 + pos: -61.18731,15.405201 parent: 2 - - uid: 19318 + - uid: 19195 components: - type: Transform - pos: 27.049011,67.49873 + pos: -86.4791,37.7615 parent: 2 - - uid: 19319 + - uid: 19196 components: - type: Transform - pos: 24.025574,69.444046 + pos: -70.36513,46.428333 parent: 2 - - uid: 19320 + - uid: 19197 components: - type: Transform - pos: -135.46486,0.9308915 + pos: -62.341125,22.502546 parent: 2 - - uid: 19321 + - uid: 19198 components: - type: Transform - pos: -125.09421,-4.1803827 + pos: -73.68916,6.4838057 parent: 2 - - uid: 19322 + - uid: 19199 components: - type: Transform - pos: -79.025024,-13.152241 + pos: -67.62515,-12.531757 parent: 2 - - uid: 19323 + - uid: 19200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.07748,-69.77218 + pos: -61.894142,-9.024729 parent: 2 - - uid: 41836 + - uid: 19201 components: - type: Transform - pos: 55.180862,23.805243 - parent: 40203 - - uid: 41837 + pos: -56.11831,-16.58891 + parent: 2 + - uid: 19202 components: - type: Transform - pos: 48.909676,29.575954 - parent: 40203 - - uid: 41838 + pos: -62.644196,-0.16236687 + parent: 2 + - uid: 19203 components: - type: Transform - pos: 65.6711,33.560753 - parent: 40203 - - uid: 41839 + pos: -80.47078,57.46854 + parent: 2 + - uid: 19204 components: - type: Transform - pos: 78.260796,25.778906 - parent: 40203 - - uid: 45702 + pos: -67.69604,-25.394056 + parent: 2 + - uid: 19205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.319838,8.087586 - parent: 44970 - - uid: 45703 + pos: -53.606304,25.29044 + parent: 2 + - uid: 42186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.876711,-9.954698 - parent: 44970 - - uid: 45704 + pos: 31.423832,56.61177 + parent: 40599 + - uid: 46016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.693164,-12.044512 - parent: 44970 - - uid: 45705 + pos: -3.1958969,16.132435 + parent: 45355 + - uid: 46017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5068755,-14.179045 - parent: 44970 - - uid: 45706 + pos: -3.0431192,15.50049 + parent: 45355 + - uid: 46018 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.864398,-13.464373 - parent: 44970 - - uid: 45707 + pos: 2.5173085,16.307076 + parent: 45355 + - uid: 46019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.817523,-12.151873 - parent: 44970 - - uid: 45708 + pos: 0.9756417,15.859159 + parent: 45355 +- proto: FloraGreyStalagmite6 + entities: + - uid: 19206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.644619,-10.236674 - parent: 44970 - - uid: 45709 + pos: -83.490074,51.351254 + parent: 2 + - uid: 19207 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.418034,1.6508749 - parent: 44970 - - uid: 45710 + pos: -68.50031,39.737946 + parent: 2 + - uid: 19208 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.4559407,14.213188 - parent: 44970 - - uid: 45711 + pos: -61.306183,33.401016 + parent: 2 + - uid: 19209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.566153,13.7351265 - parent: 44970 -- proto: FloraTreeStump - entities: - - uid: 41840 + pos: -27.380245,-26.67048 + parent: 2 + - uid: 19210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.276016,33.400635 - parent: 40203 - - uid: 41841 + pos: -51.440197,-41.91033 + parent: 2 + - uid: 19211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.79831,31.040726 - parent: 40203 - - uid: 45712 + pos: -54.455822,-38.050957 + parent: 2 + - uid: 19212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.6187067,18.962374 - parent: 44970 - - uid: 45713 + pos: -50.377697,-37.519707 + parent: 2 + - uid: 19213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.800167,11.602237 - parent: 44970 - - uid: 45714 + pos: 16.703608,44.235615 + parent: 2 + - uid: 19214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.858823,1.736839 - parent: 44970 - - uid: 45715 + pos: 31.125235,46.42645 + parent: 2 + - uid: 19215 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.9039645,-14.096798 - parent: 44970 - - uid: 45716 + pos: 33.287197,46.603783 + parent: 2 + - uid: 19216 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.624448,12.728599 - parent: 44970 - - uid: 45717 + pos: 37.033966,42.942413 + parent: 2 + - uid: 19217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.4664645,-12.346798 - parent: 44970 - - uid: 45718 + pos: 98.54234,-0.66462326 + parent: 2 + - uid: 19218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.830197,2.6098442 - parent: 44970 - - uid: 45719 + pos: -40.613365,37.144115 + parent: 2 + - uid: 19219 components: - type: Transform - pos: 8.0501375,-5.578968 - parent: 44970 - - uid: 45720 + pos: 62.286972,32.63174 + parent: 2 + - uid: 19220 components: - type: Transform - pos: 0.5158243,-8.71451 - parent: 44970 - - uid: 45721 + rot: -1.5707963267948966 rad + pos: 74.56076,4.4011774 + parent: 2 + - uid: 19221 components: - type: Transform - pos: 11.103602,-12.401955 - parent: 44970 - - uid: 45722 + pos: 36.33121,43.47515 + parent: 2 + - uid: 19222 components: - type: Transform - pos: 15.822352,2.093999 - parent: 44970 -- proto: FloraTreeStumpConifer - entities: - - uid: 41842 + pos: 22.631588,46.366955 + parent: 2 + - uid: 19223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.14775,31.869911 - parent: 40203 - - uid: 41843 + pos: 52.50299,-32.476738 + parent: 2 + - uid: 19224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 77.234924,38.61676 - parent: 40203 - - uid: 41844 + rot: -1.5707963267948966 rad + pos: -50.0861,48.447292 + parent: 2 + - uid: 19225 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.356415,41.71051 - parent: 40203 - - uid: 41845 + pos: 34.404957,59.407753 + parent: 2 + - uid: 19226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.857315,25.302055 - parent: 40203 - - uid: 41846 + pos: -36.377483,60.975834 + parent: 2 + - uid: 19227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.715027,34.549255 - parent: 40203 - - uid: 41847 + pos: -36.35996,61.350834 + parent: 2 + - uid: 19228 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.031662,40.352585 - parent: 40203 - - uid: 45723 - components: - - type: Transform - pos: -5.5707426,-4.5113854 - parent: 44970 -- proto: FoamCutlass - entities: - - uid: 19324 - components: - - type: Transform - pos: -108.75692,2.527192 + pos: 59.30535,27.25527 parent: 2 -- proto: FolderSpawner - entities: - - uid: 19325 + - uid: 19229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.019881,-12.6802435 + pos: -80.49034,61.527775 parent: 2 - - uid: 19326 + - uid: 19230 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.207381,-12.6802435 + pos: -73.40875,6.2803636 parent: 2 - - uid: 19327 + - uid: 19231 components: - type: Transform - pos: -26.658552,52.026752 + pos: -62.528236,22.496458 parent: 2 - - uid: 19328 + - uid: 19232 components: - type: Transform - pos: 40.49442,-43.57073 + pos: -78.31218,20.269896 parent: 2 - - uid: 19329 + - uid: 19233 components: - type: Transform - pos: 40.635044,-43.35198 + pos: -82.97238,13.260911 parent: 2 - - uid: 19330 + - uid: 19234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5089273,1.0137157 + pos: -86.95676,15.417161 parent: 2 - - uid: 19331 + - uid: 19235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.041117,-12.460371 + pos: -67.28381,-12.683272 parent: 2 - - uid: 19332 + - uid: 19236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.3683023,-1.5175343 + pos: -115.23331,36.699543 parent: 2 - - uid: 19333 + - uid: 19237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5870523,1.1855907 + rot: 3.141592653589793 rad + pos: -56.5819,-16.426172 parent: 2 - - uid: 19334 + - uid: 19238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.427551,3.7248254 + rot: 1.5707963267948966 rad + pos: -83.9805,23.409988 parent: 2 - - uid: 19335 + - uid: 19239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.458801,3.8810754 + rot: 3.141592653589793 rad + pos: -31.432587,46.5885 parent: 2 - - uid: 19336 + - uid: 42187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.562232,-37.08457 - parent: 2 - - uid: 19337 + pos: 20.490877,51.512848 + parent: 40599 + - uid: 46020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.452857,-37.350197 - parent: 2 - - uid: 19338 + pos: -4.0778413,16.8616 + parent: 45355 + - uid: 46021 components: - type: Transform - pos: 32.317886,-53.38665 - parent: 2 - - uid: 19339 + pos: -3.8903413,16.229656 + parent: 45355 + - uid: 46022 components: - type: Transform - pos: 32.55226,-53.5429 - parent: 2 - - uid: 19340 + pos: -3.584786,16.069935 + parent: 45355 + - uid: 46023 components: - type: Transform - pos: -4.3732243,-5.406137 - parent: 2 - - uid: 19341 + pos: -3.0292304,15.743546 + parent: 45355 + - uid: 46024 components: - type: Transform - pos: -4.6232243,-5.515512 - parent: 2 - - uid: 19342 + pos: 0.3089751,15.140409 + parent: 45355 + - uid: 46025 components: - type: Transform - pos: 52.40338,-53.22698 - parent: 2 - - uid: 19343 + pos: -2.3139524,15.104656 + parent: 45355 + - uid: 46026 components: - type: Transform - pos: 11.347072,-6.4972415 - parent: 2 - - uid: 19344 + pos: -1.682008,15.06299 + parent: 45355 + - uid: 46027 components: - type: Transform - pos: 11.628322,-6.4816165 - parent: 2 - - uid: 19345 + pos: 0.9027251,15.421659 + parent: 45355 + - uid: 46028 components: - type: Transform - pos: 52.544006,-53.492603 - parent: 2 - - uid: 19346 + pos: 1.2464751,15.984159 + parent: 45355 + - uid: 46029 components: - type: Transform - pos: 16.751728,-34.618332 - parent: 2 - - uid: 19347 + pos: 2.2152252,15.984159 + parent: 45355 + - uid: 46030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.820408,19.49928 - parent: 2 - - uid: 19348 + pos: 2.9339752,16.817493 + parent: 45355 + - uid: 46031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.914158,19.608656 - parent: 2 - - uid: 19349 + pos: 2.8610585,16.182076 + parent: 45355 + - uid: 46032 components: - type: Transform - pos: -34.594933,1.7128587 - parent: 2 - - uid: 19350 + pos: 1.1839751,15.765409 + parent: 45355 + - uid: 46033 components: - type: Transform - pos: -34.313683,2.2909837 - parent: 2 - - uid: 19351 + pos: -2.871292,15.584854 + parent: 45355 +- proto: FloraRockSolid01 + entities: + - uid: 19240 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.589031,57.569798 + pos: 27.626484,-21.673767 parent: 2 - - uid: 19352 + - uid: 19241 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.448406,57.601048 + pos: 7.797843,-30.090118 parent: 2 - - uid: 19353 + - uid: 19242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4549136,-32.81617 + pos: -18.409931,-31.22976 parent: 2 - - uid: 19354 + - uid: 19243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.927282,-29.379726 + pos: -51.237476,-42.191505 parent: 2 - - uid: 19355 + - uid: 19244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5354357,-1.3597445 + pos: -35.4274,-34.388577 parent: 2 - - uid: 19356 + - uid: 19245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.6760607,-1.4691195 + pos: -39.521267,-22.531828 parent: 2 - - uid: 19357 + - uid: 19246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.51546,-6.0062623 + pos: -51.973087,-26.501543 parent: 2 - - uid: 19358 + - uid: 19247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.40608,-6.1781373 + pos: -14.783329,34.24091 parent: 2 - - uid: 19359 + - uid: 19248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.41413,-14.582071 + pos: -86.65371,18.678427 parent: 2 - - uid: 19360 + - uid: 19249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.45647,-31.498802 + pos: -38.9414,-62.758217 parent: 2 - - uid: 19361 + - uid: 46034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.55022,-31.639427 - parent: 2 - - uid: 19362 + rot: 3.141592653589793 rad + pos: 2.1647723,-14.46128 + parent: 45355 + - uid: 46035 components: - type: Transform - pos: 75.179825,-38.36977 - parent: 2 - - uid: 19363 + rot: 3.141592653589793 rad + pos: -12.793405,-0.03288406 + parent: 45355 + - uid: 46036 components: - type: Transform - pos: 75.398575,-38.43227 - parent: 2 - - uid: 19364 + rot: 3.141592653589793 rad + pos: -5.435548,18.587032 + parent: 45355 +- proto: FloraRockSolid02 + entities: + - uid: 19250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.73356,1.6354549 + pos: -30.407883,-26.109953 parent: 2 - - uid: 19365 + - uid: 19251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.48356,1.52608 + pos: -56.42115,-25.385908 parent: 2 - - uid: 19366 + - uid: 19252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.78043,1.6042049 + pos: -64.18862,10.373893 parent: 2 - - uid: 19367 + - uid: 19253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.737946,56.721607 + pos: -57.538147,-13.42688 parent: 2 - - uid: 19368 + - uid: 19254 components: - type: Transform - pos: -74.800446,56.830982 + pos: -39.41015,-62.406654 parent: 2 - - uid: 41848 + - uid: 46037 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.362946,77.59976 - parent: 40203 - - uid: 41849 + pos: -10.060729,14.309612 + parent: 45355 + - uid: 46038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.48707,73.41478 - parent: 40203 - - uid: 41850 + rot: 3.141592653589793 rad + pos: 9.304405,14.12389 + parent: 45355 + - uid: 46039 components: - type: Transform - rot: 2.129301687433082 rad - pos: 54.46452,68.63651 - parent: 40203 -- proto: FoodApple + rot: 3.141592653589793 rad + pos: 17.583126,-1.1800494 + parent: 45355 +- proto: FloraRockSolid03 entities: - - uid: 19370 + - uid: 19255 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19371 + rot: 3.141592653589793 rad + pos: 20.130512,-26.064709 + parent: 2 + - uid: 19256 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19372 + pos: -16.450424,-23.446232 + parent: 2 + - uid: 19257 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19373 + pos: -49.98204,-36.94663 + parent: 2 + - uid: 19258 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41851 + pos: -42.490017,-28.484953 + parent: 2 + - uid: 19259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.44825,72.63187 - parent: 40203 - - uid: 41852 + pos: -30.51855,-33.407394 + parent: 2 + - uid: 19260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.588875,71.81937 - parent: 40203 - - uid: 41853 + pos: -58.530525,-19.504498 + parent: 2 + - uid: 19261 components: - type: Transform - pos: 48.807625,72.53812 - parent: 40203 - - uid: 41855 + pos: -86.5,-12.5 + parent: 2 + - uid: 19262 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41856 + pos: -73.5,-15.5 + parent: 2 + - uid: 19263 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41857 + pos: -63.480827,-11.48525 + parent: 2 + - uid: 19264 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41858 + pos: -83.41504,13.6461525 + parent: 2 + - uid: 19265 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBakedBunHotX - entities: - - uid: 8216 + rot: 1.5707963267948966 rad + pos: -92.49116,20.613113 + parent: 2 + - uid: 46040 components: - type: Transform - parent: 8214 - - type: Physics - canCollide: False - - uid: 8217 + rot: 3.141592653589793 rad + pos: 10.587032,-4.304634 + parent: 45355 + - uid: 46041 components: - type: Transform - parent: 8214 - - type: Physics - canCollide: False - - uid: 19389 + rot: 3.141592653589793 rad + pos: -11.457189,8.426202 + parent: 45355 +- proto: FloraStalagmite1 + entities: + - uid: 19266 components: - type: Transform - pos: 27.608868,4.2615376 + pos: -42.399822,69.617874 parent: 2 - - uid: 19390 + - uid: 19267 components: - type: Transform - pos: 25.300985,15.801601 + pos: -86.55982,63.403015 parent: 2 -- proto: FoodBakedCannabisBrownie - entities: - - uid: 19391 + - uid: 19268 components: - type: Transform - pos: -12.71586,43.20624 + pos: 102.04234,5.8197517 parent: 2 -- proto: FoodBakedVulpkaninPlate - entities: - - uid: 19392 + - uid: 19269 components: - type: Transform - pos: -74.486984,14.63666 + pos: 66.632935,14.465519 parent: 2 - - uid: 19393 + - uid: 19270 components: - type: Transform - pos: 92.49517,-25.166698 + rot: 3.141592653589793 rad + pos: 47.458652,32.68442 parent: 2 -- proto: FoodBowlBig - entities: - - uid: 8208 + - uid: 19271 components: - type: Transform - parent: 8201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19394 + pos: -57.50313,37.66106 + parent: 2 + - uid: 19272 components: - type: Transform - pos: -115.54711,9.66943 + pos: 94.44859,1.6010017 parent: 2 - - uid: 19395 + - uid: 19273 components: - - type: MetaData - desc: 'Простая миска, на ней имеется подпись: "Тропико <3"' - type: Transform - pos: -1.628458,-56.501747 + rot: -1.5707963267948966 rad + pos: 75.47006,-2.3387747 parent: 2 - - uid: 19396 + - uid: 19274 components: - type: Transform - pos: -14.9157715,60.101974 + pos: 54.525036,42.604115 parent: 2 - - uid: 19397 + - uid: 19275 components: - type: Transform - pos: 3.850555,51.83153 + pos: 44.456116,-28.461113 parent: 2 - - uid: 19398 + - uid: 19276 components: - type: Transform - pos: 27.549128,30.623116 + pos: -45.125294,53.464348 parent: 2 - - uid: 19399 + - uid: 19277 components: - type: Transform - pos: -113.60961,12.95068 + rot: -1.5707963267948966 rad + pos: -39.60062,51.829163 parent: 2 - - uid: 19400 + - uid: 19278 components: - type: Transform - pos: -114.65649,9.48193 + pos: -41.449436,56.30371 parent: 2 - - uid: 19401 + - uid: 19279 components: - type: Transform - pos: -43.487476,-14.272482 + pos: -83.51124,62.564114 parent: 2 -- proto: FoodBoxDonkpocketHonk - entities: - - uid: 19402 + - uid: 19280 components: - type: Transform - pos: 24.441048,-51.260887 + pos: -101.00443,45.692207 parent: 2 - - uid: 19403 + - uid: 42188 components: - type: Transform - pos: 53.340305,12.25 - parent: 2 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 19404 + pos: 18.602024,44.66945 + parent: 40599 + - uid: 42189 components: - type: Transform - pos: 24.722298,-51.448387 - parent: 2 -- proto: FoodBoxDonkpocketSpicy - entities: - - uid: 19405 + pos: 26.86792,45.48922 + parent: 40599 + - uid: 42190 components: - type: Transform - pos: 5.5061197,-56.3051 - parent: 2 -- proto: FoodBoxDonkpocketStonk + pos: 38.547604,51.595234 + parent: 40599 +- proto: FloraStalagmite2 entities: - - uid: 19406 + - uid: 19281 components: - type: Transform - pos: 8.486818,-3.9350662 + pos: -86.38795,63.32489 parent: 2 -- proto: FoodBoxDonut - entities: - - uid: 19407 + - uid: 19282 components: - type: Transform - pos: 15.600464,-3.5600152 + pos: 58.40004,18.430933 parent: 2 - - uid: 19408 + - uid: 19283 components: - type: Transform - pos: 15.506714,-3.3725152 + rot: 3.141592653589793 rad + pos: 50.45812,28.473413 parent: 2 - - uid: 19409 + - uid: 19284 components: - type: Transform - pos: 57.674904,-5.1366825 + pos: -42.726345,38.57124 parent: 2 - - uid: 19410 + - uid: 19285 components: - type: Transform - pos: 57.456154,-5.3085575 + rot: -1.5707963267948966 rad + pos: 83.44212,-1.6256576 parent: 2 - - uid: 19411 + - uid: 19286 components: - type: Transform - pos: -3.508275,-3.3625588 + pos: -23.529312,36.4073 parent: 2 - - uid: 19412 + - uid: 19287 components: - type: Transform - pos: -10.506507,51.684956 + pos: 61.302597,38.4861 parent: 2 - - uid: 19413 + - uid: 19288 components: - type: Transform - pos: -36.476482,-14.3062725 + rot: -1.5707963267948966 rad + pos: 65.26279,-7.360481 parent: 2 - - uid: 19414 + - uid: 19289 components: - type: Transform - pos: 98.446,-8.226685 + pos: 39.421726,45.497265 parent: 2 - - uid: 19415 + - uid: 19290 components: - type: Transform - pos: 98.6335,-8.46106 + pos: -41.24631,56.51369 parent: 2 - - uid: 19416 + - uid: 19291 components: - type: Transform - pos: 70.44629,-42.493614 + pos: -38.338245,54.801624 parent: 2 - - uid: 19417 + - uid: 19292 components: - type: Transform - pos: -25.446945,-19.260021 + pos: -49.55578,56.719494 parent: 2 - - uid: 19418 + - uid: 19293 components: - type: Transform - pos: -25.509571,-19.450834 + pos: -83.69874,62.70474 parent: 2 - - uid: 19419 + - uid: 19294 components: - type: Transform - pos: -28.292744,-11.275583 + pos: -90.442116,51.369244 parent: 2 - - uid: 41864 + - uid: 19295 components: - type: Transform - parent: 41863 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBoxPizzaFilled - entities: - - uid: 19420 + pos: -91.067116,51.619244 + parent: 2 + - uid: 19296 components: - type: Transform - pos: 25.550423,-52.229637 + pos: -96.53568,51.379707 parent: 2 - - uid: 19421 + - uid: 42191 components: - type: Transform - pos: -4.554826,-50.249317 - parent: 2 - - uid: 19422 + pos: 18.945774,44.41945 + parent: 40599 + - uid: 42192 components: - type: Transform - pos: -4.414201,-50.452442 - parent: 2 - - uid: 19424 + pos: 28.571045,50.528847 + parent: 40599 + - uid: 42193 components: - type: Transform - parent: 19423 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19425 + pos: 22.393652,53.711304 + parent: 40599 + - uid: 42194 components: - type: Transform - parent: 19423 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBreadBaguetteSlice + pos: 26.39917,45.473595 + parent: 40599 + - uid: 42195 + components: + - type: Transform + pos: 38.360104,51.251484 + parent: 40599 +- proto: FloraStalagmite3 entities: - - uid: 19426 + - uid: 19297 components: - type: Transform - pos: 17.27273,-13.190844 + pos: -110.267494,37.600235 parent: 2 -- proto: FoodBreadCreamcheese - entities: - - uid: 45725 + - uid: 19298 components: - type: Transform - parent: 45724 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBreadMimanaSlice - entities: - - uid: 19427 + pos: -65.39993,38.307266 + parent: 2 + - uid: 19299 components: - type: Transform - pos: 60.424507,12.706606 + pos: 98.12047,-0.50837326 parent: 2 -- proto: FoodBreadMoldySlice - entities: - - uid: 19428 + - uid: 19300 components: - type: Transform - pos: -50.762753,68.434906 + rot: -1.5707963267948966 rad + pos: 85.38016,-2.2453723 parent: 2 - - uid: 19429 + - uid: 19301 components: - type: Transform - pos: -35.307728,-52.57635 + pos: -39.13671,40.35249 parent: 2 - - uid: 19430 + - uid: 19302 components: - type: Transform - pos: -36.241013,23.634487 + pos: -25.826187,39.516674 parent: 2 - - uid: 19431 + - uid: 19303 components: - type: Transform - pos: -89.5778,63.692295 + pos: 50.47174,-29.492363 parent: 2 - - uid: 41868 + - uid: 19304 components: - type: Transform - pos: 52.719574,79.48272 - parent: 40203 - - uid: 41869 + rot: -1.5707963267948966 rad + pos: -45.61735,54.822292 + parent: 2 + - uid: 19305 components: - type: Transform - pos: 37.743385,70.56212 - parent: 40203 -- proto: FoodBreadPlain - entities: - - uid: 19432 + rot: -1.5707963267948966 rad + pos: -50.36735,53.666042 + parent: 2 + - uid: 19306 components: - type: Transform - pos: 26.433075,39.836052 + pos: 31.497955,65.65556 parent: 2 -- proto: FoodBreadVolcanic - entities: - - uid: 19434 + - uid: 19307 components: - - type: MetaData - desc: Не будите деда.... - name: Syxapik - type: Transform - parent: 19433 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBurgerCat - entities: - - uid: 19435 + pos: -40.60387,58.411 + parent: 2 + - uid: 19308 components: - - type: MetaData - desc: Наконец-то эти кошки и кошколюди на что-то годятся! Мур? - name: бургер "Захар Думко" - type: Transform - pos: 32.489643,33.795963 + pos: -50.067173,56.594494 parent: 2 -- proto: FoodBurgerClown - entities: - - uid: 19436 + - uid: 19309 components: - type: Transform - pos: 53.328644,12.728708 + rot: 1.5707963267948966 rad + pos: -72.61977,45.652794 parent: 2 -- proto: FoodBurgerMothRoach - entities: - - uid: 19437 + - uid: 19310 components: - - type: MetaData - desc: Монстр... - type: Transform - pos: 26.429562,39.51317 + pos: -83.29249,62.439114 parent: 2 -- proto: FoodBurgerPlain - entities: - - uid: 19438 + - uid: 19311 components: - type: Transform - pos: 6.388069,-35.439358 + pos: -90.89524,51.462994 parent: 2 - - uid: 19439 + - uid: 19312 components: - type: Transform - pos: 6.622444,-35.361233 + pos: -68.687614,14.731235 parent: 2 -- proto: FoodBurgerSpell - entities: - - uid: 19440 + - uid: 19313 components: - type: Transform - pos: -52.542133,26.522312 + rot: 3.141592653589793 rad + pos: -86.813324,44.90319 parent: 2 - - type: Stealth - maxVisibility: 1 - minVisibility: 0.5 - lastVisibility: 0.8 - - type: StealthOnMove - movementVisibilityRate: 0 - passiveVisibilityRate: 0 - - type: PointLight - energy: 2 - color: '#E0218AFF' - radius: 1.3 -- proto: FoodBurgerSuper - entities: - - uid: 8231 + - uid: 19314 components: - type: Transform - parent: 8229 - - type: Physics - canCollide: False -- proto: FoodCakeClownSlice - entities: - - uid: 15042 + pos: -34.453922,63.72381 + parent: 2 + - uid: 42196 components: - type: Transform - parent: 15039 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodCarrot + pos: 16.490875,49.686523 + parent: 40599 +- proto: FloraStalagmite4 entities: - - uid: 19441 + - uid: 19315 components: - - type: MetaData - desc: Ему плохо.... - name: нос снеговика - type: Transform - pos: 62.30568,29.599459 + pos: -66.57017,34.919716 parent: 2 -- proto: FoodCartCold - entities: - - uid: 19442 + - uid: 19316 components: - - type: MetaData - desc: Серьезно? На этой планете? - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,45.5 + pos: -38.76171,40.53999 parent: 2 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 19444 - - 19443 - - type: Storage - storedItems: - 19444: - position: 0,0 - _rotation: South - 19443: - position: 1,0 - _rotation: South -- proto: FoodCartHot - entities: - - uid: 17337 + - uid: 19317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,28.5 + pos: -23.810562,36.641674 parent: 2 - - type: Storage - storedItems: - 17338: - position: 0,0 - _rotation: South - 17339: - position: 1,0 - _rotation: South - 17340: - position: 2,0 - _rotation: South - 17341: - position: 3,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 17338 - - 17339 - - 17340 - - 17341 - coldsauce_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - hotsauce_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - bbqsauce_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - ketchup_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: FoodCheese - entities: - - uid: 19374 - components: - - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodCondimentBottleColdsauce - entities: - - uid: 19445 + - uid: 19318 components: - type: Transform - pos: 43.516647,51.80259 + pos: 98.51109,7.2728767 parent: 2 -- proto: FoodCondimentBottleKetchup - entities: - - uid: 41871 - components: - - type: Transform - parent: 41870 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodCondimentPacketFrostoil - entities: - - uid: 19446 + - uid: 19319 components: - type: Transform - pos: 39.844772,51.45884 + rot: -1.5707963267948966 rad + pos: 73.326935,25.587463 parent: 2 -- proto: FoodDonkpocket - entities: - - uid: 19447 + - uid: 19320 components: - type: Transform - pos: -49.600594,2.63321 + rot: -1.5707963267948966 rad + pos: 61.30627,22.638134 parent: 2 -- proto: FoodDonut - entities: - - uid: 41865 + - uid: 19321 components: - type: Transform - parent: 41863 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodDonutApple - entities: - - uid: 19448 + rot: -1.5707963267948966 rad + pos: 76.49363,16.423029 + parent: 2 + - uid: 19322 components: - type: Transform - pos: -9.175911,49.55066 + rot: -1.5707963267948966 rad + pos: 70.513885,14.696718 parent: 2 - - uid: 19449 + - uid: 19323 components: - type: Transform - pos: -18.54009,23.29389 + rot: -1.5707963267948966 rad + pos: 78.491,21.593443 parent: 2 -- proto: FoodDonutBluePumpkin - entities: - - uid: 19450 + - uid: 19324 components: - type: Transform - pos: -80.62393,12.574865 + pos: 53.537674,18.400517 parent: 2 -- proto: FoodDonutCaramel - entities: - - uid: 19451 + - uid: 19325 components: - type: Transform - pos: -108.18995,22.620466 + rot: -1.5707963267948966 rad + pos: -50.539227,53.509792 parent: 2 -- proto: FoodDonutChocolate - entities: - - uid: 19453 + - uid: 19326 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19454 + pos: 31.849518,65.42119 + parent: 2 + - uid: 19327 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19455 + pos: -40.60387,58.69225 + parent: 2 + - uid: 19328 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19456 + pos: -77.43015,61.4809 + parent: 2 + - uid: 19329 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19457 + pos: -85.55982,67.215515 + parent: 2 +- proto: FloraStalagmite5 + entities: + - uid: 19330 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19458 + pos: -109.298744,37.537735 + parent: 2 + - uid: 19331 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19459 + rot: 3.141592653589793 rad + pos: 43.42261,34.59067 + parent: 2 + - uid: 19332 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19460 + pos: 90.87901,-1.6162293 + parent: 2 + - uid: 19333 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19461 + pos: 91.29537,4.6947517 + parent: 2 + - uid: 19334 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19462 + rot: -1.5707963267948966 rad + pos: 62.48868,-14.280304 + parent: 2 + - uid: 19335 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19473 + pos: 61.583847,38.51735 + parent: 2 + - uid: 19336 components: - type: Transform - pos: -18.630068,23.610252 + pos: 55.32191,44.197865 parent: 2 -- proto: FoodDonutHomer - entities: - - uid: 19474 + - uid: 19337 components: - type: Transform - pos: -18.222801,23.575342 + pos: 39.765476,45.54414 parent: 2 -- proto: FoodDonutJellyChocolate - entities: - - uid: 19475 + - uid: 19338 components: - type: Transform - pos: 18.05398,-13.550219 + rot: -1.5707963267948966 rad + pos: -40.03812,51.657288 parent: 2 -- proto: FoodDonutJellySweetpea - entities: - - uid: 19476 + - uid: 19339 components: - type: Transform - pos: 8.294286,-9.327936 + pos: -45.67217,53.558098 parent: 2 -- proto: FoodDonutPink - entities: - - uid: 19463 + - uid: 19340 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19464 + pos: -38.26012,54.645374 + parent: 2 + - uid: 19341 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19465 + pos: -90.67649,51.712994 + parent: 2 + - uid: 19342 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19466 + pos: -86.55982,63.559265 + parent: 2 + - uid: 19343 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19467 + pos: -34.750797,63.59881 + parent: 2 + - uid: 19344 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19468 + pos: -85.30982,67.090515 + parent: 2 + - uid: 42197 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19469 + pos: 28.43042,50.810097 + parent: 40599 + - uid: 42198 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19470 + pos: 22.612402,53.60193 + parent: 40599 + - uid: 42199 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19471 + pos: 17.352024,53.821056 + parent: 40599 +- proto: FloraStalagmite6 + entities: + - uid: 19345 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19472 + pos: -41.946697,69.321 + parent: 2 + - uid: 19346 components: - type: Transform - parent: 19452 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19477 + pos: -109.72062,37.350235 + parent: 2 + - uid: 19347 components: - type: Transform - pos: -50.583138,5.6522255 + pos: -65.45344,42.66738 parent: 2 - - uid: 19478 + - uid: 19348 components: - type: Transform - pos: -28.572323,-15.270498 + pos: -66.28892,34.56034 parent: 2 -- proto: FoodDonutPlain - entities: - - uid: 19479 + - uid: 19349 components: - type: Transform - pos: -37.547844,-14.2835865 + rot: -1.5707963267948966 rad + pos: 70.638885,14.446718 parent: 2 - - uid: 19480 + - uid: 19350 components: - type: Transform - pos: -107.8462,22.807966 + rot: -1.5707963267948966 rad + pos: 78.53787,21.296568 parent: 2 -- proto: FoodDonutPoison - entities: - - uid: 19481 + - uid: 19351 components: - type: Transform - pos: -50.36571,5.708768 + rot: -1.5707963267948966 rad + pos: 73.701935,25.290588 parent: 2 - - uid: 19482 + - uid: 19352 components: - type: Transform - pos: 70.586914,-42.743614 + pos: 53.756424,18.353642 parent: 2 - - uid: 19483 + - uid: 19353 components: - type: Transform - pos: -28.416073,-15.317373 + rot: -1.5707963267948966 rad + pos: -50.382977,51.900417 parent: 2 - - uid: 41866 + - uid: 19354 components: - type: Transform - parent: 41863 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodDonutSweetpea - entities: - - uid: 41867 + pos: 32.320175,65.500656 + parent: 2 + - uid: 19355 components: - type: Transform - parent: 41863 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodEgg - entities: - - uid: 19484 + pos: -38.619495,54.44225 + parent: 2 + - uid: 19356 components: - type: Transform - pos: -52.2904,-30.420612 + pos: -49.821404,56.406994 parent: 2 -- proto: FoodFrozenFreezy - entities: - - uid: 7936 + - uid: 19357 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleBerry - entities: - - uid: 7937 + pos: -48.938427,52.345192 + parent: 2 + - uid: 19358 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleJumbo - entities: - - uid: 7938 + rot: 1.5707963267948966 rad + pos: -72.30727,45.402794 + parent: 2 + - uid: 19359 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleOrange - entities: - - uid: 7939 + pos: -68.406364,14.293735 + parent: 2 + - uid: 19360 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenPopsicleTrash - entities: - - uid: 19485 + pos: -88.57545,65.309265 + parent: 2 + - uid: 19361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.086143,5.5093555 + pos: -101.52006,45.489082 parent: 2 - - uid: 19486 + - uid: 19362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.41427,0.19685566 + pos: -96.53568,51.629707 parent: 2 - - uid: 19487 + - uid: 42200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.29335,-52.701927 - parent: 2 -- proto: FoodFrozenSandwich + pos: 16.834625,49.38965 + parent: 40599 +- proto: FloraTree03 entities: - - uid: 7940 + - uid: 42201 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSandwichStrawberry + pos: 48.13744,72.03712 + parent: 40599 +- proto: FloraTree04 entities: - - uid: 7941 + - uid: 42202 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19443 + pos: 51.090565,68.58399 + parent: 40599 + - uid: 42203 components: - type: Transform - parent: 19442 - - type: Physics - canCollide: False -- proto: FoodFrozenSnowconeBase + pos: 51.090565,68.58399 + parent: 40599 +- proto: FloraTreeConifer01 entities: - - uid: 19488 + - uid: 19363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 91.353874,-44.086155 + pos: -91.669304,-1.0524912 parent: 2 - - uid: 19489 + - uid: 19364 components: - type: Transform - pos: -85.54655,62.61417 + rot: 1.5707963267948966 rad + pos: 38.181652,-12.655373 parent: 2 -- proto: FoodFrozenSnowconeMime - entities: - - uid: 15053 + - uid: 19365 components: - type: Transform - parent: 15047 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodFrozenSnowconeTrash - entities: - - uid: 19490 + rot: 1.5707963267948966 rad + pos: 42.292233,-4.9177246 + parent: 2 + - uid: 19366 components: - type: Transform - pos: -36.746475,-52.764427 + rot: 1.5707963267948966 rad + pos: 39.25755,2.1777267 parent: 2 - - uid: 19491 + - uid: 19367 components: - type: Transform - pos: -117.52675,16.551113 + rot: 1.5707963267948966 rad + pos: 30.361366,-0.15720701 parent: 2 -- proto: FoodFrozenSundae - entities: - - uid: 7942 + - uid: 19368 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19444 + rot: 1.5707963267948966 rad + pos: 30.283241,-3.3373098 + parent: 2 + - uid: 19369 components: - type: Transform - parent: 19442 - - type: Physics - canCollide: False -- proto: FoodGoldenApple - entities: - - uid: 19492 + rot: 1.5707963267948966 rad + pos: 34.15718,-16.837992 + parent: 2 + - uid: 19370 components: - type: Transform - pos: -87.30253,55.77603 + pos: -1.2420921,7.2241993 parent: 2 -- proto: FoodKebabSkewer - entities: - - uid: 19493 + - uid: 19371 components: - type: Transform - pos: 7.206238,52.684162 + pos: -26.5,-55.5 parent: 2 - - uid: 19494 + - uid: 19372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.590225,-54.233177 + pos: 86.871056,-6.848641 parent: 2 - - uid: 19495 + - uid: 19373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.965225,-54.530052 + pos: 85.900795,-8.595261 parent: 2 - - uid: 19496 + - uid: 19374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.78017,11.473915 + pos: 87.563934,-21.452082 parent: 2 - - uid: 19497 + - uid: 19375 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.523445,10.572033 + pos: -44.948822,-56.42806 parent: 2 - - uid: 19498 + - uid: 19376 components: - type: Transform - pos: 28.73694,32.632805 + pos: -47.811768,-56.26004 parent: 2 - - uid: 19499 + - uid: 19377 components: - type: Transform - pos: 28.533815,32.757805 + pos: -49.616455,-54.689728 parent: 2 - - uid: 19500 + - uid: 19378 components: - type: Transform - pos: -113.51586,12.685055 + pos: -42.90431,-55.3099 parent: 2 - - uid: 19501 + - uid: 19379 components: - type: Transform - pos: -113.39086,12.57568 + pos: -42.71681,-58.356773 parent: 2 - - uid: 19502 + - uid: 19380 components: - type: Transform - pos: -89.48658,27.682053 + pos: -19.23426,33.864883 parent: 2 - - uid: 19503 + - uid: 19381 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.51151,-14.562191 + pos: 84.03884,-6.974319 parent: 2 - - uid: 19504 + - uid: 19382 components: - type: Transform - pos: -55.567852,44.636448 + pos: -10.58639,30.130043 parent: 2 - - uid: 19505 + - uid: 19383 components: - type: Transform - pos: -55.274837,44.38254 + pos: -15.279507,27.776035 parent: 2 - - uid: 19506 + - uid: 19384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.38651,-14.530941 + pos: -13.263882,32.04993 parent: 2 - - uid: 19507 + - uid: 19385 components: - - type: MetaData - name: шашлык из кочерги - type: Transform - pos: -79.503914,3.6304498 + pos: 37.721203,-9.697929 parent: 2 - - uid: 19508 + - uid: 19386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.62065,-14.152437 + pos: -89.491646,-5.421454 parent: 2 - - uid: 19509 + - uid: 19387 components: - type: Transform - pos: -29.632988,-49.161457 + pos: -90.429146,0.20354605 parent: 2 - - uid: 19510 + - uid: 19388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.44225,10.720694 + pos: -87.79494,-7.8007865 parent: 2 - - uid: 19511 + - uid: 19389 components: - - type: MetaData - desc: Хмм, вы случайно не строите мне личную станцию на леднике? - name: шашлычок из капитана - type: Transform - pos: -80.69448,3.6266594 + pos: -82.44662,-11.149384 parent: 2 -- proto: FoodMealBearsteak - entities: - - uid: 19512 + - uid: 19390 components: - - type: MetaData - desc: Скорее всего, это же будет и с вами. - name: мясо грейтайда - type: Transform - pos: -70.56055,28.388502 + pos: -74.834496,-14.742662 parent: 2 -- proto: FoodMealFries - entities: - - uid: 8232 - components: - - type: Transform - parent: 8229 - - type: Physics - canCollide: False -- proto: FoodMealFriesCheesy - entities: - - uid: 45726 - components: - - type: Transform - parent: 45724 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMealNachosCheesy - entities: - - uid: 45727 + - uid: 19391 components: - type: Transform - parent: 45724 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMealSashimi - entities: - - uid: 19513 + pos: -69.29214,-15.157843 + parent: 2 + - uid: 19392 components: - - type: MetaData - name: старое сашими - type: Transform - pos: -99.53815,51.559547 + pos: -89.5697,-10.501167 parent: 2 -- proto: FoodMeat - entities: - - uid: 19375 + - uid: 19393 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19376 + pos: -112.6813,-13.853037 + parent: 2 + - uid: 19394 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19377 + pos: -123.681915,-11.463993 + parent: 2 + - uid: 19395 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19378 + pos: -131.55449,3.623808 + parent: 2 + - uid: 19396 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19379 + pos: -131.48631,-2.2912188 + parent: 2 + - uid: 19397 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19380 + pos: -120.40227,23.674152 + parent: 2 + - uid: 19398 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19381 + pos: -121.3104,19.437807 + parent: 2 + - uid: 19399 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19515 + pos: -128.20016,6.856362 + parent: 2 + - uid: 19400 components: - type: Transform - parent: 19514 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19516 + pos: -127.03587,1.661581 + parent: 2 + - uid: 19401 components: - type: Transform - parent: 19514 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19517 + pos: -130.55264,-3.2808104 + parent: 2 + - uid: 19402 components: - type: Transform - parent: 19514 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatBear + pos: -116.531044,48.28836 + parent: 2 +- proto: FloraTreeConifer02 entities: - - uid: 15583 + - uid: 19403 components: - type: Transform - parent: 15582 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15584 + pos: 100.58188,-16.364399 + parent: 2 + - uid: 19404 components: - type: Transform - parent: 15582 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15585 + pos: -92.77601,2.468275 + parent: 2 + - uid: 19405 components: - type: Transform - parent: 15582 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15586 + pos: 10.294164,5.5523243 + parent: 2 + - uid: 19406 components: - type: Transform - parent: 15582 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15587 + rot: 1.5707963267948966 rad + pos: 32.201412,-24.406338 + parent: 2 + - uid: 19407 components: - type: Transform - parent: 15582 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatChickenCooked - entities: - - uid: 19518 + rot: 1.5707963267948966 rad + pos: 40.713062,-18.147276 + parent: 2 + - uid: 19408 components: - type: Transform - pos: -79.6566,3.4996147 + rot: 1.5707963267948966 rad + pos: 36.68843,-19.291117 parent: 2 - - uid: 19519 + - uid: 19409 components: - type: Transform - pos: -79.2816,3.6714897 + pos: -8.1940565,4.629953 parent: 2 -- proto: FoodMeatChickenFried - entities: - - uid: 19520 + - uid: 19410 components: - type: Transform - pos: 12.616928,-4.438344 + rot: 3.141592653589793 rad + pos: 18.278418,-27.359484 parent: 2 -- proto: FoodMeatClown - entities: - - uid: 15043 + - uid: 19411 components: - type: Transform - parent: 15039 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19522 + pos: -5.5981274,7.341829 + parent: 2 + - uid: 19412 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19523 + pos: 66.527435,-9.508797 + parent: 2 + - uid: 19413 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatCooked - entities: - - uid: 19532 + pos: -55.145092,-50.303165 + parent: 2 + - uid: 19414 components: - type: Transform - pos: -60.627388,48.539715 + pos: -56.544384,-48.532085 parent: 2 - - uid: 19533 + - uid: 19415 components: - type: Transform - pos: -60.502388,48.55534 + pos: -52.786877,-50.50638 parent: 2 - - uid: 19534 + - uid: 19416 components: - type: Transform - pos: -60.346138,48.46159 + pos: -50.536877,-52.948994 parent: 2 -- proto: FoodMeatHuman - entities: - - uid: 19524 + - uid: 19417 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19525 + pos: -44.88844,-53.90993 + parent: 2 + - uid: 19418 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19526 + pos: -40.45875,-58.78493 + parent: 2 + - uid: 19419 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19527 + rot: 1.5707963267948966 rad + pos: -56.89349,-0.6076951 + parent: 2 + - uid: 19420 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19528 + pos: -59.87805,2.8148155 + parent: 2 + - uid: 19421 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19529 + pos: -17.70301,34.083633 + parent: 2 + - uid: 19422 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatLizardCooked - entities: - - uid: 19535 + pos: -122.38059,-6.1641116 + parent: 2 + - uid: 19423 components: - type: Transform - pos: 57.918888,-27.0204 + pos: -18.07801,35.34926 parent: 2 - - uid: 19536 + - uid: 19424 components: - type: Transform - pos: 58.028263,-27.0829 + pos: -77.615944,-18.463848 parent: 2 -- proto: FoodMeatRouny - entities: - - uid: 19530 + - uid: 19425 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19531 + pos: -7.8988895,30.692543 + parent: 2 + - uid: 19426 components: - type: Transform - parent: 19521 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatSalami - entities: - - uid: 8233 + pos: -2.923976,24.783024 + parent: 2 + - uid: 19427 components: - type: Transform - parent: 8228 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodMeatXeno - entities: - - uid: 19537 + pos: -12.795131,26.57291 + parent: 2 + - uid: 19428 components: - type: Transform - pos: -75.84655,-10.106665 + pos: 34.486828,-7.401054 parent: 2 - - type: Physics - canCollide: False - - type: PointLight - color: '#65F057FF' - radius: 1.3 - missingComponents: - - Item - - Pullable - - uid: 19538 + - uid: 19429 components: - type: Transform - pos: -76.064415,-10.068254 + pos: 40.8428,0.533314 parent: 2 - - type: Physics - canCollide: False - - type: PointLight - color: '#65F057FF' - radius: 1.3 - missingComponents: - - Item - - Pullable -- proto: FoodNoodlesSpesslaw - entities: - - uid: 19539 + - uid: 19430 components: - type: Transform - pos: -23.503222,25.640665 + pos: 41.91396,-21.044197 parent: 2 -- proto: FoodOrange - entities: - - uid: 41859 + - uid: 19431 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41860 + pos: 8.236084,5.5383263 + parent: 2 + - uid: 19432 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41861 + pos: 5.829834,8.163326 + parent: 2 + - uid: 19433 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41862 + pos: -4.972203,5.3266544 + parent: 2 + - uid: 19434 components: - type: Transform - parent: 41854 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41872 + pos: -88.50727,-1.858954 + parent: 2 + - uid: 19435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.76075,69.28812 - parent: 40203 - - uid: 41873 + pos: -85.04945,-16.203203 + parent: 2 + - uid: 19436 components: - type: Transform - pos: 50.07325,68.53812 - parent: 40203 - - uid: 41874 + pos: -81.11068,-15.344696 + parent: 2 + - uid: 19437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.38575,69.00687 - parent: 40203 - - uid: 41875 + pos: -77.90481,-13.805162 + parent: 2 + - uid: 19438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.792,68.35062 - parent: 40203 -- proto: FoodPieBananaCream - entities: - - uid: 19540 + pos: -66.80455,-17.52503 + parent: 2 + - uid: 19439 components: - type: Transform - pos: 52.159794,12.546875 + pos: -68.55117,-19.40003 parent: 2 - - uid: 19541 + - uid: 19440 components: - type: Transform - pos: 52.673523,12.572195 + pos: -64.387405,-21.439093 parent: 2 - - uid: 19542 + - uid: 19441 components: - type: Transform - pos: 52.439148,12.790945 + pos: -73.06981,-14.7761 parent: 2 -- proto: FoodPieFrosty - entities: - - uid: 7943 + - uid: 19442 components: - type: Transform - parent: 7933 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19543 + pos: -129.1099,9.901508 + parent: 2 + - uid: 19443 components: - type: Transform - pos: -54.523643,2.6343555 + pos: -123.29634,17.95719 parent: 2 -- proto: FoodPineapple - entities: - - uid: 19544 + - uid: 19444 components: - - type: MetaData - desc: Филипп.. не надо... - type: Transform - pos: 9.595919,43.761436 + pos: -125.83455,11.95112 parent: 2 -- proto: FoodPizzaDankSlice - entities: - - uid: 19545 + - uid: 19445 components: - type: Transform - pos: -87.60244,55.49569 + pos: -124.97046,-2.5788493 parent: 2 -- proto: FoodPizzaMoldySlice - entities: - - uid: 19546 + - uid: 19446 components: - type: Transform - pos: -34.787033,-56.589497 + pos: -117.152054,-13.287313 parent: 2 -- proto: FoodPizzaSassysage - entities: - - uid: 19547 + - uid: 19447 components: - type: Transform - pos: -78.90245,2.9937217 + pos: -126.86105,-6.226663 parent: 2 -- proto: FoodPlate - entities: - - uid: 19548 + - uid: 19448 components: - type: Transform - pos: 57.96001,-26.864477 + pos: -132.73233,1.2426271 parent: 2 - - uid: 19549 + - uid: 19449 components: - type: Transform - pos: 31.892878,30.70124 + pos: -117.13844,-9.115555 parent: 2 - - uid: 19550 + - uid: 19450 components: - type: Transform - pos: -99.5121,51.74184 + pos: -56.15918,69.416664 parent: 2 - - uid: 19551 + - uid: 19451 components: - type: Transform - pos: -60.439888,48.695965 + pos: -37.642708,-63.361618 parent: 2 -- proto: FoodPlatePlastic - entities: - - uid: 19552 + - uid: 19452 components: - type: Transform - pos: -4.4951077,36.812954 + pos: -31.722492,-62.687782 parent: 2 - - uid: 19553 + - uid: 19453 components: - type: Transform - pos: -115.37869,4.3043714 + pos: -39.683838,-61.742985 parent: 2 -- proto: FoodPlateSmall - entities: - - uid: 19554 + - uid: 19454 components: - type: Transform - pos: 12.585678,-4.344594 + rot: 3.141592653589793 rad + pos: 30.975552,4.864212 parent: 2 - - uid: 19555 + - uid: 19455 components: - type: Transform - pos: 33.520157,20.579605 + rot: 3.141592653589793 rad + pos: 44.275963,-7.4646873 parent: 2 - - uid: 19556 + - uid: 19456 components: - type: Transform - pos: 28.48627,30.544186 + pos: -114.76016,-9.697782 parent: 2 - - uid: 19557 + - uid: 19457 components: - type: Transform - pos: -23.518847,25.703165 + pos: -111.79667,41.53836 parent: 2 -- proto: FoodPlateSmallPlastic +- proto: FloraTreeConifer03 entities: - - uid: 19558 + - uid: 19458 components: - type: Transform - pos: -114.48807,5.3981214 + pos: -104.24762,-12.514573 parent: 2 -- proto: FoodPlateSmallTrash - entities: - - uid: 19559 + - uid: 19459 components: - type: Transform - pos: -50.558605,67.92912 + pos: 97.20688,-14.3186 parent: 2 - - uid: 41876 + - uid: 19460 components: - type: Transform - rot: 1.2217304763960306 rad - pos: 53.000824,78.623344 - parent: 40203 - - uid: 41877 + pos: 97.36313,-16.146725 + parent: 2 + - uid: 19461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.187603,34.517235 - parent: 40203 -- proto: FoodPlateTrash - entities: - - uid: 41878 + pos: 79.861534,-24.622877 + parent: 2 + - uid: 19462 components: - type: Transform - rot: 3.5779249665883754 rad - pos: 50.032074,77.873344 - parent: 40203 - - uid: 41879 + pos: -89.852486,-4.093472 + parent: 2 + - uid: 19463 components: - type: Transform - pos: 40.266514,36.862915 - parent: 40203 -- proto: FoodPoppy - entities: - - uid: 19560 + rot: -1.5707963267948966 rad + pos: 93.3319,-23.559944 + parent: 2 + - uid: 19464 components: - type: Transform - pos: 53.549778,-15.456305 + rot: -1.5707963267948966 rad + pos: 75.58158,-24.818771 parent: 2 -- proto: FoodPotato - entities: - - uid: 19382 + - uid: 19465 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19383 + rot: 1.5707963267948966 rad + pos: 28.959232,-15.653713 + parent: 2 + - uid: 19466 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19384 + rot: 1.5707963267948966 rad + pos: 34.857723,5.945834 + parent: 2 + - uid: 19467 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 19385 + rot: 1.5707963267948966 rad + pos: 31.537537,12.389416 + parent: 2 + - uid: 19468 components: - type: Transform - parent: 19369 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodSaladValid - entities: - - uid: 19561 + rot: 1.5707963267948966 rad + pos: 30.31343,-7.7453923 + parent: 2 + - uid: 19469 components: - type: Transform - pos: -115.46171,3.6860867 + rot: 1.5707963267948966 rad + pos: 35.717663,-24.920881 parent: 2 -- proto: FoodShakerPepper - entities: - - uid: 19562 + - uid: 19470 components: - type: Transform - pos: 32.43601,20.551607 + rot: 3.141592653589793 rad + pos: 4.3893633,-30.051624 parent: 2 - - uid: 19563 + - uid: 19471 components: - type: Transform - pos: -114.80546,4.9360867 + pos: 3.614197,7.9429493 parent: 2 - - uid: 41880 + - uid: 19472 components: - type: Transform - pos: 41.322727,34.395687 - parent: 40203 - - uid: 45728 + pos: -26.5,-69.5 + parent: 2 + - uid: 19473 components: - type: Transform - pos: 4.6059704,4.8257275 - parent: 44970 -- proto: FoodShakerSalt - entities: - - uid: 19564 + pos: 64.594315,-14.419857 + parent: 2 + - uid: 19474 components: - type: Transform - pos: 29.404758,23.285982 + pos: 73.61217,-7.451648 parent: 2 - - uid: 19565 + - uid: 19475 components: - type: Transform - pos: 26.683075,39.398552 + pos: 90.191795,-21.250511 parent: 2 - - uid: 19566 + - uid: 19476 components: - type: Transform - pos: -115.03983,4.9360867 + pos: 82.44983,-21.5257 parent: 2 - - uid: 41881 + - uid: 19477 components: - type: Transform - pos: 41.55742,34.383343 - parent: 40203 - - uid: 45729 + pos: 70.8351,-21.292606 + parent: 2 + - uid: 19478 components: - type: Transform - pos: 4.438413,4.863326 - parent: 44970 -- proto: FoodSnackDanDanNoodles - entities: - - uid: 41882 + pos: 89.45364,-9.258804 + parent: 2 + - uid: 19479 components: - type: Transform - rot: 1.8675022996339325 rad - pos: 51.583202,77.42752 - parent: 40203 -- proto: FoodSnackPopcorn - entities: - - uid: 19567 + pos: 85.2366,-24.502125 + parent: 2 + - uid: 19480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.322544,44.842537 + pos: -6.426011,24.630806 parent: 2 - - uid: 19568 + - uid: 19481 components: - type: Transform - pos: -22.619858,42.657204 + pos: -58.004467,-47.467228 parent: 2 - - uid: 19569 + - uid: 19482 components: - type: Transform - pos: 94.81063,2.2568257 + pos: -48.4275,-53.511494 parent: 2 - - uid: 19570 + - uid: 19483 components: - type: Transform - pos: 102.470116,-20.356697 + pos: -46.318127,-54.68337 parent: 2 -- proto: FoodSoupChiliCold - entities: - - uid: 19571 + - uid: 19484 components: - type: Transform - pos: 39.485397,51.661964 + pos: -53.911877,-51.519306 parent: 2 -- proto: FoodSoupElectron - entities: - - uid: 41883 + - uid: 19485 components: - type: Transform - pos: 41.483006,34.69631 - parent: 40203 -- proto: FoodSoupMystery - entities: - - uid: 19572 + pos: -51.755627,-51.96462 + parent: 2 + - uid: 19486 components: - type: Transform - pos: -50.340878,68.778656 + rot: -1.5707963267948966 rad + pos: 96.29074,-25.69833 parent: 2 -- proto: FoodSoupWingFangChu - entities: - - uid: 19573 + - uid: 19487 components: - - type: MetaData - desc: пИсЮн ДрАчУ - type: Transform - pos: -47.512863,-40.383553 + rot: 1.5707963267948966 rad + pos: -53.409115,4.68918 parent: 2 -- proto: FoodTartGrape - entities: - - uid: 45730 + - uid: 19488 components: - - type: MetaData - name: плазменый тарт - type: Transform - pos: -1.6832552,4.5027146 - parent: 44970 -- proto: FoodTartMime - entities: - - uid: 15054 + pos: -18.42176,33.31801 + parent: 2 + - uid: 19489 components: - type: Transform - parent: 15047 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodTinBeans - entities: - - uid: 19574 + pos: -20.760033,34.614883 + parent: 2 + - uid: 19490 components: - type: Transform - pos: -46.47838,68.81465 + pos: -75.503105,3.11745 parent: 2 -- proto: FoodTinBeansTrash - entities: - - uid: 19575 + - uid: 19491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.41835,-54.483177 + pos: -3.1488895,30.270668 parent: 2 - - uid: 19576 + - uid: 19492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.306503,67.7834 + pos: 28.338074,66.77217 parent: 2 - - uid: 19577 + - uid: 19493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.39094,30.464458 + pos: 25.525574,68.52998 parent: 2 -- proto: FoodTinMRE - entities: - - uid: 19578 + - uid: 19494 components: - type: Transform - pos: -4.533969,39.818462 + pos: -2.5840106,6.2102013 parent: 2 - - uid: 19579 + - uid: 19495 components: - type: Transform - pos: -45.50963,66.68965 + pos: -86.42133,-4.812079 parent: 2 - - uid: 41487 + - uid: 19496 components: - type: Transform - parent: 41484 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodTinMRETrash - entities: - - uid: 19580 + pos: -87.19564,-14.4832325 + parent: 2 + - uid: 19497 components: - - type: MetaData - desc: Пустая консервная банка. Внутри неё ползают несколько червей. Мерзость.. - type: Transform - pos: -74.33082,38.540905 + pos: -84.251305,-10.780975 parent: 2 - - uid: 19581 + - uid: 19498 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.29335,-55.405052 + pos: -79.71675,-10.141504 parent: 2 - - uid: 19582 + - uid: 19499 components: - type: Transform - rot: 0.5235987755982988 rad - pos: -6.2502766,40.423523 + pos: -80.39644,-16.446192 parent: 2 - - uid: 19583 + - uid: 19500 components: - type: Transform - pos: -46.50963,65.67403 + pos: -75.490746,-14.039537 parent: 2 - - uid: 19584 + - uid: 19501 components: - type: Transform - pos: -46.400253,65.9084 + pos: -75.121124,-18.526772 parent: 2 - - uid: 19585 + - uid: 19502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.640938,29.683208 + pos: -63.262405,-18.532843 parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 19586 + - uid: 19503 components: - type: Transform - pos: 48.24901,41.6647 + pos: -92.69145,-11.580708 parent: 2 - - uid: 19587 + - uid: 19504 components: - type: Transform - pos: 48.62401,41.63345 + pos: -94.42672,-9.568556 parent: 2 -- proto: FoodTinPeachesMaintTrash - entities: - - uid: 19588 + - uid: 19505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.48085,-56.639427 + pos: -121.00159,-13.454582 parent: 2 -- proto: FoodTinPeachesTrash - entities: - - uid: 19589 + - uid: 19506 components: - type: Transform - pos: -35.308975,-54.217552 + pos: -128.74442,-9.167118 parent: 2 - - uid: 19590 + - uid: 19507 components: - type: Transform - pos: -47.44713,68.73653 + pos: -125.13504,-10.245243 parent: 2 - - uid: 19591 + - uid: 19508 components: - type: Transform - pos: -47.63463,68.06465 + pos: -135.30449,1.9597455 parent: 2 - - uid: 19592 + - uid: 19509 components: - type: Transform - pos: -47.244003,68.06465 + pos: -134.55449,-2.063138 parent: 2 -- proto: ForensicPad - entities: - - uid: 19593 + - uid: 19510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.885983,-20.413498 + pos: -122.04289,20.923649 parent: 2 -- proto: Fork - entities: - - uid: 19594 + - uid: 19511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.942154,5.616374 + pos: -122.74098,14.902712 parent: 2 - - uid: 19595 + - uid: 19512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.50198,44.09028 + pos: -128.25803,3.6798463 parent: 2 - - uid: 19596 + - uid: 19513 components: - type: Transform - rot: -3.141592653589793 rad - pos: 98.52794,-6.0498495 + pos: -126.78653,7.6268396 parent: 2 - - uid: 19597 + - uid: 19514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.20502,30.700436 + pos: -128.53702,-5.1375237 parent: 2 - - uid: 41884 + - uid: 19515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.237946,77.56851 - parent: 40203 - - uid: 41885 + pos: -108.37817,-12.769699 + parent: 2 + - uid: 19516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.537247,79.748344 - parent: 40203 - - uid: 41886 + pos: 32.943054,-25.389698 + parent: 2 + - uid: 19517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.61537,79.685844 - parent: 40203 - - uid: 41887 + pos: -71.69599,70.541664 + parent: 2 + - uid: 19518 components: - type: Transform - rot: -1.9198621771937625 rad - pos: 50.505997,79.373344 - parent: 40203 - - uid: 41888 + pos: -54.855244,70.260414 + parent: 2 + - uid: 19519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.53325,79.712875 - parent: 40203 - - uid: 45731 + rot: 3.141592653589793 rad + pos: -26.343105,-71.27218 + parent: 2 + - uid: 19520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.555597,4.691451 - parent: 44970 - - uid: 45732 + pos: -112.26542,52.460236 + parent: 2 + - uid: 19521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.586847,4.613326 - parent: 44970 -- proto: ForkPlastic + pos: -110.41386,53.5618 + parent: 2 +- proto: FloraTreeSnow01 entities: - - uid: 19598 + - uid: 19522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.44119,4.4137464 + rot: 1.5707963267948966 rad + pos: 38.819572,-7.305222 parent: 2 -- proto: FuelDispenser - entities: - - uid: 19599 + - uid: 19523 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,41.5 + pos: 29.76337,-10.782381 parent: 2 -- proto: GasAnalyzer - entities: - - uid: 19600 + - uid: 19524 components: - type: Transform - pos: 51.50554,-49.480225 + rot: 1.5707963267948966 rad + pos: 28.908314,-1.5299866 parent: 2 - - uid: 19601 + - uid: 19525 components: - type: Transform - pos: -23.771198,50.576004 + rot: 1.5707963267948966 rad + pos: 28.048283,-20.612474 parent: 2 -- proto: GasCanisterBrokenBase - entities: - - uid: 19602 + - uid: 19526 components: - type: Transform - pos: 43.5,-37.5 + rot: 3.141592653589793 rad + pos: 9.02597,-29.945316 parent: 2 - - uid: 19603 + - uid: 19527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-38.5 + pos: -74.065605,4.1174498 parent: 2 -- proto: GasFilterFlipped - entities: - - uid: 19604 + - uid: 19528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,50.5 + rot: -1.5707963267948966 rad + pos: 66.61839,-21.120125 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasMinerAmmonia - entities: - - uid: 19605 + - uid: 19529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-69.5 + rot: -1.5707963267948966 rad + pos: 87.04919,-9.339479 parent: 2 -- proto: GasMinerCarbonDioxide - entities: - - uid: 19606 + - uid: 19530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-69.5 + rot: -1.5707963267948966 rad + pos: 87.95544,-7.261354 parent: 2 -- proto: GasMinerNitrogenStationLarge - entities: - - uid: 19607 + - uid: 19531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-62.5 + pos: -0.17397594,24.298649 parent: 2 -- proto: GasMinerOxygenStationLarge - entities: - - uid: 19608 + - uid: 19532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-58.5 + pos: 37.174328,-7.541679 parent: 2 -- proto: GasMinerPlasma - entities: - - uid: 19609 + - uid: 19533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-69.5 + pos: -127.164246,-9.538309 parent: 2 -- proto: GasMinerWaterVapor - entities: - - uid: 19610 + - uid: 19534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-69.5 + pos: -133.29846,-5.277633 parent: 2 - - uid: 19611 + - uid: 19535 components: - type: Transform - pos: -17.5,18.5 + pos: -122.600685,-12.034094 parent: 2 - - type: GasMiner - spawnAmount: 2000 - spawnTemperature: 10273.2 - maxExternalPressure: 2000 - - uid: 41889 + - uid: 19536 components: - type: Transform - pos: 36.5,56.5 - parent: 40203 - - type: GasMiner - spawnAmount: 125 - maxExternalPressure: 125 -- proto: GasOutletInjector - entities: - - uid: 19612 + pos: -70.15496,-19.418156 + parent: 2 + - uid: 19537 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-70.5 + pos: -123.13532,-7.290792 parent: 2 - - type: AtmosPipeColor - color: '#D75500FF' - - uid: 19613 + - uid: 19538 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-70.5 + pos: -27.655605,-66.89718 parent: 2 - - type: AtmosPipeColor - color: '#525252FF' - - uid: 19614 + - uid: 19539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-70.5 + pos: -39.136925,74.5426 parent: 2 - - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 19615 + - uid: 42204 + components: + - type: Transform + pos: 35.461685,25.972685 + parent: 40599 + - uid: 42205 + components: + - type: Transform + pos: 45.441742,36.27958 + parent: 40599 + - uid: 42206 + components: + - type: Transform + pos: 41.364914,39.217342 + parent: 40599 + - uid: 42207 + components: + - type: Transform + pos: 82.886475,33.7469 + parent: 40599 + - uid: 46042 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 19616 + pos: -10.482787,-8.363316 + parent: 45355 + - uid: 46043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 19617 + rot: 3.141592653589793 rad + pos: -7.515173,-12.550816 + parent: 45355 + - uid: 46044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 19618 + rot: 3.141592653589793 rad + pos: -8.546423,-10.441441 + parent: 45355 + - uid: 46045 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-70.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasPassiveGate - entities: - - uid: 19619 + pos: -6.8862715,-14.740809 + parent: 45355 + - uid: 46046 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41890 + pos: 3.613717,-15.459559 + parent: 45355 + - uid: 46047 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,57.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' -- proto: GasPassiveVent + pos: 18.317617,-0.6030139 + parent: 45355 + - uid: 46048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.959325,8.089431 + parent: 45355 + - uid: 46049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.798578,15.1384 + parent: 45355 +- proto: FloraTreeSnow02 entities: - - uid: 19620 + - uid: 19540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,25.5 + pos: -120.122154,-7.9236217 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19621 + - uid: 19541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-70.5 + rot: 1.5707963267948966 rad + pos: 35.450592,-18.414192 parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19622 + - uid: 19542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-58.5 + pos: 0.582947,7.3023243 parent: 2 - - uid: 19623 + - uid: 19543 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-58.5 + pos: -14.378601,26.786457 parent: 2 - - uid: 19624 + - uid: 19544 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-58.5 + pos: -122.10101,-3.8337555 parent: 2 - - uid: 19625 + - uid: 19545 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-58.5 + rot: -1.5707963267948966 rad + pos: 66.45443,-11.725639 parent: 2 - - uid: 19626 + - uid: 19546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-70.5 + pos: 11.51918,7.5610294 parent: 2 - - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 19627 + - uid: 19547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-70.5 + pos: -120.51166,14.566118 parent: 2 - - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 19628 + - uid: 19548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-70.5 + pos: -115.50795,-13.066473 parent: 2 - - type: AtmosPipeColor - color: '#525252FF' - - uid: 19629 + - uid: 19549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-68.5 + pos: -84.178604,-13.843458 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19630 + - uid: 42208 + components: + - type: Transform + pos: 27.656998,32.331406 + parent: 40599 + - uid: 42209 + components: + - type: Transform + pos: 39.50061,24.062729 + parent: 40599 + - uid: 42210 + components: + - type: Transform + pos: 40.66179,43.436092 + parent: 40599 + - uid: 42211 + components: + - type: Transform + pos: 80.0271,39.44221 + parent: 40599 + - uid: 46050 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-70.5 + pos: -3.6699524,-15.2067795 + parent: 45355 +- proto: FloraTreeSnow03 + entities: + - uid: 19550 + components: + - type: Transform + pos: 79.13844,-26.764572 parent: 2 - - type: AtmosPipeColor - color: '#D75500FF' - - uid: 19631 + - uid: 19551 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-59.5 + pos: 34.315598,-24.232727 parent: 2 - - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 19632 + - uid: 19552 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-63.5 + pos: 40.347485,3.0837348 parent: 2 - - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 19633 + - uid: 19553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-60.5 + rot: 1.5707963267948966 rad + pos: 37.563522,1.6892184 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19634 + - uid: 19554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-60.5 + rot: 1.5707963267948966 rad + pos: 32.402668,-7.199308 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19635 + - uid: 19555 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-60.5 + pos: 21.011658,-21.985718 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19636 + - uid: 19556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-37.5 + pos: 13.376041,4.7866993 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19637 + - uid: 19557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-48.5 + pos: -14.849867,21.357962 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - type: Stealth - maxVisibility: -1 - lastVisibility: -1 - examineThreshold: 0 - hadOutline: True - - uid: 19638 + - uid: 19558 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,-48.5 + pos: -53.79974,1.3610549 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19639 + - uid: 19559 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-46.5 + pos: -117.86664,-7.9979014 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19640 + - uid: 19560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,47.5 + pos: -75.23748,1.42995 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19641 + - uid: 19561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,1.5 + pos: 4.8027954,24.428684 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19642 + - uid: 19562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,0.5 + pos: 35.674328,-7.041679 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19643 + - uid: 19563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,23.5 + pos: 31.188595,-5.6385345 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19644 + - uid: 19564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,22.5 + pos: 41.213852,-14.6109295 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19645 + - uid: 19565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,47.5 + pos: 2.1095643,7.3820763 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19646 + - uid: 19566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,18.5 + pos: -119.59857,-9.304255 parent: 2 - - uid: 19647 + - uid: 19567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,19.5 + pos: -87.898285,-12.202673 parent: 2 - - uid: 41891 + - uid: 19568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,61.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41892 + pos: -62.349266,-21.34523 + parent: 2 + - uid: 19569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,59.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41893 + pos: -71.953094,-16.140877 + parent: 2 + - uid: 19570 components: - type: Transform - pos: 40.5,63.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41894 + pos: -89.607185,-0.7023649 + parent: 2 + - uid: 19571 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,59.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41895 + pos: -38.907673,-73.38629 + parent: 2 + - uid: 42212 components: - type: Transform - pos: 46.5,63.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41896 + pos: 26.930435,34.675156 + parent: 40599 + - uid: 42213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,56.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41897 + pos: 40.091255,29.652372 + parent: 40599 + - uid: 42214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,63.5 - parent: 40203 - - uid: 41898 + pos: 37.770393,40.55935 + parent: 40599 + - uid: 42215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,61.5 - parent: 40203 - - uid: 41899 + pos: 29.976799,36.357967 + parent: 40599 + - uid: 42216 components: - type: Transform - pos: 36.5,83.5 - parent: 40203 - - uid: 41900 + pos: 44.046707,42.08844 + parent: 40599 + - uid: 42217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,80.5 - parent: 40203 - - uid: 41901 + pos: 77.65142,29.880468 + parent: 40599 + - uid: 42218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,81.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' -- proto: GasPipeBend - entities: - - uid: 19648 + pos: 82.34077,41.155254 + parent: 40599 + - uid: 42219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19649 + pos: 73.45946,31.62696 + parent: 40599 + - uid: 42220 components: - type: Transform - pos: -48.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19650 + pos: 60.604717,29.297094 + parent: 40599 + - uid: 42221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19651 + pos: 28.914082,40.18123 + parent: 40599 + - uid: 46051 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-43.5 + pos: -0.050729156,-15.1911545 + parent: 45355 +- proto: FloraTreeSnow04 + entities: + - uid: 19572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.343117,-12.206051 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19652 + - uid: 19573 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,6.5 + pos: 30.741177,6.786087 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19653 + - uid: 19574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-4.5 + pos: -101.523994,-11.092698 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19654 + - uid: 19575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 + pos: 97.5975,-24.501892 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19655 + - uid: 19576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,11.5 + pos: 99.56625,-17.676899 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19656 + - uid: 19577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-17.5 + pos: 83.30169,-23.685377 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19657 + - uid: 19578 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-15.5 + rot: 1.5707963267948966 rad + pos: 36.171303,14.009338 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19658 + - uid: 19579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-15.5 + rot: 1.5707963267948966 rad + pos: 42.38999,-9.143551 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19659 + - uid: 19580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,12.5 + rot: 1.5707963267948966 rad + pos: 37.117764,-24.40325 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19660 + - uid: 19581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,11.5 + rot: 1.5707963267948966 rad + pos: 41.811054,7.138578 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19661 + - uid: 19582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,13.5 + rot: 1.5707963267948966 rad + pos: 30.32,-16.07546 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19662 + - uid: 19583 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,14.5 + pos: 40.957355,-2.1133704 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19663 + - uid: 19584 components: - type: Transform - pos: 17.5,14.5 + pos: -14.378601,21.968887 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19664 + - uid: 19585 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,11.5 + pos: -58.784115,5.361055 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19665 + - uid: 19586 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,16.5 + rot: 1.5707963267948966 rad + pos: -11.514923,30.99669 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19666 + - uid: 19587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,12.5 + pos: -4.2113895,31.208168 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19667 + - uid: 19588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-17.5 + pos: -15.904507,32.08118 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19668 + - uid: 19589 components: - type: Transform - pos: 21.5,13.5 + pos: 29.782345,-4.1229095 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19669 + - uid: 19590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,14.5 + pos: 32.188595,0.4156146 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19670 + - uid: 19591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,12.5 + pos: 5.001709,7.2172794 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19671 + - uid: 19592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,57.5 + pos: -8.378452,7.8110294 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19672 + - uid: 19593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,13.5 + pos: -126.7672,10.217663 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19673 + - uid: 19594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,18.5 + pos: -110.78415,-12.510317 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19674 + - uid: 19595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,16.5 + pos: -127.83267,11.38818 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19675 + - uid: 19596 components: - type: Transform - pos: 22.5,12.5 + pos: 10.549877,-29.313246 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19676 + - uid: 19597 components: - type: Transform - pos: 18.5,16.5 + pos: -73.47724,69.479164 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19677 + - uid: 19598 components: - type: Transform - pos: 20.5,14.5 + pos: -57.494064,75.43609 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19678 + - uid: 19599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,5.5 + pos: -32.646324,73.33948 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19679 + - uid: 19600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,8.5 + pos: -118.64645,44.93149 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19680 + - uid: 42222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19681 + pos: 46.438892,20.758368 + parent: 40599 + - uid: 42223 components: - type: Transform - pos: -21.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19682 + pos: 58.75167,33.85061 + parent: 40599 + - uid: 42224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19683 + pos: 56.40831,32.870625 + parent: 40599 + - uid: 46052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19684 + rot: 3.141592653589793 rad + pos: 11.236332,-15.355529 + parent: 45355 + - uid: 46053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19685 + rot: 3.141592653589793 rad + pos: 8.406036,12.064729 + parent: 45355 + - uid: 46054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.286016,17.132244 + parent: 45355 +- proto: FloraTreeSnow05 + entities: + - uid: 19601 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-2.5 + pos: 30.88179,13.115231 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19686 + - uid: 19602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 + rot: 1.5707963267948966 rad + pos: 35.270557,9.740141 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19687 + - uid: 19603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 + pos: 6.504822,6.4741993 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19688 + - uid: 19604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-4.5 + pos: -4.5852327,25.533638 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19689 + - uid: 19605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 + rot: -1.5707963267948966 rad + pos: 78.97161,-25.451319 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19690 + - uid: 19606 components: - type: Transform - pos: -21.5,8.5 + pos: -1.673976,24.298649 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19691 + - uid: 19607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 + pos: -16.310757,30.64368 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19692 + - uid: 19608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-3.5 + pos: 29.017761,67.54561 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19693 + - uid: 19609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-7.5 + pos: -126.408264,14.619928 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19694 + - uid: 19610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 + pos: -126.74074,5.411743 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19695 + - uid: 19611 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-54.5 + pos: -126.42221,0.3104272 parent: 2 - - uid: 19696 + - uid: 19612 components: - type: Transform - pos: 50.5,-54.5 + pos: -125.46069,-6.8999896 parent: 2 - - uid: 19697 + - uid: 19613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-53.5 + pos: -115.692444,-8.998375 parent: 2 - - uid: 19698 + - uid: 19614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-57.5 + pos: -65.962975,-17.834398 parent: 2 - - uid: 19699 + - uid: 19615 components: - type: Transform - pos: 52.5,-57.5 + pos: -65.44599,75.135414 parent: 2 - - uid: 19700 + - uid: 19616 components: - type: Transform - pos: 51.5,-53.5 + pos: -57.056564,74.43609 parent: 2 - - uid: 19701 + - uid: 19617 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-57.5 + pos: -39.740627,-65.68097 parent: 2 - - uid: 19702 + - uid: 19618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-57.5 + rot: 3.141592653589793 rad + pos: -27.63998,-72.19405 parent: 2 - - uid: 19703 + - uid: 19619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-52.5 + pos: 46.302254,-6.6682186 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19704 + - uid: 19620 components: - type: Transform - pos: -27.5,-48.5 + pos: -41.981632,75.65198 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19705 + - uid: 19621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-41.5 + pos: -115.621185,40.81054 parent: 2 - - uid: 19706 + - uid: 42225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19707 + pos: 48.876392,19.492743 + parent: 40599 + - uid: 42226 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19708 + pos: 51.47974,31.558582 + parent: 40599 + - uid: 42227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19709 + pos: 34.17211,37.061092 + parent: 40599 + - uid: 42228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19710 + pos: 61.517296,38.374046 + parent: 40599 + - uid: 42229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,50.5 - parent: 2 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 19711 + pos: 69.596664,23.876787 + parent: 40599 + - uid: 42230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19712 + pos: 84.49702,39.538067 + parent: 40599 + - uid: 42231 components: - type: Transform - pos: 43.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19713 + pos: 70.69383,44.77529 + parent: 40599 +- proto: FloraTreeSnow06 + entities: + - uid: 19622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-59.5 + pos: 100.53665,-33.94917 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19714 + - uid: 19623 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-59.5 + pos: 83.93981,-8.105104 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19715 + - uid: 19624 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-58.5 + pos: 40.71197,-20.1928 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19716 + - uid: 19625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-58.5 + rot: 1.5707963267948966 rad + pos: 30.744308,8.744913 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19717 + - uid: 19626 components: - type: Transform - pos: -1.5,-53.5 + rot: 1.5707963267948966 rad + pos: 36.887745,6.857328 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19718 + - uid: 19627 components: - type: Transform - pos: 4.5,-48.5 + rot: 1.5707963267948966 rad + pos: 36.921696,-15.723898 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19719 + - uid: 19628 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-50.5 + pos: 5.901346,-27.16413 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19720 + - uid: 19629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-55.5 + pos: -3.7169676,5.6773243 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19721 + - uid: 19630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-44.5 + pos: -24.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19722 + - uid: 19631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-49.5 + pos: -8.382108,23.486763 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19723 + - uid: 19632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-43.5 + pos: -127.21039,-4.46668 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19724 + - uid: 19633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-46.5 + pos: -90.87544,-9.454807 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19725 + - uid: 19634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-45.5 + pos: -9.33639,29.817543 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19726 + - uid: 19635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-37.5 + pos: 27.049011,67.49873 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19727 + - uid: 19636 components: - type: Transform - pos: 67.5,-43.5 + pos: 24.025574,69.444046 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19728 + - uid: 19637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-38.5 + pos: -135.46486,0.9308915 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19729 + - uid: 19638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-34.5 + pos: -125.09421,-4.1803827 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19730 + - uid: 19639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-38.5 + pos: -79.025024,-13.152241 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19731 + - uid: 19640 components: - type: Transform - pos: -28.5,-40.5 + rot: 3.141592653589793 rad + pos: -29.07748,-69.77218 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19732 + - uid: 19641 components: - type: Transform - pos: 70.5,-38.5 + pos: -35.761925,75.51135 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19733 + - uid: 19642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-38.5 + pos: -114.66025,51.4746 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19734 + - uid: 42232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19735 + pos: 55.180862,23.805243 + parent: 40599 + - uid: 42233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19736 + pos: 48.909676,29.575954 + parent: 40599 + - uid: 42234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19737 + pos: 65.6711,33.560753 + parent: 40599 + - uid: 42235 + components: + - type: Transform + pos: 78.260796,25.778906 + parent: 40599 + - uid: 46055 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19738 + pos: -13.319838,8.087586 + parent: 45355 + - uid: 46056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19739 + rot: 3.141592653589793 rad + pos: -9.876711,-9.954698 + parent: 45355 + - uid: 46057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19740 + rot: 3.141592653589793 rad + pos: -8.693164,-12.044512 + parent: 45355 + - uid: 46058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19741 + rot: 3.141592653589793 rad + pos: -5.5068755,-14.179045 + parent: 45355 + - uid: 46059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19742 + rot: 3.141592653589793 rad + pos: 13.864398,-13.464373 + parent: 45355 + - uid: 46060 components: - type: Transform - pos: 79.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19743 + rot: 3.141592653589793 rad + pos: 14.817523,-12.151873 + parent: 45355 + - uid: 46061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19744 + rot: 3.141592653589793 rad + pos: 17.644619,-10.236674 + parent: 45355 + - uid: 46062 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19745 + pos: 17.418034,1.6508749 + parent: 45355 + - uid: 46063 components: - type: Transform - pos: 56.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19746 + rot: 3.141592653589793 rad + pos: 7.4559407,14.213188 + parent: 45355 + - uid: 46064 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19747 + pos: -11.566153,13.7351265 + parent: 45355 +- proto: FloraTreeStump + entities: + - uid: 42236 components: - type: Transform - pos: -9.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19748 + rot: 3.141592653589793 rad + pos: 62.276016,33.400635 + parent: 40599 + - uid: 42237 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19749 + pos: 42.79831,31.040726 + parent: 40599 + - uid: 46065 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19750 + pos: -6.6187067,18.962374 + parent: 45355 + - uid: 46066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-42.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19751 + rot: 3.141592653589793 rad + pos: 9.800167,11.602237 + parent: 45355 + - uid: 46067 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19752 + pos: -11.858823,1.736839 + parent: 45355 + - uid: 46068 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19753 + pos: 5.9039645,-14.096798 + parent: 45355 + - uid: 46069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19754 + rot: 3.141592653589793 rad + pos: -10.624448,12.728599 + parent: 45355 + - uid: 46070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19755 + rot: 3.141592653589793 rad + pos: 2.4664645,-12.346798 + parent: 45355 + - uid: 46071 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19756 + pos: 10.830197,2.6098442 + parent: 45355 + - uid: 46072 components: - type: Transform - pos: -21.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19757 + pos: 8.0501375,-5.578968 + parent: 45355 + - uid: 46073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19758 + pos: 0.5158243,-8.71451 + parent: 45355 + - uid: 46074 components: - type: Transform - pos: -9.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19759 + pos: 11.103602,-12.401955 + parent: 45355 + - uid: 46075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19760 + pos: 15.822352,2.093999 + parent: 45355 +- proto: FloraTreeStumpConifer + entities: + - uid: 42238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19761 + rot: 3.141592653589793 rad + pos: 75.14775,31.869911 + parent: 40599 + - uid: 42239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19762 + rot: 3.141592653589793 rad + pos: 77.234924,38.61676 + parent: 40599 + - uid: 42240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19763 + rot: 3.141592653589793 rad + pos: 86.356415,41.71051 + parent: 40599 + - uid: 42241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19764 + rot: 3.141592653589793 rad + pos: 52.857315,25.302055 + parent: 40599 + - uid: 42242 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19765 + pos: 30.715027,34.549255 + parent: 40599 + - uid: 42243 components: - type: Transform - pos: -22.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19766 + rot: 3.141592653589793 rad + pos: 43.031662,40.352585 + parent: 40599 + - uid: 46076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19767 + pos: -5.5707426,-4.5113854 + parent: 45355 +- proto: FoamCutlass + entities: + - uid: 19643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-1.5 + pos: -108.75692,2.527192 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19768 +- proto: FolderSpawner + entities: + - uid: 19644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,0.5 + rot: 1.5707963267948966 rad + pos: 61.349636,-34.397236 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19769 + - uid: 19645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-1.5 + pos: 61.52151,-34.53786 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19770 + - uid: 19646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-0.5 + rot: 3.141592653589793 rad + pos: -10.019881,-12.6802435 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19771 + - uid: 19647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,0.5 + rot: 3.141592653589793 rad + pos: -10.207381,-12.6802435 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19772 + - uid: 19648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,1.5 + pos: -26.658552,52.026752 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19773 + - uid: 19649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,10.5 + pos: 40.49442,-43.57073 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19774 + - uid: 19650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,11.5 + pos: 40.635044,-43.35198 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19775 + - uid: 19651 components: - type: Transform - pos: -49.5,11.5 + rot: 1.5707963267948966 rad + pos: 2.5089273,1.0137157 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19776 + - uid: 19652 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,10.5 + pos: -10.041117,-12.460371 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19777 + - uid: 19653 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,8.5 + pos: 2.3683023,-1.5175343 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19778 + - uid: 19654 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19779 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,12.5 + pos: 2.5870523,1.1855907 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19780 + - uid: 19655 components: - type: Transform - pos: -28.5,1.5 + rot: -1.5707963267948966 rad + pos: -19.427551,3.7248254 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19781 + - uid: 19656 components: - type: Transform - pos: 19.5,12.5 + rot: -1.5707963267948966 rad + pos: -19.458801,3.8810754 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19782 + - uid: 19657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 + rot: -1.5707963267948966 rad + pos: -1.562232,-37.08457 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19783 + - uid: 19658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,14.5 + rot: -1.5707963267948966 rad + pos: -1.452857,-37.350197 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19784 + - uid: 19659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-12.5 + pos: 32.317886,-53.38665 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19785 + - uid: 19660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-3.5 + pos: 32.55226,-53.5429 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19786 + - uid: 19661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,12.5 + pos: -4.3732243,-5.406137 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19787 + - uid: 19662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,12.5 + pos: -4.6232243,-5.515512 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19788 + - uid: 19663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-21.5 + pos: 52.40338,-53.22698 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19789 + - uid: 19664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,14.5 + pos: 11.347072,-6.4972415 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19790 + - uid: 19665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,12.5 + pos: 11.628322,-6.4816165 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19791 + - uid: 19666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,13.5 + pos: 52.544006,-53.492603 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19792 + - uid: 19667 components: - type: Transform - pos: 18.5,13.5 + pos: 16.751728,-34.618332 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19793 + - uid: 19668 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,13.5 + pos: 9.820408,19.49928 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19794 + - uid: 19669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,16.5 + rot: 1.5707963267948966 rad + pos: 9.914158,19.608656 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19795 + - uid: 19670 components: - type: Transform - pos: 2.5,-10.5 + pos: -34.594933,1.7128587 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19796 + - uid: 19671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,14.5 + pos: -34.313683,2.2909837 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19797 + - uid: 19672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-3.5 + rot: 3.141592653589793 rad + pos: -14.589031,57.569798 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19798 + - uid: 19673 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,15.5 + pos: -14.448406,57.601048 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19799 + - uid: 19674 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,13.5 + rot: -1.5707963267948966 rad + pos: -1.4549136,-32.81617 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19800 + - uid: 19675 components: - type: Transform - pos: 19.5,15.5 + rot: 1.5707963267948966 rad + pos: 22.927282,-29.379726 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19801 + - uid: 19676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,14.5 + rot: 1.5707963267948966 rad + pos: 5.5354357,-1.3597445 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19802 + - uid: 19677 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,13.5 + pos: 5.6760607,-1.4691195 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19803 + - uid: 19678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,15.5 + pos: -103.51546,-6.0062623 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19804 + - uid: 19679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 + rot: -1.5707963267948966 rad + pos: -103.40608,-6.1781373 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19805 + - uid: 19680 components: - type: Transform - pos: -9.5,2.5 + rot: -1.5707963267948966 rad + pos: -12.41413,-14.582071 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19806 + - uid: 19681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,54.5 + pos: 75.179825,-38.36977 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19807 + - uid: 19682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,46.5 + pos: 75.398575,-38.43227 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19808 + - uid: 19683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,43.5 + rot: 3.141592653589793 rad + pos: -109.73356,1.6354549 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19809 + - uid: 19684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,47.5 + rot: 3.141592653589793 rad + pos: -109.48356,1.52608 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19810 + - uid: 19685 components: - type: Transform - pos: -22.5,46.5 + rot: 3.141592653589793 rad + pos: -109.78043,1.6042049 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19811 + - uid: 19686 components: - type: Transform - pos: -21.5,47.5 + rot: -1.5707963267948966 rad + pos: 63.33514,-32.5278 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19812 + - uid: 42244 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19813 + pos: 62.362946,77.59976 + parent: 40599 + - uid: 42245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19814 + pos: 73.48707,73.41478 + parent: 40599 + - uid: 42246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19815 + rot: 2.129301687433082 rad + pos: 54.46452,68.63651 + parent: 40599 +- proto: FoodApple + entities: + - uid: 19688 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19816 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19689 components: - type: Transform - pos: -16.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19817 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19818 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19819 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42247 components: - type: Transform - pos: -10.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19820 + rot: 1.5707963267948966 rad + pos: 47.44825,72.63187 + parent: 40599 + - uid: 42248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19821 + rot: -1.5707963267948966 rad + pos: 47.588875,71.81937 + parent: 40599 + - uid: 42249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19822 + pos: 48.807625,72.53812 + parent: 40599 + - uid: 42251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19823 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42252 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19824 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,46.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19825 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,47.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19826 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBakedCannabisBrownie + entities: + - uid: 19707 components: - type: Transform - pos: -5.5,58.5 + pos: -12.71586,43.20624 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19827 +- proto: FoodBakedVulpkaninPlate + entities: + - uid: 19708 components: - type: Transform - pos: -12.5,59.5 + pos: 92.49517,-25.166698 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19828 +- proto: FoodBluePumpkin + entities: + - uid: 19709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,58.5 + pos: 2.3677516,20.26646 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19829 +- proto: FoodBowlBig + entities: + - uid: 8452 components: - type: Transform - pos: -13.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19830 + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,57.5 + pos: -115.54711,9.66943 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19831 + - uid: 19711 components: + - type: MetaData + desc: 'Простая миска, на ней имеется подпись: "Тропико <3"' - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,56.5 + pos: -1.628458,-56.501747 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19832 + - uid: 19712 components: - type: Transform - pos: -4.5,56.5 + pos: -14.9157715,60.101974 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19833 + - uid: 19713 components: - type: Transform - pos: 3.5,51.5 + pos: 3.850555,51.83153 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19834 + - uid: 19714 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,51.5 + pos: 27.549128,30.623116 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19835 + - uid: 19715 components: - type: Transform - pos: 4.5,52.5 + pos: -113.60961,12.95068 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19836 + - uid: 19716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,43.5 + pos: -114.65649,9.48193 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19837 + - uid: 19717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,43.5 + pos: -43.487476,-14.272482 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19838 +- proto: FoodBoxDonkpocketHonk + entities: + - uid: 19718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,51.5 + pos: 24.441048,-51.260887 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19839 + - uid: 19719 components: - type: Transform - pos: -1.5,53.5 + pos: 53.340305,12.25 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19840 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 19720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,53.5 + pos: 24.722298,-51.448387 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19841 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 19721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,45.5 + pos: 5.5061197,-56.3051 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19842 +- proto: FoodBoxDonkpocketStonk + entities: + - uid: 19722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,45.5 + pos: 8.486818,-3.9350662 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19843 + - uid: 19723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,44.5 + pos: -105.28401,41.69051 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19844 +- proto: FoodBoxDonut + entities: + - uid: 19724 components: - type: Transform - pos: 7.5,49.5 + pos: 15.600464,-3.5600152 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19845 + - uid: 19725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,48.5 + pos: 15.506714,-3.3725152 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19846 + - uid: 19726 components: - type: Transform - pos: 9.5,47.5 + pos: 57.674904,-5.1366825 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19847 + - uid: 19727 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,46.5 + pos: 57.456154,-5.3085575 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19848 + - uid: 19728 components: - type: Transform - pos: -0.5,62.5 + pos: -3.508275,-3.3625588 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19849 + - uid: 19729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,61.5 + pos: -10.506507,51.684956 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19850 + - uid: 19730 components: - type: Transform - pos: -2.5,61.5 + pos: -36.476482,-14.3062725 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19851 + - uid: 19731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,62.5 + pos: 98.446,-8.226685 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19852 + - uid: 19732 components: - type: Transform - pos: -5.5,69.5 + pos: 98.6335,-8.46106 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19853 + - uid: 19733 components: - type: Transform - pos: -4.5,68.5 + pos: 70.44629,-42.493614 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19854 + - uid: 19734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,69.5 + pos: -25.446945,-19.260021 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19855 + - uid: 19735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,72.5 + pos: -25.509571,-19.450834 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19856 + - uid: 19736 components: - type: Transform - pos: -18.5,55.5 + pos: -28.292744,-11.275583 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19857 + - uid: 42260 components: - type: Transform - pos: -20.5,56.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19858 + parent: 42259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxPizzaFilled + entities: + - uid: 19737 components: - type: Transform - pos: 4.5,39.5 + pos: 25.550423,-52.229637 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19859 + - uid: 19738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,38.5 + pos: -4.554826,-50.249317 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19860 + - uid: 19739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,57.5 + pos: -4.414201,-50.452442 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19861 + - uid: 19741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,58.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19862 + parent: 19740 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,42.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19863 + parent: 19740 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBreadBaguetteSlice + entities: + - uid: 19743 components: - type: Transform - pos: 18.5,60.5 + pos: 17.27273,-13.190844 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19864 +- proto: FoodBreadCreamcheese + entities: + - uid: 46078 components: - type: Transform - pos: 9.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19865 + parent: 46077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBreadMimanaSlice + entities: + - uid: 19744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,63.5 + pos: 60.424507,12.706606 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19866 +- proto: FoodBreadMoldySlice + entities: + - uid: 19745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,61.5 + pos: -50.762753,68.434906 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19867 + - uid: 19746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,60.5 + pos: -35.307728,-52.57635 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19868 + - uid: 19747 components: - type: Transform - pos: 21.5,58.5 + pos: -36.241013,23.634487 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19869 + - uid: 42264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19870 + pos: 52.719574,79.48272 + parent: 40599 + - uid: 42265 components: - type: Transform - pos: 19.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19871 + pos: 37.743385,70.56212 + parent: 40599 +- proto: FoodBreadPlain + entities: + - uid: 19748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,60.5 + pos: 26.433075,39.836052 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19872 +- proto: FoodBreadVolcanic + entities: + - uid: 19750 components: + - type: MetaData + desc: Не будите деда.... + name: Syxapik - type: Transform - pos: -24.5,49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19873 + parent: 19749 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerCat + entities: + - uid: 19751 components: + - type: MetaData + desc: Наконец-то эти кошки и кошколюди на что-то годятся! Мур? + name: бургер "Захар Думко" - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,51.5 + pos: 32.489643,33.795963 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19874 +- proto: FoodBurgerClown + entities: + - uid: 19752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,46.5 + pos: 40.487137,58.469055 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19875 + - uid: 19753 components: - type: Transform - pos: -26.5,50.5 + pos: 53.328644,12.728708 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19876 +- proto: FoodBurgerEmpowered + entities: + - uid: 46695 components: - type: Transform - pos: 14.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19877 + parent: 46694 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 46696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19878 + parent: 46694 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBurgerHuman + entities: + - uid: 47069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19879 + pos: -3.546791,6.56374 + parent: 46943 +- proto: FoodBurgerMothRoach + entities: + - uid: 19754 components: + - type: MetaData + desc: Монстр... - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,1.5 + pos: 26.429562,39.51317 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19880 +- proto: FoodBurgerSuper + entities: + - uid: 8470 components: - type: Transform - pos: 16.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19881 + parent: 8468 + - type: Physics + canCollide: False +- proto: FoodCakeClownSlice + entities: + - uid: 15364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19882 + parent: 15361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCakePumpkin + entities: + - uid: 19755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 + pos: 26.51138,33.749554 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19883 +- proto: FoodCakeSuppermatter + entities: + - uid: 46697 components: - type: Transform - pos: 9.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19884 + parent: 46694 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCakeSuppermatterSlice + entities: + - uid: 46698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19885 + parent: 46694 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 46699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19886 + parent: 46694 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCarrot + entities: + - uid: 19756 components: + - type: MetaData + desc: Ему плохо.... + name: нос снеговика - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,1.5 + pos: 62.30568,29.599459 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19887 +- proto: FoodCartCold + entities: + - uid: 19757 components: + - type: MetaData + desc: Серьезно? На этой планете? - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-0.5 + pos: 43.5,45.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19888 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 19759 + - 19758 + - type: Storage + storedItems: + 19759: + position: 0,0 + _rotation: South + 19758: + position: 1,0 + _rotation: South +- proto: FoodCartHot + entities: + - uid: 17656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 + rot: -1.5707963267948966 rad + pos: -8.5,28.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19889 + - type: Storage + storedItems: + 17657: + position: 0,0 + _rotation: South + 17658: + position: 1,0 + _rotation: South + 17659: + position: 2,0 + _rotation: South + 17660: + position: 3,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 17657 + - 17658 + - 17659 + - 17660 + coldsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + hotsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + bbqsauce_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + ketchup_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: FoodCheese + entities: + - uid: 19692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19890 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodChevreSlice + entities: + - uid: 19760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,1.5 + pos: 22.635378,15.2948265 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19891 +- proto: FoodCondimentBottleKetchup + entities: + - uid: 42267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19892 + parent: 42266 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodCornTrash + entities: + - uid: 46700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19893 + pos: 5.60913,6.444336 + parent: 46584 +- proto: FoodDonkpocket + entities: + - uid: 19761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 + pos: -49.600594,2.63321 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19894 +- proto: FoodDonut + entities: + - uid: 19763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19895 + parent: 19762 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42261 components: - type: Transform - pos: 10.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19896 + parent: 42259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodDonutApple + entities: + - uid: 19764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19897 + parent: 19762 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-3.5 + pos: -9.175911,49.55066 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19898 + - uid: 19770 components: - type: Transform - pos: 12.5,-3.5 + pos: -18.54009,23.29389 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19899 +- proto: FoodDonutBluePumpkin + entities: + - uid: 19765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19900 + parent: 19762 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19901 + parent: 19762 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19771 components: - type: Transform - pos: -3.5,-6.5 + pos: 23.410116,29.623993 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19902 +- proto: FoodDonutCaramel + entities: + - uid: 19772 components: - type: Transform - pos: -4.5,-7.5 + pos: -108.18995,22.620466 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19903 +- proto: FoodDonutChocolate + entities: + - uid: 19773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-7.5 + pos: -18.630068,23.610252 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19904 +- proto: FoodDonutHomer + entities: + - uid: 19767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19905 + parent: 19762 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19906 + parent: 19762 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 + pos: -18.222801,23.575342 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19907 +- proto: FoodDonutJellyChocolate + entities: + - uid: 19775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,8.5 + pos: 18.05398,-13.550219 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19908 +- proto: FoodDonutJellySweetpea + entities: + - uid: 19776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,9.5 + pos: 8.294286,-9.327936 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19909 +- proto: FoodDonutPink + entities: + - uid: 19777 components: - type: Transform - pos: 27.5,11.5 + pos: -50.583138,5.6522255 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19910 + - uid: 19778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-12.5 + pos: -28.572323,-15.270498 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19911 +- proto: FoodDonutPlain + entities: + - uid: 19779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 + pos: -37.547844,-14.2835865 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19912 + - uid: 19780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,13.5 + pos: -107.8462,22.807966 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19913 +- proto: FoodDonutPoison + entities: + - uid: 19781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 + pos: -50.36571,5.708768 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19914 + - uid: 19782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,14.5 + pos: 70.586914,-42.743614 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19915 + - uid: 19783 components: - type: Transform - pos: 4.5,14.5 + pos: -28.416073,-15.317373 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19916 + - uid: 42262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19917 + parent: 42259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodDonutSweetpea + entities: + - uid: 42263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19918 + parent: 42259 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodEgg + entities: + - uid: 19784 components: - type: Transform - pos: 8.5,12.5 + pos: -52.2904,-30.420612 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19919 +- proto: FoodEggplant + entities: + - uid: 19786 components: + - type: MetaData + desc: Он сам выростил. + name: баклажан Джасина - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19920 + parent: 19785 + - type: Physics + canCollide: False +- proto: FoodFrozenFreezy + entities: + - uid: 8166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19921 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 8167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19922 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 8168 components: - type: Transform - pos: -6.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19923 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 8169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19924 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleTrash + entities: + - uid: 19787 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19925 - components: - - type: Transform - pos: 12.5,11.5 + pos: -56.086143,5.5093555 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19926 + - uid: 19788 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,25.5 + pos: -54.41427,0.19685566 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19927 + - uid: 19789 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,27.5 + pos: -37.29335,-52.701927 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19928 +- proto: FoodFrozenSandwich + entities: + - uid: 8170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19929 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 8171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19930 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19931 + parent: 19757 + - type: Physics + canCollide: False +- proto: FoodFrozenSnowconeBase + entities: + - uid: 19790 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,29.5 + pos: 91.353874,-44.086155 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19932 +- proto: FoodFrozenSnowconeBerry + entities: + - uid: 19791 components: - type: Transform - pos: 12.5,29.5 + pos: -52.623413,25.04044 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19933 +- proto: FoodFrozenSnowconeMime + entities: + - uid: 15374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19934 + parent: 15368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 19792 components: - type: Transform - pos: 13.5,38.5 + pos: -36.746475,-52.764427 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19935 + - uid: 19793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,38.5 + pos: -117.52675,16.551113 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19936 + - uid: 46701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19937 + pos: 5.48413,2.6943357 + parent: 46584 +- proto: FoodFrozenSundae + entities: + - uid: 8172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19938 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,36.5 + parent: 19757 + - type: Physics + canCollide: False +- proto: FoodKebabSkewer + entities: + - uid: 19794 + components: + - type: Transform + pos: 7.206238,52.684162 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19939 + - uid: 19795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,39.5 + rot: -1.5707963267948966 rad + pos: -35.590225,-54.233177 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19940 + - uid: 19796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,38.5 + rot: 3.141592653589793 rad + pos: -34.965225,-54.530052 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19941 + - uid: 19797 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,38.5 + pos: -90.78017,11.473915 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19942 + - uid: 19798 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,23.5 + pos: -91.523445,10.572033 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19943 + - uid: 19799 components: - type: Transform - pos: 34.5,25.5 + pos: 28.73694,32.632805 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19944 + - uid: 19800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,21.5 + pos: 28.533815,32.757805 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19945 + - uid: 19801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,35.5 + pos: -113.51586,12.685055 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19946 + - uid: 19802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,32.5 + pos: -113.39086,12.57568 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19947 + - uid: 19803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + pos: -89.48658,27.682053 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19948 + - uid: 19804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,37.5 + rot: -1.5707963267948966 rad + pos: 66.51151,-14.562191 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19949 + - uid: 19805 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,28.5 + pos: 66.38651,-14.530941 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19950 + - uid: 19806 components: + - type: MetaData + name: шампур - type: Transform - pos: 25.5,35.5 + pos: -79.503914,3.6304498 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19951 + - uid: 19807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,24.5 + rot: -1.5707963267948966 rad + pos: 66.62065,-14.152437 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19952 + - uid: 19808 components: - type: Transform - pos: 35.5,24.5 + pos: -29.632988,-49.161457 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19953 + - uid: 19809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,22.5 + rot: -1.5707963267948966 rad + pos: -89.44225,10.720694 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19954 + - uid: 19810 components: + - type: MetaData + desc: Хмм, вы случайно не строите мне личную станцию на леднике? + name: шашлычок из капитана - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,20.5 + pos: -80.69448,3.6266594 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19955 +- proto: FoodMealBearsteak + entities: + - uid: 19811 components: + - type: MetaData + desc: Скорее всего, это же будет и с вами. + name: мясо грейтайда - type: Transform - pos: 43.5,24.5 + pos: -70.56055,28.388502 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19956 +- proto: FoodMealFries + entities: + - uid: 8471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19957 + parent: 8468 + - type: Physics + canCollide: False +- proto: FoodMealFriesCheesy + entities: + - uid: 46079 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19958 + parent: 46077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMealNachosCheesy + entities: + - uid: 46080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19959 + parent: 46077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeat + entities: + - uid: 19693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19960 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19961 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19962 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19963 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19697 components: - type: Transform - pos: -12.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19964 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19965 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19699 components: - type: Transform - pos: -14.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19966 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19967 + parent: 19812 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19968 + parent: 19812 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19815 components: - type: Transform - pos: 53.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19969 + parent: 19812 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatChickenCooked + entities: + - uid: 19816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 + pos: -79.6566,3.4996147 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19970 + - uid: 19817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 + pos: -79.2816,3.6714897 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19971 +- proto: FoodMeatChickenFried + entities: + - uid: 19818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,1.5 + pos: 12.616928,-4.438344 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19972 +- proto: FoodMeatClown + entities: + - uid: 15365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19973 + parent: 15361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatCooked + entities: + - uid: 19819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,7.5 + pos: -60.627388,48.539715 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 19974 + - uid: 19820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,36.5 + pos: -60.502388,48.55534 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19975 + - uid: 19821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,24.5 + pos: -60.346138,48.46159 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19976 +- proto: FoodMeatLizardCooked + entities: + - uid: 19822 components: - type: Transform - pos: -15.5,24.5 + pos: 57.918888,-27.0204 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19977 + - uid: 19823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,4.5 + pos: 58.028263,-27.0829 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19978 +- proto: FoodMeatSalami + entities: + - uid: 8472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19979 + parent: 8467 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatXeno + entities: + - uid: 19824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,2.5 + pos: -75.84655,-10.106665 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19980 + - type: Physics + canCollide: False + - type: PointLight + color: '#65F057FF' + radius: 1.3 + missingComponents: + - Item + - Pullable + - uid: 19825 components: - type: Transform - pos: -99.5,8.5 + pos: -76.064415,-10.068254 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19981 + - type: Physics + canCollide: False + - type: PointLight + color: '#65F057FF' + radius: 1.3 + missingComponents: + - Item + - Pullable +- proto: FoodNoodlesSpesslaw + entities: + - uid: 19826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,2.5 + pos: -23.503222,25.640665 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19982 +- proto: FoodOrange + entities: + - uid: 42255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19983 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19984 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19985 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19986 + parent: 42250 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42268 components: - type: Transform - pos: -104.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19987 + rot: 1.5707963267948966 rad + pos: 51.76075,69.28812 + parent: 40599 + - uid: 42269 + components: + - type: Transform + pos: 50.07325,68.53812 + parent: 40599 + - uid: 42270 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19988 + pos: 50.38575,69.00687 + parent: 40599 + - uid: 42271 components: - type: Transform - pos: -105.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19989 + rot: -1.5707963267948966 rad + pos: 51.792,68.35062 + parent: 40599 +- proto: FoodPieBananaCream + entities: + - uid: 19827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,24.5 + pos: 52.159794,12.546875 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19990 + - uid: 19828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,16.5 + pos: 52.673523,12.572195 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19991 + - uid: 19829 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,20.5 + pos: 52.439148,12.790945 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19992 +- proto: FoodPieFrosty + entities: + - uid: 8173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,19.5 + parent: 8163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19830 + components: + - type: Transform + pos: -54.523643,2.6343555 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19993 +- proto: FoodPineapple + entities: + - uid: 19831 components: + - type: MetaData + desc: Филипп.. не надо... - type: Transform - pos: -107.5,19.5 + pos: 9.595919,43.761436 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19994 +- proto: FoodPizzaMoldySlice + entities: + - uid: 19832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,14.5 + pos: -34.787033,-56.589497 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19995 +- proto: FoodPizzaPineappleSlice + entities: + - uid: 19833 components: - type: Transform - pos: 11.5,-42.5 + pos: 24.187002,5.975911 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19996 +- proto: FoodPizzaSassysage + entities: + - uid: 19834 components: - type: Transform - pos: 13.5,45.5 + pos: -78.90245,2.9937217 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19997 +- proto: FoodPlate + entities: + - uid: 19835 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,45.5 + pos: 57.96001,-26.864477 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19998 + - uid: 19836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,40.5 + pos: 31.892878,30.70124 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19999 + - uid: 19837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,40.5 + pos: -60.439888,48.695965 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20000 +- proto: FoodPlatePlastic + entities: + - uid: 19838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,37.5 + pos: -4.4951077,36.812954 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20001 + - uid: 19839 components: - type: Transform - pos: 11.5,48.5 + pos: -115.37869,4.3043714 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20002 +- proto: FoodPlateSmall + entities: + - uid: 19840 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-42.5 + pos: 12.585678,-4.344594 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20003 + - uid: 19841 components: - type: Transform - pos: 6.5,-41.5 + pos: 33.520157,20.579605 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20004 + - uid: 19842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,49.5 + pos: 28.48627,30.544186 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20005 + - uid: 19843 components: - type: Transform - pos: -23.5,-13.5 + pos: -23.518847,25.703165 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20006 +- proto: FoodPlateSmallPlastic + entities: + - uid: 19844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-18.5 + pos: -114.48807,5.3981214 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20007 +- proto: FoodPlateSmallTrash + entities: + - uid: 19845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-18.5 + pos: -50.558605,67.92912 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20008 + - uid: 42272 + components: + - type: Transform + rot: 1.2217304763960306 rad + pos: 53.000824,78.623344 + parent: 40599 + - uid: 42273 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20009 + pos: 39.187603,34.517235 + parent: 40599 +- proto: FoodPlateTrash + entities: + - uid: 42274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20010 + rot: 3.5779249665883754 rad + pos: 50.032074,77.873344 + parent: 40599 + - uid: 42275 components: - type: Transform - pos: -97.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20011 + pos: 40.266514,36.862915 + parent: 40599 +- proto: FoodPoppy + entities: + - uid: 19846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,14.5 + pos: 58.48809,-16.495838 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20012 +- proto: FoodPotato + entities: + - uid: 19700 components: - type: Transform - pos: -21.5,19.5 - parent: 2 - - uid: 20013 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,18.5 - parent: 2 - - uid: 20014 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20015 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20016 + parent: 19687 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPumpkin + entities: + - uid: 19847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-11.5 + pos: -20.509312,22.646555 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20017 + - uid: 19848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-15.5 + pos: 26.495754,34.57768 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20018 + - uid: 19849 components: - type: Transform - pos: -27.5,-10.5 + pos: 26.652004,34.312054 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20019 + - uid: 19850 components: - type: Transform - pos: -47.5,3.5 + pos: 14.486435,31.469025 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20020 + - uid: 19851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,15.5 + pos: 16.47081,31.531525 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20021 + - uid: 19852 components: - type: Transform - pos: -22.5,12.5 + pos: -46.49368,25.523106 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20022 + - uid: 19853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,14.5 + pos: 1.6536989,44.479492 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20023 +- proto: FoodSaladValid + entities: + - uid: 19854 components: - type: Transform - pos: -31.5,12.5 + pos: -115.46171,3.6860867 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20024 +- proto: FoodShakerPepper + entities: + - uid: 19855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-33.5 + pos: 32.43601,20.551607 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20025 + - uid: 19856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-33.5 + pos: -114.80546,4.9360867 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20026 + - uid: 42276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20027 + pos: 41.322727,34.395687 + parent: 40599 + - uid: 46081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-33.5 + pos: 4.6059704,4.8257275 + parent: 45355 +- proto: FoodShakerSalt + entities: + - uid: 19857 + components: + - type: Transform + pos: 29.404758,23.285982 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 41902 + - uid: 19858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,62.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41903 + pos: 26.683075,39.398552 + parent: 2 + - uid: 19859 components: - type: Transform - pos: 44.5,62.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41904 + pos: -115.03983,4.9360867 + parent: 2 + - uid: 42277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,61.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41905 + pos: 41.55742,34.383343 + parent: 40599 + - uid: 46082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,56.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41906 + pos: 4.438413,4.863326 + parent: 45355 +- proto: FoodSnackDanDanNoodles + entities: + - uid: 42278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,60.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41907 + rot: 1.8675022996339325 rad + pos: 51.583202,77.42752 + parent: 40599 +- proto: FoodSnackPopcorn + entities: + - uid: 19860 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,59.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41908 + pos: -22.322544,44.842537 + parent: 2 + - uid: 19861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,59.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 41909 + pos: -22.619858,42.657204 + parent: 2 + - uid: 19862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,73.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41910 + pos: 94.81063,2.2568257 + parent: 2 + - uid: 19863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,76.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41911 + pos: 102.470116,-20.356697 + parent: 2 +- proto: FoodSoupElectron + entities: + - uid: 42279 components: - type: Transform - pos: 54.5,76.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41912 + pos: 41.483006,34.69631 + parent: 40599 +- proto: FoodSoupMystery + entities: + - uid: 19864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,75.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41913 + pos: -50.340878,68.778656 + parent: 2 +- proto: FoodSoupWingFangChu + entities: + - uid: 19865 components: + - type: MetaData + desc: пИсЮн ДрАчУ - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,79.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41914 + pos: -47.512863,-40.383553 + parent: 2 +- proto: FoodTartGrape + entities: + - uid: 46083 components: + - type: MetaData + name: плазменый тарт - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,81.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41915 + pos: -1.6832552,4.5027146 + parent: 45355 +- proto: FoodTartMime + entities: + - uid: 15375 components: - type: Transform - pos: 63.5,77.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41916 + parent: 15368 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinBeans + entities: + - uid: 19866 components: - type: Transform - pos: 69.5,75.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41917 + pos: -46.47838,68.81465 + parent: 2 +- proto: FoodTinBeansTrash + entities: + - uid: 19867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 72.5,72.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41918 + pos: -67.02105,48.662525 + parent: 2 + - uid: 19868 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,65.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41919 + pos: -38.41835,-54.483177 + parent: 2 + - uid: 19869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,65.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41920 + rot: -1.5707963267948966 rad + pos: -46.306503,67.7834 + parent: 2 + - uid: 19870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,61.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41921 + rot: 1.5707963267948966 rad + pos: -65.39094,30.464458 + parent: 2 + - uid: 46702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,66.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41922 + rot: 1.5707963267948966 rad + pos: 4.281005,3.4130857 + parent: 46584 +- proto: FoodTinMRE + entities: + - uid: 19871 components: - type: Transform - pos: 65.5,69.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41923 + pos: -4.533969,39.818462 + parent: 2 + - uid: 19872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,69.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41924 + pos: -45.50963,66.68965 + parent: 2 + - uid: 41883 + components: + - type: Transform + parent: 41880 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinMRETrash + entities: + - uid: 19873 + components: + - type: MetaData + desc: Пустая консервная банка. Внутри неё ползают несколько червей. Мерзость.. + - type: Transform + pos: -74.33082,38.540905 + parent: 2 + - uid: 19874 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,66.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41925 + pos: -37.29335,-55.405052 + parent: 2 + - uid: 19875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,68.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41926 + rot: 0.5235987755982988 rad + pos: -6.2502766,40.423523 + parent: 2 + - uid: 19876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,78.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41927 + pos: -46.50963,65.67403 + parent: 2 + - uid: 19877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,74.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41928 + pos: -46.400253,65.9084 + parent: 2 + - uid: 19878 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,60.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41929 + pos: -63.640938,29.683208 + parent: 2 + - uid: 19879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,52.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41930 + pos: -67.16638,48.263626 + parent: 2 + - uid: 46703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,51.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41931 + pos: 4.29663,2.6943357 + parent: 46584 +- proto: FoodTinPeachesMaint + entities: + - uid: 19880 components: - type: Transform - pos: 59.5,51.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41932 + pos: -74.683754,40.399567 + parent: 2 + - uid: 19881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,48.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41933 + pos: 48.24901,41.6647 + parent: 2 + - uid: 19882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,48.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41934 + pos: 48.62401,41.63345 + parent: 2 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 19883 components: - type: Transform - pos: 58.5,55.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41935 + rot: 1.5707963267948966 rad + pos: -34.48085,-56.639427 + parent: 2 +- proto: FoodTinPeachesTrash + entities: + - uid: 19884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,55.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41936 + pos: -35.308975,-54.217552 + parent: 2 + - uid: 19885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,44.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41937 + pos: -47.44713,68.73653 + parent: 2 + - uid: 19886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,43.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41938 + pos: -47.63463,68.06465 + parent: 2 + - uid: 19887 + components: + - type: Transform + pos: -47.244003,68.06465 + parent: 2 + - uid: 46704 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,43.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41939 + pos: 3.374755,4.709961 + parent: 46584 + - uid: 47032 components: - type: Transform - pos: 56.5,44.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41940 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ForensicPad + entities: + - uid: 19888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.885983,-20.413498 + parent: 2 +- proto: Fork + entities: + - uid: 19889 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,43.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41941 + pos: -49.942154,5.616374 + parent: 2 + - uid: 19890 components: - type: Transform - pos: 57.5,43.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41942 + rot: -1.5707963267948966 rad + pos: 7.50198,44.09028 + parent: 2 + - uid: 19891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,37.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41943 + rot: -3.141592653589793 rad + pos: 98.52794,-6.0498495 + parent: 2 + - uid: 19892 components: - type: Transform - pos: 48.5,37.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41944 + rot: -1.5707963267948966 rad + pos: 31.20502,30.700436 + parent: 2 + - uid: 42280 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,36.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41945 + pos: 65.237946,77.56851 + parent: 40599 + - uid: 42281 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,37.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41946 + pos: 49.537247,79.748344 + parent: 40599 + - uid: 42282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.61537,79.685844 + parent: 40599 + - uid: 42283 + components: + - type: Transform + rot: -1.9198621771937625 rad + pos: 50.505997,79.373344 + parent: 40599 + - uid: 42284 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,37.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41947 + pos: 73.53325,79.712875 + parent: 40599 + - uid: 46084 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,36.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 41948 + pos: 4.555597,4.691451 + parent: 45355 + - uid: 46085 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,79.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' -- proto: GasPipeBroken + pos: 4.586847,4.613326 + parent: 45355 +- proto: ForkPlastic entities: - - uid: 20028 + - uid: 19893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,57.5 + rot: -1.5707963267948966 rad + pos: -115.44119,4.4137464 parent: 2 - - uid: 20029 +- proto: FuelDispenser + entities: + - uid: 19894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,56.5 + pos: -11.5,41.5 parent: 2 - - uid: 20030 +- proto: GasAnalyzer + entities: + - uid: 19895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,56.5 + pos: 51.50554,-49.480225 parent: 2 - - uid: 20031 + - uid: 19896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,61.5 + pos: -23.771198,50.576004 parent: 2 - - uid: 20032 +- proto: GasCanisterBrokenBase + entities: + - uid: 19897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,60.5 + pos: 43.5,-37.5 parent: 2 - - uid: 20033 + - uid: 19898 components: - type: Transform - pos: 13.5,61.5 + rot: 1.5707963267948966 rad + pos: 45.5,-38.5 parent: 2 - - uid: 20034 +- proto: GasFilterFlipped + entities: + - uid: 19899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,58.5 + rot: 3.141592653589793 rad + pos: -21.5,50.5 parent: 2 - - uid: 20035 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasMinerAmmonia + entities: + - uid: 19900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,56.5 + pos: -2.5,-69.5 parent: 2 - - uid: 20036 +- proto: GasMinerCarbonDioxide + entities: + - uid: 19901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,58.5 + rot: 3.141592653589793 rad + pos: -10.5,-69.5 parent: 2 -- proto: GasPipeFourway +- proto: GasMinerNitrogenStationLarge entities: - - uid: 20037 + - uid: 19902 components: - type: Transform - pos: 61.5,6.5 + rot: 1.5707963267948966 rad + pos: -24.5,-62.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20038 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 19903 components: - type: Transform - pos: 3.5,-15.5 + rot: 1.5707963267948966 rad + pos: -24.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20039 +- proto: GasMinerPlasma + entities: + - uid: 19904 components: - type: Transform - pos: 11.5,-15.5 + rot: 1.5707963267948966 rad + pos: -14.5,-69.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20040 + - uid: 46705 components: - type: Transform - pos: -32.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20041 + rot: 1.5707963267948966 rad + pos: 1.5,15.5 + parent: 46584 + - type: GasMiner + spawnAmount: 10 + maxExternalPressure: 100 + - uid: 46706 components: - type: Transform - pos: -38.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20042 + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 46584 + - type: GasMiner + spawnAmount: 10 + maxExternalPressure: 100 + - uid: 46707 components: - type: Transform - pos: -43.5,-4.5 + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 46584 + - type: GasMiner + spawnAmount: 10 + maxExternalPressure: 100 +- proto: GasMinerWaterVapor + entities: + - uid: 19905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-69.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20043 + - uid: 19906 components: - type: Transform - pos: 18.5,-43.5 + pos: -17.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20044 + - type: GasMiner + spawnAmount: 2000 + spawnTemperature: 10273.2 + maxExternalPressure: 2000 + - uid: 42285 components: - type: Transform - pos: -22.5,51.5 + pos: 36.5,56.5 + parent: 40599 + - type: GasMiner + spawnAmount: 125 + maxExternalPressure: 125 +- proto: GasOutletInjector + entities: + - uid: 19907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20045 + color: '#D75500FF' + - uid: 19908 components: - type: Transform - pos: 22.5,-37.5 + rot: 3.141592653589793 rad + pos: -11.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20046 + color: '#525252FF' + - uid: 19909 components: - type: Transform - pos: -10.5,-45.5 + rot: 3.141592653589793 rad + pos: -7.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20047 + color: '#A1A1A1FF' + - uid: 19910 components: - type: Transform - pos: -27.5,-44.5 + rot: 3.141592653589793 rad + pos: -3.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20048 + color: '#7B29BAFF' + - uid: 19911 components: - type: Transform - pos: -14.5,-46.5 + rot: 1.5707963267948966 rad + pos: -25.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20049 + color: '#FF5E5EFF' + - uid: 19912 components: - type: Transform - pos: 0.5,-55.5 + rot: 1.5707963267948966 rad + pos: -25.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20050 + color: '#5E6BFFFF' + - uid: 19913 components: - type: Transform - pos: 1.5,-54.5 + rot: 3.141592653589793 rad + pos: -17.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20051 + color: '#17E8E2FF' +- proto: GasPassiveGate + entities: + - uid: 19914 components: - type: Transform - pos: -5.5,-45.5 + rot: 3.141592653589793 rad + pos: 29.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20052 + - uid: 42286 components: - type: Transform - pos: -15.5,-44.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 34.5,57.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20053 + color: '#888888FF' +- proto: GasPassiveVent + entities: + - uid: 19915 components: - type: Transform - pos: -28.5,-2.5 + rot: -1.5707963267948966 rad + pos: 57.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20054 + - uid: 19916 components: - type: Transform - pos: -48.5,12.5 + rot: 1.5707963267948966 rad + pos: -27.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20055 + - uid: 19917 components: - type: Transform - pos: -15.5,46.5 + rot: 3.141592653589793 rad + pos: -19.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20056 + color: '#17E8E2FF' + - uid: 19918 components: - type: Transform - pos: 5.5,47.5 + rot: 3.141592653589793 rad + pos: 47.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20057 + - uid: 19919 components: - type: Transform - pos: -0.5,47.5 + rot: 3.141592653589793 rad + pos: 52.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20058 + - uid: 19920 components: - type: Transform - pos: 4.5,49.5 + rot: 3.141592653589793 rad + pos: 50.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20059 + - uid: 19921 components: - type: Transform - pos: 2.5,-17.5 + rot: 3.141592653589793 rad + pos: 45.5,-58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20060 + - uid: 19922 components: - type: Transform - pos: 27.5,24.5 + rot: 3.141592653589793 rad + pos: -5.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20061 + color: '#A1A1A1FF' + - uid: 19923 components: - type: Transform - pos: 61.5,1.5 + rot: 3.141592653589793 rad + pos: -1.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20062 + color: '#7B29BAFF' + - uid: 19924 components: - type: Transform - pos: 62.5,0.5 + rot: 3.141592653589793 rad + pos: -9.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20063 + color: '#525252FF' + - uid: 19925 components: - type: Transform - pos: 62.5,7.5 + rot: 3.141592653589793 rad + pos: 0.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 20064 + - uid: 19926 components: - type: Transform - pos: -105.5,16.5 + rot: 3.141592653589793 rad + pos: -13.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20065 + color: '#D75500FF' + - uid: 19927 components: - type: Transform - pos: -47.5,-2.5 + rot: 1.5707963267948966 rad + pos: -25.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20066 + color: '#5E6BFFFF' + - uid: 19928 components: - type: Transform - pos: -36.5,12.5 + rot: 1.5707963267948966 rad + pos: -25.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20067 + color: '#FF5E5EFF' + - uid: 19929 components: - type: Transform - pos: -38.5,10.5 + rot: 3.141592653589793 rad + pos: 42.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20068 + color: '#FF0000FF' + - uid: 19930 components: - type: Transform - pos: -38.5,-11.5 + rot: 3.141592653589793 rad + pos: 27.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 41949 + - uid: 19931 components: - type: Transform - pos: 40.5,60.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 26.5,-60.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41950 + color: '#0000FFFF' + - uid: 19932 components: - type: Transform - pos: 41.5,61.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 12.5,-37.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41951 + color: '#FF0000FF' + - uid: 19933 components: - type: Transform - pos: 52.5,44.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: -28.5,-48.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' -- proto: GasPipeStraight - entities: - - uid: 20069 + color: '#DC143CFF' + - type: Stealth + maxVisibility: -1 + lastVisibility: -1 + examineThreshold: 0 + hadOutline: True + - uid: 19934 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,12.5 + pos: 59.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20070 + color: '#FF0000FF' + - uid: 19935 components: - type: Transform - pos: -36.5,14.5 + rot: 3.141592653589793 rad + pos: -29.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20071 + color: '#DC143CFF' + - uid: 19936 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,14.5 + pos: 64.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20072 + color: '#FF0000FF' + - uid: 19937 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,14.5 + pos: -97.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20073 + - uid: 19938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-18.5 + rot: -1.5707963267948966 rad + pos: -97.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20074 + color: '#FF0000FF' + - uid: 19939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-2.5 + rot: -1.5707963267948966 rad + pos: -17.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20075 + - uid: 19940 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-2.5 + pos: -24.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20076 + - uid: 42287 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 2 + pos: 34.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20077 + color: '#800000FF' + - uid: 42288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 40.5,59.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20078 + color: '#888888FF' + - uid: 42289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 2 + pos: 40.5,63.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20079 + color: '#888888FF' + - uid: 42290 components: - type: Transform - pos: -25.5,13.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 46.5,59.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20080 + color: '#888888FF' + - uid: 42291 components: - type: Transform - pos: -26.5,13.5 - parent: 2 + pos: 46.5,63.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20081 + color: '#888888FF' + - uid: 42292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 36.5,56.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20082 + color: '#888888FF' + - uid: 42293 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20083 + pos: 63.5,63.5 + parent: 40599 + - uid: 42294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20084 + pos: 63.5,61.5 + parent: 40599 + - uid: 42295 + components: + - type: Transform + pos: 36.5,83.5 + parent: 40599 + - uid: 42296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,80.5 + parent: 40599 + - uid: 42297 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,24.5 - parent: 2 + pos: 54.5,81.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20085 + color: '#800000FF' + - uid: 46708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 + pos: 1.5,15.5 + parent: 46584 + - uid: 46709 + components: + - type: Transform + pos: 0.5,15.5 + parent: 46584 + - uid: 46710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 46584 +- proto: GasPipeBend + entities: + - uid: 19941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20086 + color: '#FF0000FF' + - uid: 19942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,25.5 + rot: 1.5707963267948966 rad + pos: 45.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20087 + - uid: 19943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,25.5 + pos: 51.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20088 + - uid: 19944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-43.5 + pos: 46.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20089 + - uid: 19945 components: - type: Transform - pos: -8.5,-32.5 + rot: 1.5707963267948966 rad + pos: 51.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20090 + - uid: 19946 components: - type: Transform - pos: -8.5,-22.5 + rot: 3.141592653589793 rad + pos: 2.5,31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20091 + color: '#0000FFFF' + - uid: 19947 components: - type: Transform - pos: -8.5,-25.5 + rot: -1.5707963267948966 rad + pos: 32.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20092 + color: '#0000FFFF' + - uid: 19948 components: - type: Transform - pos: 61.5,2.5 + rot: -1.5707963267948966 rad + pos: -37.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20093 + - uid: 19949 components: - type: Transform - pos: 61.5,3.5 + pos: -48.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20094 + - uid: 19950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 + rot: 3.141592653589793 rad + pos: -48.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20095 + - uid: 19951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,1.5 + rot: 3.141592653589793 rad + pos: 11.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20096 + - uid: 19952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,21.5 + rot: 3.141592653589793 rad + pos: 52.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20097 + - uid: 19953 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,20.5 + pos: 56.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20098 + color: '#0000FFFF' + - uid: 19954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,21.5 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20099 + - uid: 19955 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,20.5 + pos: -14.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20100 + - uid: 19956 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-3.5 + pos: -17.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20101 + - uid: 19957 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,1.5 + pos: -15.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20102 + color: '#FF0000FF' + - uid: 19958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,3.5 + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20103 + color: '#FF0000FF' + - uid: 19959 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-2.5 + pos: 18.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20104 + color: '#FF0000FF' + - uid: 19960 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-0.5 + pos: 19.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20105 + color: '#FF0000FF' + - uid: 19961 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,0.5 + pos: 17.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20106 + color: '#FF0000FF' + - uid: 19962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-4.5 + rot: 1.5707963267948966 rad + pos: -12.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20107 + color: '#FF0000FF' + - uid: 19963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-3.5 + pos: 17.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20108 + color: '#FF0000FF' + - uid: 19964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-1.5 + rot: 1.5707963267948966 rad + pos: -15.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20109 + color: '#FF0000FF' + - uid: 19965 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20110 - components: - - type: Transform - pos: -10.5,-32.5 + pos: 17.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20111 + - uid: 19966 components: - type: Transform - pos: -8.5,-26.5 + rot: 1.5707963267948966 rad + pos: -14.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20112 + - uid: 19967 components: - type: Transform - pos: -10.5,-31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20113 + - uid: 19968 components: - type: Transform - pos: -10.5,-25.5 + pos: 21.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20114 + - uid: 19969 components: - type: Transform - pos: -10.5,-29.5 + rot: 3.141592653589793 rad + pos: 15.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20115 + color: '#FF0000FF' + - uid: 19970 components: - type: Transform - pos: -10.5,-22.5 + rot: 3.141592653589793 rad + pos: 21.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20116 + - uid: 19971 components: - type: Transform - pos: -10.5,-23.5 + rot: 3.141592653589793 rad + pos: 21.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20117 + - uid: 19972 components: - type: Transform - pos: -10.5,-24.5 + rot: -1.5707963267948966 rad + pos: -15.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20118 + - uid: 19973 components: - type: Transform - pos: -10.5,-28.5 + rot: -1.5707963267948966 rad + pos: 22.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20119 + - uid: 19974 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,20.5 + rot: 1.5707963267948966 rad + pos: -13.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20120 + - uid: 19975 components: - type: Transform - pos: -8.5,-31.5 + pos: 22.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20121 + color: '#0000FFFF' + - uid: 19976 components: - type: Transform - pos: -10.5,-30.5 + pos: 18.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20122 + - uid: 19977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,21.5 + pos: 20.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20123 + - uid: 19978 components: - type: Transform - pos: -8.5,-24.5 + rot: 3.141592653589793 rad + pos: -21.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20124 + - uid: 19979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20125 - components: - - type: Transform - pos: -8.5,-20.5 + pos: -26.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20126 + - uid: 19980 components: - type: Transform - pos: -10.5,-20.5 + rot: 1.5707963267948966 rad + pos: -24.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20127 + - uid: 19981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 + pos: -21.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20128 + - uid: 19982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-17.5 + rot: -1.5707963267948966 rad + pos: -26.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20129 + - uid: 19983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20130 + color: '#FF0000FF' + - uid: 19984 components: - type: Transform - pos: 22.5,5.5 + rot: -1.5707963267948966 rad + pos: -23.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20131 + - uid: 19985 components: - type: Transform - pos: 22.5,6.5 + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20132 + - uid: 19986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-7.5 + rot: -1.5707963267948966 rad + pos: -23.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20133 + - uid: 19987 components: - type: Transform - pos: 2.5,-19.5 + rot: -1.5707963267948966 rad + pos: -21.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20134 + - uid: 19988 components: - type: Transform - pos: 2.5,-15.5 + rot: -1.5707963267948966 rad + pos: -24.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20135 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20136 + - uid: 19989 components: - type: Transform - pos: 2.5,-16.5 + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20137 + - uid: 19990 components: - type: Transform - pos: 2.5,-11.5 + pos: -21.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20138 + color: '#FF0000FF' + - uid: 19991 components: - type: Transform - pos: 22.5,-14.5 + rot: -1.5707963267948966 rad + pos: -22.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20139 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20140 + - uid: 19992 components: - type: Transform - pos: 22.5,-16.5 + rot: 1.5707963267948966 rad + pos: -24.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20141 + - uid: 19993 components: - type: Transform - pos: 22.5,-10.5 + rot: -1.5707963267948966 rad + pos: -38.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20142 + - uid: 19994 components: - type: Transform - pos: 22.5,-13.5 + rot: -1.5707963267948966 rad + pos: -28.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20143 + color: '#FF0000FF' + - uid: 19995 components: - type: Transform - pos: 22.5,-11.5 + rot: 3.141592653589793 rad + pos: 48.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20144 + - uid: 19996 components: - type: Transform - pos: 22.5,8.5 + pos: 50.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20145 + - uid: 19997 components: - type: Transform - pos: 22.5,-12.5 + rot: 3.141592653589793 rad + pos: 49.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20146 + - uid: 19998 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-8.5 + pos: 45.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20147 + - uid: 19999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,8.5 + pos: 52.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20148 + - uid: 20000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,9.5 + pos: 51.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20149 + - uid: 20001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,9.5 + rot: 3.141592653589793 rad + pos: 51.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20150 + - uid: 20002 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,8.5 + pos: 46.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20151 + - uid: 20003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,9.5 + rot: 3.141592653589793 rad + pos: -27.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20152 + color: '#DC143CFF' + - uid: 20004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-9.5 + pos: -27.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20153 + color: '#DC143CFF' + - uid: 20005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-12.5 + rot: -1.5707963267948966 rad + pos: 44.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20154 + - uid: 20006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-8.5 + rot: -1.5707963267948966 rad + pos: -23.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20155 + color: '#17E8E2FF' + - uid: 20007 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-6.5 + pos: -22.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20156 + color: '#17E8E2FF' + - uid: 20008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-4.5 + rot: -1.5707963267948966 rad + pos: -21.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20157 + color: '#17E8E2FF' + - uid: 20009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-5.5 + rot: -1.5707963267948966 rad + pos: -20.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20158 + color: '#FF0000FF' + - uid: 20010 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-3.5 + pos: -24.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20159 + color: '#17E8E2FF' + - uid: 20011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,11.5 + rot: -1.5707963267948966 rad + pos: 43.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20160 + color: '#FF0000FF' + - uid: 20012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-10.5 + pos: 43.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20161 + color: '#FF0000FF' + - uid: 20013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-11.5 + rot: 1.5707963267948966 rad + pos: 27.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20162 + color: '#FF0000FF' + - uid: 20014 components: - type: Transform - pos: 3.5,-16.5 + rot: -1.5707963267948966 rad + pos: 28.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20163 + - uid: 20015 components: - type: Transform - pos: 2.5,-12.5 + rot: 1.5707963267948966 rad + pos: 26.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20164 + - uid: 20016 components: - type: Transform - pos: 2.5,-13.5 + rot: -1.5707963267948966 rad + pos: 27.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20165 + - uid: 20017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,10.5 + pos: -1.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20166 + color: '#FF0000FF' + - uid: 20018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-13.5 + pos: 4.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20167 + - uid: 20019 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,5.5 + pos: 4.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20168 + color: '#0000FFFF' + - uid: 20020 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20169 - components: - - type: Transform - pos: 16.5,25.5 + pos: -1.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20170 + - uid: 20021 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-17.5 + pos: 74.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20171 + - uid: 20022 components: - type: Transform - pos: -10.5,-18.5 + rot: -1.5707963267948966 rad + pos: -14.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20172 + - uid: 20023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,4.5 + rot: -1.5707963267948966 rad + pos: 89.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20173 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20174 + - uid: 20024 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,9.5 + pos: -12.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20175 + - uid: 20025 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-15.5 + rot: 1.5707963267948966 rad + pos: -12.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20176 + - uid: 20026 components: - type: Transform - pos: 15.5,27.5 + rot: 1.5707963267948966 rad + pos: 76.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20177 + - uid: 20027 components: - type: Transform - pos: 3.5,-14.5 + pos: 67.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20178 + color: '#0000FFFF' + - uid: 20028 components: - type: Transform - pos: 3.5,-11.5 + rot: -1.5707963267948966 rad + pos: 76.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20179 + color: '#0000FFFF' + - uid: 20029 components: - type: Transform - pos: 3.5,-12.5 + rot: 1.5707963267948966 rad + pos: 57.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20180 + color: '#0000FFFF' + - uid: 20030 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20181 - components: - - type: Transform - pos: 22.5,7.5 + pos: 57.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20182 + - uid: 20031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 + pos: -28.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20183 + - uid: 20032 components: - type: Transform - pos: 22.5,-15.5 + pos: 70.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20184 + - uid: 20033 components: - type: Transform - pos: 22.5,4.5 + rot: 1.5707963267948966 rad + pos: 72.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20185 + - uid: 20034 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,6.5 + pos: 70.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20186 + - uid: 20035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,7.5 + rot: -1.5707963267948966 rad + pos: 72.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20187 + - uid: 20036 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,9.5 + pos: 82.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20188 + - uid: 20037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-17.5 + rot: 3.141592653589793 rad + pos: 74.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20189 + color: '#FF0000FF' + - uid: 20038 components: - type: Transform - pos: -8.5,-18.5 + rot: -1.5707963267948966 rad + pos: 78.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20190 + - uid: 20039 components: - type: Transform - pos: -8.5,-17.5 + rot: 1.5707963267948966 rad + pos: 78.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20191 + - uid: 20040 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-17.5 + pos: 84.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20192 + color: '#FF0000FF' + - uid: 20041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 + rot: -1.5707963267948966 rad + pos: 79.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20193 + color: '#FF0000FF' + - uid: 20042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,12.5 + pos: 79.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20194 + - uid: 20043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 + rot: 1.5707963267948966 rad + pos: 78.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20195 + - uid: 20044 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,4.5 + pos: 56.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20196 + - uid: 20045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,11.5 + pos: 56.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20197 + - uid: 20046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,11.5 + rot: 3.141592653589793 rad + pos: -24.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20198 + - uid: 20047 components: - type: Transform - pos: -21.5,6.5 + pos: -9.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20199 + color: '#0000FFFF' + - uid: 20048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,7.5 + rot: 3.141592653589793 rad + pos: -10.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20200 + - uid: 20049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,11.5 + rot: 3.141592653589793 rad + pos: -9.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20201 + - uid: 20050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,8.5 + rot: 1.5707963267948966 rad + pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20202 + - uid: 20051 components: - type: Transform - pos: -32.5,-2.5 + rot: 3.141592653589793 rad + pos: -5.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20203 + - uid: 20052 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-9.5 + pos: -4.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20204 + - uid: 20053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-12.5 + rot: 1.5707963267948966 rad + pos: 6.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20205 + - uid: 20054 components: - type: Transform - pos: -38.5,0.5 + rot: 1.5707963267948966 rad + pos: -15.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20206 + color: '#FF0000FF' + - uid: 20055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-4.5 + rot: 3.141592653589793 rad + pos: -23.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20207 + - uid: 20056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-3.5 + pos: -21.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20208 + color: '#FF0000FF' + - uid: 20057 components: - type: Transform - pos: -38.5,-0.5 + rot: 3.141592653589793 rad + pos: -10.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20209 + - uid: 20058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-2.5 + pos: -9.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20210 + - uid: 20059 components: - type: Transform - pos: -38.5,-1.5 + rot: -1.5707963267948966 rad + pos: -9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20211 + - uid: 20060 components: - type: Transform - pos: -38.5,-2.5 + rot: 1.5707963267948966 rad + pos: -10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20212 + - uid: 20061 components: - type: Transform - pos: -38.5,-3.5 + rot: 1.5707963267948966 rad + pos: -48.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20213 + - uid: 20062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-4.5 + rot: -1.5707963267948966 rad + pos: -25.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20214 + color: '#FF0000FF' + - uid: 20063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-4.5 + rot: -1.5707963267948966 rad + pos: -46.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20215 + color: '#FF0000FF' + - uid: 20064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-4.5 + rot: 3.141592653589793 rad + pos: -34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20216 + color: '#FF0000FF' + - uid: 20065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-4.5 + pos: -22.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20217 + - uid: 20066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-5.5 + rot: -1.5707963267948966 rad + pos: -30.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20218 + - uid: 20067 components: - type: Transform - pos: -36.5,8.5 + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20219 + - uid: 20068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,14.5 + rot: -1.5707963267948966 rad + pos: -22.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20220 + - uid: 20069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,9.5 + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20221 + - uid: 20070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,13.5 + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20222 + - uid: 20071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,15.5 + rot: 1.5707963267948966 rad + pos: -23.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20223 + - uid: 20072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,14.5 + rot: 1.5707963267948966 rad + pos: -22.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20224 + - uid: 20073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,13.5 + rot: -1.5707963267948966 rad + pos: -30.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20225 + color: '#0000FFFF' + - uid: 20074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,15.5 + rot: 1.5707963267948966 rad + pos: -30.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20226 + color: '#0000FFFF' + - uid: 20075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-5.5 + pos: -49.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20227 + - uid: 20076 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-5.5 + pos: -49.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20228 + - uid: 20077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-10.5 + rot: -1.5707963267948966 rad + pos: -47.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20229 + color: '#0000FFFF' + - uid: 20078 components: - type: Transform - pos: -55.5,14.5 + rot: 1.5707963267948966 rad + pos: -54.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20230 + color: '#FF0000FF' + - uid: 20079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,12.5 + rot: 3.141592653589793 rad + pos: -54.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20231 + - uid: 20080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-4.5 + pos: -28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20232 + color: '#FF0000FF' + - uid: 20081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,4.5 + pos: 19.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20233 + - uid: 20082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-1.5 + rot: 1.5707963267948966 rad + pos: -6.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20234 + - uid: 20083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,7.5 + rot: 1.5707963267948966 rad + pos: -15.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20235 + - uid: 20084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,4.5 + rot: 3.141592653589793 rad + pos: 16.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20236 + - uid: 20085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,4.5 + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20237 + color: '#0000FFFF' + - uid: 20086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20087 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,12.5 + pos: -16.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20238 + color: '#0000FFFF' + - uid: 20088 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,12.5 + pos: 3.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20239 + - uid: 20089 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,8.5 + pos: -14.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20240 + color: '#0000FFFF' + - uid: 20090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,4.5 + rot: -1.5707963267948966 rad + pos: -13.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20241 + - uid: 20091 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,12.5 + pos: -12.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20242 + - uid: 20092 components: - type: Transform - pos: -36.5,11.5 + pos: 18.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20243 + - uid: 20093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,12.5 + rot: 1.5707963267948966 rad + pos: -13.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20244 + - uid: 20094 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,12.5 + pos: -12.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20245 + color: '#0000FFFF' + - uid: 20095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,13.5 + pos: 2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20246 + color: '#0000FFFF' + - uid: 20096 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,12.5 + pos: -10.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20247 + - uid: 20097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,4.5 + pos: -6.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20248 + color: '#0000FFFF' + - uid: 20098 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-0.5 + pos: 18.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20249 + - uid: 20099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-4.5 + rot: 3.141592653589793 rad + pos: 20.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20250 + - uid: 20100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-4.5 + pos: 19.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20251 + - uid: 20101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,7.5 + rot: 3.141592653589793 rad + pos: 19.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20252 + color: '#0000FFFF' + - uid: 20102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-4.5 + rot: 1.5707963267948966 rad + pos: -16.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20253 + - uid: 20103 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-4.5 + pos: -13.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20254 + - uid: 20104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-13.5 + rot: 1.5707963267948966 rad + pos: -14.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20255 + color: '#0000FFFF' + - uid: 20105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-11.5 + pos: -9.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20256 + color: '#0000FFFF' + - uid: 20106 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,8.5 + pos: -23.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20257 + - uid: 20107 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,12.5 + pos: -17.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20258 + color: '#0000FFFF' + - uid: 20108 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,12.5 + pos: -24.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20259 + color: '#DC143CFF' + - uid: 20109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,12.5 + rot: 1.5707963267948966 rad + pos: -25.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20260 + color: '#0000FFFF' + - uid: 20110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,9.5 + pos: -22.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20111 + components: + - type: Transform + pos: -21.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20261 + - uid: 20112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-54.5 + rot: 3.141592653589793 rad + pos: -22.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20262 + color: '#DC143CFF' + - uid: 20113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-48.5 + rot: 1.5707963267948966 rad + pos: -20.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20263 + color: '#DC143CFF' + - uid: 20114 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-48.5 + pos: -20.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20264 + color: '#DC143CFF' + - uid: 20115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,-44.5 + rot: 3.141592653589793 rad + pos: -16.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20265 + color: '#DC143CFF' + - uid: 20116 components: - type: Transform - pos: -8.5,-50.5 + pos: -16.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20266 + color: '#DC143CFF' + - uid: 20117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-44.5 + rot: -1.5707963267948966 rad + pos: -13.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20267 + color: '#DC143CFF' + - uid: 20118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-40.5 + rot: 1.5707963267948966 rad + pos: -13.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20268 + color: '#DC143CFF' + - uid: 20119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-39.5 + pos: -10.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20269 + color: '#DC143CFF' + - uid: 20120 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-38.5 + pos: -10.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20270 + color: '#DC143CFF' + - uid: 20121 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-53.5 + pos: -5.5,42.5 parent: 2 - - uid: 20271 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20122 components: - type: Transform - pos: 39.5,-38.5 + rot: 1.5707963267948966 rad + pos: -5.5,44.5 parent: 2 - - uid: 20272 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-40.5 + rot: -1.5707963267948966 rad + pos: -4.5,44.5 parent: 2 - - uid: 20273 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-39.5 + rot: -1.5707963267948966 rad + pos: -5.5,46.5 parent: 2 - - uid: 20274 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20125 components: - type: Transform - pos: 39.5,-37.5 + rot: 1.5707963267948966 rad + pos: -5.5,47.5 parent: 2 - - uid: 20275 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20126 components: - type: Transform - pos: 47.5,-53.5 + pos: -5.5,58.5 parent: 2 - - uid: 20276 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20127 components: - type: Transform - pos: 48.5,-53.5 + pos: -12.5,59.5 parent: 2 - - uid: 20277 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20128 components: - type: Transform - pos: 47.5,-54.5 + rot: 3.141592653589793 rad + pos: -12.5,58.5 parent: 2 - - uid: 20278 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20129 components: - type: Transform - pos: 51.5,-56.5 + pos: -13.5,58.5 parent: 2 - - uid: 20279 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20130 components: - type: Transform - pos: 50.5,-56.5 + rot: 3.141592653589793 rad + pos: -13.5,57.5 parent: 2 - - uid: 20280 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20131 components: - type: Transform - pos: 50.5,-57.5 + rot: 3.141592653589793 rad + pos: -9.5,56.5 parent: 2 - - uid: 20281 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20132 components: - type: Transform - pos: 47.5,-57.5 + pos: -4.5,56.5 parent: 2 - - uid: 20282 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20133 components: - type: Transform - pos: 47.5,-56.5 + pos: 3.5,51.5 parent: 2 - - uid: 20283 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20134 components: - type: Transform - pos: 51.5,-55.5 + rot: 3.141592653589793 rad + pos: 2.5,51.5 parent: 2 - - uid: 20284 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20135 components: - type: Transform - pos: 46.5,-55.5 + pos: 4.5,52.5 parent: 2 - - uid: 20285 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20136 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-54.5 + pos: -1.5,43.5 parent: 2 - - uid: 20286 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-41.5 + pos: -2.5,43.5 parent: 2 - - uid: 20287 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-41.5 + rot: 3.141592653589793 rad + pos: -4.5,51.5 parent: 2 - - uid: 20288 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 20139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-63.5 + pos: -1.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20289 + color: '#0000FFFF' + - uid: 20140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-63.5 + rot: 3.141592653589793 rad + pos: -2.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20290 + color: '#0000FFFF' + - uid: 20141 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-63.5 + pos: 3.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20291 + color: '#DC143CFF' + - uid: 20142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-63.5 + rot: -1.5707963267948966 rad + pos: 5.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20292 + color: '#DC143CFF' + - uid: 20143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-63.5 + rot: -1.5707963267948966 rad + pos: 6.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20293 + color: '#0000FFFF' + - uid: 20144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-59.5 + pos: 7.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20294 + color: '#0000FFFF' + - uid: 20145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-59.5 + rot: 3.141592653589793 rad + pos: 7.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20295 + color: '#0000FFFF' + - uid: 20146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-59.5 + pos: 9.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20296 + color: '#DC143CFF' + - uid: 20147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-59.5 + rot: 3.141592653589793 rad + pos: 9.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20297 + color: '#DC143CFF' + - uid: 20148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-59.5 + pos: -0.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20298 + color: '#DC143CFF' + - uid: 20149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-57.5 + rot: 3.141592653589793 rad + pos: -5.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20299 + color: '#0000FFFF' + - uid: 20150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-57.5 + pos: -2.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20300 + color: '#0000FFFF' + - uid: 20151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-57.5 + rot: 3.141592653589793 rad + pos: -4.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20301 + color: '#DC143CFF' + - uid: 20152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-57.5 + pos: -5.5,69.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20302 + color: '#0000FFFF' + - uid: 20153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-57.5 + pos: -4.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' - - uid: 20303 + color: '#DC143CFF' + - uid: 20154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-61.5 + rot: 3.141592653589793 rad + pos: -11.5,69.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20304 + color: '#0000FFFF' + - uid: 20155 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-61.5 + pos: -8.5,72.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20305 + color: '#0000FFFF' + - uid: 20156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-61.5 + pos: -18.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20306 + color: '#DC143CFF' + - uid: 20157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-61.5 + pos: -20.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20307 + color: '#DC143CFF' + - uid: 20158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-61.5 + pos: 4.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' - - uid: 20308 + color: '#DC143CFF' + - uid: 20159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-65.5 + rot: -1.5707963267948966 rad + pos: 4.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20309 + color: '#DC143CFF' + - uid: 20160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-66.5 + rot: -1.5707963267948966 rad + pos: 4.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20310 + color: '#0000FFFF' + - uid: 20161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-67.5 + rot: 1.5707963267948966 rad + pos: 4.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20311 + color: '#0000FFFF' + - uid: 20162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-68.5 + rot: -1.5707963267948966 rad + pos: -7.5,42.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20312 + color: '#DC143CFF' + - uid: 20163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-69.5 + pos: 18.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20313 + color: '#DC143CFF' + - uid: 20164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-69.5 + pos: 9.5,63.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20314 + color: '#0000FFFF' + - uid: 20165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-68.5 + rot: 1.5707963267948966 rad + pos: 13.5,63.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20315 + color: '#0000FFFF' + - uid: 20166 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-67.5 + pos: 10.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20316 + color: '#DC143CFF' + - uid: 20167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-66.5 + rot: -1.5707963267948966 rad + pos: 13.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20317 + color: '#0000FFFF' + - uid: 20168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-65.5 + pos: 21.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20318 + color: '#0000FFFF' + - uid: 20169 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-65.5 + pos: 18.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20319 + color: '#0000FFFF' + - uid: 20170 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-66.5 + pos: 19.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20320 + color: '#0000FFFF' + - uid: 20171 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-67.5 + pos: 17.5,60.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 20321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-65.5 - parent: 2 - - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20322 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-66.5 - parent: 2 - - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20323 + - uid: 20172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-67.5 + pos: -24.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20324 + color: '#0000FFFF' + - uid: 20173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-68.5 + rot: 1.5707963267948966 rad + pos: -29.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20325 + color: '#DC143CFF' + - uid: 20174 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-69.5 + pos: -26.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20326 + color: '#DC143CFF' + - uid: 20175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-65.5 + pos: -26.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20327 + color: '#DC143CFF' + - uid: 20176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-66.5 + pos: 14.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20328 + color: '#FF0000FF' + - uid: 20177 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-67.5 + pos: 14.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20329 + color: '#FF0000FF' + - uid: 20178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-68.5 + rot: 1.5707963267948966 rad + pos: 14.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20330 + color: '#0000FFFF' + - uid: 20179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-69.5 + rot: -1.5707963267948966 rad + pos: 14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20331 + color: '#0000FFFF' + - uid: 20180 components: - type: Transform - pos: -19.5,-63.5 + pos: 16.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20332 + color: '#0000FFFF' + - uid: 20181 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-65.5 + pos: 16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20333 + color: '#0000FFFF' + - uid: 20182 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-66.5 + pos: 9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20334 + color: '#0000FFFF' + - uid: 20183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-67.5 + pos: 9.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20335 + color: '#0000FFFF' + - uid: 20184 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-68.5 + pos: -9.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20336 + color: '#0000FFFF' + - uid: 20185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-69.5 + rot: 1.5707963267948966 rad + pos: -11.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20337 + color: '#0000FFFF' + - uid: 20186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-65.5 + rot: -1.5707963267948966 rad + pos: -11.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20338 + color: '#0000FFFF' + - uid: 20187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-66.5 + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20339 + color: '#FF0000FF' + - uid: 20188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-67.5 + rot: 1.5707963267948966 rad + pos: -9.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20340 + color: '#FF0000FF' + - uid: 20189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-68.5 + rot: 1.5707963267948966 rad + pos: -4.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20341 + color: '#0000FFFF' + - uid: 20190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-69.5 + rot: -1.5707963267948966 rad + pos: -4.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20342 + color: '#0000FFFF' + - uid: 20191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-69.5 + rot: 1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20343 + color: '#0000FFFF' + - uid: 20192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-68.5 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20344 + color: '#0000FFFF' + - uid: 20193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-67.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20345 + color: '#FF0000FF' + - uid: 20194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-66.5 + rot: 1.5707963267948966 rad + pos: -16.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20346 + color: '#FF0000FF' + - uid: 20195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-65.5 + pos: 10.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' - - uid: 20347 + color: '#FF0000FF' + - uid: 20196 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-69.5 + pos: 9.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20348 + color: '#FF0000FF' + - uid: 20197 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-68.5 + pos: 10.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20349 + color: '#0000FFFF' + - uid: 20198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-67.5 + pos: 12.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20350 + color: '#0000FFFF' + - uid: 20199 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-66.5 + pos: 10.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20351 + color: '#FF0000FF' + - uid: 20200 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-65.5 + pos: -8.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' - - uid: 20352 + color: '#0000FFFF' + - uid: 20201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-69.5 + pos: -3.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20353 + color: '#FF0000FF' + - uid: 20202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-68.5 + pos: -4.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20354 + color: '#0000FFFF' + - uid: 20203 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-67.5 + pos: -7.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20355 + color: '#0000FFFF' + - uid: 20204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-66.5 + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20356 + color: '#0000FFFF' + - uid: 20205 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-65.5 + pos: -7.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' - - uid: 20357 + color: '#FF0000FF' + - uid: 20206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-69.5 + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20358 + color: '#FF0000FF' + - uid: 20207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-68.5 + rot: 1.5707963267948966 rad + pos: 17.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20359 + color: '#FF0000FF' + - uid: 20208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-67.5 + rot: 1.5707963267948966 rad + pos: 16.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20360 + color: '#0000FFFF' + - uid: 20209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-66.5 + pos: 27.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20361 + color: '#FF0000FF' + - uid: 20210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-65.5 + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' - - uid: 20362 + color: '#0000FFFF' + - uid: 20211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-53.5 + pos: -2.5,12.5 parent: 2 - - uid: 20363 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20212 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-54.5 - parent: 2 - - uid: 20364 - components: - - type: Transform - pos: -18.5,-56.5 - parent: 2 - - uid: 20365 - components: - - type: Transform - pos: -19.5,-56.5 - parent: 2 - - uid: 20366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-60.5 - parent: 2 - - uid: 20367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-61.5 + pos: -3.5,13.5 parent: 2 - - uid: 20368 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20213 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-62.5 + pos: -3.5,11.5 parent: 2 - - uid: 20369 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-60.5 + rot: 1.5707963267948966 rad + pos: 0.5,14.5 parent: 2 - - uid: 20370 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-61.5 + pos: 4.5,14.5 parent: 2 - - uid: 20371 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-62.5 + rot: 3.141592653589793 rad + pos: 4.5,13.5 parent: 2 - - uid: 20372 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20217 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-62.5 + pos: 7.5,13.5 parent: 2 - - uid: 20373 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-61.5 + pos: 8.5,12.5 parent: 2 - - uid: 20374 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-60.5 + rot: 3.141592653589793 rad + pos: 8.5,11.5 parent: 2 - - uid: 20375 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-52.5 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20376 + color: '#0000FFFF' + - uid: 20221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-52.5 + rot: 3.141592653589793 rad + pos: -7.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20377 + color: '#0000FFFF' + - uid: 20222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-52.5 + pos: -6.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20378 + color: '#0000FFFF' + - uid: 20223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-52.5 + rot: 1.5707963267948966 rad + pos: 11.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20379 + color: '#FF0000FF' + - uid: 20224 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-52.5 + pos: 12.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20380 + color: '#FF0000FF' + - uid: 20225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-52.5 + pos: 12.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20381 + color: '#FF0000FF' + - uid: 20226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-52.5 + rot: 3.141592653589793 rad + pos: 8.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20382 + color: '#0000FFFF' + - uid: 20227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-52.5 + rot: 1.5707963267948966 rad + pos: 16.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20383 + color: '#FF0000FF' + - uid: 20228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-52.5 + rot: 1.5707963267948966 rad + pos: 15.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20384 + color: '#0000FFFF' + - uid: 20229 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-52.5 + pos: 17.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20385 + color: '#FF0000FF' + - uid: 20230 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-51.5 + pos: 12.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20386 + color: '#FF0000FF' + - uid: 20231 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-50.5 + pos: 11.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20387 + color: '#FF0000FF' + - uid: 20232 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-49.5 + pos: 12.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20388 + color: '#FF0000FF' + - uid: 20233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-54.5 + pos: 13.5,38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20389 + - uid: 20234 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-38.5 + pos: 12.5,38.5 parent: 2 - - uid: 20390 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-41.5 + rot: -1.5707963267948966 rad + pos: 12.5,31.5 parent: 2 - - uid: 20391 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-57.5 + rot: -1.5707963267948966 rad + pos: 15.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20392 + - uid: 20237 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-44.5 + pos: 16.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20393 + color: '#0000FFFF' + - uid: 20238 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-49.5 + pos: 15.5,39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20394 + - uid: 20239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-48.5 + rot: 1.5707963267948966 rad + pos: 16.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20395 - components: - - type: Transform - pos: 46.5,-53.5 - parent: 2 - - uid: 20396 + - uid: 20240 components: - type: Transform - pos: 46.5,-56.5 + rot: -1.5707963267948966 rad + pos: 17.5,38.5 parent: 2 - - uid: 20397 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20241 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-47.5 + pos: 34.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20398 + - uid: 20242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,50.5 + pos: 34.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 20399 + color: '#0000FFFF' + - uid: 20243 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-51.5 + pos: 27.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20400 + - uid: 20244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-50.5 + rot: 1.5707963267948966 rad + pos: 21.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20401 + - uid: 20245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-53.5 + rot: -1.5707963267948966 rad + pos: 22.5,32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20402 + color: '#0000FFFF' + - uid: 20246 components: - type: Transform - pos: 42.5,-55.5 + rot: 1.5707963267948966 rad + pos: 22.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20403 + color: '#0000FFFF' + - uid: 20247 components: - type: Transform - pos: 42.5,-56.5 + rot: 1.5707963267948966 rad + pos: 29.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20404 + color: '#0000FFFF' + - uid: 20248 components: - type: Transform - pos: 42.5,-57.5 + rot: 3.141592653589793 rad + pos: 25.5,28.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20405 + - uid: 20249 components: - type: Transform - pos: 42.5,-58.5 + pos: 25.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20406 + - uid: 20250 components: - type: Transform - pos: 42.5,-59.5 + rot: 1.5707963267948966 rad + pos: 36.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20407 + color: '#0000FFFF' + - uid: 20251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-52.5 + pos: 35.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20408 + - uid: 20252 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-59.5 + pos: 35.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20409 + color: '#FF0000FF' + - uid: 20253 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-57.5 + pos: 36.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20410 + - uid: 20254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-56.5 + pos: 43.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20411 + - uid: 20255 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-55.5 + pos: 41.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20412 + color: '#FF0000FF' + - uid: 20256 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-54.5 + pos: 43.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20413 + - uid: 20257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-58.5 + rot: 1.5707963267948966 rad + pos: 28.5,37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20414 + - uid: 20258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-57.5 + rot: -1.5707963267948966 rad + pos: -0.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20415 + color: '#DC143CFF' + - uid: 20259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-56.5 + rot: 1.5707963267948966 rad + pos: -1.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20416 + color: '#DC143CFF' + - uid: 20260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-55.5 + rot: -1.5707963267948966 rad + pos: -1.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20417 + color: '#DC143CFF' + - uid: 20261 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-53.5 + pos: -15.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20418 + color: '#0000FFFF' + - uid: 20262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-48.5 + pos: -12.5,21.5 parent: 2 - - uid: 20419 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-46.5 + rot: 3.141592653589793 rad + pos: -14.5,21.5 parent: 2 - - uid: 20420 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-42.5 + pos: -14.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20421 + - uid: 20265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-43.5 + rot: 3.141592653589793 rad + pos: -9.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20422 + color: '#DC143CFF' + - uid: 20266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-43.5 + rot: -1.5707963267948966 rad + pos: 5.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20423 + - uid: 20267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-43.5 + pos: 53.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20424 + color: '#FF0000FF' + - uid: 20268 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-43.5 + pos: 57.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20425 + color: '#FF0000FF' + - uid: 20269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-43.5 + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20426 + color: '#FF0000FF' + - uid: 20270 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-43.5 + pos: 56.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20427 + - uid: 20271 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-43.5 + pos: 55.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20428 + - uid: 20272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-43.5 + rot: 3.141592653589793 rad + pos: 53.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20429 + color: '#FF0000FF' + - uid: 20273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-43.5 + rot: -1.5707963267948966 rad + pos: -2.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20430 + - uid: 20274 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-43.5 + pos: -102.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20431 + - uid: 20275 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-42.5 + pos: -15.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20432 + - uid: 20276 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-41.5 + pos: -107.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20433 + - uid: 20277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-40.5 + rot: 1.5707963267948966 rad + pos: -115.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20434 + color: '#FF0000FF' + - uid: 20278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-39.5 + rot: -1.5707963267948966 rad + pos: -99.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20435 + color: '#FF0000FF' + - uid: 20279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-38.5 + pos: -99.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20436 + color: '#FF0000FF' + - uid: 20280 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-41.5 + pos: -108.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20437 + color: '#FF0000FF' + - uid: 20281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-40.5 + rot: -1.5707963267948966 rad + pos: -105.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20438 + - uid: 20282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-39.5 + rot: -1.5707963267948966 rad + pos: -106.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20439 + color: '#FF0000FF' + - uid: 20283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-42.5 + rot: 1.5707963267948966 rad + pos: -114.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20440 + - uid: 20284 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-41.5 + pos: -113.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20441 + color: '#FF0000FF' + - uid: 20285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-37.5 + pos: -104.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20442 + - uid: 20286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-37.5 + pos: -113.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20443 + - uid: 20287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-37.5 + pos: -105.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20444 + color: '#0000FFFF' + - uid: 20288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 + rot: 3.141592653589793 rad + pos: -116.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20445 + color: '#0000FFFF' + - uid: 20289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-37.5 + rot: 3.141592653589793 rad + pos: -116.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20446 + color: '#0000FFFF' + - uid: 20290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-37.5 + rot: 3.141592653589793 rad + pos: -116.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20447 + color: '#0000FFFF' + - uid: 20291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-37.5 + pos: -110.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20448 + - uid: 20292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-37.5 + pos: -107.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20449 + color: '#0000FFFF' + - uid: 20293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-37.5 + rot: -1.5707963267948966 rad + pos: -100.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20450 + - uid: 20294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-37.5 + pos: 11.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20451 + color: '#0000FFFF' + - uid: 20295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-37.5 + pos: 13.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20452 + color: '#0000FFFF' + - uid: 20296 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-40.5 + pos: 11.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20453 + color: '#0000FFFF' + - uid: 20297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-39.5 + rot: -1.5707963267948966 rad + pos: 13.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20454 + color: '#0000FFFF' + - uid: 20298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-38.5 + rot: 1.5707963267948966 rad + pos: 11.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20455 + color: '#0000FFFF' + - uid: 20299 components: - type: Transform - pos: -8.5,-49.5 + rot: 3.141592653589793 rad + pos: 11.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20456 + color: '#0000FFFF' + - uid: 20300 components: - type: Transform - pos: -8.5,-47.5 + pos: 11.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20457 + color: '#0000FFFF' + - uid: 20301 components: - type: Transform - pos: -8.5,-54.5 + rot: 3.141592653589793 rad + pos: 6.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20458 + color: '#0000FFFF' + - uid: 20302 components: - type: Transform - pos: -8.5,-55.5 + pos: 6.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20459 + color: '#0000FFFF' + - uid: 20303 components: - type: Transform - pos: -8.5,-56.5 + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20460 + color: '#0000FFFF' + - uid: 20304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-44.5 + pos: -23.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20461 + color: '#0000FFFF' + - uid: 20305 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-44.5 + pos: -23.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20462 + color: '#0000FFFF' + - uid: 20306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-44.5 + rot: 3.141592653589793 rad + pos: -29.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20463 + - uid: 20307 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-44.5 + pos: -27.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20464 + - uid: 20308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 + rot: 3.141592653589793 rad + pos: -54.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20465 + color: '#0000FFFF' + - uid: 20309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-44.5 + pos: -97.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20466 + color: '#0000FFFF' + - uid: 20310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-44.5 + rot: 3.141592653589793 rad + pos: -29.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20467 + color: '#0000FFFF' + - uid: 20311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-44.5 + pos: -21.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20468 + - uid: 20312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-44.5 + rot: 3.141592653589793 rad + pos: -21.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20469 + - uid: 20313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-45.5 + rot: 1.5707963267948966 rad + pos: -38.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20470 + - uid: 20314 components: - type: Transform - pos: -20.5,-45.5 + rot: 1.5707963267948966 rad + pos: -42.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20471 + - uid: 20315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-53.5 + rot: 1.5707963267948966 rad + pos: -39.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20472 + - uid: 20316 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-53.5 + pos: -39.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20474 + - uid: 20317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-54.5 + pos: -27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20475 + color: '#FF0000FF' + - uid: 20318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-42.5 + pos: -47.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20476 + color: '#FF0000FF' + - uid: 20319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-43.5 + rot: 1.5707963267948966 rad + pos: -39.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20477 + - uid: 20320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-46.5 + pos: -22.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20478 + color: '#0000FFFF' + - uid: 20321 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-46.5 + pos: -37.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20479 + color: '#0000FFFF' + - uid: 20322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-46.5 + pos: -31.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20480 + - uid: 20323 components: - type: Transform - pos: -4.5,-47.5 + rot: 1.5707963267948966 rad + pos: -5.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20481 + color: '#0000FFFF' + - uid: 20324 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-48.5 + pos: -6.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20482 + color: '#FF0000FF' + - uid: 20325 components: - type: Transform - pos: -14.5,-45.5 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20483 + color: '#FF0000FF' + - uid: 20326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-43.5 + rot: -1.5707963267948966 rad + pos: -3.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20484 + - uid: 20327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-43.5 + rot: -1.5707963267948966 rad + pos: 28.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20485 + - uid: 20328 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-41.5 + pos: 59.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20486 + - uid: 20329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-42.5 + pos: 47.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20487 + - uid: 20330 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-40.5 + pos: 49.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20488 + - uid: 20331 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-39.5 + pos: 51.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20489 + - uid: 20332 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-38.5 + pos: 49.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20490 + - uid: 20333 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-37.5 + pos: 48.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20491 + - uid: 20334 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-42.5 + pos: 47.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20492 + - uid: 20335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-41.5 + pos: 48.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20493 + - uid: 20336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-43.5 + rot: -1.5707963267948966 rad + pos: 51.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20494 + - uid: 20337 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-48.5 + pos: 35.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20495 + - uid: 20338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-48.5 + pos: 51.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20496 + - uid: 20339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-48.5 + rot: 1.5707963267948966 rad + pos: 51.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20497 + - uid: 20340 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-49.5 + pos: 60.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20498 + - uid: 20341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-50.5 + rot: -1.5707963267948966 rad + pos: 36.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20499 + - uid: 20342 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-50.5 + pos: 35.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20500 + - uid: 20343 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-50.5 + pos: 36.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20501 + - uid: 20344 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-50.5 + pos: 32.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20502 + - uid: 20345 components: - type: Transform - pos: -9.5,-39.5 + pos: 61.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20503 + - uid: 20346 components: - type: Transform - pos: -8.5,-41.5 + rot: 3.141592653589793 rad + pos: -27.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20504 + color: '#0000FFFF' + - uid: 20347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-50.5 + rot: 3.141592653589793 rad + pos: 46.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20505 + - uid: 20348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-45.5 + pos: 55.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20506 + - uid: 42298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-44.5 - parent: 2 + pos: 42.5,62.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20507 + color: '#800000FF' + - uid: 42299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-55.5 - parent: 2 + pos: 44.5,62.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20508 + color: '#800000FF' + - uid: 42300 components: - type: Transform - pos: 23.5,-37.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 44.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20509 + color: '#800000FF' + - uid: 42301 components: - type: Transform - pos: -8.5,-37.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 34.5,56.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20510 + color: '#888888FF' + - uid: 42302 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,-44.5 - parent: 2 + pos: 36.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20511 + color: '#888888FF' + - uid: 42303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-44.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 36.5,59.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20512 + color: '#888888FF' + - uid: 42304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-44.5 - parent: 2 + pos: 34.5,59.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20513 + color: '#888888FF' + - uid: 42305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 86.5,-43.5 - parent: 2 + pos: 72.5,73.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20514 + color: '#800000FF' + - uid: 42306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-43.5 - parent: 2 + pos: 52.5,76.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20515 + color: '#800000FF' + - uid: 42307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-43.5 - parent: 2 + pos: 54.5,76.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20516 + color: '#800000FF' + - uid: 42308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 80.5,-44.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 54.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20517 + color: '#800000FF' + - uid: 42309 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-45.5 - parent: 2 + pos: 53.5,79.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20518 + color: '#800000FF' + - uid: 42310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-45.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 59.5,81.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20519 + color: '#800000FF' + - uid: 42311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-45.5 - parent: 2 + pos: 63.5,77.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20520 + color: '#800000FF' + - uid: 42312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-45.5 - parent: 2 + pos: 69.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20521 + color: '#800000FF' + - uid: 42313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-55.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 72.5,72.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20522 + color: '#800000FF' + - uid: 42314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-55.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 69.5,65.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20523 + color: '#800000FF' + - uid: 42315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-55.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 65.5,65.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20524 + color: '#800000FF' + - uid: 42316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-55.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 67.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20525 + color: '#800000FF' + - uid: 42317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-45.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 55.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20526 + color: '#800000FF' + - uid: 42318 + components: + - type: Transform + pos: 65.5,69.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42319 components: - type: Transform rot: 1.5707963267948966 rad - pos: 85.5,-43.5 - parent: 2 + pos: 55.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20527 + color: '#800000FF' + - uid: 42320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-48.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 29.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20528 + color: '#800000FF' + - uid: 42321 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-44.5 - parent: 2 + pos: 29.5,68.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20529 + color: '#800000FF' + - uid: 42322 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-41.5 - parent: 2 + pos: 37.5,78.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20530 + color: '#800000FF' + - uid: 42323 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-44.5 - parent: 2 + pos: 37.5,74.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20531 + color: '#800000FF' + - uid: 42324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-36.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 61.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20532 + color: '#800000FF' + - uid: 42325 components: - type: Transform - pos: 27.5,-35.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 51.5,52.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20533 + color: '#800000FF' + - uid: 42326 components: - type: Transform - pos: 27.5,-37.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 58.5,51.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20534 + color: '#800000FF' + - uid: 42327 components: - type: Transform - pos: 27.5,-36.5 - parent: 2 + pos: 59.5,51.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20535 + color: '#800000FF' + - uid: 42328 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 2 + pos: 52.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20536 + color: '#800000FF' + - uid: 42329 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20537 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-41.5 - parent: 2 + pos: 59.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20538 + color: '#800000FF' + - uid: 42330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-41.5 - parent: 2 + pos: 58.5,55.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20539 + color: '#800000FF' + - uid: 42331 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-43.5 - parent: 2 + pos: 55.5,55.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20540 + color: '#800000FF' + - uid: 42332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-41.5 - parent: 2 + pos: 48.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20541 + color: '#800000FF' + - uid: 42333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-41.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 48.5,43.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20542 + color: '#800000FF' + - uid: 42334 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-41.5 - parent: 2 + pos: 47.5,43.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20543 + color: '#800000FF' + - uid: 42335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-41.5 - parent: 2 + pos: 56.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20544 + color: '#800000FF' + - uid: 42336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-46.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 56.5,43.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20545 + color: '#800000FF' + - uid: 42337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-44.5 - parent: 2 + pos: 57.5,43.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20546 + color: '#800000FF' + - uid: 42338 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-35.5 - parent: 2 + pos: 47.5,37.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20547 + color: '#800000FF' + - uid: 42339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-43.5 - parent: 2 + pos: 48.5,37.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20548 + color: '#800000FF' + - uid: 42340 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-35.5 - parent: 2 + pos: 48.5,36.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20549 + color: '#800000FF' + - uid: 42341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-46.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 57.5,37.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20550 + color: '#800000FF' + - uid: 42342 components: - type: Transform rot: 1.5707963267948966 rad - pos: 77.5,-37.5 - parent: 2 + pos: 56.5,37.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20551 + color: '#800000FF' + - uid: 42343 components: - type: Transform - pos: 67.5,-46.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 56.5,36.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20552 + color: '#800000FF' + - uid: 42344 components: - type: Transform - pos: 67.5,-44.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 56.5,79.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20553 + color: '#800000FF' + - uid: 46711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-50.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20554 + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 46584 + - uid: 46712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20555 + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 46584 + - uid: 46713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20556 + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 46584 + - uid: 46714 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20557 + pos: 0.5,13.5 + parent: 46584 + - uid: 46715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-51.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20558 + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 46584 + - uid: 46716 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,-52.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20559 + pos: 0.5,14.5 + parent: 46584 +- proto: GasPipeBroken + entities: + - uid: 20349 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-37.5 + pos: 1.5,57.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20560 + - uid: 20350 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-46.5 + pos: 5.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20561 + - uid: 20351 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-38.5 + pos: 10.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20562 + - uid: 20352 components: - type: Transform - pos: -28.5,-45.5 + rot: 3.141592653589793 rad + pos: 12.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20563 + - uid: 20353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-46.5 + rot: -1.5707963267948966 rad + pos: 9.5,60.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20564 + - uid: 20354 components: - type: Transform - pos: -28.5,-44.5 + pos: 13.5,61.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20565 + - uid: 20355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-55.5 + rot: 1.5707963267948966 rad + pos: 16.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20566 + - uid: 20356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-56.5 + rot: 1.5707963267948966 rad + pos: 21.5,56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20567 + - uid: 20357 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-46.5 + pos: 19.5,58.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20568 +- proto: GasPipeFourway + entities: + - uid: 20358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-46.5 + pos: 61.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20569 + - uid: 20359 components: - type: Transform - pos: -22.5,-38.5 + pos: 3.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20570 + - uid: 20360 components: - type: Transform - pos: -20.5,-44.5 + pos: 11.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20571 + color: '#FF0000FF' + - uid: 20361 components: - type: Transform - pos: 59.5,-42.5 + pos: -32.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20572 + - uid: 20362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-37.5 + pos: -38.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20573 + - uid: 20363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-38.5 + pos: -43.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20574 + - uid: 20364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-38.5 + pos: 18.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20575 + - uid: 20365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-35.5 + pos: -22.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20576 + color: '#17E8E2FF' + - uid: 20366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-38.5 + pos: 22.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20577 + color: '#FF0000FF' + - uid: 20367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-36.5 + pos: -10.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20578 + - uid: 20368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-34.5 + pos: -27.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20579 + color: '#FF0000FF' + - uid: 20369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-38.5 + pos: -14.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20580 + - uid: 20370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-38.5 + pos: 0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20581 + color: '#FF0000FF' + - uid: 20371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-38.5 + pos: 1.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20582 + - uid: 20372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-38.5 + pos: -5.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20583 + - uid: 20373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-38.5 + pos: -15.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20584 + color: '#FF0000FF' + - uid: 20374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-39.5 + pos: -28.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20585 + color: '#FF0000FF' + - uid: 20375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-38.5 + pos: -48.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20586 + color: '#FF0000FF' + - uid: 20376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,-43.5 + pos: -15.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20587 + color: '#DC143CFF' + - uid: 20377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,-44.5 + pos: 5.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20588 + color: '#DC143CFF' + - uid: 20378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 84.5,-43.5 + pos: -0.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20589 + color: '#DC143CFF' + - uid: 20379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-45.5 + pos: 4.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20590 + - uid: 20380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-43.5 + pos: 2.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20591 + - uid: 20381 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-43.5 + pos: 27.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20592 + color: '#FF0000FF' + - uid: 20382 components: - type: Transform - pos: 59.5,-41.5 + pos: 62.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20593 + color: '#FF0000FF' + - uid: 20383 components: - type: Transform - pos: 59.5,-40.5 + pos: -105.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20594 + - uid: 20384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-37.5 + pos: -47.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20595 + color: '#FF0000FF' + - uid: 20385 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-44.5 + pos: -36.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20596 + color: '#FF0000FF' + - uid: 20386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-45.5 + pos: -38.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20597 + - uid: 20387 components: - type: Transform - pos: 59.5,-39.5 + pos: -38.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20598 + color: '#FF0000FF' + - uid: 42345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-43.5 - parent: 2 + pos: 40.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20599 + color: '#888888FF' + - uid: 42346 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-43.5 - parent: 2 + pos: 41.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20600 + color: '#800000FF' + - uid: 42347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-43.5 - parent: 2 + pos: 52.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20601 + color: '#800000FF' + - uid: 46717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-43.5 + pos: 1.5,14.5 + parent: 46584 +- proto: GasPipeStraight + entities: + - uid: 20388 + components: + - type: Transform + pos: 61.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20602 + - uid: 20389 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-38.5 + pos: 56.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20603 + color: '#FF0000FF' + - uid: 20390 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-36.5 + rot: -1.5707963267948966 rad + pos: 55.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20604 + color: '#FF0000FF' + - uid: 20391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-48.5 + pos: 60.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20605 + color: '#0000FFFF' + - uid: 20392 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,-48.5 + pos: 58.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20606 + color: '#0000FFFF' + - uid: 20393 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-48.5 + pos: 48.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20607 + - uid: 20394 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-48.5 + pos: 47.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20608 + - uid: 20395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20396 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,-48.5 + pos: 46.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20609 + - uid: 20397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-49.5 + pos: 61.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20610 + color: '#0000FFFF' + - uid: 20398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-50.5 + pos: 61.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20611 + color: '#0000FFFF' + - uid: 20399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-51.5 + pos: 61.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20612 + color: '#0000FFFF' + - uid: 20400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-52.5 + pos: 61.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20613 + color: '#0000FFFF' + - uid: 20401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-47.5 + pos: 61.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20614 + color: '#0000FFFF' + - uid: 20402 components: - type: Transform - pos: 66.5,-38.5 + rot: -1.5707963267948966 rad + pos: 53.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20615 + color: '#0000FFFF' + - uid: 20403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,-46.5 + pos: 61.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20616 + color: '#0000FFFF' + - uid: 20404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,-46.5 + rot: -1.5707963267948966 rad + pos: 57.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20617 + color: '#0000FFFF' + - uid: 20405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-46.5 + rot: -1.5707963267948966 rad + pos: 59.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20618 + color: '#0000FFFF' + - uid: 20406 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,-46.5 + pos: 46.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20619 + - uid: 20407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-47.5 + pos: 45.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20620 + - uid: 20408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-47.5 + pos: 61.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20621 + color: '#0000FFFF' + - uid: 20409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-47.5 + pos: 61.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20622 + color: '#0000FFFF' + - uid: 20410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 78.5,-46.5 + pos: 61.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20623 + color: '#0000FFFF' + - uid: 20411 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-45.5 + pos: 34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20624 + color: '#0000FFFF' + - uid: 20412 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-45.5 + pos: 44.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20625 + color: '#0000FFFF' + - uid: 20413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20414 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-45.5 + pos: 38.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20626 + color: '#0000FFFF' + - uid: 20415 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,-45.5 + pos: 40.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20627 + color: '#0000FFFF' + - uid: 20416 components: - type: Transform rot: 1.5707963267948966 rad - pos: 83.5,-45.5 + pos: 39.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20628 + color: '#0000FFFF' + - uid: 20417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 85.5,-44.5 + pos: 41.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20629 + color: '#0000FFFF' + - uid: 20418 components: - type: Transform rot: 1.5707963267948966 rad - pos: 86.5,-44.5 + pos: 33.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20630 + color: '#0000FFFF' + - uid: 20419 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-44.5 + pos: 37.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20631 + color: '#0000FFFF' + - uid: 20420 components: - type: Transform - pos: 69.5,-45.5 + rot: 1.5707963267948966 rad + pos: 43.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20632 + color: '#0000FFFF' + - uid: 20421 components: - type: Transform - pos: 69.5,-44.5 + pos: 61.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20633 + color: '#0000FFFF' + - uid: 20422 components: - type: Transform - pos: 69.5,-43.5 + pos: 61.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20634 + color: '#0000FFFF' + - uid: 20423 components: - type: Transform - pos: 69.5,-42.5 + pos: 61.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20635 + color: '#0000FFFF' + - uid: 20424 components: - type: Transform - pos: 69.5,-41.5 + pos: 45.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20636 + - uid: 20425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-40.5 + rot: 1.5707963267948966 rad + pos: 49.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20637 + - uid: 20426 components: - type: Transform rot: -1.5707963267948966 rad - pos: 71.5,-40.5 + pos: 56.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20638 + color: '#0000FFFF' + - uid: 20427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-40.5 + pos: 61.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20639 + color: '#0000FFFF' + - uid: 20428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-40.5 + pos: 61.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20640 + color: '#0000FFFF' + - uid: 20429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-40.5 + pos: 61.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20641 + color: '#0000FFFF' + - uid: 20430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-40.5 + pos: 61.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20642 + color: '#0000FFFF' + - uid: 20431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-40.5 + pos: 61.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20643 + color: '#0000FFFF' + - uid: 20432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,-40.5 + pos: 61.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20644 + color: '#0000FFFF' + - uid: 20433 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20434 components: - type: Transform rot: 3.141592653589793 rad - pos: 79.5,-39.5 + pos: 61.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20645 + color: '#0000FFFF' + - uid: 20435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-40.5 + rot: -1.5707963267948966 rad + pos: 50.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20646 + color: '#0000FFFF' + - uid: 20436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-40.5 + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20647 + color: '#0000FFFF' + - uid: 20437 components: - type: Transform - pos: 66.5,-39.5 + pos: 51.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20648 + color: '#0000FFFF' + - uid: 20438 components: - type: Transform - pos: 66.5,-37.5 + rot: 1.5707963267948966 rad + pos: 31.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20649 + color: '#0000FFFF' + - uid: 20439 components: - type: Transform - pos: 66.5,-36.5 + rot: 1.5707963267948966 rad + pos: -24.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20650 + color: '#0000FFFF' + - uid: 20440 components: - type: Transform - pos: 66.5,-35.5 + pos: -36.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20651 + - uid: 20441 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-40.5 + pos: -28.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20652 + color: '#0000FFFF' + - uid: 20442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 64.5,-40.5 + pos: -25.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20653 + color: '#0000FFFF' + - uid: 20443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-40.5 + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20654 + color: '#0000FFFF' + - uid: 20444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-40.5 + rot: 1.5707963267948966 rad + pos: -48.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20655 + - uid: 20445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-40.5 + rot: 1.5707963267948966 rad + pos: -49.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20656 + - uid: 20446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-40.5 + rot: 1.5707963267948966 rad + pos: -50.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20657 + - uid: 20447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-40.5 + rot: 1.5707963267948966 rad + pos: -31.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20658 + color: '#0000FFFF' + - uid: 20448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-40.5 + rot: 1.5707963267948966 rad + pos: -36.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20659 + color: '#0000FFFF' + - uid: 20449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-40.5 + pos: -25.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20660 + - uid: 20450 components: - type: Transform - pos: 56.5,-35.5 + pos: -26.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20661 + color: '#0000FFFF' + - uid: 20451 components: - type: Transform - pos: 56.5,-36.5 + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20662 + color: '#0000FFFF' + - uid: 20452 components: - type: Transform - pos: 56.5,-37.5 + rot: 1.5707963267948966 rad + pos: -22.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20663 + color: '#0000FFFF' + - uid: 20453 components: - type: Transform - pos: 56.5,-38.5 + rot: 1.5707963267948966 rad + pos: -21.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20664 + color: '#0000FFFF' + - uid: 20454 components: - type: Transform - pos: 56.5,-39.5 + rot: 1.5707963267948966 rad + pos: -20.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20665 + color: '#0000FFFF' + - uid: 20455 components: - type: Transform - pos: 17.5,-38.5 + rot: 1.5707963267948966 rad + pos: -19.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20666 + color: '#0000FFFF' + - uid: 20456 components: - type: Transform - pos: 17.5,-39.5 + rot: -1.5707963267948966 rad + pos: -26.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20667 + - uid: 20457 components: - type: Transform - pos: 17.5,-40.5 + rot: -1.5707963267948966 rad + pos: -25.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20668 + - uid: 20458 components: - type: Transform - pos: 17.5,-41.5 + rot: 1.5707963267948966 rad + pos: 13.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20669 + color: '#0000FFFF' + - uid: 20459 components: - type: Transform - pos: 17.5,-42.5 + pos: -8.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20670 + - uid: 20460 components: - type: Transform - pos: 17.5,-43.5 + pos: -8.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20671 + - uid: 20461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-54.5 + pos: -8.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20672 + - uid: 20462 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20463 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20464 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-54.5 + pos: 57.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20673 + color: '#0000FFFF' + - uid: 20465 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-53.5 + pos: 58.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20674 + - uid: 20466 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-53.5 + pos: 8.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20675 + - uid: 20467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-49.5 + rot: -1.5707963267948966 rad + pos: 8.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20676 + - uid: 20468 components: - type: Transform - pos: -24.5,-45.5 + rot: -1.5707963267948966 rad + pos: 7.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20677 + color: '#0000FFFF' + - uid: 20469 components: - type: Transform - pos: -24.5,-46.5 + rot: -1.5707963267948966 rad + pos: 7.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20678 + - uid: 20470 components: - type: Transform - pos: -24.5,-47.5 + rot: 3.141592653589793 rad + pos: 56.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20679 + color: '#0000FFFF' + - uid: 20471 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-48.5 + pos: 62.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20680 + - uid: 20472 components: - type: Transform - pos: -8.5,-52.5 + rot: 3.141592653589793 rad + pos: 62.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20681 + - uid: 20473 components: - type: Transform - pos: -8.5,-51.5 + rot: 3.141592653589793 rad + pos: 57.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20682 + - uid: 20474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-54.5 + rot: 3.141592653589793 rad + pos: 56.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20683 + - uid: 20475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-54.5 + rot: 3.141592653589793 rad + pos: 61.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20684 + - uid: 20476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-54.5 + rot: 3.141592653589793 rad + pos: 57.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20685 + color: '#FF0000FF' + - uid: 20477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-54.5 + rot: 3.141592653589793 rad + pos: 57.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20686 + color: '#FF0000FF' + - uid: 20478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-54.5 + rot: 3.141592653589793 rad + pos: 56.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20687 + - uid: 20479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-54.5 + rot: 3.141592653589793 rad + pos: 56.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20688 + - uid: 20480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-54.5 + pos: -10.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20689 + - uid: 20481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-54.5 + pos: -8.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20690 + color: '#FF0000FF' + - uid: 20482 components: - type: Transform - pos: 1.5,-55.5 + pos: -10.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20691 + - uid: 20483 components: - type: Transform - pos: 1.5,-56.5 + pos: -10.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20692 + - uid: 20484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-54.5 + pos: -10.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20693 + - uid: 20485 components: - type: Transform - pos: -9.5,-53.5 + pos: -10.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20694 + - uid: 20486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-54.5 + pos: -10.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20695 + - uid: 20487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-54.5 + pos: -10.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20696 + - uid: 20488 components: - type: Transform - pos: -9.5,-52.5 + pos: -10.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20697 + - uid: 20489 components: - type: Transform - pos: -9.5,-51.5 + rot: 3.141592653589793 rad + pos: 5.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20698 + - uid: 20490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-49.5 + pos: -8.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20699 + color: '#FF0000FF' + - uid: 20491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 + pos: -10.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20700 + - uid: 20492 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-46.5 + rot: -1.5707963267948966 rad + pos: 9.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20701 + - uid: 20493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-44.5 + pos: -8.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20702 + - uid: 20494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-45.5 + rot: 1.5707963267948966 rad + pos: -107.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20703 + - uid: 20495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-45.5 + pos: -8.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20704 + color: '#FF0000FF' + - uid: 20496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-45.5 + pos: -10.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20705 + - uid: 20497 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-45.5 + pos: -0.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20706 + - uid: 20498 components: - type: Transform - pos: -5.5,-44.5 + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20707 + - uid: 20499 components: - type: Transform - pos: -5.5,-43.5 + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20708 + - uid: 20500 components: - type: Transform - pos: -5.5,-42.5 + pos: 22.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20709 + - uid: 20501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-42.5 + pos: 22.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20710 + color: '#0000FFFF' + - uid: 20502 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-42.5 + pos: 25.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20711 + - uid: 20503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-42.5 + pos: 2.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20712 + color: '#0000FFFF' + - uid: 20504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-42.5 + pos: 2.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20713 + color: '#0000FFFF' + - uid: 20505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-42.5 + pos: 2.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20714 + color: '#0000FFFF' + - uid: 20506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-42.5 + pos: 2.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20715 + color: '#0000FFFF' + - uid: 20507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-42.5 + pos: 2.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20716 + color: '#0000FFFF' + - uid: 20508 components: - type: Transform - pos: -5.5,-46.5 + pos: 22.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20717 + - uid: 20509 components: - type: Transform - pos: -5.5,-47.5 + pos: 3.5,-19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20718 + color: '#FF0000FF' + - uid: 20510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-48.5 + pos: 22.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20719 + - uid: 20511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-48.5 + pos: 22.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20720 + - uid: 20512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-48.5 + pos: 22.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20721 + - uid: 20513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-48.5 + pos: 22.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20722 + - uid: 20514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 + pos: 22.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20723 + - uid: 20515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-49.5 + pos: 22.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20724 + color: '#0000FFFF' + - uid: 20516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-49.5 + rot: 1.5707963267948966 rad + pos: 24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20725 + color: '#0000FFFF' + - uid: 20517 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-49.5 + pos: -12.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20726 + - uid: 20518 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-49.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20728 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-49.5 + pos: -15.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20729 + color: '#0000FFFF' + - uid: 20519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-49.5 + rot: -1.5707963267948966 rad + pos: -16.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20730 + color: '#0000FFFF' + - uid: 20520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 + rot: -1.5707963267948966 rad + pos: -13.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20731 + - uid: 20521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-49.5 + rot: -1.5707963267948966 rad + pos: -13.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20732 + color: '#0000FFFF' + - uid: 20522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-49.5 + rot: 3.141592653589793 rad + pos: -17.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20733 + color: '#0000FFFF' + - uid: 20523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-49.5 + rot: 3.141592653589793 rad + pos: -17.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20734 + color: '#0000FFFF' + - uid: 20524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 + rot: 3.141592653589793 rad + pos: -17.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20735 + color: '#0000FFFF' + - uid: 20525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-44.5 + rot: 3.141592653589793 rad + pos: -17.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20736 + color: '#0000FFFF' + - uid: 20526 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-43.5 + pos: -17.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20737 + color: '#0000FFFF' + - uid: 20527 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-42.5 + pos: -17.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20738 + color: '#0000FFFF' + - uid: 20528 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-41.5 + pos: -17.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20739 + color: '#0000FFFF' + - uid: 20529 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-40.5 + pos: -17.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20740 + color: '#0000FFFF' + - uid: 20530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-46.5 + rot: 3.141592653589793 rad + pos: -17.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20741 + - uid: 20531 components: - type: Transform - pos: -13.5,-45.5 + rot: 3.141592653589793 rad + pos: -17.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20742 + color: '#0000FFFF' + - uid: 20532 components: - type: Transform - pos: -13.5,-46.5 + pos: 3.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20743 + - uid: 20533 components: - type: Transform - pos: -13.5,-47.5 + pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20744 + color: '#0000FFFF' + - uid: 20534 components: - type: Transform - pos: -13.5,-48.5 + pos: 2.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20745 + color: '#0000FFFF' + - uid: 20535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-46.5 + rot: 3.141592653589793 rad + pos: -17.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20746 + - uid: 20536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-46.5 + rot: 3.141592653589793 rad + pos: -17.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20747 + - uid: 20537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-46.5 + rot: 3.141592653589793 rad + pos: 20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20748 + color: '#FF0000FF' + - uid: 20538 components: - type: Transform - pos: -27.5,-42.5 + rot: 3.141592653589793 rad + pos: -10.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20749 + - uid: 20539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-44.5 + pos: 16.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20750 + - uid: 20540 components: - type: Transform - pos: -22.5,-37.5 + rot: 1.5707963267948966 rad + pos: -14.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20751 + color: '#0000FFFF' + - uid: 20541 components: - type: Transform - pos: -22.5,-39.5 + pos: -10.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20752 + color: '#0000FFFF' + - uid: 20542 components: - type: Transform - pos: -21.5,-43.5 + rot: 3.141592653589793 rad + pos: -17.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20753 + color: '#0000FFFF' + - uid: 20543 components: - type: Transform - pos: -21.5,-42.5 + pos: -8.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20754 + - uid: 20544 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-47.5 + rot: -1.5707963267948966 rad + pos: -12.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20755 + - uid: 20545 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-48.5 + pos: -17.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20756 + - uid: 20546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-49.5 + pos: 15.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20757 + - uid: 20547 components: - type: Transform - pos: -22.5,-40.5 + pos: 3.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20758 + - uid: 20548 components: - type: Transform - pos: -27.5,-41.5 + pos: 3.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20759 + - uid: 20549 components: - type: Transform - pos: -27.5,-43.5 + pos: 3.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20760 + - uid: 20550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-44.5 + rot: 3.141592653589793 rad + pos: 20.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20761 + - uid: 20551 components: - type: Transform - pos: -10.5,-44.5 + pos: 22.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20762 + - uid: 20552 components: - type: Transform - pos: -10.5,-42.5 + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20763 + - uid: 20553 components: - type: Transform - pos: -10.5,-41.5 + pos: 22.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20764 + - uid: 20554 components: - type: Transform - pos: -10.5,-37.5 + pos: 22.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20765 + - uid: 20555 components: - type: Transform - pos: -10.5,-36.5 + rot: 3.141592653589793 rad + pos: -17.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20766 + - uid: 20556 components: - type: Transform - pos: -8.5,-34.5 + rot: 3.141592653589793 rad + pos: -17.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20767 + color: '#0000FFFF' + - uid: 20557 components: - type: Transform - pos: -10.5,-35.5 + rot: 1.5707963267948966 rad + pos: 18.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20768 + - uid: 20558 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,4.5 + pos: 11.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20769 + color: '#0000FFFF' + - uid: 20559 components: - type: Transform - pos: -55.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20770 - components: - - type: Transform - pos: -36.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20771 - components: - - type: Transform - pos: -36.5,10.5 + pos: -8.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20772 + - uid: 20560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,12.5 + pos: -8.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20773 + - uid: 20561 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,11.5 + pos: -15.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20774 + - uid: 20562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,11.5 + rot: 1.5707963267948966 rad + pos: -16.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20775 + - uid: 20563 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-2.5 + pos: -52.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20776 + - uid: 20564 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-0.5 + pos: -22.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20777 + - uid: 20565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-2.5 + rot: 3.141592653589793 rad + pos: -20.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20778 + - uid: 20566 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-2.5 + pos: -24.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20779 + - uid: 20567 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-2.5 + pos: -23.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20780 + - uid: 20568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-2.5 + pos: -21.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20781 + - uid: 20569 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,11.5 + pos: -23.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20782 + - uid: 20570 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,10.5 + pos: -27.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20783 + - uid: 20571 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-4.5 + pos: -23.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20784 + color: '#FF0000FF' + - uid: 20572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-4.5 + pos: -32.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20785 + - uid: 20573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-4.5 + rot: 3.141592653589793 rad + pos: -25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20574 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20575 + components: + - type: Transform + pos: -38.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20786 + - uid: 20576 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-4.5 + pos: -42.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20787 + - uid: 20577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 + rot: 3.141592653589793 rad + pos: -43.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20788 + color: '#0000FFFF' + - uid: 20578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-2.5 + pos: -38.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20789 + color: '#0000FFFF' + - uid: 20579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-2.5 + rot: 3.141592653589793 rad + pos: -43.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20790 + color: '#0000FFFF' + - uid: 20580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-4.5 + pos: -38.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20791 + - uid: 20581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-2.5 + pos: -38.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20792 + color: '#0000FFFF' + - uid: 20582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-2.5 + pos: -38.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20793 + color: '#0000FFFF' + - uid: 20583 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,-4.5 + pos: -40.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20794 + - uid: 20584 components: - type: Transform - pos: -32.5,-3.5 + rot: 1.5707963267948966 rad + pos: -39.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20795 + - uid: 20585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-2.5 + rot: 1.5707963267948966 rad + pos: -34.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20796 + color: '#0000FFFF' + - uid: 20586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-2.5 + rot: 1.5707963267948966 rad + pos: -37.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20797 + color: '#0000FFFF' + - uid: 20587 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-3.5 + pos: -38.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20798 + color: '#0000FFFF' + - uid: 20588 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-4.5 + pos: -36.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20799 + - uid: 20589 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-5.5 + pos: -44.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20800 + - uid: 20590 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-12.5 + pos: -22.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20801 + color: '#FF0000FF' + - uid: 20591 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-6.5 + pos: -40.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20802 + color: '#FF0000FF' + - uid: 20592 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-6.5 + pos: -44.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20803 + - uid: 20593 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-7.5 + pos: -40.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20804 + - uid: 20594 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-7.5 + pos: -44.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20805 + color: '#FF0000FF' + - uid: 20595 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-8.5 + pos: -40.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20806 + - uid: 20596 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-8.5 + pos: -46.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20807 + - uid: 20597 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-9.5 + pos: -43.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20808 + color: '#0000FFFF' + - uid: 20598 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-9.5 + pos: -25.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20809 + color: '#FF0000FF' + - uid: 20599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-10.5 + pos: -55.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20810 + - uid: 20600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-10.5 + rot: -1.5707963267948966 rad + pos: -49.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20811 + - uid: 20601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-11.5 + rot: 1.5707963267948966 rad + pos: -35.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20812 + - uid: 20602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-11.5 + rot: -1.5707963267948966 rad + pos: -32.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20813 + - uid: 20603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 + rot: 3.141592653589793 rad + pos: -43.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20814 + - uid: 20604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 + rot: -1.5707963267948966 rad + pos: -33.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20815 + - uid: 20605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-13.5 + rot: -1.5707963267948966 rad + pos: -31.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20816 + color: '#FF0000FF' + - uid: 20606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-10.5 + rot: -1.5707963267948966 rad + pos: -30.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20817 + - uid: 20607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-9.5 + rot: -1.5707963267948966 rad + pos: -43.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20818 + - uid: 20608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-9.5 + rot: -1.5707963267948966 rad + pos: -45.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20819 + - uid: 20609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-9.5 + rot: -1.5707963267948966 rad + pos: -25.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20820 + - uid: 20610 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-9.5 + pos: -34.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20821 + - uid: 20611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-9.5 + rot: -1.5707963267948966 rad + pos: -47.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20822 + - uid: 20612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-9.5 + pos: -36.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20823 + - uid: 20613 components: - type: Transform - pos: -46.5,-10.5 + rot: -1.5707963267948966 rad + pos: -50.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20824 + - uid: 20614 components: - type: Transform - pos: -46.5,-11.5 + rot: -1.5707963267948966 rad + pos: -41.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20825 + - uid: 20615 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-13.5 + pos: -39.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20826 + - uid: 20616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-12.5 + rot: -1.5707963267948966 rad + pos: -42.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20827 + color: '#FF0000FF' + - uid: 20617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-11.5 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20828 + color: '#FF0000FF' + - uid: 20618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 + rot: 3.141592653589793 rad + pos: -43.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20829 + color: '#0000FFFF' + - uid: 20619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 + rot: 1.5707963267948966 rad + pos: -36.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20830 + - uid: 20620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,0.5 + rot: 1.5707963267948966 rad + pos: -33.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20831 + color: '#0000FFFF' + - uid: 20621 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,1.5 + pos: -20.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20832 + color: '#FF0000FF' + - uid: 20622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,1.5 + pos: -44.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20833 + - uid: 20623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-6.5 + rot: -1.5707963267948966 rad + pos: -45.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20834 + - uid: 20624 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,0.5 + pos: -27.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20835 + color: '#FF0000FF' + - uid: 20625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,6.5 + rot: 1.5707963267948966 rad + pos: -26.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20836 + color: '#FF0000FF' + - uid: 20626 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,5.5 + pos: -38.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20837 + - uid: 20627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-1.5 + rot: -1.5707963267948966 rad + pos: -38.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20838 + - uid: 20628 components: - type: Transform - pos: -43.5,5.5 + rot: -1.5707963267948966 rad + pos: -46.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20839 + color: '#FF0000FF' + - uid: 20629 components: - type: Transform - pos: -43.5,4.5 + rot: -1.5707963267948966 rad + pos: -37.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20840 + color: '#FF0000FF' + - uid: 20630 components: - type: Transform - pos: -43.5,3.5 + rot: 3.141592653589793 rad + pos: -38.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20841 + - uid: 20631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,8.5 + pos: 27.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20842 + - uid: 20632 components: - type: Transform - pos: -43.5,2.5 + rot: -1.5707963267948966 rad + pos: 61.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20843 + color: '#FF0000FF' + - uid: 20633 components: - type: Transform - pos: -26.5,7.5 + rot: -1.5707963267948966 rad + pos: 60.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20844 + - uid: 20634 components: - type: Transform - pos: -41.5,5.5 + rot: 1.5707963267948966 rad + pos: 79.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20845 + color: '#0000FFFF' + - uid: 20635 components: - type: Transform - pos: -41.5,4.5 + pos: -8.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20846 + - uid: 20636 components: - type: Transform - pos: -41.5,3.5 + rot: 1.5707963267948966 rad + pos: -12.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20847 + - uid: 20637 components: - type: Transform - pos: -41.5,2.5 + rot: 3.141592653589793 rad + pos: -8.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20848 + - uid: 20638 components: - type: Transform - pos: -41.5,0.5 + rot: 3.141592653589793 rad + pos: -8.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20849 + - uid: 20639 components: - type: Transform - pos: -41.5,-0.5 + rot: 3.141592653589793 rad + pos: -8.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20850 + - uid: 20640 components: - type: Transform - pos: -41.5,-1.5 + rot: -1.5707963267948966 rad + pos: 50.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20851 + - uid: 20641 components: - type: Transform - pos: -38.5,1.5 + pos: 39.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20852 + - uid: 20642 components: - type: Transform - pos: -38.5,2.5 + rot: 3.141592653589793 rad + pos: 44.5,-40.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20853 + - uid: 20643 components: - type: Transform - pos: -38.5,3.5 + rot: 3.141592653589793 rad + pos: 44.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20854 + - uid: 20644 components: - type: Transform - pos: -38.5,4.5 + pos: 39.5,-37.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20855 + - uid: 20645 components: - type: Transform - pos: -38.5,5.5 + pos: 47.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20856 + - uid: 20646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,7.5 + pos: 48.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20857 + - uid: 20647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,7.5 + pos: 47.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20858 + - uid: 20648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,7.5 + pos: 51.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20859 + - uid: 20649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,7.5 + pos: 50.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20860 + - uid: 20650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,7.5 + pos: 50.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20861 + - uid: 20651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-2.5 + pos: 47.5,-57.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20862 + - uid: 20652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-2.5 + pos: 47.5,-56.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20863 + - uid: 20653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-2.5 + pos: 51.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20864 + - uid: 20654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-2.5 + pos: 46.5,-55.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20865 + - uid: 20655 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-2.5 + pos: 49.5,-54.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20866 + - uid: 20656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-1.5 + rot: 1.5707963267948966 rad + pos: 40.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20867 + - uid: 20657 components: - type: Transform - pos: -32.5,-1.5 + rot: 1.5707963267948966 rad + pos: 41.5,-41.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20868 + - uid: 20658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,0.5 + rot: 1.5707963267948966 rad + pos: -22.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20869 + color: '#FF5E5EFF' + - uid: 20659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,1.5 + rot: 1.5707963267948966 rad + pos: -23.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20870 + color: '#FF5E5EFF' + - uid: 20660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,2.5 + rot: 1.5707963267948966 rad + pos: -24.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20871 + color: '#FF5E5EFF' + - uid: 20661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,3.5 + rot: 1.5707963267948966 rad + pos: -21.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20872 + color: '#FF5E5EFF' + - uid: 20662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,5.5 + rot: 1.5707963267948966 rad + pos: -20.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20873 + color: '#FF5E5EFF' + - uid: 20663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,6.5 + rot: 1.5707963267948966 rad + pos: -24.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20874 + color: '#5E6BFFFF' + - uid: 20664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,7.5 + rot: 1.5707963267948966 rad + pos: -23.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20875 + color: '#5E6BFFFF' + - uid: 20665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,13.5 + rot: 1.5707963267948966 rad + pos: -22.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20876 + color: '#5E6BFFFF' + - uid: 20666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 + rot: 1.5707963267948966 rad + pos: -21.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20877 + color: '#5E6BFFFF' + - uid: 20667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,15.5 + rot: 1.5707963267948966 rad + pos: -20.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20878 + color: '#5E6BFFFF' + - uid: 20668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,12.5 + rot: 1.5707963267948966 rad + pos: -24.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20879 + color: '#5E6BFFFF' + - uid: 20669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,12.5 + rot: 1.5707963267948966 rad + pos: -23.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20880 + color: '#5E6BFFFF' + - uid: 20670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,12.5 + rot: 1.5707963267948966 rad + pos: -22.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20881 + color: '#5E6BFFFF' + - uid: 20671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,12.5 + rot: 1.5707963267948966 rad + pos: -21.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20882 + color: '#5E6BFFFF' + - uid: 20672 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,1.5 + pos: -20.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20883 + color: '#5E6BFFFF' + - uid: 20673 components: - type: Transform - pos: -21.5,0.5 + rot: 1.5707963267948966 rad + pos: -24.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20884 + color: '#FF5E5EFF' + - uid: 20674 components: - type: Transform - pos: -21.5,1.5 + rot: 1.5707963267948966 rad + pos: -23.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20885 + color: '#FF5E5EFF' + - uid: 20675 components: - type: Transform - pos: -21.5,2.5 + rot: 1.5707963267948966 rad + pos: -22.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20886 + color: '#FF5E5EFF' + - uid: 20676 components: - type: Transform - pos: -21.5,3.5 + rot: 1.5707963267948966 rad + pos: -21.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20887 + color: '#FF5E5EFF' + - uid: 20677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 + rot: 1.5707963267948966 rad + pos: -20.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20888 + color: '#FF5E5EFF' + - uid: 20678 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,2.5 + pos: -19.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20889 + color: '#17E8E2FF' + - uid: 20679 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,10.5 + rot: 3.141592653589793 rad + pos: -19.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20890 + color: '#17E8E2FF' + - uid: 20680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,10.5 + rot: 3.141592653589793 rad + pos: -19.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20891 + color: '#17E8E2FF' + - uid: 20681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,10.5 + rot: 3.141592653589793 rad + pos: -19.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20892 + color: '#17E8E2FF' + - uid: 20682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,10.5 + rot: 3.141592653589793 rad + pos: -19.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20893 + color: '#17E8E2FF' + - uid: 20683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,10.5 + rot: 3.141592653589793 rad + pos: -17.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20894 + color: '#17E8E2FF' + - uid: 20684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,10.5 + rot: 3.141592653589793 rad + pos: -17.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20895 + color: '#17E8E2FF' + - uid: 20685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,11.5 + rot: 3.141592653589793 rad + pos: -17.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20896 + color: '#17E8E2FF' + - uid: 20686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,10.5 + rot: 3.141592653589793 rad + pos: -17.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20897 + color: '#17E8E2FF' + - uid: 20687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,10.5 + rot: 3.141592653589793 rad + pos: -17.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20898 + color: '#17E8E2FF' + - uid: 20688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,10.5 + rot: 3.141592653589793 rad + pos: 0.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20899 + color: '#DC143CFF' + - uid: 20689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,10.5 + rot: 3.141592653589793 rad + pos: 0.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20900 + color: '#DC143CFF' + - uid: 20690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,10.5 + rot: 3.141592653589793 rad + pos: 0.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20901 + color: '#DC143CFF' + - uid: 20691 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,11.5 + pos: -5.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20902 + color: '#A1A1A1FF' + - uid: 20692 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,12.5 + pos: -5.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20903 + color: '#A1A1A1FF' + - uid: 20693 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,13.5 + pos: -5.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20904 + color: '#A1A1A1FF' + - uid: 20694 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,14.5 + pos: -5.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20905 + color: '#A1A1A1FF' + - uid: 20695 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,15.5 + pos: -5.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20906 + color: '#A1A1A1FF' + - uid: 20696 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,12.5 + pos: -1.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20907 + color: '#7B29BAFF' + - uid: 20697 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,13.5 + pos: -1.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20908 + color: '#7B29BAFF' + - uid: 20698 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,14.5 + pos: -1.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20909 + color: '#7B29BAFF' + - uid: 20699 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,15.5 + pos: -1.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20910 + color: '#7B29BAFF' + - uid: 20700 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,15.5 + pos: -1.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20911 + color: '#7B29BAFF' + - uid: 20701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,14.5 + pos: -19.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20912 + color: '#17E8E2FF' + - uid: 20702 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,13.5 + pos: -11.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20913 + color: '#525252FF' + - uid: 20703 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,12.5 + pos: -11.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20914 + color: '#525252FF' + - uid: 20704 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,11.5 + pos: -11.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20915 + color: '#525252FF' + - uid: 20705 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,9.5 + pos: -11.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20916 + color: '#525252FF' + - uid: 20706 components: - type: Transform - pos: -55.5,13.5 + rot: 3.141592653589793 rad + pos: -11.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20917 + color: '#525252FF' + - uid: 20707 components: - type: Transform - pos: -54.5,13.5 + rot: 3.141592653589793 rad + pos: -15.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20918 + color: '#D75500FF' + - uid: 20708 components: - type: Transform - pos: -54.5,14.5 + rot: 3.141592653589793 rad + pos: -15.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20919 + color: '#D75500FF' + - uid: 20709 components: - type: Transform - pos: -54.5,15.5 + rot: 3.141592653589793 rad + pos: -15.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20920 + color: '#D75500FF' + - uid: 20710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,11.5 + rot: 3.141592653589793 rad + pos: -15.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20921 + color: '#D75500FF' + - uid: 20711 components: - type: Transform - pos: -32.5,-0.5 + rot: 3.141592653589793 rad + pos: -15.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20922 + color: '#D75500FF' + - uid: 20712 components: - type: Transform - pos: -32.5,0.5 + rot: 3.141592653589793 rad + pos: -13.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20923 + color: '#D75500FF' + - uid: 20713 components: - type: Transform - pos: -28.5,-1.5 + rot: 3.141592653589793 rad + pos: -13.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20924 + color: '#D75500FF' + - uid: 20714 components: - type: Transform - pos: -28.5,-0.5 + rot: 3.141592653589793 rad + pos: -13.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20925 + color: '#D75500FF' + - uid: 20715 components: - type: Transform - pos: -28.5,0.5 + rot: 3.141592653589793 rad + pos: -13.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20926 + color: '#D75500FF' + - uid: 20716 components: - type: Transform - pos: -20.5,3.5 + rot: 3.141592653589793 rad + pos: -13.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20927 + color: '#D75500FF' + - uid: 20717 components: - type: Transform - pos: 22.5,-9.5 + rot: 3.141592653589793 rad + pos: -9.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20928 + color: '#525252FF' + - uid: 20718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-8.5 + rot: 3.141592653589793 rad + pos: -9.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20929 + color: '#525252FF' + - uid: 20719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-17.5 + rot: 3.141592653589793 rad + pos: -9.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20930 + color: '#525252FF' + - uid: 20720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-17.5 + rot: 3.141592653589793 rad + pos: -9.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20931 + color: '#525252FF' + - uid: 20721 components: - type: Transform - pos: 15.5,15.5 + rot: 3.141592653589793 rad + pos: -9.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20932 + color: '#525252FF' + - uid: 20722 components: - type: Transform - pos: -3.5,-9.5 + rot: 3.141592653589793 rad + pos: -7.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20933 + color: '#A1A1A1FF' + - uid: 20723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,14.5 + rot: 3.141592653589793 rad + pos: -7.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20934 + color: '#A1A1A1FF' + - uid: 20724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-3.5 + rot: 3.141592653589793 rad + pos: -7.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20935 + color: '#A1A1A1FF' + - uid: 20725 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,3.5 + pos: -7.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20936 + color: '#A1A1A1FF' + - uid: 20726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,9.5 + rot: 3.141592653589793 rad + pos: -7.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20937 + color: '#A1A1A1FF' + - uid: 20727 components: - type: Transform - pos: -3.5,-8.5 + rot: 3.141592653589793 rad + pos: -3.5,-69.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20938 + color: '#7B29BAFF' + - uid: 20728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-17.5 + rot: 3.141592653589793 rad + pos: -3.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20939 + color: '#7B29BAFF' + - uid: 20729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 + rot: 3.141592653589793 rad + pos: -3.5,-67.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20940 + color: '#7B29BAFF' + - uid: 20730 components: - type: Transform - pos: 3.5,-18.5 + rot: 3.141592653589793 rad + pos: -3.5,-66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20941 + color: '#7B29BAFF' + - uid: 20731 components: - type: Transform - pos: -5.5,-40.5 + rot: 3.141592653589793 rad + pos: -3.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20942 + color: '#7B29BAFF' + - uid: 20732 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-17.5 + pos: -17.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20943 + - uid: 20733 components: - type: Transform - pos: 3.5,-17.5 + rot: 1.5707963267948966 rad + pos: -17.5,-54.5 + parent: 2 + - uid: 20734 + components: + - type: Transform + pos: -18.5,-56.5 + parent: 2 + - uid: 20735 + components: + - type: Transform + pos: -19.5,-56.5 + parent: 2 + - uid: 20736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-60.5 + parent: 2 + - uid: 20737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-61.5 + parent: 2 + - uid: 20738 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-62.5 + parent: 2 + - uid: 20739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-60.5 + parent: 2 + - uid: 20740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-61.5 + parent: 2 + - uid: 20741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-62.5 + parent: 2 + - uid: 20742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-62.5 + parent: 2 + - uid: 20743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-61.5 + parent: 2 + - uid: 20744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-60.5 + parent: 2 + - uid: 20745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20944 + color: '#DC143CFF' + - uid: 20746 components: - type: Transform - pos: 3.5,-20.5 + rot: -1.5707963267948966 rad + pos: -18.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20945 + color: '#DC143CFF' + - uid: 20747 components: - type: Transform - pos: 3.5,-13.5 + rot: -1.5707963267948966 rad + pos: -19.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20946 + color: '#DC143CFF' + - uid: 20748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,6.5 + rot: -1.5707963267948966 rad + pos: -20.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20947 + color: '#DC143CFF' + - uid: 20749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,16.5 + rot: -1.5707963267948966 rad + pos: -21.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20948 + color: '#DC143CFF' + - uid: 20750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-17.5 + pos: -22.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20949 + color: '#DC143CFF' + - uid: 20751 components: - type: Transform - pos: -10.5,-19.5 + rot: -1.5707963267948966 rad + pos: -23.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20950 + color: '#DC143CFF' + - uid: 20752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-16.5 + rot: -1.5707963267948966 rad + pos: -24.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20951 + color: '#DC143CFF' + - uid: 20753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,14.5 + rot: -1.5707963267948966 rad + pos: -25.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20952 + color: '#DC143CFF' + - uid: 20754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-17.5 + rot: -1.5707963267948966 rad + pos: -26.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20953 + color: '#DC143CFF' + - uid: 20755 components: - type: Transform - pos: -8.5,-16.5 + rot: 3.141592653589793 rad + pos: -27.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20954 + color: '#DC143CFF' + - uid: 20756 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-2.5 + pos: -27.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20955 + color: '#DC143CFF' + - uid: 20757 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-7.5 + pos: -27.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20956 + color: '#DC143CFF' + - uid: 20758 components: - type: Transform - pos: 15.5,16.5 + rot: 3.141592653589793 rad + pos: -1.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 20957 + - uid: 20759 components: - type: Transform - pos: 2.5,-14.5 + rot: 3.141592653589793 rad + pos: 43.5,-38.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20958 + - uid: 20760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-41.5 + parent: 2 + - uid: 20761 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,5.5 + pos: -8.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20959 + color: '#FF0000FF' + - uid: 20762 components: - type: Transform - pos: -15.5,45.5 + rot: -1.5707963267948966 rad + pos: -11.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20960 + color: '#FF0000FF' + - uid: 20763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-17.5 + pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20961 + color: '#FF0000FF' + - uid: 20764 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,8.5 + pos: -14.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20962 + - uid: 20765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-17.5 + pos: 46.5,-53.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20963 + - uid: 20766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,46.5 + pos: 46.5,-56.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20964 + - uid: 20768 components: - type: Transform - pos: -5.5,62.5 + rot: 3.141592653589793 rad + pos: -22.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20965 + color: '#17E8E2FF' + - uid: 20769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,58.5 + rot: 3.141592653589793 rad + pos: 43.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20966 + color: '#FF0000FF' + - uid: 20770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,58.5 + rot: 3.141592653589793 rad + pos: 43.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20967 + color: '#FF0000FF' + - uid: 20771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,58.5 + rot: 3.141592653589793 rad + pos: 43.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20968 + color: '#FF0000FF' + - uid: 20772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,47.5 + pos: 42.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20969 + color: '#FF0000FF' + - uid: 20773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,47.5 + pos: 42.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20970 + color: '#FF0000FF' + - uid: 20774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,46.5 + pos: 42.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20971 + color: '#FF0000FF' + - uid: 20775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,46.5 + pos: 42.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20972 + color: '#FF0000FF' + - uid: 20776 components: - type: Transform - pos: -24.5,45.5 + pos: 42.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20973 + color: '#FF0000FF' + - uid: 20777 components: - type: Transform - pos: -24.5,44.5 + rot: 3.141592653589793 rad + pos: 43.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20974 + color: '#FF0000FF' + - uid: 20778 components: - type: Transform - pos: -25.5,46.5 + rot: 3.141592653589793 rad + pos: 26.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20975 + - uid: 20779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,47.5 + rot: 3.141592653589793 rad + pos: 27.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20976 + - uid: 20780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,47.5 + rot: 3.141592653589793 rad + pos: 27.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20977 + - uid: 20781 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,45.5 + pos: 27.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20978 + color: '#0000FFFF' + - uid: 20782 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,45.5 + pos: 27.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20979 + color: '#0000FFFF' + - uid: 20783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,47.5 + rot: 3.141592653589793 rad + pos: 28.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20980 + color: '#FF0000FF' + - uid: 20784 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,46.5 + pos: 28.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20981 + color: '#FF0000FF' + - uid: 20785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,46.5 + rot: 3.141592653589793 rad + pos: 28.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20982 + color: '#FF0000FF' + - uid: 20786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,46.5 + rot: 3.141592653589793 rad + pos: 28.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20983 + color: '#FF0000FF' + - uid: 20787 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,68.5 + pos: 28.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20984 + color: '#FF0000FF' + - uid: 20788 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,47.5 + pos: 20.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20985 + - uid: 20789 components: - type: Transform - pos: -17.5,49.5 + rot: 1.5707963267948966 rad + pos: 20.5,-46.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20986 + - uid: 20790 components: - type: Transform - pos: -17.5,50.5 + rot: 3.141592653589793 rad + pos: 27.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20987 + - uid: 20791 components: - type: Transform - pos: -17.5,51.5 + rot: 1.5707963267948966 rad + pos: 15.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20988 + - uid: 20792 components: - type: Transform - pos: -17.5,52.5 + rot: 1.5707963267948966 rad + pos: 16.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20989 + - uid: 20793 components: - type: Transform - pos: -17.5,53.5 + rot: 1.5707963267948966 rad + pos: 17.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20990 + - uid: 20794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,54.5 + rot: 1.5707963267948966 rad + pos: 19.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20991 + - uid: 20795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,48.5 + rot: 1.5707963267948966 rad + pos: 20.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20992 + - uid: 20796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,48.5 + rot: 1.5707963267948966 rad + pos: 21.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20993 + - uid: 20797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,48.5 + rot: 1.5707963267948966 rad + pos: 22.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20994 + - uid: 20798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,48.5 + rot: 1.5707963267948966 rad + pos: 24.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20995 + - uid: 20799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,48.5 + rot: 1.5707963267948966 rad + pos: 25.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20996 + - uid: 20800 components: - type: Transform - pos: -15.5,44.5 + rot: 1.5707963267948966 rad + pos: 26.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20997 + color: '#0000FFFF' + - uid: 20801 components: - type: Transform - pos: -15.5,43.5 + rot: 3.141592653589793 rad + pos: 23.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 20998 + color: '#0000FFFF' + - uid: 20802 components: - type: Transform - pos: -14.5,47.5 + rot: 3.141592653589793 rad + pos: 23.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 20999 + - uid: 20803 components: - type: Transform - pos: -14.5,46.5 + rot: 3.141592653589793 rad + pos: 23.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21000 + - uid: 20804 components: - type: Transform - pos: -14.5,45.5 + rot: 3.141592653589793 rad + pos: 23.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21001 + - uid: 20805 components: - type: Transform - pos: -14.5,44.5 + rot: 3.141592653589793 rad + pos: 23.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21002 + - uid: 20806 components: - type: Transform - pos: -14.5,43.5 + rot: 3.141592653589793 rad + pos: 27.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21003 + - uid: 20807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,47.5 + rot: 3.141592653589793 rad + pos: 27.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21004 + color: '#0000FFFF' + - uid: 20808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,47.5 + rot: 3.141592653589793 rad + pos: 27.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21005 + color: '#0000FFFF' + - uid: 20809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,48.5 + rot: 3.141592653589793 rad + pos: 18.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21006 + - uid: 20810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,48.5 + rot: 3.141592653589793 rad + pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21007 + - uid: 20811 components: - type: Transform - pos: -7.5,44.5 + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21008 + color: '#FF0000FF' + - uid: 20812 components: - type: Transform - pos: -7.5,45.5 + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21009 + color: '#FF0000FF' + - uid: 20813 components: - type: Transform - pos: -4.5,45.5 + rot: 1.5707963267948966 rad + pos: 15.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21010 + color: '#FF0000FF' + - uid: 20814 components: - type: Transform - pos: -4.5,46.5 + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21011 + color: '#FF0000FF' + - uid: 20815 components: - type: Transform - pos: -4.5,47.5 + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21012 + color: '#FF0000FF' + - uid: 20816 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,43.5 + rot: 1.5707963267948966 rad + pos: 20.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21013 + color: '#FF0000FF' + - uid: 20817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,43.5 + rot: 1.5707963267948966 rad + pos: 21.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21014 + color: '#FF0000FF' + - uid: 20818 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,46.5 + pos: 23.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21015 + color: '#FF0000FF' + - uid: 20819 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,47.5 + pos: 24.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21016 + color: '#FF0000FF' + - uid: 20820 components: - type: Transform - pos: -8.5,52.5 + rot: 1.5707963267948966 rad + pos: 25.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21017 + color: '#FF0000FF' + - uid: 20821 components: - type: Transform - pos: -8.5,51.5 + rot: 1.5707963267948966 rad + pos: 27.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21018 + color: '#FF0000FF' + - uid: 20822 components: - type: Transform - pos: -8.5,50.5 + rot: 3.141592653589793 rad + pos: 22.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21019 + color: '#FF0000FF' + - uid: 20823 components: - type: Transform - pos: -8.5,49.5 + rot: 3.141592653589793 rad + pos: 22.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21020 + color: '#FF0000FF' + - uid: 20824 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,47.5 + pos: 22.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21021 + color: '#FF0000FF' + - uid: 20825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,48.5 + pos: -8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21022 + color: '#FF0000FF' + - uid: 20826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,49.5 + pos: -8.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21023 + color: '#FF0000FF' + - uid: 20827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,50.5 + pos: -8.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21024 + color: '#FF0000FF' + - uid: 20828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,47.5 + pos: -8.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21025 + color: '#FF0000FF' + - uid: 20829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,48.5 + pos: -8.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21026 + color: '#FF0000FF' + - uid: 20830 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,48.5 + pos: -26.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21027 + color: '#FF0000FF' + - uid: 20831 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,48.5 + pos: -23.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21028 + color: '#FF0000FF' + - uid: 20832 components: - type: Transform - pos: -5.5,49.5 + rot: -1.5707963267948966 rad + pos: -22.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21029 + color: '#FF0000FF' + - uid: 20833 components: - type: Transform - pos: -5.5,50.5 + rot: -1.5707963267948966 rad + pos: -19.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21030 + color: '#FF0000FF' + - uid: 20834 components: - type: Transform - pos: -5.5,51.5 + rot: -1.5707963267948966 rad + pos: -7.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21031 + color: '#FF0000FF' + - uid: 20835 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,20.5 + pos: -25.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21032 + - uid: 20836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,20.5 + pos: -18.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21033 + - uid: 20837 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,19.5 + pos: -17.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21034 + - uid: 20838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,18.5 + rot: -1.5707963267948966 rad + pos: -16.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21035 + - uid: 20839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 + rot: -1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20840 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 20841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21036 + - uid: 20842 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,19.5 + pos: -2.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21037 + - uid: 20843 components: - type: Transform - pos: -5.5,52.5 + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21038 + - uid: 20844 components: - type: Transform - pos: -5.5,53.5 + rot: -1.5707963267948966 rad + pos: -0.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21039 + - uid: 20845 components: - type: Transform - pos: -5.5,54.5 + rot: 3.141592653589793 rad + pos: -14.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21040 + - uid: 20846 components: - type: Transform - pos: -5.5,55.5 + rot: 3.141592653589793 rad + pos: -8.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21041 + color: '#FF0000FF' + - uid: 20847 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,58.5 + pos: -7.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21042 + color: '#FF0000FF' + - uid: 20848 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,58.5 + pos: -6.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21043 + color: '#FF0000FF' + - uid: 20849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,56.5 + rot: 1.5707963267948966 rad + pos: -5.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21044 + color: '#FF0000FF' + - uid: 20850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,58.5 + pos: -4.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21045 + color: '#FF0000FF' + - uid: 20851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,58.5 + rot: -1.5707963267948966 rad + pos: -0.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21046 + - uid: 20852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,58.5 + pos: -14.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21047 + - uid: 20853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,58.5 + rot: 3.141592653589793 rad + pos: -20.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21048 + - uid: 20854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,59.5 + rot: 3.141592653589793 rad + pos: -14.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21049 + - uid: 20855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,21.5 + rot: 3.141592653589793 rad + pos: -14.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21050 + - uid: 20856 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,17.5 + pos: -20.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21051 + color: '#0000FFFF' + - uid: 20857 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,23.5 + pos: -20.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21052 + - uid: 20858 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,20.5 + pos: -20.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21053 + - uid: 20859 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,19.5 + pos: -20.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21054 + - uid: 20860 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,21.5 + pos: -20.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21055 + color: '#0000FFFF' + - uid: 20861 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,23.5 + pos: -28.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21056 + color: '#0000FFFF' + - uid: 20862 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,22.5 + pos: -28.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21057 + - uid: 20863 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,17.5 + pos: -28.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21058 + - uid: 20864 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,21.5 + pos: 0.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21059 + - uid: 20865 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,21.5 + pos: 1.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21060 + - uid: 20866 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,47.5 + pos: 3.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21061 + color: '#0000FFFF' + - uid: 20867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,47.5 + rot: 3.141592653589793 rad + pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21062 + color: '#0000FFFF' + - uid: 20868 components: - type: Transform - pos: -4.5,52.5 + rot: 1.5707963267948966 rad + pos: 6.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21063 + color: '#0000FFFF' + - uid: 20869 components: - type: Transform - pos: -4.5,53.5 + rot: 1.5707963267948966 rad + pos: 8.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21064 + color: '#0000FFFF' + - uid: 20870 components: - type: Transform - pos: -4.5,54.5 + rot: 1.5707963267948966 rad + pos: 9.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21065 + color: '#0000FFFF' + - uid: 20871 components: - type: Transform - pos: -4.5,55.5 + rot: 1.5707963267948966 rad + pos: 10.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21066 + color: '#0000FFFF' + - uid: 20872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,21.5 + pos: -9.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21067 + - uid: 20873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 + pos: -8.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21068 + - uid: 20874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,21.5 + rot: 1.5707963267948966 rad + pos: 5.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21069 + - uid: 20875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,56.5 + rot: 1.5707963267948966 rad + pos: -9.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21070 + color: '#0000FFFF' + - uid: 20876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,56.5 + rot: 1.5707963267948966 rad + pos: -10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21071 + color: '#FF0000FF' + - uid: 20877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,56.5 + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21072 + color: '#FF0000FF' + - uid: 20878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,56.5 + pos: 23.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21073 + color: '#0000FFFF' + - uid: 20879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,19.5 + pos: -8.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21074 + - uid: 20880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,57.5 + rot: 1.5707963267948966 rad + pos: 76.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21075 + color: '#0000FFFF' + - uid: 20881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,57.5 + rot: 1.5707963267948966 rad + pos: 75.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21076 + color: '#0000FFFF' + - uid: 20882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,57.5 + rot: 1.5707963267948966 rad + pos: 77.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21077 + color: '#0000FFFF' + - uid: 20883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,47.5 + rot: 1.5707963267948966 rad + pos: 86.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21078 + - uid: 20884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,46.5 + rot: 1.5707963267948966 rad + pos: 87.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21079 + - uid: 20885 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,45.5 + rot: 1.5707963267948966 rad + pos: 88.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21080 + - uid: 20886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,44.5 + rot: 1.5707963267948966 rad + pos: 80.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21081 + - uid: 20887 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,47.5 + pos: 68.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21082 + color: '#0000FFFF' + - uid: 20888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,47.5 + rot: 1.5707963267948966 rad + pos: 69.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21083 + color: '#0000FFFF' + - uid: 20889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,47.5 + rot: 1.5707963267948966 rad + pos: 70.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21084 + color: '#0000FFFF' + - uid: 20890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,50.5 + rot: 1.5707963267948966 rad + pos: 71.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21085 + - uid: 20891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,49.5 + rot: 1.5707963267948966 rad + pos: 4.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21086 + color: '#FF0000FF' + - uid: 20892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,48.5 + rot: 1.5707963267948966 rad + pos: 5.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21087 + color: '#FF0000FF' + - uid: 20893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,49.5 + pos: 2.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21088 + color: '#FF0000FF' + - uid: 20894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,49.5 + pos: 3.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 72.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21089 + - uid: 20896 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,49.5 + pos: 85.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21090 + - uid: 20897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 63.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 20898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,49.5 + pos: 78.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21091 + - uid: 20899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,49.5 + pos: 2.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21092 + - uid: 20900 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,48.5 + pos: -4.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21093 + color: '#FF0000FF' + - uid: 20901 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,49.5 + pos: 26.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21094 + color: '#FF0000FF' + - uid: 20902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,50.5 + pos: 27.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21095 + color: '#0000FFFF' + - uid: 20903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,51.5 + pos: 27.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21096 + - uid: 20904 components: - type: Transform - pos: -0.5,46.5 + rot: 1.5707963267948966 rad + pos: 3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21097 + color: '#0000FFFF' + - uid: 20905 components: - type: Transform - pos: -0.5,45.5 + rot: -1.5707963267948966 rad + pos: -4.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21098 + color: '#0000FFFF' + - uid: 20906 components: - type: Transform - pos: -0.5,44.5 + rot: 1.5707963267948966 rad + pos: 0.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21099 + color: '#0000FFFF' + - uid: 20907 components: - type: Transform - pos: -0.5,43.5 + rot: -1.5707963267948966 rad + pos: -3.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21100 + color: '#0000FFFF' + - uid: 20908 components: - type: Transform - pos: -0.5,42.5 + rot: 3.141592653589793 rad + pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21101 + color: '#FF0000FF' + - uid: 20909 components: - type: Transform - pos: -0.5,41.5 + rot: 1.5707963267948966 rad + pos: -1.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21102 + color: '#0000FFFF' + - uid: 20910 components: - type: Transform - pos: -2.5,40.5 + rot: 1.5707963267948966 rad + pos: -2.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21103 + - uid: 20911 components: - type: Transform - pos: -2.5,41.5 + rot: 1.5707963267948966 rad + pos: -0.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21104 + - uid: 20912 components: - type: Transform - pos: -2.5,42.5 + rot: 1.5707963267948966 rad + pos: 1.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21105 + - uid: 20913 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,50.5 + rot: -1.5707963267948966 rad + pos: -13.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21106 + color: '#0000FFFF' + - uid: 20914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,51.5 + rot: 3.141592653589793 rad + pos: -14.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21107 + color: '#0000FFFF' + - uid: 20915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,51.5 + rot: 3.141592653589793 rad + pos: 57.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21108 + color: '#0000FFFF' + - uid: 20916 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,51.5 + pos: 66.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21109 + color: '#0000FFFF' + - uid: 20917 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,50.5 + pos: 26.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21110 + color: '#FF0000FF' + - uid: 20918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,51.5 + rot: 1.5707963267948966 rad + pos: -22.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21111 + - uid: 20919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,52.5 + rot: 1.5707963267948966 rad + pos: 77.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21112 + - uid: 20920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,52.5 + pos: 67.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21113 + color: '#0000FFFF' + - uid: 20921 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,53.5 + pos: 67.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21114 + color: '#0000FFFF' + - uid: 20922 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,54.5 + pos: 67.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21115 + color: '#0000FFFF' + - uid: 20923 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,54.5 + pos: 67.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21116 + - uid: 20924 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,46.5 + pos: 67.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21117 + color: '#0000FFFF' + - uid: 20925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,45.5 + rot: 3.141592653589793 rad + pos: 67.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21118 + color: '#0000FFFF' + - uid: 20926 components: - type: Transform - pos: 6.5,48.5 + rot: 3.141592653589793 rad + pos: 67.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21119 + - uid: 20927 components: - type: Transform - pos: 6.5,47.5 + rot: 1.5707963267948966 rad + pos: 78.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21120 + - uid: 20928 components: - type: Transform - pos: 6.5,45.5 + rot: 1.5707963267948966 rad + pos: -25.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21121 + - uid: 20929 components: - type: Transform - pos: 6.5,46.5 + rot: 1.5707963267948966 rad + pos: 60.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21122 + - uid: 20930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,49.5 + pos: -28.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21123 + - uid: 20931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,47.5 + rot: 1.5707963267948966 rad + pos: -27.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21124 + color: '#0000FFFF' + - uid: 20932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,47.5 + pos: -28.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21125 + color: '#0000FFFF' + - uid: 20933 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,47.5 + pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21126 + color: '#FF0000FF' + - uid: 20934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,48.5 + rot: 3.141592653589793 rad + pos: 0.5,-56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21127 + color: '#FF0000FF' + - uid: 20935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,48.5 + rot: 1.5707963267948966 rad + pos: -21.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21128 + - uid: 20936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,55.5 + rot: 1.5707963267948966 rad + pos: -24.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21129 + - uid: 20937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,56.5 + pos: -22.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21130 + color: '#FF0000FF' + - uid: 20938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,58.5 + pos: -20.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21131 + color: '#0000FFFF' + - uid: 20939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,57.5 + pos: 59.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21132 + color: '#0000FFFF' + - uid: 20940 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,55.5 + pos: 67.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21133 + color: '#0000FFFF' + - uid: 20941 components: - type: Transform - pos: -2.5,59.5 + rot: 1.5707963267948966 rad + pos: 62.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21134 + - uid: 20942 components: - type: Transform - pos: -0.5,60.5 + rot: 1.5707963267948966 rad + pos: 65.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21135 + color: '#0000FFFF' + - uid: 20943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,61.5 + rot: 3.141592653589793 rad + pos: 67.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21136 + color: '#0000FFFF' + - uid: 20944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,60.5 + rot: 1.5707963267948966 rad + pos: 63.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21137 + - uid: 20945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,60.5 + rot: 3.141592653589793 rad + pos: 67.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21138 + - uid: 20946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,60.5 + rot: 3.141592653589793 rad + pos: 67.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21139 + - uid: 20947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,60.5 + rot: 1.5707963267948966 rad + pos: 64.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21140 + - uid: 20948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,61.5 + rot: 1.5707963267948966 rad + pos: 66.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21141 + color: '#0000FFFF' + - uid: 20949 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,62.5 + pos: 68.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21142 + color: '#0000FFFF' + - uid: 20950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,62.5 + pos: 69.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21143 + color: '#0000FFFF' + - uid: 20951 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,62.5 + pos: 74.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21144 + color: '#0000FFFF' + - uid: 20952 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,61.5 + pos: 71.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21145 + - uid: 20953 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,61.5 + pos: 73.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21146 + - uid: 20954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,61.5 + rot: 1.5707963267948966 rad + pos: 83.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21147 + color: '#0000FFFF' + - uid: 20955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,60.5 + rot: 1.5707963267948966 rad + pos: 81.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21148 + - uid: 20956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,63.5 + rot: 1.5707963267948966 rad + pos: 84.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21149 + - uid: 20957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,64.5 + rot: 1.5707963267948966 rad + pos: 73.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21150 + - uid: 20958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,65.5 + rot: 1.5707963267948966 rad + pos: 61.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21151 + - uid: 20959 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,66.5 + rot: 1.5707963267948966 rad + pos: 60.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21152 + - uid: 20960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,67.5 + pos: 59.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21153 + - uid: 20961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,63.5 + pos: 59.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21154 + color: '#0000FFFF' + - uid: 20962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,64.5 + pos: 59.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21155 + color: '#0000FFFF' + - uid: 20963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,65.5 + rot: 1.5707963267948966 rad + pos: 64.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21156 + color: '#0000FFFF' + - uid: 20964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,66.5 + rot: 1.5707963267948966 rad + pos: 62.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21157 + color: '#0000FFFF' + - uid: 20965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,67.5 + rot: 1.5707963267948966 rad + pos: 63.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21158 + color: '#0000FFFF' + - uid: 20966 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,69.5 + pos: 65.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21159 + - uid: 20967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,69.5 + rot: -1.5707963267948966 rad + pos: 58.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21160 + - uid: 20968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,69.5 + rot: 3.141592653589793 rad + pos: 57.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21161 + - uid: 20969 components: - type: Transform - pos: -8.5,70.5 + rot: -1.5707963267948966 rad + pos: 64.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21162 + color: '#FF0000FF' + - uid: 20970 components: - type: Transform - pos: -8.5,71.5 + rot: -1.5707963267948966 rad + pos: 62.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21163 + color: '#FF0000FF' + - uid: 20971 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,68.5 + pos: 66.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21164 + color: '#FF0000FF' + - uid: 20972 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,68.5 + pos: 67.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21165 + color: '#FF0000FF' + - uid: 20973 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,68.5 + pos: 68.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21166 + color: '#FF0000FF' + - uid: 20974 components: - type: Transform - pos: -9.5,69.5 + rot: 3.141592653589793 rad + pos: 69.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21167 + color: '#FF0000FF' + - uid: 20975 components: - type: Transform - pos: -9.5,70.5 + rot: 3.141592653589793 rad + pos: 69.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21168 + color: '#FF0000FF' + - uid: 20976 components: - type: Transform - pos: -9.5,71.5 + rot: 3.141592653589793 rad + pos: 69.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21169 + color: '#FF0000FF' + - uid: 20977 components: - type: Transform - pos: -9.5,72.5 + rot: 3.141592653589793 rad + pos: 69.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21170 + color: '#FF0000FF' + - uid: 20978 components: - type: Transform - pos: -9.5,73.5 + rot: 3.141592653589793 rad + pos: 69.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21171 + color: '#FF0000FF' + - uid: 20979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,68.5 + pos: 66.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21172 + color: '#FF0000FF' + - uid: 20980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,68.5 + rot: 1.5707963267948966 rad + pos: 70.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21173 + color: '#FF0000FF' + - uid: 20981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,68.5 + rot: 1.5707963267948966 rad + pos: 71.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21174 + color: '#FF0000FF' + - uid: 20982 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,55.5 + pos: 72.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21175 + color: '#FF0000FF' + - uid: 20983 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,55.5 + pos: 73.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21176 + color: '#FF0000FF' + - uid: 20984 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,56.5 + pos: 75.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21177 + color: '#FF0000FF' + - uid: 20985 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,56.5 + pos: 76.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21178 + color: '#FF0000FF' + - uid: 20986 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,56.5 + pos: 77.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21179 + color: '#FF0000FF' + - uid: 20987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,54.5 + rot: 3.141592653589793 rad + pos: 78.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21180 + color: '#FF0000FF' + - uid: 20988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,54.5 + rot: 1.5707963267948966 rad + pos: 79.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21181 + color: '#FF0000FF' + - uid: 20989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,54.5 + rot: 1.5707963267948966 rad + pos: 80.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21182 + color: '#FF0000FF' + - uid: 20990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,54.5 + rot: 1.5707963267948966 rad + pos: 81.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21183 + color: '#FF0000FF' + - uid: 20991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,54.5 + rot: 1.5707963267948966 rad + pos: 82.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21184 + color: '#FF0000FF' + - uid: 20992 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,55.5 + pos: 83.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21185 + color: '#FF0000FF' + - uid: 20993 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,56.5 + pos: 85.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21186 + color: '#FF0000FF' + - uid: 20994 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,56.5 + pos: 86.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21187 + color: '#FF0000FF' + - uid: 20995 components: - type: Transform - pos: -18.5,54.5 + rot: 1.5707963267948966 rad + pos: 87.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21188 + color: '#FF0000FF' + - uid: 20996 components: - type: Transform - pos: -18.5,53.5 + pos: 69.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21189 + color: '#FF0000FF' + - uid: 20997 components: - type: Transform - pos: -18.5,52.5 + pos: 69.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21190 + color: '#FF0000FF' + - uid: 20998 components: - type: Transform - pos: -18.5,51.5 + pos: 69.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21191 + color: '#FF0000FF' + - uid: 20999 components: - type: Transform - pos: -18.5,50.5 + pos: 69.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21192 + color: '#FF0000FF' + - uid: 21000 components: - type: Transform - pos: -18.5,49.5 + pos: 69.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21193 + color: '#FF0000FF' + - uid: 21001 components: - type: Transform - pos: -18.5,48.5 + rot: -1.5707963267948966 rad + pos: 70.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21194 + color: '#FF0000FF' + - uid: 21002 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,56.5 + pos: 71.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21195 + color: '#FF0000FF' + - uid: 21003 components: - type: Transform - pos: -2.5,38.5 + rot: -1.5707963267948966 rad + pos: 72.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21196 + color: '#FF0000FF' + - uid: 21004 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,37.5 + pos: 74.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21197 + color: '#FF0000FF' + - uid: 21005 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,37.5 + pos: 75.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21198 + color: '#FF0000FF' + - uid: 21006 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,37.5 + pos: 76.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21199 + color: '#FF0000FF' + - uid: 21007 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,37.5 + pos: 77.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21200 + color: '#FF0000FF' + - uid: 21008 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,37.5 + pos: 78.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21201 + color: '#FF0000FF' + - uid: 21009 components: - type: Transform - pos: -0.5,38.5 + rot: 3.141592653589793 rad + pos: 79.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21202 + color: '#FF0000FF' + - uid: 21010 components: - type: Transform - pos: -0.5,37.5 + rot: 1.5707963267948966 rad + pos: 68.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21203 + color: '#FF0000FF' + - uid: 21011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,39.5 + rot: 1.5707963267948966 rad + pos: 67.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21204 + color: '#FF0000FF' + - uid: 21012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,39.5 + pos: 66.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21205 + color: '#FF0000FF' + - uid: 21013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,39.5 + pos: 66.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21206 + color: '#FF0000FF' + - uid: 21014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,39.5 + pos: 66.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21207 + color: '#FF0000FF' + - uid: 21015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,56.5 + pos: 66.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21208 + color: '#FF0000FF' + - uid: 21016 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,57.5 + pos: 65.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21209 + color: '#FF0000FF' + - uid: 21017 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,57.5 + pos: 64.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21210 + color: '#FF0000FF' + - uid: 21018 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,57.5 + pos: 63.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21211 + color: '#FF0000FF' + - uid: 21019 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,56.5 + pos: 62.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21212 + color: '#FF0000FF' + - uid: 21020 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,56.5 + pos: 61.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21213 + color: '#FF0000FF' + - uid: 21021 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,56.5 + pos: 60.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21214 + color: '#FF0000FF' + - uid: 21022 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,57.5 + pos: 59.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21215 + color: '#FF0000FF' + - uid: 21023 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,57.5 + pos: 58.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21216 + color: '#FF0000FF' + - uid: 21024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,56.5 + rot: -1.5707963267948966 rad + pos: 57.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21217 + color: '#FF0000FF' + - uid: 21025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,56.5 + pos: 56.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21218 + color: '#FF0000FF' + - uid: 21026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,56.5 + pos: 56.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21219 + color: '#FF0000FF' + - uid: 21027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,56.5 + pos: 56.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21220 + color: '#FF0000FF' + - uid: 21028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,56.5 + pos: 56.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21221 + color: '#FF0000FF' + - uid: 21029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,56.5 + pos: 56.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21222 + color: '#FF0000FF' + - uid: 21030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,56.5 + pos: 17.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21223 + color: '#FF0000FF' + - uid: 21031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,56.5 + pos: 17.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21224 + color: '#FF0000FF' + - uid: 21032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,56.5 + pos: 17.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21225 + color: '#FF0000FF' + - uid: 21033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,58.5 + pos: 17.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21226 + color: '#FF0000FF' + - uid: 21034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,58.5 + pos: 17.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21227 + color: '#FF0000FF' + - uid: 21035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,58.5 + pos: 17.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21228 + color: '#FF0000FF' + - uid: 21036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-0.5 + rot: -1.5707963267948966 rad + pos: 26.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21229 + color: '#FF0000FF' + - uid: 21037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 + rot: -1.5707963267948966 rad + pos: 25.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21230 + color: '#FF0000FF' + - uid: 21038 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,58.5 + pos: 26.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21231 + - uid: 21039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,57.5 + rot: -1.5707963267948966 rad + pos: 25.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21232 + - uid: 21040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,56.5 + rot: 1.5707963267948966 rad + pos: -23.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21233 + color: '#FF0000FF' + - uid: 21041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,55.5 + pos: -24.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21234 + color: '#FF0000FF' + - uid: 21042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,54.5 + pos: -24.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21235 + color: '#FF0000FF' + - uid: 21043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,54.5 + pos: -24.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21236 + color: '#FF0000FF' + - uid: 21044 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,55.5 + pos: -24.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21237 + color: '#FF0000FF' + - uid: 21045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,57.5 + pos: -8.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21238 + color: '#FF0000FF' + - uid: 21046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,58.5 + pos: -8.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21239 + color: '#FF0000FF' + - uid: 21047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,59.5 + rot: 1.5707963267948966 rad + pos: -8.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21240 + color: '#0000FFFF' + - uid: 21048 components: - type: Transform - pos: 12.5,60.5 + rot: 1.5707963267948966 rad + pos: -7.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21241 + color: '#0000FFFF' + - uid: 21049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,60.5 + rot: 1.5707963267948966 rad + pos: -6.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21242 + - uid: 21050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,62.5 + rot: 1.5707963267948966 rad + pos: -5.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21243 + color: '#0000FFFF' + - uid: 21051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,62.5 + rot: 1.5707963267948966 rad + pos: -4.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21244 + color: '#0000FFFF' + - uid: 21052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,61.5 + pos: -2.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21245 + color: '#0000FFFF' + - uid: 21053 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,60.5 + pos: -1.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21246 + - uid: 21054 components: - type: Transform - pos: 9.5,61.5 + rot: 1.5707963267948966 rad + pos: 0.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21247 + - uid: 21055 components: - type: Transform - pos: 9.5,62.5 + pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21248 + - uid: 21056 components: - type: Transform - pos: 13.5,62.5 + pos: 1.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21249 + - uid: 21057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,58.5 + rot: 1.5707963267948966 rad + pos: 2.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21250 + - uid: 21058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,58.5 + pos: -9.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21251 + - uid: 21059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,58.5 + rot: 1.5707963267948966 rad + pos: 4.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21252 + - uid: 21060 components: - type: Transform - pos: 19.5,59.5 + rot: 1.5707963267948966 rad + pos: 5.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21253 + - uid: 21061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,56.5 + pos: -9.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21254 + color: '#0000FFFF' + - uid: 21062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,56.5 + pos: -9.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21255 + color: '#0000FFFF' + - uid: 21063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,57.5 + rot: 3.141592653589793 rad + pos: -10.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21256 + - uid: 21064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,57.5 + rot: 3.141592653589793 rad + pos: -10.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21257 + - uid: 21065 components: - type: Transform - pos: 18.5,57.5 + rot: 3.141592653589793 rad + pos: -10.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21258 + color: '#0000FFFF' + - uid: 21066 components: - type: Transform - pos: 18.5,58.5 + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21259 + color: '#FF0000FF' + - uid: 21067 components: - type: Transform - pos: 18.5,59.5 + rot: 3.141592653589793 rad + pos: -8.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21260 + color: '#FF0000FF' + - uid: 21068 components: - type: Transform - pos: 11.5,59.5 + rot: 1.5707963267948966 rad + pos: -8.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21261 + - uid: 21069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,57.5 + rot: 1.5707963267948966 rad + pos: -7.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21262 + - uid: 21070 components: - type: Transform - pos: 23.5,55.5 + rot: 1.5707963267948966 rad + pos: -6.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21263 + color: '#0000FFFF' + - uid: 21071 components: - type: Transform - pos: 23.5,54.5 + pos: -5.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21264 + color: '#0000FFFF' + - uid: 21072 components: - type: Transform - pos: 24.5,55.5 + pos: -5.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21265 + - uid: 21073 components: - type: Transform - pos: 24.5,54.5 + pos: -5.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21266 + - uid: 21074 components: - type: Transform - pos: 24.5,56.5 + rot: 1.5707963267948966 rad + pos: -3.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21267 + color: '#FF0000FF' + - uid: 21075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,56.5 + rot: 1.5707963267948966 rad + pos: -2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21268 + color: '#FF0000FF' + - uid: 21076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,56.5 + rot: 1.5707963267948966 rad + pos: -1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21269 + color: '#FF0000FF' + - uid: 21077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,57.5 + rot: 1.5707963267948966 rad + pos: -0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21270 + color: '#FF0000FF' + - uid: 21078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,49.5 + rot: 1.5707963267948966 rad + pos: 0.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21271 + color: '#FF0000FF' + - uid: 21079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,49.5 + rot: 1.5707963267948966 rad + pos: 1.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21272 + color: '#FF0000FF' + - uid: 21080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,48.5 + rot: 1.5707963267948966 rad + pos: 2.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21273 + color: '#FF0000FF' + - uid: 21081 components: - type: Transform - pos: -26.5,47.5 + pos: -5.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21274 + color: '#0000FFFF' + - uid: 21082 components: - type: Transform - pos: -26.5,48.5 + pos: -5.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21275 + color: '#0000FFFF' + - uid: 21083 components: - type: Transform - pos: -26.5,49.5 + rot: -1.5707963267948966 rad + pos: -4.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21276 + color: '#0000FFFF' + - uid: 21084 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,50.5 + pos: -3.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21277 + color: '#0000FFFF' + - uid: 21085 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,50.5 + pos: -2.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21278 + color: '#0000FFFF' + - uid: 21086 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,46.5 + pos: -1.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21279 + color: '#0000FFFF' + - uid: 21087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,48.5 + rot: -1.5707963267948966 rad + pos: 4.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21280 + - uid: 21088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,48.5 + rot: -1.5707963267948966 rad + pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21281 + color: '#FF0000FF' + - uid: 21089 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,49.5 + rot: -1.5707963267948966 rad + pos: 7.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21282 + color: '#FF0000FF' + - uid: 21090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,1.5 + rot: -1.5707963267948966 rad + pos: 8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21283 + color: '#FF0000FF' + - uid: 21091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,1.5 + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21284 + color: '#FF0000FF' + - uid: 21092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,1.5 + rot: 3.141592653589793 rad + pos: -4.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21285 + color: '#FF0000FF' + - uid: 21093 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-0.5 + pos: -3.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21286 + - uid: 21094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-0.5 + pos: -2.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21287 + - uid: 21095 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,-0.5 + pos: -1.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21288 + - uid: 21096 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-0.5 + pos: -0.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21289 + - uid: 21097 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,1.5 + pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21290 + color: '#FF0000FF' + - uid: 21098 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,1.5 + pos: 1.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21291 + color: '#FF0000FF' + - uid: 21099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,1.5 + rot: 1.5707963267948966 rad + pos: 2.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21292 + color: '#FF0000FF' + - uid: 21100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,1.5 + pos: -14.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21293 + color: '#FF0000FF' + - uid: 21101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,0.5 + rot: 3.141592653589793 rad + pos: -15.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21294 + - uid: 21102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,0.5 + rot: 3.141592653589793 rad + pos: -15.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21295 + - uid: 21103 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-2.5 + pos: -15.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21296 + color: '#FF0000FF' + - uid: 21104 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-1.5 + pos: -15.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21297 + color: '#FF0000FF' + - uid: 21105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 + rot: -1.5707963267948966 rad + pos: -15.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21298 + - uid: 21106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: -13.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21299 + - uid: 21107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 + pos: -13.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21300 + - uid: 21108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-0.5 + pos: -13.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21301 + - uid: 21109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 + pos: -13.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21302 + color: '#FF0000FF' + - uid: 21110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,1.5 + rot: -1.5707963267948966 rad + pos: -17.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21303 + - uid: 21111 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,0.5 + pos: -18.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21304 + color: '#0000FFFF' + - uid: 21112 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,0.5 + pos: -19.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21305 + color: '#0000FFFF' + - uid: 21113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: -27.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21306 + - uid: 21114 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,2.5 + pos: -20.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21307 + color: '#FF0000FF' + - uid: 21115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,2.5 + pos: -22.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21308 + color: '#FF0000FF' + - uid: 21116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,2.5 + pos: -22.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21309 + color: '#FF0000FF' + - uid: 21117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,0.5 + pos: -21.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21310 + - uid: 21118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-7.5 + pos: -21.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21311 + - uid: 21119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 + rot: 3.141592653589793 rad + pos: -23.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21312 + - uid: 21120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 + rot: 3.141592653589793 rad + pos: -23.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21313 + - uid: 21121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 + rot: 3.141592653589793 rad + pos: -23.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21314 + - uid: 21122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 + pos: -22.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21315 + color: '#FF0000FF' + - uid: 21123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 + pos: -27.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21316 + color: '#FF0000FF' + - uid: 21124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,0.5 + pos: -27.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21317 + - uid: 21125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 + rot: 1.5707963267948966 rad + pos: -28.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21318 + - uid: 21126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 + pos: -10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21319 + color: '#0000FFFF' + - uid: 21127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 + pos: -10.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21320 + color: '#0000FFFF' + - uid: 21128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,0.5 + pos: -10.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21321 + color: '#0000FFFF' + - uid: 21129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 + pos: -10.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21322 + - uid: 21130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 + pos: -10.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21323 + - uid: 21131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21132 + components: + - type: Transform + pos: -10.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21324 + - uid: 21133 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,0.5 + pos: -35.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21325 + - uid: 21134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,0.5 + pos: -55.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21135 + components: + - type: Transform + pos: -36.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21326 + - uid: 21136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,0.5 + pos: -36.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21327 + - uid: 21137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-0.5 + rot: -1.5707963267948966 rad + pos: -51.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21328 + color: '#FF0000FF' + - uid: 21138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,0.5 + rot: 1.5707963267948966 rad + pos: -52.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21329 + - uid: 21139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-1.5 + rot: -1.5707963267948966 rad + pos: -51.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21330 + - uid: 21140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-2.5 + rot: -1.5707963267948966 rad + pos: -45.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21331 + - uid: 21141 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-1.5 + pos: -47.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21332 + - uid: 21142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 + rot: -1.5707963267948966 rad + pos: -46.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21333 + - uid: 21143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: -43.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21334 + - uid: 21144 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,0.5 + rot: -1.5707963267948966 rad + pos: -44.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21335 + - uid: 21145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 + rot: -1.5707963267948966 rad + pos: -42.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21336 + - uid: 21146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,0.5 + pos: -53.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21337 + color: '#0000FFFF' + - uid: 21147 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,1.5 + pos: -45.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21338 + - uid: 21148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21339 + - uid: 21149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,1.5 + rot: -1.5707963267948966 rad + pos: -26.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21340 + - uid: 21150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,1.5 + rot: -1.5707963267948966 rad + pos: -27.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21341 + - uid: 21151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,1.5 + rot: -1.5707963267948966 rad + pos: -28.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21342 + - uid: 21152 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + pos: -27.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21343 + - uid: 21153 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-0.5 + pos: -26.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21344 + - uid: 21154 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-0.5 + pos: -29.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21345 + - uid: 21155 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-0.5 + pos: -30.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21346 + color: '#0000FFFF' + - uid: 21156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,1.5 + rot: 1.5707963267948966 rad + pos: -30.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21347 + - uid: 21157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,1.5 + rot: 1.5707963267948966 rad + pos: -31.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21348 + - uid: 21158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,1.5 + rot: 1.5707963267948966 rad + pos: -31.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21349 + color: '#0000FFFF' + - uid: 21159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,1.5 + pos: -32.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21350 + - uid: 21160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,0.5 + rot: -1.5707963267948966 rad + pos: -32.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21351 + - uid: 21161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 + rot: -1.5707963267948966 rad + pos: -33.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21352 + color: '#FF0000FF' + - uid: 21162 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,1.5 + pos: -34.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21353 + - uid: 21163 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,2.5 + pos: -34.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21354 + color: '#FF0000FF' + - uid: 21164 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-1.5 + pos: -34.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21355 + color: '#FF0000FF' + - uid: 21165 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-1.5 + pos: -32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21356 + color: '#0000FFFF' + - uid: 21166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-8.5 + rot: 3.141592653589793 rad + pos: -32.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21357 + - uid: 21167 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,0.5 + pos: -34.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21358 + - uid: 21168 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,1.5 + pos: -34.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21359 + - uid: 21169 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,0.5 + pos: -32.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21360 + - uid: 21170 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-0.5 + pos: -34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21361 + - uid: 21172 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-1.5 + pos: -34.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21362 + - uid: 21173 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-1.5 + pos: -32.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21363 + - uid: 21174 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,2.5 + pos: -32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21364 + - uid: 21175 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,2.5 + pos: -34.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21365 + - uid: 21176 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-7.5 + pos: -32.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21366 + - uid: 21177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-6.5 + rot: 1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21367 + - uid: 21179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-5.5 + rot: 1.5707963267948966 rad + pos: -34.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21368 + - uid: 21180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21181 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-6.5 + pos: -38.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21369 + - uid: 21182 components: - type: Transform - pos: 9.5,-3.5 + rot: 1.5707963267948966 rad + pos: -45.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21370 + - uid: 21183 components: - type: Transform - pos: 12.5,-4.5 + rot: 1.5707963267948966 rad + pos: -44.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21371 + color: '#FF0000FF' + - uid: 21184 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-9.5 + pos: -42.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21372 + - uid: 21185 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-9.5 + pos: -41.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21373 + - uid: 21186 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,-9.5 + pos: -40.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21374 + - uid: 21187 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-9.5 + pos: -39.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21375 + - uid: 21188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-9.5 + pos: -46.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21376 + - uid: 21189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 + pos: -46.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21377 + color: '#FF0000FF' + - uid: 21190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 + rot: 3.141592653589793 rad + pos: -34.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21378 + color: '#FF0000FF' + - uid: 21191 components: - type: Transform - pos: 17.5,-9.5 + rot: 3.141592653589793 rad + pos: -29.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21379 + - uid: 21192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 + rot: 3.141592653589793 rad + pos: -29.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21380 + - uid: 21193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-10.5 + rot: -1.5707963267948966 rad + pos: 58.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21381 + - uid: 21194 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-10.5 + pos: 56.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21382 + - uid: 21195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-11.5 + rot: -1.5707963267948966 rad + pos: 59.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21383 + - uid: 21196 components: - type: Transform - pos: -8.5,-5.5 + rot: 3.141592653589793 rad + pos: 60.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21384 + - uid: 21197 components: - type: Transform - pos: -3.5,-7.5 + rot: -1.5707963267948966 rad + pos: 59.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21385 + color: '#0000FFFF' + - uid: 21198 components: - type: Transform - pos: -4.5,-8.5 + rot: 3.141592653589793 rad + pos: -38.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21386 + - uid: 21199 components: - type: Transform - pos: -4.5,-9.5 + rot: 3.141592653589793 rad + pos: -43.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21387 + - uid: 21200 components: - type: Transform - pos: -8.5,-4.5 + rot: 3.141592653589793 rad + pos: -22.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21388 + - uid: 21201 components: - type: Transform - pos: -4.5,-5.5 + rot: 3.141592653589793 rad + pos: -22.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21389 + color: '#0000FFFF' + - uid: 21202 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-3.5 + pos: -47.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21390 + - uid: 21203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + pos: -43.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21391 + - uid: 21204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 + pos: -43.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21392 + - uid: 21205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-10.5 + pos: -43.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21393 + - uid: 21206 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-11.5 + pos: -24.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21394 + - uid: 21207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 + pos: -43.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21395 + color: '#0000FFFF' + - uid: 21208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 + pos: -26.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21396 + - uid: 21209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-10.5 + pos: -41.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21397 + - uid: 21210 components: - type: Transform - pos: -15.5,3.5 + pos: -41.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21398 + - uid: 21211 components: - type: Transform - pos: -15.5,4.5 + pos: -41.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21399 + - uid: 21212 components: - type: Transform - pos: -15.5,5.5 + pos: -41.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21400 + - uid: 21213 components: - type: Transform - pos: -15.5,6.5 + pos: -41.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21401 + - uid: 21214 components: - type: Transform - pos: -15.5,7.5 + pos: -41.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21402 + - uid: 21215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,8.5 + pos: -41.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21403 + - uid: 21216 components: - type: Transform - pos: -15.5,9.5 + pos: -38.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21404 + color: '#0000FFFF' + - uid: 21217 components: - type: Transform - pos: -15.5,10.5 + pos: -38.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21405 + color: '#0000FFFF' + - uid: 21218 components: - type: Transform - pos: -15.5,-3.5 + pos: -38.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21406 + color: '#0000FFFF' + - uid: 21219 components: - type: Transform - pos: -15.5,-4.5 + pos: -38.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21407 + color: '#0000FFFF' + - uid: 21220 components: - type: Transform - pos: -15.5,-5.5 + pos: -38.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21408 + color: '#0000FFFF' + - uid: 21221 components: - type: Transform - pos: -15.5,-6.5 + rot: 1.5707963267948966 rad + pos: -37.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21409 + color: '#0000FFFF' + - uid: 21222 components: - type: Transform - pos: -15.5,-7.5 + rot: 1.5707963267948966 rad + pos: -36.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21410 + color: '#0000FFFF' + - uid: 21223 components: - type: Transform - pos: -15.5,-8.5 + rot: 1.5707963267948966 rad + pos: -35.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21411 + color: '#0000FFFF' + - uid: 21224 components: - type: Transform - pos: -15.5,-9.5 + rot: -1.5707963267948966 rad + pos: -32.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21412 + color: '#0000FFFF' + - uid: 21225 components: - type: Transform - pos: -15.5,-10.5 + rot: -1.5707963267948966 rad + pos: -31.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21413 + color: '#0000FFFF' + - uid: 21226 components: - type: Transform - pos: -15.5,-11.5 + rot: -1.5707963267948966 rad + pos: -35.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21414 + - uid: 21227 components: - type: Transform - pos: -15.5,-13.5 + rot: -1.5707963267948966 rad + pos: -40.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21415 + - uid: 21228 components: - type: Transform - pos: -15.5,-14.5 + rot: -1.5707963267948966 rad + pos: -39.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21416 + - uid: 21229 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-15.5 + pos: -38.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21417 + - uid: 21230 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + pos: -37.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21418 + - uid: 21231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21419 + - uid: 21232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 + pos: -32.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21420 + color: '#0000FFFF' + - uid: 21233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21421 + - uid: 21234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21422 + - uid: 21235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21423 + - uid: 21236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21424 + - uid: 21237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21425 + - uid: 21238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21426 + - uid: 21239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-15.5 + rot: 3.141592653589793 rad + pos: -36.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21427 + - uid: 21240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-15.5 + rot: 3.141592653589793 rad + pos: -48.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21428 + - uid: 21241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-15.5 + rot: 3.141592653589793 rad + pos: -48.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21429 + - uid: 21242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-15.5 + rot: 3.141592653589793 rad + pos: -48.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21430 + - uid: 21243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-15.5 + pos: -35.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21431 + - uid: 21244 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-15.5 + pos: -34.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21432 + - uid: 21245 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-15.5 + pos: -33.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21433 + - uid: 21246 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-15.5 + pos: -32.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21434 + - uid: 21247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-15.5 + rot: 1.5707963267948966 rad + pos: -21.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21435 + - uid: 21248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-15.5 + pos: -21.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21436 + color: '#0000FFFF' + - uid: 21249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-15.5 + pos: -21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21437 + color: '#0000FFFF' + - uid: 21250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-15.5 + pos: -21.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21438 + color: '#0000FFFF' + - uid: 21251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-15.5 + pos: -21.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21439 + color: '#0000FFFF' + - uid: 21252 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-15.5 + pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21440 + color: '#0000FFFF' + - uid: 21253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 + rot: 3.141592653589793 rad + pos: -20.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21441 + - uid: 21254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-15.5 + rot: 1.5707963267948966 rad + pos: -36.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21442 + color: '#0000FFFF' + - uid: 21255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-15.5 + rot: 1.5707963267948966 rad + pos: -37.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21443 + color: '#0000FFFF' + - uid: 21256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-15.5 + pos: -34.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21444 + color: '#0000FFFF' + - uid: 21257 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-15.5 + pos: -33.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21445 + color: '#0000FFFF' + - uid: 21258 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-14.5 + rot: -1.5707963267948966 rad + pos: -32.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21446 + color: '#0000FFFF' + - uid: 21259 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-13.5 + rot: -1.5707963267948966 rad + pos: -31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21447 + color: '#0000FFFF' + - uid: 21260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-12.5 + rot: 1.5707963267948966 rad + pos: -29.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21448 + color: '#0000FFFF' + - uid: 21261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-11.5 + rot: 1.5707963267948966 rad + pos: -39.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21449 + color: '#0000FFFF' + - uid: 21262 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-10.5 + rot: 1.5707963267948966 rad + pos: -40.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21450 + color: '#0000FFFF' + - uid: 21263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-9.5 + rot: 1.5707963267948966 rad + pos: -41.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21451 + color: '#0000FFFF' + - uid: 21264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-8.5 + rot: 1.5707963267948966 rad + pos: -43.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21452 + color: '#0000FFFF' + - uid: 21265 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-7.5 + pos: -48.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21453 + color: '#0000FFFF' + - uid: 21266 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-6.5 + pos: -46.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21454 + color: '#0000FFFF' + - uid: 21267 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-5.5 + pos: -46.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21455 + color: '#0000FFFF' + - uid: 21268 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-4.5 + pos: -46.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21456 + color: '#0000FFFF' + - uid: 21269 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-3.5 + pos: -46.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21457 + color: '#0000FFFF' + - uid: 21270 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,7.5 + pos: -46.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21458 + color: '#0000FFFF' + - uid: 21271 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,9.5 + pos: -50.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21459 + color: '#0000FFFF' + - uid: 21272 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,10.5 + pos: -50.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21460 + color: '#0000FFFF' + - uid: 21273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + rot: 3.141592653589793 rad + pos: -50.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21461 + - uid: 21274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-17.5 + rot: 3.141592653589793 rad + pos: -50.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21462 + - uid: 21275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-17.5 + rot: 3.141592653589793 rad + pos: -42.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21463 + - uid: 21276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-17.5 + rot: 3.141592653589793 rad + pos: -42.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21464 + - uid: 21277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-17.5 + rot: 3.141592653589793 rad + pos: -42.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21465 + - uid: 21278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 + rot: 3.141592653589793 rad + pos: -42.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21466 + - uid: 21279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-17.5 + rot: 3.141592653589793 rad + pos: -42.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21467 + - uid: 21280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-17.5 + rot: 3.141592653589793 rad + pos: -47.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21468 + - uid: 21281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-15.5 + pos: -55.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21469 + color: '#0000FFFF' + - uid: 21282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-17.5 + pos: -54.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21470 + color: '#FF0000FF' + - uid: 21283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-17.5 + pos: -54.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21471 + color: '#FF0000FF' + - uid: 21284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-17.5 + pos: -54.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21472 + color: '#FF0000FF' + - uid: 21285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-17.5 + pos: -54.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21473 + - uid: 21286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-17.5 + pos: -32.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21474 + - uid: 21287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-17.5 + pos: -32.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21475 + - uid: 21288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-17.5 + pos: -28.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21476 + color: '#FF0000FF' + - uid: 21289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-17.5 + pos: -28.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21477 + color: '#FF0000FF' + - uid: 21290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 + pos: -28.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21478 + color: '#FF0000FF' + - uid: 21291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-7.5 + pos: -20.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21479 + - uid: 21292 components: - type: Transform - pos: 22.5,-7.5 + pos: 22.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21480 + - uid: 21293 components: - type: Transform - pos: 22.5,-6.5 + rot: 1.5707963267948966 rad + pos: 25.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21481 + - uid: 21294 components: - type: Transform - pos: 22.5,-5.5 + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21482 + - uid: 21295 components: - type: Transform - pos: 22.5,-4.5 + rot: 1.5707963267948966 rad + pos: -2.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21483 + - uid: 21296 components: - type: Transform - pos: 22.5,-3.5 + pos: 15.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21484 + color: '#FF0000FF' + - uid: 21297 components: - type: Transform - pos: 22.5,-2.5 + pos: -3.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21485 + color: '#FF0000FF' + - uid: 21298 components: - type: Transform - pos: 22.5,11.5 + rot: -1.5707963267948966 rad + pos: -11.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21486 + color: '#FF0000FF' + - uid: 21299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-7.5 + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21487 + color: '#0000FFFF' + - uid: 21300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-7.5 + rot: 3.141592653589793 rad + pos: 20.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21488 + - uid: 21301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,8.5 + rot: -1.5707963267948966 rad + pos: -14.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21489 + color: '#0000FFFF' + - uid: 21302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,8.5 + pos: -3.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21490 + - uid: 21303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,9.5 + rot: -1.5707963267948966 rad + pos: -8.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21491 + - uid: 21304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,9.5 + pos: -11.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21492 + - uid: 21305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,9.5 + pos: 3.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21493 + color: '#FF0000FF' + - uid: 21306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,10.5 + pos: -5.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21494 + - uid: 21307 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,10.5 + pos: -13.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21495 + - uid: 21308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,11.5 + pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21496 + - uid: 21309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,11.5 + pos: 3.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21497 + - uid: 21310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,11.5 + pos: 3.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21498 + - uid: 21311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,11.5 + rot: 3.141592653589793 rad + pos: 20.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21499 + - uid: 21312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,9.5 + rot: 3.141592653589793 rad + pos: -10.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21500 + color: '#FF0000FF' + - uid: 21313 components: - type: Transform - pos: 16.5,8.5 + rot: -1.5707963267948966 rad + pos: -9.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21501 + - uid: 21314 components: - type: Transform - pos: 16.5,7.5 + pos: -10.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21502 + - uid: 21315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 + rot: 3.141592653589793 rad + pos: -17.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21503 + color: '#0000FFFF' + - uid: 21316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,11.5 + rot: 1.5707963267948966 rad + pos: 16.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21504 + - uid: 21317 components: - type: Transform - pos: 11.5,-14.5 + rot: 1.5707963267948966 rad + pos: -3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21505 + color: '#0000FFFF' + - uid: 21318 components: - type: Transform - pos: 11.5,-13.5 + pos: -8.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21506 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21507 + - uid: 21319 components: - type: Transform - pos: 8.5,-15.5 + rot: 3.141592653589793 rad + pos: -17.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21508 + - uid: 21320 components: - type: Transform - pos: 8.5,-14.5 + rot: 3.141592653589793 rad + pos: -17.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21509 + - uid: 21321 components: - type: Transform - pos: 8.5,-13.5 + pos: 15.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21510 + color: '#FF0000FF' + - uid: 21322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-12.5 + pos: 2.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21511 + - uid: 21323 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,12.5 + pos: -17.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21512 + - uid: 21324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 + pos: -15.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21513 + color: '#DC143CFF' + - uid: 21325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,12.5 + pos: -1.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21514 + color: '#0000FFFF' + - uid: 21326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,12.5 + rot: 3.141592653589793 rad + pos: -17.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21515 + color: '#0000FFFF' + - uid: 21327 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,13.5 + pos: -12.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21516 + - uid: 21328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,13.5 + rot: -1.5707963267948966 rad + pos: -18.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21517 + - uid: 21329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,14.5 + pos: -5.5,62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21518 + - uid: 21330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,14.5 + rot: -1.5707963267948966 rad + pos: 7.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21519 + - uid: 21331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,14.5 + rot: -1.5707963267948966 rad + pos: 6.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21520 + - uid: 21332 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,13.5 + pos: 14.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21521 + - uid: 21333 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,13.5 + pos: 4.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21522 + color: '#DC143CFF' + - uid: 21334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,12.5 + pos: 2.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21523 + color: '#DC143CFF' + - uid: 21335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,12.5 + rot: 1.5707963267948966 rad + pos: -14.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21524 + color: '#DC143CFF' + - uid: 21336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 + rot: 1.5707963267948966 rad + pos: -23.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21525 + color: '#DC143CFF' + - uid: 21337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 + pos: -24.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21526 + color: '#DC143CFF' + - uid: 21338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,12.5 + pos: -24.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21527 + color: '#DC143CFF' + - uid: 21339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 + pos: -25.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21528 + color: '#0000FFFF' + - uid: 21340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,11.5 + pos: -22.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21529 + color: '#0000FFFF' + - uid: 21341 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,11.5 + pos: -23.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21530 + color: '#0000FFFF' + - uid: 21342 components: - type: Transform - pos: -7.5,7.5 + rot: 3.141592653589793 rad + pos: -22.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21531 + color: '#DC143CFF' + - uid: 21343 components: - type: Transform - pos: -7.5,8.5 + rot: 3.141592653589793 rad + pos: -20.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21532 + color: '#DC143CFF' + - uid: 21344 components: - type: Transform - pos: -7.5,9.5 + rot: -1.5707963267948966 rad + pos: -19.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21533 + color: '#DC143CFF' + - uid: 21345 components: - type: Transform - pos: -7.5,10.5 + rot: 3.141592653589793 rad + pos: -20.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21534 + color: '#DC143CFF' + - uid: 21346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + rot: 1.5707963267948966 rad + pos: -20.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21535 + - uid: 21347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 + rot: 1.5707963267948966 rad + pos: -19.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21536 + - uid: 21348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 + rot: 3.141592653589793 rad + pos: -5.5,68.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21537 + - uid: 21349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,2.5 + rot: 1.5707963267948966 rad + pos: -17.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21538 + color: '#DC143CFF' + - uid: 21350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,3.5 + pos: -17.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21539 + - uid: 21351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,4.5 + pos: -17.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21540 + - uid: 21352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,5.5 + pos: -17.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21541 + - uid: 21353 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,1.5 + pos: -17.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21542 + color: '#0000FFFF' + - uid: 21354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,2.5 + pos: -17.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21543 + color: '#0000FFFF' + - uid: 21355 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,3.5 + rot: -1.5707963267948966 rad + pos: -16.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21544 + color: '#0000FFFF' + - uid: 21356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,4.5 + rot: -1.5707963267948966 rad + pos: -16.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21545 + color: '#0000FFFF' + - uid: 21357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,6.5 + rot: -1.5707963267948966 rad + pos: -15.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21546 + color: '#0000FFFF' + - uid: 21358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,7.5 + rot: -1.5707963267948966 rad + pos: -13.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21547 + color: '#0000FFFF' + - uid: 21359 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,8.5 + rot: -1.5707963267948966 rad + pos: -12.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21548 + color: '#0000FFFF' + - uid: 21360 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,9.5 + rot: -1.5707963267948966 rad + pos: -11.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21549 + color: '#0000FFFF' + - uid: 21361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 + pos: -15.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21550 + color: '#DC143CFF' + - uid: 21362 components: - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 11.5,11.5 + pos: -15.5,43.5 parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - - uid: 21551 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 21363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,19.5 + pos: -14.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21552 + - uid: 21364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,19.5 + pos: -14.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21553 + color: '#0000FFFF' + - uid: 21365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,18.5 + pos: -14.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21554 + - uid: 21366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,18.5 + pos: -14.5,44.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21555 + - uid: 21367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,19.5 + pos: -14.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21556 + color: '#0000FFFF' + - uid: 21368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21557 + color: '#DC143CFF' + - uid: 21369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,18.5 + rot: 1.5707963267948966 rad + pos: -11.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21558 + color: '#DC143CFF' + - uid: 21370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,25.5 + rot: -1.5707963267948966 rad + pos: -10.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21559 + - uid: 21371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,25.5 + rot: -1.5707963267948966 rad + pos: -9.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21560 + - uid: 21372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,24.5 + pos: -7.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21561 + color: '#DC143CFF' + - uid: 21373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,24.5 + pos: -7.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21562 + color: '#DC143CFF' + - uid: 21374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,25.5 + pos: -4.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21563 + - uid: 21375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,24.5 + pos: -4.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21564 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21565 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21566 + - uid: 21376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,25.5 + pos: -4.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21567 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21568 + - uid: 21377 components: - type: Transform - pos: 16.5,26.5 + rot: 3.141592653589793 rad + pos: -5.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21569 + color: '#0000FFFF' + - uid: 21378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,25.5 + rot: 3.141592653589793 rad + pos: -7.5,43.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21570 + color: '#DC143CFF' + - uid: 21379 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,25.5 + pos: -6.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21571 + color: '#DC143CFF' + - uid: 21380 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,24.5 + pos: -4.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21572 + color: '#DC143CFF' + - uid: 21381 components: - type: Transform - pos: 15.5,26.5 + pos: -8.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21573 + - uid: 21382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,24.5 + pos: -8.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21574 + color: '#0000FFFF' + - uid: 21383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,30.5 + pos: -8.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21575 + color: '#0000FFFF' + - uid: 21384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,31.5 + pos: -8.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21576 + color: '#0000FFFF' + - uid: 21385 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,26.5 + pos: -9.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21577 + color: '#DC143CFF' + - uid: 21386 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,27.5 + pos: -9.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21578 + color: '#DC143CFF' + - uid: 21387 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,28.5 + pos: -9.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21579 + color: '#DC143CFF' + - uid: 21388 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,29.5 + pos: -9.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21580 + color: '#DC143CFF' + - uid: 21389 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,30.5 + pos: -17.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21581 + - uid: 21390 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,25.5 + pos: -6.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21582 + - uid: 21391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,25.5 + pos: -3.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21583 + - uid: 21392 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,25.5 + pos: -2.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21585 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21586 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21587 + - uid: 21393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,31.5 + pos: -5.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21588 + - uid: 21394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,31.5 + pos: -5.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21589 + - uid: 21395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,31.5 + pos: -5.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21590 + - uid: 21396 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,31.5 + pos: 13.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21591 + color: '#FF0000FF' + - uid: 21397 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,32.5 + pos: 14.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21592 + - uid: 21398 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,32.5 + pos: 20.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21593 + - uid: 21399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,32.5 + rot: 3.141592653589793 rad + pos: 15.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21594 + - uid: 21400 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,32.5 + rot: 3.141592653589793 rad + pos: 15.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21595 + - uid: 21401 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,32.5 + pos: 16.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21596 + - uid: 21402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,32.5 + pos: -5.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21597 + color: '#0000FFFF' + - uid: 21403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,31.5 + pos: -5.5,53.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21598 + - uid: 21404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,32.5 + pos: -5.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21599 + color: '#0000FFFF' + - uid: 21405 components: - type: Transform - pos: 12.5,35.5 + pos: -5.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21600 + - uid: 21406 components: - type: Transform - pos: 12.5,34.5 + rot: 1.5707963267948966 rad + pos: -11.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21601 + - uid: 21407 components: - type: Transform - pos: 12.5,33.5 + rot: 1.5707963267948966 rad + pos: -10.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21602 + - uid: 21408 components: - type: Transform - pos: 12.5,32.5 + rot: 3.141592653589793 rad + pos: -5.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21603 + - uid: 21409 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,32.5 + pos: -9.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21604 + color: '#0000FFFF' + - uid: 21410 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,31.5 + pos: -8.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21605 + - uid: 21411 components: - type: Transform - pos: 13.5,33.5 + rot: 1.5707963267948966 rad + pos: -7.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21606 + color: '#0000FFFF' + - uid: 21412 components: - type: Transform - pos: 13.5,34.5 + rot: 1.5707963267948966 rad + pos: -6.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21607 + color: '#0000FFFF' + - uid: 21413 components: - type: Transform - pos: 13.5,36.5 + rot: 1.5707963267948966 rad + pos: -13.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21608 + color: '#0000FFFF' + - uid: 21414 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,36.5 + pos: 14.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21609 + - uid: 21415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,35.5 + rot: 3.141592653589793 rad + pos: 15.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21610 + - uid: 21416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,36.5 + rot: 3.141592653589793 rad + pos: 17.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21611 + - uid: 21417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,36.5 + rot: 3.141592653589793 rad + pos: 17.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21612 + - uid: 21418 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,37.5 + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21613 + - uid: 21419 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,36.5 + pos: 15.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21614 + - uid: 21420 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,37.5 + pos: 15.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21615 + - uid: 21421 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,38.5 + pos: 17.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21616 + color: '#0000FFFF' + - uid: 21422 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,37.5 + pos: 17.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21617 + color: '#0000FFFF' + - uid: 21423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,24.5 + pos: 16.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21618 + color: '#0000FFFF' + - uid: 21424 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,24.5 + pos: 15.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21619 + color: '#0000FFFF' + - uid: 21425 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,25.5 + pos: -2.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21620 + color: '#DC143CFF' + - uid: 21426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,26.5 + rot: -1.5707963267948966 rad + pos: -3.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21621 + color: '#DC143CFF' + - uid: 21427 components: - type: Transform - pos: 27.5,23.5 + pos: -4.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21622 + color: '#DC143CFF' + - uid: 21428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,21.5 + pos: -4.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21623 + color: '#DC143CFF' + - uid: 21429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,23.5 + pos: -4.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21624 + color: '#DC143CFF' + - uid: 21430 + components: + - type: Transform + pos: -4.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 21431 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,25.5 + pos: 13.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21625 + - uid: 21432 components: - type: Transform - pos: 27.5,22.5 + rot: -1.5707963267948966 rad + pos: 12.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21626 + - uid: 21433 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,25.5 + pos: 12.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21627 + - uid: 21434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,24.5 + rot: -1.5707963267948966 rad + pos: -5.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21628 + color: '#DC143CFF' + - uid: 21435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,21.5 + rot: -1.5707963267948966 rad + pos: -6.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21629 + color: '#DC143CFF' + - uid: 21436 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,24.5 + pos: -7.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21630 + color: '#DC143CFF' + - uid: 21437 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,25.5 + pos: -8.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21631 + color: '#DC143CFF' + - uid: 21438 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,25.5 + pos: 17.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21632 + color: '#FF0000FF' + - uid: 21439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,24.5 + pos: -10.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21633 + color: '#DC143CFF' + - uid: 21440 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,25.5 + pos: -11.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21634 + color: '#DC143CFF' + - uid: 21441 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,24.5 + pos: -12.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21635 + color: '#DC143CFF' + - uid: 21442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,25.5 + rot: 3.141592653589793 rad + pos: -1.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21636 + - uid: 21443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,24.5 + rot: 3.141592653589793 rad + pos: -1.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21637 + color: '#0000FFFF' + - uid: 21444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,24.5 + rot: 3.141592653589793 rad + pos: -1.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21638 + color: '#0000FFFF' + - uid: 21445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,24.5 + rot: 3.141592653589793 rad + pos: -1.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21639 + color: '#0000FFFF' + - uid: 21446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,24.5 + rot: 1.5707963267948966 rad + pos: -1.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21640 + color: '#DC143CFF' + - uid: 21447 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,24.5 + pos: 1.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21641 + color: '#DC143CFF' + - uid: 21448 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,24.5 + pos: 0.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21642 + color: '#DC143CFF' + - uid: 21449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,25.5 + rot: 3.141592653589793 rad + pos: 4.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21643 + - uid: 21450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,25.5 + rot: 3.141592653589793 rad + pos: -0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21644 + color: '#DC143CFF' + - uid: 21451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,24.5 + rot: 3.141592653589793 rad + pos: -0.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21645 + color: '#DC143CFF' + - uid: 21452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,24.5 + rot: 1.5707963267948966 rad + pos: -0.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21646 + - uid: 21453 components: - type: Transform - pos: 25.5,34.5 + rot: 1.5707963267948966 rad + pos: 0.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21647 + color: '#0000FFFF' + - uid: 21454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,26.5 + rot: 1.5707963267948966 rad + pos: 1.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21648 + - uid: 21455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,27.5 + rot: 1.5707963267948966 rad + pos: 2.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21649 + - uid: 21456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 + rot: 1.5707963267948966 rad + pos: 3.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21650 + - uid: 21457 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,29.5 + pos: 3.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21651 + color: '#DC143CFF' + - uid: 21458 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,30.5 + pos: 3.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21652 + color: '#DC143CFF' + - uid: 21459 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,31.5 + pos: 3.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21653 + color: '#DC143CFF' + - uid: 21460 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,25.5 + pos: 4.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21654 + color: '#0000FFFF' + - uid: 21461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,26.5 + pos: -0.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21655 + color: '#DC143CFF' + - uid: 21462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,27.5 + pos: -0.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21656 + color: '#DC143CFF' + - uid: 21463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: -0.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21657 + color: '#DC143CFF' + - uid: 21464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,25.5 + pos: -0.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 21465 + components: + - type: Transform + pos: -0.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 21466 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 21467 + components: + - type: Transform + pos: -2.5,40.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21658 + - uid: 21468 components: - type: Transform - pos: 29.5,35.5 + pos: -2.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21659 + - uid: 21469 components: - type: Transform - pos: 29.5,34.5 + pos: -2.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21660 + - uid: 21470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,35.5 + rot: 3.141592653589793 rad + pos: -0.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21661 + color: '#DC143CFF' + - uid: 21471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,35.5 + pos: -1.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21662 + color: '#DC143CFF' + - uid: 21472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,35.5 + pos: -2.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21663 + color: '#DC143CFF' + - uid: 21473 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,33.5 + pos: -3.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21664 + color: '#DC143CFF' + - uid: 21474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,33.5 + rot: 3.141592653589793 rad + pos: -1.5,50.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21665 + - uid: 21475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,33.5 + rot: 3.141592653589793 rad + pos: -1.5,51.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21666 + - uid: 21476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,33.5 + rot: 3.141592653589793 rad + pos: -1.5,52.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21667 + - uid: 21477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,33.5 + rot: 3.141592653589793 rad + pos: -0.5,52.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21668 + color: '#DC143CFF' + - uid: 21478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,33.5 + rot: 3.141592653589793 rad + pos: -0.5,53.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21669 + color: '#DC143CFF' + - uid: 21479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,32.5 + rot: 3.141592653589793 rad + pos: -0.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21670 + color: '#DC143CFF' + - uid: 21480 components: - type: Transform - pos: 25.5,33.5 + rot: 3.141592653589793 rad + pos: -2.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21671 + color: '#0000FFFF' + - uid: 21481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,28.5 + rot: 3.141592653589793 rad + pos: 5.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21672 + color: '#DC143CFF' + - uid: 21482 components: - type: Transform - pos: 25.5,29.5 + rot: 1.5707963267948966 rad + pos: 4.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21673 + color: '#DC143CFF' + - uid: 21483 components: - type: Transform - pos: 25.5,30.5 + pos: 6.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21674 + color: '#0000FFFF' + - uid: 21484 components: - type: Transform - pos: 25.5,31.5 + pos: 6.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21675 + color: '#0000FFFF' + - uid: 21485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,32.5 + pos: 6.5,45.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21676 + color: '#0000FFFF' + - uid: 21486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,32.5 + pos: 6.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21677 + color: '#0000FFFF' + - uid: 21487 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,23.5 + pos: 5.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21678 + - uid: 21488 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,24.5 + pos: 6.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21679 + color: '#DC143CFF' + - uid: 21489 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,24.5 + pos: 7.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21680 + color: '#DC143CFF' + - uid: 21490 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,24.5 + pos: 8.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21681 + color: '#DC143CFF' + - uid: 21491 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,24.5 + pos: 8.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21682 + - uid: 21492 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,24.5 + pos: 9.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21683 + - uid: 21493 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,23.5 + pos: -2.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21684 + color: '#0000FFFF' + - uid: 21494 components: - type: Transform - pos: 36.5,22.5 + rot: 3.141592653589793 rad + pos: -2.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21685 + - uid: 21495 components: - type: Transform - pos: 36.5,21.5 + rot: 3.141592653589793 rad + pos: -0.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21686 + color: '#DC143CFF' + - uid: 21496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,20.5 + rot: 3.141592653589793 rad + pos: -0.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21687 + color: '#DC143CFF' + - uid: 21497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,22.5 + rot: 3.141592653589793 rad + pos: -0.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21688 + color: '#DC143CFF' + - uid: 21498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,22.5 + pos: -2.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21689 + color: '#0000FFFF' + - uid: 21499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 + pos: -0.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21690 + color: '#DC143CFF' + - uid: 21500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,22.5 + rot: -1.5707963267948966 rad + pos: 0.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21691 + color: '#DC143CFF' + - uid: 21501 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,24.5 + pos: -1.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21692 + - uid: 21502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,21.5 + rot: -1.5707963267948966 rad + pos: -0.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21693 + color: '#0000FFFF' + - uid: 21503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,20.5 + rot: -1.5707963267948966 rad + pos: 0.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21694 + color: '#0000FFFF' + - uid: 21504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,19.5 + rot: -1.5707963267948966 rad + pos: 1.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21695 + color: '#0000FFFF' + - uid: 21505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,19.5 + rot: -1.5707963267948966 rad + pos: 1.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21696 + color: '#DC143CFF' + - uid: 21506 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,19.5 + pos: -1.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21697 + color: '#DC143CFF' + - uid: 21507 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,19.5 + pos: -2.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21698 + color: '#DC143CFF' + - uid: 21508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,19.5 + rot: 1.5707963267948966 rad + pos: -3.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21699 + color: '#DC143CFF' + - uid: 21509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,21.5 + rot: 1.5707963267948966 rad + pos: -3.5,61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21700 + - uid: 21510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,22.5 + rot: 1.5707963267948966 rad + pos: -4.5,61.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21701 + - uid: 21511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,23.5 + rot: -1.5707963267948966 rad + pos: 2.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21702 + color: '#DC143CFF' + - uid: 21512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,18.5 + rot: -1.5707963267948966 rad + pos: 2.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21703 + - uid: 21513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,18.5 + rot: 3.141592653589793 rad + pos: -5.5,63.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21704 + - uid: 21514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 + rot: 3.141592653589793 rad + pos: -5.5,64.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21705 + - uid: 21515 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,35.5 + pos: -5.5,65.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21706 + color: '#0000FFFF' + - uid: 21516 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,34.5 + pos: -5.5,66.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21707 + color: '#0000FFFF' + - uid: 21517 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,33.5 + pos: -5.5,67.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21708 + color: '#0000FFFF' + - uid: 21518 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,35.5 + pos: -4.5,63.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21710 + - uid: 21519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,35.5 + rot: 3.141592653589793 rad + pos: -4.5,64.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21711 + - uid: 21520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,35.5 + rot: 3.141592653589793 rad + pos: -4.5,65.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21712 + - uid: 21521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,35.5 + rot: 3.141592653589793 rad + pos: -4.5,66.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21713 + - uid: 21522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,35.5 + rot: 3.141592653589793 rad + pos: -4.5,67.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21714 + - uid: 21523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,35.5 + rot: 1.5707963267948966 rad + pos: -7.5,69.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21715 + color: '#0000FFFF' + - uid: 21524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,35.5 + rot: 1.5707963267948966 rad + pos: -10.5,69.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21716 + color: '#0000FFFF' + - uid: 21525 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,36.5 + pos: -9.5,69.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21717 + - uid: 21526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,36.5 + pos: -8.5,70.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21718 + - uid: 21527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,5.5 + pos: -8.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21719 + color: '#0000FFFF' + - uid: 21528 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,25.5 + pos: -10.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21720 + color: '#DC143CFF' + - uid: 21529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,25.5 + pos: -11.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21721 + color: '#DC143CFF' + - uid: 21530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,25.5 + pos: -12.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21722 + color: '#DC143CFF' + - uid: 21531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,23.5 + pos: -9.5,69.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21723 + color: '#DC143CFF' + - uid: 21532 components: - type: Transform - pos: -12.5,18.5 + pos: -9.5,70.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21724 + color: '#DC143CFF' + - uid: 21533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,20.5 + pos: -9.5,71.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21725 + color: '#DC143CFF' + - uid: 21534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,21.5 + pos: -9.5,72.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21726 + color: '#DC143CFF' + - uid: 21535 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,17.5 + pos: -9.5,73.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21727 + color: '#DC143CFF' + - uid: 21536 components: - type: Transform - pos: -12.5,19.5 + rot: -1.5707963267948966 rad + pos: -8.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21728 + color: '#DC143CFF' + - uid: 21537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,24.5 + rot: -1.5707963267948966 rad + pos: -6.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21729 + color: '#DC143CFF' + - uid: 21538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,24.5 + rot: -1.5707963267948966 rad + pos: -5.5,68.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21730 + color: '#DC143CFF' + - uid: 21539 components: - type: Transform - pos: -10.5,17.5 + rot: 1.5707963267948966 rad + pos: -25.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21731 + color: '#0000FFFF' + - uid: 21540 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,36.5 + pos: -24.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21732 + - uid: 21541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,6.5 + rot: 1.5707963267948966 rad + pos: -25.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21733 + color: '#DC143CFF' + - uid: 21542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,20.5 + rot: 1.5707963267948966 rad + pos: -24.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21734 + color: '#DC143CFF' + - uid: 21543 components: - type: Transform - pos: -8.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21735 + color: '#DC143CFF' + - uid: 21544 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,1.5 + pos: -18.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21736 + - uid: 21545 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,0.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21737 - components: - - type: Transform - pos: -8.5,-28.5 + pos: -19.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21738 + color: '#0000FFFF' + - uid: 21546 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,1.5 + pos: -20.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21739 + - uid: 21547 components: - type: Transform - pos: -8.5,-23.5 + rot: -1.5707963267948966 rad + pos: -21.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21740 + color: '#0000FFFF' + - uid: 21548 components: - type: Transform - pos: -8.5,-29.5 + rot: -1.5707963267948966 rad + pos: -22.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21741 + color: '#0000FFFF' + - uid: 21549 components: - type: Transform - pos: -10.5,-27.5 + rot: 1.5707963267948966 rad + pos: -19.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21742 + color: '#DC143CFF' + - uid: 21550 components: - type: Transform - pos: -10.5,-33.5 + rot: 1.5707963267948966 rad + pos: -22.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21743 + color: '#DC143CFF' + - uid: 21551 components: - type: Transform - pos: 53.5,10.5 + rot: 1.5707963267948966 rad + pos: -21.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21744 + - uid: 21552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,21.5 + pos: -18.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21745 + color: '#DC143CFF' + - uid: 21553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-1.5 + pos: -18.5,53.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21746 + - uid: 21554 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-0.5 + pos: -18.5,52.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21747 + - uid: 21555 components: - type: Transform - pos: -8.5,-21.5 + pos: -18.5,51.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21748 + color: '#DC143CFF' + - uid: 21556 components: - type: Transform - pos: 61.5,4.5 + pos: -18.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21749 + color: '#DC143CFF' + - uid: 21557 components: - type: Transform - pos: 61.5,5.5 + pos: -18.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21750 + color: '#DC143CFF' + - uid: 21558 components: - type: Transform - pos: 57.5,8.5 + pos: -18.5,48.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21751 + - uid: 21559 components: - type: Transform - pos: 57.5,9.5 + rot: -1.5707963267948966 rad + pos: 26.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21752 + - uid: 21560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,6.5 + pos: -2.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21753 + - uid: 21561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,7.5 + rot: -1.5707963267948966 rad + pos: -1.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21754 + color: '#0000FFFF' + - uid: 21562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,6.5 + rot: -1.5707963267948966 rad + pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21755 + - uid: 21563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,6.5 + rot: -1.5707963267948966 rad + pos: 0.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21756 + - uid: 21564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,6.5 + rot: -1.5707963267948966 rad + pos: 1.5,37.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21757 + - uid: 21565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,6.5 + pos: -0.5,38.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21758 + color: '#DC143CFF' + - uid: 21566 components: - type: Transform - pos: 52.5,7.5 + pos: -0.5,37.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21759 + color: '#DC143CFF' + - uid: 21567 components: - type: Transform - pos: 56.5,8.5 + rot: -1.5707963267948966 rad + pos: 0.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21760 + color: '#DC143CFF' + - uid: 21568 components: - type: Transform - pos: 52.5,8.5 + rot: -1.5707963267948966 rad + pos: 1.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21761 + color: '#DC143CFF' + - uid: 21569 components: - type: Transform - pos: 56.5,9.5 + rot: -1.5707963267948966 rad + pos: 2.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21762 + color: '#DC143CFF' + - uid: 21570 components: - type: Transform - pos: 56.5,7.5 + rot: -1.5707963267948966 rad + pos: 3.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21763 + color: '#DC143CFF' + - uid: 21571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,6.5 + rot: -1.5707963267948966 rad + pos: 0.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21764 + color: '#DC143CFF' + - uid: 21572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,20.5 + rot: -1.5707963267948966 rad + pos: -1.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21765 + color: '#0000FFFF' + - uid: 21573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,19.5 + rot: -1.5707963267948966 rad + pos: -0.5,57.5 parent: 2 - - uid: 21766 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21574 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,6.5 + pos: 0.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21767 + - uid: 21575 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,7.5 + pos: 1.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21768 + - uid: 21576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,4.5 + rot: -1.5707963267948966 rad + pos: 3.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21769 + - uid: 21577 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,9.5 + rot: -1.5707963267948966 rad + pos: 2.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21770 + - uid: 21578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,9.5 + rot: -1.5707963267948966 rad + pos: 3.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21771 + - uid: 21579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,6.5 + rot: -1.5707963267948966 rad + pos: 2.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21772 + color: '#0000FFFF' + - uid: 21580 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,7.5 + pos: 4.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21773 + - uid: 21581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,7.5 + rot: -1.5707963267948966 rad + pos: 7.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21774 + - uid: 21582 components: - type: Transform - pos: 53.5,9.5 + rot: -1.5707963267948966 rad + pos: 8.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21775 + - uid: 21583 components: - type: Transform - pos: 53.5,8.5 + rot: -1.5707963267948966 rad + pos: 9.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21776 - components: - - type: Transform - pos: 52.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21777 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21778 + - uid: 21584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,7.5 + rot: -1.5707963267948966 rad + pos: 11.5,56.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21779 + - uid: 21585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,20.5 + rot: -1.5707963267948966 rad + pos: 13.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21780 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,19.5 - parent: 2 - - uid: 21781 + color: '#DC143CFF' + - uid: 21586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,20.5 + rot: -1.5707963267948966 rad + pos: 15.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21782 + color: '#DC143CFF' + - uid: 21587 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,20.5 + rot: -1.5707963267948966 rad + pos: 16.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21783 + color: '#DC143CFF' + - uid: 21588 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,20.5 + pos: 17.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21784 + color: '#DC143CFF' + - uid: 21589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 + rot: -1.5707963267948966 rad + pos: 8.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21785 + - uid: 21590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,8.5 + rot: -1.5707963267948966 rad + pos: 9.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21786 + color: '#0000FFFF' + - uid: 21591 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,0.5 + pos: 10.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21787 + color: '#0000FFFF' + - uid: 21592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,17.5 + rot: 1.5707963267948966 rad + pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21788 + color: '#0000FFFF' + - uid: 21593 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,36.5 + pos: -18.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21789 + - uid: 21594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,7.5 + rot: -1.5707963267948966 rad + pos: 12.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21790 + color: '#0000FFFF' + - uid: 21595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,7.5 + rot: 3.141592653589793 rad + pos: 13.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 21791 + color: '#0000FFFF' + - uid: 21596 components: - type: Transform - pos: -110.5,28.5 + rot: 3.141592653589793 rad + pos: 13.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21792 + - uid: 21597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,16.5 + rot: 3.141592653589793 rad + pos: 13.5,55.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21793 + - uid: 21598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,16.5 + rot: 3.141592653589793 rad + pos: 14.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21794 + color: '#DC143CFF' + - uid: 21599 components: - type: Transform - pos: -110.5,27.5 + rot: 3.141592653589793 rad + pos: 13.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21795 + - uid: 21600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,23.5 + rot: 3.141592653589793 rad + pos: 14.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21796 + color: '#DC143CFF' + - uid: 21601 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,14.5 + pos: 12.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21797 + color: '#DC143CFF' + - uid: 21602 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,13.5 + pos: 12.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21798 + color: '#DC143CFF' + - uid: 21603 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,13.5 + pos: 12.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21799 + color: '#DC143CFF' + - uid: 21604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,20.5 + pos: 12.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21800 + color: '#DC143CFF' + - uid: 21605 components: - type: Transform - pos: -10.5,-26.5 + rot: -1.5707963267948966 rad + pos: 12.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21801 + - uid: 21606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 + rot: 3.141592653589793 rad + pos: 12.5,62.5 parent: 2 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 21802 + - uid: 21607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,36.5 + rot: 3.141592653589793 rad + pos: 10.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21803 + color: '#DC143CFF' + - uid: 21608 components: - type: Transform - pos: -99.5,4.5 + rot: 1.5707963267948966 rad + pos: 11.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21804 + color: '#DC143CFF' + - uid: 21609 components: - type: Transform - pos: -99.5,5.5 + rot: 1.5707963267948966 rad + pos: 10.5,60.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21805 + color: '#0000FFFF' + - uid: 21610 components: - type: Transform - pos: -99.5,6.5 + pos: 9.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21806 + color: '#0000FFFF' + - uid: 21611 components: - type: Transform - pos: -100.5,6.5 + pos: 9.5,62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21807 + - uid: 21612 components: - type: Transform - pos: -100.5,5.5 + pos: 13.5,62.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21808 + - uid: 21613 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,4.5 + pos: 15.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21809 + - uid: 21614 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,2.5 + pos: 17.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21810 + color: '#0000FFFF' + - uid: 21615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,4.5 + pos: 18.5,58.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21811 + - uid: 21616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,4.5 + pos: 19.5,59.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21812 + - uid: 21617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,4.5 + pos: 20.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21813 + color: '#DC143CFF' + - uid: 21618 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,2.5 + pos: 22.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21814 + color: '#DC143CFF' + - uid: 21619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,2.5 + pos: 22.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21815 + color: '#0000FFFF' + - uid: 21620 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,2.5 + pos: 23.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21816 + color: '#0000FFFF' + - uid: 21621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,2.5 + pos: 18.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21817 + color: '#DC143CFF' + - uid: 21622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,2.5 + pos: 18.5,58.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21818 + color: '#DC143CFF' + - uid: 21623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,2.5 + pos: 18.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21819 + color: '#DC143CFF' + - uid: 21624 components: - type: Transform - pos: -99.5,7.5 + pos: 11.5,59.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21820 + color: '#0000FFFF' + - uid: 21625 components: - type: Transform - pos: -106.5,9.5 + rot: -1.5707963267948966 rad + pos: 25.5,57.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21821 + color: '#0000FFFF' + - uid: 21626 components: - type: Transform - pos: -106.5,8.5 + pos: 23.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21822 + color: '#DC143CFF' + - uid: 21627 components: - type: Transform - pos: -106.5,10.5 + pos: 23.5,54.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21823 + color: '#DC143CFF' + - uid: 21628 components: - type: Transform - pos: -106.5,12.5 + pos: 24.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21824 + color: '#0000FFFF' + - uid: 21629 components: - type: Transform - pos: -105.5,10.5 + pos: 24.5,54.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21825 + - uid: 21630 components: - type: Transform - pos: -105.5,11.5 + pos: 24.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21826 + - uid: 21631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,18.5 + rot: -1.5707963267948966 rad + pos: 24.5,56.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21827 + color: '#DC143CFF' + - uid: 21632 components: - type: Transform - pos: -105.5,12.5 + rot: -1.5707963267948966 rad + pos: 25.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 21633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21828 + - uid: 21634 components: - type: Transform - pos: -105.5,8.5 + rot: -1.5707963267948966 rad + pos: -26.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21829 + - uid: 21635 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,5.5 + rot: -1.5707963267948966 rad + pos: -25.5,49.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21830 + - uid: 21636 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,7.5 + pos: -24.5,48.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21831 + - uid: 21637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,6.5 + pos: -26.5,47.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21832 + color: '#DC143CFF' + - uid: 21638 components: - type: Transform - pos: -108.5,6.5 + pos: -26.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21833 + color: '#DC143CFF' + - uid: 21639 components: - type: Transform - pos: -108.5,5.5 + pos: -26.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21834 + color: '#DC143CFF' + - uid: 21640 components: - type: Transform - pos: -108.5,4.5 + rot: -1.5707963267948966 rad + pos: -27.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21835 + color: '#DC143CFF' + - uid: 21641 components: - type: Transform - pos: -108.5,3.5 + rot: -1.5707963267948966 rad + pos: -28.5,50.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21836 + color: '#DC143CFF' + - uid: 21642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,6.5 + rot: -1.5707963267948966 rad + pos: -25.5,46.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21837 + color: '#DC143CFF' + - uid: 21643 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,6.5 + pos: 29.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21838 + - uid: 21644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,6.5 + rot: 3.141592653589793 rad + pos: -29.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21839 + color: '#DC143CFF' + - uid: 21645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,6.5 + rot: 3.141592653589793 rad + pos: -29.5,49.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21840 + color: '#DC143CFF' + - uid: 21646 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,6.5 + pos: 17.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21841 + - uid: 21647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,7.5 + pos: 18.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21842 + color: '#0000FFFF' + - uid: 21648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -110.5,7.5 + pos: 19.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21843 + color: '#0000FFFF' + - uid: 21649 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,7.5 + pos: 16.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21844 + - uid: 21650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,7.5 + pos: 17.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21845 + - uid: 21651 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,7.5 + pos: 18.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21846 + - uid: 21652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -114.5,7.5 + pos: 19.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21847 + - uid: 21653 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,6.5 + pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21848 + - uid: 21654 components: - type: Transform - pos: -115.5,6.5 + rot: 1.5707963267948966 rad + pos: 21.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21849 + color: '#0000FFFF' + - uid: 21655 components: - type: Transform - pos: -110.5,26.5 + rot: -1.5707963267948966 rad + pos: 13.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21850 + - uid: 21656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,16.5 + rot: -1.5707963267948966 rad + pos: 12.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21851 + - uid: 21657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,15.5 + rot: -1.5707963267948966 rad + pos: 13.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21852 + - uid: 21658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,15.5 + rot: -1.5707963267948966 rad + pos: 12.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21853 + - uid: 21659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,19.5 + rot: 3.141592653589793 rad + pos: 10.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21854 + color: '#0000FFFF' + - uid: 21660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,19.5 + rot: 3.141592653589793 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21855 + - uid: 21663 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,26.5 + rot: 3.141592653589793 rad + pos: 9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21856 + - uid: 21664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,20.5 + rot: 3.141592653589793 rad + pos: 9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21857 + color: '#FF0000FF' + - uid: 21665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,20.5 + rot: 3.141592653589793 rad + pos: 10.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21858 + - uid: 21666 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,20.5 + pos: 11.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21859 + - uid: 21667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,23.5 + rot: -1.5707963267948966 rad + pos: 8.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21860 + - uid: 21668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,23.5 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21861 + - uid: 21669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,24.5 + rot: -1.5707963267948966 rad + pos: 6.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21862 + color: '#FF0000FF' + - uid: 21670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,24.5 + rot: -1.5707963267948966 rad + pos: 8.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21863 + - uid: 21671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,24.5 + rot: -1.5707963267948966 rad + pos: 7.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21864 + - uid: 21672 components: - type: Transform - pos: -107.5,28.5 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21865 + - uid: 21673 components: - type: Transform - pos: -107.5,27.5 + rot: -1.5707963267948966 rad + pos: 10.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21866 + color: '#FF0000FF' + - uid: 21674 components: - type: Transform - pos: -107.5,26.5 + rot: 3.141592653589793 rad + pos: 10.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21867 + color: '#FF0000FF' + - uid: 21675 components: - type: Transform - pos: -106.5,27.5 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21868 + color: '#0000FFFF' + - uid: 21676 components: - type: Transform - pos: -106.5,28.5 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21869 + color: '#0000FFFF' + - uid: 21677 components: - type: Transform - pos: -111.5,28.5 + rot: -1.5707963267948966 rad + pos: 2.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21870 + color: '#0000FFFF' + - uid: 21678 components: - type: Transform - pos: -111.5,27.5 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21871 + color: '#0000FFFF' + - uid: 21679 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,23.5 + pos: 0.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21872 + - uid: 21680 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,22.5 + pos: 0.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21873 + - uid: 21681 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,22.5 + pos: 1.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21874 + - uid: 21682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,14.5 + pos: 2.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21875 + - uid: 21683 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,16.5 + pos: 3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21876 + color: '#FF0000FF' + - uid: 21684 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,16.5 + pos: 4.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21877 + color: '#FF0000FF' + - uid: 21685 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,16.5 + pos: -3.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21878 + - uid: 21686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,18.5 + rot: -1.5707963267948966 rad + pos: -2.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21879 + - uid: 21687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,17.5 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21880 + - uid: 21688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,16.5 + rot: -1.5707963267948966 rad + pos: -3.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21881 + color: '#FF0000FF' + - uid: 21689 components: - type: Transform - pos: -105.5,17.5 + rot: -1.5707963267948966 rad + pos: -2.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21882 + color: '#FF0000FF' + - uid: 21690 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,14.5 + pos: -1.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21883 + - uid: 21691 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,15.5 + pos: -5.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21884 + - uid: 21692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,23.5 + rot: 3.141592653589793 rad + pos: -5.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21885 + - uid: 21693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,14.5 + rot: 3.141592653589793 rad + pos: -5.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21886 + color: '#0000FFFF' + - uid: 21694 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,16.5 + pos: -4.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21887 + - uid: 21695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,16.5 + rot: 3.141592653589793 rad + pos: -4.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21888 + color: '#FF0000FF' + - uid: 21696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21889 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21890 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,14.5 + rot: 3.141592653589793 rad + pos: -4.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21891 + - uid: 21697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,14.5 + rot: 1.5707963267948966 rad + pos: -5.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21892 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21893 + - uid: 21698 components: - type: Transform rot: 1.5707963267948966 rad - pos: -110.5,26.5 + pos: -6.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21894 + - uid: 21699 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,26.5 + pos: -7.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21895 + - uid: 21700 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,26.5 + pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21896 + - uid: 21701 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,26.5 + pos: -8.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21897 + color: '#0000FFFF' + - uid: 21702 components: - type: Transform - pos: -113.5,25.5 + rot: 1.5707963267948966 rad + pos: -7.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21898 + color: '#0000FFFF' + - uid: 21703 components: - type: Transform - pos: -113.5,24.5 + rot: 1.5707963267948966 rad + pos: -12.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21899 + color: '#0000FFFF' + - uid: 21704 components: - type: Transform - pos: -113.5,22.5 + rot: 1.5707963267948966 rad + pos: -13.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21900 + color: '#0000FFFF' + - uid: 21705 components: - type: Transform - pos: -113.5,21.5 + rot: 1.5707963267948966 rad + pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21901 + color: '#0000FFFF' + - uid: 21706 components: - type: Transform - pos: -113.5,20.5 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21902 + - uid: 21707 components: - type: Transform - pos: -113.5,18.5 + rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21903 + - uid: 21708 components: - type: Transform - pos: -113.5,17.5 + rot: 1.5707963267948966 rad + pos: -13.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21904 + - uid: 21709 components: - type: Transform - pos: -113.5,16.5 + rot: 1.5707963267948966 rad + pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21905 + - uid: 21710 components: - type: Transform - pos: -104.5,23.5 + rot: -1.5707963267948966 rad + pos: -19.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21906 + - uid: 21711 components: - type: Transform - pos: -104.5,24.5 + rot: -1.5707963267948966 rad + pos: -18.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21907 + - uid: 21712 components: - type: Transform - pos: -104.5,25.5 + rot: -1.5707963267948966 rad + pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21908 + - uid: 21713 components: - type: Transform - pos: -112.5,17.5 + rot: 3.141592653589793 rad + pos: -17.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21909 + - uid: 21714 components: - type: Transform - pos: -112.5,18.5 + rot: 3.141592653589793 rad + pos: -15.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21910 + color: '#FF0000FF' + - uid: 21715 components: - type: Transform - pos: -112.5,19.5 + rot: 1.5707963267948966 rad + pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21911 + - uid: 21716 components: - type: Transform - pos: -112.5,21.5 + rot: 3.141592653589793 rad + pos: -15.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21912 + color: '#FF0000FF' + - uid: 21717 components: - type: Transform - pos: -112.5,22.5 + rot: 3.141592653589793 rad + pos: -17.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21913 + - uid: 21718 components: - type: Transform - pos: -112.5,23.5 + rot: 3.141592653589793 rad + pos: -17.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21914 + - uid: 21719 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,25.5 + pos: -15.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21915 + color: '#FF0000FF' + - uid: 21720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,24.5 + rot: 1.5707963267948966 rad + pos: 13.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21916 + - uid: 21721 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,25.5 + pos: 20.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21917 + color: '#FF0000FF' + - uid: 21722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,24.5 + rot: 3.141592653589793 rad + pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21918 + color: '#FF0000FF' + - uid: 21723 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,22.5 + pos: 22.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21919 + - uid: 21724 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,21.5 + pos: 22.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21920 + - uid: 21725 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,20.5 + pos: 20.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21921 + color: '#FF0000FF' + - uid: 21726 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,19.5 + pos: 22.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21922 + - uid: 21727 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,18.5 + pos: 22.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21923 + - uid: 21728 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,29.5 + pos: 20.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21924 + - uid: 21729 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,29.5 + pos: 12.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21925 + - uid: 21730 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,29.5 + pos: 12.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21926 + - uid: 21731 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,29.5 + pos: 12.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21927 + color: '#0000FFFF' + - uid: 21732 components: - type: Transform - pos: -110.5,15.5 + rot: 3.141592653589793 rad + pos: 10.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21928 + - uid: 21733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,14.5 + pos: 9.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21929 + - uid: 21734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,14.5 + pos: 12.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21930 + color: '#0000FFFF' + - uid: 21735 components: - type: Transform - pos: -104.5,15.5 + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21931 + - uid: 21736 components: - type: Transform - pos: -104.5,16.5 + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21932 + - uid: 21737 components: - type: Transform - pos: -104.5,17.5 + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21933 + - uid: 21738 components: - type: Transform - pos: -104.5,18.5 + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21934 + - uid: 21739 components: - type: Transform - pos: -104.5,19.5 + rot: 1.5707963267948966 rad + pos: 15.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21935 + - uid: 21740 components: - type: Transform - pos: -104.5,20.5 + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21936 + color: '#0000FFFF' + - uid: 21741 components: - type: Transform - pos: -104.5,21.5 + rot: 1.5707963267948966 rad + pos: 15.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21937 + color: '#0000FFFF' + - uid: 21742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,22.5 + pos: 17.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21938 + color: '#0000FFFF' + - uid: 21743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,23.5 + rot: -1.5707963267948966 rad + pos: 16.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21939 + - uid: 21744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,14.5 + rot: 3.141592653589793 rad + pos: 16.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21940 + - uid: 21745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,23.5 + rot: 3.141592653589793 rad + pos: 17.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21941 + - uid: 21746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,23.5 + rot: 3.141592653589793 rad + pos: 16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21747 + components: + - type: Transform + pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21942 + - uid: 21748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,22.5 + pos: -3.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21943 + - uid: 21749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,22.5 + pos: -4.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21944 + color: '#0000FFFF' + - uid: 21750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,9.5 + pos: -4.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21945 + - uid: 21751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,9.5 + pos: -8.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21946 + - uid: 21752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,11.5 + pos: -4.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21947 + - uid: 21753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,4.5 + rot: 3.141592653589793 rad + pos: -4.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21948 + color: '#FF0000FF' + - uid: 21754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,4.5 + pos: -5.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21949 + - uid: 21755 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-42.5 + pos: -6.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21950 + - uid: 21756 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,4.5 + pos: -5.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 21951 + - uid: 21757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-42.5 + rot: -1.5707963267948966 rad + pos: -4.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21952 + color: '#FF0000FF' + - uid: 21758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-43.5 + rot: -1.5707963267948966 rad + pos: -5.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21953 + color: '#FF0000FF' + - uid: 21759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-42.5 + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21954 + color: '#FF0000FF' + - uid: 21760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21955 + color: '#FF0000FF' + - uid: 21761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,45.5 + pos: -15.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21956 + color: '#FF0000FF' + - uid: 21762 components: - type: Transform - pos: 13.5,44.5 + pos: -15.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21957 + color: '#FF0000FF' + - uid: 21763 components: - type: Transform - pos: 13.5,43.5 + pos: -15.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21958 + color: '#FF0000FF' + - uid: 21764 components: - type: Transform - pos: 13.5,42.5 + pos: -15.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21959 + color: '#FF0000FF' + - uid: 21765 components: - type: Transform - pos: 13.5,41.5 + pos: -15.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21960 + color: '#FF0000FF' + - uid: 21766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,40.5 + rot: -1.5707963267948966 rad + pos: -14.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21961 + color: '#FF0000FF' + - uid: 21767 components: - type: Transform - pos: 11.5,39.5 + pos: -15.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21962 + color: '#FF0000FF' + - uid: 21768 components: - type: Transform - pos: 11.5,38.5 + pos: -15.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21963 + color: '#FF0000FF' + - uid: 21769 components: - type: Transform - pos: 11.5,47.5 + pos: -15.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21964 + color: '#FF0000FF' + - uid: 21770 components: - type: Transform - pos: 11.5,46.5 + pos: -15.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21965 + color: '#FF0000FF' + - uid: 21771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-43.5 + pos: -15.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21966 + color: '#FF0000FF' + - uid: 21772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-13.5 + pos: -15.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21967 + color: '#FF0000FF' + - uid: 21773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-14.5 + pos: -15.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21968 + - uid: 21774 components: - type: Transform - pos: -25.5,12.5 + pos: -15.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21969 + - uid: 21775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-14.5 + pos: -15.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21970 + - uid: 21776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-14.5 + pos: -15.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21971 + - uid: 21777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-14.5 + pos: -15.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21972 + - uid: 21778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-13.5 + pos: -15.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21973 + color: '#FF0000FF' + - uid: 21779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 + pos: -15.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21974 + color: '#FF0000FF' + - uid: 21780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21975 + color: '#FF0000FF' + - uid: 21781 components: - type: Transform - pos: -23.5,-17.5 + rot: -1.5707963267948966 rad + pos: -13.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21976 + color: '#FF0000FF' + - uid: 21782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-13.5 + rot: -1.5707963267948966 rad + pos: -12.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21977 + color: '#FF0000FF' + - uid: 21783 components: - type: Transform - pos: -23.5,-16.5 + rot: -1.5707963267948966 rad + pos: -11.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21978 + color: '#FF0000FF' + - uid: 21784 components: - type: Transform - pos: -23.5,-15.5 + rot: -1.5707963267948966 rad + pos: -10.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21979 + color: '#FF0000FF' + - uid: 21785 components: - type: Transform - pos: -23.5,-14.5 + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21980 + color: '#FF0000FF' + - uid: 21786 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-14.5 + pos: -7.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21981 + - uid: 21787 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-18.5 + pos: -5.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21982 + - uid: 21788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-17.5 + rot: -1.5707963267948966 rad + pos: -4.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21983 + - uid: 21789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-16.5 + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21984 + - uid: 21790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-15.5 + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21985 + - uid: 21791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 + rot: -1.5707963267948966 rad + pos: -1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21986 + color: '#FF0000FF' + - uid: 21792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-3.5 + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21987 + color: '#FF0000FF' + - uid: 21793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-3.5 + rot: -1.5707963267948966 rad + pos: 0.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21988 + color: '#FF0000FF' + - uid: 21794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-3.5 + rot: -1.5707963267948966 rad + pos: 1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21989 + color: '#FF0000FF' + - uid: 21795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-3.5 + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21990 + color: '#FF0000FF' + - uid: 21796 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-4.5 + pos: 5.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21991 + color: '#FF0000FF' + - uid: 21797 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,18.5 + pos: 6.5,-15.5 parent: 2 - - uid: 21992 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21798 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,14.5 + pos: 7.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21993 + color: '#FF0000FF' + - uid: 21799 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,14.5 + pos: 8.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21994 + color: '#FF0000FF' + - uid: 21800 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,15.5 + pos: 9.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21995 + - uid: 21801 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,15.5 + pos: 10.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21996 + - uid: 21802 components: - type: Transform - pos: -25.5,14.5 + rot: -1.5707963267948966 rad + pos: 13.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21997 + - uid: 21803 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,19.5 + pos: 14.5,-15.5 parent: 2 - - uid: 21998 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,18.5 + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 parent: 2 - - uid: 21999 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21805 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,19.5 + pos: 16.5,-15.5 parent: 2 - - uid: 22000 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,14.5 + rot: -1.5707963267948966 rad + pos: 17.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22001 + color: '#FF0000FF' + - uid: 21807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 + rot: -1.5707963267948966 rad + pos: 18.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22002 + - uid: 21808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 + rot: -1.5707963267948966 rad + pos: 19.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22003 + color: '#FF0000FF' + - uid: 21809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-14.5 + rot: 3.141592653589793 rad + pos: 20.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22004 + color: '#FF0000FF' + - uid: 21810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-14.5 + rot: 3.141592653589793 rad + pos: 20.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22005 + color: '#FF0000FF' + - uid: 21811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-14.5 + rot: 3.141592653589793 rad + pos: 20.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22006 + color: '#FF0000FF' + - uid: 21812 components: - type: Transform - pos: -39.5,-12.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22007 + - uid: 21813 components: - type: Transform - pos: -39.5,-13.5 + rot: 3.141592653589793 rad + pos: 20.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22008 + - uid: 21814 components: - type: Transform - pos: -39.5,-14.5 + rot: 3.141592653589793 rad + pos: 20.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22009 + - uid: 21815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-15.5 + rot: 3.141592653589793 rad + pos: 20.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22010 + - uid: 21816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-15.5 + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22011 + - uid: 21817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-15.5 + rot: 3.141592653589793 rad + pos: 20.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22012 + - uid: 21818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-15.5 + rot: 3.141592653589793 rad + pos: 20.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22013 + - uid: 21819 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,14.5 + pos: 20.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22014 + - uid: 21820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-11.5 + rot: 3.141592653589793 rad + pos: 20.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22015 + - uid: 21821 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,12.5 + pos: 20.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22016 + color: '#FF0000FF' + - uid: 21822 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,11.5 + pos: 20.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22017 + color: '#FF0000FF' + - uid: 21823 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,0.5 + pos: 20.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22018 + - uid: 21824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,6.5 + rot: 1.5707963267948966 rad + pos: 1.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22019 + - uid: 21825 components: - type: Transform - pos: -36.5,13.5 + rot: 1.5707963267948966 rad + pos: 3.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22020 + color: '#0000FFFF' + - uid: 21826 components: - type: Transform - pos: -55.5,15.5 + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22021 + - uid: 21827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,7.5 + rot: 1.5707963267948966 rad + pos: 5.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22022 + - uid: 21828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,1.5 + rot: 1.5707963267948966 rad + pos: 6.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22023 + color: '#0000FFFF' + - uid: 21829 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,12.5 + pos: 7.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22024 + - uid: 21830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,12.5 + pos: 9.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22025 + - uid: 21831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,2.5 + rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22026 + - uid: 21833 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,5.5 + rot: 1.5707963267948966 rad + pos: 13.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22027 + - uid: 21834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-11.5 + pos: 14.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22028 + color: '#0000FFFF' + - uid: 21835 components: - type: Transform - pos: -43.5,-6.5 + rot: 1.5707963267948966 rad + pos: 15.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22029 + - uid: 21836 components: - type: Transform - pos: -46.5,-6.5 + rot: 1.5707963267948966 rad + pos: 16.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22030 + - uid: 21837 components: - type: Transform - pos: -5.5,-39.5 + rot: 1.5707963267948966 rad + pos: 17.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22031 + - uid: 21838 components: - type: Transform - pos: -5.5,-38.5 + rot: 1.5707963267948966 rad + pos: 18.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22032 + - uid: 21839 components: - type: Transform - pos: -5.5,-36.5 + rot: 1.5707963267948966 rad + pos: 19.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22033 + - uid: 21840 components: - type: Transform - pos: -5.5,-35.5 + rot: 1.5707963267948966 rad + pos: 20.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22034 + - uid: 21841 components: - type: Transform - pos: -5.5,-34.5 + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22035 + - uid: 21842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-33.5 + rot: 1.5707963267948966 rad + pos: 21.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22036 + - uid: 21843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 + pos: 22.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22037 + - uid: 21844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 + pos: 22.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22038 + color: '#0000FFFF' + - uid: 21845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-36.5 + pos: 22.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22039 + color: '#0000FFFF' + - uid: 21846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-36.5 + pos: 22.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22040 + color: '#0000FFFF' + - uid: 21847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 + pos: 22.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22041 + color: '#0000FFFF' + - uid: 21848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-33.5 + pos: 22.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 41952 + - uid: 21849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,61.5 - parent: 40203 + pos: 22.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41953 + color: '#0000FFFF' + - uid: 21850 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,61.5 - parent: 40203 + pos: 24.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41954 + color: '#FF0000FF' + - uid: 21851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,60.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 23.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41955 + color: '#FF0000FF' + - uid: 21852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,60.5 - parent: 40203 + pos: 19.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41956 + color: '#FF0000FF' + - uid: 21853 components: - type: Transform - pos: 40.5,61.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41957 + color: '#FF0000FF' + - uid: 21854 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,61.5 - parent: 40203 + pos: 19.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41958 + color: '#0000FFFF' + - uid: 21855 components: - type: Transform - pos: 40.5,62.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41959 + color: '#0000FFFF' + - uid: 21856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,61.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41960 + color: '#0000FFFF' + - uid: 21857 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,62.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 23.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41961 + color: '#0000FFFF' + - uid: 21858 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,60.5 - parent: 40203 + pos: 24.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41962 + color: '#0000FFFF' + - uid: 21859 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,60.5 - parent: 40203 + pos: 21.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41963 + color: '#FF0000FF' + - uid: 21860 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,60.5 - parent: 40203 + pos: 22.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41964 + color: '#FF0000FF' + - uid: 21861 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,60.5 - parent: 40203 + pos: 23.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41965 + color: '#FF0000FF' + - uid: 21862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,60.5 - parent: 40203 + pos: 24.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41966 + color: '#FF0000FF' + - uid: 21863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,62.5 - parent: 40203 + pos: 17.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41967 + color: '#0000FFFF' + - uid: 21864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,61.5 - parent: 40203 + pos: 16.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41968 + color: '#0000FFFF' + - uid: 21865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,61.5 - parent: 40203 + pos: 16.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41969 + color: '#0000FFFF' + - uid: 21866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,61.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 25.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41970 + color: '#FF0000FF' + - uid: 21867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,58.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 26.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41971 + color: '#FF0000FF' + - uid: 21868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,59.5 - parent: 40203 + pos: 11.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41972 + color: '#FF0000FF' + - uid: 21869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,60.5 - parent: 40203 + pos: 11.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#888888FF' - - uid: 41973 + color: '#FF0000FF' + - uid: 21870 components: - type: Transform - pos: 38.5,81.5 - parent: 40203 - - uid: 41974 + pos: 8.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21871 components: - type: Transform - pos: 36.5,81.5 - parent: 40203 - - uid: 41975 + pos: 8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,63.5 - parent: 40203 - - uid: 41976 + pos: 8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21873 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,63.5 - parent: 40203 - - uid: 41977 + pos: -1.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,61.5 - parent: 40203 - - uid: 41978 + pos: -0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21878 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,61.5 - parent: 40203 - - uid: 41979 + pos: 0.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 21879 components: - type: Transform - pos: 51.5,63.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: -1.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41980 + color: '#0000FFFF' + - uid: 21880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,74.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41981 + color: '#0000FFFF' + - uid: 21881 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,75.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41982 + color: '#0000FFFF' + - uid: 21882 components: - type: Transform - pos: 53.5,78.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41983 + color: '#0000FFFF' + - uid: 21883 components: - type: Transform - pos: 53.5,77.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41984 + color: '#0000FFFF' + - uid: 21884 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,81.5 - parent: 40203 + pos: 5.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41985 + color: '#0000FFFF' + - uid: 21885 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,81.5 - parent: 40203 + pos: 6.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41986 + color: '#0000FFFF' + - uid: 21886 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,75.5 - parent: 40203 + pos: 1.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41987 + color: '#FF0000FF' + - uid: 21887 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,81.5 - parent: 40203 + pos: 2.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41988 + color: '#FF0000FF' + - uid: 21888 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,75.5 - parent: 40203 + pos: 4.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41989 + color: '#FF0000FF' + - uid: 21889 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,75.5 - parent: 40203 + pos: 5.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41990 + color: '#FF0000FF' + - uid: 21890 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,75.5 - parent: 40203 + pos: 6.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41991 + color: '#FF0000FF' + - uid: 21891 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,75.5 - parent: 40203 + pos: 9.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41992 + color: '#FF0000FF' + - uid: 21892 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,75.5 - parent: 40203 + pos: 10.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41993 + color: '#FF0000FF' + - uid: 21893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,75.5 - parent: 40203 + pos: 11.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41994 + color: '#FF0000FF' + - uid: 21894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,75.5 - parent: 40203 + pos: -7.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41995 + color: '#0000FFFF' + - uid: 21895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,76.5 - parent: 40203 + pos: -7.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41996 + color: '#0000FFFF' + - uid: 21896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,75.5 - parent: 40203 + pos: -7.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41997 + color: '#0000FFFF' + - uid: 21897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,75.5 - parent: 40203 + pos: -7.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41998 + color: '#0000FFFF' + - uid: 21898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,75.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 41999 + color: '#0000FFFF' + - uid: 21899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,75.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42000 + color: '#0000FFFF' + - uid: 21900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,75.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42001 + color: '#0000FFFF' + - uid: 21901 components: - type: Transform - pos: 69.5,74.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42002 + color: '#0000FFFF' + - uid: 21902 components: - type: Transform - pos: 69.5,73.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42003 + color: '#0000FFFF' + - uid: 21903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,72.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42004 + color: '#0000FFFF' + - uid: 21904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,72.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42005 + color: '#0000FFFF' + - uid: 21905 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,71.5 - parent: 40203 + pos: 11.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42006 + color: '#FF0000FF' + - uid: 21906 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,70.5 - parent: 40203 + pos: 11.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42007 + color: '#FF0000FF' + - uid: 21907 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,68.5 - parent: 40203 + pos: 11.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42008 + color: '#FF0000FF' + - uid: 21908 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,69.5 - parent: 40203 + pos: 11.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42009 + color: '#FF0000FF' + - uid: 21909 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,67.5 - parent: 40203 + pos: 12.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42010 + color: '#FF0000FF' + - uid: 21910 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,66.5 - parent: 40203 + pos: 12.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42011 + color: '#FF0000FF' + - uid: 21911 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,68.5 - parent: 40203 + pos: 12.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42012 + color: '#FF0000FF' + - uid: 21912 components: - type: Transform - pos: 65.5,67.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42013 + color: '#FF0000FF' + - uid: 21913 components: - type: Transform - pos: 65.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42014 + color: '#FF0000FF' + - uid: 21914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21915 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,65.5 - parent: 40203 + pos: 18.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42015 + color: '#FF0000FF' + - uid: 21916 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,65.5 - parent: 40203 + pos: 18.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42016 + color: '#0000FFFF' + - uid: 21917 components: - type: Transform - pos: 67.5,64.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42017 + color: '#0000FFFF' + - uid: 21918 components: - type: Transform - pos: 67.5,63.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42018 + color: '#FF0000FF' + - uid: 21919 components: - type: Transform - pos: 67.5,62.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42019 + color: '#0000FFFF' + - uid: 21920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21921 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,69.5 - parent: 40203 + pos: 16.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42020 + color: '#0000FFFF' + - uid: 21922 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,69.5 - parent: 40203 + pos: 14.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42021 + color: '#0000FFFF' + - uid: 21923 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,69.5 - parent: 40203 + pos: 14.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42022 + color: '#FF0000FF' + - uid: 21924 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,69.5 - parent: 40203 + pos: 13.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42023 + color: '#FF0000FF' + - uid: 21925 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,69.5 - parent: 40203 + pos: 13.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42024 + color: '#0000FFFF' + - uid: 21926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 21927 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,69.5 - parent: 40203 + pos: 17.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42025 + color: '#FF0000FF' + - uid: 21928 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,69.5 - parent: 40203 + pos: 18.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42026 + color: '#FF0000FF' + - uid: 21929 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,69.5 - parent: 40203 + pos: 18.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42027 + color: '#0000FFFF' + - uid: 21930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,69.5 - parent: 40203 + pos: 19.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42028 + color: '#FF0000FF' + - uid: 21931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,67.5 - parent: 40203 + pos: 16.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42029 + color: '#FF0000FF' + - uid: 21932 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,66.5 - parent: 40203 + pos: 19.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42030 + color: '#0000FFFF' + - uid: 21933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,66.5 - parent: 40203 + pos: 20.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42031 + color: '#0000FFFF' + - uid: 21934 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,66.5 - parent: 40203 + pos: 20.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42032 + color: '#FF0000FF' + - uid: 21935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,66.5 - parent: 40203 + pos: 15.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42033 + color: '#0000FFFF' + - uid: 21936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,66.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 21.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42034 + color: '#FF0000FF' + - uid: 21937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 11.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42035 + color: '#FF0000FF' + - uid: 21938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 11.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42036 + color: '#FF0000FF' + - uid: 21939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 8.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42037 + color: '#0000FFFF' + - uid: 21940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 8.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42038 + color: '#0000FFFF' + - uid: 21941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 8.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42039 + color: '#0000FFFF' + - uid: 21942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 8.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42040 + color: '#0000FFFF' + - uid: 21943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 8.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42041 + color: '#0000FFFF' + - uid: 21944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42042 + color: '#0000FFFF' + - uid: 21945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42043 + color: '#0000FFFF' + - uid: 21946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 12.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42044 + color: '#0000FFFF' + - uid: 21947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42045 + color: '#FF0000FF' + - uid: 21948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 12.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42046 + color: '#FF0000FF' + - uid: 21949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,66.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 12.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42047 + color: '#FF0000FF' + - uid: 21950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 7.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42048 + color: '#0000FFFF' + - uid: 21951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 6.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42049 + color: '#0000FFFF' + - uid: 21952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 5.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42050 + color: '#0000FFFF' + - uid: 21953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 4.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42051 + color: '#0000FFFF' + - uid: 21954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,66.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42052 + color: '#FF0000FF' + - uid: 21955 components: - type: Transform - pos: 29.5,67.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 9.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42053 + color: '#FF0000FF' + - uid: 21956 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,68.5 - parent: 40203 + pos: 8.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42054 + color: '#FF0000FF' + - uid: 21957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,68.5 - parent: 40203 + pos: 7.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42055 + color: '#FF0000FF' + - uid: 21958 components: - type: Transform - pos: 43.5,67.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 6.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42056 + color: '#FF0000FF' + - uid: 21959 components: - type: Transform - pos: 43.5,68.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 5.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42057 + color: '#FF0000FF' + - uid: 21960 components: - type: Transform - pos: 43.5,69.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42058 + color: '#0000FFFF' + - uid: 21961 components: - type: Transform - pos: 43.5,71.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 14.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42059 + color: '#FF0000FF' + - uid: 21962 components: - type: Transform - pos: 43.5,72.5 - parent: 40203 + pos: 12.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42060 + color: '#0000FFFF' + - uid: 21963 components: - type: Transform - pos: 43.5,73.5 - parent: 40203 + pos: 12.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42061 + color: '#0000FFFF' + - uid: 21964 components: - type: Transform - pos: 43.5,74.5 - parent: 40203 + pos: 12.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42062 + color: '#0000FFFF' + - uid: 21965 components: - type: Transform - pos: 43.5,75.5 - parent: 40203 + pos: 12.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42063 + color: '#0000FFFF' + - uid: 21966 components: - type: Transform - pos: 43.5,76.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42064 + color: '#FF0000FF' + - uid: 21967 components: - type: Transform - pos: 43.5,77.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 11.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42065 + color: '#0000FFFF' + - uid: 21968 components: - type: Transform - pos: 43.5,70.5 - parent: 40203 + pos: 13.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42066 + color: '#FF0000FF' + - uid: 21969 components: - type: Transform - pos: 43.5,79.5 - parent: 40203 + pos: 13.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42067 + color: '#FF0000FF' + - uid: 21970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,78.5 - parent: 40203 + pos: 13.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42068 + color: '#FF0000FF' + - uid: 21971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,78.5 - parent: 40203 + pos: 13.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42069 + color: '#0000FFFF' + - uid: 21972 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,78.5 - parent: 40203 + pos: 14.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42070 + color: '#FF0000FF' + - uid: 21973 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,78.5 - parent: 40203 + pos: 14.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42071 + color: '#0000FFFF' + - uid: 21974 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,78.5 - parent: 40203 + pos: 15.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42072 + color: '#0000FFFF' + - uid: 21975 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,77.5 - parent: 40203 + pos: 16.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42073 + color: '#0000FFFF' + - uid: 21976 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,76.5 - parent: 40203 + pos: 15.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42074 + color: '#FF0000FF' + - uid: 21977 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,75.5 - parent: 40203 + pos: 15.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42075 + color: '#FF0000FF' + - uid: 21978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,74.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 15.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42076 + color: '#FF0000FF' + - uid: 21979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,74.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 13.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42077 + color: '#FF0000FF' + - uid: 21980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,74.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42078 + color: '#FF0000FF' + - uid: 21981 components: - type: Transform - pos: 51.5,65.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 26.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42079 + color: '#FF0000FF' + - uid: 21982 components: - type: Transform - pos: 51.5,64.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42080 + color: '#0000FFFF' + - uid: 21983 components: - type: Transform - pos: 51.5,62.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 30.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42081 + color: '#0000FFFF' + - uid: 21984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,60.5 - parent: 40203 + pos: 27.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42082 + color: '#FF0000FF' + - uid: 21985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,60.5 - parent: 40203 + pos: 29.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42083 + color: '#FF0000FF' + - uid: 21986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,60.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 31.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42084 + color: '#0000FFFF' + - uid: 21987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,60.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42085 + color: '#0000FFFF' + - uid: 21988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,60.5 - parent: 40203 + pos: 27.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42086 + color: '#FF0000FF' + - uid: 21989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,60.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42087 + color: '#0000FFFF' + - uid: 21990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,60.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 31.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42088 + color: '#0000FFFF' + - uid: 21991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,60.5 - parent: 40203 + pos: 28.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42089 + color: '#FF0000FF' + - uid: 21992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,60.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 25.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42090 + color: '#FF0000FF' + - uid: 21993 components: - type: Transform - pos: 61.5,62.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42091 + color: '#0000FFFF' + - uid: 21994 components: - type: Transform - pos: 61.5,61.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42092 + color: '#0000FFFF' + - uid: 21995 components: - type: Transform - pos: 51.5,59.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 24.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42093 + color: '#FF0000FF' + - uid: 21996 components: - type: Transform - pos: 51.5,58.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42094 + color: '#0000FFFF' + - uid: 21997 components: - type: Transform - pos: 51.5,57.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42095 + color: '#FF0000FF' + - uid: 21998 components: - type: Transform - pos: 51.5,56.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 28.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42096 + color: '#0000FFFF' + - uid: 21999 components: - type: Transform - pos: 51.5,55.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42097 + color: '#FF0000FF' + - uid: 22000 components: - type: Transform - pos: 51.5,54.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42098 + color: '#FF0000FF' + - uid: 22001 components: - type: Transform - pos: 51.5,53.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 30.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42099 + color: '#FF0000FF' + - uid: 22002 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,52.5 - parent: 40203 + pos: 31.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42100 + color: '#FF0000FF' + - uid: 22003 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,52.5 - parent: 40203 + pos: 32.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42101 + color: '#FF0000FF' + - uid: 22004 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,52.5 - parent: 40203 + pos: 33.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42102 + color: '#FF0000FF' + - uid: 22005 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,52.5 - parent: 40203 + pos: 32.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42103 + color: '#0000FFFF' + - uid: 22006 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,52.5 - parent: 40203 + pos: 33.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42104 + color: '#0000FFFF' + - uid: 22007 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,52.5 - parent: 40203 + pos: 34.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42105 + color: '#FF0000FF' + - uid: 22008 components: - type: Transform - pos: 59.5,50.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 34.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42106 + color: '#0000FFFF' + - uid: 22009 components: - type: Transform - pos: 59.5,49.5 - parent: 40203 + pos: 25.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42107 + color: '#FF0000FF' + - uid: 22010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,48.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 21.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42108 + color: '#0000FFFF' + - uid: 22011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,48.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 21.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42109 + color: '#0000FFFF' + - uid: 22012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,48.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 21.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42110 + color: '#0000FFFF' + - uid: 22013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,48.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 21.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42111 + color: '#0000FFFF' + - uid: 22014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,48.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 21.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42112 + color: '#0000FFFF' + - uid: 22015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,48.5 - parent: 40203 + rot: 3.141592653589793 rad + pos: 21.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42113 + color: '#0000FFFF' + - uid: 22016 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,47.5 - parent: 40203 + pos: 27.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42114 + color: '#FF0000FF' + - uid: 22017 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,46.5 - parent: 40203 + pos: 27.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42115 + color: '#FF0000FF' + - uid: 22018 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,45.5 - parent: 40203 + pos: 27.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42116 + color: '#FF0000FF' + - uid: 22019 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,53.5 - parent: 40203 + pos: 30.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42117 + color: '#0000FFFF' + - uid: 22020 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,55.5 - parent: 40203 + pos: 29.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42118 + color: '#0000FFFF' + - uid: 22021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,55.5 - parent: 40203 + pos: 29.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42119 + color: '#0000FFFF' + - uid: 22022 components: - type: Transform - pos: 47.5,42.5 - parent: 40203 + pos: 29.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42120 + color: '#0000FFFF' + - uid: 22023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,44.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 24.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42121 + color: '#FF0000FF' + - uid: 22024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,44.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 23.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42122 + color: '#FF0000FF' + - uid: 22025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,44.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 22.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42123 + color: '#FF0000FF' + - uid: 22026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,42.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42124 + color: '#0000FFFF' + - uid: 22027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,41.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42125 + color: '#0000FFFF' + - uid: 22028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,39.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42126 + color: '#0000FFFF' + - uid: 22029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,38.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 25.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42127 + color: '#0000FFFF' + - uid: 22030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,39.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 27.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42128 + color: '#0000FFFF' + - uid: 22031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,38.5 - parent: 40203 + rot: 1.5707963267948966 rad + pos: 28.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42129 + color: '#0000FFFF' + - uid: 22032 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,79.5 - parent: 40203 + pos: 29.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42130 + color: '#FF0000FF' + - uid: 22033 components: - type: Transform - pos: 56.5,80.5 - parent: 40203 + pos: 25.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42131 + color: '#FF0000FF' + - uid: 22034 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,79.5 - parent: 40203 + pos: 26.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42132 + color: '#FF0000FF' + - uid: 22035 components: - type: Transform - pos: 58.5,54.5 - parent: 40203 + pos: 25.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42133 + color: '#FF0000FF' + - uid: 22036 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22037 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22038 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,44.5 - parent: 40203 + pos: 26.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42134 + color: '#FF0000FF' + - uid: 22039 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,44.5 - parent: 40203 + pos: 27.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42135 + color: '#FF0000FF' + - uid: 22040 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,44.5 - parent: 40203 + pos: 35.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42136 + color: '#0000FFFF' + - uid: 22041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,41.5 - parent: 40203 + rot: -1.5707963267948966 rad + pos: 37.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' -- proto: GasPipeTJunction - entities: + color: '#0000FFFF' - uid: 22042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,12.5 + rot: -1.5707963267948966 rad + pos: 38.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-41.5 + rot: -1.5707963267948966 rad + pos: 39.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22044 components: - type: Transform - pos: -25.5,15.5 + rot: -1.5707963267948966 rad + pos: 40.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22045 components: - type: Transform - pos: -26.5,14.5 + rot: -1.5707963267948966 rad + pos: 41.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 + rot: 3.141592653589793 rad + pos: 35.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-27.5 + pos: 36.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22048 components: - type: Transform - pos: -46.5,-4.5 + pos: 36.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-13.5 + rot: -1.5707963267948966 rad + pos: 37.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,49.5 + rot: -1.5707963267948966 rad + pos: 37.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22051 components: - type: Transform - pos: -18.5,24.5 + rot: -1.5707963267948966 rad + pos: 36.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22052 components: - type: Transform - pos: -24.5,25.5 + rot: 1.5707963267948966 rad + pos: 39.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22053 components: - type: Transform - pos: 5.5,-41.5 + rot: 1.5707963267948966 rad + pos: 40.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22054 components: - type: Transform - pos: 10.5,48.5 + rot: -1.5707963267948966 rad + pos: 42.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,37.5 + rot: 3.141592653589793 rad + pos: 41.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22056 components: - type: Transform - pos: 59.5,7.5 + rot: 3.141592653589793 rad + pos: 41.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22057 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,6.5 + rot: 1.5707963267948966 rad + pos: 42.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22058 components: - type: Transform - pos: -6.5,69.5 + rot: 1.5707963267948966 rad + pos: 43.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,68.5 + rot: 1.5707963267948966 rad + pos: 44.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22060 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,56.5 + pos: 45.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,8.5 + rot: 3.141592653589793 rad + pos: 43.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22062 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-17.5 + pos: 43.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 + rot: 3.141592653589793 rad + pos: 43.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 + rot: 3.141592653589793 rad + pos: 43.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22065 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,9.5 + pos: 45.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,3.5 + rot: 1.5707963267948966 rad + pos: 44.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22067 components: - type: Transform - pos: -6.5,-15.5 + rot: 1.5707963267948966 rad + pos: 46.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-2.5 + rot: 3.141592653589793 rad + pos: 28.5,35.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -194700,85 +196339,87 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-17.5 + pos: 28.5,34.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 + rot: 3.141592653589793 rad + pos: 28.5,33.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22071 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,48.5 + pos: 28.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22072 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-12.5 + pos: -2.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#DC143CFF' - uid: 22073 components: - type: Transform - pos: -20.5,5.5 + rot: -1.5707963267948966 rad + pos: -3.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#DC143CFF' - uid: 22074 components: - type: Transform - pos: -22.5,11.5 + rot: -1.5707963267948966 rad + pos: -4.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#DC143CFF' - uid: 22075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#DC143CFF' - uid: 22076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,8.5 + rot: -1.5707963267948966 rad + pos: -6.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#DC143CFF' - uid: 22077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 + rot: -1.5707963267948966 rad + pos: -7.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#DC143CFF' - uid: 22078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,1.5 + rot: -1.5707963267948966 rad + pos: -8.5,35.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#DC143CFF' - uid: 22079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,11.5 + rot: 1.5707963267948966 rad + pos: -6.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -194786,394 +196427,385 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,7.5 + pos: -4.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 + rot: 3.141592653589793 rad + pos: 62.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,12.5 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22083 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,12.5 + rot: 1.5707963267948966 rad + pos: -22.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-2.5 + rot: 1.5707963267948966 rad + pos: -21.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22085 components: - type: Transform - pos: -4.5,-53.5 + rot: 3.141592653589793 rad + pos: -15.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22086 components: - type: Transform - pos: -5.5,-53.5 + pos: -12.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-45.5 + rot: 3.141592653589793 rad + pos: -12.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-38.5 + rot: -1.5707963267948966 rad + pos: -13.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 + rot: 3.141592653589793 rad + pos: -12.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-53.5 + pos: -12.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-54.5 + rot: 1.5707963267948966 rad + pos: -16.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22092 components: - type: Transform - pos: 17.5,-37.5 + rot: 1.5707963267948966 rad + pos: -17.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22093 components: - type: Transform - pos: -24.5,-44.5 + pos: -10.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-44.5 + rot: 1.5707963267948966 rad + pos: -5.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,51.5 + rot: -1.5707963267948966 rad + pos: 62.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' + color: '#0000FFFF' - uid: 22096 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,51.5 + pos: 10.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' + color: '#FF0000FF' - uid: 22097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-54.5 + pos: -8.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-43.5 + rot: -1.5707963267948966 rad + pos: 63.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-43.5 + pos: -8.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22100 components: - type: Transform - pos: 18.5,-37.5 + pos: -8.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-48.5 + pos: -8.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-42.5 + pos: -10.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 + pos: -10.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22104 components: - type: Transform - pos: 2.5,-48.5 + pos: 53.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-50.5 + rot: -1.5707963267948966 rad + pos: 11.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-46.5 + rot: 3.141592653589793 rad + pos: 57.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-58.5 + rot: 3.141592653589793 rad + pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22108 components: - type: Transform - pos: -6.5,-53.5 + pos: -8.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-45.5 + pos: 61.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-38.5 + pos: 61.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-47.5 + pos: 57.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-43.5 + pos: 57.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22113 components: - type: Transform - pos: -23.5,-46.5 + rot: 1.5707963267948966 rad + pos: 53.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-46.5 + rot: 1.5707963267948966 rad + pos: 55.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-46.5 + rot: 1.5707963267948966 rad + pos: 57.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22116 components: - type: Transform - pos: 75.5,-38.5 + rot: 1.5707963267948966 rad + pos: 54.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-44.5 + rot: 1.5707963267948966 rad + pos: 60.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-45.5 + rot: 1.5707963267948966 rad + pos: 55.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22119 components: - type: Transform - pos: 59.5,-38.5 + pos: 52.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22120 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-37.5 + pos: 56.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22121 components: - type: Transform - pos: 69.5,-40.5 + pos: 52.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22122 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-48.5 + pos: 56.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-48.5 + pos: 56.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,-46.5 + pos: 59.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22125 components: - type: Transform - pos: 74.5,-46.5 + rot: 1.5707963267948966 rad + pos: 1.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 84.5,-45.5 + rot: 1.5707963267948966 rad + pos: 1.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - uid: 22127 components: - type: Transform - pos: 73.5,-40.5 + rot: -1.5707963267948966 rad + pos: 63.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-40.5 + rot: -1.5707963267948966 rad + pos: 63.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-47.5 + rot: 3.141592653589793 rad + pos: 62.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-44.5 + rot: 3.141592653589793 rad + pos: 62.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -195181,60 +196813,60 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-46.5 + pos: 61.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22132 components: - type: Transform - pos: 3.5,-49.5 + rot: 3.141592653589793 rad + pos: 62.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22133 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-49.5 + rot: 1.5707963267948966 rad + pos: 60.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-46.5 + rot: 1.5707963267948966 rad + pos: 58.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22135 components: - type: Transform - pos: -13.5,-44.5 + pos: 53.5,9.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-41.5 + pos: 53.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-41.5 + pos: 52.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22138 components: - type: Transform - pos: -3.5,-54.5 + rot: 3.141592653589793 rad + pos: 61.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -195242,15 +196874,15 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-43.5 + pos: 61.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-35.5 + rot: 1.5707963267948966 rad + pos: 3.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -195258,54 +196890,53 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-34.5 + pos: 2.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - uid: 22142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,11.5 + pos: 2.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,12.5 + rot: 1.5707963267948966 rad + pos: 4.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-4.5 + rot: 1.5707963267948966 rad + pos: 5.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22145 components: - type: Transform - pos: -34.5,-2.5 + rot: 3.141592653589793 rad + pos: 61.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-5.5 + rot: 3.141592653589793 rad + pos: 62.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22147 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-11.5 + pos: 60.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -195313,23 +196944,23 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-13.5 + pos: -110.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-9.5 + rot: 1.5707963267948966 rad + pos: -7.5,36.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-9.5 + rot: 1.5707963267948966 rad + pos: 56.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -195337,141 +196968,135 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-9.5 + pos: 54.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-4.5 + pos: -110.5,28.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,1.5 + rot: 1.5707963267948966 rad + pos: -115.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-2.5 + rot: 1.5707963267948966 rad + pos: -114.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,1.5 + pos: -110.5,27.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 + rot: -1.5707963267948966 rad + pos: -103.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,7.5 + rot: 3.141592653589793 rad + pos: -105.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22158 components: - type: Transform - pos: -34.5,7.5 + rot: 3.141592653589793 rad + pos: -105.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,4.5 + rot: 3.141592653589793 rad + pos: -106.5,13.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,4.5 + rot: -1.5707963267948966 rad + pos: 9.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,12.5 + pos: -10.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,11.5 + rot: -1.5707963267948966 rad + pos: 61.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,10.5 + rot: 1.5707963267948966 rad + pos: -3.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,10.5 + pos: -99.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22165 components: - type: Transform - pos: -47.5,10.5 + pos: -99.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,10.5 + pos: -99.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,10.5 + pos: -100.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,11.5 + pos: -100.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -195479,228 +197104,226 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-0.5 + pos: -102.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,6.5 + rot: -1.5707963267948966 rad + pos: -100.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,46.5 + rot: -1.5707963267948966 rad + pos: -104.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22172 components: - type: Transform - pos: -8.5,-15.5 + rot: -1.5707963267948966 rad + pos: -105.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22173 components: - type: Transform - pos: 20.5,11.5 + rot: -1.5707963267948966 rad + pos: -106.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22174 components: - type: Transform - pos: -10.5,-17.5 + rot: -1.5707963267948966 rad + pos: -102.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,47.5 + rot: -1.5707963267948966 rad + pos: -103.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22176 components: - type: Transform - pos: -7.5,46.5 + rot: -1.5707963267948966 rad + pos: -104.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22177 components: - type: Transform - pos: -24.5,46.5 + rot: -1.5707963267948966 rad + pos: -105.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,47.5 + rot: -1.5707963267948966 rad + pos: -107.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22179 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,46.5 + pos: -101.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22180 components: - type: Transform - pos: -21.5,44.5 + pos: -99.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,47.5 + pos: -106.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,48.5 + pos: -106.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22183 components: - type: Transform - pos: -17.5,54.5 + pos: -106.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22184 components: - type: Transform - pos: -14.5,48.5 + pos: -106.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22185 components: - type: Transform - pos: -7.5,48.5 + pos: -105.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,46.5 + pos: -105.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22187 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,48.5 + pos: -110.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22188 components: - type: Transform - pos: -4.5,48.5 + pos: -105.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,57.5 + pos: -105.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,18.5 + rot: 3.141592653589793 rad + pos: -107.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,20.5 + rot: 3.141592653589793 rad + pos: -105.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22192 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,19.5 + pos: -106.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,21.5 + pos: -108.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22194 components: - type: Transform - pos: -9.5,57.5 + pos: -108.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,48.5 + pos: -108.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,49.5 + pos: -108.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,40.5 + rot: 1.5707963267948966 rad + pos: -108.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22198 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,39.5 + pos: -109.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -195708,22 +197331,23 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,39.5 + pos: -110.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,51.5 + rot: 1.5707963267948966 rad + pos: -111.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22201 components: - type: Transform - pos: 6.5,49.5 + rot: 1.5707963267948966 rad + pos: -112.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -195731,355 +197355,365 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,58.5 + pos: -109.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,59.5 + rot: 1.5707963267948966 rad + pos: -110.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22204 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,57.5 + pos: -111.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22205 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,61.5 + pos: -112.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22206 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,60.5 + pos: -113.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,69.5 + rot: 1.5707963267948966 rad + pos: -114.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,68.5 + rot: 1.5707963267948966 rad + pos: -113.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22209 components: - type: Transform - pos: -23.5,55.5 + pos: -115.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,55.5 + pos: -110.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22211 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,37.5 + pos: -113.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,56.5 + rot: 1.5707963267948966 rad + pos: -115.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,56.5 + rot: 1.5707963267948966 rad + pos: -114.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,56.5 + rot: 1.5707963267948966 rad + pos: -115.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22215 components: - type: Transform - pos: 14.5,56.5 + rot: 1.5707963267948966 rad + pos: -114.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22216 components: - type: Transform - pos: 20.5,58.5 + rot: 1.5707963267948966 rad + pos: -112.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22217 components: - type: Transform - pos: 5.5,58.5 + rot: 1.5707963267948966 rad + pos: -115.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,58.5 + rot: 1.5707963267948966 rad + pos: -114.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22219 components: - type: Transform - pos: 13.5,58.5 + rot: 1.5707963267948966 rad + pos: -113.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 + rot: 1.5707963267948966 rad + pos: -114.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22221 components: - type: Transform - pos: 11.5,60.5 + rot: 1.5707963267948966 rad + pos: -115.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22222 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,56.5 + rot: 1.5707963267948966 rad + pos: -115.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22223 components: - type: Transform - pos: 23.5,56.5 + rot: 1.5707963267948966 rad + pos: -114.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22224 components: - type: Transform - pos: 24.5,57.5 + rot: 1.5707963267948966 rad + pos: -113.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,50.5 + pos: -107.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#0000FFFF' - uid: 22226 components: - type: Transform - pos: 15.5,2.5 + pos: -107.5,27.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22227 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-0.5 + pos: -107.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-0.5 + pos: -106.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,1.5 + pos: -106.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22230 components: - type: Transform - pos: 10.5,1.5 + pos: -111.5,28.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22231 components: - type: Transform - pos: 9.5,0.5 + pos: -111.5,27.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,0.5 + rot: -1.5707963267948966 rad + pos: -104.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22233 components: - type: Transform - pos: 5.5,2.5 + rot: -1.5707963267948966 rad + pos: -102.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22234 components: - type: Transform - pos: -0.5,2.5 + rot: -1.5707963267948966 rad + pos: -103.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22235 components: - type: Transform - pos: -0.5,0.5 + rot: -1.5707963267948966 rad + pos: -105.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22236 components: - type: Transform - pos: 5.5,0.5 + rot: -1.5707963267948966 rad + pos: -102.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-0.5 + rot: -1.5707963267948966 rad + pos: -103.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22238 components: - type: Transform - pos: -10.5,2.5 + rot: -1.5707963267948966 rad + pos: -104.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22239 components: - type: Transform - pos: -4.5,0.5 + rot: 3.141592653589793 rad + pos: -107.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22240 components: - type: Transform - pos: -5.5,1.5 + rot: 3.141592653589793 rad + pos: -107.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 + rot: 1.5707963267948966 rad + pos: -106.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 + pos: -105.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,0.5 + rot: -1.5707963267948966 rad + pos: -107.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 + rot: 3.141592653589793 rad + pos: -105.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,2.5 + rot: 1.5707963267948966 rad + pos: -100.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22246 components: - type: Transform - pos: 11.5,32.5 + rot: -1.5707963267948966 rad + pos: -108.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 + rot: 3.141592653589793 rad + pos: -110.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22248 components: - type: Transform - pos: 11.5,-3.5 + rot: -1.5707963267948966 rad + pos: -109.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -196087,15 +197721,15 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-8.5 + pos: -110.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22250 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 + rot: -1.5707963267948966 rad + pos: -111.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -196103,37 +197737,39 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-9.5 + pos: -111.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22252 components: - type: Transform - pos: 17.5,-8.5 + rot: -1.5707963267948966 rad + pos: -112.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22253 components: - type: Transform - pos: -7.5,-6.5 + rot: -1.5707963267948966 rad + pos: -111.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-4.5 + rot: 1.5707963267948966 rad + pos: -110.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-6.5 + rot: 1.5707963267948966 rad + pos: -108.5,26.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -196141,208 +197777,198 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,3.5 + pos: -107.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22257 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-17.5 + rot: 1.5707963267948966 rad + pos: -105.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-7.5 + pos: -113.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 + pos: -113.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 + pos: -113.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,10.5 + pos: -113.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,13.5 + pos: -113.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 + pos: -113.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,12.5 + pos: -113.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22265 components: - type: Transform - pos: 7.5,12.5 + pos: -113.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22266 components: - type: Transform - pos: 17.5,25.5 + pos: -104.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22267 components: - type: Transform - pos: 15.5,24.5 + pos: -104.5,24.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,24.5 + pos: -104.5,25.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,25.5 + pos: -112.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,26.5 + pos: -112.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22271 components: - type: Transform - pos: 8.5,31.5 + pos: -112.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22272 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,25.5 + pos: -112.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22273 components: - type: Transform - pos: 30.5,37.5 + pos: -112.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,32.5 + pos: -112.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22275 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,31.5 + pos: -107.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,36.5 + rot: -1.5707963267948966 rad + pos: -109.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,35.5 + rot: 3.141592653589793 rad + pos: -110.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,25.5 + rot: -1.5707963267948966 rad + pos: -106.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22279 components: - type: Transform - pos: 31.5,25.5 + rot: 3.141592653589793 rad + pos: -105.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,32.5 + rot: 3.141592653589793 rad + pos: -105.5,21.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22281 components: - type: Transform - pos: 27.5,28.5 + rot: 3.141592653589793 rad + pos: -105.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22282 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,25.5 + pos: -105.5,19.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -196350,23 +197976,23 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,33.5 + pos: -105.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,32.5 + rot: 3.141592653589793 rad + pos: -111.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,23.5 + rot: 3.141592653589793 rad + pos: -110.5,29.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -196374,30 +198000,30 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,22.5 + pos: -107.5,29.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22287 components: - type: Transform - pos: 41.5,22.5 + rot: 3.141592653589793 rad + pos: -106.5,29.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,20.5 + pos: -110.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22289 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,32.5 + rot: -1.5707963267948966 rad + pos: -103.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -196405,237 +198031,236 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,2.5 + pos: -102.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22291 components: - type: Transform - pos: 6.5,21.5 + pos: -104.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22292 components: - type: Transform - pos: 10.5,21.5 + pos: -104.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,20.5 + pos: -104.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,23.5 + pos: -104.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,7.5 + pos: -104.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,6.5 + pos: -104.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22297 components: - type: Transform - pos: 6.5,20.5 + pos: -104.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22298 components: - type: Transform - pos: -106.5,14.5 + rot: -1.5707963267948966 rad + pos: -101.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,23.5 + rot: 1.5707963267948966 rad + pos: -101.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22300 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,4.5 + rot: -1.5707963267948966 rad + pos: -101.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22301 components: - type: Transform - pos: -103.5,4.5 + rot: 1.5707963267948966 rad + pos: -99.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,2.5 + rot: 1.5707963267948966 rad + pos: -98.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22303 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,3.5 + pos: -99.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - uid: 22304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,9.5 + rot: 1.5707963267948966 rad + pos: -98.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,11.5 + rot: 1.5707963267948966 rad + pos: -106.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22306 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,16.5 + rot: 1.5707963267948966 rad + pos: -107.5,9.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22307 components: - type: Transform - pos: -107.5,6.5 + rot: -1.5707963267948966 rad + pos: -107.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22308 components: - type: Transform - pos: -108.5,7.5 + rot: 1.5707963267948966 rad + pos: -101.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,15.5 + rot: 1.5707963267948966 rad + pos: -99.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,26.5 + rot: 1.5707963267948966 rad + pos: 8.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22311 components: - type: Transform rot: -1.5707963267948966 rad - pos: -113.5,19.5 + pos: -98.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,26.5 + rot: 1.5707963267948966 rad + pos: 7.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,14.5 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,14.5 + rot: 1.5707963267948966 rad + pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,14.5 + rot: 1.5707963267948966 rad + pos: 10.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22316 components: - type: Transform - pos: -108.5,16.5 + rot: 1.5707963267948966 rad + pos: 12.5,45.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22317 components: - type: Transform - pos: -109.5,26.5 + pos: 13.5,44.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,16.5 + pos: 13.5,43.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22319 components: - type: Transform - pos: -112.5,24.5 + pos: 13.5,42.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,23.5 + pos: 13.5,41.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' @@ -196643,78 +198268,74 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,22.5 + pos: 12.5,40.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,24.5 + pos: 11.5,39.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,24.5 + pos: 11.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,24.5 + pos: 11.5,47.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,20.5 + pos: 11.5,46.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,22.5 + rot: 1.5707963267948966 rad + pos: 12.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22327 components: - type: Transform - pos: -29.5,-14.5 + rot: -1.5707963267948966 rad + pos: -30.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-14.5 + rot: 1.5707963267948966 rad + pos: -33.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,13.5 + pos: -25.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-33.5 + pos: -30.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -196722,7 +198343,7 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-36.5 + pos: -31.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -196730,436 +198351,319 @@ entities: components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-37.5 + pos: -32.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22333 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-17.5 + rot: 1.5707963267948966 rad + pos: -28.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22334 - components: - - type: Transform - pos: 4.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 42137 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,60.5 - parent: 40203 - - type: AtmosPipeColor - color: '#888888FF' - - uid: 42138 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,61.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42139 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,61.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42140 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,76.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42141 - components: - - type: Transform - pos: 56.5,81.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,75.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42143 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,72.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42144 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,61.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42145 - components: - - type: Transform - pos: 67.5,65.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42146 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,68.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42147 - components: - - type: Transform - pos: 51.5,66.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,66.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,78.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,60.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42151 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,52.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42152 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,40.5 - parent: 40203 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,40.5 - parent: 40203 + pos: -25.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' -- proto: GasPort - entities: + color: '#0000FFFF' - uid: 22335 components: - type: Transform - pos: 47.5,-52.5 + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22336 components: - type: Transform - pos: 46.5,-52.5 + pos: -23.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22337 components: - type: Transform - pos: 48.5,-52.5 + rot: 1.5707963267948966 rad + pos: -24.5,-13.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22338 components: - type: Transform - pos: 49.5,-52.5 + pos: -23.5,-16.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22339 components: - type: Transform - pos: 43.5,-37.5 + pos: -23.5,-15.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22340 components: - type: Transform - pos: -24.5,52.5 + pos: -23.5,-14.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22341 components: - type: Transform - pos: -20.5,52.5 + rot: -1.5707963267948966 rad + pos: -28.5,-14.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-57.5 + rot: -1.5707963267948966 rad + pos: -28.5,-18.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22343 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-55.5 + pos: -29.5,-17.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22344 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-55.5 + pos: -29.5,-16.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,43.5 + rot: 3.141592653589793 rad + pos: -29.5,-15.5 parent: 2 - - uid: 42154 - components: - - type: Transform - pos: 38.5,83.5 - parent: 40203 - - uid: 42155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,63.5 - parent: 40203 - - uid: 42156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,61.5 - parent: 40203 -- proto: GasPressurePump - entities: + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-54.5 + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-54.5 + rot: 1.5707963267948966 rad + pos: -50.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22348 components: - type: Transform - pos: -15.5,-64.5 + rot: 1.5707963267948966 rad + pos: -49.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#D75500FF' + color: '#0000FFFF' - uid: 22349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-64.5 + rot: 1.5707963267948966 rad + pos: -53.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' + color: '#0000FFFF' - uid: 22350 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-59.5 + pos: -52.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#5E6BFFFF' + color: '#0000FFFF' - uid: 22351 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-61.5 + pos: -47.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' + color: '#0000FFFF' - uid: 22352 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-57.5 + pos: -20.5,18.5 parent: 2 - - type: AtmosPipeColor - color: '#5E6BFFFF' - uid: 22353 components: - type: Transform - pos: -11.5,-64.5 + rot: -1.5707963267948966 rad + pos: -24.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' + color: '#0000FFFF' - uid: 22354 components: - type: Transform - pos: -7.5,-64.5 + rot: -1.5707963267948966 rad + pos: -27.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' + color: '#0000FFFF' - uid: 22355 components: - type: Transform - pos: -3.5,-64.5 + rot: -1.5707963267948966 rad + pos: -24.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#7B29BAFF' + color: '#FF0000FF' - uid: 22356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-64.5 + rot: -1.5707963267948966 rad + pos: -26.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#525252FF' + color: '#FF0000FF' - uid: 22357 components: - type: Transform - pos: 0.5,-64.5 + pos: -25.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22358 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-64.5 + rot: -1.5707963267948966 rad + pos: -22.5,19.5 parent: 2 - - type: AtmosPipeColor - color: '#D75500FF' - uid: 22359 components: - type: Transform - pos: 47.5,-55.5 + rot: 1.5707963267948966 rad + pos: -18.5,18.5 parent: 2 - uid: 22360 components: - type: Transform - pos: 50.5,-55.5 + rot: -1.5707963267948966 rad + pos: -23.5,19.5 parent: 2 - uid: 22361 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-39.5 + rot: 1.5707963267948966 rad + pos: -23.5,14.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22362 components: - - type: MetaData - name: waste - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-52.5 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' + color: '#FF0000FF' - uid: 22363 components: - type: Transform - pos: 39.5,-39.5 + rot: 1.5707963267948966 rad + pos: -37.5,-13.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-54.5 + rot: 1.5707963267948966 rad + pos: -40.5,-14.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-54.5 + rot: 1.5707963267948966 rad + pos: -41.5,-14.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,51.5 + rot: 1.5707963267948966 rad + pos: -39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' + color: '#0000FFFF' - uid: 22367 components: - type: Transform - pos: -24.5,51.5 + pos: -39.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' + color: '#FF0000FF' - uid: 22368 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-64.5 + pos: -39.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#A1A1A1FF' + color: '#FF0000FF' - uid: 22369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-63.5 + pos: -39.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF5E5EFF' + color: '#FF0000FF' - uid: 22370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-64.5 + rot: -1.5707963267948966 rad + pos: -40.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' + color: '#FF0000FF' - uid: 22371 components: - type: Transform - pos: -17.5,-64.5 + rot: -1.5707963267948966 rad + pos: -41.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' + color: '#FF0000FF' - uid: 22372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-56.5 + rot: -1.5707963267948966 rad + pos: -42.5,-15.5 parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22373 components: - type: Transform - pos: 0.5,-57.5 + rot: 1.5707963267948966 rad + pos: -43.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' @@ -197167,108257 +198671,115248 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-57.5 + pos: -39.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasRecycler - entities: + color: '#FF0000FF' - uid: 22375 components: - type: Transform - pos: -10.5,-58.5 + rot: 1.5707963267948966 rad + pos: -36.5,-11.5 parent: 2 -- proto: GasThermoMachineFreezer - entities: + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-40.5 + rot: 3.141592653589793 rad + pos: -38.5,12.5 parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22377 components: - type: Transform - pos: -22.5,52.5 + rot: 3.141592653589793 rad + pos: -38.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' + color: '#0000FFFF' - uid: 22378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-56.5 + rot: 3.141592653589793 rad + pos: -47.5,0.5 parent: 2 -- proto: GasThermoMachineFreezerEnabled - entities: + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22379 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,36.5 + pos: -48.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' -- proto: GasThermoMachineHeater - entities: - uid: 22380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-56.5 + pos: -36.5,13.5 parent: 2 -- proto: GasVentPump - entities: + - type: AtmosPipeColor + color: '#FF0000FF' - uid: 22381 components: - type: Transform - pos: -50.5,16.5 + pos: -55.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 115 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22382 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,4.5 + pos: -48.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,14.5 + rot: 3.141592653589793 rad + pos: -47.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 120 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22384 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-7.5 + pos: -23.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22385 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,24.5 + pos: -25.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 161 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22386 components: - type: Transform - pos: 58.5,7.5 + rot: 3.141592653589793 rad + pos: -47.5,2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,19.5 + rot: 3.141592653589793 rad + pos: -48.5,5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 + - type: AtmosPipeColor + color: '#0000FFFF' - uid: 22388 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 + rot: 1.5707963267948966 rad + pos: -37.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,39.5 + pos: -43.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 158 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 + pos: -46.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 80 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-20.5 + pos: -5.5,-39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 79 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-8.5 + pos: -5.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 76 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,3.5 + pos: -5.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,9.5 + pos: -5.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 + pos: -5.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-14.5 + pos: -7.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22397 components: - type: Transform - pos: -7.5,-16.5 + rot: -1.5707963267948966 rad + pos: -4.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22398 components: - type: Transform - pos: 27.5,-52.5 + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 31 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-43.5 + pos: -6.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 34 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-38.5 + pos: -5.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 35 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22401 components: - type: Transform - pos: 18.5,-40.5 + rot: 1.5707963267948966 rad + pos: -5.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-44.5 + rot: 1.5707963267948966 rad + pos: -4.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22403 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,-40.5 + pos: 45.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,-47.5 + pos: 61.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-34.5 + pos: 61.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,-44.5 + rot: 1.5707963267948966 rad + pos: 52.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22407 components: - type: Transform - pos: 89.5,-42.5 + rot: 1.5707963267948966 rad + pos: 53.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#FF0000FF' - uid: 22408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-45.5 + rot: 3.141592653589793 rad + pos: 32.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 45 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22409 components: - type: Transform - pos: 27.5,-34.5 + pos: 47.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22410 components: - type: Transform - pos: -26.5,-45.5 + rot: 3.141592653589793 rad + pos: 2.5,34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22411 components: - type: Transform - pos: -20.5,-36.5 + rot: 1.5707963267948966 rad + pos: 42.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22412 components: - type: Transform - pos: 67.5,-33.5 + rot: -1.5707963267948966 rad + pos: 54.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-39.5 + pos: 61.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-37.5 + pos: 61.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-53.5 + pos: 61.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-53.5 + pos: 61.5,-25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 160 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22417 components: - type: Transform - pos: 23.5,-36.5 + rot: 3.141592653589793 rad + pos: 61.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22418 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-42.5 + pos: 61.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22419 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-49.5 + pos: 61.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22420 components: - type: Transform - pos: 7.5,-49.5 + rot: 3.141592653589793 rad + pos: 61.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-50.5 + rot: 3.141592653589793 rad + pos: 61.5,-6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22422 components: - type: Transform - pos: -14.5,-40.5 + rot: 3.141592653589793 rad + pos: 61.5,-3.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-49.5 + rot: 3.141592653589793 rad + pos: 61.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 28 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22424 components: - type: Transform - pos: -16.5,-45.5 + rot: 3.141592653589793 rad + pos: 60.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-41.5 + rot: 3.141592653589793 rad + pos: 2.5,32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-50.5 + rot: 1.5707963267948966 rad + pos: 52.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22427 components: - type: Transform - pos: 1.5,-53.5 + rot: 1.5707963267948966 rad + pos: 55.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-54.5 + rot: 1.5707963267948966 rad + pos: 53.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-55.5 + rot: -1.5707963267948966 rad + pos: 50.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-47.5 + rot: 3.141592653589793 rad + pos: 2.5,35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-43.5 + rot: 3.141592653589793 rad + pos: 51.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-34.5 + rot: 1.5707963267948966 rad + pos: 54.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-45.5 + pos: 51.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22434 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,6.5 + pos: 2.5,33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,10.5 + rot: 1.5707963267948966 rad + pos: 56.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 56 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22436 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,3.5 + pos: 2.5,36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22437 components: - type: Transform - pos: -35.5,11.5 + rot: 3.141592653589793 rad + pos: 51.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22438 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,11.5 + rot: 1.5707963267948966 rad + pos: 30.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 55 - type: AtmosPipeColor color: '#0000FFFF' - uid: 22439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,47.5 + rot: 1.5707963267948966 rad + pos: 50.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22440 + color: '#FF0000FF' + - uid: 42348 components: - type: Transform - pos: -8.5,53.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 156 + rot: 1.5707963267948966 rad + pos: 36.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22441 + color: '#800000FF' + - uid: 42349 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 147 + pos: 35.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22442 + color: '#800000FF' + - uid: 42350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 + rot: -1.5707963267948966 rad + pos: 39.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22443 + color: '#888888FF' + - uid: 42351 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 + rot: 1.5707963267948966 rad + pos: 38.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22444 + color: '#888888FF' + - uid: 42352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,58.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 + pos: 40.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22445 + color: '#888888FF' + - uid: 42353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 + rot: 1.5707963267948966 rad + pos: 37.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22446 + color: '#800000FF' + - uid: 42354 + components: + - type: Transform + pos: 40.5,62.5 + parent: 40599 + - type: AtmosPipeColor + color: '#888888FF' + - uid: 42355 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 145 + pos: 46.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22447 + color: '#888888FF' + - uid: 42356 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 145 + pos: 46.5,62.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22448 + color: '#888888FF' + - uid: 42357 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 144 + pos: 41.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22449 + color: '#888888FF' + - uid: 42358 components: - type: Transform - pos: -11.5,70.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 + rot: 1.5707963267948966 rad + pos: 42.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22450 + color: '#888888FF' + - uid: 42359 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,57.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 + pos: 43.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22451 + color: '#888888FF' + - uid: 42360 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,59.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 + pos: 44.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22452 + color: '#888888FF' + - uid: 42361 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 152 + pos: 45.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22453 + color: '#888888FF' + - uid: 42362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 154 + pos: 43.5,62.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22454 + color: '#800000FF' + - uid: 42363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 153 + rot: 1.5707963267948966 rad + pos: 40.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22455 + color: '#800000FF' + - uid: 42364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,60.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 + rot: 1.5707963267948966 rad + pos: 39.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22456 + color: '#800000FF' + - uid: 42365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,72.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 + rot: 1.5707963267948966 rad + pos: 38.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22457 + color: '#800000FF' + - uid: 42366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 148 + rot: 3.141592653589793 rad + pos: 34.5,58.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22458 + color: '#888888FF' + - uid: 42367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 155 + rot: 1.5707963267948966 rad + pos: 35.5,59.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22459 + color: '#888888FF' + - uid: 42368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,57.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 37.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22460 + color: '#888888FF' + - uid: 42369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,57.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22461 + pos: 38.5,81.5 + parent: 40599 + - uid: 42370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22462 + pos: 36.5,81.5 + parent: 40599 + - uid: 42371 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22463 + pos: 64.5,63.5 + parent: 40599 + - uid: 42372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22464 + rot: 1.5707963267948966 rad + pos: 65.5,63.5 + parent: 40599 + - uid: 42373 components: - type: Transform - pos: 18.5,61.5 - parent: 2 + rot: 1.5707963267948966 rad + pos: 64.5,61.5 + parent: 40599 + - uid: 42374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 65.5,61.5 + parent: 40599 + - uid: 42375 + components: + - type: Transform + pos: 51.5,63.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22465 + color: '#800000FF' + - uid: 42376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,57.5 - parent: 2 + rot: 3.141592653589793 rad + pos: 52.5,74.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22466 + color: '#800000FF' + - uid: 42377 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,53.5 - parent: 2 + pos: 52.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22467 + color: '#800000FF' + - uid: 42378 components: - type: Transform - pos: -27.5,50.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 146 + pos: 53.5,78.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22468 + color: '#800000FF' + - uid: 42379 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 + pos: 53.5,77.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22469 + color: '#800000FF' + - uid: 42380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 + rot: -1.5707963267948966 rad + pos: 55.5,81.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22470 + color: '#800000FF' + - uid: 42381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 + rot: -1.5707963267948966 rad + pos: 57.5,81.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22471 + color: '#800000FF' + - uid: 42382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 + rot: -1.5707963267948966 rad + pos: 55.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22472 + color: '#800000FF' + - uid: 42383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 + rot: -1.5707963267948966 rad + pos: 58.5,81.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22473 + color: '#800000FF' + - uid: 42384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 + rot: -1.5707963267948966 rad + pos: 56.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22474 + color: '#800000FF' + - uid: 42385 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 + pos: 58.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22475 + color: '#800000FF' + - uid: 42386 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 + rot: -1.5707963267948966 rad + pos: 59.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22476 + color: '#800000FF' + - uid: 42387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-6.5 - parent: 2 + pos: 60.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22477 + color: '#800000FF' + - uid: 42388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-3.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 61.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22478 + color: '#800000FF' + - uid: 42389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-10.5 - parent: 2 + rot: -1.5707963267948966 rad + pos: 62.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22479 + color: '#800000FF' + - uid: 42390 components: - type: Transform - pos: 12.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 + rot: -1.5707963267948966 rad + pos: 57.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22480 + color: '#800000FF' + - uid: 42391 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 + pos: 63.5,76.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22481 + color: '#800000FF' + - uid: 42392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 78 + rot: 1.5707963267948966 rad + pos: 64.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22482 + color: '#800000FF' + - uid: 42393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 + rot: 1.5707963267948966 rad + pos: 65.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22483 + color: '#800000FF' + - uid: 42394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 + rot: 1.5707963267948966 rad + pos: 66.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22484 + color: '#800000FF' + - uid: 42395 components: - type: Transform - pos: -2.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 + rot: 1.5707963267948966 rad + pos: 67.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22485 + color: '#800000FF' + - uid: 42396 components: - type: Transform - pos: 7.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 + rot: 1.5707963267948966 rad + pos: 68.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22486 + color: '#800000FF' + - uid: 42397 components: - type: Transform - pos: 22.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 84 + pos: 69.5,74.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22487 + color: '#800000FF' + - uid: 42398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 85 + pos: 69.5,73.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22488 + color: '#800000FF' + - uid: 42399 components: - type: Transform - pos: 9.5,26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 + rot: -1.5707963267948966 rad + pos: 70.5,72.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22489 + color: '#800000FF' + - uid: 42400 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 + pos: 71.5,72.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22490 + color: '#800000FF' + - uid: 42401 components: - type: Transform - pos: 3.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 62 + rot: 3.141592653589793 rad + pos: 69.5,71.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22491 + color: '#800000FF' + - uid: 42402 components: - type: Transform - pos: 10.5,32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 + rot: 3.141592653589793 rad + pos: 69.5,70.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22492 + color: '#800000FF' + - uid: 42403 components: - type: Transform - pos: 12.5,38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 + rot: 3.141592653589793 rad + pos: 69.5,68.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22493 + color: '#800000FF' + - uid: 42404 components: - type: Transform - pos: 17.5,39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 + rot: 3.141592653589793 rad + pos: 69.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22494 + color: '#800000FF' + - uid: 42405 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 + pos: 69.5,67.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22495 + color: '#800000FF' + - uid: 42406 components: - type: Transform - pos: 21.5,33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 60 + rot: 3.141592653589793 rad + pos: 69.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22496 + color: '#800000FF' + - uid: 42407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 59 + rot: 3.141592653589793 rad + pos: 65.5,68.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22497 + color: '#800000FF' + - uid: 42408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,33.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 + pos: 65.5,67.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22498 + color: '#800000FF' + - uid: 42409 components: - type: Transform - pos: 30.5,28.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 + pos: 65.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22499 + color: '#800000FF' + - uid: 42410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 + rot: -1.5707963267948966 rad + pos: 66.5,65.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22500 + color: '#800000FF' + - uid: 42411 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 + pos: 68.5,65.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22501 + color: '#800000FF' + - uid: 42412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,23.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 161 + pos: 67.5,64.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22502 + color: '#800000FF' + - uid: 42413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 142 + pos: 67.5,63.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22503 + color: '#800000FF' + - uid: 42414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,68.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 + pos: 67.5,62.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22504 + color: '#800000FF' + - uid: 42415 components: - type: Transform - pos: 52.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 + rot: 1.5707963267948966 rad + pos: 64.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22505 + color: '#800000FF' + - uid: 42416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 + rot: 1.5707963267948966 rad + pos: 63.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22506 + color: '#800000FF' + - uid: 42417 components: - type: Transform - pos: 56.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 + rot: 1.5707963267948966 rad + pos: 62.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22507 + color: '#800000FF' + - uid: 42418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 83 + rot: 1.5707963267948966 rad + pos: 61.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22508 + color: '#800000FF' + - uid: 42419 components: - type: Transform - pos: 61.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 + rot: 1.5707963267948966 rad + pos: 60.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22509 + color: '#800000FF' + - uid: 42420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 + rot: 1.5707963267948966 rad + pos: 59.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22510 + color: '#800000FF' + - uid: 42421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,20.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 + rot: 1.5707963267948966 rad + pos: 58.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22511 + color: '#800000FF' + - uid: 42422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 + rot: 1.5707963267948966 rad + pos: 57.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22512 + color: '#800000FF' + - uid: 42423 components: - type: Transform - pos: -100.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 + rot: 1.5707963267948966 rad + pos: 56.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22513 + color: '#800000FF' + - uid: 42424 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 + pos: 55.5,67.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22514 + color: '#800000FF' + - uid: 42425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,24.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 + rot: 1.5707963267948966 rad + pos: 54.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22515 + color: '#800000FF' + - uid: 42426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 + rot: 1.5707963267948966 rad + pos: 53.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22516 + color: '#800000FF' + - uid: 42427 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,19.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 + pos: 52.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22517 + color: '#800000FF' + - uid: 42428 components: - type: Transform - pos: -116.5,17.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 94 + rot: -1.5707963267948966 rad + pos: 50.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22518 + color: '#800000FF' + - uid: 42429 components: - type: Transform - pos: -116.5,21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 + rot: -1.5707963267948966 rad + pos: 49.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22519 + color: '#800000FF' + - uid: 42430 components: - type: Transform - pos: -116.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 + rot: -1.5707963267948966 rad + pos: 47.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22520 + color: '#800000FF' + - uid: 42431 components: - type: Transform - pos: -110.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 110 + rot: -1.5707963267948966 rad + pos: 46.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22521 + color: '#800000FF' + - uid: 42432 components: - type: Transform - pos: -107.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 107 + rot: -1.5707963267948966 rad + pos: 45.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22522 + color: '#800000FF' + - uid: 42433 components: - type: Transform - pos: -108.5,25.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 + rot: -1.5707963267948966 rad + pos: 44.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22523 + color: '#800000FF' + - uid: 42434 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 101 + pos: 48.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22524 + color: '#800000FF' + - uid: 42435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 + pos: 42.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22525 + color: '#800000FF' + - uid: 42436 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 + rot: 1.5707963267948966 rad + pos: 41.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22526 + color: '#800000FF' + - uid: 42437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 141 + rot: 1.5707963267948966 rad + pos: 40.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22527 + color: '#800000FF' + - uid: 42438 components: - type: Transform - pos: -29.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 111 + rot: 1.5707963267948966 rad + pos: 39.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22528 + color: '#800000FF' + - uid: 42439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 113 + rot: 1.5707963267948966 rad + pos: 37.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22529 + color: '#800000FF' + - uid: 42440 components: - type: Transform - pos: -46.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 + rot: 1.5707963267948966 rad + pos: 36.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22530 + color: '#800000FF' + - uid: 42441 components: - type: Transform - pos: -44.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 + rot: 1.5707963267948966 rad + pos: 35.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22531 + color: '#800000FF' + - uid: 42442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 + rot: 1.5707963267948966 rad + pos: 34.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22532 + color: '#800000FF' + - uid: 42443 components: - type: Transform - pos: -30.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 + rot: 1.5707963267948966 rad + pos: 33.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22533 + color: '#800000FF' + - uid: 42444 components: - type: Transform - pos: -28.5,12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 126 + rot: 1.5707963267948966 rad + pos: 32.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22534 + color: '#800000FF' + - uid: 42445 components: - type: Transform - pos: -55.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 125 + rot: 1.5707963267948966 rad + pos: 31.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22535 + color: '#800000FF' + - uid: 42446 components: - type: Transform - pos: -38.5,14.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 119 + rot: 1.5707963267948966 rad + pos: 30.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22536 + color: '#800000FF' + - uid: 42447 components: - type: Transform - pos: -42.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 + rot: 1.5707963267948966 rad + pos: 38.5,66.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22537 + color: '#800000FF' + - uid: 42448 components: - type: Transform - pos: -54.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 129 + pos: 29.5,67.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22538 + color: '#800000FF' + - uid: 42449 components: - type: Transform - pos: -43.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 + rot: -1.5707963267948966 rad + pos: 30.5,68.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22539 + color: '#800000FF' + - uid: 42450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 128 + rot: -1.5707963267948966 rad + pos: 31.5,68.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22540 + color: '#800000FF' + - uid: 42451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 + pos: 43.5,67.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22541 + color: '#800000FF' + - uid: 42452 components: - type: Transform - pos: -41.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 + pos: 43.5,68.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22542 + color: '#800000FF' + - uid: 42453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 + pos: 43.5,69.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22543 + color: '#800000FF' + - uid: 42454 components: - type: Transform - pos: -32.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 + pos: 43.5,71.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22544 + color: '#800000FF' + - uid: 42455 components: - type: Transform - pos: -29.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 + pos: 43.5,72.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22545 + color: '#800000FF' + - uid: 42456 components: - type: Transform - pos: -29.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 + pos: 43.5,73.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22546 + color: '#800000FF' + - uid: 42457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 + pos: 43.5,74.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22547 + color: '#800000FF' + - uid: 42458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 + pos: 43.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22548 + color: '#800000FF' + - uid: 42459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 + pos: 43.5,76.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22549 + color: '#800000FF' + - uid: 42460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 + pos: 43.5,77.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22550 + color: '#800000FF' + - uid: 42461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 138 + pos: 43.5,70.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22551 + color: '#800000FF' + - uid: 42462 + components: + - type: Transform + pos: 43.5,79.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42463 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 + pos: 42.5,78.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22552 + color: '#800000FF' + - uid: 42464 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 + pos: 41.5,78.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22553 + color: '#800000FF' + - uid: 42465 components: - type: Transform - pos: 0.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 + rot: -1.5707963267948966 rad + pos: 40.5,78.5 + parent: 40599 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 22554 + color: '#800000FF' + - uid: 42466 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 125 + pos: 39.5,78.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22555 + color: '#800000FF' + - uid: 42467 components: - type: Transform - pos: -40.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 118 + rot: -1.5707963267948966 rad + pos: 38.5,78.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22556 + color: '#800000FF' + - uid: 42468 components: - type: Transform - pos: -38.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 + rot: 3.141592653589793 rad + pos: 37.5,77.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22557 + color: '#800000FF' + - uid: 42469 components: - type: Transform - pos: -36.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 120 + rot: 3.141592653589793 rad + pos: 37.5,76.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22558 + color: '#800000FF' + - uid: 42470 components: - type: Transform - pos: -48.5,16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 115 + rot: 3.141592653589793 rad + pos: 37.5,75.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22559 + color: '#800000FF' + - uid: 42471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 + rot: 1.5707963267948966 rad + pos: 40.5,74.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22560 + color: '#800000FF' + - uid: 42472 components: - type: Transform - pos: -33.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 122 + rot: 1.5707963267948966 rad + pos: 39.5,74.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22561 + color: '#800000FF' + - uid: 42473 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 126 + rot: 1.5707963267948966 rad + pos: 38.5,74.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22562 + color: '#800000FF' + - uid: 42474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 55 + pos: 51.5,65.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22563 + color: '#800000FF' + - uid: 42475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 + pos: 51.5,64.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22564 + color: '#800000FF' + - uid: 42476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 + pos: 51.5,62.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22565 + color: '#800000FF' + - uid: 42477 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 111 + pos: 52.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22566 + color: '#800000FF' + - uid: 42478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 99 + rot: 1.5707963267948966 rad + pos: 53.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22567 + color: '#800000FF' + - uid: 42479 components: - type: Transform - pos: 57.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 98 + rot: 1.5707963267948966 rad + pos: 55.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22568 + color: '#800000FF' + - uid: 42480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 92 + rot: 1.5707963267948966 rad + pos: 54.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22569 + color: '#800000FF' + - uid: 42481 components: - type: Transform - pos: 62.5,10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 102 + rot: 1.5707963267948966 rad + pos: 57.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22570 + color: '#800000FF' + - uid: 42482 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 79 + pos: 56.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22571 + color: '#800000FF' + - uid: 42483 components: - type: Transform - pos: 3.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 80 + rot: 1.5707963267948966 rad + pos: 58.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22572 + color: '#800000FF' + - uid: 42484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-7.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 76 + rot: 1.5707963267948966 rad + pos: 59.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22573 + color: '#800000FF' + - uid: 42485 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 73 + pos: 60.5,60.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22574 + color: '#800000FF' + - uid: 42486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 72 + pos: 61.5,62.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22575 + color: '#800000FF' + - uid: 42487 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 + pos: 61.5,61.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22576 + color: '#800000FF' + - uid: 42488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-16.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 + pos: 51.5,59.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22577 + color: '#800000FF' + - uid: 42489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 74 + pos: 51.5,58.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22578 + color: '#800000FF' + - uid: 42490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 127 + pos: 51.5,57.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22579 + color: '#800000FF' + - uid: 42491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 + pos: 51.5,56.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22580 + color: '#800000FF' + - uid: 42492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 38 + pos: 51.5,55.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22581 + color: '#800000FF' + - uid: 42493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-58.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 28 + pos: 51.5,54.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22582 + color: '#800000FF' + - uid: 42494 components: - type: Transform - pos: 42.5,-53.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 33 + pos: 51.5,53.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22583 + color: '#800000FF' + - uid: 42495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-49.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 32 + rot: -1.5707963267948966 rad + pos: 52.5,52.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22584 + color: '#800000FF' + - uid: 42496 components: - type: Transform - pos: 28.5,-52.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 31 + rot: -1.5707963267948966 rad + pos: 53.5,52.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22585 + color: '#800000FF' + - uid: 42497 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-37.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 35 + pos: 54.5,52.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22586 + color: '#800000FF' + - uid: 42498 components: - type: Transform - pos: 22.5,-36.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 30 + rot: -1.5707963267948966 rad + pos: 55.5,52.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22587 + color: '#800000FF' + - uid: 42499 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 36 + rot: -1.5707963267948966 rad + pos: 56.5,52.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22588 + color: '#800000FF' + - uid: 42500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 34 + rot: -1.5707963267948966 rad + pos: 57.5,52.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22589 + color: '#800000FF' + - uid: 42501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-48.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 + pos: 59.5,50.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22590 + color: '#800000FF' + - uid: 42502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 + pos: 59.5,49.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22591 + color: '#800000FF' + - uid: 42503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 + rot: -1.5707963267948966 rad + pos: 58.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22592 + color: '#800000FF' + - uid: 42504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 51 + rot: -1.5707963267948966 rad + pos: 57.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22593 + color: '#800000FF' + - uid: 42505 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 + rot: -1.5707963267948966 rad + pos: 56.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22594 + color: '#800000FF' + - uid: 42506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 49 + pos: 55.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22595 + color: '#800000FF' + - uid: 42507 components: - type: Transform - pos: 26.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 159 + rot: -1.5707963267948966 rad + pos: 54.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22596 + color: '#800000FF' + - uid: 42508 components: - type: Transform - pos: 0.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 53 + rot: -1.5707963267948966 rad + pos: 53.5,48.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22597 + color: '#800000FF' + - uid: 42509 components: - type: Transform rot: 3.141592653589793 rad - pos: 73.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 48 + pos: 52.5,47.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22598 + color: '#800000FF' + - uid: 42510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 46 + rot: 3.141592653589793 rad + pos: 52.5,46.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22599 + color: '#800000FF' + - uid: 42511 components: - type: Transform - pos: 65.5,-47.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 44 + rot: 3.141592653589793 rad + pos: 52.5,45.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22600 + color: '#800000FF' + - uid: 42512 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-53.5 - parent: 2 + pos: 58.5,53.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22601 + color: '#800000FF' + - uid: 42513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,55.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,55.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42515 + components: + - type: Transform + pos: 47.5,42.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42516 components: - type: Transform rot: -1.5707963267948966 rad - pos: 75.5,-46.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 45 + pos: 53.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22602 + color: '#800000FF' + - uid: 42517 components: - type: Transform rot: -1.5707963267948966 rad - pos: 88.5,-44.5 - parent: 2 + pos: 54.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22603 + color: '#800000FF' + - uid: 42518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.5,44.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42519 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-39.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 47 + pos: 57.5,42.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22604 + color: '#800000FF' + - uid: 42520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 42 + rot: 3.141592653589793 rad + pos: 57.5,41.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22605 + color: '#800000FF' + - uid: 42521 components: - type: Transform - pos: 66.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 43 + rot: 3.141592653589793 rad + pos: 57.5,39.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22606 + color: '#800000FF' + - uid: 42522 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 37 + pos: 57.5,38.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22607 + color: '#800000FF' + - uid: 42523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,39.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,38.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 160 + pos: 55.5,79.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22608 + color: '#800000FF' + - uid: 42526 + components: + - type: Transform + pos: 56.5,80.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,79.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42528 + components: + - type: Transform + pos: 58.5,54.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42529 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-49.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 41 + pos: 50.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22609 + color: '#800000FF' + - uid: 42530 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 40 + pos: 51.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22610 + color: '#800000FF' + - uid: 42531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-49.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 + pos: 49.5,44.5 + parent: 40599 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22611 + color: '#800000FF' + - uid: 42532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,41.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 46718 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-48.5 + pos: -1.5,10.5 + parent: 46584 + - uid: 46719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 46584 +- proto: GasPipeTJunction + entities: + - uid: 22440 + components: + - type: Transform + pos: 54.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22612 + - uid: 22441 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-50.5 + pos: 55.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 39 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22613 + color: '#0000FFFF' + - uid: 22442 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-49.5 + pos: 3.5,31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 28 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22614 + color: '#0000FFFF' + - uid: 22443 components: - type: Transform - pos: -27.5,-40.5 + pos: 60.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 52 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22615 + color: '#0000FFFF' + - uid: 22444 components: - type: Transform - pos: -22.5,-36.5 + rot: 3.141592653589793 rad + pos: 62.5,0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22616 + - uid: 22445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-41.5 + pos: 27.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 50 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22617 + color: '#0000FFFF' + - uid: 22446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-35.5 + rot: 3.141592653589793 rad + pos: 61.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22618 + color: '#0000FFFF' + - uid: 22447 components: - type: Transform - pos: -53.5,13.5 + rot: -1.5707963267948966 rad + pos: 57.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 56 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22619 + color: '#0000FFFF' + - uid: 22448 components: - type: Transform - pos: -28.5,5.5 + pos: 2.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 121 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22620 + color: '#0000FFFF' + - uid: 22449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,15.5 + rot: 1.5707963267948966 rad + pos: -26.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 119 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22621 + color: '#0000FFFF' + - uid: 22450 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,11.5 + rot: 1.5707963267948966 rad + pos: -5.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 123 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22622 + color: '#0000FFFF' + - uid: 22451 components: - type: Transform - pos: 5.5,48.5 + pos: -25.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22623 + color: '#FF0000FF' + - uid: 22452 components: - type: Transform - pos: -8.5,47.5 + pos: -26.5,14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22624 + color: '#0000FFFF' + - uid: 22453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,40.5 + pos: -10.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 158 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22625 + color: '#0000FFFF' + - uid: 22454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,43.5 + rot: -1.5707963267948966 rad + pos: -8.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 145 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22626 + color: '#FF0000FF' + - uid: 22455 components: - type: Transform - pos: -15.5,47.5 + pos: -46.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 150 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22627 + color: '#0000FFFF' + - uid: 22456 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,42.5 + pos: -29.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 149 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22628 + color: '#0000FFFF' + - uid: 22457 components: - type: Transform - pos: 19.5,57.5 + pos: -18.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22629 + color: '#0000FFFF' + - uid: 22458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,42.5 + pos: -24.5,25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 144 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22630 + color: '#FF0000FF' + - uid: 22459 components: - type: Transform - pos: -9.5,51.5 + pos: 5.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 156 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22631 + color: '#0000FFFF' + - uid: 22460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,43.5 + pos: 10.5,48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 145 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22632 + color: '#0000FFFF' + - uid: 22461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,58.5 + rot: -1.5707963267948966 rad + pos: 12.5,37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22633 + color: '#0000FFFF' + - uid: 22462 components: - type: Transform - pos: 2.5,52.5 + pos: 59.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 152 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22634 + color: '#FF0000FF' + - uid: 22463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,57.5 + rot: 3.141592653589793 rad + pos: 58.5,6.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 70 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22635 + color: '#0000FFFF' + - uid: 22464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,44.5 + pos: -6.5,69.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 154 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22636 + color: '#0000FFFF' + - uid: 22465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,46.5 + rot: 3.141592653589793 rad + pos: -7.5,68.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 153 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 22637 + - uid: 22466 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,59.5 + pos: -0.5,56.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 69 - type: AtmosPipeColor color: '#DC143CFF' - - uid: 22638 + - uid: 22467 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,61.5 + pos: 20.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 157 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22639 + color: '#FF0000FF' + - uid: 22468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,68.5 + rot: 3.141592653589793 rad + pos: -7.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22640 + color: '#0000FFFF' + - uid: 22469 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,56.5 + pos: -15.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 147 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22641 + color: '#FF0000FF' + - uid: 22470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,55.5 + rot: -1.5707963267948966 rad + pos: -15.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 148 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22642 + color: '#FF0000FF' + - uid: 22471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,38.5 + pos: -17.5,9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 155 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22643 + color: '#0000FFFF' + - uid: 22472 components: - type: Transform - pos: 6.5,57.5 + rot: -1.5707963267948966 rad + pos: 22.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22644 + color: '#0000FFFF' + - uid: 22473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,53.5 + pos: -6.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22645 + color: '#FF0000FF' + - uid: 22474 components: - type: Transform - pos: 10.5,63.5 + rot: 1.5707963267948966 rad + pos: 20.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22646 + color: '#FF0000FF' + - uid: 22475 components: - type: Transform - pos: 12.5,63.5 + rot: 3.141592653589793 rad + pos: 12.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22647 + color: '#0000FFFF' + - uid: 22476 components: - type: Transform - pos: 17.5,61.5 + rot: 1.5707963267948966 rad + pos: -17.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22648 + color: '#0000FFFF' + - uid: 22477 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22649 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,56.5 + pos: -5.5,48.5 parent: 2 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22650 + color: '#0000FFFF' + - uid: 22478 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,51.5 + pos: -15.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 146 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22651 + color: '#FF0000FF' + - uid: 22479 components: - type: Transform - pos: 15.5,0.5 + pos: -20.5,5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 66 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22652 + - uid: 22480 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 + pos: -22.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22653 + - uid: 22481 components: - type: Transform - pos: -10.5,0.5 + rot: 1.5707963267948966 rad + pos: -22.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 65 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22654 + color: '#0000FFFF' + - uid: 22482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-4.5 + rot: 3.141592653589793 rad + pos: -22.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22655 + - uid: 22483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + pos: -21.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 68 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22656 + color: '#0000FFFF' + - uid: 22484 components: - type: Transform - pos: 16.5,-8.5 + rot: 3.141592653589793 rad + pos: -20.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22657 + - uid: 22485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-12.5 + rot: 3.141592653589793 rad + pos: -28.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 61 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22658 + color: '#0000FFFF' + - uid: 22486 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-6.5 + pos: -21.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22659 + - uid: 22487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-4.5 + pos: -27.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22660 + - uid: 22488 components: - type: Transform - pos: -7.5,-10.5 + rot: 3.141592653589793 rad + pos: -40.5,12.5 parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22661 + - uid: 22489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-2.5 + rot: 3.141592653589793 rad + pos: -39.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 57 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22662 + - uid: 22490 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-16.5 + pos: -36.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 75 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22663 + - uid: 22491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 + pos: -4.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 77 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22664 + - uid: 22492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,10.5 + pos: -5.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 78 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22665 + - uid: 22493 components: - type: Transform - pos: 11.5,-12.5 + rot: 1.5707963267948966 rad + pos: 67.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22666 + color: '#0000FFFF' + - uid: 22494 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,11.5 + pos: 67.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22667 + color: '#0000FFFF' + - uid: 22495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,11.5 + rot: 1.5707963267948966 rad + pos: -8.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22668 + - uid: 22496 components: - type: Transform - pos: 3.5,13.5 + rot: -1.5707963267948966 rad + pos: 27.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 82 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22669 + color: '#0000FFFF' + - uid: 22497 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,19.5 + pos: 28.5,-54.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 84 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22670 + - uid: 22498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,26.5 + pos: 17.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 86 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22671 + - uid: 22499 components: - type: Transform - pos: 17.5,28.5 + pos: -24.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 85 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22672 + - uid: 22500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,32.5 + rot: 3.141592653589793 rad + pos: -21.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 62 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22673 + - uid: 22501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,32.5 + rot: 1.5707963267948966 rad + pos: -23.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22674 + color: '#17E8E2FF' + - uid: 22502 components: - type: Transform - pos: 12.5,39.5 + rot: -1.5707963267948966 rad + pos: -21.5,51.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22675 + color: '#17E8E2FF' + - uid: 22503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,39.5 + rot: 1.5707963267948966 rad + pos: 42.5,-54.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 58 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22676 + - uid: 22504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,21.5 + rot: 3.141592653589793 rad + pos: 23.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22677 + color: '#0000FFFF' + - uid: 22505 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,34.5 + pos: 27.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 60 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22678 + color: '#0000FFFF' + - uid: 22506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,32.5 + pos: 18.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 87 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22679 + - uid: 22507 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,28.5 + pos: -8.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 88 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22680 + - uid: 22508 components: - type: Transform - pos: 38.5,23.5 + rot: -1.5707963267948966 rad + pos: -8.5,-42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 89 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22681 + - uid: 22509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,22.5 + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 90 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22682 + - uid: 22510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,19.5 + pos: 2.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 63 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22683 + color: '#0000FFFF' + - uid: 22511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,37.5 + rot: 3.141592653589793 rad + pos: 7.5,-50.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 59 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22684 + color: '#0000FFFF' + - uid: 22512 components: - type: Transform - pos: -9.5,36.5 + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 142 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22685 + color: '#FF0000FF' + - uid: 22513 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,25.5 + pos: -8.5,-58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 161 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22686 + - uid: 22514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,20.5 + pos: -6.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22687 + - uid: 22515 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,11.5 + pos: -4.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 95 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22688 + color: '#FF0000FF' + - uid: 22516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-5.5 + pos: 27.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 96 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22689 + color: '#0000FFFF' + - uid: 22517 components: - type: Transform - pos: 11.5,21.5 + rot: -1.5707963267948966 rad + pos: 67.5,-47.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 83 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22690 + color: '#0000FFFF' + - uid: 22518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,19.5 + pos: -23.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22691 + color: '#0000FFFF' + - uid: 22519 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,19.5 + pos: -26.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 97 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22692 + color: '#0000FFFF' + - uid: 22520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,2.5 + rot: 3.141592653589793 rad + pos: -28.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 91 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22693 + color: '#0000FFFF' + - uid: 22521 components: - type: Transform - pos: -100.5,23.5 + pos: 75.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 108 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22694 + color: '#0000FFFF' + - uid: 22522 components: - type: Transform rot: 3.141592653589793 rad - pos: -115.5,5.5 + pos: 82.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 103 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22695 + color: '#0000FFFF' + - uid: 22523 components: - type: Transform - pos: -9.5,74.5 + rot: 3.141592653589793 rad + pos: 74.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22696 + color: '#0000FFFF' + - uid: 22524 components: - type: Transform - pos: -7.5,69.5 + pos: 59.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 71 - type: AtmosPipeColor - color: '#DC143CFF' - - uid: 22697 + color: '#0000FFFF' + - uid: 22525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,8.5 + rot: 3.141592653589793 rad + pos: 26.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22698 + - uid: 22526 components: - type: Transform - pos: -109.5,15.5 + pos: 69.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22699 + - uid: 22527 components: - type: Transform rot: 3.141592653589793 rad - pos: -109.5,25.5 + pos: 65.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 106 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22700 + - uid: 22528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,15.5 + rot: -1.5707963267948966 rad + pos: 69.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 94 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22701 + - uid: 22529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -116.5,19.5 + pos: 69.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 93 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22702 + - uid: 22530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,23.5 + pos: 74.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 100 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22703 + - uid: 22531 components: - type: Transform - pos: -111.5,30.5 + rot: 3.141592653589793 rad + pos: 84.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 110 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22704 + - uid: 22532 components: - type: Transform - pos: -106.5,30.5 + pos: 73.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 107 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22705 + - uid: 22533 components: - type: Transform - pos: -100.5,15.5 + rot: 3.141592653589793 rad + pos: 66.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 101 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22706 + - uid: 22534 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,11.5 + pos: -10.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 105 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22707 + - uid: 22536 components: - type: Transform - pos: -106.5,3.5 + rot: 3.141592653589793 rad + pos: -20.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22537 + components: + - type: Transform + pos: 3.5,-49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 104 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22708 + - uid: 22538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,3.5 + rot: 3.141592653589793 rad + pos: 6.5,-49.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 109 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22709 + - uid: 22539 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,24.5 + pos: -16.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22540 + components: + - type: Transform + pos: -13.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 161 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22710 + - uid: 22541 components: - type: Transform - pos: -44.5,16.5 + rot: 3.141592653589793 rad + pos: -22.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 124 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22711 + - uid: 22542 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-27.5 + pos: -20.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 141 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22712 + color: '#0000FFFF' + - uid: 22543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,15.5 + pos: -3.5,-54.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 113 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22713 + color: '#0000FFFF' + - uid: 22544 components: - type: Transform - pos: -41.5,6.5 + rot: 1.5707963267948966 rad + pos: -10.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-35.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 131 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22714 + - uid: 22546 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,3.5 + pos: -10.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 130 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22715 + color: '#0000FFFF' + - uid: 22547 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-2.5 + pos: -55.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 129 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22716 + color: '#0000FFFF' + - uid: 22548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,1.5 + rot: 3.141592653589793 rad + pos: -53.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 128 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22717 + - uid: 22549 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-3.5 + pos: -29.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22718 + color: '#0000FFFF' + - uid: 22550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-0.5 + pos: -34.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22719 + - uid: 22551 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-12.5 + pos: -32.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 132 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22720 + color: '#0000FFFF' + - uid: 22552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,1.5 + rot: -1.5707963267948966 rad + pos: -34.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22721 + - uid: 22553 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-3.5 + pos: -32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 133 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22722 + - uid: 22555 components: - type: Transform - pos: -25.5,-8.5 + rot: 3.141592653589793 rad + pos: -43.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 134 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22723 + - uid: 22556 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-10.5 + pos: -46.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 135 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22724 + - uid: 22557 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-12.5 + pos: -41.5,-4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 136 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22725 + color: '#0000FFFF' + - uid: 22558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-15.5 + rot: -1.5707963267948966 rad + pos: -43.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 137 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22726 + color: '#0000FFFF' + - uid: 22559 components: - type: Transform - pos: -43.5,-8.5 + rot: 3.141592653589793 rad + pos: -41.5,-2.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22727 + - uid: 22560 components: - type: Transform - pos: -46.5,-8.5 + rot: 1.5707963267948966 rad + pos: -41.5,1.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 116 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22728 + - uid: 22561 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-12.5 + pos: -34.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 117 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22729 + - uid: 22562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-18.5 + rot: 1.5707963267948966 rad + pos: -38.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 138 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22730 + color: '#0000FFFF' + - uid: 22563 components: - type: Transform - pos: -3.5,-32.5 + pos: -34.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 139 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22731 + - uid: 22564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-36.5 + rot: 1.5707963267948966 rad + pos: -36.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 54 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22732 + - uid: 22565 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-16.5 + pos: -33.5,4.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 140 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 42157 + - uid: 22566 components: - type: Transform - pos: 41.5,62.5 - parent: 40203 - - type: GasVentScrubber - wideNet: True + rot: 3.141592653589793 rad + pos: -44.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42158 + color: '#FF0000FF' + - uid: 22567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,61.5 - parent: 40203 - - type: GasVentScrubber - wideNet: True + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42159 + color: '#FF0000FF' + - uid: 22568 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,60.5 - parent: 40203 - - type: GasVentScrubber - wideNet: True + pos: -35.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42160 + color: '#0000FFFF' + - uid: 22569 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,60.5 - parent: 40203 - - type: GasVentScrubber - wideNet: True + pos: -44.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42161 + color: '#0000FFFF' + - uid: 22570 components: - type: Transform - pos: 45.5,62.5 - parent: 40203 - - type: GasVentScrubber - wideNet: True + pos: -47.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42162 + color: '#0000FFFF' + - uid: 22571 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,80.5 - parent: 40203 - - type: GasVentScrubber - transferRate: 25 - enabled: True - maxPressure: 25 - maxTransferRate: 25 - - uid: 42163 - components: - - type: Transform - pos: 59.5,82.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -46.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42164 + color: '#0000FFFF' + - uid: 22572 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,73.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,77.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -42.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42166 + color: '#0000FFFF' + - uid: 22573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,73.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + rot: 3.141592653589793 rad + pos: -50.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42167 + color: '#0000FFFF' + - uid: 22574 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,61.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -36.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42168 + color: '#FF0000FF' + - uid: 22575 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,68.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -38.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42169 + color: '#0000FFFF' + - uid: 22576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,68.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + rot: 3.141592653589793 rad + pos: -8.5,46.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42170 + color: '#DC143CFF' + - uid: 22577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,74.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -8.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42171 + color: '#FF0000FF' + - uid: 22578 components: - type: Transform - pos: 43.5,80.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: 20.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42172 + color: '#FF0000FF' + - uid: 22579 components: - type: Transform - pos: 61.5,63.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -10.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42173 + color: '#0000FFFF' + - uid: 22580 components: - type: Transform - pos: 55.5,56.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + rot: 3.141592653589793 rad + pos: 3.5,47.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42174 + color: '#DC143CFF' + - uid: 22581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,40.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -7.5,46.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42175 + color: '#DC143CFF' + - uid: 22582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,40.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -24.5,46.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42176 + color: '#DC143CFF' + - uid: 22583 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,43.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 - - type: AtmosPipeColor - color: '#800000FF' - - uid: 42177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,36.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -24.5,47.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42178 + color: '#0000FFFF' + - uid: 22584 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,36.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -21.5,46.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' - - uid: 42179 + color: '#0000FFFF' + - uid: 22585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,61.5 - parent: 40203 - - type: DeviceNetwork - deviceLists: - - 40208 + pos: -21.5,44.5 + parent: 2 - type: AtmosPipeColor - color: '#800000FF' -- proto: Gateway - entities: - - uid: 22733 + color: '#DC143CFF' + - uid: 22586 components: - type: Transform - pos: 93.5,-34.5 + rot: 3.141592653589793 rad + pos: -18.5,47.5 parent: 2 - - type: Gateway - enabled: True - - uid: 22734 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22587 components: - type: Transform - pos: -100.5,-5.5 + rot: 1.5707963267948966 rad + pos: -17.5,48.5 parent: 2 - - uid: 22735 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22588 components: - type: Transform - pos: -33.5,15.5 + pos: -17.5,54.5 parent: 2 - - uid: 42180 - components: - - type: Transform - pos: 60.5,71.5 - parent: 40203 -- proto: Gauze - entities: - - uid: 8105 - components: - - type: Transform - parent: 8101 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22736 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22589 components: - type: Transform - pos: 22.542427,22.177227 + pos: -14.5,48.5 parent: 2 -- proto: Gauze1 - entities: - - uid: 22737 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22590 components: - type: Transform - pos: -13.274063,-4.5637527 + pos: -7.5,48.5 parent: 2 - - uid: 22738 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22591 components: - type: Transform - pos: -44.20678,-11.489349 + rot: 3.141592653589793 rad + pos: -9.5,46.5 parent: 2 - - uid: 42181 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22592 components: - type: Transform - pos: 55.352486,63.378967 - parent: 40203 - - uid: 42182 + rot: 3.141592653589793 rad + pos: -8.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22593 components: - type: Transform - rot: -0.3490658503988659 rad - pos: 30.515541,31.948114 - parent: 40203 -- proto: GeigerCounter - entities: - - uid: 22739 + pos: -4.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22594 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.51841,-40.52533 + pos: -5.5,57.5 parent: 2 -- proto: GeneratorBasic - entities: - - uid: 45733 - components: - - type: Transform - pos: 9.5,9.5 - parent: 44970 -- proto: GeneratorBasic15kW - entities: - - uid: 22740 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22595 components: - type: Transform - pos: -131.5,8.5 + rot: 1.5707963267948966 rad + pos: 17.5,18.5 parent: 2 - - uid: 22741 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22596 components: - type: Transform - pos: -131.5,9.5 + rot: -1.5707963267948966 rad + pos: 15.5,20.5 parent: 2 - - uid: 22742 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22597 components: - type: Transform - pos: -134.5,8.5 + rot: 1.5707963267948966 rad + pos: 15.5,19.5 parent: 2 - - uid: 22743 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22598 components: - type: Transform - pos: -134.5,9.5 + rot: -1.5707963267948966 rad + pos: 17.5,21.5 parent: 2 - - uid: 42183 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22599 components: - type: Transform - pos: 63.5,48.5 - parent: 40203 -- proto: GeneratorRTGDamaged - entities: - - uid: 22744 + pos: -9.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22600 components: - type: Transform - pos: -21.5,-37.5 + rot: -1.5707963267948966 rad + pos: -1.5,48.5 parent: 2 - - uid: 22745 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22601 components: - type: Transform - pos: -21.5,-35.5 + rot: 1.5707963267948966 rad + pos: -1.5,49.5 parent: 2 - - uid: 22746 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22602 components: - type: Transform - pos: 36.5,-35.5 + rot: -1.5707963267948966 rad + pos: -0.5,40.5 parent: 2 -- proto: GenericTank - entities: - - uid: 22747 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22603 components: - type: Transform - pos: 24.5,-5.5 + rot: 1.5707963267948966 rad + pos: -2.5,39.5 parent: 2 -- proto: Girder - entities: - - uid: 22748 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-38.5 + rot: 1.5707963267948966 rad + pos: -0.5,39.5 parent: 2 - - uid: 22749 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22605 components: - type: Transform rot: -1.5707963267948966 rad - pos: 91.5,-39.5 + pos: -0.5,51.5 parent: 2 - - uid: 22750 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-38.5 + pos: 6.5,49.5 parent: 2 - - uid: 22751 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22607 components: - type: Transform - pos: 23.5,55.5 + rot: 1.5707963267948966 rad + pos: -2.5,58.5 parent: 2 - - uid: 22752 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22608 components: - type: Transform - pos: 58.5,31.5 + rot: -1.5707963267948966 rad + pos: -0.5,59.5 parent: 2 - - uid: 22753 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22609 components: - type: Transform - pos: 58.5,30.5 + rot: 1.5707963267948966 rad + pos: -2.5,57.5 parent: 2 - - uid: 22754 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22610 components: - type: Transform - pos: -53.5,67.5 + rot: 1.5707963267948966 rad + pos: -0.5,61.5 parent: 2 - - uid: 22755 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22611 components: - type: Transform - pos: -53.5,66.5 + rot: 1.5707963267948966 rad + pos: -2.5,60.5 parent: 2 - - uid: 22756 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22612 components: - type: Transform rot: 3.141592653589793 rad - pos: 104.5,-43.5 + pos: -8.5,69.5 parent: 2 - - uid: 22757 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-42.5 + rot: 3.141592653589793 rad + pos: -9.5,68.5 parent: 2 - - uid: 42184 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22614 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,74.5 - parent: 40203 -- proto: GlassBoxLaserFilled - entities: - - uid: 22758 + pos: -23.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-9.5 + pos: -20.5,55.5 parent: 2 -- proto: GlowstickYellow - entities: - - uid: 45734 - components: - - type: Transform - pos: 4.5002213,4.0691066 - parent: 44970 - - uid: 45735 - components: - - type: Transform - pos: 4.5002213,4.0691066 - parent: 44970 - - uid: 45736 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22616 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.3595963,3.9441066 - parent: 44970 - - uid: 45737 + pos: -2.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22617 components: - type: Transform - pos: 3.7162526,1.3591027 - parent: 44970 - - uid: 45738 + rot: 3.141592653589793 rad + pos: 18.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22618 components: - type: Transform - pos: 3.6693776,1.5778527 - parent: 44970 - - uid: 45739 + rot: 3.141592653589793 rad + pos: 6.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22619 components: - type: Transform - pos: 3.4975026,1.3278527 - parent: 44970 - - uid: 45740 + rot: 3.141592653589793 rad + pos: 12.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22620 components: - type: Transform - pos: 3.3568776,1.5153527 - parent: 44970 -- proto: Gohei - entities: - - uid: 22759 + pos: 14.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22621 components: - type: Transform - pos: -75.38033,13.630028 + pos: 20.5,58.5 parent: 2 -- proto: GoldRingDiamond - entities: - - uid: 42185 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22622 components: - - type: MetaData - desc: Изготовлено из этично добытых космических алмазов. На кольце виднеется гравировка "Элеонора" - type: Transform - rot: 1.1693705988362009 rad - pos: 39.50833,35.64275 - parent: 40203 -- proto: GrassBattlemap - entities: - - uid: 22760 + pos: 5.5,58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22623 components: - type: Transform - pos: 94.18579,-15.608288 + rot: 3.141592653589793 rad + pos: 11.5,58.5 parent: 2 -- proto: GrenadeBaton - entities: - - uid: 22761 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.15917,12.4403305 + pos: 13.5,58.5 parent: 2 -- proto: GrenadeFlash - entities: - - uid: 22762 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22625 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.098015,12.7705555 + pos: -17.5,-0.5 parent: 2 -- proto: Grille - entities: - - uid: 22763 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-38.5 + pos: 11.5,60.5 parent: 2 - - uid: 22764 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-33.5 + rot: 3.141592653589793 rad + pos: 19.5,56.5 parent: 2 - - uid: 22765 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-23.5 + pos: 23.5,56.5 parent: 2 - - uid: 22766 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22629 components: - type: Transform - pos: 71.5,-45.5 + pos: 24.5,57.5 parent: 2 - - uid: 22767 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22630 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-28.5 + pos: -29.5,50.5 parent: 2 - - uid: 22768 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,-26.5 + pos: 15.5,2.5 parent: 2 - - uid: 22769 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-49.5 + rot: 3.141592653589793 rad + pos: 15.5,-0.5 parent: 2 - - uid: 22770 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22633 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-49.5 + pos: 20.5,-0.5 parent: 2 - - uid: 22771 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22634 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.5,-49.5 + pos: 22.5,1.5 parent: 2 - - uid: 22772 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,-49.5 + pos: 10.5,1.5 parent: 2 - - uid: 22773 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22636 components: - type: Transform - pos: 9.5,-18.5 + pos: 9.5,0.5 parent: 2 - - uid: 22774 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22637 components: - type: Transform - pos: 35.5,-37.5 + rot: 3.141592653589793 rad + pos: 11.5,0.5 parent: 2 - - uid: 22775 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22638 components: - type: Transform - pos: -12.5,-43.5 + pos: 5.5,2.5 parent: 2 - - uid: 22776 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22639 components: - type: Transform - pos: 32.5,16.5 + pos: -0.5,2.5 parent: 2 - - uid: 22777 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 + pos: -0.5,0.5 parent: 2 - - uid: 22778 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-7.5 + pos: 5.5,0.5 parent: 2 - - uid: 22779 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 + rot: 3.141592653589793 rad + pos: -10.5,-0.5 parent: 2 - - uid: 22780 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22643 components: - type: Transform - pos: -3.5,4.5 + pos: -10.5,2.5 parent: 2 - - uid: 22781 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22644 components: - type: Transform - pos: -2.5,4.5 + pos: -4.5,0.5 parent: 2 - - uid: 22782 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22645 components: - type: Transform - pos: -1.5,4.5 + pos: -5.5,1.5 parent: 2 - - uid: 22783 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22646 components: - type: Transform - pos: -0.5,5.5 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 parent: 2 - - uid: 22784 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22647 components: - type: Transform - pos: 0.5,5.5 + rot: 3.141592653589793 rad + pos: -6.5,1.5 parent: 2 - - uid: 22785 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22648 components: - type: Transform - pos: 1.5,6.5 + rot: 1.5707963267948966 rad + pos: -17.5,0.5 parent: 2 - - uid: 22786 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22649 components: - type: Transform - pos: 2.5,6.5 + rot: 1.5707963267948966 rad + pos: -15.5,-0.5 parent: 2 - - uid: 22787 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22650 components: - type: Transform - pos: 3.5,6.5 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 parent: 2 - - uid: 22788 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22651 components: - type: Transform - pos: 4.5,5.5 + pos: 11.5,32.5 parent: 2 - - uid: 22789 - components: + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22652 + components: - type: Transform - pos: 5.5,5.5 + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 parent: 2 - - uid: 22790 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22653 components: - type: Transform - pos: 6.5,4.5 + pos: 11.5,-3.5 parent: 2 - - uid: 22791 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22654 components: - type: Transform - pos: 7.5,4.5 + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 parent: 2 - - uid: 22792 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22655 components: - type: Transform - pos: 8.5,4.5 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 parent: 2 - - uid: 22793 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22656 components: - type: Transform - pos: -14.5,0.5 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 parent: 2 - - uid: 22794 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22657 components: - type: Transform - pos: -12.5,0.5 + pos: 17.5,-8.5 parent: 2 - - uid: 22795 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22658 components: - type: Transform - pos: 17.5,0.5 + pos: -7.5,-6.5 parent: 2 - - uid: 22796 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22659 components: - type: Transform - pos: 19.5,0.5 + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 parent: 2 - - uid: 22797 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22660 components: - type: Transform - pos: -22.5,2.5 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 parent: 2 - - uid: 22798 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22661 components: - type: Transform - pos: -20.5,2.5 + rot: 1.5707963267948966 rad + pos: -17.5,3.5 parent: 2 - - uid: 22799 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22662 components: - type: Transform - pos: -19.5,2.5 + rot: 3.141592653589793 rad + pos: 8.5,-17.5 parent: 2 - - uid: 22800 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 + rot: 1.5707963267948966 rad + pos: 20.5,-7.5 parent: 2 - - uid: 22801 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22664 components: - type: Transform - pos: -10.5,-39.5 + rot: 1.5707963267948966 rad + pos: 22.5,-8.5 parent: 2 - - uid: 22802 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22665 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-5.5 + pos: 22.5,9.5 parent: 2 - - uid: 22803 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22666 components: - type: Transform - pos: -8.5,-39.5 + rot: 1.5707963267948966 rad + pos: 22.5,10.5 parent: 2 - - uid: 22804 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 + rot: 3.141592653589793 rad + pos: -2.5,13.5 parent: 2 - - uid: 22805 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 + rot: 3.141592653589793 rad + pos: 0.5,13.5 parent: 2 - - uid: 22806 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-14.5 + rot: 3.141592653589793 rad + pos: 3.5,12.5 parent: 2 - - uid: 22807 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-10.5 + pos: 7.5,12.5 parent: 2 - - uid: 22808 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-6.5 + pos: 17.5,25.5 parent: 2 - - uid: 22809 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 + pos: 15.5,24.5 parent: 2 - - uid: 22810 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + rot: 3.141592653589793 rad + pos: 16.5,24.5 parent: 2 - - uid: 22811 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 + rot: 3.141592653589793 rad + pos: 15.5,25.5 parent: 2 - - uid: 22812 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22675 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,20.5 + pos: 12.5,26.5 parent: 2 - - uid: 22813 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,20.5 + pos: 8.5,31.5 parent: 2 - - uid: 22814 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22677 components: - type: Transform - pos: 45.5,-56.5 + rot: 3.141592653589793 rad + pos: 9.5,25.5 parent: 2 - - uid: 22815 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22678 components: - type: Transform - pos: 47.5,-56.5 + pos: 30.5,37.5 parent: 2 - - uid: 22816 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22679 components: - type: Transform - pos: 50.5,-56.5 + rot: 3.141592653589793 rad + pos: 13.5,32.5 parent: 2 - - uid: 22817 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22680 components: - type: Transform - pos: 52.5,-56.5 + rot: 3.141592653589793 rad + pos: 10.5,31.5 parent: 2 - - uid: 22818 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22681 components: - type: Transform - pos: 27.5,-50.5 + rot: 1.5707963267948966 rad + pos: 12.5,36.5 parent: 2 - - uid: 22819 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22682 components: - type: Transform - pos: 28.5,-50.5 + rot: 1.5707963267948966 rad + pos: 13.5,35.5 parent: 2 - - uid: 22820 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22683 components: - type: Transform - pos: 29.5,-50.5 + rot: 3.141592653589793 rad + pos: 21.5,25.5 parent: 2 - - uid: 22821 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22684 components: - type: Transform - pos: 24.5,5.5 + pos: 31.5,25.5 parent: 2 - - uid: 22822 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-57.5 + rot: 1.5707963267948966 rad + pos: 21.5,32.5 parent: 2 - - uid: 22823 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22686 components: - type: Transform - pos: -22.5,-57.5 + pos: 27.5,28.5 parent: 2 - - uid: 22824 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22687 components: - type: Transform - pos: -22.5,-58.5 + rot: 3.141592653589793 rad + pos: 30.5,25.5 parent: 2 - - uid: 22825 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22688 components: - type: Transform - pos: -22.5,-59.5 + rot: 3.141592653589793 rad + pos: 29.5,33.5 parent: 2 - - uid: 22826 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22689 components: - type: Transform - pos: -20.5,-57.5 + rot: 1.5707963267948966 rad + pos: 25.5,32.5 parent: 2 - - uid: 22827 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22690 components: - type: Transform - pos: -20.5,-58.5 + rot: -1.5707963267948966 rad + pos: 36.5,23.5 parent: 2 - - uid: 22828 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22691 components: - type: Transform - pos: -20.5,-59.5 + rot: 3.141592653589793 rad + pos: 38.5,22.5 parent: 2 - - uid: 22829 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22692 components: - type: Transform - pos: -20.5,-61.5 + pos: 41.5,22.5 parent: 2 - - uid: 22830 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22693 components: - type: Transform - pos: -20.5,-62.5 + rot: -1.5707963267948966 rad + pos: 43.5,20.5 parent: 2 - - uid: 22831 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22694 components: - type: Transform - pos: -20.5,-63.5 + rot: 3.141592653589793 rad + pos: 28.5,32.5 parent: 2 - - uid: 22832 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22695 components: - type: Transform - pos: -22.5,-61.5 + rot: -1.5707963267948966 rad + pos: 62.5,2.5 parent: 2 - - uid: 22833 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22696 components: - type: Transform - pos: -22.5,-62.5 + pos: 6.5,21.5 parent: 2 - - uid: 22834 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22697 components: - type: Transform - pos: -22.5,-63.5 + pos: 10.5,21.5 parent: 2 - - uid: 22835 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22698 components: - type: Transform - pos: -3.5,-67.5 + rot: 3.141592653589793 rad + pos: 11.5,20.5 parent: 2 - - uid: 22836 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22699 components: - type: Transform - pos: -19.5,-65.5 + rot: -1.5707963267948966 rad + pos: -113.5,23.5 parent: 2 - - uid: 22837 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22700 components: - type: Transform - pos: -17.5,-65.5 + rot: 3.141592653589793 rad + pos: 57.5,7.5 parent: 2 - - uid: 22838 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22701 components: - type: Transform - pos: -19.5,-67.5 + rot: 3.141592653589793 rad + pos: 56.5,6.5 parent: 2 - - uid: 22839 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22702 components: - type: Transform - pos: -18.5,-67.5 + pos: 6.5,20.5 parent: 2 - - uid: 22840 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22703 components: - type: Transform - pos: -17.5,-67.5 + pos: -106.5,14.5 parent: 2 - - uid: 22841 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22704 components: - type: Transform - pos: -15.5,-67.5 + rot: 3.141592653589793 rad + pos: -102.5,23.5 parent: 2 - - uid: 22842 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22705 components: - type: Transform - pos: -14.5,-67.5 + rot: 3.141592653589793 rad + pos: -100.5,4.5 parent: 2 - - uid: 22843 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22706 components: - type: Transform - pos: -13.5,-67.5 + pos: -103.5,4.5 parent: 2 - - uid: 22844 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22707 components: - type: Transform - pos: -15.5,-65.5 + rot: 3.141592653589793 rad + pos: -106.5,2.5 parent: 2 - - uid: 22845 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22708 components: - type: Transform - pos: -14.5,-65.5 + rot: 1.5707963267948966 rad + pos: -99.5,3.5 parent: 2 - - uid: 22846 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22709 components: - type: Transform - pos: -13.5,-65.5 + rot: -1.5707963267948966 rad + pos: -105.5,9.5 parent: 2 - - uid: 22847 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22710 components: - type: Transform - pos: -11.5,-65.5 + rot: -1.5707963267948966 rad + pos: -106.5,11.5 parent: 2 - - uid: 22848 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22711 components: - type: Transform - pos: -10.5,-65.5 + rot: 3.141592653589793 rad + pos: -107.5,16.5 parent: 2 - - uid: 22849 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22712 components: - type: Transform - pos: -9.5,-65.5 + pos: -107.5,6.5 parent: 2 - - uid: 22850 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22713 components: - type: Transform - pos: -11.5,-67.5 + pos: -108.5,7.5 parent: 2 - - uid: 22851 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22714 components: - type: Transform - pos: -10.5,-67.5 + rot: -1.5707963267948966 rad + pos: -113.5,15.5 parent: 2 - - uid: 22852 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22715 components: - type: Transform - pos: -9.5,-67.5 + rot: 3.141592653589793 rad + pos: -106.5,26.5 parent: 2 - - uid: 22853 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22716 components: - type: Transform - pos: -7.5,-67.5 + rot: -1.5707963267948966 rad + pos: -113.5,19.5 parent: 2 - - uid: 22854 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22717 components: - type: Transform - pos: -6.5,-67.5 + rot: 3.141592653589793 rad + pos: -111.5,26.5 parent: 2 - - uid: 22855 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22718 components: - type: Transform - pos: -5.5,-67.5 + rot: 3.141592653589793 rad + pos: -104.5,14.5 parent: 2 - - uid: 22856 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22719 components: - type: Transform - pos: -7.5,-65.5 + rot: 3.141592653589793 rad + pos: -110.5,14.5 parent: 2 - - uid: 22857 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22720 components: - type: Transform - pos: -6.5,-65.5 + rot: 3.141592653589793 rad + pos: -109.5,14.5 parent: 2 - - uid: 22858 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22721 components: - type: Transform - pos: -5.5,-65.5 + pos: -108.5,16.5 parent: 2 - - uid: 22859 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22722 components: - type: Transform - pos: 0.5,-65.5 + pos: -109.5,26.5 parent: 2 - - uid: 22860 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22723 components: - type: Transform - pos: -3.5,-65.5 + rot: 3.141592653589793 rad + pos: -112.5,16.5 parent: 2 - - uid: 22861 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22724 components: - type: Transform - pos: -2.5,-65.5 + pos: -112.5,24.5 parent: 2 - - uid: 22862 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22725 components: - type: Transform - pos: -1.5,-65.5 + rot: 1.5707963267948966 rad + pos: -105.5,23.5 parent: 2 - - uid: 22863 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22726 components: - type: Transform - pos: -2.5,-67.5 + rot: 1.5707963267948966 rad + pos: -104.5,22.5 parent: 2 - - uid: 22864 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22727 components: - type: Transform - pos: -1.5,-67.5 + rot: 3.141592653589793 rad + pos: -110.5,24.5 parent: 2 - - uid: 22865 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22728 components: - type: Transform - pos: 2.5,-65.5 + rot: 3.141592653589793 rad + pos: -108.5,24.5 parent: 2 - - uid: 22866 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22729 components: - type: Transform - pos: 3.5,-63.5 + rot: 3.141592653589793 rad + pos: -107.5,24.5 parent: 2 - - uid: 22867 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22730 components: - type: Transform - pos: 3.5,-62.5 + rot: -1.5707963267948966 rad + pos: -112.5,20.5 parent: 2 - - uid: 22868 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22731 components: - type: Transform - pos: 3.5,-61.5 + rot: 3.141592653589793 rad + pos: -100.5,22.5 parent: 2 - - uid: 22869 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22732 components: - type: Transform - pos: 3.5,-60.5 + pos: -29.5,-14.5 parent: 2 - - uid: 22870 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22733 components: - type: Transform - pos: 3.5,-59.5 + rot: -1.5707963267948966 rad + pos: -38.5,-14.5 parent: 2 - - uid: 22871 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22734 components: - type: Transform - pos: 3.5,-58.5 + rot: 1.5707963267948966 rad + pos: -38.5,13.5 parent: 2 - - uid: 22872 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22735 components: - type: Transform - pos: -8.5,-57.5 + rot: 1.5707963267948966 rad + pos: -8.5,-33.5 parent: 2 - - uid: 22873 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22736 components: - type: Transform - pos: -6.5,-57.5 + rot: 1.5707963267948966 rad + pos: -8.5,-36.5 parent: 2 - - uid: 22874 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 + rot: 1.5707963267948966 rad + pos: -5.5,-37.5 parent: 2 - - uid: 22875 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22738 components: - type: Transform - pos: -0.5,-46.5 + rot: 3.141592653589793 rad + pos: 0.5,-17.5 parent: 2 - - uid: 22876 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22739 components: - type: Transform - pos: -0.5,-47.5 + pos: 4.5,-15.5 parent: 2 - - uid: 22877 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22740 components: - type: Transform - pos: -0.5,-49.5 + rot: -1.5707963267948966 rad + pos: 61.5,-11.5 parent: 2 - - uid: 22878 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22741 components: - type: Transform - pos: -0.5,-50.5 + rot: -1.5707963267948966 rad + pos: 61.5,1.5 parent: 2 - - uid: 22879 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 42533 components: - type: Transform - pos: -1.5,-2.5 - parent: 2 - - uid: 22880 + rot: -1.5707963267948966 rad + pos: 46.5,60.5 + parent: 40599 + - type: AtmosPipeColor + color: '#888888FF' + - uid: 42534 components: - type: Transform - pos: 1.5,-3.5 - parent: 2 - - uid: 22881 + rot: 3.141592653589793 rad + pos: 42.5,61.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42535 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-36.5 - parent: 2 - - uid: 22882 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 2 - - uid: 22883 + pos: 45.5,61.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42536 components: - type: Transform - pos: -16.5,-43.5 - parent: 2 - - uid: 22884 + rot: 3.141592653589793 rad + pos: 53.5,76.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42537 components: - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 22885 + pos: 56.5,81.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42538 components: - type: Transform - pos: 2.5,-3.5 - parent: 2 - - uid: 22886 + rot: 3.141592653589793 rad + pos: 63.5,75.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42539 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,4.5 - parent: 2 - - uid: 22887 + pos: 69.5,72.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,5.5 - parent: 2 - - uid: 22888 + rot: -1.5707963267948966 rad + pos: 51.5,61.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 2 - - uid: 22889 + pos: 67.5,65.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 2 - - uid: 22890 + rot: -1.5707963267948966 rad + pos: 55.5,68.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,7.5 - parent: 2 - - uid: 22891 + pos: 51.5,66.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,4.5 - parent: 2 - - uid: 22892 + rot: 3.141592653589793 rad + pos: 43.5,66.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42545 components: - type: Transform - pos: 10.5,-18.5 - parent: 2 - - uid: 22893 + rot: -1.5707963267948966 rad + pos: 43.5,78.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42546 components: - type: Transform - pos: 11.5,-18.5 - parent: 2 - - uid: 22894 + rot: 1.5707963267948966 rad + pos: 51.5,60.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42547 components: - type: Transform - pos: 12.5,-18.5 - parent: 2 - - uid: 22895 + rot: -1.5707963267948966 rad + pos: 58.5,52.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42548 components: - type: Transform - pos: 13.5,-18.5 - parent: 2 - - uid: 22896 + rot: 1.5707963267948966 rad + pos: 47.5,40.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42549 components: - type: Transform - pos: 14.5,-18.5 - parent: 2 - - uid: 22897 + rot: -1.5707963267948966 rad + pos: 57.5,40.5 + parent: 40599 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 46720 components: - type: Transform - pos: 15.5,-18.5 - parent: 2 - - uid: 22898 + rot: -1.5707963267948966 rad + pos: -3.5,9.5 + parent: 46584 +- proto: GasPort + entities: + - uid: 22742 components: - type: Transform - pos: 23.5,9.5 + pos: 47.5,-52.5 parent: 2 - - uid: 22899 + - uid: 22743 components: - type: Transform - pos: 29.5,11.5 + pos: 46.5,-52.5 parent: 2 - - uid: 22900 + - uid: 22744 components: - type: Transform - pos: 29.5,9.5 + pos: 48.5,-52.5 parent: 2 - - uid: 22901 + - uid: 22745 components: - type: Transform - pos: 23.5,11.5 + pos: 49.5,-52.5 parent: 2 - - uid: 22902 + - uid: 22746 components: - type: Transform - pos: -30.5,-1.5 + pos: 43.5,-37.5 parent: 2 - - uid: 22903 + - uid: 22747 components: - type: Transform - pos: -27.5,-1.5 + pos: -24.5,52.5 parent: 2 - - uid: 22904 + - uid: 22748 components: - type: Transform - pos: -3.5,40.5 + pos: -20.5,52.5 parent: 2 - - uid: 22905 + - uid: 22749 components: - type: Transform - pos: 0.5,36.5 + rot: 3.141592653589793 rad + pos: -12.5,-57.5 parent: 2 - - uid: 22906 + - uid: 22750 components: - type: Transform - pos: -41.5,-1.5 + rot: 3.141592653589793 rad + pos: -5.5,-55.5 parent: 2 - - uid: 22907 + - uid: 22751 components: - type: Transform - pos: -43.5,-1.5 + rot: 3.141592653589793 rad + pos: -4.5,-55.5 parent: 2 - - uid: 22908 + - uid: 22752 components: - type: Transform - pos: -3.5,42.5 + rot: -1.5707963267948966 rad + pos: -6.5,43.5 parent: 2 - - uid: 22909 + - uid: 42550 components: - type: Transform - pos: -3.5,41.5 - parent: 2 - - uid: 22910 + pos: 38.5,83.5 + parent: 40599 + - uid: 42551 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,7.5 - parent: 2 - - uid: 22911 + pos: 66.5,63.5 + parent: 40599 + - uid: 42552 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,-32.5 - parent: 2 - - uid: 22912 + pos: 66.5,61.5 + parent: 40599 + - uid: 46721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-33.5 - parent: 2 - - uid: 22913 + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 46584 + - uid: 46722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-34.5 - parent: 2 - - uid: 22914 + pos: 5.5,7.5 + parent: 46584 + - uid: 46723 components: - type: Transform - pos: 67.5,-25.5 - parent: 2 - - uid: 22915 + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 46584 +- proto: GasPressurePump + entities: + - uid: 22753 components: - type: Transform - pos: 69.5,-25.5 + rot: 3.141592653589793 rad + pos: -5.5,-54.5 parent: 2 - - uid: 22916 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-25.5 + rot: 3.141592653589793 rad + pos: -4.5,-54.5 parent: 2 - - uid: 22917 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22755 components: - type: Transform - pos: 65.5,-28.5 + pos: -15.5,-64.5 parent: 2 - - uid: 22918 + - type: AtmosPipeColor + color: '#D75500FF' + - uid: 22756 components: - type: Transform - pos: 12.5,53.5 + rot: 3.141592653589793 rad + pos: -1.5,-64.5 parent: 2 - - uid: 22919 + - type: AtmosPipeColor + color: '#7B29BAFF' + - uid: 22757 components: - type: Transform - pos: 10.5,62.5 + rot: 1.5707963267948966 rad + pos: -19.5,-59.5 parent: 2 - - uid: 22920 + - type: AtmosPipeColor + color: '#5E6BFFFF' + - uid: 22758 components: - type: Transform - pos: 12.5,51.5 + rot: -1.5707963267948966 rad + pos: -19.5,-61.5 parent: 2 - - uid: 22921 + - type: AtmosPipeColor + color: '#FF5E5EFF' + - uid: 22759 components: - type: Transform - pos: 14.5,51.5 + rot: -1.5707963267948966 rad + pos: -19.5,-57.5 parent: 2 - - uid: 22922 + - type: AtmosPipeColor + color: '#5E6BFFFF' + - uid: 22760 components: - type: Transform - pos: 12.5,62.5 + pos: -11.5,-64.5 parent: 2 - - uid: 22923 + - type: AtmosPipeColor + color: '#525252FF' + - uid: 22761 components: - type: Transform - pos: 14.5,62.5 + pos: -7.5,-64.5 parent: 2 - - uid: 22924 + - type: AtmosPipeColor + color: '#A1A1A1FF' + - uid: 22762 components: - type: Transform - pos: 8.5,62.5 + pos: -3.5,-64.5 parent: 2 - - uid: 22925 + - type: AtmosPipeColor + color: '#7B29BAFF' + - uid: 22763 components: - type: Transform - pos: 67.5,-50.5 + rot: 3.141592653589793 rad + pos: -9.5,-64.5 parent: 2 - - uid: 22926 + - type: AtmosPipeColor + color: '#525252FF' + - uid: 22764 components: - type: Transform - pos: 69.5,-50.5 + pos: 0.5,-64.5 parent: 2 - - uid: 22927 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22765 components: - type: Transform - pos: 71.5,-37.5 + rot: 3.141592653589793 rad + pos: -13.5,-64.5 parent: 2 - - uid: 22928 + - type: AtmosPipeColor + color: '#D75500FF' + - uid: 22766 components: - type: Transform - pos: 71.5,-38.5 + pos: 47.5,-55.5 parent: 2 - - uid: 22929 + - uid: 22767 components: - type: Transform - pos: 71.5,-40.5 + pos: 50.5,-55.5 parent: 2 - - uid: 22930 + - uid: 22768 components: - type: Transform - pos: 71.5,-41.5 + rot: 3.141592653589793 rad + pos: 41.5,-39.5 parent: 2 - - uid: 22931 + - uid: 22769 components: + - type: MetaData + name: waste - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,8.5 + pos: -16.5,-52.5 parent: 2 - - uid: 22932 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 22770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,6.5 + pos: 39.5,-39.5 parent: 2 - - uid: 22933 + - uid: 22771 components: - type: Transform - pos: -39.5,0.5 + rot: 3.141592653589793 rad + pos: 46.5,-54.5 parent: 2 - - uid: 22934 + - uid: 22772 components: - type: Transform - pos: -39.5,2.5 + rot: 3.141592653589793 rad + pos: 51.5,-54.5 parent: 2 - - uid: 22935 + - uid: 22773 components: - type: Transform - pos: -9.5,-13.5 + rot: 3.141592653589793 rad + pos: -20.5,51.5 parent: 2 - - uid: 22936 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22774 components: - type: Transform - pos: -10.5,-13.5 + pos: -24.5,51.5 parent: 2 - - uid: 22937 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 22775 components: - type: Transform - pos: -7.5,-13.5 + rot: 3.141592653589793 rad + pos: -5.5,-64.5 parent: 2 - - uid: 22938 + - type: AtmosPipeColor + color: '#A1A1A1FF' + - uid: 22776 components: - type: Transform - pos: -6.5,-13.5 + rot: 1.5707963267948966 rad + pos: -19.5,-63.5 parent: 2 - - uid: 22939 + - type: AtmosPipeColor + color: '#FF5E5EFF' + - uid: 22777 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,1.5 + pos: -19.5,-64.5 parent: 2 - - uid: 22940 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 22778 components: - type: Transform - pos: -11.5,51.5 + pos: -17.5,-64.5 parent: 2 - - uid: 22941 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 22779 components: - type: Transform - pos: -51.5,10.5 + rot: 3.141592653589793 rad + pos: -12.5,-56.5 parent: 2 - - uid: 22942 + - uid: 22780 components: - type: Transform - pos: -51.5,1.5 + pos: 0.5,-57.5 parent: 2 - - uid: 22943 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22781 components: - type: Transform - pos: -51.5,3.5 + rot: 3.141592653589793 rad + pos: 1.5,-57.5 parent: 2 - - uid: 22944 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 46724 components: - type: Transform - pos: -51.5,2.5 - parent: 2 - - uid: 22945 + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 46584 + - uid: 46725 components: - type: Transform - pos: -51.5,4.5 - parent: 2 - - uid: 22946 + pos: 0.5,11.5 + parent: 46584 +- proto: GasRecycler + entities: + - uid: 22782 components: - type: Transform - pos: -51.5,5.5 + pos: -10.5,-58.5 parent: 2 - - uid: 22947 +- proto: GasThermoMachineFreezer + entities: + - uid: 22783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 + rot: -1.5707963267948966 rad + pos: 45.5,-40.5 parent: 2 - - uid: 22948 + - uid: 22784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-1.5 + pos: -22.5,52.5 parent: 2 - - uid: 22949 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 22785 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,14.5 + pos: -4.5,-56.5 parent: 2 - - uid: 22950 +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 22786 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-13.5 + pos: 30.5,36.5 parent: 2 - - uid: 22951 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasThermoMachineHeater + entities: + - uid: 22787 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,14.5 - parent: 2 - - uid: 22952 - components: - - type: Transform - pos: 76.5,-33.5 - parent: 2 - - uid: 22953 - components: - - type: Transform - pos: 76.5,-32.5 - parent: 2 - - uid: 22954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,-24.5 + pos: -5.5,-56.5 parent: 2 - - uid: 22955 +- proto: GasVentPump + entities: + - uid: 22788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-14.5 + pos: -50.5,16.5 parent: 2 - - uid: 22956 + - type: DeviceNetwork + deviceLists: + - 112 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22789 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-16.5 + pos: -48.5,4.5 parent: 2 - - uid: 22957 + - type: DeviceNetwork + deviceLists: + - 127 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22790 components: - type: Transform - pos: 76.5,-34.5 + rot: -1.5707963267948966 rad + pos: -36.5,14.5 parent: 2 - - uid: 22958 + - type: DeviceNetwork + deviceLists: + - 117 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-24.5 + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 parent: 2 - - uid: 22959 + - type: DeviceNetwork + deviceLists: + - 113 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,14.5 + pos: -23.5,24.5 parent: 2 - - uid: 22960 + - type: DeviceNetwork + deviceLists: + - 158 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22793 components: - type: Transform - pos: -35.5,-14.5 + pos: 58.5,7.5 parent: 2 - - uid: 22961 + - type: DeviceNetwork + deviceLists: + - 96 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22794 components: - type: Transform - pos: -7.5,71.5 + rot: 1.5707963267948966 rad + pos: 0.5,19.5 parent: 2 - - uid: 22962 + - type: DeviceNetwork + deviceLists: + - 94 + - uid: 22795 components: - type: Transform - pos: -10.5,70.5 + rot: 3.141592653589793 rad + pos: 55.5,-5.5 parent: 2 - - uid: 22963 + - type: DeviceNetwork + deviceLists: + - 93 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22796 components: - type: Transform - pos: -9.5,71.5 + rot: -1.5707963267948966 rad + pos: -1.5,39.5 parent: 2 - - uid: 22964 + - type: DeviceNetwork + deviceLists: + - 155 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22797 components: - type: Transform - pos: -10.5,68.5 + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 parent: 2 - - uid: 22965 + - type: DeviceNetwork + deviceLists: + - 78 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22798 components: - type: Transform rot: 3.141592653589793 rad - pos: 69.5,-17.5 + pos: 2.5,-20.5 parent: 2 - - uid: 22966 + - type: DeviceNetwork + deviceLists: + - 77 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22799 components: - type: Transform rot: -1.5707963267948966 rad - pos: 91.5,-24.5 - parent: 2 - - uid: 22967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,14.5 + pos: 26.5,-8.5 parent: 2 - - uid: 22968 + - type: DeviceNetwork + deviceLists: + - 74 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22800 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,14.5 + pos: 21.5,3.5 parent: 2 - - uid: 22969 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22801 components: - type: Transform - pos: -51.5,12.5 + rot: -1.5707963267948966 rad + pos: -11.5,9.5 parent: 2 - - uid: 22970 + - type: DeviceNetwork + deviceLists: + - 70 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,14.5 + rot: -1.5707963267948966 rad + pos: -16.5,3.5 parent: 2 - - uid: 22971 + - type: DeviceNetwork + deviceLists: + - 71 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22803 components: - type: Transform - pos: -51.5,6.5 + rot: -1.5707963267948966 rad + pos: -16.5,-14.5 parent: 2 - - uid: 22972 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22804 components: - type: Transform - pos: -27.5,-12.5 + pos: -7.5,-16.5 parent: 2 - - uid: 22973 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,52.5 + pos: 27.5,-52.5 parent: 2 - - uid: 22974 + - type: DeviceNetwork + deviceLists: + - 29 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22806 components: - type: Transform - pos: 0.5,38.5 + rot: -1.5707963267948966 rad + pos: 28.5,-43.5 parent: 2 - - uid: 22975 + - type: DeviceNetwork + deviceLists: + - 32 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,10.5 + rot: -1.5707963267948966 rad + pos: 28.5,-38.5 parent: 2 - - uid: 22976 + - type: DeviceNetwork + deviceLists: + - 33 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22808 components: - type: Transform - pos: -3.5,58.5 + pos: 18.5,-40.5 parent: 2 - - uid: 22977 + - type: DeviceNetwork + deviceLists: + - 34 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22809 components: - type: Transform - pos: -3.5,56.5 + rot: 3.141592653589793 rad + pos: 18.5,-44.5 parent: 2 - - uid: 22978 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22810 components: - type: Transform - pos: -3.5,57.5 + rot: 1.5707963267948966 rad + pos: -29.5,-40.5 parent: 2 - - uid: 22979 + - type: DeviceNetwork + deviceLists: + - 50 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22811 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-25.5 + rot: 1.5707963267948966 rad + pos: 66.5,-47.5 parent: 2 - - uid: 22980 + - type: DeviceNetwork + deviceLists: + - 42 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22812 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-25.5 + rot: -1.5707963267948966 rad + pos: 58.5,-34.5 parent: 2 - - uid: 22981 + - type: DeviceNetwork + deviceLists: + - 40 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-32.5 + rot: -1.5707963267948966 rad + pos: 83.5,-44.5 parent: 2 - - uid: 22982 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22814 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-31.5 + pos: 89.5,-42.5 parent: 2 - - uid: 22983 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-29.5 + pos: 75.5,-45.5 parent: 2 - - uid: 22984 + - type: DeviceNetwork + deviceLists: + - 43 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 + pos: 27.5,-34.5 parent: 2 - - uid: 22985 + - type: DeviceNetwork + deviceLists: + - 156 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,4.5 + pos: -26.5,-45.5 parent: 2 - - uid: 22986 + - type: DeviceNetwork + deviceLists: + - 49 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,5.5 + pos: -20.5,-36.5 parent: 2 - - uid: 22987 + - type: DeviceNetwork + deviceLists: + - 48 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,6.5 + pos: 67.5,-33.5 parent: 2 - - uid: 22988 + - type: DeviceNetwork + deviceLists: + - 41 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22820 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,7.5 + pos: 75.5,-39.5 parent: 2 - - uid: 22989 + - type: DeviceNetwork + deviceLists: + - 46 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22821 components: - type: Transform - pos: -118.5,16.5 + rot: -1.5707963267948966 rad + pos: 79.5,-37.5 parent: 2 - - uid: 22990 + - type: DeviceNetwork + deviceLists: + - 45 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22822 components: - type: Transform - pos: -118.5,20.5 + rot: 3.141592653589793 rad + pos: 67.5,-53.5 parent: 2 - - uid: 22991 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22823 components: - type: Transform - pos: -118.5,24.5 + rot: 1.5707963267948966 rad + pos: 24.5,-53.5 parent: 2 - - uid: 22992 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22824 components: - type: Transform - pos: -114.5,23.5 + pos: 23.5,-36.5 parent: 2 - - uid: 22993 + - type: DeviceNetwork + deviceLists: + - 28 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22825 components: - type: Transform - pos: -114.5,19.5 + rot: 3.141592653589793 rad + pos: 5.5,-42.5 parent: 2 - - uid: 22994 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22826 components: - type: Transform - pos: -114.5,15.5 + rot: 3.141592653589793 rad + pos: 2.5,-49.5 parent: 2 - - uid: 22995 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,17.5 + pos: 7.5,-49.5 parent: 2 - - uid: 22996 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22828 components: - type: Transform - pos: -113.5,0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-50.5 parent: 2 - - uid: 22997 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22829 components: - type: Transform - pos: -112.5,0.5 + pos: -14.5,-40.5 parent: 2 - - uid: 22998 + - type: DeviceNetwork + deviceLists: + - 47 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22830 components: - type: Transform - pos: -115.5,29.5 + rot: 1.5707963267948966 rad + pos: -15.5,-49.5 parent: 2 - - uid: 22999 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22831 components: - type: Transform - pos: -115.5,32.5 + pos: -16.5,-45.5 parent: 2 - - uid: 23000 + - type: DeviceNetwork + deviceLists: + - 49 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22832 components: - type: Transform - pos: -115.5,28.5 + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 parent: 2 - - uid: 23001 + - type: DeviceNetwork + deviceLists: + - 48 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22833 components: - type: Transform - pos: -102.5,32.5 + rot: -1.5707963267948966 rad + pos: -22.5,-50.5 parent: 2 - - uid: 23002 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22834 components: - type: Transform - pos: -102.5,31.5 + pos: 1.5,-53.5 parent: 2 - - uid: 23003 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22835 components: - type: Transform - pos: -115.5,33.5 + rot: -1.5707963267948966 rad + pos: 6.5,-54.5 parent: 2 - - uid: 23004 + - type: DeviceNetwork + deviceLists: + - 36 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22836 components: - type: Transform - pos: -102.5,30.5 + rot: 3.141592653589793 rad + pos: -3.5,-55.5 parent: 2 - - uid: 23005 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22837 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,69.5 + pos: -9.5,-47.5 parent: 2 - - uid: 23006 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22838 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,69.5 + pos: -9.5,-43.5 parent: 2 - - uid: 23007 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22839 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,69.5 + pos: -9.5,-34.5 parent: 2 - - uid: 23008 + - type: DeviceNetwork + deviceLists: + - 52 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22840 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,69.5 + pos: -4.5,-45.5 parent: 2 - - uid: 23009 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22841 components: - type: Transform - pos: -119.5,26.5 + rot: 3.141592653589793 rad + pos: -34.5,6.5 parent: 2 - - uid: 23010 + - type: DeviceNetwork + deviceLists: + - 119 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22842 components: - type: Transform - pos: -116.5,27.5 + rot: 3.141592653589793 rad + pos: -55.5,10.5 parent: 2 - - uid: 23011 + - type: DeviceNetwork + deviceLists: + - 54 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22843 components: - type: Transform - pos: -118.5,27.5 + rot: 3.141592653589793 rad + pos: -22.5,3.5 parent: 2 - - uid: 23012 + - type: DeviceNetwork + deviceLists: + - 124 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22844 components: - type: Transform - pos: -117.5,27.5 + pos: -35.5,11.5 parent: 2 - - uid: 23013 + - type: DeviceNetwork + deviceLists: + - 120 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22845 components: - type: Transform - pos: -100.5,30.5 + rot: 3.141592653589793 rad + pos: -22.5,11.5 parent: 2 - - uid: 23014 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22846 components: - type: Transform - pos: -101.5,30.5 + rot: 3.141592653589793 rad + pos: -7.5,47.5 parent: 2 - - uid: 23015 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22847 components: - type: Transform - pos: -99.5,29.5 + pos: -8.5,53.5 parent: 2 - - uid: 23016 + - type: DeviceNetwork + deviceLists: + - 153 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22848 components: - type: Transform - pos: -99.5,27.5 + rot: 1.5707963267948966 rad + pos: -26.5,55.5 parent: 2 - - uid: 23017 + - type: DeviceNetwork + deviceLists: + - 144 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22849 components: - type: Transform - pos: -99.5,28.5 + rot: 3.141592653589793 rad + pos: -14.5,42.5 parent: 2 - - uid: 23018 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22850 components: - type: Transform - pos: -102.5,33.5 + rot: 3.141592653589793 rad + pos: 4.5,48.5 parent: 2 - - uid: 23019 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22851 components: - type: Transform - pos: -115.5,27.5 + rot: -1.5707963267948966 rad + pos: -1.5,58.5 parent: 2 - - uid: 23020 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22852 components: - type: Transform - pos: -115.5,30.5 + rot: -1.5707963267948966 rad + pos: -15.5,54.5 parent: 2 - - uid: 23021 + - type: DeviceNetwork + deviceLists: + - 147 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22853 components: - type: Transform - pos: -115.5,31.5 + rot: 3.141592653589793 rad + pos: -25.5,45.5 parent: 2 - - uid: 23022 + - type: DeviceNetwork + deviceLists: + - 142 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22854 components: - type: Transform - pos: -114.5,34.5 + rot: 3.141592653589793 rad + pos: -21.5,45.5 parent: 2 - - uid: 23023 + - type: DeviceNetwork + deviceLists: + - 142 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22855 components: - type: Transform - pos: -104.5,34.5 + rot: 1.5707963267948966 rad + pos: -6.5,42.5 parent: 2 - - uid: 23024 + - type: DeviceNetwork + deviceLists: + - 141 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22856 components: - type: Transform - pos: -105.5,34.5 + pos: -11.5,70.5 parent: 2 - - uid: 23025 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22857 components: - type: Transform - pos: -106.5,34.5 + rot: 1.5707963267948966 rad + pos: -6.5,57.5 parent: 2 - - uid: 23026 + - type: DeviceNetwork + deviceLists: + - 68 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22858 components: - type: Transform - pos: -107.5,34.5 + rot: 1.5707963267948966 rad + pos: -14.5,59.5 parent: 2 - - uid: 23027 + - type: DeviceNetwork + deviceLists: + - 68 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22859 components: - type: Transform - pos: -111.5,34.5 + rot: 1.5707963267948966 rad + pos: 3.5,52.5 parent: 2 - - uid: 23028 + - type: DeviceNetwork + deviceLists: + - 149 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22860 components: - type: Transform - pos: -112.5,34.5 + rot: 1.5707963267948966 rad + pos: 5.5,44.5 parent: 2 - - uid: 23029 + - type: DeviceNetwork + deviceLists: + - 151 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22861 components: - type: Transform - pos: -113.5,34.5 + rot: 3.141592653589793 rad + pos: 10.5,47.5 parent: 2 - - uid: 23030 + - type: DeviceNetwork + deviceLists: + - 150 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22862 components: - type: Transform - pos: -108.5,34.5 + rot: -1.5707963267948966 rad + pos: 3.5,60.5 parent: 2 - - uid: 23031 + - type: DeviceNetwork + deviceLists: + - 154 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22863 components: - type: Transform - pos: -109.5,34.5 + rot: -1.5707963267948966 rad + pos: -7.5,72.5 parent: 2 - - uid: 23032 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22864 components: - type: Transform - pos: -110.5,34.5 + rot: -1.5707963267948966 rad + pos: -22.5,55.5 parent: 2 - - uid: 23033 + - type: DeviceNetwork + deviceLists: + - 145 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22865 components: - type: Transform - pos: -103.5,34.5 + rot: -1.5707963267948966 rad + pos: 3.5,37.5 parent: 2 - - uid: 23034 + - type: DeviceNetwork + deviceLists: + - 152 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22866 components: - type: Transform - pos: -119.5,25.5 + rot: 3.141592653589793 rad + pos: 5.5,57.5 parent: 2 - - uid: 23035 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22867 components: - type: Transform - pos: -111.5,19.5 + rot: 3.141592653589793 rad + pos: 20.5,57.5 parent: 2 - - uid: 23036 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22868 components: - type: Transform - pos: -111.5,20.5 + rot: 3.141592653589793 rad + pos: 13.5,53.5 parent: 2 - - uid: 23037 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22869 components: - type: Transform - pos: -111.5,21.5 + rot: 1.5707963267948966 rad + pos: 8.5,63.5 parent: 2 - - uid: 23038 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22870 components: - type: Transform - pos: -106.5,21.5 + rot: -1.5707963267948966 rad + pos: 14.5,63.5 parent: 2 - - uid: 23039 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22871 components: - type: Transform - pos: -106.5,20.5 + pos: 18.5,61.5 parent: 2 - - uid: 23040 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22872 components: - type: Transform - pos: -106.5,19.5 + rot: -1.5707963267948966 rad + pos: 27.5,57.5 parent: 2 - - uid: 23041 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22873 components: - type: Transform - pos: 97.5,-12.5 + rot: 3.141592653589793 rad + pos: 24.5,53.5 parent: 2 - - uid: 23042 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22874 components: - type: Transform - pos: 96.5,-12.5 + pos: -27.5,50.5 parent: 2 - - uid: 23043 + - type: DeviceNetwork + deviceLists: + - 143 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-13.5 + rot: 3.141592653589793 rad + pos: 15.5,1.5 parent: 2 - - uid: 42186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,62.5 - parent: 40203 - - uid: 42187 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,60.5 - parent: 40203 - - uid: 42188 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,61.5 - parent: 40203 - - uid: 42189 + - type: DeviceNetwork + deviceLists: + - 64 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22876 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,63.5 - parent: 40203 - - uid: 42190 + pos: 5.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 64 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22877 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,61.5 - parent: 40203 -- proto: GrilleBroken - entities: - - uid: 23044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-37.5 + pos: -0.5,1.5 parent: 2 - - uid: 23045 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22878 components: - type: Transform - pos: 99.5,-37.5 + rot: 3.141592653589793 rad + pos: -10.5,1.5 parent: 2 - - uid: 23046 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22879 components: - type: Transform rot: 3.141592653589793 rad - pos: 100.5,-38.5 + pos: 11.5,-4.5 parent: 2 - - uid: 23047 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22880 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.5,-38.5 + pos: 11.5,-8.5 parent: 2 -- proto: GrilleDiagonal - entities: - - uid: 23048 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22881 components: - type: Transform - pos: -1.5,5.5 + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 parent: 2 - - uid: 23049 + - type: DeviceNetwork + deviceLists: + - 59 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 + rot: 3.141592653589793 rad + pos: 17.5,-11.5 parent: 2 - - uid: 23050 + - type: DeviceNetwork + deviceLists: + - 59 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,6.5 + pos: -6.5,-6.5 parent: 2 - - uid: 23051 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22884 components: - type: Transform - pos: 0.5,6.5 + rot: 3.141592653589793 rad + pos: -5.5,-3.5 parent: 2 - - uid: 23052 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-37.5 + rot: 1.5707963267948966 rad + pos: -6.5,-10.5 parent: 2 -- proto: GrilleSpawner - entities: - - uid: 23053 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22886 components: - type: Transform - pos: 37.5,-37.5 + pos: 12.5,-16.5 parent: 2 -- proto: GroundCannabis - entities: - - uid: 17569 - components: - - type: Transform - parent: 17567 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23054 + - type: DeviceNetwork + deviceLists: + - 73 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22887 components: - type: Transform - pos: 80.67547,6.0009174 + rot: 3.141592653589793 rad + pos: 16.5,6.5 parent: 2 - - uid: 23055 + - type: DeviceNetwork + deviceLists: + - 75 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22888 components: - type: Transform - pos: 80.284096,5.744075 + rot: -1.5707963267948966 rad + pos: 25.5,10.5 parent: 2 -- proto: GroundCannabisRainbow - entities: - - uid: 23056 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22889 components: - type: Transform - pos: 80.322205,6.156748 + rot: -1.5707963267948966 rad + pos: 10.5,-12.5 parent: 2 -- proto: GroundTobacco - entities: - - uid: 23057 + - type: DeviceNetwork + deviceLists: + - 79 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22890 components: - type: Transform - pos: -26.453497,7.578557 + rot: -1.5707963267948966 rad + pos: 1.5,13.5 parent: 2 - - type: Stack - count: 5 - - uid: 23058 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22891 components: - type: Transform - pos: -26.672247,7.797307 + pos: -2.5,14.5 parent: 2 - - type: Stack - count: 5 - - uid: 42191 - components: - - type: Transform - pos: 31.421791,29.58874 - parent: 40203 -- proto: GunSafe - entities: - - uid: 8259 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22892 components: - - type: MetaData - name: сейф для документов - type: Transform - pos: 4.5,-10.5 + pos: 7.5,14.5 parent: 2 - - type: AccessReader - access: - - - Captain - - - HeadOfSecurity - - 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: - - 8260 - - 8261 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19452 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22893 components: - type: Transform - pos: -60.5,54.5 + pos: 22.5,20.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19472 - - 19462 - - 19471 - - 19470 - - 19469 - - 19461 - - 19468 - - 19460 - - 19459 - - 19467 - - 19458 - - 19457 - - 19466 - - 19456 - - 19455 - - 19465 - - 19464 - - 19454 - - 19453 - - 19463 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23059 + - type: DeviceNetwork + deviceLists: + - 82 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22894 components: - - type: MetaData - name: оружейный сейф Матебы - type: Transform - pos: -44.5,7.5 + rot: -1.5707963267948966 rad + pos: 16.5,28.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23061 - - 23062 - - 23060 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23063 + - type: DeviceNetwork + deviceLists: + - 159 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22895 components: - - type: MetaData - name: оружейный сейф смотрителя - type: Transform - pos: -44.5,-15.5 + pos: 9.5,26.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23066 - - 23064 - - 23065 - - 23067 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41504 - components: - - type: Transform - pos: 41.5,73.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41506 - - 41507 - - 41505 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 42192 - components: - - type: Transform - pos: 71.41253,79.5 - parent: 40203 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.48 - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - mask: - - Impassable - - TableLayer - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 75 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 45007 - components: - - type: MetaData - desc: Стандартное хранилище. - name: сейф - - type: Transform - pos: 6.5,9.5 - parent: 44970 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 45017 - - 45016 - - 45014 - - 45015 - - 45010 - - 45018 - - 45008 - - 45011 - - 45012 - - 45013 - - 45009 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: GunSafeDisabler - entities: - - uid: 23068 + - type: DeviceNetwork + deviceLists: + - 83 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22896 components: - type: Transform - pos: -39.5,-19.5 + rot: -1.5707963267948966 rad + pos: 38.5,20.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: GunSafePistolMk58 - entities: - - uid: 23069 + - type: DeviceNetwork + deviceLists: + - 86 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22897 components: - type: Transform - pos: -41.5,-6.5 + pos: 3.5,32.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23070 - - 23071 - - 23072 - - 23073 - - 23074 - - 23075 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: GunSafeRifleLecter - entities: - - uid: 23076 + - type: DeviceNetwork + deviceLists: + - 60 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22898 components: - type: Transform - pos: -42.5,-6.5 + pos: 10.5,32.5 parent: 2 -- proto: GunSafeSubMachineGunDrozd - entities: - - uid: 23077 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22899 components: - type: Transform - pos: -42.5,-7.5 + pos: 12.5,38.5 parent: 2 -- proto: Handcuffs - entities: - - uid: 23078 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22900 components: - type: Transform - pos: 97.52334,-11.443766 + pos: 17.5,39.5 parent: 2 - - uid: 23079 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22901 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.351852,13.483408 - parent: 2 - - uid: 23080 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.3388095,69.64353 + pos: 31.5,22.5 parent: 2 - - uid: 23081 + - type: DeviceNetwork + deviceLists: + - 85 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22902 components: - type: Transform - pos: 15.477762,-7.2063613 + pos: 21.5,33.5 parent: 2 - - uid: 23082 + - type: DeviceNetwork + deviceLists: + - 58 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22903 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.049684,-7.406753 + pos: 31.5,37.5 parent: 2 - - uid: 23083 + - type: DeviceNetwork + deviceLists: + - 57 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22904 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.047844,-11.4398365 + pos: 30.5,33.5 parent: 2 - - uid: 23084 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22905 components: - type: Transform - pos: -110.47645,19.866163 + pos: 30.5,28.5 parent: 2 - - uid: 23085 + - type: DeviceNetwork + deviceLists: + - 85 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22906 components: - type: Transform - pos: -110.41395,19.553663 + rot: 1.5707963267948966 rad + pos: 42.5,20.5 parent: 2 - - uid: 23086 + - type: DeviceNetwork + deviceLists: + - 87 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.575478,-16.366497 + rot: -1.5707963267948966 rad + pos: 47.5,18.5 parent: 2 - - uid: 23087 + - type: DeviceNetwork + deviceLists: + - 61 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22908 components: - type: Transform - pos: -27.393522,16.762276 + rot: 3.141592653589793 rad + pos: -18.5,23.5 parent: 2 - - uid: 23088 + - type: DeviceNetwork + deviceLists: + - 158 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22909 components: - type: Transform - pos: -27.393522,16.501858 + rot: 1.5707963267948966 rad + pos: -8.5,36.5 parent: 2 - - uid: 23089 + - type: DeviceNetwork + deviceLists: + - 139 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22910 components: - type: Transform rot: 3.141592653589793 rad - pos: -89.459015,27.485405 + pos: -6.5,68.5 parent: 2 -- proto: HandheldGPSBasic - entities: - - uid: 23090 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.61014,-51.61218 + pos: 52.5,10.5 parent: 2 -- proto: HandheldHealthAnalyzer - entities: - - uid: 23091 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22912 components: - type: Transform - pos: 22.52323,22.524895 + rot: -1.5707963267948966 rad + pos: 64.5,6.5 parent: 2 - - uid: 23092 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.310762,8.61825 + pos: 56.5,10.5 parent: 2 - - uid: 23093 + - type: DeviceNetwork + deviceLists: + - 95 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22914 components: - type: Transform - pos: -52.658504,13.402292 + rot: 3.141592653589793 rad + pos: 10.5,20.5 parent: 2 -- proto: HandheldStationMap - entities: - - uid: 23094 + - type: DeviceNetwork + deviceLists: + - 81 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22915 components: - type: Transform - pos: 33.59906,-18.858057 + pos: 61.5,10.5 parent: 2 - - type: ActivatableUI - inHandsOnly: False - missingComponents: - - Item - - uid: 23095 + - type: DeviceNetwork + deviceLists: + - 99 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22916 components: - type: Transform - pos: -3.9804597,30.045774 + rot: 3.141592653589793 rad + pos: 61.5,-0.5 parent: 2 - - type: ActivatableUI - inHandsOnly: False - missingComponents: - - Item - - uid: 23096 + - type: DeviceNetwork + deviceLists: + - 88 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22917 components: - type: Transform - pos: -92.42715,-6.368115 + rot: 3.141592653589793 rad + pos: 6.5,20.5 parent: 2 - - type: ActivatableUI - inHandsOnly: False - missingComponents: - - Item - - uid: 23097 + - type: DeviceNetwork + deviceLists: + - 94 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22918 components: - type: Transform - pos: 66.254684,-56.743343 + rot: 3.141592653589793 rad + pos: -114.5,5.5 parent: 2 - - type: ActivatableUI - inHandsOnly: False - missingComponents: - - Item - - uid: 23098 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22919 components: - type: Transform - pos: 79.88674,-8.092673 + pos: -100.5,7.5 parent: 2 - - type: ActivatableUI - inHandsOnly: False - missingComponents: - - Item - - uid: 23099 + - type: DeviceNetwork + deviceLists: + - 106 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22920 components: - type: Transform - pos: 73.11175,-21.388737 + rot: 3.141592653589793 rad + pos: -103.5,3.5 parent: 2 - - type: ActivatableUI - inHandsOnly: False - missingComponents: - - Item -- proto: HandLabeler - entities: - - uid: 23100 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22921 components: - type: Transform - pos: 8.78009,-9.171686 + rot: -1.5707963267948966 rad + pos: -101.5,24.5 parent: 2 - - uid: 23101 + - type: DeviceNetwork + deviceLists: + - 105 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22922 components: - type: Transform - pos: -8.546241,-7.4165397 + rot: 3.141592653589793 rad + pos: -108.5,15.5 parent: 2 - - uid: 23102 + - type: DeviceNetwork + deviceLists: + - 103 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22923 components: - type: Transform - pos: 17.579212,-13.438869 + rot: 1.5707963267948966 rad + pos: -108.5,19.5 parent: 2 - - uid: 23103 + - type: DeviceNetwork + deviceLists: + - 103 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.309503,44.57702 + pos: -116.5,17.5 parent: 2 - - uid: 23104 + - type: DeviceNetwork + deviceLists: + - 91 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22925 components: - type: Transform - pos: 81.73427,-40.35262 + pos: -116.5,21.5 parent: 2 - - uid: 23105 + - type: DeviceNetwork + deviceLists: + - 90 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22926 components: - type: Transform - pos: 27.580082,-5.1942916 + pos: -116.5,25.5 parent: 2 -- proto: HappyHonk - entities: - - uid: 23106 + - type: DeviceNetwork + deviceLists: + - 97 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22927 components: - type: Transform - pos: -114.43009,4.5617642 + pos: -110.5,30.5 parent: 2 -- proto: HarmonicaInstrument - entities: - - uid: 23107 + - type: DeviceNetwork + deviceLists: + - 107 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22928 components: - type: Transform - pos: 94.5009,-14.514538 + pos: -107.5,30.5 parent: 2 -- proto: HarpInstrument - entities: - - uid: 23108 + - type: DeviceNetwork + deviceLists: + - 104 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22929 components: - type: Transform - pos: 58.5,9.5 + pos: -108.5,25.5 parent: 2 - - uid: 23109 + - type: DeviceNetwork + deviceLists: + - 103 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22930 components: - type: Transform - pos: 33.5,24.5 + rot: -1.5707963267948966 rad + pos: -101.5,16.5 parent: 2 -- proto: HeadSkeleton - entities: - - uid: 23110 + - type: DeviceNetwork + deviceLists: + - 98 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22931 components: - type: Transform - pos: 73.90317,-31.41401 + rot: 1.5707963267948966 rad + pos: -108.5,9.5 parent: 2 - - uid: 23111 + - type: DeviceNetwork + deviceLists: + - 102 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22932 components: - - type: MetaData - desc: Бедный Begorrchi... - name: Begorrchi - type: Transform - pos: 14.413132,65.41359 + rot: 3.141592653589793 rad + pos: -97.5,3.5 parent: 2 - - uid: 23112 + - type: DeviceNetwork + deviceLists: + - 106 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22933 components: - type: Transform - pos: -45.57689,34.44487 + rot: -1.5707963267948966 rad + pos: -9.5,-21.5 parent: 2 -- proto: HighSecArmoryLocked - entities: - - uid: 23113 + - type: DeviceNetwork + deviceLists: + - 138 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22934 components: - type: Transform - pos: -38.5,-10.5 + pos: -29.5,15.5 parent: 2 -- proto: HighSecCommandLocked - entities: - - uid: 23114 + - type: DeviceNetwork + deviceLists: + - 108 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22935 components: - type: Transform - pos: 2.5,-12.5 + rot: -1.5707963267948966 rad + pos: -22.5,14.5 parent: 2 - - uid: 23115 + - type: DeviceNetwork + deviceLists: + - 110 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22936 components: - type: Transform - pos: -5.5,11.5 + pos: -46.5,16.5 parent: 2 - - uid: 23116 + - type: DeviceNetwork + deviceLists: + - 121 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22937 components: - type: Transform - pos: 10.5,11.5 + pos: -44.5,11.5 parent: 2 - - uid: 23117 + - type: DeviceNetwork + deviceLists: + - 120 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22938 components: - type: Transform - pos: 5.5,13.5 + rot: 3.141592653589793 rad + pos: -24.5,6.5 parent: 2 - - uid: 23118 + - type: DeviceNetwork + deviceLists: + - 124 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22939 components: - type: Transform - pos: -0.5,13.5 + pos: -30.5,8.5 parent: 2 -- proto: HoloprojectorSecurity - entities: - - uid: 23119 + - type: DeviceNetwork + deviceLists: + - 118 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22940 components: - type: Transform - pos: -26.497156,1.5621265 + pos: -28.5,12.5 parent: 2 -- proto: HospitalCurtains - entities: - - uid: 23120 + - type: DeviceNetwork + deviceLists: + - 123 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,28.5 + pos: -55.5,16.5 parent: 2 - - uid: 23121 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,32.5 + pos: -38.5,14.5 parent: 2 - - uid: 42193 + - type: DeviceNetwork + deviceLists: + - 116 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,83.5 - parent: 40203 -- proto: HospitalCurtainsOpen - entities: - - uid: 23122 + pos: -42.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 115 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,50.5 + pos: -54.5,-2.5 parent: 2 - - uid: 23123 + - type: DeviceNetwork + deviceLists: + - 126 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22945 components: - type: Transform - pos: -4.5,67.5 + pos: -43.5,6.5 parent: 2 - - uid: 23124 + - type: DeviceNetwork + deviceLists: + - 128 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22946 components: - type: Transform - pos: -61.5,49.5 + rot: 1.5707963267948966 rad + pos: -44.5,1.5 parent: 2 - - uid: 23125 + - type: DeviceNetwork + deviceLists: + - 125 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22947 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,22.5 + pos: -37.5,6.5 parent: 2 - - uid: 23126 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22948 components: - type: Transform - pos: 16.5,64.5 + pos: -41.5,-3.5 parent: 2 - - uid: 23127 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22949 components: - type: Transform - pos: 16.5,60.5 + rot: 1.5707963267948966 rad + pos: -33.5,-5.5 parent: 2 - - uid: 23128 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22950 components: - type: Transform - pos: 21.5,60.5 + pos: -32.5,1.5 parent: 2 - - uid: 23129 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22951 components: - type: Transform - pos: 16.5,51.5 + pos: -29.5,-3.5 parent: 2 - - uid: 23130 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22952 components: - type: Transform - pos: 9.5,65.5 + pos: -29.5,-10.5 parent: 2 - - uid: 23131 + - type: DeviceNetwork + deviceLists: + - 132 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22953 components: - type: Transform - pos: 13.5,65.5 + rot: 3.141592653589793 rad + pos: -38.5,-15.5 parent: 2 - - uid: 23132 + - type: DeviceNetwork + deviceLists: + - 133 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,62.5 + rot: 3.141592653589793 rad + pos: -42.5,-15.5 parent: 2 - - uid: 23133 + - type: DeviceNetwork + deviceLists: + - 134 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22955 components: - type: Transform - pos: -14.5,52.5 + rot: 3.141592653589793 rad + pos: -43.5,-7.5 parent: 2 - - uid: 23134 + - type: DeviceNetwork + deviceLists: + - 113 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22956 components: - type: Transform - pos: -14.5,53.5 + rot: 3.141592653589793 rad + pos: -46.5,-7.5 parent: 2 - - uid: 23135 + - type: DeviceNetwork + deviceLists: + - 113 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22957 components: - type: Transform - pos: -5.5,67.5 + rot: 1.5707963267948966 rad + pos: -25.5,-18.5 parent: 2 - - uid: 23136 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22958 components: - type: Transform - pos: -16.5,50.5 + rot: -1.5707963267948966 rad + pos: -4.5,-32.5 parent: 2 - - uid: 23137 + - type: DeviceNetwork + deviceLists: + - 136 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22959 components: - type: Transform - pos: -16.5,49.5 + rot: -1.5707963267948966 rad + pos: -3.5,-37.5 parent: 2 - - uid: 23138 + - type: DeviceNetwork + deviceLists: + - 52 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22960 components: - type: Transform - pos: -16.5,52.5 + pos: 0.5,-16.5 parent: 2 - - uid: 23139 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22961 components: - type: Transform - pos: -14.5,50.5 + rot: 1.5707963267948966 rad + pos: 54.5,-11.5 parent: 2 - - uid: 23140 + - type: DeviceNetwork + deviceLists: + - 160 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 22962 components: - type: Transform - pos: -14.5,49.5 + rot: 1.5707963267948966 rad + pos: 49.5,-13.5 parent: 2 - - uid: 23141 + - type: DeviceNetwork + deviceLists: + - 161 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 22963 components: - type: Transform rot: -1.5707963267948966 rad - pos: -105.5,30.5 + pos: 47.5,-13.5 parent: 2 - - uid: 23142 - components: + - type: DeviceNetwork + deviceLists: + - 161 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22964 + components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,53.5 + pos: -53.5,16.5 parent: 2 - - uid: 23143 + - type: DeviceNetwork + deviceLists: + - 122 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,21.5 + pos: -40.5,16.5 parent: 2 - - uid: 23144 + - type: DeviceNetwork + deviceLists: + - 115 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,52.5 + pos: -38.5,-8.5 parent: 2 - - uid: 42194 + - type: DeviceNetwork + deviceLists: + - 113 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,81.5 - parent: 40203 - - uid: 42195 + pos: -36.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 117 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,81.5 - parent: 40203 -- proto: hydroponicsSoil - entities: - - uid: 23145 + pos: -48.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 112 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,31.5 + rot: -1.5707963267948966 rad + pos: -19.5,7.5 parent: 2 - - uid: 23146 + - type: DeviceNetwork + deviceLists: + - 124 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,31.5 + pos: -33.5,5.5 parent: 2 - - uid: 23147 + - type: DeviceNetwork + deviceLists: + - 119 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22971 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,31.5 + pos: -25.5,10.5 parent: 2 - - uid: 23148 + - type: DeviceNetwork + deviceLists: + - 123 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22972 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,20.5 + pos: -21.5,11.5 parent: 2 - - uid: 23149 + - type: DeviceNetwork + deviceLists: + - 53 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,20.5 + rot: 3.141592653589793 rad + pos: -26.5,6.5 parent: 2 - - uid: 23150 + - type: DeviceNetwork + deviceLists: + - 124 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,20.5 + rot: 3.141592653589793 rad + pos: -48.5,11.5 parent: 2 - - uid: 23151 + - type: DeviceNetwork + deviceLists: + - 120 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,20.5 + rot: 1.5707963267948966 rad + pos: -27.5,15.5 parent: 2 - - uid: 23152 + - type: DeviceNetwork + deviceLists: + - 108 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,18.5 + rot: 3.141592653589793 rad + pos: 59.5,6.5 parent: 2 - - uid: 23153 + - type: DeviceNetwork + deviceLists: + - 96 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,18.5 + pos: 57.5,10.5 parent: 2 - - uid: 23154 + - type: DeviceNetwork + deviceLists: + - 95 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22978 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,18.5 + pos: 64.5,7.5 parent: 2 - - uid: 42196 - components: - - type: Transform - pos: 52.5,70.5 - parent: 40203 - - uid: 42197 - components: - - type: Transform - pos: 49.5,73.5 - parent: 40203 - - uid: 42198 + - type: DeviceNetwork + deviceLists: + - 89 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22979 components: - type: Transform - pos: 51.5,71.5 - parent: 40203 - - uid: 42199 + pos: 62.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 99 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22980 components: - type: Transform - pos: 49.5,69.5 - parent: 40203 - - uid: 42200 + rot: 1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 77 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22981 components: - type: Transform - pos: 47.5,71.5 - parent: 40203 -- proto: HydroponicsToolClippers - entities: - - uid: 14827 + pos: 3.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 78 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22982 components: - type: Transform - parent: 14826 - - type: Physics - canCollide: False - - uid: 23155 + rot: -1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 74 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.505005,17.555195 + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 parent: 2 - - uid: 42201 + - type: DeviceNetwork + deviceLists: + - 71 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.769012,73.53957 - parent: 40203 -- proto: HydroponicsToolHatchet - entities: - - uid: 23156 + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 70 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22985 components: - type: Transform - pos: -90.04945,12.756027 + rot: 3.141592653589793 rad + pos: 5.5,-0.5 parent: 2 - - uid: 23157 + - type: DeviceNetwork + deviceLists: + - 64 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22986 components: - type: Transform - pos: -49.820953,65.54441 + rot: 3.141592653589793 rad + pos: -6.5,-16.5 parent: 2 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 23158 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22987 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.520584,17.569668 + pos: -16.5,-12.5 parent: 2 - - uid: 42202 + - type: DeviceNetwork + deviceLists: + - 72 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22988 components: - type: Transform - pos: 51.54369,70.83399 - parent: 40203 - - uid: 42203 + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 124 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22989 components: - type: Transform - pos: 51.54369,70.83399 - parent: 40203 -- proto: HydroponicsToolSpade - entities: - - uid: 23159 + rot: -1.5707963267948966 rad + pos: -3.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22990 components: - type: Transform - pos: 79.68577,7.8152633 + rot: -1.5707963267948966 rad + pos: 6.5,-55.5 parent: 2 - - uid: 23160 + - type: DeviceNetwork + deviceLists: + - 36 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22991 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.520584,17.600918 + pos: -9.5,-58.5 parent: 2 - - uid: 42204 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.153065,71.31837 - parent: 40203 -- proto: hydroponicsTray - entities: - - uid: 23161 + pos: 42.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22993 components: - type: Transform - pos: 11.5,39.5 + rot: 1.5707963267948966 rad + pos: 42.5,-49.5 parent: 2 - - uid: 23162 + - type: DeviceNetwork + deviceLists: + - 30 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22994 components: - type: Transform - pos: 11.5,40.5 + pos: 28.5,-52.5 parent: 2 - - uid: 23163 + - type: DeviceNetwork + deviceLists: + - 29 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22995 components: - type: Transform - pos: 9.5,34.5 + rot: -1.5707963267948966 rad + pos: 28.5,-37.5 parent: 2 - - uid: 23164 + - type: DeviceNetwork + deviceLists: + - 33 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22996 components: - type: Transform - pos: 14.5,34.5 + pos: 22.5,-36.5 parent: 2 - - uid: 23165 + - type: DeviceNetwork + deviceLists: + - 28 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22997 components: - type: Transform - pos: 14.5,35.5 + rot: 3.141592653589793 rad + pos: 18.5,-38.5 parent: 2 - - uid: 23166 + - type: DeviceNetwork + deviceLists: + - 34 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22998 components: - type: Transform - pos: 16.5,33.5 + rot: 3.141592653589793 rad + pos: 22.5,-41.5 parent: 2 - - uid: 23167 + - type: DeviceNetwork + deviceLists: + - 32 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 22999 components: - type: Transform - pos: 14.5,33.5 + rot: 1.5707963267948966 rad + pos: -9.5,-48.5 parent: 2 - - uid: 23168 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23000 components: - type: Transform - pos: 16.5,34.5 + rot: 1.5707963267948966 rad + pos: -9.5,-42.5 parent: 2 - - uid: 23169 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23001 components: - type: Transform - pos: 16.5,35.5 + rot: 3.141592653589793 rad + pos: -15.5,-45.5 parent: 2 - - uid: 23170 + - type: DeviceNetwork + deviceLists: + - 49 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23002 components: - type: Transform - pos: 9.5,33.5 + rot: 3.141592653589793 rad + pos: -27.5,-45.5 parent: 2 - - uid: 23171 + - type: DeviceNetwork + deviceLists: + - 49 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23003 components: - type: Transform - pos: 11.5,38.5 + rot: 3.141592653589793 rad + pos: -6.5,-54.5 parent: 2 - - uid: 23172 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23004 components: - type: Transform - pos: 9.5,35.5 + rot: -1.5707963267948966 rad + pos: -14.5,-39.5 parent: 2 - - uid: 23173 + - type: DeviceNetwork + deviceLists: + - 47 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23005 components: - type: Transform - pos: 11.5,33.5 + pos: 26.5,-34.5 parent: 2 - - uid: 23174 + - type: DeviceNetwork + deviceLists: + - 156 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23006 components: - type: Transform - pos: 11.5,34.5 + pos: 0.5,-54.5 parent: 2 - - uid: 23175 + - type: DeviceNetwork + deviceLists: + - 51 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23007 components: - type: Transform - pos: 11.5,35.5 + rot: 3.141592653589793 rad + pos: 73.5,-41.5 parent: 2 - - uid: 23176 + - type: DeviceNetwork + deviceLists: + - 46 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 82.5,8.5 + rot: -1.5707963267948966 rad + pos: 85.5,-45.5 parent: 2 - - uid: 23177 + - type: DeviceNetwork + deviceLists: + - 44 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,5.5 + pos: 65.5,-47.5 parent: 2 - - uid: 23178 + - type: DeviceNetwork + deviceLists: + - 42 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,6.5 + rot: 3.141592653589793 rad + pos: 69.5,-53.5 parent: 2 - - uid: 23179 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 83.5,7.5 + rot: -1.5707963267948966 rad + pos: 75.5,-46.5 parent: 2 - - uid: 23180 + - type: DeviceNetwork + deviceLists: + - 43 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 79.5,8.5 + rot: -1.5707963267948966 rad + pos: 88.5,-44.5 parent: 2 - - uid: 23181 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 81.5,8.5 + rot: 3.141592653589793 rad + pos: 78.5,-39.5 parent: 2 - - uid: 23182 + - type: DeviceNetwork + deviceLists: + - 45 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,8.5 + pos: 55.5,-34.5 parent: 2 - - uid: 23183 + - type: DeviceNetwork + deviceLists: + - 40 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23015 components: - type: Transform - pos: 13.5,40.5 + pos: 66.5,-34.5 parent: 2 - - uid: 23184 + - type: DeviceNetwork + deviceLists: + - 41 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23016 components: - type: Transform - pos: 13.5,39.5 + rot: 3.141592653589793 rad + pos: 17.5,-44.5 parent: 2 - - uid: 23185 + - type: DeviceNetwork + deviceLists: + - 35 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23017 components: - type: Transform - pos: 13.5,38.5 + rot: 1.5707963267948966 rad + pos: 24.5,-54.5 parent: 2 - - uid: 23186 + - type: DeviceNetwork + deviceLists: + - 157 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23018 components: - type: Transform - pos: -68.5,-8.5 + rot: -1.5707963267948966 rad + pos: -22.5,-49.5 parent: 2 -- proto: HypoDart - entities: - - uid: 23187 + - type: DeviceNetwork + deviceLists: + - 39 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.30595,25.253252 + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 parent: 2 -- proto: Hypopen - entities: - - uid: 23188 + - type: DeviceNetwork + deviceLists: + - 38 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23020 components: - type: Transform - pos: 29.119497,56.565838 + rot: -1.5707963267948966 rad + pos: 10.5,-49.5 parent: 2 -- proto: IDComputerCircuitboard - entities: - - uid: 23189 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23021 components: - type: Transform - pos: 15.384924,12.720999 + rot: -1.5707963267948966 rad + pos: 7.5,-48.5 parent: 2 -- proto: Implanter - entities: - - uid: 23190 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23022 components: - type: Transform - pos: -52.499935,9.399364 + rot: 3.141592653589793 rad + pos: 3.5,-50.5 parent: 2 -- proto: InflatableDoor - entities: - - uid: 23191 + - type: DeviceNetwork + deviceLists: + - 37 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23023 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,57.5 + pos: -13.5,-49.5 parent: 2 -- proto: InflatableWall - entities: - - uid: 23192 + - type: DeviceNetwork + deviceLists: + - 26 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,58.5 + pos: -27.5,-40.5 parent: 2 - - uid: 23193 + - type: DeviceNetwork + deviceLists: + - 50 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23025 components: - type: Transform - pos: -61.5,23.5 + pos: -22.5,-36.5 parent: 2 - - uid: 23194 + - type: DeviceNetwork + deviceLists: + - 48 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23026 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,25.5 + rot: 1.5707963267948966 rad + pos: -23.5,-41.5 parent: 2 - - uid: 23195 + - type: DeviceNetwork + deviceLists: + - 48 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,26.5 + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 parent: 2 - - uid: 23196 + - type: DeviceNetwork + deviceLists: + - 52 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 101.5,-45.5 + pos: -53.5,13.5 parent: 2 -- proto: InflatableWallStack1 - entities: - - uid: 23197 + - type: DeviceNetwork + deviceLists: + - 54 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.40405,56.54781 + pos: -28.5,5.5 parent: 2 - - uid: 23198 + - type: DeviceNetwork + deviceLists: + - 118 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.49381,-46.322838 + rot: -1.5707963267948966 rad + pos: -38.5,15.5 parent: 2 -- proto: IngotGold - entities: - - uid: 14970 + - type: DeviceNetwork + deviceLists: + - 116 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23031 components: - type: Transform - parent: 14968 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23199 + rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 120 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23032 components: - type: Transform - pos: 4.642009,-8.394894 + pos: 5.5,48.5 parent: 2 -- proto: IngotGold1 - entities: - - uid: 45010 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23033 components: - - type: MetaData - desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45011 + pos: -8.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23034 components: - - type: MetaData - desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45012 + rot: 1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 155 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23035 components: - - type: MetaData - desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45013 + rot: 1.5707963267948966 rad + pos: -25.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 142 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23036 components: - - type: MetaData - desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: IngotSilver - entities: - - uid: 23200 + pos: -15.5,47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 147 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23037 components: - type: Transform - pos: 4.438884,-8.207394 + rot: 3.141592653589793 rad + pos: -15.5,42.5 parent: 2 -- proto: IngotSilver1 - entities: - - uid: 23201 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23038 components: - type: Transform - pos: 43.538464,53.595737 + pos: 19.5,57.5 parent: 2 -- proto: IntercomAssembly - entities: - - uid: 42205 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23039 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,61.5 - parent: 40203 - - uid: 42206 + pos: -8.5,42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 141 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23040 components: - type: Transform - pos: 66.5,64.5 - parent: 40203 - - uid: 42207 + pos: -9.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 153 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23041 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,67.5 - parent: 40203 - - uid: 42208 + pos: -21.5,43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 142 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23042 components: - type: Transform - pos: 54.5,53.5 - parent: 40203 - - uid: 42209 + rot: 1.5707963267948966 rad + pos: -14.5,58.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23043 components: - type: Transform - pos: 50.5,80.5 - parent: 40203 - - uid: 42210 + pos: 2.5,52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 149 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,75.5 - parent: 40203 - - uid: 42211 + rot: -1.5707963267948966 rad + pos: -8.5,57.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 68 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23045 components: - type: Transform rot: 3.141592653589793 rad - pos: 75.5,72.5 - parent: 40203 - - uid: 42212 - components: - - type: Transform - pos: 42.5,67.5 - parent: 40203 - - uid: 42213 + pos: 3.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 151 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23046 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,62.5 - parent: 40203 -- proto: IntercomCommand - entities: - - uid: 23202 + pos: 10.5,46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 150 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23047 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-1.5 + pos: -1.5,59.5 parent: 2 - - uid: 23203 + - type: DeviceNetwork + deviceLists: + - 67 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-1.5 + pos: 3.5,61.5 parent: 2 -- proto: IntercomElectronics - entities: - - uid: 23204 + - type: DeviceNetwork + deviceLists: + - 154 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.536645,7.4238377 + rot: 1.5707963267948966 rad + pos: -13.5,68.5 parent: 2 -- proto: IntercomEngineering - entities: - - uid: 23205 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23050 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-35.5 + pos: -26.5,56.5 parent: 2 -- proto: IntercomMedical - entities: - - uid: 23206 + - type: DeviceNetwork + deviceLists: + - 144 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23051 components: - type: Transform - pos: -0.5,44.5 + rot: 1.5707963267948966 rad + pos: -21.5,55.5 parent: 2 -- proto: IntercomScience - entities: - - uid: 23207 + - type: DeviceNetwork + deviceLists: + - 145 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23052 components: - type: Transform - pos: 29.5,-32.5 + rot: 1.5707963267948966 rad + pos: 3.5,38.5 parent: 2 -- proto: IntercomSecurity - entities: - - uid: 23208 + - type: DeviceNetwork + deviceLists: + - 152 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-3.5 + pos: 6.5,57.5 parent: 2 -- proto: IntercomService - entities: - - uid: 23209 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23054 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,23.5 + pos: 14.5,53.5 parent: 2 -- proto: IntercomSupply - entities: - - uid: 23210 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-33.5 + pos: 10.5,63.5 parent: 2 -- proto: JanitorialTrolley - entities: - - uid: 23211 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23056 components: - type: Transform - pos: 4.5,30.5 + pos: 12.5,63.5 parent: 2 - - uid: 23212 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23057 components: - type: Transform - pos: 3.5,30.5 + pos: 17.5,61.5 parent: 2 - - uid: 23213 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,23.5 + rot: 3.141592653589793 rad + pos: 23.5,53.5 parent: 2 -- proto: JanitorServiceLight - entities: - - uid: 23214 - components: - - type: Transform - pos: -18.5,1.5 - parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,3.5 - parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23216 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23059 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,3.5 + pos: 27.5,56.5 parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23217 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23060 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-25.5 + pos: -28.5,51.5 parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23218 + - type: DeviceNetwork + deviceLists: + - 143 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,33.5 + pos: 15.5,0.5 parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23219 + - type: DeviceNetwork + deviceLists: + - 64 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23062 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-17.5 - parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23220 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-25.5 + pos: -0.5,-0.5 parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23221 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,24.5 + pos: -10.5,0.5 parent: 2 - - type: DamageOnInteract - isDamageActive: False - - type: ApcPowerReceiver - powerLoad: 0 -- proto: JetpackBlackFilled - entities: - - uid: 23222 + - type: DeviceNetwork + deviceLists: + - 63 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.490737,12.64674 + rot: -1.5707963267948966 rad + pos: 10.5,-4.5 parent: 2 - - uid: 23223 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.318862,12.45924 + rot: 1.5707963267948966 rad + pos: 9.5,-8.5 parent: 2 -- proto: Joint - entities: - - uid: 15543 - components: - - type: Transform - parent: 15542 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23224 + - type: DeviceNetwork + deviceLists: + - 66 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23066 components: - type: Transform - pos: 42.47071,29.801947 + pos: 16.5,-8.5 parent: 2 - - uid: 23226 - components: - - type: Transform - parent: 23225 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23227 + - type: DeviceNetwork + deviceLists: + - 59 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.33459,-40.062466 + rot: -1.5707963267948966 rad + pos: 17.5,-12.5 parent: 2 -- proto: JointRainbow - entities: - - uid: 23228 + - type: DeviceNetwork + deviceLists: + - 59 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23068 components: - type: Transform - pos: 80.54093,6.4901414 + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 parent: 2 - - uid: 23229 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23069 components: - type: Transform - pos: 80.66324,6.5757556 + rot: 1.5707963267948966 rad + pos: -5.5,-4.5 parent: 2 - - uid: 23230 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23070 components: - type: Transform - pos: 80.87116,6.86929 + pos: -7.5,-10.5 parent: 2 -- proto: Jug - entities: - - uid: 42214 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23071 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.585075,63.45594 - parent: 40203 - - uid: 42215 - components: - - type: Transform - pos: 61.3507,63.79969 - parent: 40203 -- proto: Jukebox - entities: - - uid: 23231 - components: - - type: Transform - pos: 39.5,23.5 + pos: 21.5,-2.5 parent: 2 - - uid: 23232 + - type: DeviceNetwork + deviceLists: + - 55 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23072 components: - type: Transform - pos: -41.5,26.5 + rot: 3.141592653589793 rad + pos: 11.5,-16.5 parent: 2 - - uid: 45741 - components: - - type: Transform - pos: 0.5,1.5 - parent: 44970 -- proto: JukeboxCircuitBoard - entities: - - uid: 23233 + - type: DeviceNetwork + deviceLists: + - 73 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23073 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.411645,7.5905046 + pos: 17.5,7.5 parent: 2 -- proto: Katana - entities: - - uid: 23234 + - type: DeviceNetwork + deviceLists: + - 75 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23074 components: - type: Transform - rot: 2.356194490192345 rad - pos: -101.50523,43.63407 + rot: 3.141592653589793 rad + pos: 27.5,10.5 parent: 2 -- proto: KitchenElectricGrill - entities: - - uid: 23235 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23075 components: - type: Transform - pos: 33.5,34.5 + pos: 11.5,-12.5 parent: 2 -- proto: KitchenKnife - entities: - - uid: 45742 - components: - - type: Transform - pos: 6.008722,3.238326 - parent: 44970 -- proto: KitchenMicrowave - entities: - - uid: 23236 + - type: DeviceNetwork + deviceLists: + - 79 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23076 components: - type: Transform - pos: 25.5,61.5 + rot: 3.141592653589793 rad + pos: -2.5,11.5 parent: 2 - - uid: 23237 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23077 components: - type: Transform - pos: 31.5,34.5 + rot: 3.141592653589793 rad + pos: 7.5,11.5 parent: 2 - - uid: 23238 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23078 components: - type: Transform - pos: 30.5,34.5 + pos: 3.5,13.5 parent: 2 - - uid: 23239 + - type: DeviceNetwork + deviceLists: + - 80 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23079 components: - type: Transform - pos: 8.5,41.5 + rot: -1.5707963267948966 rad + pos: 21.5,19.5 parent: 2 - - uid: 23240 + - type: DeviceNetwork + deviceLists: + - 82 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23080 components: - type: Transform - pos: 25.5,-51.5 + rot: 1.5707963267948966 rad + pos: 11.5,26.5 parent: 2 - - uid: 23241 + - type: DeviceNetwork + deviceLists: + - 83 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23081 components: - type: Transform - pos: -3.5,-50.5 + pos: 17.5,28.5 parent: 2 - - uid: 23242 + - type: DeviceNetwork + deviceLists: + - 159 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23082 components: - type: Transform - pos: 4.5,-56.5 + rot: 1.5707963267948966 rad + pos: 4.5,32.5 parent: 2 - - uid: 23243 + - type: DeviceNetwork + deviceLists: + - 60 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23083 components: - type: Transform - pos: 76.5,-48.5 + rot: -1.5707963267948966 rad + pos: 15.5,32.5 parent: 2 - - uid: 23244 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23084 components: - type: Transform - pos: -46.5,3.5 + pos: 12.5,39.5 parent: 2 - - uid: 23245 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23085 components: - - type: MetaData - desc: Так и просит чтобы в неё положили вилку. - type: Transform - pos: 7.5,44.5 + rot: -1.5707963267948966 rad + pos: 16.5,39.5 parent: 2 - - uid: 23246 + - type: DeviceNetwork + deviceLists: + - 56 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23086 components: - type: Transform - pos: 77.5,3.5 + rot: -1.5707963267948966 rad + pos: 30.5,21.5 parent: 2 - - uid: 23247 + - type: DeviceNetwork + deviceLists: + - 85 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23087 components: - type: Transform - pos: 8.5,-3.5 + rot: 3.141592653589793 rad + pos: 21.5,34.5 parent: 2 - - uid: 23248 + - type: DeviceNetwork + deviceLists: + - 58 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23088 components: - type: Transform - pos: 70.5,-44.5 + rot: -1.5707963267948966 rad + pos: 30.5,32.5 parent: 2 - - uid: 23249 + - type: DeviceNetwork + deviceLists: + - 84 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23089 components: - type: Transform - pos: -114.5,12.5 + rot: -1.5707963267948966 rad + pos: 28.5,28.5 parent: 2 - - uid: 42216 + - type: DeviceNetwork + deviceLists: + - 85 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23090 components: - type: Transform - pos: 48.5,79.5 - parent: 40203 -- proto: KitchenReagentGrinder - entities: - - uid: 23250 + pos: 38.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23091 components: - type: Transform - pos: 26.5,35.5 + rot: -1.5707963267948966 rad + pos: 42.5,22.5 parent: 2 - - uid: 23251 + - type: DeviceNetwork + deviceLists: + - 87 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23092 components: - type: Transform - pos: 7.5,34.5 + rot: -1.5707963267948966 rad + pos: 46.5,19.5 parent: 2 - - uid: 23252 + - type: DeviceNetwork + deviceLists: + - 61 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23093 components: - type: Transform - pos: 42.5,-45.5 + rot: -1.5707963267948966 rad + pos: 29.5,37.5 parent: 2 - - uid: 23253 + - type: DeviceNetwork + deviceLists: + - 57 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23094 components: - type: Transform - pos: 29.5,59.5 + pos: -9.5,36.5 parent: 2 - - uid: 23254 + - type: DeviceNetwork + deviceLists: + - 139 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23095 components: - type: Transform - pos: 81.5,3.5 + rot: -1.5707963267948966 rad + pos: -20.5,25.5 parent: 2 - - uid: 23255 + - type: DeviceNetwork + deviceLists: + - 158 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23096 components: - type: Transform - pos: -6.5,42.5 + rot: 1.5707963267948966 rad + pos: 0.5,20.5 parent: 2 - - type: ContainerContainer - containers: - beakerSlot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23256 - inputContainer: !type:Container - showEnts: False - occludes: True - ents: [] - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 23257 + - type: DeviceNetwork + deviceLists: + - 94 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23097 components: - type: Transform - pos: -115.5,12.5 + rot: 1.5707963267948966 rad + pos: 52.5,11.5 parent: 2 -- proto: KitchenSpike - entities: - - uid: 23258 + - type: DeviceNetwork + deviceLists: + - 92 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23098 components: - type: Transform - pos: 32.5,38.5 + rot: 1.5707963267948966 rad + pos: 56.5,-5.5 parent: 2 - - uid: 23259 + - type: DeviceNetwork + deviceLists: + - 93 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23099 components: - type: Transform - pos: 33.5,38.5 + pos: 11.5,21.5 parent: 2 -- proto: Lamp - entities: - - uid: 21 + - type: DeviceNetwork + deviceLists: + - 81 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23100 components: - type: Transform - pos: -44.68446,-16.178232 + rot: -1.5707963267948966 rad + pos: -109.5,19.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 22 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 22 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 23260 + - type: DeviceNetwork + deviceLists: + - 103 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23101 components: - type: Transform - pos: 57.35971,13.745398 + rot: 3.141592653589793 rad + pos: 6.5,19.5 parent: 2 - - uid: 23261 + - type: DeviceNetwork + deviceLists: + - 94 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23102 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.398117,21.785093 + pos: 61.5,2.5 parent: 2 - - uid: 23262 + - type: DeviceNetwork + deviceLists: + - 88 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.521301,5.2248254 + pos: -100.5,23.5 parent: 2 - - uid: 23263 + - type: DeviceNetwork + deviceLists: + - 105 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23104 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.59101,4.723422 + pos: -115.5,5.5 parent: 2 - - uid: 23264 + - type: DeviceNetwork + deviceLists: + - 100 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.493746,19.790836 + pos: -9.5,74.5 parent: 2 - - uid: 23265 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.4101877,-49.2516 + pos: -7.5,69.5 parent: 2 - - uid: 23266 + - type: DeviceNetwork + deviceLists: + - 69 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 23107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.69733,44.64947 + rot: 1.5707963267948966 rad + pos: -100.5,8.5 parent: 2 - - uid: 23267 + - type: DeviceNetwork + deviceLists: + - 106 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23108 components: - type: Transform - pos: 72.45401,-48.302887 + pos: -109.5,15.5 parent: 2 - - uid: 23268 + - type: DeviceNetwork + deviceLists: + - 103 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23109 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.510212,15.654413 + pos: -109.5,25.5 parent: 2 - - uid: 23269 + - type: DeviceNetwork + deviceLists: + - 103 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23110 components: - type: Transform - pos: -34.099556,2.7923388 + rot: 1.5707963267948966 rad + pos: -116.5,15.5 parent: 2 - - uid: 23270 + - type: DeviceNetwork + deviceLists: + - 91 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.644018,26.715693 + rot: 1.5707963267948966 rad + pos: -116.5,19.5 parent: 2 - - uid: 23271 + - type: DeviceNetwork + deviceLists: + - 90 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23112 components: - type: Transform - pos: -31.578487,-20.299477 + rot: 1.5707963267948966 rad + pos: -116.5,23.5 parent: 2 - - uid: 23272 + - type: DeviceNetwork + deviceLists: + - 97 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.359737,-20.252602 + pos: -111.5,30.5 parent: 2 - - uid: 23273 + - type: DeviceNetwork + deviceLists: + - 107 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23114 components: - type: Transform - pos: -27.594112,-19.268227 + pos: -106.5,30.5 parent: 2 - - uid: 23274 + - type: DeviceNetwork + deviceLists: + - 104 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.3911,63.745224 + pos: -100.5,15.5 parent: 2 - - uid: 42217 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.62448,59.57685 - parent: 40203 - - uid: 42218 - components: - - type: Transform - pos: 56.41559,63.613342 - parent: 40203 -- proto: LampBanana - entities: - - uid: 23275 + - type: DeviceNetwork + deviceLists: + - 98 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23116 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.63051,12.674431 + pos: -108.5,11.5 parent: 2 - - uid: 23276 + - type: DeviceNetwork + deviceLists: + - 102 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.3378363,61.767548 + pos: -106.5,3.5 parent: 2 -- proto: LampGold - entities: - - uid: 19 + - type: DeviceNetwork + deviceLists: + - 101 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23118 components: - type: Transform - pos: 7.7054033,20.982077 + rot: -1.5707963267948966 rad + pos: -98.5,3.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 20 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 20 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 23 + - type: DeviceNetwork + deviceLists: + - 106 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23119 components: - type: Transform - pos: 74.504715,-39.141045 + rot: 3.141592653589793 rad + pos: -24.5,24.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 24 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 24 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 25 + - type: DeviceNetwork + deviceLists: + - 158 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23120 components: - type: Transform - pos: -25.327244,26.74304 + pos: -44.5,16.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 26 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 26 - - type: Physics - canCollide: True - - type: ActionsContainer - - uid: 23277 + - type: DeviceNetwork + deviceLists: + - 121 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23121 components: - type: Transform - pos: 82.48852,-38.263412 + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 parent: 2 - - uid: 23278 + - type: DeviceNetwork + deviceLists: + - 138 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.723301,-11.11289 + rot: -1.5707963267948966 rad + pos: -22.5,15.5 parent: 2 - - uid: 23279 + - type: DeviceNetwork + deviceLists: + - 110 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23123 components: - type: Transform - pos: 18.516712,-11.282619 + pos: -41.5,6.5 parent: 2 - - uid: 23280 + - type: DeviceNetwork + deviceLists: + - 128 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23124 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.370281,57.772923 + pos: -48.5,3.5 parent: 2 - - uid: 23281 + - type: DeviceNetwork + deviceLists: + - 127 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23125 components: - type: Transform - pos: -7.4483852,19.857077 + rot: 1.5707963267948966 rad + pos: -51.5,-2.5 parent: 2 - - uid: 42219 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 73.632904,72.67519 - parent: 40203 -- proto: LampInterrogator - entities: - - uid: 23282 + - type: DeviceNetwork + deviceLists: + - 126 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23126 components: - type: Transform - pos: -29.47723,6.9733744 + rot: -1.5707963267948966 rad + pos: -40.5,1.5 parent: 2 -- proto: LandMineExplosive - entities: - - uid: 23283 + - type: DeviceNetwork + deviceLists: + - 125 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23127 components: - type: Transform - pos: -74.49174,14.349535 + rot: 3.141592653589793 rad + pos: -47.5,-3.5 parent: 2 - - uid: 23284 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23128 components: - type: Transform - pos: -1.4403534,-6.457538 + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 parent: 2 - - uid: 23285 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23129 components: - type: Transform - pos: -1.5809784,-10.453083 + rot: -1.5707963267948966 rad + pos: -33.5,-12.5 parent: 2 - - uid: 23286 + - type: DeviceNetwork + deviceLists: + - 129 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23130 components: - type: Transform - pos: 5.56057,-6.5018287 + rot: 1.5707963267948966 rad + pos: -29.5,1.5 parent: 2 - - uid: 23287 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23131 components: - type: Transform - pos: -128.50732,18.862942 + rot: 3.141592653589793 rad + pos: -28.5,-3.5 parent: 2 - - uid: 23288 + - type: DeviceNetwork + deviceLists: + - 130 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23132 components: - type: Transform - pos: -130.35263,18.280003 + pos: -25.5,-8.5 parent: 2 - - uid: 23289 + - type: DeviceNetwork + deviceLists: + - 131 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23133 components: - type: Transform - pos: -133.10263,19.280003 + rot: 1.5707963267948966 rad + pos: -28.5,-10.5 parent: 2 - - uid: 23290 + - type: DeviceNetwork + deviceLists: + - 132 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23134 components: - type: Transform - pos: -98.497025,33.561344 + rot: 3.141592653589793 rad + pos: -38.5,-12.5 parent: 2 - - uid: 23291 + - type: DeviceNetwork + deviceLists: + - 133 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23135 components: - type: Transform - pos: -127.00745,13.518862 + rot: 1.5707963267948966 rad + pos: -44.5,-15.5 parent: 2 - - uid: 23292 + - type: DeviceNetwork + deviceLists: + - 134 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23136 components: - type: Transform - pos: -127.71057,5.5593987 + pos: -43.5,-8.5 parent: 2 - - uid: 23293 + - type: DeviceNetwork + deviceLists: + - 113 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23137 components: - type: Transform - pos: -124.9137,-1.4548609 + pos: -46.5,-8.5 parent: 2 - - uid: 23294 + - type: DeviceNetwork + deviceLists: + - 113 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23138 components: - type: Transform - pos: -75.56607,57.612232 + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 parent: 2 - - uid: 23295 + - type: DeviceNetwork + deviceLists: + - 114 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23139 components: - type: Transform - pos: -106.59107,36.57143 + rot: -1.5707963267948966 rad + pos: -27.5,-18.5 parent: 2 - - uid: 23296 + - type: DeviceNetwork + deviceLists: + - 135 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23140 components: - type: Transform - pos: -116.5975,35.79018 + pos: -3.5,-32.5 parent: 2 - - uid: 23297 + - type: DeviceNetwork + deviceLists: + - 136 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 23141 components: - type: Transform - pos: -135.49289,3.4588103 + rot: -1.5707963267948966 rad + pos: -4.5,-36.5 parent: 2 - - uid: 23298 + - type: DeviceNetwork + deviceLists: + - 52 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23142 components: - - type: MetaData - desc: Этот плохиш может скрывать в себе множество опасностей. Или велосипедный клаксон - name: модульная мина - type: Transform - pos: -87.50505,60.521137 + rot: 3.141592653589793 rad + pos: 4.5,-16.5 parent: 2 - - uid: 23299 + - type: DeviceNetwork + deviceLists: + - 137 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 23143 components: - - type: MetaData - name: хлопушка с шариками - type: Transform - pos: -88.77272,56.54986 + rot: 3.141592653589793 rad + pos: 54.5,-10.5 parent: 2 - - uid: 23300 + - type: DeviceNetwork + deviceLists: + - 160 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 42553 components: - - type: MetaData - desc: Этот плохиш может скрывать в себе множество опасностей. Или велосипедный клаксон. - name: модульная мина - type: Transform - pos: -129.53354,-12.503874 - parent: 2 - - uid: 42220 + pos: 41.5,62.5 + parent: 40599 + - type: GasVentScrubber + wideNet: True + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42554 components: - type: Transform - pos: 40.788162,82.085236 - parent: 40203 - - uid: 42221 + rot: -1.5707963267948966 rad + pos: 43.5,61.5 + parent: 40599 + - type: GasVentScrubber + wideNet: True + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42555 components: - type: Transform - pos: 43.491287,82.803986 - parent: 40203 - - uid: 42222 + rot: 3.141592653589793 rad + pos: 45.5,60.5 + parent: 40599 + - type: GasVentScrubber + wideNet: True + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42556 components: - type: Transform - pos: 45.475662,81.41336 - parent: 40203 -- proto: LandMineModular - entities: - - uid: 23301 + rot: 3.141592653589793 rad + pos: 41.5,60.5 + parent: 40599 + - type: GasVentScrubber + wideNet: True + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42557 components: - type: Transform - pos: -54.65412,-28.459335 - parent: 2 - - uid: 23302 + pos: 45.5,62.5 + parent: 40599 + - type: GasVentScrubber + wideNet: True + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42558 components: - type: Transform - pos: -57.37287,-29.803085 - parent: 2 - - uid: 23303 + rot: 3.141592653589793 rad + pos: 36.5,80.5 + parent: 40599 + - type: GasVentScrubber + transferRate: 25 + enabled: True + maxPressure: 25 + maxTransferRate: 25 + - uid: 42559 components: - type: Transform - pos: -56.419746,-32.47496 - parent: 2 -- proto: Lantern - entities: - - uid: 17 + pos: 59.5,82.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42560 components: - type: Transform - pos: -60.744293,50.749645 - parent: 2 - - type: HandheldLight - toggleActionEntity: 18 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 18 - - type: ActionsContainer -- proto: LanternFlash - entities: - - uid: 23304 + rot: 3.141592653589793 rad + pos: 52.5,73.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42561 components: - type: Transform - pos: 24.46767,4.5437484 - parent: 2 -- proto: LargeBeaker - entities: - - uid: 23256 + rot: 1.5707963267948966 rad + pos: 62.5,77.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42562 components: - type: Transform - parent: 23255 - - type: Physics - canCollide: False - - uid: 23305 + rot: -1.5707963267948966 rad + pos: 73.5,73.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42563 components: - type: Transform - pos: 43.17299,-45.293705 - parent: 2 - - uid: 23306 + rot: -1.5707963267948966 rad + pos: 68.5,61.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42564 components: - type: Transform - pos: 7.3867645,33.381863 - parent: 2 - - uid: 23307 + rot: 1.5707963267948966 rad + pos: 54.5,68.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42565 components: - type: Transform - pos: 29.488827,60.6854 + rot: -1.5707963267948966 rad + pos: 32.5,68.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,74.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42567 + components: + - type: Transform + pos: 43.5,80.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42568 + components: + - type: Transform + pos: 61.5,63.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42569 + components: + - type: Transform + pos: 55.5,56.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,40.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,40.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,43.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,36.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,36.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' + - uid: 42575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,61.5 + parent: 40599 + - type: DeviceNetwork + deviceLists: + - 40604 + - type: AtmosPipeColor + color: '#800000FF' +- proto: GasVolumePump + entities: + - uid: 46726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 46584 +- proto: Gateway + entities: + - uid: 23144 + components: + - type: Transform + pos: 93.5,-34.5 parent: 2 - - uid: 23308 + - uid: 23145 components: - type: Transform - pos: 30.236628,32.79499 + pos: -100.5,-5.5 parent: 2 - - type: CollisionWake - enabled: False - - uid: 23309 + - uid: 23146 components: - type: Transform - pos: 30.658503,32.57624 + pos: -33.5,15.5 parent: 2 - - type: CollisionWake - enabled: False -- proto: LauncherCreamPie + - uid: 42576 + components: + - type: Transform + pos: 60.5,71.5 + parent: 40599 +- proto: Gauze entities: - - uid: 15044 + - uid: 8351 components: - type: Transform - parent: 15039 + parent: 8347 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: LeavesCannabisDried - entities: - - uid: 23310 + - uid: 23147 components: - type: Transform - pos: 79.2577,3.6680608 + pos: 22.542427,22.177227 parent: 2 - - uid: 23311 +- proto: Gauze1 + entities: + - uid: 23148 components: - type: Transform - pos: 79.759155,3.5090632 + pos: -13.274063,-4.5637527 parent: 2 - - uid: 23312 + - uid: 23149 components: - type: Transform - pos: 80.46853,3.484602 + pos: -44.20678,-11.489349 parent: 2 -- proto: LedLightBulb - entities: - - uid: 23314 + - uid: 42577 components: - type: Transform - parent: 23313 - - type: LightBulb - color: '#FF0000FF' - - type: Physics - canCollide: False - - uid: 23316 + pos: 55.352486,63.378967 + parent: 40599 + - uid: 42578 components: - type: Transform - parent: 23315 - - type: LightBulb - color: '#FF0000FF' - - type: Physics - canCollide: False - - uid: 23318 + rot: -0.3490658503988659 rad + pos: 30.515541,31.948114 + parent: 40599 + - uid: 47285 components: - type: Transform - parent: 23317 - - type: LightBulb - color: '#FF0000FF' - - type: Physics - canCollide: False - - uid: 23320 + rot: 3.141592653589793 rad + pos: 1.9053934,0.6556383 + parent: 47245 +- proto: GeigerCounter + entities: + - uid: 23150 components: - type: Transform - parent: 23319 - - type: LightBulb - color: '#FF0000FF' - - type: Physics - canCollide: False - - uid: 23322 + rot: -1.5707963267948966 rad + pos: -24.51841,-40.52533 + parent: 2 +- proto: GeneratorBasic + entities: + - uid: 46086 components: - type: Transform - parent: 23321 - - type: LightBulb - lightRadius: 15 - lightEnergy: 3 - color: '#FF4444FF' - - type: Physics - canCollide: False - - uid: 23324 + pos: 9.5,9.5 + parent: 45355 +- proto: GeneratorBasic15kW + entities: + - uid: 23151 components: - type: Transform - parent: 23323 - - type: LightBulb - lightRadius: 15 - lightEnergy: 3 - color: '#FF4444FF' - - type: Physics - canCollide: False - - uid: 42224 + pos: -131.5,8.5 + parent: 2 + - uid: 23152 components: - type: Transform - parent: 42223 - - type: LightBulb - color: '#FF4444FF' - - type: Physics - canCollide: False - - uid: 42226 + pos: -131.5,9.5 + parent: 2 + - uid: 23153 components: - type: Transform - parent: 42225 - - type: LightBulb - color: '#FF4444FF' - - type: Physics - canCollide: False - - uid: 42228 + pos: -134.5,8.5 + parent: 2 + - uid: 23154 components: - type: Transform - parent: 42227 - - type: LightBulb - color: '#BD1A1AFF' - - type: Physics - canCollide: False - - uid: 42230 + pos: -134.5,9.5 + parent: 2 + - uid: 42579 components: - type: Transform - parent: 42229 - - type: LightBulb - color: '#BD1A1AFF' - - type: Physics - canCollide: False -- proto: Left4ZedChemistryBottle + pos: 63.5,48.5 + parent: 40599 +- proto: GeneratorRTGDamaged entities: - - uid: 15604 + - uid: 23155 components: - type: Transform - parent: 15603 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15605 + pos: -21.5,-37.5 + parent: 2 + - uid: 23156 components: - type: Transform - parent: 15603 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15606 + pos: -21.5,-35.5 + parent: 2 + - uid: 23157 components: - type: Transform - parent: 15603 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15607 + pos: 36.5,-35.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 47286 components: - type: Transform - parent: 15603 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LeftArmBorgEngineer + pos: -2.5,0.5 + parent: 47245 +- proto: GenericTank entities: - - uid: 23325 + - uid: 23158 components: - - type: MetaData - name: замок зажигания - type: Transform - rot: -1.5707963267948966 rad - pos: 10.932782,-13.779762 + pos: 24.5,-5.5 parent: 2 -- proto: LeftLegBorg +- proto: Girder entities: - - uid: 23326 + - uid: 23159 components: - - type: MetaData - name: глушитель - type: Transform rot: -1.5707963267948966 rad - pos: 11.573407,-12.748512 + pos: 90.5,-38.5 parent: 2 -- proto: LeftLegBorgService - entities: - - uid: 23327 + - uid: 23160 components: - - type: MetaData - name: тормозная колодка - type: Transform - rot: -3.141592653589793 rad - pos: 11.943434,-13.418121 + rot: -1.5707963267948966 rad + pos: 91.5,-39.5 parent: 2 -- proto: LegionnaireBonfire - entities: - - uid: 23328 + - uid: 23161 components: - type: Transform - pos: 100.5,0.5 + rot: -1.5707963267948966 rad + pos: 96.5,-38.5 parent: 2 - - uid: 23329 + - uid: 23162 components: - type: Transform - pos: 96.5,6.5 + pos: 23.5,55.5 parent: 2 -- proto: LightBulb - entities: - - uid: 23331 + - uid: 23163 components: - type: Transform - parent: 23330 - - type: LightBulb - color: '#FF0000FF' - - type: Physics - canCollide: False - - uid: 42232 + pos: 58.5,31.5 + parent: 2 + - uid: 23164 components: - type: Transform - parent: 42231 - - type: LightBulb - color: '#FF2222FF' - - type: Physics - canCollide: False -- proto: LightBulbBroken - entities: - - uid: 23333 + pos: 58.5,30.5 + parent: 2 + - uid: 23165 components: - type: Transform - parent: 23332 - - type: Physics - canCollide: False - - uid: 23335 + pos: -53.5,67.5 + parent: 2 + - uid: 23166 components: - type: Transform - parent: 23334 - - type: Physics - canCollide: False - - uid: 42234 + pos: -53.5,66.5 + parent: 2 + - uid: 23167 components: - type: Transform - parent: 42233 - - type: Physics - canCollide: False - - uid: 42236 + rot: 3.141592653589793 rad + pos: 104.5,-43.5 + parent: 2 + - uid: 23168 components: - type: Transform - parent: 42235 - - type: Physics - canCollide: False - - uid: 42238 + rot: 1.5707963267948966 rad + pos: 98.5,-42.5 + parent: 2 + - uid: 42580 components: - type: Transform - parent: 42237 - - type: Physics - canCollide: False - - uid: 42240 + rot: 1.5707963267948966 rad + pos: 67.5,74.5 + parent: 40599 + - uid: 46727 components: - type: Transform - parent: 42239 - - type: Physics - canCollide: False -- proto: LightBulbOld + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 46584 + - uid: 46728 + components: + - type: Transform + pos: 2.5,3.5 + parent: 46584 + - uid: 46729 + components: + - type: Transform + pos: 0.5,7.5 + parent: 46584 + - uid: 46730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 46584 +- proto: GlassBoxLaserFilled entities: - - uid: 23337 + - uid: 23169 components: - type: Transform - parent: 23336 - - type: Physics - canCollide: False - - uid: 23339 + rot: 3.141592653589793 rad + pos: 10.5,-9.5 + parent: 2 +- proto: GlowstickYellow + entities: + - uid: 46087 components: - type: Transform - parent: 23338 - - type: Physics - canCollide: False - - uid: 42242 + pos: 4.5002213,4.0691066 + parent: 45355 + - uid: 46088 components: - type: Transform - parent: 42241 - - type: Physics - canCollide: False -- proto: Lighter + pos: 4.5002213,4.0691066 + parent: 45355 + - uid: 46089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.3595963,3.9441066 + parent: 45355 + - uid: 46090 + components: + - type: Transform + pos: 3.7162526,1.3591027 + parent: 45355 + - uid: 46091 + components: + - type: Transform + pos: 3.6693776,1.5778527 + parent: 45355 + - uid: 46092 + components: + - type: Transform + pos: 3.4975026,1.3278527 + parent: 45355 + - uid: 46093 + components: + - type: Transform + pos: 3.3568776,1.5153527 + parent: 45355 +- proto: Gohei entities: - - uid: 23340 + - uid: 23170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.30383,15.518229 + pos: -37.342716,24.641232 parent: 2 -- proto: LightReplacer +- proto: GoldRingDiamond entities: - - uid: 14722 + - uid: 42581 + components: + - type: MetaData + desc: Изготовлено из этично добытых космических алмазов. На кольце виднеется гравировка "Элеонора" + - type: Transform + rot: 1.1693705988362009 rad + pos: 39.50833,35.64275 + parent: 40599 +- proto: GoldRingGem + entities: + - uid: 47033 components: - type: Transform - parent: 14717 + parent: 47031 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: LightTree01 +- proto: GrassBattlemap entities: - - uid: 23341 + - uid: 23171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.811974,40.343792 + pos: 94.18579,-15.608288 parent: 2 - - uid: 23342 +- proto: GravityGeneratorMini + entities: + - uid: 47287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.956306,46.682034 - parent: 2 - - uid: 23343 + pos: 1.5,-1.5 + parent: 47245 +- proto: GrenadeDummy + entities: + - uid: 23172 components: + - type: MetaData + desc: Граната, создающая небольшой но разрушительный взрыв. + name: разрывная граната - type: Transform - pos: 40.96067,43.664898 + pos: -80.35872,12.684977 parent: 2 -- proto: LightTree02 +- proto: Grille entities: - - uid: 23344 + - uid: 23173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.304153,39.423416 + rot: 1.5707963267948966 rad + pos: 98.5,-38.5 parent: 2 - - uid: 23345 + - uid: 23174 components: - type: Transform - pos: -59.967888,37.112328 + rot: -1.5707963267948966 rad + pos: 103.5,-33.5 parent: 2 - - uid: 23346 + - uid: 23175 components: - type: Transform - pos: -58.928226,32.863144 + rot: -1.5707963267948966 rad + pos: 103.5,-23.5 parent: 2 - - uid: 23347 + - uid: 23176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.287506,-2.405541 + pos: 71.5,-45.5 parent: 2 - - uid: 23348 + - uid: 23177 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.46024,13.412575 + pos: 67.5,-28.5 parent: 2 -- proto: LightTree03 - entities: - - uid: 23349 + - uid: 23178 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.92459,37.306747 + pos: 75.5,-26.5 parent: 2 - - uid: 23350 + - uid: 23179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.35758,40.58592 + rot: -1.5707963267948966 rad + pos: 76.5,-49.5 parent: 2 - - uid: 23351 + - uid: 23180 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.436974,41.125042 + pos: 77.5,-49.5 parent: 2 - - uid: 23352 + - uid: 23181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.43198,9.81154 + rot: -1.5707963267948966 rad + pos: 78.5,-49.5 parent: 2 -- proto: LightTree04 - entities: - - uid: 23353 + - uid: 23182 components: - type: Transform - pos: -56.518284,34.19127 + rot: -1.5707963267948966 rad + pos: 79.5,-49.5 parent: 2 - - uid: 23354 + - uid: 23183 components: - type: Transform - pos: -61.865723,34.69127 + pos: 9.5,-18.5 parent: 2 - - uid: 23355 + - uid: 23184 components: - type: Transform - pos: -64.16191,37.456078 + pos: 35.5,-37.5 parent: 2 - - uid: 23356 + - uid: 23185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.55047,-1.9909225 + pos: -12.5,-43.5 parent: 2 - - uid: 23357 + - uid: 23186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.79164,44.26217 + pos: 32.5,16.5 parent: 2 - - uid: 23358 + - uid: 23187 components: - type: Transform - pos: 70.31623,26.770643 + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 parent: 2 - - uid: 23359 + - uid: 23188 components: - type: Transform - pos: -91.476845,24.698957 + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 parent: 2 -- proto: LightTree05 - entities: - - uid: 23360 + - uid: 23189 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.04635,41.984417 + pos: 1.5,-7.5 parent: 2 - - uid: 23361 + - uid: 23190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.31811,36.541122 + pos: -3.5,4.5 parent: 2 - - uid: 23362 + - uid: 23191 components: - type: Transform - pos: 65.40998,24.993143 + pos: -2.5,4.5 parent: 2 - - uid: 23363 + - uid: 23192 components: - type: Transform - pos: 63.373383,19.394375 + pos: -1.5,4.5 parent: 2 -- proto: LightTree06 - entities: - - uid: 23364 + - uid: 23193 components: - type: Transform - pos: -61.671013,38.502953 + pos: -0.5,5.5 parent: 2 - - uid: 23365 + - uid: 23194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.331306,50.557034 + pos: 0.5,5.5 parent: 2 - - uid: 23366 + - uid: 23195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 87.53804,4.958809 + pos: 1.5,6.5 parent: 2 - - uid: 23367 + - uid: 23196 components: - type: Transform - pos: 75.69378,18.068148 + pos: 2.5,6.5 parent: 2 - - uid: 23368 + - uid: 23197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.52602,44.621544 + pos: 3.5,6.5 parent: 2 -- proto: LightTube - entities: - - uid: 23370 + - uid: 23198 components: - type: Transform - parent: 23369 - - type: LightBulb - color: '#8000FFFF' - - type: Physics - canCollide: False - - uid: 23372 + pos: 4.5,5.5 + parent: 2 + - uid: 23199 components: - type: Transform - parent: 23371 - - type: LightBulb - color: '#8000FFFF' - - type: Physics - canCollide: False -- proto: LightTubeBroken - entities: - - uid: 23373 + pos: 5.5,5.5 + parent: 2 + - uid: 23200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.392029,60.29145 + pos: 6.5,4.5 parent: 2 - - uid: 42244 + - uid: 23201 components: - type: Transform - parent: 42243 - - type: Physics - canCollide: False - - uid: 42246 + pos: 7.5,4.5 + parent: 2 + - uid: 23202 components: - type: Transform - parent: 42245 - - type: Physics - canCollide: False - - uid: 42248 + pos: 8.5,4.5 + parent: 2 + - uid: 23203 components: - type: Transform - parent: 42247 - - type: Physics - canCollide: False - - uid: 42250 + pos: -14.5,0.5 + parent: 2 + - uid: 23204 components: - type: Transform - parent: 42249 - - type: Physics - canCollide: False - - uid: 42252 + pos: -12.5,0.5 + parent: 2 + - uid: 23205 components: - type: Transform - parent: 42251 - - type: Physics - canCollide: False - - uid: 45744 + pos: 17.5,0.5 + parent: 2 + - uid: 23206 components: - type: Transform - parent: 45743 - - type: Physics - canCollide: False -- proto: LightTubeCrystalPink - entities: - - uid: 45746 + pos: 19.5,0.5 + parent: 2 + - uid: 23207 components: - type: Transform - parent: 45745 - - type: LightBulb - lightRadius: 10 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 45748 + pos: -22.5,2.5 + parent: 2 + - uid: 23208 components: - type: Transform - parent: 45747 - - type: LightBulb - lightRadius: 10 - lightEnergy: 1 - - type: Physics - canCollide: False - - uid: 45750 + pos: -20.5,2.5 + parent: 2 + - uid: 23209 components: - type: Transform - parent: 45749 - - type: LightBulb - lightRadius: 10 - lightEnergy: 1 - - type: Physics - canCollide: False -- proto: LiquidNitrogenCanister - entities: - - uid: 23374 + pos: -19.5,2.5 + parent: 2 + - uid: 23210 components: - type: Transform - pos: -9.5,-55.5 + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 parent: 2 -- proto: LiquidOxygenCanister - entities: - - uid: 23375 + - uid: 23211 components: - type: Transform - pos: -10.5,-55.5 + pos: -10.5,-39.5 parent: 2 -- proto: LockableButtonArmory - entities: - - uid: 23376 + - uid: 23212 components: - - type: MetaData - desc: Оружейная красного кода. - name: красный код - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-10.5 + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8064: - - Pressed: Toggle - 8065: - - Pressed: Toggle - - uid: 23377 + - uid: 23213 components: - - type: MetaData - desc: Оружейная синего кода, рекомендуется выдавать оружие лично в руки. - name: синий код - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-10.5 + pos: -8.5,-39.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8063: - - Pressed: Toggle -- proto: LockableButtonAtmospherics - entities: - - uid: 23378 + - uid: 23214 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-57.5 + pos: 28.5,-9.5 parent: 2 - - uid: 23379 + - uid: 23215 components: - - type: MetaData - desc: Кнопка от гермозатвора. - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-55.5 + pos: 26.5,-18.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8053: - - Pressed: Toggle - - uid: 23380 + - uid: 23216 components: - - type: MetaData - desc: Кнопка от гермозатвора. - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-54.5 + rot: 1.5707963267948966 rad + pos: 26.5,-14.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8053: - - Pressed: Toggle -- proto: LockableButtonCaptain - entities: - - uid: 23381 + - uid: 23217 components: - - type: MetaData - desc: Эта кнопка переключает болты. - type: Transform - pos: -32.66212,6.787724 + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 486: - - Pressed: DoorBolt -- proto: LockableButtonCargo - entities: - - uid: 23382 + - uid: 23218 components: - - type: MetaData - desc: Эта кнопка открывает вам двери в жестокий и холодный мир! удачи! - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-54.5 + rot: -1.5707963267948966 rad + pos: 28.5,-6.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8057: - - Pressed: Toggle - 8058: - - Pressed: Toggle - 8059: - - Pressed: Toggle -- proto: LockableButtonChiefMedicalOfficer - entities: - - uid: 23383 + - uid: 23219 components: - - type: MetaData - desc: Эта кнопка переключает ставни. - type: Transform - pos: -7.915655,58.79275 + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26191: - - Pressed: Toggle - 26190: - - Pressed: Toggle - 26230: - - Pressed: Toggle -- proto: LockableButtonCommand - entities: - - uid: 23384 + - uid: 23220 components: - - type: MetaData - desc: Эта кнопка активирует механизмы экстренной блокировки мостика от внешних угроз. - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8092: - - Pressed: Toggle - 8091: - - Pressed: Toggle - 8093: - - Pressed: Toggle - 8088: - - Pressed: Toggle - 8090: - - Pressed: Toggle - 8089: - - Pressed: Toggle - 23321: - - Pressed: Toggle - 23323: - - Pressed: Toggle - 24432: - - Pressed: Toggle - 24433: - - Pressed: Toggle - 24431: - - Pressed: Toggle - 24429: - - Pressed: Toggle - 24462: - - Pressed: Toggle - 24461: - - Pressed: Toggle - - uid: 23385 + - uid: 23221 components: - - type: MetaData - desc: Эта кнопка открывает и закрывает гермозатворы EVA. - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,8.5 + pos: 26.5,2.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8072: - - Pressed: Toggle - 8071: - - Pressed: Toggle -- proto: LockableButtonDetective - entities: - - uid: 23386 + - uid: 23222 components: - - type: MetaData - desc: Эта кнопка закрывает и открывает ставни. - type: Transform rot: -1.5707963267948966 rad - pos: -19.44955,4.872726 + pos: -9.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26209: - - Pressed: Toggle - 26210: - - Pressed: Toggle - 26211: - - Pressed: Toggle -- proto: LockableButtonEngineering - entities: - - uid: 23387 + - uid: 23223 components: - - type: MetaData - desc: Кнопка от склада оборудования. - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-47.5 + rot: -1.5707963267948966 rad + pos: -13.5,20.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8062: - - Pressed: Toggle - 8060: - - Pressed: Toggle - 8061: - - Pressed: Toggle -- proto: LockableButtonJanitor - entities: - - uid: 23388 + - uid: 23224 components: - - type: MetaData - desc: Эта кнопка переключает ставни. - type: Transform - pos: 5.2,29.4 + pos: 45.5,-56.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26178: - - Pressed: Toggle - 26179: - - Pressed: Toggle - - uid: 23389 + - uid: 23225 components: - - type: MetaData - desc: Эта кнопка переключает ставни. - type: Transform - rot: 3.141592653589793 rad - pos: 5.11,29.6 + pos: 47.5,-56.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26178: - - Pressed: Toggle - 26179: - - Pressed: Toggle -- proto: LockableButtonKitchen - entities: - - uid: 23390 + - uid: 23226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,31.5 + pos: 50.5,-56.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26240: - - Pressed: Toggle - 26239: - - Pressed: Toggle - 26235: - - Pressed: Toggle - 26236: - - Pressed: Toggle - 26238: - - Pressed: Toggle - 26237: - - Pressed: Toggle -- proto: LockableButtonLawyer - entities: - - uid: 23391 + - uid: 23227 components: - - type: MetaData - desc: Эта кнопка закрывает и открывает ставни на входе в офис. - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,25.5 + pos: 52.5,-56.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26188: - - Pressed: Toggle - 26189: - - Pressed: Toggle -- proto: LockableButtonMedical - entities: - - uid: 23392 + - uid: 23228 components: - type: Transform - pos: -6.680846,71.44547 + pos: 27.5,-50.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26180: - - Pressed: Toggle - 8067: - - Pressed: Toggle - 26181: - - Pressed: Toggle - - uid: 23393 + - uid: 23229 components: - type: Transform - pos: -6.3655415,71.44742 + pos: 28.5,-50.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26182: - - Pressed: Toggle - 8066: - - Pressed: Toggle - 26183: - - Pressed: Toggle -- proto: LockableButtonResearchDirector - entities: - - uid: 23394 + - uid: 23230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-54.5 + pos: 29.5,-50.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26222: - - Pressed: Toggle - 26221: - - Pressed: Toggle - 26220: - - Pressed: Toggle - - uid: 23395 + - uid: 23231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-55.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8051: - - Pressed: Toggle - 8050: - - Pressed: Toggle - 8052: - - Pressed: Toggle -- proto: LockableButtonSecurity - entities: - - uid: 23396 + rot: -1.5707963267948966 rad + pos: -3.5,-57.5 + parent: 2 + - uid: 23232 components: - - type: MetaData - name: Гермозатворы 2 - type: Transform - rot: 3.141592653589793 rad - pos: -30.738113,-0.52668095 + pos: -22.5,-57.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8078: - - Pressed: Toggle - 8079: - - Pressed: Toggle - - uid: 23397 + - uid: 23233 components: - - type: MetaData - name: Гермозатворы 1 - type: Transform - rot: 3.141592653589793 rad - pos: -30.33947,-0.52245855 + pos: -22.5,-58.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8080: - - Pressed: Toggle - 8081: - - Pressed: Toggle - - uid: 23398 + - uid: 23234 components: - - type: MetaData - desc: Эта кнопка переключает свет в допросной. - name: кнопка с замком - type: Transform - pos: -32.278553,6.818974 + pos: -22.5,-59.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24730: - - Pressed: Toggle - 24732: - - Pressed: Toggle - - uid: 23399 + - uid: 23235 components: - - type: MetaData - name: Ставни - type: Transform - pos: -30.484406,-0.30942488 + pos: -20.5,-57.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26203: - - Pressed: Toggle - 26207: - - Pressed: Toggle - 26208: - - Pressed: Toggle - 26204: - - Pressed: Toggle - 26205: - - Pressed: Toggle - 26206: - - Pressed: Toggle - - uid: 23400 + - uid: 23236 components: - - type: MetaData - desc: Для пресечения попыток побега. - name: Блокировка камеры 2 - type: Transform - pos: -43.5,13.5 + pos: -20.5,-58.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8083: - - Pressed: Toggle - - uid: 23401 + - uid: 23237 components: - - type: MetaData - desc: Для пресечения попыток побега. - name: Блокировка камеры 1 - type: Transform - pos: -39.5,13.5 + pos: -20.5,-59.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8084: - - Pressed: Toggle - - uid: 23402 + - uid: 23238 components: - - type: MetaData - desc: Для пресечения попыток побега. - name: Блокировка камеры 3 - type: Transform - pos: -47.5,13.5 + pos: -20.5,-61.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8082: - - Pressed: Toggle - - uid: 23403 + - uid: 23239 components: - - type: MetaData - name: Блокировка камеры 3 - type: Transform - pos: -110.5268,22.859192 + pos: -20.5,-62.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8086: - - Pressed: Toggle - - uid: 23404 + - uid: 23240 components: - - type: MetaData - name: Блокировка камеры 2 - type: Transform - pos: -110.12055,22.859192 + pos: -20.5,-63.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8085: - - Pressed: Toggle - - uid: 23405 + - uid: 23241 components: - - type: MetaData - name: Тревога перма - type: Transform - pos: -109.0268,22.843567 + pos: -22.5,-61.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23319: - - Pressed: Toggle - 23317: - - Pressed: Toggle - 23313: - - Pressed: Toggle - 23315: - - Pressed: Toggle - 8095: - - Pressed: Toggle - 8094: - - Pressed: Toggle - 8087: - - Pressed: Close - 8085: - - Pressed: Close - 8086: - - Pressed: Close - 24645: - - Pressed: Toggle - 24644: - - Pressed: Toggle - 24643: - - Pressed: Toggle - 24642: - - Pressed: Toggle - 24640: - - Pressed: Toggle - 24723: - - Pressed: Toggle - 24792: - - Pressed: Toggle - 24725: - - Pressed: Toggle - 24720: - - Pressed: Toggle - 24721: - - Pressed: Toggle - 24791: - - Pressed: Toggle - 24722: - - Pressed: Toggle - 24724: - - Pressed: Toggle - 24793: - - Pressed: Toggle - 24622: - - Pressed: Toggle - 24623: - - Pressed: Toggle - 24797: - - Pressed: Toggle - 24796: - - Pressed: Toggle - 24795: - - Pressed: Toggle - 24639: - - Pressed: Toggle - 24641: - - Pressed: Toggle - 24625: - - Pressed: Toggle - 24624: - - Pressed: Toggle - 24626: - - Pressed: Toggle - 24634: - - Pressed: Toggle - 24633: - - Pressed: Toggle - 24630: - - Pressed: Toggle - 24629: - - Pressed: Toggle - 24631: - - Pressed: Toggle - 24632: - - Pressed: Toggle - 24627: - - Pressed: Toggle - 24628: - - Pressed: Toggle - 24637: - - Pressed: Toggle - 24638: - - Pressed: Toggle - 24646: - - Pressed: Toggle - 24635: - - Pressed: Toggle - 24636: - - Pressed: Toggle - - uid: 23406 + - uid: 23242 components: - - type: MetaData - name: Блокировка камеры 1 - type: Transform - pos: -109.7143,22.859192 + pos: -22.5,-62.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8087: - - Pressed: Toggle - - uid: 23407 + - uid: 23243 components: - - type: MetaData - desc: Эта кнопка активирует подачу раскалённого пара в камеру казни. - name: подача пара - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,18.5 + pos: -22.5,-63.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26268: - - Pressed: Open - 26269: - - Pressed: Trigger - - uid: 23408 + - uid: 23244 components: - - type: MetaData - desc: Эта кнопка открывает гермозатворы для сброса раскалённого пара в атмосферу планеты. Уверяем вас, это не навредит экосистеме! - name: гермозатворы - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,20.5 + pos: -3.5,-67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8070: - - Pressed: Toggle - 8069: - - Pressed: Toggle - 8068: - - Pressed: Toggle -- proto: LockerAtmosphericsFilled - entities: - - uid: 23409 + - uid: 23245 components: - type: Transform - pos: -3.5,-52.5 + pos: -19.5,-65.5 parent: 2 - - uid: 23410 + - uid: 23246 components: - type: Transform - pos: -1.5,-52.5 + pos: -17.5,-65.5 parent: 2 - - uid: 23411 + - uid: 23247 components: - type: Transform - pos: -2.5,-52.5 + pos: -19.5,-67.5 parent: 2 -- proto: LockerBooze - entities: - - uid: 8117 + - uid: 23248 components: - - type: MetaData - desc: Книги по запросу - name: картотечные книги - type: Transform - pos: 7.5,18.5 + pos: -18.5,-67.5 parent: 2 - - type: AccessReader - access: - - - Service - - 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: - - 8125 - - 8124 - - 8118 - - 8122 - - 8126 - - 8119 - - 8121 - - 8123 - - 8120 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 14916 + - uid: 23249 components: - type: Transform - pos: 90.5,-28.5 + pos: -17.5,-67.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14919 - - 14920 - - 14917 - - 14918 - - 14921 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 40283 + - uid: 23250 components: - - type: MetaData - desc: Здесь хранят различные вещи...в основном одежду. - name: шкаф - type: Transform - pos: 37.5,35.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 40285 - - 40286 - - 40287 - - 40288 - - 40284 - - 40289 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41200 + pos: -15.5,-67.5 + parent: 2 + - uid: 23251 components: - - type: MetaData - desc: Здесь хранят различные вещи...в основном одежду. - name: шкаф - type: Transform - pos: 38.5,35.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41202 - - 41203 - - 41201 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41204 + pos: -14.5,-67.5 + parent: 2 + - uid: 23252 components: - - type: MetaData - desc: Здесь хранят разные вещи, но в основном одежду. - name: шкаф - type: Transform - pos: 64.5,42.5 - parent: 40203 - - 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: - - 41206 - - 41207 - - 41205 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41854 + pos: -13.5,-67.5 + parent: 2 + - uid: 23253 components: - - type: MetaData - desc: Здесь хранят разные вещи. - name: шкафчик - type: Transform - pos: 73.5,25.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41859 - - 41860 - - 41861 - - 41855 - - 41856 - - 41857 - - 41862 - - 41858 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBoozeFilled - entities: - - uid: 23412 + pos: -15.5,-65.5 + parent: 2 + - uid: 23254 components: - type: Transform - pos: 46.5,16.5 + pos: -14.5,-65.5 parent: 2 -- proto: LockerBotanistFilled - entities: - - uid: 23413 + - uid: 23255 components: - type: Transform - pos: 15.5,39.5 + pos: -13.5,-65.5 parent: 2 - - uid: 23414 + - uid: 23256 components: - type: Transform - pos: 17.5,38.5 + pos: -11.5,-65.5 parent: 2 - - uid: 23415 + - uid: 23257 components: - type: Transform - pos: 15.5,38.5 + pos: -10.5,-65.5 parent: 2 -- proto: LockerBrigmedic - entities: - - uid: 8318 + - uid: 23258 components: - type: Transform - pos: -52.5,17.5 + pos: -9.5,-65.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8319 - - 8330 - - 8322 - - 8328 - - 8329 - - 8325 - - 8320 - - 8323 - - 8324 - - 8321 - - 8327 - - 8326 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerCaptainFilledNoLaser - entities: - - uid: 23416 + - uid: 23259 components: - type: Transform - pos: 16.5,-9.5 + pos: -11.5,-67.5 parent: 2 -- proto: LockerChemistryFilled - entities: - - uid: 23417 + - uid: 23260 components: - type: Transform - pos: -5.5,38.5 + pos: -10.5,-67.5 parent: 2 - - uid: 23418 + - uid: 23261 components: - type: Transform - pos: -6.5,38.5 + pos: -9.5,-67.5 parent: 2 -- proto: LockerChiefEngineerFilled - entities: - - uid: 23419 + - uid: 23262 components: - type: Transform - pos: 8.5,-51.5 + pos: -7.5,-67.5 parent: 2 -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 23420 + - uid: 23263 components: - type: Transform - pos: -15.5,59.5 + pos: -6.5,-67.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23421 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerClown - entities: - - uid: 15039 + - uid: 23264 components: - type: Transform - pos: 49.5,10.5 + pos: -5.5,-67.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15044 - - 15043 - - 15040 - - 15041 - - 15042 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetective - entities: - - uid: 14890 + - uid: 23265 components: - - type: MetaData - name: шкаф смотрителя солнечных панелей - type: Transform - pos: -52.5,68.5 + pos: -7.5,-65.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14891 - - 14892 - - 14893 - - 14894 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetectiveFilled - entities: - - uid: 23422 + - uid: 23266 components: - type: Transform - pos: -24.5,5.5 + pos: -6.5,-65.5 parent: 2 -- proto: LockerElectricalSuppliesFilled - entities: - - uid: 23423 + - uid: 23267 components: - type: Transform - pos: 45.5,-20.5 + pos: -5.5,-65.5 parent: 2 - - uid: 23424 + - uid: 23268 components: - type: Transform - pos: -13.5,-7.5 + pos: 0.5,-65.5 parent: 2 - - uid: 23425 + - uid: 23269 components: - type: Transform - pos: -4.5,-35.5 + pos: -3.5,-65.5 parent: 2 - - uid: 23426 + - uid: 23270 components: - type: Transform - pos: 25.5,-12.5 + pos: -2.5,-65.5 parent: 2 - - uid: 42253 + - uid: 23271 components: - type: Transform - pos: 68.5,60.5 - parent: 40203 - - uid: 42254 + pos: -1.5,-65.5 + parent: 2 + - uid: 23272 components: - type: Transform - pos: 68.5,60.5 - parent: 40203 -- proto: LockerEngineerFilled - entities: - - uid: 23427 + pos: -2.5,-67.5 + parent: 2 + - uid: 23273 components: - type: Transform - pos: 6.5,-40.5 + pos: -1.5,-67.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23428 + - uid: 23274 components: - type: Transform - pos: 5.5,-40.5 + pos: 2.5,-65.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23429 + - uid: 23275 components: - type: Transform - pos: 4.5,-40.5 + pos: 3.5,-63.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23430 + - uid: 23276 components: - type: Transform - pos: 3.5,-40.5 + pos: 3.5,-62.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23431 + - uid: 23277 components: - type: Transform - pos: 2.5,-40.5 + pos: 3.5,-61.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23432 + - uid: 23278 components: - type: Transform - pos: 1.5,-40.5 + pos: 3.5,-60.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23433 + - uid: 23279 components: - type: Transform - pos: 7.5,-40.5 + pos: 3.5,-59.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: LockerEvidence - entities: - - uid: 23225 + - uid: 23280 components: - type: Transform - pos: -20.5,10.5 + pos: 3.5,-58.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23226 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23434 + - uid: 23281 components: - type: Transform - pos: -22.5,3.5 + pos: -8.5,-57.5 parent: 2 - - uid: 23435 + - uid: 23282 components: - type: Transform - pos: -33.5,8.5 + pos: -6.5,-57.5 parent: 2 - - uid: 23436 + - uid: 23283 components: - type: Transform - pos: -50.5,13.5 + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 parent: 2 - - uid: 23437 + - uid: 23284 components: - type: Transform - pos: -46.5,13.5 + pos: -0.5,-46.5 parent: 2 - - uid: 23438 + - uid: 23285 components: - type: Transform - pos: -42.5,13.5 + pos: -0.5,-47.5 parent: 2 - - uid: 23439 + - uid: 23286 components: - - type: MetaData - desc: Для хранения вещей задержанных. - name: шкаф для вещей заключённых - type: Transform - pos: -23.5,12.5 + pos: -0.5,-49.5 parent: 2 - - uid: 23440 + - uid: 23287 components: - - type: MetaData - desc: Для хранения вещей задержанных. - name: шкаф для вещей заключённых - type: Transform - pos: -22.5,12.5 + pos: -0.5,-50.5 parent: 2 - - uid: 23441 + - uid: 23288 components: - - type: MetaData - desc: Для хранения вещей задержанных. - name: шкаф для вещей заключённых - type: Transform - pos: -21.5,12.5 + pos: -1.5,-2.5 parent: 2 - - uid: 23442 + - uid: 23289 components: - type: Transform - pos: -19.5,10.5 + pos: 1.5,-3.5 parent: 2 - - uid: 23443 + - uid: 23290 components: - type: Transform - pos: -36.5,-19.5 + rot: -1.5707963267948966 rad + pos: -11.5,-36.5 parent: 2 - - uid: 23444 + - uid: 23291 components: - type: Transform - pos: -110.5,-8.5 + pos: 3.5,-3.5 parent: 2 - - uid: 23445 + - uid: 23292 components: - type: Transform - pos: -110.5,-6.5 + pos: -16.5,-43.5 parent: 2 - - uid: 23446 + - uid: 23293 components: - type: Transform - pos: -110.5,-7.5 + pos: 6.5,-2.5 parent: 2 -- proto: LockerFreezer - entities: - - uid: 19514 + - uid: 23294 components: - type: Transform - pos: 34.5,34.5 + pos: 2.5,-3.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19515 - - 19516 - - 19517 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23447 + - uid: 23295 components: - type: Transform - pos: 33.5,36.5 + rot: 1.5707963267948966 rad + pos: -14.5,4.5 parent: 2 - - uid: 45724 + - uid: 23296 components: - - type: MetaData - desc: Стандартное хранилище. - type: Transform - pos: 7.5,5.5 - parent: 44970 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 45725 - - 45726 - - 45727 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerFreezerBase - entities: - - uid: 7933 + rot: 1.5707963267948966 rad + pos: 19.5,5.5 + parent: 2 + - uid: 23297 components: - type: Transform - pos: 0.5,-10.5 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 7939 - - 7942 - - 7935 - - 7940 - - 7937 - - 7943 - - 7941 - - 7936 - - 7938 - - 7934 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 8228 + - uid: 23298 components: - type: Transform - pos: 7.5,45.5 + rot: 1.5707963267948966 rad + pos: 19.5,6.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 8233 - - 8229 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 17282 + - uid: 23299 components: - type: Transform - pos: -48.5,8.5 + rot: 1.5707963267948966 rad + pos: -14.5,7.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17285 - - 17284 - - 17283 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19369 + - uid: 23300 components: - type: Transform - pos: -112.5,12.5 + rot: 1.5707963267948966 rad + pos: 19.5,4.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19381 - - 19380 - - 19379 - - 19378 - - 19377 - - 19373 - - 19388 - - 19372 - - 19371 - - 19376 - - 19385 - - 19384 - - 19383 - - 19374 - - 19382 - - 19375 - - 19387 - - 19370 - - 19386 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19423 + - uid: 23301 components: - type: Transform - pos: -49.5,8.5 + pos: 10.5,-18.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19425 - - 19424 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 19521 + - uid: 23302 components: - type: Transform - pos: -76.50003,16.482616 + pos: 11.5,-18.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19523 - - 19529 - - 19531 - - 19528 - - 19522 - - 19527 - - 19526 - - 19530 - - 19525 - - 19524 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfPersonnelFilled - entities: - - uid: 23448 + - uid: 23303 components: - type: Transform - pos: -12.5,-11.5 + pos: 12.5,-18.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: LockerHeadOfSecurityFilled - entities: - - uid: 23449 + - uid: 23304 components: - type: Transform - pos: -41.5,8.5 + pos: 13.5,-18.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: LockerMedical - entities: - - uid: 15187 + - uid: 23305 components: - type: Transform - pos: 23.5,58.5 + pos: 14.5,-18.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 234.9972 - 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: - - 15189 - - 15190 - - 15188 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicalFilled - entities: - - uid: 23450 + - uid: 23306 components: - type: Transform - pos: -25.5,57.5 + pos: 15.5,-18.5 parent: 2 - - uid: 23451 + - uid: 23307 components: - type: Transform - pos: -27.5,57.5 + pos: -30.5,-1.5 parent: 2 - - uid: 23452 + - uid: 23308 components: - type: Transform - pos: -28.5,57.5 + pos: -27.5,-1.5 parent: 2 - - uid: 23453 + - uid: 23309 components: - type: Transform - pos: -26.5,57.5 + pos: -3.5,40.5 parent: 2 - - uid: 23454 + - uid: 23310 components: - type: Transform - pos: 27.5,61.5 + pos: 0.5,36.5 parent: 2 - - uid: 23455 + - uid: 23311 components: - type: Transform - pos: -106.5,1.5 + pos: -41.5,-1.5 parent: 2 -- proto: LockerMedicineFilled - entities: - - uid: 23456 + - uid: 23312 components: - type: Transform - pos: -22.5,57.5 + pos: -43.5,-1.5 parent: 2 - - uid: 23457 + - uid: 23313 components: - type: Transform - pos: -106.5,4.5 + pos: -3.5,42.5 parent: 2 -- proto: LockerMime - entities: - - uid: 15047 + - uid: 23314 components: - type: Transform - pos: 64.5,10.5 + pos: -3.5,41.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15052 - - 15051 - - 15048 - - 15054 - - 15050 - - 15053 - - 15049 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerParamedicFilled - entities: - - uid: 23458 + - uid: 23315 components: - type: Transform - pos: 3.5,54.5 + rot: -1.5707963267948966 rad + pos: -31.5,7.5 parent: 2 -- proto: LockerQuarterMasterFilled - entities: - - uid: 23459 + - uid: 23316 components: - type: Transform - pos: 79.5,-41.5 + pos: 67.5,-25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23460 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerResearchDirectorFilled - entities: - - uid: 23461 + - uid: 23317 components: - type: Transform - pos: 27.5,-55.5 + pos: 69.5,-25.5 parent: 2 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 23462 + - uid: 23318 components: - type: Transform - pos: 81.5,-42.5 + rot: 1.5707963267948966 rad + pos: 65.5,-25.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23463 + - uid: 23319 components: - type: Transform - pos: 82.5,-42.5 + pos: 65.5,-28.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 23464 + - uid: 23320 components: - type: Transform - pos: 83.5,-42.5 + pos: 12.5,53.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerScienceFilled - entities: - - uid: 23465 + - uid: 23321 components: - type: Transform - pos: 19.5,-43.5 + pos: 10.5,62.5 parent: 2 - - uid: 23466 + - uid: 23322 components: - type: Transform - pos: 19.5,-44.5 + pos: 12.5,51.5 parent: 2 - - uid: 23467 + - uid: 23323 components: - type: Transform - pos: 19.5,-45.5 + pos: 14.5,51.5 parent: 2 -- proto: LockerScientist - entities: - - uid: 40348 + - uid: 23324 components: - type: Transform - pos: 49.5,56.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 40352 - - 40350 - - 40351 - - 40354 - - 40353 - - 40355 - - 40349 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41870 + pos: 12.5,62.5 + parent: 2 + - uid: 23325 components: - type: Transform - pos: 49.5,57.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41871 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSecurity - entities: - - uid: 40279 + pos: 14.5,62.5 + parent: 2 + - uid: 23326 components: - type: Transform - pos: 36.3,77.60055 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 40281 - - 40282 - - 40280 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - type: Pullable - prevFixedRotation: True - - uid: 41160 + pos: 8.5,62.5 + parent: 2 + - uid: 23327 components: - type: Transform - pos: 38.5,63.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41163 - - 41161 - - 41162 - - 41165 - - 41164 - - 41166 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41863 + pos: 67.5,-50.5 + parent: 2 + - uid: 23328 components: - type: Transform - pos: 36.5,76.5 - parent: 40203 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41867 - - 41865 - - 41866 - - 41864 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 42255 + pos: 69.5,-50.5 + parent: 2 + - uid: 23329 components: - type: Transform - pos: 36.512177,78.81726 - parent: 40203 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.48 - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - mask: - - Impassable - - TableLayer - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 75 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: LockerSecurityFilled - entities: - - uid: 23468 + pos: 71.5,-37.5 + parent: 2 + - uid: 23330 components: - type: Transform - pos: 69.5,-27.5 + pos: 71.5,-38.5 parent: 2 - - uid: 23469 + - uid: 23331 components: - type: Transform - pos: -27.5,-8.5 + pos: 71.5,-40.5 parent: 2 - - uid: 23470 + - uid: 23332 components: - type: Transform - pos: -30.5,-6.5 + pos: 71.5,-41.5 parent: 2 - - uid: 23471 + - uid: 23333 components: - type: Transform - pos: -30.5,-7.5 + rot: -1.5707963267948966 rad + pos: -31.5,8.5 parent: 2 - - uid: 23472 + - uid: 23334 components: - type: Transform - pos: -27.5,-6.5 + rot: -1.5707963267948966 rad + pos: -31.5,6.5 parent: 2 - - uid: 23473 + - uid: 23335 components: - type: Transform - pos: -27.5,-7.5 + pos: -39.5,0.5 parent: 2 - - uid: 23474 + - uid: 23336 components: - type: Transform - pos: -30.5,-8.5 + pos: -39.5,2.5 parent: 2 - - uid: 23475 + - uid: 23337 components: - type: Transform - pos: -27.5,-9.5 + pos: -9.5,-13.5 parent: 2 - - uid: 23476 + - uid: 23338 components: - type: Transform - pos: -30.5,-9.5 + pos: -10.5,-13.5 parent: 2 - - uid: 23477 + - uid: 23339 components: - type: Transform - pos: -7.5,53.5 + pos: -7.5,-13.5 parent: 2 - - uid: 23478 + - uid: 23340 components: - type: Transform - pos: -4.5,-31.5 + pos: -6.5,-13.5 parent: 2 - - uid: 23479 + - uid: 23341 components: - type: Transform - pos: 22.5,-26.5 + rot: 3.141592653589793 rad + pos: -39.5,1.5 parent: 2 - - uid: 23480 + - uid: 23342 components: - type: Transform - pos: -101.5,7.5 + pos: -11.5,51.5 parent: 2 - - uid: 23481 + - uid: 23343 components: - type: Transform - pos: -101.5,6.5 + pos: -51.5,10.5 parent: 2 - - uid: 23482 + - uid: 23344 components: - type: Transform - pos: 96.5,-11.5 + pos: -51.5,1.5 parent: 2 -- proto: LockerSteel - entities: - - uid: 15176 + - uid: 23345 components: - type: Transform - pos: -57.5,51.5 + pos: -51.5,3.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: - - 15177 - - 15178 - - 15179 - - 15180 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 15181 + - uid: 23346 components: - type: Transform - pos: -57.5,52.5 + pos: -51.5,2.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: - - 15182 - - 15184 - - 15185 - - 15183 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41183 + - uid: 23347 components: - type: Transform - pos: 78.5,33.5 - parent: 40203 - - 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: - - 41188 - - 41186 - - 41187 - - 41185 - - 41184 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 41191 + pos: -51.5,4.5 + parent: 2 + - uid: 23348 components: - type: Transform - pos: 45.75306,56.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41192 - - 41193 - - 41195 - - 41194 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerWallMedical - entities: - - uid: 17567 + pos: -51.5,5.5 + parent: 2 + - uid: 23349 components: - - type: MetaData - name: шкаф психолога - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,59.5 + rot: 1.5707963267948966 rad + pos: -34.5,-1.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17574 - - 17573 - - 17571 - - 17568 - - 17570 - - 17569 - - 17572 -- proto: LockerWallMedicalFilled - entities: - - uid: 23483 + - uid: 23350 components: - type: Transform - pos: -89.5,59.5 + rot: 1.5707963267948966 rad + pos: -32.5,-1.5 parent: 2 - - uid: 45751 + - uid: 23351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 44970 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 45752 -- proto: LockerWardenFilled - entities: - - uid: 23484 + rot: 1.5707963267948966 rad + pos: -45.5,14.5 + parent: 2 + - uid: 23352 components: - type: Transform - pos: -44.5,-19.5 + rot: 3.141592653589793 rad + pos: 69.5,-13.5 parent: 2 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 23485 + - uid: 23353 components: - type: Transform - pos: 44.5,-20.5 + rot: 1.5707963267948966 rad + pos: -46.5,14.5 parent: 2 - - uid: 23486 + - uid: 23354 components: - type: Transform - pos: 24.5,-12.5 + pos: 76.5,-33.5 parent: 2 - - uid: 23487 + - uid: 23355 components: - type: Transform - pos: -4.5,-38.5 + pos: 76.5,-32.5 parent: 2 -- proto: Log - entities: - - uid: 23488 + - uid: 23356 components: - type: Transform - pos: 7.6420717,22.528172 + rot: -1.5707963267948966 rad + pos: 88.5,-24.5 parent: 2 - - uid: 23489 + - uid: 23357 components: - type: Transform - pos: -0.33953714,-19.511963 + rot: 3.141592653589793 rad + pos: 69.5,-14.5 parent: 2 - - uid: 23490 + - uid: 23358 components: - type: Transform - pos: 27.708565,17.450075 + rot: 3.141592653589793 rad + pos: 69.5,-16.5 parent: 2 - - uid: 23491 + - uid: 23359 components: - type: Transform - pos: 27.41169,17.4657 + rot: -1.5707963267948966 rad + pos: 90.5,-24.5 parent: 2 - - uid: 23492 + - uid: 23360 components: - type: Transform - pos: 36.33667,-0.29319096 + rot: 1.5707963267948966 rad + pos: -41.5,14.5 parent: 2 - - uid: 23493 + - uid: 23361 components: - type: Transform - pos: 36.696045,-0.41819096 + pos: -35.5,-14.5 parent: 2 - - uid: 23494 + - uid: 23362 components: - type: Transform - pos: 42.49267,13.634142 + pos: -7.5,71.5 parent: 2 - - uid: 23495 + - uid: 23363 components: - type: Transform - pos: 42.695793,13.524767 + pos: -10.5,70.5 parent: 2 - - uid: 23496 + - uid: 23364 components: - type: Transform - pos: 91.43111,-28.450615 + pos: -9.5,71.5 parent: 2 - - uid: 23497 + - uid: 23365 components: - type: Transform - pos: 91.61456,-28.505651 + pos: -10.5,68.5 parent: 2 - - uid: 23498 + - uid: 23366 components: - type: Transform - rot: 6.283185307179586 rad - pos: -0.4560752,-19.470463 + rot: 3.141592653589793 rad + pos: 69.5,-17.5 parent: 2 - - uid: 23499 + - uid: 23367 components: - type: Transform - pos: -0.60516214,-19.402588 + rot: -1.5707963267948966 rad + pos: 91.5,-24.5 parent: 2 - - uid: 23500 + - uid: 23368 components: - type: Transform - pos: 7.4701967,22.637547 + rot: 1.5707963267948966 rad + pos: -49.5,14.5 parent: 2 - - uid: 23501 + - uid: 23369 components: - type: Transform - pos: 11.471693,-2.312276 + rot: 1.5707963267948966 rad + pos: -50.5,14.5 parent: 2 - - uid: 23502 + - uid: 23370 components: - type: Transform - pos: 11.690443,-2.374776 + pos: -51.5,12.5 parent: 2 - - uid: 23503 + - uid: 23371 components: - type: Transform - pos: -89.593575,12.547899 + rot: 1.5707963267948966 rad + pos: -42.5,14.5 parent: 2 - - uid: 23504 + - uid: 23372 components: - type: Transform - pos: -89.36563,12.5181675 + pos: -51.5,6.5 parent: 2 - - uid: 23505 + - uid: 23373 components: - type: Transform - pos: -48.454937,63.593407 + pos: -27.5,-12.5 parent: 2 - - uid: 42256 + - uid: 23374 components: - type: Transform - pos: 78.419235,36.672653 - parent: 40203 - - uid: 42257 + rot: 3.141592653589793 rad + pos: -11.5,52.5 + parent: 2 + - uid: 23375 components: - type: Transform - pos: 78.419235,36.672653 - parent: 40203 - - uid: 42258 + pos: 0.5,38.5 + parent: 2 + - uid: 23376 components: - type: Transform - pos: 78.731735,36.672653 - parent: 40203 - - uid: 42259 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 + parent: 2 + - uid: 23377 components: - type: Transform - pos: 78.450485,36.516403 - parent: 40203 - - uid: 42260 + pos: -3.5,58.5 + parent: 2 + - uid: 23378 components: - type: Transform - pos: 78.71611,36.516403 - parent: 40203 - - uid: 42261 + pos: -3.5,56.5 + parent: 2 + - uid: 23379 components: - type: Transform - pos: 78.59111,36.71953 - parent: 40203 - - uid: 42262 + pos: -3.5,57.5 + parent: 2 + - uid: 23380 components: - type: Transform - pos: 78.481735,36.735153 - parent: 40203 -- proto: LootSpawnerArmoryArmorOnly - entities: - - uid: 23506 + rot: 3.141592653589793 rad + pos: 22.5,-25.5 + parent: 2 + - uid: 23381 components: - type: Transform - pos: -74.5,40.5 + rot: 3.141592653589793 rad + pos: 23.5,-25.5 parent: 2 -- proto: LootSpawnerContraband - entities: - - uid: 23507 + - uid: 23382 components: - type: Transform - pos: -59.5,48.5 + rot: 3.141592653589793 rad + pos: -7.5,-32.5 parent: 2 - - uid: 23508 + - uid: 23383 components: - type: Transform - pos: -57.5,42.5 + rot: 3.141592653589793 rad + pos: -7.5,-31.5 parent: 2 - - uid: 23509 + - uid: 23384 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,26.5 + pos: 25.5,-29.5 parent: 2 -- proto: LootSpawnerContrabandHigh - entities: - - uid: 23510 + - uid: 23385 components: - type: Transform - pos: -118.5,32.5 + rot: 1.5707963267948966 rad + pos: -35.5,-12.5 parent: 2 -- proto: LootSpawnerContrabandLow - entities: - - uid: 23511 + - uid: 23386 components: - type: Transform - pos: -65.5,45.5 + rot: 3.141592653589793 rad + pos: -118.5,4.5 parent: 2 - - uid: 23512 + - uid: 23387 components: - type: Transform - pos: -56.5,44.5 + rot: 3.141592653589793 rad + pos: -118.5,5.5 parent: 2 - - uid: 23513 + - uid: 23388 components: - type: Transform - pos: -75.5,55.5 + rot: 3.141592653589793 rad + pos: -118.5,6.5 parent: 2 - - uid: 23514 + - uid: 23389 components: - type: Transform - pos: -117.5,32.5 + rot: 3.141592653589793 rad + pos: -118.5,7.5 parent: 2 - - uid: 23515 + - uid: 23390 components: - type: Transform - pos: 40.5,58.5 + pos: -118.5,16.5 parent: 2 -- proto: LootSpawnerIndustrial - entities: - - uid: 23516 + - uid: 23391 components: - type: Transform - pos: -77.5,56.5 + pos: -118.5,20.5 parent: 2 - - uid: 23517 + - uid: 23392 components: - type: Transform - pos: -85.5,15.5 + pos: -118.5,24.5 parent: 2 - - uid: 23518 + - uid: 23393 components: - type: Transform - pos: -84.5,-8.5 + pos: -114.5,23.5 parent: 2 - - uid: 23519 + - uid: 23394 components: - type: Transform - pos: -75.5,-24.5 + pos: -114.5,19.5 parent: 2 - - uid: 23520 + - uid: 23395 components: - type: Transform - pos: -30.5,44.5 + pos: -114.5,15.5 parent: 2 -- proto: LootSpawnerMedicalClassy - entities: - - uid: 23521 + - uid: 23396 components: - type: Transform - pos: -12.5,52.5 + pos: -113.5,0.5 parent: 2 - - uid: 23522 + - uid: 23397 components: - type: Transform - pos: -15.5,46.5 + pos: -112.5,0.5 parent: 2 -- proto: LuxuryPen - entities: - - uid: 23523 + - uid: 23398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.498184,11.717905 + pos: -115.5,29.5 parent: 2 - - uid: 23524 + - uid: 23399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.43739,-39.555744 + pos: -115.5,32.5 parent: 2 - - uid: 23525 + - uid: 23400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.172035,26.434347 + pos: -115.5,28.5 parent: 2 - - uid: 23526 + - uid: 23401 components: - type: Transform - pos: -26.006096,-19.343294 + pos: -102.5,32.5 parent: 2 - - uid: 42263 - components: - - type: Transform - pos: 73.570404,73.85228 - parent: 40203 - - uid: 45753 + - uid: 23402 components: - type: Transform - pos: 7.363847,2.3481998 - parent: 44970 -- proto: MachineAnomalyGenerator - entities: - - uid: 23527 + pos: -102.5,31.5 + parent: 2 + - uid: 23403 components: - type: Transform - pos: 15.5,-38.5 + pos: -115.5,33.5 parent: 2 -- proto: MachineAnomalyVessel - entities: - - uid: 23528 + - uid: 23404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-37.5 + pos: -102.5,30.5 parent: 2 - - uid: 23529 + - uid: 23405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-38.5 + rot: -1.5707963267948966 rad + pos: -52.5,69.5 parent: 2 - - uid: 23530 + - uid: 23406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-39.5 + rot: -1.5707963267948966 rad + pos: -51.5,69.5 parent: 2 -- proto: MachineAPE - entities: - - uid: 23531 + - uid: 23407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-39.5 + rot: -1.5707963267948966 rad + pos: -49.5,69.5 parent: 2 - - uid: 23532 + - uid: 23408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-38.5 + rot: -1.5707963267948966 rad + pos: -50.5,69.5 parent: 2 - - uid: 23533 + - uid: 23409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-37.5 + pos: -119.5,26.5 parent: 2 - - uid: 42264 + - uid: 23410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,72.5 - parent: 40203 -- proto: MachineArtifactAnalyzer - entities: - - uid: 23534 + pos: -116.5,27.5 + parent: 2 + - uid: 23411 components: - type: Transform - pos: 46.5,-58.5 + pos: -118.5,27.5 parent: 2 - - uid: 23535 + - uid: 23412 components: - type: Transform - pos: 51.5,-58.5 + pos: -117.5,27.5 parent: 2 -- proto: MachineCentrifuge - entities: - - uid: 23536 + - uid: 23413 components: - type: Transform - pos: -4.5,41.5 + pos: -100.5,30.5 parent: 2 -- proto: MachineElectrolysisUnit - entities: - - uid: 23537 + - uid: 23414 components: - type: Transform - pos: -4.5,40.5 + pos: -101.5,30.5 parent: 2 -- proto: MachineFrame - entities: - - uid: 23538 + - uid: 23415 components: - type: Transform - pos: 39.5,-54.5 + pos: -99.5,29.5 parent: 2 - - uid: 23539 + - uid: 23416 components: - type: Transform - pos: -40.5,-41.5 + pos: -99.5,27.5 parent: 2 - - uid: 23540 + - uid: 23417 components: - type: Transform - pos: 45.5,-44.5 + pos: -99.5,28.5 parent: 2 - - uid: 23541 + - uid: 23418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-51.5 + pos: -102.5,33.5 parent: 2 - - uid: 23542 + - uid: 23419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-42.5 + pos: -115.5,27.5 parent: 2 - - uid: 23543 + - uid: 23420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-43.5 + pos: -115.5,30.5 parent: 2 - - uid: 23544 + - uid: 23421 components: - type: Transform - pos: 22.5,-32.5 + pos: -115.5,31.5 parent: 2 - - uid: 23545 + - uid: 23422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-45.5 + pos: -114.5,34.5 parent: 2 - - uid: 23546 + - uid: 23423 components: - type: Transform - pos: -29.5,52.5 + pos: -104.5,34.5 parent: 2 - - uid: 23547 + - uid: 23424 components: - type: Transform - pos: -38.5,-40.5 + pos: -105.5,34.5 parent: 2 - - uid: 23548 + - uid: 23425 components: - type: Transform - pos: -40.5,-40.5 + pos: -106.5,34.5 parent: 2 - - uid: 23549 + - uid: 23426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,64.5 + pos: -107.5,34.5 parent: 2 - - uid: 42265 + - uid: 23427 components: - type: Transform - pos: 48.5,76.5 - parent: 40203 -- proto: MachineFrameDestroyed - entities: - - uid: 23550 + pos: -111.5,34.5 + parent: 2 + - uid: 23428 components: - type: Transform - pos: -19.5,-36.5 + pos: -112.5,34.5 parent: 2 - - uid: 23551 + - uid: 23429 components: - type: Transform - pos: 41.5,-38.5 + pos: -113.5,34.5 parent: 2 - - uid: 23552 + - uid: 23430 components: - type: Transform - pos: 45.5,-43.5 + pos: -108.5,34.5 parent: 2 - - uid: 23553 + - uid: 23431 components: - type: Transform - pos: -40.5,-39.5 + pos: -109.5,34.5 parent: 2 - - uid: 23554 + - uid: 23432 components: - type: Transform - pos: -37.5,-40.5 + pos: -110.5,34.5 parent: 2 - - uid: 23555 + - uid: 23433 components: - type: Transform - pos: -55.5,67.5 + pos: -103.5,34.5 parent: 2 - - uid: 23556 + - uid: 23434 components: - type: Transform - pos: -57.5,65.5 + pos: -119.5,25.5 parent: 2 - - uid: 23557 + - uid: 23435 components: - type: Transform - pos: 18.5,54.5 + pos: -111.5,19.5 parent: 2 - - uid: 23558 + - uid: 23436 components: - type: Transform - pos: 96.5,-42.5 + pos: -111.5,20.5 parent: 2 - - uid: 42266 + - uid: 23437 components: - type: Transform - pos: 66.5,69.5 - parent: 40203 - - uid: 42267 + pos: -111.5,21.5 + parent: 2 + - uid: 23438 components: - type: Transform - pos: 48.5,77.5 - parent: 40203 - - uid: 42268 + pos: -106.5,21.5 + parent: 2 + - uid: 23439 components: - type: Transform - pos: 57.5,37.5 - parent: 40203 - - uid: 42269 + pos: -106.5,20.5 + parent: 2 + - uid: 23440 components: - type: Transform - pos: 48.5,44.5 - parent: 40203 - - uid: 42270 + pos: -106.5,19.5 + parent: 2 + - uid: 23441 components: - type: Transform - pos: 53.5,49.5 - parent: 40203 - - uid: 42271 + pos: 97.5,-12.5 + parent: 2 + - uid: 23442 components: - type: Transform - pos: 55.5,49.5 - parent: 40203 -- proto: MagazineLightRifleMaxim - entities: - - uid: 23559 + pos: 96.5,-12.5 + parent: 2 + - uid: 23443 components: - - type: MetaData - desc: Весит под 25 килограмм. - name: диск для штанги(25 кг) - type: Transform - rot: 3.141592653589793 rad - pos: -120.83909,10.986113 + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 parent: 2 - missingComponents: - - BallisticAmmoProvider - - Item - - ContainerContainer - - Appearance - - uid: 23560 + - uid: 23444 components: - - type: MetaData - desc: Старое устройство для проигрывания пластинок - name: проигрыватель - type: Transform - pos: -67.5,-4.5 + pos: -52.5,-9.5 parent: 2 - missingComponents: - - BallisticAmmoProvider - - Item - - ContainerContainer - - Appearance - - Pullable - - uid: 23561 + - uid: 42582 components: - - type: MetaData - desc: Весит под 25 килограмм. - name: диск для штанги(25 кг) - type: Transform - pos: -120.83909,12.024784 - parent: 2 - missingComponents: - - BallisticAmmoProvider - - Item - - ContainerContainer - - Appearance -- proto: MagazinePistol - entities: - - uid: 13737 + rot: 1.5707963267948966 rad + pos: 39.5,62.5 + parent: 40599 + - uid: 42583 components: - type: Transform - parent: 13735 - - type: BallisticAmmoProvider - unspawnedCount: 10 - - type: Physics - canCollide: False - - uid: 23070 + rot: 1.5707963267948966 rad + pos: 39.5,60.5 + parent: 40599 + - uid: 42584 components: - type: Transform - parent: 23069 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23071 + rot: 1.5707963267948966 rad + pos: 39.5,61.5 + parent: 40599 + - uid: 42585 components: - type: Transform - parent: 23069 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23072 + rot: 3.141592653589793 rad + pos: 65.5,63.5 + parent: 40599 + - uid: 42586 components: - type: Transform - parent: 23069 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23073 + rot: 3.141592653589793 rad + pos: 65.5,61.5 + parent: 40599 + - uid: 47288 components: - type: Transform - parent: 23069 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazinePistolSubMachineGunTopMounted - entities: - - uid: 23064 + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 47245 + - uid: 47289 components: - type: Transform - parent: 23063 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23065 + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 47245 + - uid: 47290 components: - type: Transform - parent: 23063 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineRifle + pos: 0.5,2.5 + parent: 47245 +- proto: GrilleBroken entities: - - uid: 42272 + - uid: 23445 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.374817,72.59886 - parent: 40203 -- proto: MagazineRifleIncendiary - entities: - - uid: 42273 + rot: -1.5707963267948966 rad + pos: 99.5,-37.5 + parent: 2 + - uid: 23446 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.51544,72.63011 - parent: 40203 -- proto: MagazineShotgun - entities: - - uid: 41506 + pos: 99.5,-37.5 + parent: 2 + - uid: 23447 components: - type: Transform - parent: 41504 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MaintenanceFluffSpawner + rot: 3.141592653589793 rad + pos: 100.5,-38.5 + parent: 2 + - uid: 23448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 100.5,-38.5 + parent: 2 +- proto: GrilleDiagonal entities: - - uid: 23562 + - uid: 23449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-5.5 + pos: -1.5,5.5 parent: 2 - - uid: 23563 + - uid: 23450 components: - type: Transform - pos: -141.5,3.5 + rot: -1.5707963267948966 rad + pos: 6.5,5.5 parent: 2 - - uid: 23564 + - uid: 23451 components: - type: Transform - pos: 71.5,-32.5 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 parent: 2 - - uid: 23565 + - uid: 23452 components: - type: Transform - pos: 73.5,-30.5 + pos: 0.5,6.5 parent: 2 - - uid: 23566 + - uid: 23453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,-37.5 + parent: 2 + - uid: 47291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 47245 + - uid: 47292 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,3.5 + pos: 1.5,1.5 + parent: 47245 + - uid: 47293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 47245 + - uid: 47294 + components: + - type: Transform + pos: -0.5,2.5 + parent: 47245 +- proto: GrilleSpawner + entities: + - uid: 23454 + components: + - type: Transform + pos: 37.5,-37.5 parent: 2 - - uid: 23567 +- proto: GroundCannabis + entities: + - uid: 17883 components: - type: Transform - pos: 52.5,-29.5 + parent: 17881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23455 + components: + - type: Transform + pos: 80.67547,6.0009174 parent: 2 - - uid: 23568 + - uid: 23456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,21.5 + pos: 80.284096,5.744075 parent: 2 - - uid: 23569 +- proto: GroundCannabisRainbow + entities: + - uid: 23457 components: - type: Transform - pos: -89.5,45.5 + pos: 80.322205,6.156748 parent: 2 - - uid: 23570 +- proto: GroundTobacco + entities: + - uid: 23458 components: - type: Transform - pos: -18.5,67.5 + pos: -26.453497,7.578557 parent: 2 - - uid: 23571 + - type: Stack + count: 5 + - uid: 23459 components: - type: Transform - pos: -79.5,26.5 + pos: -26.672247,7.797307 parent: 2 - - uid: 23572 + - type: Stack + count: 5 + - uid: 42587 components: - type: Transform - pos: -56.5,37.5 + pos: 31.421791,29.58874 + parent: 40599 +- proto: GunSafe + entities: + - uid: 8498 + components: + - type: MetaData + name: сейф для документов + - type: Transform + pos: 4.5,-10.5 parent: 2 - - uid: 23573 + - type: AccessReader + access: + - - Captain + - - HeadOfSecurity + - 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: + - 8499 + - 8500 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19762 components: - type: Transform - pos: -82.5,39.5 + pos: -56.5,50.5 parent: 2 - - uid: 23574 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19763 + - 19764 + - 19767 + - 19765 + - 19766 + - 19768 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 23460 components: + - type: MetaData + name: оружейный сейф Матебы - type: Transform - pos: 57.5,42.5 + pos: -44.5,7.5 parent: 2 - - uid: 23575 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23462 + - 23463 + - 23461 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23464 components: + - type: MetaData + name: оружейный сейф смотрителя - type: Transform - pos: 28.5,64.5 + pos: -44.5,-15.5 parent: 2 - - uid: 23576 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23467 + - 23465 + - 23466 + - 23468 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41900 components: - type: Transform - pos: -23.5,65.5 + pos: 41.5,73.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41902 + - 41903 + - 41901 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 42588 + components: + - type: Transform + pos: 71.41253,79.5 + parent: 40599 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 45392 + components: + - type: MetaData + desc: Стандартное хранилище. + name: сейф + - type: Transform + pos: 6.5,9.5 + parent: 45355 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 45402 + - 45401 + - 45399 + - 45400 + - 45395 + - 45403 + - 45393 + - 45396 + - 45397 + - 45398 + - 45394 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler + entities: + - uid: 23469 + components: + - type: Transform + pos: -39.5,-19.5 parent: 2 - - uid: 23577 + - 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: GunSafePistolMk58 + entities: + - uid: 23470 components: - type: Transform - pos: 45.5,33.5 + pos: -41.5,-6.5 parent: 2 - - uid: 23578 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23471 + - 23472 + - 23473 + - 23474 + - 23475 + - 23476 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeRifleLecter + entities: + - uid: 23477 components: - type: Transform - pos: 78.5,18.5 + pos: -42.5,-6.5 parent: 2 -- proto: MaintenanceToolSpawner +- proto: GunSafeSubMachineGunDrozd entities: - - uid: 23579 + - uid: 23478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-0.5 + pos: -42.5,-7.5 parent: 2 - - uid: 23580 +- proto: Handcuffs + entities: + - uid: 23479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-11.5 + pos: 97.52334,-11.443766 parent: 2 - - uid: 23581 + - uid: 23480 components: - type: Transform - pos: 41.5,-27.5 + rot: 3.141592653589793 rad + pos: -54.351852,13.483408 parent: 2 - - uid: 23582 + - uid: 23481 components: - type: Transform - pos: -32.5,63.5 + rot: -1.5707963267948966 rad + pos: -3.3388095,69.64353 parent: 2 - - uid: 23583 + - uid: 23482 components: - type: Transform - pos: -35.5,66.5 + pos: 15.477762,-7.2063613 parent: 2 - - uid: 23584 + - uid: 23483 components: - type: Transform - pos: 34.5,42.5 + rot: -1.5707963267948966 rad + pos: -9.049684,-7.406753 parent: 2 - - uid: 23585 + - uid: 23484 components: - type: Transform - pos: -61.5,16.5 + rot: -1.5707963267948966 rad + pos: -40.047844,-11.4398365 parent: 2 - - uid: 23586 + - uid: 23485 components: - type: Transform - pos: 71.5,19.5 + pos: -110.47645,19.866163 parent: 2 - - uid: 23587 + - uid: 23486 components: - type: Transform - pos: -83.5,30.5 + pos: -110.41395,19.553663 parent: 2 - - uid: 23588 + - uid: 23487 components: - type: Transform - pos: 34.5,64.5 + rot: 3.141592653589793 rad + pos: -21.575478,-16.366497 parent: 2 - - uid: 23589 + - uid: 23488 components: - type: Transform - pos: -29.5,68.5 + pos: -27.393522,16.762276 parent: 2 - - uid: 23590 + - uid: 23489 components: - type: Transform - pos: -51.5,57.5 + pos: -27.393522,16.501858 parent: 2 - - uid: 23591 + - uid: 23490 components: - type: Transform - pos: 59.5,36.5 + rot: 3.141592653589793 rad + pos: -89.459015,27.485405 parent: 2 - - uid: 23592 +- proto: HandheldGPSBasic + entities: + - uid: 23491 components: - type: Transform - pos: -139.5,-1.5 + rot: 1.5707963267948966 rad + pos: 67.61014,-51.61218 parent: 2 -- proto: MaintenanceWeaponSpawner +- proto: HandheldHealthAnalyzer entities: - - uid: 23593 + - uid: 23492 components: - type: Transform - pos: 69.5,-31.5 + pos: 22.52323,22.524895 parent: 2 - - uid: 23594 + - uid: 23493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-12.5 + rot: -1.5707963267948966 rad + pos: -20.310762,8.61825 parent: 2 - - uid: 23595 + - uid: 23494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,10.5 + pos: -52.658504,13.402292 parent: 2 - - uid: 23596 +- proto: HandheldStationMap + entities: + - uid: 23495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,18.5 + pos: 33.59906,-18.858057 parent: 2 - - uid: 23597 + - type: ActivatableUI + inHandsOnly: False + missingComponents: + - Item + - uid: 23496 components: - type: Transform - pos: 49.5,-31.5 + pos: -3.9804597,30.045774 parent: 2 - - uid: 23598 + - type: ActivatableUI + inHandsOnly: False + missingComponents: + - Item + - uid: 23497 components: - type: Transform - pos: -90.5,46.5 + pos: -92.42715,-6.368115 parent: 2 - - uid: 23599 + - type: ActivatableUI + inHandsOnly: False + missingComponents: + - Item + - uid: 23498 components: - type: Transform - pos: -59.5,76.5 + pos: 66.254684,-56.743343 parent: 2 - - uid: 23600 + - type: ActivatableUI + inHandsOnly: False + missingComponents: + - Item + - uid: 23499 components: - type: Transform - pos: -83.5,28.5 + pos: 79.88674,-8.092673 parent: 2 - - uid: 23601 + - type: ActivatableUI + inHandsOnly: False + missingComponents: + - Item + - uid: 23500 components: - type: Transform - pos: -55.5,37.5 + pos: 73.11175,-21.388737 parent: 2 - - uid: 23602 + - type: ActivatableUI + inHandsOnly: False + missingComponents: + - Item +- proto: HandLabeler + entities: + - uid: 23501 components: - type: Transform - pos: -81.5,39.5 + pos: 8.78009,-9.171686 parent: 2 - - uid: 23603 + - uid: 23502 components: - type: Transform - pos: -98.5,36.5 + pos: -8.546241,-7.4165397 parent: 2 - - uid: 23604 + - uid: 23503 + components: + - type: Transform + pos: 17.579212,-13.438869 + parent: 2 + - uid: 23504 components: - type: Transform rot: -1.5707963267948966 rad - pos: -75.5,46.5 + pos: -12.309503,44.57702 parent: 2 - - uid: 23605 + - uid: 23505 components: - type: Transform - pos: -33.5,50.5 + pos: 81.73427,-40.35262 parent: 2 - - uid: 23606 + - uid: 23506 components: - type: Transform - pos: 47.5,37.5 + pos: 27.580082,-5.1942916 parent: 2 - - uid: 23607 +- proto: HappyHonk + entities: + - uid: 23507 components: - type: Transform - pos: -140.5,-7.5 + pos: -114.43009,4.5617642 parent: 2 -- proto: Mannequin +- proto: HappyHonkNukieSnacks entities: - - uid: 14817 + - uid: 47295 components: - type: Transform - pos: 16.5,-11.5 + rot: 0.20943951023931956 rad + pos: -1.2050234,-3.3724904 + parent: 47245 +- proto: HarmonicaInstrument + entities: + - uid: 23508 + components: + - type: Transform + pos: 94.5009,-14.514538 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14823 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14822 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14821 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14819 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14820 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14818 - - uid: 14845 +- proto: HarpInstrument + entities: + - uid: 23509 components: - type: Transform - pos: 62.5,3.5 + pos: 58.5,9.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14848 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14846 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14847 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14860 + - uid: 23510 components: - type: Transform - pos: -25.5,23.5 + pos: 33.5,24.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14863 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14862 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14861 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14864 +- proto: HeadSkeleton + entities: + - uid: 23511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-23.5 + pos: 73.90317,-31.41401 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14868 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14867 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14865 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14866 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14869 + - uid: 23512 components: + - type: MetaData + desc: Бедный Begorrchi... + name: Begorrchi - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-23.5 + pos: 14.413132,65.41359 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14873 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14872 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14870 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14871 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14874 +- proto: HighSecArmoryLocked + entities: + - uid: 23513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-23.5 + pos: -38.5,-10.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14878 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14877 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14875 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14876 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14879 +- proto: HighSecCommandLocked + entities: + - uid: 23514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-23.5 + pos: 2.5,-12.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14883 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14882 - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14880 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14881 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14951 + - uid: 23515 components: - type: Transform - pos: -100.5,43.5 + pos: -5.5,11.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14955 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14954 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14953 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14952 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14956 + - uid: 23516 components: - type: Transform - pos: -100.5,47.5 + pos: 10.5,11.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14958 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14957 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14959 + - uid: 23517 components: - type: Transform - pos: -102.5,48.5 + pos: 5.5,13.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14961 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14960 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14962 + - uid: 23518 components: - type: Transform - pos: -101.5,46.5 + pos: -0.5,13.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14964 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14963 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14965 +- proto: HoloprojectorSecurity + entities: + - uid: 23519 components: - type: Transform - pos: -100.5,48.5 + pos: -26.497156,1.5621265 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14967 - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14966 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 14977 +- proto: HospitalCurtains + entities: + - uid: 23520 components: - type: Transform - pos: 40.5,54.5 + rot: -1.5707963267948966 rad + pos: -105.5,28.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14979 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 14978 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - type: MobsterAccent - - uid: 15016 + - uid: 23521 components: - type: Transform - pos: 62.5,-1.5 + rot: -1.5707963267948966 rad + pos: -105.5,32.5 parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15018 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 15017 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 40204 + - uid: 42589 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,55.5 - parent: 40203 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 40207 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 40205 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 41168 + pos: 60.5,83.5 + parent: 40599 +- proto: HospitalCurtainsOpen + entities: + - uid: 23522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,50.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + pos: -4.5,67.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + pos: 16.5,64.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + pos: 16.5,60.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + pos: 21.5,60.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + pos: 16.5,51.5 + parent: 2 + - uid: 23529 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + pos: 13.5,65.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,62.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + pos: -14.5,52.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + pos: -5.5,67.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + pos: -16.5,49.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -105.5,30.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,53.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,21.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,52.5 + parent: 2 + - uid: 42590 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,81.5 + parent: 40599 + - uid: 42591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 60.5,81.5 + parent: 40599 +- proto: hydroponicsSoil + entities: + - uid: 23544 + components: + - type: Transform + pos: -74.5,11.5 + parent: 2 + - uid: 23545 + components: + - type: Transform + pos: -76.5,11.5 + parent: 2 + - uid: 23546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 + - uid: 23547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,31.5 + parent: 2 + - uid: 23548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - uid: 23549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,20.5 + parent: 2 + - uid: 23550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,20.5 + parent: 2 + - uid: 23551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,20.5 + parent: 2 + - uid: 23552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,20.5 + parent: 2 + - uid: 23553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -102.5,18.5 + parent: 2 + - uid: 23554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -101.5,18.5 + parent: 2 + - uid: 23555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,18.5 + parent: 2 + - uid: 23556 + components: + - type: Transform + pos: -76.5,12.5 + parent: 2 + - uid: 23557 + components: + - type: Transform + pos: -74.5,12.5 + parent: 2 + - uid: 42592 + components: + - type: Transform + pos: 52.5,70.5 + parent: 40599 + - uid: 42593 + components: + - type: Transform + pos: 49.5,73.5 + parent: 40599 + - uid: 42594 + components: + - type: Transform + pos: 51.5,71.5 + parent: 40599 + - uid: 42595 + components: + - type: Transform + pos: 49.5,69.5 + parent: 40599 + - uid: 42596 + components: + - type: Transform + pos: 47.5,71.5 + parent: 40599 +- proto: HydroponicsToolClippers + entities: + - uid: 15139 + components: + - type: Transform + parent: 15138 + - type: Physics + canCollide: False + - uid: 23558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.505005,17.555195 + parent: 2 + - uid: 42597 components: - type: Transform rot: 1.5707963267948966 rad - pos: 71.5,77.5 - parent: 40203 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41172 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41171 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41169 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41170 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - uid: 41174 + pos: 52.769012,73.53957 + parent: 40599 +- proto: HydroponicsToolHatchet + entities: + - uid: 23559 + components: + - type: Transform + pos: -90.04945,12.756027 + parent: 2 + - uid: 23560 + components: + - type: Transform + pos: -49.820953,65.54441 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 23561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,55.5 - parent: 40203 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41177 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41175 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 41176 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - - type: RussianAccent - - uid: 45114 + pos: -102.520584,17.569668 + parent: 2 + - uid: 42598 + components: + - type: Transform + pos: 51.54369,70.83399 + parent: 40599 + - uid: 42599 + components: + - type: Transform + pos: 51.54369,70.83399 + parent: 40599 +- proto: HydroponicsToolSpade + entities: + - uid: 23562 + components: + - type: Transform + pos: 79.68577,7.8152633 + parent: 2 + - uid: 23563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -102.520584,17.600918 + parent: 2 + - uid: 23564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.495945,-11.553323 + parent: 2 + - uid: 42600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.153065,71.31837 + parent: 40599 +- proto: hydroponicsTray + entities: + - uid: 23565 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - uid: 23566 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 23567 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 23568 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 23569 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 23570 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 23571 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 23572 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 23573 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 23574 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 23575 + components: + - type: Transform + pos: 11.5,38.5 + parent: 2 + - uid: 23576 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - uid: 23577 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 23578 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 23579 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - uid: 23580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 82.5,8.5 + parent: 2 + - uid: 23581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,5.5 + parent: 2 + - uid: 23582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,6.5 + parent: 2 + - uid: 23583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 83.5,7.5 + parent: 2 + - uid: 23584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 79.5,8.5 + parent: 2 + - uid: 23585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 81.5,8.5 + parent: 2 + - uid: 23586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 80.5,8.5 + parent: 2 + - uid: 23587 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 23588 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 23589 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 +- proto: HypoDart + entities: + - uid: 23590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.30595,25.253252 + parent: 2 +- proto: Hypopen + entities: + - uid: 23591 + components: + - type: Transform + pos: 29.119497,56.565838 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 23592 + components: + - type: Transform + pos: 15.384924,12.720999 + parent: 2 +- proto: Implanter + entities: + - uid: 23593 + components: + - type: Transform + pos: -52.499935,9.399364 + parent: 2 +- proto: InflatableDoor + entities: + - uid: 23594 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 44970 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: 45117 - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: 45115 - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: 45116 - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null -- proto: Matchbox + pos: 20.5,57.5 + parent: 2 +- proto: InflatableWall entities: - - uid: 23608 + - uid: 23595 components: - type: Transform - pos: -122.52306,9.441509 + rot: 3.141592653589793 rad + pos: 20.5,58.5 parent: 2 -- proto: MaterialCloth + - uid: 23596 + components: + - type: Transform + pos: -61.5,23.5 + parent: 2 + - uid: 23597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,25.5 + parent: 2 + - uid: 23598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,26.5 + parent: 2 + - uid: 23599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 101.5,-45.5 + parent: 2 +- proto: InflatableWallStack1 entities: - - uid: 23609 + - uid: 23600 components: - type: Transform - pos: -7.4913225,-9.511583 + rot: 1.5707963267948966 rad + pos: 20.40405,56.54781 parent: 2 -- proto: MaterialCloth1 + - uid: 23601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 102.49381,-46.322838 + parent: 2 +- proto: IngotGold entities: - - uid: 23610 + - uid: 15293 components: - type: Transform - pos: 28.51428,53.560528 + parent: 15291 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23602 + components: + - type: Transform + pos: 4.642009,-8.394894 parent: 2 - - uid: 42274 + - uid: 47034 components: - type: Transform - pos: 57.36811,63.363342 - parent: 40203 -- proto: MaterialDiamond1 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IngotGold1 entities: - - uid: 14971 + - uid: 45395 components: + - type: MetaData + desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. - type: Transform - parent: 14968 - - type: Stack - count: 10 + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45396 + components: + - type: MetaData + desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. + - type: Transform + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45397 + components: + - type: MetaData + desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. + - type: Transform + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45398 + components: + - type: MetaData + desc: Тяжёлый металлический слиток с выдавленным логотипом Gorlex Marauders. + - type: Transform + parent: 45392 - type: Physics canCollide: False - type: InsideEntityStorage +- proto: IngotSilver + entities: + - uid: 23603 + components: + - type: Transform + pos: 4.438884,-8.207394 + parent: 2 +- proto: IntercomAssembly + entities: + - uid: 42601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,61.5 + parent: 40599 + - uid: 42602 + components: + - type: Transform + pos: 66.5,64.5 + parent: 40599 + - uid: 42603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,67.5 + parent: 40599 + - uid: 42604 + components: + - type: Transform + pos: 54.5,53.5 + parent: 40599 + - uid: 42605 + components: + - type: Transform + pos: 50.5,80.5 + parent: 40599 + - uid: 42606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,75.5 + parent: 40599 + - uid: 42607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 75.5,72.5 + parent: 40599 + - uid: 42608 + components: + - type: Transform + pos: 42.5,67.5 + parent: 40599 + - uid: 42609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,62.5 + parent: 40599 +- proto: IntercomCommand + entities: + - uid: 23604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - uid: 23605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 +- proto: IntercomElectronics + entities: + - uid: 23606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.536645,7.4238377 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 23607 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-35.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 23608 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 23609 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 23610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-3.5 + parent: 2 +- proto: IntercomService + entities: - uid: 23611 components: - type: Transform - pos: 4.830475,-8.16509 + rot: 3.141592653589793 rad + pos: 11.5,23.5 parent: 2 -- proto: MaterialDurathread +- proto: IntercomSupply entities: - uid: 23612 components: - type: Transform - pos: -7.5538225,-9.480333 + rot: -1.5707963267948966 rad + pos: 64.5,-31.5 parent: 2 -- proto: MaterialGunpowder +- proto: JanitorialTrolley entities: - uid: 23613 components: - - type: MetaData - desc: Странный белый порошок... - name: белый порошок - type: Transform - pos: 1.1091489,67.50048 + pos: 4.5,30.5 parent: 2 - uid: 23614 components: - type: Transform - pos: -28.275652,-17.306757 + pos: 3.5,30.5 parent: 2 - - type: Stack - count: 5 - uid: 23615 components: - - type: MetaData - desc: Странный белый порошок.. Думаю, вам не стоит его трогать.. - name: странный порошок - type: Transform - pos: -30.36845,29.822168 + rot: -1.5707963267948966 rad + pos: -99.5,23.5 parent: 2 - - uid: 42275 - components: - - type: Transform - pos: 71.40013,78.76999 - parent: 40203 -- proto: MaterialHideBear +- proto: JanitorServiceLight entities: - uid: 23616 components: - type: Transform - pos: -55.54973,46.33016 + pos: -18.5,1.5 parent: 2 -- proto: MaterialWoodPlank1 - entities: + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 23617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.279636,57.72832 + rot: 1.5707963267948966 rad + pos: 20.5,3.5 parent: 2 + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 23618 components: - type: Transform - pos: -40.342136,57.47832 + rot: -1.5707963267948966 rad + pos: -15.5,3.5 parent: 2 + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 - uid: 23619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.593864,14.293735 + pos: 28.5,-25.5 + parent: 2 + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,33.5 + parent: 2 + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-25.5 + parent: 2 + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,24.5 + parent: 2 + - type: DamageOnInteract + isDamageActive: False + - type: ApcPowerReceiver + powerLoad: 0 +- proto: JetpackBlackFilled + entities: + - uid: 23624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.490737,12.64674 + parent: 2 + - uid: 23625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.318862,12.45924 + parent: 2 +- proto: Joint + entities: + - uid: 23626 + components: + - type: Transform + pos: 42.47071,29.801947 + parent: 2 + - uid: 23628 + components: + - type: Transform + parent: 23627 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23629 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.33459,-40.062466 + parent: 2 +- proto: JointRainbow + entities: + - uid: 23630 + components: + - type: Transform + pos: 80.54093,6.4901414 + parent: 2 + - uid: 23631 + components: + - type: Transform + pos: 80.66324,6.5757556 + parent: 2 + - uid: 23632 + components: + - type: Transform + pos: 80.87116,6.86929 + parent: 2 +- proto: Jug + entities: + - uid: 42610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 61.585075,63.45594 + parent: 40599 + - uid: 42611 + components: + - type: Transform + pos: 61.3507,63.79969 + parent: 40599 +- proto: Jukebox + entities: + - uid: 23633 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 23634 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 46094 + components: + - type: Transform + pos: 0.5,1.5 + parent: 45355 +- proto: JukeboxCircuitBoard + entities: + - uid: 23635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.411645,7.5905046 + parent: 2 +- proto: Katana + entities: + - uid: 23636 + components: + - type: Transform + rot: 0.7853981633974483 rad + pos: 44.90997,12.327791 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 23637 + components: + - type: Transform + pos: 33.5,34.5 + parent: 2 +- proto: KitchenKnife + entities: + - uid: 46095 + components: + - type: Transform + pos: 6.008722,3.238326 + parent: 45355 +- proto: KitchenMicrowave + entities: + - uid: 23638 + components: + - type: Transform + pos: 25.5,61.5 + parent: 2 + - uid: 23639 + components: + - type: Transform + pos: 31.5,34.5 + parent: 2 + - uid: 23640 + components: + - type: Transform + pos: 30.5,34.5 + parent: 2 + - uid: 23641 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 23642 + components: + - type: Transform + pos: 25.5,-51.5 + parent: 2 + - uid: 23643 + components: + - type: Transform + pos: -3.5,-50.5 + parent: 2 + - uid: 23644 + components: + - type: Transform + pos: 4.5,-56.5 + parent: 2 + - uid: 23645 + components: + - type: Transform + pos: 76.5,-48.5 + parent: 2 + - uid: 23646 + components: + - type: Transform + pos: -46.5,3.5 + parent: 2 + - uid: 23647 + components: + - type: MetaData + desc: Так и просит чтобы в неё положили вилку. + - type: Transform + pos: 7.5,44.5 + parent: 2 + - uid: 23648 + components: + - type: Transform + pos: 77.5,3.5 + parent: 2 + - uid: 23649 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 23650 + components: + - type: Transform + pos: 70.5,-44.5 + parent: 2 + - uid: 23651 + components: + - type: Transform + pos: -114.5,12.5 + parent: 2 + - uid: 23652 + components: + - type: Transform + pos: -104.5,41.5 + parent: 2 + - uid: 42612 + components: + - type: Transform + pos: 48.5,79.5 + parent: 40599 +- proto: KitchenReagentGrinder + entities: + - uid: 23653 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 23654 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 23655 + components: + - type: Transform + pos: 42.5,-45.5 + parent: 2 + - uid: 23656 + components: + - type: Transform + pos: 29.5,59.5 + parent: 2 + - uid: 23657 + components: + - type: Transform + pos: 81.5,3.5 + parent: 2 + - uid: 23658 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23659 + inputContainer: !type:Container + showEnts: False + occludes: True + ents: [] + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 23660 + components: + - type: Transform + pos: -115.5,12.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 23661 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 23662 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 +- proto: Lamp + entities: + - uid: 19 + components: + - type: Transform + pos: -44.68446,-16.178232 + parent: 2 + - type: HandheldLight + toggleActionEntity: 20 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 20 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 23663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.6605,42.61403 + parent: 2 + - uid: 23664 + components: + - type: Transform + pos: 57.35971,13.745398 + parent: 2 + - uid: 23665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.398117,21.785093 + parent: 2 + - uid: 23666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.521301,5.2248254 + parent: 2 + - uid: 23667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.493746,19.790836 + parent: 2 + - uid: 23668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.4101877,-49.2516 + parent: 2 + - uid: 23669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.69733,44.64947 + parent: 2 + - uid: 23670 + components: + - type: Transform + pos: 72.45401,-48.302887 + parent: 2 + - uid: 23671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.510212,15.654413 + parent: 2 + - uid: 23672 + components: + - type: Transform + pos: -34.099556,2.7923388 + parent: 2 + - uid: 23673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.644018,26.715693 + parent: 2 + - uid: 23674 + components: + - type: Transform + pos: -31.578487,-20.299477 + parent: 2 + - uid: 23675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.359737,-20.252602 + parent: 2 + - uid: 23676 + components: + - type: Transform + pos: -27.594112,-19.268227 + parent: 2 + - uid: 23677 + components: + - type: Transform + pos: 9.338343,19.593208 + parent: 2 + - uid: 42613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.62448,59.57685 + parent: 40599 + - uid: 42614 + components: + - type: Transform + pos: 56.41559,63.613342 + parent: 40599 +- proto: LampBanana + entities: + - uid: 23678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.63051,12.674431 + parent: 2 + - uid: 23679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.3378363,61.767548 + parent: 2 +- proto: LampGold + entities: + - uid: 17 + components: + - type: Transform + pos: 7.7054033,20.982077 + parent: 2 + - type: HandheldLight + toggleActionEntity: 18 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 18 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 21 + components: + - type: Transform + pos: 74.504715,-39.141045 + parent: 2 + - type: HandheldLight + toggleActionEntity: 22 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 22 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 23 + components: + - type: Transform + pos: -25.327244,26.74304 + parent: 2 + - type: HandheldLight + toggleActionEntity: 24 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 24 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 23680 + components: + - type: Transform + pos: 82.48852,-38.263412 + parent: 2 + - uid: 23681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.723301,-11.11289 + parent: 2 + - uid: 23682 + components: + - type: Transform + pos: 18.516712,-11.282619 + parent: 2 + - uid: 23683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.370281,57.772923 + parent: 2 + - uid: 23684 + components: + - type: Transform + pos: -7.4483852,19.857077 + parent: 2 + - uid: 42615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 73.632904,72.67519 + parent: 40599 +- proto: LampInterrogator + entities: + - uid: 23685 + components: + - type: Transform + pos: -29.47723,6.9733744 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 23686 + components: + - type: Transform + pos: -1.4403534,-6.457538 + parent: 2 + - uid: 23687 + components: + - type: Transform + pos: -1.5809784,-10.453083 + parent: 2 + - uid: 23688 + components: + - type: Transform + pos: 5.56057,-6.5018287 + parent: 2 + - uid: 23689 + components: + - type: Transform + pos: -130.35263,18.280003 + parent: 2 + - uid: 23690 + components: + - type: Transform + pos: -127.00745,13.518862 + parent: 2 + - uid: 23691 + components: + - type: Transform + pos: -127.71057,5.5593987 + parent: 2 + - uid: 23692 + components: + - type: Transform + pos: -124.9137,-1.4548609 + parent: 2 + - uid: 42616 + components: + - type: Transform + pos: 40.788162,82.085236 + parent: 40599 + - uid: 42617 + components: + - type: Transform + pos: 43.491287,82.803986 + parent: 40599 + - uid: 42618 + components: + - type: Transform + pos: 45.475662,81.41336 + parent: 40599 +- proto: LandMineModular + entities: + - uid: 23693 + components: + - type: MetaData + name: взрывная мина? + - type: Transform + pos: -135.39911,3.4766407 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 23659 + components: + - type: Transform + parent: 23658 + - type: Physics + canCollide: False + - uid: 23694 + components: + - type: Transform + pos: 43.17299,-45.293705 + parent: 2 + - uid: 23695 + components: + - type: Transform + pos: 7.3867645,33.381863 + parent: 2 + - uid: 23696 + components: + - type: Transform + pos: 29.488827,60.6854 + parent: 2 + - uid: 23697 + components: + - type: Transform + pos: 30.236628,32.79499 + parent: 2 + - type: CollisionWake + enabled: False + - uid: 23698 + components: + - type: Transform + pos: 30.658503,32.57624 + parent: 2 + - type: CollisionWake + enabled: False +- proto: LauncherCreamPie + entities: + - uid: 15366 + components: + - type: Transform + parent: 15361 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeavesCannabisDried + entities: + - uid: 23699 + components: + - type: Transform + pos: 79.2577,3.6680608 + parent: 2 + - uid: 23700 + components: + - type: Transform + pos: 79.759155,3.5090632 + parent: 2 + - uid: 23701 + components: + - type: Transform + pos: 80.46853,3.484602 + parent: 2 +- proto: LedLightBulb + entities: + - uid: 23703 + components: + - type: Transform + parent: 23702 + - type: LightBulb + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 23705 + components: + - type: Transform + parent: 23704 + - type: LightBulb + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 23707 + components: + - type: Transform + parent: 23706 + - type: LightBulb + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 23709 + components: + - type: Transform + parent: 23708 + - type: LightBulb + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 23711 + components: + - type: Transform + parent: 23710 + - type: LightBulb + lightRadius: 15 + lightEnergy: 3 + color: '#FF4444FF' + - type: Physics + canCollide: False + - uid: 23713 + components: + - type: Transform + parent: 23712 + - type: LightBulb + lightRadius: 15 + lightEnergy: 3 + color: '#FF4444FF' + - type: Physics + canCollide: False + - uid: 42620 + components: + - type: Transform + parent: 42619 + - type: LightBulb + color: '#FF4444FF' + - type: Physics + canCollide: False + - uid: 42622 + components: + - type: Transform + parent: 42621 + - type: LightBulb + color: '#FF4444FF' + - type: Physics + canCollide: False + - uid: 42624 + components: + - type: Transform + parent: 42623 + - type: LightBulb + color: '#BD1A1AFF' + - type: Physics + canCollide: False + - uid: 42626 + components: + - type: Transform + parent: 42625 + - type: LightBulb + color: '#BD1A1AFF' + - type: Physics + canCollide: False +- proto: Left4ZedChemistryBottle + entities: + - uid: 15913 + components: + - type: Transform + parent: 15912 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15914 + components: + - type: Transform + parent: 15912 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15915 + components: + - type: Transform + parent: 15912 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15916 + components: + - type: Transform + parent: 15912 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LeftArmBorgEngineer + entities: + - uid: 23714 + components: + - type: MetaData + name: замок зажигания + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.932782,-13.779762 + parent: 2 +- proto: LeftLegBorg + entities: + - uid: 23715 + components: + - type: MetaData + name: глушитель + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.573407,-12.748512 + parent: 2 +- proto: LeftLegBorgService + entities: + - uid: 23716 + components: + - type: MetaData + name: тормозная колодка + - type: Transform + rot: -3.141592653589793 rad + pos: 11.943434,-13.418121 + parent: 2 +- proto: LegionnaireBonfire + entities: + - uid: 23717 + components: + - type: Transform + pos: 100.5,0.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + pos: 96.5,6.5 + parent: 2 +- proto: LightBulb + entities: + - uid: 23720 + components: + - type: Transform + parent: 23719 + - type: LightBulb + color: '#FF0000FF' + - type: Physics + canCollide: False + - uid: 42628 + components: + - type: Transform + parent: 42627 + - type: LightBulb + color: '#FF2222FF' + - type: Physics + canCollide: False +- proto: LightBulbBroken + entities: + - uid: 23722 + components: + - type: Transform + parent: 23721 + - type: Physics + canCollide: False + - uid: 23724 + components: + - type: Transform + parent: 23723 + - type: Physics + canCollide: False + - uid: 42630 + components: + - type: Transform + parent: 42629 + - type: Physics + canCollide: False + - uid: 42632 + components: + - type: Transform + parent: 42631 + - type: Physics + canCollide: False + - uid: 42634 + components: + - type: Transform + parent: 42633 + - type: Physics + canCollide: False + - uid: 42636 + components: + - type: Transform + parent: 42635 + - type: Physics + canCollide: False +- proto: LightBulbOld + entities: + - uid: 23726 + components: + - type: Transform + parent: 23725 + - type: Physics + canCollide: False + - uid: 23728 + components: + - type: Transform + parent: 23727 + - type: Physics + canCollide: False + - uid: 42638 + components: + - type: Transform + parent: 42637 + - type: Physics + canCollide: False +- proto: LightReplacer + entities: + - uid: 15038 + components: + - type: Transform + parent: 15033 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LightTree01 + entities: + - uid: 23729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.811974,40.343792 + parent: 2 + - uid: 23730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.956306,46.682034 + parent: 2 + - uid: 23731 + components: + - type: Transform + pos: 40.96067,43.664898 + parent: 2 + - uid: 23732 + components: + - type: Transform + pos: -34.833126,69.374954 + parent: 2 +- proto: LightTree02 + entities: + - uid: 23733 + components: + - type: MetaData + desc: Удивительное дерево, наполненное странной энергией. Вы видите на нём множество прикреплённых фотографий неизвестных вам личностей. + - type: Transform + pos: 50.398636,-5.696267 + parent: 2 + - uid: 23734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.304153,39.423416 + parent: 2 + - uid: 23735 + components: + - type: Transform + pos: -59.967888,37.112328 + parent: 2 + - uid: 23736 + components: + - type: Transform + pos: -58.928226,32.863144 + parent: 2 + - uid: 23737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.287506,-2.405541 + parent: 2 + - uid: 23738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.46024,13.412575 + parent: 2 +- proto: LightTree03 + entities: + - uid: 23739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.92459,37.306747 + parent: 2 + - uid: 23740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.436974,41.125042 + parent: 2 +- proto: LightTree04 + entities: + - uid: 23741 + components: + - type: Transform + pos: -56.518284,34.19127 + parent: 2 + - uid: 23742 + components: + - type: Transform + pos: -61.865723,34.69127 + parent: 2 + - uid: 23743 + components: + - type: Transform + pos: -64.16191,37.456078 + parent: 2 + - uid: 23744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.55047,-1.9909225 + parent: 2 + - uid: 23745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.79164,44.26217 + parent: 2 + - uid: 23746 + components: + - type: Transform + pos: 70.31623,26.770643 + parent: 2 + - uid: 23747 + components: + - type: Transform + pos: -91.476845,24.698957 + parent: 2 + - uid: 23748 + components: + - type: Transform + pos: -42.114376,70.437454 + parent: 2 +- proto: LightTree05 + entities: + - uid: 23749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.04635,41.984417 + parent: 2 + - uid: 23750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.31811,36.541122 + parent: 2 + - uid: 23751 + components: + - type: Transform + pos: 65.40998,24.993143 + parent: 2 + - uid: 23752 + components: + - type: Transform + pos: 63.373383,19.394375 + parent: 2 +- proto: LightTree06 + entities: + - uid: 23753 + components: + - type: Transform + pos: -61.671013,38.502953 + parent: 2 + - uid: 23754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.331306,50.557034 + parent: 2 + - uid: 23755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 87.53804,4.958809 + parent: 2 + - uid: 23756 + components: + - type: Transform + pos: 75.69378,18.068148 + parent: 2 + - uid: 23757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.52602,44.621544 + parent: 2 +- proto: LightTube + entities: + - uid: 23759 + components: + - type: Transform + parent: 23758 + - type: LightBulb + color: '#8000FFFF' + - type: Physics + canCollide: False + - uid: 23761 + components: + - type: Transform + parent: 23760 + - type: LightBulb + color: '#8000FFFF' + - type: Physics + canCollide: False +- proto: LightTubeBroken + entities: + - uid: 23762 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.392029,60.29145 + parent: 2 + - uid: 42640 + components: + - type: Transform + parent: 42639 + - type: Physics + canCollide: False + - uid: 42642 + components: + - type: Transform + parent: 42641 + - type: Physics + canCollide: False + - uid: 42644 + components: + - type: Transform + parent: 42643 + - type: Physics + canCollide: False + - uid: 42646 + components: + - type: Transform + parent: 42645 + - type: Physics + canCollide: False + - uid: 42648 + components: + - type: Transform + parent: 42647 + - type: Physics + canCollide: False + - uid: 46097 + components: + - type: Transform + parent: 46096 + - type: Physics + canCollide: False + - uid: 47297 + components: + - type: Transform + parent: 47296 + - type: Physics + canCollide: False +- proto: LightTubeCrystalOrange + entities: + - uid: 23764 + components: + - type: Transform + parent: 23763 + - type: LightBulb + lightSoftness: 0.9 + lightRadius: 5 + lightEnergy: 1.5 + color: '#E39C40FF' + - type: Physics + canCollide: False + - uid: 23766 + components: + - type: Transform + parent: 23765 + - type: LightBulb + lightSoftness: 0.9 + lightRadius: 5 + lightEnergy: 1.5 + color: '#E39C40FF' + - type: Physics + canCollide: False + - uid: 23768 + components: + - type: Transform + parent: 23767 + - type: LightBulb + lightSoftness: 0.9 + lightRadius: 5 + lightEnergy: 1.5 + color: '#E39C40FF' + - type: Physics + canCollide: False + - uid: 23770 + components: + - type: Transform + parent: 23769 + - type: LightBulb + lightSoftness: 0.9 + lightRadius: 5 + lightEnergy: 1.5 + color: '#E39C40FF' + - type: Physics + canCollide: False + - uid: 23772 + components: + - type: Transform + parent: 23771 + - type: LightBulb + lightSoftness: 0.9 + lightRadius: 5 + lightEnergy: 1.5 + color: '#E39C40FF' + - type: Physics + canCollide: False + - uid: 23774 + components: + - type: Transform + parent: 23773 + - type: LightBulb + lightSoftness: 0.9 + lightRadius: 5 + lightEnergy: 1.5 + color: '#E39C40FF' + - type: Physics + canCollide: False +- proto: LightTubeCrystalPink + entities: + - uid: 46099 + components: + - type: Transform + parent: 46098 + - type: LightBulb + lightRadius: 10 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 46101 + components: + - type: Transform + parent: 46100 + - type: LightBulb + lightRadius: 10 + lightEnergy: 1 + - type: Physics + canCollide: False + - uid: 46103 + components: + - type: Transform + parent: 46102 + - type: LightBulb + lightRadius: 10 + lightEnergy: 1 + - type: Physics + canCollide: False +- proto: LiquidNitrogenCanister + entities: + - uid: 23775 + components: + - type: Transform + pos: -9.5,-55.5 + parent: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 23776 + components: + - type: Transform + pos: -10.5,-55.5 + parent: 2 +- proto: LockableButtonArmory + entities: + - uid: 23777 + components: + - type: MetaData + desc: Оружейная красного кода. + name: красный код + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8307: + - Pressed: Toggle + 8308: + - Pressed: Toggle + - uid: 23778 + components: + - type: MetaData + desc: Оружейная синего кода, рекомендуется выдавать оружие лично в руки. + name: синий код + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8306: + - Pressed: Toggle +- proto: LockableButtonAtmospherics + entities: + - uid: 23779 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-57.5 + parent: 2 + - uid: 23780 + components: + - type: MetaData + desc: Кнопка от гермозатвора. + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8296: + - Pressed: Toggle + - uid: 23781 + components: + - type: MetaData + desc: Кнопка от гермозатвора. + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8296: + - Pressed: Toggle +- proto: LockableButtonCaptain + entities: + - uid: 23782 + components: + - type: MetaData + desc: Эта кнопка переключает болты. + - type: Transform + pos: -32.66212,6.787724 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 485: + - Pressed: DoorBolt +- proto: LockableButtonCargo + entities: + - uid: 23783 + components: + - type: MetaData + desc: Эта кнопка открывает вам двери в жестокий и холодный мир! удачи! + - type: Transform + rot: 3.141592653589793 rad + pos: 66.5,-54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8300: + - Pressed: Toggle + 8301: + - Pressed: Toggle + 8302: + - Pressed: Toggle +- proto: LockableButtonChiefMedicalOfficer + entities: + - uid: 23784 + components: + - type: MetaData + desc: Эта кнопка переключает ставни. + - type: Transform + pos: -7.915655,58.79275 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26600: + - Pressed: Toggle + 26599: + - Pressed: Toggle + 26639: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 23785 + components: + - type: MetaData + desc: Эта кнопка активирует механизмы экстренной блокировки мостика от внешних угроз. + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8335: + - Pressed: Toggle + 8334: + - Pressed: Toggle + 8336: + - Pressed: Toggle + 8331: + - Pressed: Toggle + 8333: + - Pressed: Toggle + 8332: + - Pressed: Toggle + 23710: + - Pressed: Toggle + 23712: + - Pressed: Toggle + 24803: + - Pressed: Toggle + 24801: + - Pressed: Toggle + - uid: 23786 + components: + - type: MetaData + desc: Эта кнопка открывает и закрывает гермозатворы EVA. + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8315: + - Pressed: Toggle + 8314: + - Pressed: Toggle +- proto: LockableButtonDetective + entities: + - uid: 23787 + components: + - type: MetaData + desc: Эта кнопка закрывает и открывает ставни. + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.44955,4.872726 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26618: + - Pressed: Toggle + 26619: + - Pressed: Toggle + 26620: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 23788 + components: + - type: MetaData + desc: Кнопка от склада оборудования. + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-47.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8305: + - Pressed: Toggle + 8303: + - Pressed: Toggle + 8304: + - Pressed: Toggle +- proto: LockableButtonJanitor + entities: + - uid: 23789 + components: + - type: MetaData + desc: Эта кнопка переключает ставни. + - type: Transform + pos: 5.2,29.4 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26586: + - Pressed: Toggle + 26587: + - Pressed: Toggle + - uid: 23790 + components: + - type: MetaData + desc: Эта кнопка переключает ставни. + - type: Transform + rot: 3.141592653589793 rad + pos: 5.11,29.6 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26586: + - Pressed: Toggle + 26587: + - Pressed: Toggle +- proto: LockableButtonKitchen + entities: + - uid: 23791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,31.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26649: + - Pressed: Toggle + 26648: + - Pressed: Toggle + 26644: + - Pressed: Toggle + 26645: + - Pressed: Toggle + 26647: + - Pressed: Toggle + 26646: + - Pressed: Toggle +- proto: LockableButtonLawyer + entities: + - uid: 23792 + components: + - type: MetaData + desc: Эта кнопка закрывает и открывает ставни на входе в офис. + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26597: + - Pressed: Toggle + 26598: + - Pressed: Toggle +- proto: LockableButtonMedical + entities: + - uid: 23793 + components: + - type: Transform + pos: -6.680846,71.44547 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26588: + - Pressed: Toggle + 8310: + - Pressed: Toggle + 26589: + - Pressed: Toggle + - uid: 23794 + components: + - type: Transform + pos: -6.3655415,71.44742 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26590: + - Pressed: Toggle + 8309: + - Pressed: Toggle + 26591: + - Pressed: Toggle +- proto: LockableButtonResearchDirector + entities: + - uid: 23795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-54.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26631: + - Pressed: Toggle + 26630: + - Pressed: Toggle + 26629: + - Pressed: Toggle + - uid: 23796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-55.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8294: + - Pressed: Toggle + 8293: + - Pressed: Toggle + 8295: + - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 23797 + components: + - type: MetaData + name: Гермозатворы 2 + - type: Transform + rot: 3.141592653589793 rad + pos: -30.738113,-0.52668095 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8321: + - Pressed: Toggle + 8322: + - Pressed: Toggle + - uid: 23798 + components: + - type: MetaData + name: Гермозатворы 1 + - type: Transform + rot: 3.141592653589793 rad + pos: -30.33947,-0.52245855 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8323: + - Pressed: Toggle + 8324: + - Pressed: Toggle + - uid: 23799 + components: + - type: MetaData + desc: Эта кнопка переключает свет в допросной. + name: кнопка с замком + - type: Transform + pos: -32.278553,6.818974 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 25098: + - Pressed: Toggle + 25100: + - Pressed: Toggle + - uid: 23800 + components: + - type: MetaData + name: Ставни + - type: Transform + pos: -30.484406,-0.30942488 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26612: + - Pressed: Toggle + 26616: + - Pressed: Toggle + 26617: + - Pressed: Toggle + 26613: + - Pressed: Toggle + 26614: + - Pressed: Toggle + 26615: + - Pressed: Toggle + - uid: 23801 + components: + - type: MetaData + desc: Для пресечения попыток побега. + name: Блокировка камеры 2 + - type: Transform + pos: -43.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8326: + - Pressed: Toggle + - uid: 23802 + components: + - type: MetaData + desc: Для пресечения попыток побега. + name: Блокировка камеры 1 + - type: Transform + pos: -39.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8327: + - Pressed: Toggle + - uid: 23803 + components: + - type: MetaData + desc: Для пресечения попыток побега. + name: Блокировка камеры 3 + - type: Transform + pos: -47.5,13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8325: + - Pressed: Toggle + - uid: 23804 + components: + - type: MetaData + name: Блокировка камеры 3 + - type: Transform + pos: -110.5268,22.859192 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8329: + - Pressed: Toggle + - uid: 23805 + components: + - type: MetaData + name: Блокировка камеры 2 + - type: Transform + pos: -110.12055,22.859192 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8328: + - Pressed: Toggle + - uid: 23806 + components: + - type: MetaData + name: Тревога перма + - type: Transform + pos: -109.0268,22.843567 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23708: + - Pressed: Toggle + 23706: + - Pressed: Toggle + 23702: + - Pressed: Toggle + 23704: + - Pressed: Toggle + 8338: + - Pressed: Toggle + 8337: + - Pressed: Toggle + 8330: + - Pressed: Close + 8328: + - Pressed: Close + 8329: + - Pressed: Close + 24980: + - Pressed: Toggle + 24979: + - Pressed: Toggle + 24978: + - Pressed: Toggle + 24977: + - Pressed: Toggle + 24975: + - Pressed: Toggle + 25091: + - Pressed: Toggle + 25157: + - Pressed: Toggle + 25093: + - Pressed: Toggle + 25088: + - Pressed: Toggle + 25089: + - Pressed: Toggle + 25156: + - Pressed: Toggle + 25090: + - Pressed: Toggle + 25092: + - Pressed: Toggle + 25158: + - Pressed: Toggle + 24957: + - Pressed: Toggle + 24958: + - Pressed: Toggle + 25161: + - Pressed: Toggle + 25160: + - Pressed: Toggle + 25159: + - Pressed: Toggle + 24974: + - Pressed: Toggle + 24976: + - Pressed: Toggle + 24960: + - Pressed: Toggle + 24959: + - Pressed: Toggle + 24961: + - Pressed: Toggle + 24969: + - Pressed: Toggle + 24968: + - Pressed: Toggle + 24965: + - Pressed: Toggle + 24964: + - Pressed: Toggle + 24966: + - Pressed: Toggle + 24967: + - Pressed: Toggle + 24962: + - Pressed: Toggle + 24963: + - Pressed: Toggle + 24972: + - Pressed: Toggle + 24973: + - Pressed: Toggle + 24981: + - Pressed: Toggle + 24970: + - Pressed: Toggle + 24971: + - Pressed: Toggle + - uid: 23807 + components: + - type: MetaData + name: Блокировка камеры 1 + - type: Transform + pos: -109.7143,22.859192 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8330: + - Pressed: Toggle + - uid: 23808 + components: + - type: MetaData + desc: Эта кнопка активирует подачу раскалённого пара в камеру казни. + name: подача пара + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26686: + - Pressed: Open + 26687: + - Pressed: Trigger + - uid: 23809 + components: + - type: MetaData + desc: Эта кнопка открывает гермозатворы для сброса раскалённого пара в атмосферу планеты. Уверяем вас, это не навредит экосистеме! + name: гермозатворы + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8313: + - Pressed: Toggle + 8312: + - Pressed: Toggle + 8311: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 23810 + components: + - type: Transform + pos: -3.5,-52.5 + parent: 2 + - uid: 23811 + components: + - type: Transform + pos: -1.5,-52.5 + parent: 2 + - uid: 23812 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 46731 + components: + - type: Transform + pos: 2.5,5.5 + parent: 46584 +- proto: LockerBooze + entities: + - uid: 8361 + components: + - type: MetaData + desc: Книги по запросу + name: картотечные книги + - type: Transform + pos: 7.5,18.5 + parent: 2 + - type: AccessReader + access: + - - Service + - 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: + - 8369 + - 8368 + - 8362 + - 8366 + - 8370 + - 8363 + - 8365 + - 8367 + - 8364 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15153 + components: + - type: MetaData + desc: Здесь дед хранит свои секреты. + name: шкафчик + - type: Transform + pos: -74.5,14.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: + - 15157 + - 15158 + - 15160 + - 15154 + - 15159 + - 15156 + - 15155 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + missingComponents: + - AccessReader + - uid: 15253 + components: + - type: Transform + pos: 90.5,-28.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15256 + - 15257 + - 15254 + - 15255 + - 15258 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 40679 + components: + - type: MetaData + desc: Здесь хранят различные вещи...в основном одежду. + name: шкаф + - type: Transform + pos: 37.5,35.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 40681 + - 40682 + - 40683 + - 40684 + - 40680 + - 40685 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41596 + components: + - type: MetaData + desc: Здесь хранят различные вещи...в основном одежду. + name: шкаф + - type: Transform + pos: 38.5,35.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41598 + - 41599 + - 41597 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41600 + components: + - type: MetaData + desc: Здесь хранят разные вещи, но в основном одежду. + name: шкаф + - type: Transform + pos: 64.5,42.5 + parent: 40599 + - 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: + - 41602 + - 41603 + - 41601 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 42250 + components: + - type: MetaData + desc: Здесь хранят разные вещи. + name: шкафчик + - type: Transform + pos: 73.5,25.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 42255 + - 42256 + - 42257 + - 42251 + - 42252 + - 42253 + - 42258 + - 42254 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 23813 + components: + - type: Transform + pos: 46.5,16.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 23814 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 23815 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 23816 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 +- proto: LockerBrigmedic + entities: + - uid: 8558 + components: + - type: Transform + pos: -52.5,17.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8559 + - 8570 + - 8562 + - 8568 + - 8569 + - 8565 + - 8560 + - 8563 + - 8564 + - 8561 + - 8567 + - 8566 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 23817 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 23818 + components: + - type: Transform + pos: -5.5,38.5 + parent: 2 + - uid: 23819 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 23820 + components: + - type: Transform + pos: 8.5,-51.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 23821 + components: + - type: Transform + pos: -15.5,59.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23822 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerClown + entities: + - uid: 15361 + components: + - type: Transform + pos: 49.5,10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15366 + - 15365 + - 15362 + - 15363 + - 15364 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetective + entities: + - uid: 15224 + components: + - type: MetaData + name: шкаф смотрителя солнечных панелей + - type: Transform + pos: -52.5,68.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15225 + - 15226 + - 15227 + - 15228 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 23823 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 23824 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 23825 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 23826 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 23827 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 42649 + components: + - type: Transform + pos: 68.5,60.5 + parent: 40599 + - uid: 42650 + components: + - type: Transform + pos: 68.5,60.5 + parent: 40599 +- proto: LockerEngineerFilled + entities: + - uid: 23828 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23829 + components: + - type: Transform + pos: 5.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23830 + components: + - type: Transform + pos: 4.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23831 + components: + - type: Transform + pos: 3.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23832 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23833 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23834 + components: + - type: Transform + pos: 7.5,-40.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: LockerEvidence + entities: + - uid: 23627 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23628 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23835 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 23836 + components: + - type: Transform + pos: -33.5,8.5 + parent: 2 + - uid: 23837 + components: + - type: Transform + pos: -50.5,13.5 + parent: 2 + - uid: 23838 + components: + - type: Transform + pos: -46.5,13.5 + parent: 2 + - uid: 23839 + components: + - type: Transform + pos: -42.5,13.5 + parent: 2 + - uid: 23840 + components: + - type: MetaData + desc: Для хранения вещей задержанных. + name: шкаф для вещей заключённых + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 23841 + components: + - type: MetaData + desc: Для хранения вещей задержанных. + name: шкаф для вещей заключённых + - type: Transform + pos: -22.5,12.5 + parent: 2 + - uid: 23842 + components: + - type: MetaData + desc: Для хранения вещей задержанных. + name: шкаф для вещей заключённых + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 23843 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 23844 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 23845 + components: + - type: Transform + pos: -110.5,-8.5 + parent: 2 + - uid: 23846 + components: + - type: Transform + pos: -110.5,-6.5 + parent: 2 + - uid: 23847 + components: + - type: Transform + pos: -110.5,-7.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 19812 + components: + - type: Transform + pos: 34.5,34.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19813 + - 19814 + - 19815 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 23848 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 46077 + components: + - type: MetaData + desc: Стандартное хранилище. + - type: Transform + pos: 7.5,5.5 + parent: 45355 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 46078 + - 46079 + - 46080 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerBase + entities: + - uid: 8163 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8169 + - 8172 + - 8165 + - 8170 + - 8167 + - 8173 + - 8171 + - 8166 + - 8168 + - 8164 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8467 + components: + - type: Transform + pos: 7.5,45.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8472 + - 8468 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 17598 + components: + - type: Transform + pos: -48.5,8.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17601 + - 17600 + - 17599 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19687 + components: + - type: Transform + pos: -112.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19699 + - 19698 + - 19697 + - 19696 + - 19695 + - 19691 + - 19706 + - 19690 + - 19689 + - 19694 + - 19703 + - 19702 + - 19701 + - 19692 + - 19700 + - 19693 + - 19705 + - 19688 + - 19704 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 19740 + components: + - type: Transform + pos: -49.5,8.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19742 + - 19741 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 46694 + components: + - type: Transform + pos: 2.5,4.5 + parent: 46584 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 46699 + - 46696 + - 46697 + - 46695 + - 46698 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 23849 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 23850 + components: + - type: Transform + pos: -41.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: LockerMedical + entities: + - uid: 15493 + components: + - type: Transform + pos: 23.5,58.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 234.9972 + 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: + - 15495 + - 15496 + - 15494 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 23851 + components: + - type: Transform + pos: -25.5,57.5 + parent: 2 + - uid: 23852 + components: + - type: Transform + pos: -27.5,57.5 + parent: 2 + - uid: 23853 + components: + - type: Transform + pos: -28.5,57.5 + parent: 2 + - uid: 23854 + components: + - type: Transform + pos: -26.5,57.5 + parent: 2 + - uid: 23855 + components: + - type: Transform + pos: 27.5,61.5 + parent: 2 + - uid: 23856 + components: + - type: Transform + pos: -106.5,1.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 23857 + components: + - type: Transform + pos: -22.5,57.5 + parent: 2 + - uid: 23858 + components: + - type: Transform + pos: -106.5,4.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 15368 + components: + - type: Transform + pos: 64.5,10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15373 + - 15372 + - 15369 + - 15375 + - 15371 + - 15374 + - 15370 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilled + entities: + - uid: 23859 + components: + - type: Transform + pos: 3.5,54.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 23860 + components: + - type: Transform + pos: 79.5,-41.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 23861 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 23862 + components: + - type: Transform + pos: 27.5,-55.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 23863 + components: + - type: Transform + pos: 84.5,-42.5 + parent: 2 + - uid: 23864 + components: + - type: Transform + pos: 81.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23865 + components: + - type: Transform + pos: 82.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 23866 + components: + - type: Transform + pos: 83.5,-42.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerScienceFilled + entities: + - uid: 23867 + components: + - type: Transform + pos: 19.5,-43.5 + parent: 2 + - uid: 23868 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 23869 + components: + - type: Transform + pos: 19.5,-45.5 + parent: 2 +- proto: LockerScientist + entities: + - uid: 40744 + components: + - type: Transform + pos: 49.5,56.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 40748 + - 40746 + - 40747 + - 40750 + - 40749 + - 40751 + - 40745 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 42266 + components: + - type: Transform + pos: 49.5,57.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 42267 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSecurity + entities: + - uid: 40675 + components: + - type: Transform + pos: 36.3,77.60055 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 40677 + - 40678 + - 40676 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - type: Pullable + prevFixedRotation: True + - uid: 41556 + components: + - type: Transform + pos: 38.5,63.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41559 + - 41557 + - 41558 + - 41561 + - 41560 + - 41562 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 42259 + components: + - type: Transform + pos: 36.5,76.5 + parent: 40599 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 42263 + - 42261 + - 42262 + - 42260 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 42651 + components: + - type: Transform + pos: 36.512177,78.81726 + parent: 40599 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 75 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: LockerSecurityFilled + entities: + - uid: 23870 + components: + - type: Transform + pos: 69.5,-27.5 + parent: 2 + - uid: 23871 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 23872 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 23873 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 23874 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 23875 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 23876 + components: + - type: Transform + pos: -30.5,-8.5 + parent: 2 + - uid: 23877 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 23878 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 23879 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 23880 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - uid: 23881 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 23882 + components: + - type: Transform + pos: -101.5,7.5 + parent: 2 + - uid: 23883 + components: + - type: Transform + pos: -101.5,6.5 + parent: 2 + - uid: 23884 + components: + - type: Transform + pos: 96.5,-11.5 + parent: 2 +- proto: LockerSteel + entities: + - uid: 41579 + components: + - type: Transform + pos: 78.5,33.5 + parent: 40599 + - 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: + - 41584 + - 41582 + - 41583 + - 41581 + - 41580 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 41587 + components: + - type: Transform + pos: 45.75306,56.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41588 + - 41589 + - 41591 + - 41590 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSyndicatePersonal + entities: + - uid: 15165 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15169 + - 15171 + - 15167 + - 15172 + - 15168 + - 15170 + - 15166 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWallMedical + entities: + - uid: 17881 + components: + - type: MetaData + name: шкаф психолога + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,59.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17888 + - 17887 + - 17885 + - 17882 + - 17884 + - 17883 + - 17886 +- proto: LockerWallMedicalFilled + entities: + - uid: 46104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 45355 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 46105 +- proto: LockerWardenFilled + entities: + - uid: 23885 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 23886 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 23887 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 23888 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 +- proto: Log + entities: + - uid: 23889 + components: + - type: Transform + pos: 7.6420717,22.528172 + parent: 2 + - uid: 23890 + components: + - type: Transform + pos: -0.33953714,-19.511963 + parent: 2 + - uid: 23891 + components: + - type: Transform + pos: 27.708565,17.450075 + parent: 2 + - uid: 23892 + components: + - type: Transform + pos: 27.41169,17.4657 + parent: 2 + - uid: 23893 + components: + - type: Transform + pos: 36.33667,-0.29319096 + parent: 2 + - uid: 23894 + components: + - type: Transform + pos: 36.696045,-0.41819096 + parent: 2 + - uid: 23895 + components: + - type: Transform + pos: 42.49267,13.634142 + parent: 2 + - uid: 23896 + components: + - type: Transform + pos: 42.695793,13.524767 + parent: 2 + - uid: 23897 + components: + - type: Transform + pos: 91.43111,-28.450615 + parent: 2 + - uid: 23898 + components: + - type: Transform + pos: 91.61456,-28.505651 + parent: 2 + - uid: 23899 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -0.4560752,-19.470463 + parent: 2 + - uid: 23900 + components: + - type: Transform + pos: -0.60516214,-19.402588 + parent: 2 + - uid: 23901 + components: + - type: Transform + pos: 7.4701967,22.637547 + parent: 2 + - uid: 23902 + components: + - type: Transform + pos: 11.471693,-2.312276 + parent: 2 + - uid: 23903 + components: + - type: Transform + pos: 11.690443,-2.374776 + parent: 2 + - uid: 23904 + components: + - type: Transform + pos: -89.593575,12.547899 + parent: 2 + - uid: 23905 + components: + - type: Transform + pos: -89.36563,12.5181675 + parent: 2 + - uid: 23906 + components: + - type: Transform + pos: -48.454937,63.593407 + parent: 2 + - uid: 42652 + components: + - type: Transform + pos: 78.419235,36.672653 + parent: 40599 + - uid: 42653 + components: + - type: Transform + pos: 78.419235,36.672653 + parent: 40599 + - uid: 42654 + components: + - type: Transform + pos: 78.731735,36.672653 + parent: 40599 + - uid: 42655 + components: + - type: Transform + pos: 78.450485,36.516403 + parent: 40599 + - uid: 42656 + components: + - type: Transform + pos: 78.71611,36.516403 + parent: 40599 + - uid: 42657 + components: + - type: Transform + pos: 78.59111,36.71953 + parent: 40599 + - uid: 42658 + components: + - type: Transform + pos: 78.481735,36.735153 + parent: 40599 +- proto: LootSpawnerContraband + entities: + - uid: 23907 + components: + - type: Transform + pos: -59.5,48.5 + parent: 2 + - uid: 23908 + components: + - type: Transform + pos: -51.5,-8.5 + parent: 2 +- proto: LootSpawnerContrabandLow + entities: + - uid: 23909 + components: + - type: Transform + pos: -65.5,45.5 + parent: 2 +- proto: LootSpawnerIndustrial + entities: + - uid: 23910 + components: + - type: Transform + pos: -85.5,15.5 + parent: 2 + - uid: 23911 + components: + - type: Transform + pos: -84.5,-8.5 + parent: 2 + - uid: 23912 + components: + - type: Transform + pos: -75.5,-24.5 + parent: 2 + - uid: 23913 + components: + - type: Transform + pos: -30.5,44.5 + parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 23914 + components: + - type: Transform + pos: -12.5,52.5 + parent: 2 + - uid: 23915 + components: + - type: Transform + pos: -15.5,46.5 + parent: 2 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 23916 + components: + - type: Transform + pos: -109.5,48.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 23917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.498184,11.717905 + parent: 2 + - uid: 23918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 82.43739,-39.555744 + parent: 2 + - uid: 23919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.172035,26.434347 + parent: 2 + - uid: 23920 + components: + - type: Transform + pos: -26.006096,-19.343294 + parent: 2 + - uid: 42659 + components: + - type: Transform + pos: 73.570404,73.85228 + parent: 40599 + - uid: 46106 + components: + - type: Transform + pos: 7.363847,2.3481998 + parent: 45355 +- proto: MachineAnomalyGenerator + entities: + - uid: 23921 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 23922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-37.5 + parent: 2 + - uid: 23923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 + - uid: 23924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 23925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-39.5 + parent: 2 + - uid: 23926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-38.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-37.5 + parent: 2 + - uid: 42660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,72.5 + parent: 40599 +- proto: MachineArtifactAnalyzer + entities: + - uid: 23928 + components: + - type: Transform + pos: 46.5,-58.5 + parent: 2 + - uid: 23929 + components: + - type: Transform + pos: 51.5,-58.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 23930 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 23931 + components: + - type: Transform + pos: -4.5,40.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 23932 + components: + - type: Transform + pos: 39.5,-54.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 23934 + components: + - type: Transform + pos: 45.5,-44.5 + parent: 2 + - uid: 23935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-51.5 + parent: 2 + - uid: 23936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-42.5 + parent: 2 + - uid: 23937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-43.5 + parent: 2 + - uid: 23938 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 23939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-45.5 + parent: 2 + - uid: 23940 + components: + - type: Transform + pos: -29.5,52.5 + parent: 2 + - uid: 23941 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 + - uid: 23942 + components: + - type: Transform + pos: -40.5,-40.5 + parent: 2 + - uid: 23943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,64.5 + parent: 2 + - uid: 23944 + components: + - type: MetaData + name: каркас ретранслятора + - type: Transform + pos: -62.5,54.5 + parent: 2 + - uid: 42661 + components: + - type: Transform + pos: 48.5,76.5 + parent: 40599 + - uid: 47298 + components: + - type: Transform + pos: 3.5,1.5 + parent: 47245 +- proto: MachineFrameDestroyed + entities: + - uid: 23945 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 23946 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 2 + - uid: 23947 + components: + - type: Transform + pos: 45.5,-43.5 + parent: 2 + - uid: 23948 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 23949 + components: + - type: Transform + pos: -37.5,-40.5 + parent: 2 + - uid: 23950 + components: + - type: Transform + pos: -55.5,67.5 + parent: 2 + - uid: 23951 + components: + - type: Transform + pos: -57.5,65.5 + parent: 2 + - uid: 23952 + components: + - type: Transform + pos: 18.5,54.5 + parent: 2 + - uid: 23953 + components: + - type: Transform + pos: 96.5,-42.5 + parent: 2 + - uid: 42662 + components: + - type: Transform + pos: 66.5,69.5 + parent: 40599 + - uid: 42663 + components: + - type: Transform + pos: 48.5,77.5 + parent: 40599 + - uid: 42664 + components: + - type: Transform + pos: 57.5,37.5 + parent: 40599 + - uid: 42665 + components: + - type: Transform + pos: 48.5,44.5 + parent: 40599 + - uid: 42666 + components: + - type: Transform + pos: 53.5,49.5 + parent: 40599 + - uid: 42667 + components: + - type: Transform + pos: 55.5,49.5 + parent: 40599 + - uid: 47299 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 47245 + - uid: 47300 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 47245 +- proto: MagazineBoxMagnum + entities: + - uid: 23954 + components: + - type: MetaData + name: коробка боеприпасов (пенопласт) + - type: Transform + pos: 28.866735,10.332512 + parent: 2 + - type: BallisticAmmoProvider + capacity: 50 + proto: BulletFoam + - uid: 23955 + components: + - type: MetaData + name: коробка боеприпасов (пенопласт) + - type: Transform + pos: 28.41361,10.285637 + parent: 2 + - type: BallisticAmmoProvider + capacity: 50 + proto: BulletFoam +- proto: MagazineLightRifleMaxim + entities: + - uid: 23956 + components: + - type: MetaData + desc: Весит под 25 килограмм. + name: диск для штанги(25 кг) + - type: Transform + rot: 3.141592653589793 rad + pos: -120.83909,10.986113 + parent: 2 + missingComponents: + - BallisticAmmoProvider + - Item + - ContainerContainer + - Appearance + - uid: 23957 + components: + - type: MetaData + desc: Весит под 25 килограмм. + name: диск для штанги(25 кг) + - type: Transform + pos: -120.83909,12.024784 + parent: 2 + missingComponents: + - BallisticAmmoProvider + - Item + - ContainerContainer + - Appearance +- proto: MagazinePistol + entities: + - uid: 23471 + components: + - type: Transform + parent: 23470 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23472 + components: + - type: Transform + parent: 23470 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23473 + components: + - type: Transform + parent: 23470 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23474 + components: + - type: Transform + parent: 23470 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolHighCapacity + entities: + - uid: 47248 + components: + - type: Transform + parent: 47246 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47249 + components: + - type: Transform + parent: 47246 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolHighCapacityEmpty + entities: + - uid: 47301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5099093,-5.3599443 + parent: 47245 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 23465 + components: + - type: Transform + parent: 23464 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23466 + components: + - type: Transform + parent: 23464 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifle + entities: + - uid: 42668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.374817,72.59886 + parent: 40599 +- proto: MagazineRifleIncendiary + entities: + - uid: 42669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.51544,72.63011 + parent: 40599 +- proto: MagazineShotgun + entities: + - uid: 41902 + components: + - type: Transform + parent: 41900 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaintenanceFluffSpawner + entities: + - uid: 23958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,-5.5 + parent: 2 + - uid: 23959 + components: + - type: Transform + pos: -141.5,3.5 + parent: 2 + - uid: 23960 + components: + - type: Transform + pos: 71.5,-32.5 + parent: 2 + - uid: 23961 + components: + - type: Transform + pos: 73.5,-30.5 + parent: 2 + - uid: 23962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.5,3.5 + parent: 2 + - uid: 23963 + components: + - type: Transform + pos: 52.5,-29.5 + parent: 2 + - uid: 23964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,21.5 + parent: 2 + - uid: 23965 + components: + - type: Transform + pos: -89.5,45.5 + parent: 2 + - uid: 23966 + components: + - type: Transform + pos: -18.5,67.5 + parent: 2 + - uid: 23967 + components: + - type: Transform + pos: -79.5,26.5 + parent: 2 + - uid: 23968 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 23969 + components: + - type: Transform + pos: -82.5,39.5 + parent: 2 + - uid: 23970 + components: + - type: Transform + pos: 57.5,42.5 + parent: 2 + - uid: 23971 + components: + - type: Transform + pos: 28.5,64.5 + parent: 2 + - uid: 23972 + components: + - type: Transform + pos: -23.5,65.5 + parent: 2 + - uid: 23973 + components: + - type: Transform + pos: 45.5,33.5 + parent: 2 + - uid: 23974 + components: + - type: Transform + pos: 78.5,18.5 + parent: 2 + - uid: 23975 + components: + - type: Transform + pos: -94.5,52.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 23976 + components: + - type: Transform + pos: 50.5,-19.5 + parent: 2 + - uid: 23977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 91.5,-0.5 + parent: 2 + - uid: 23978 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 23979 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 23980 + components: + - type: Transform + pos: -61.5,16.5 + parent: 2 + - uid: 23981 + components: + - type: Transform + pos: 71.5,19.5 + parent: 2 + - uid: 23982 + components: + - type: Transform + pos: -83.5,30.5 + parent: 2 + - uid: 23983 + components: + - type: Transform + pos: 34.5,64.5 + parent: 2 + - uid: 23984 + components: + - type: Transform + pos: -51.5,57.5 + parent: 2 + - uid: 23985 + components: + - type: Transform + pos: 59.5,36.5 + parent: 2 + - uid: 23986 + components: + - type: Transform + pos: -139.5,-1.5 + parent: 2 + - uid: 23987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 + - uid: 46732 + components: + - type: Transform + pos: 2.5,7.5 + parent: 46584 + - uid: 46733 + components: + - type: Transform + pos: -3.5,2.5 + parent: 46584 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 23988 + components: + - type: Transform + pos: 69.5,-31.5 + parent: 2 + - uid: 23989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-12.5 + parent: 2 + - uid: 23990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,10.5 + parent: 2 + - uid: 23991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 64.5,18.5 + parent: 2 + - uid: 23992 + components: + - type: Transform + pos: 49.5,-31.5 + parent: 2 + - uid: 23993 + components: + - type: Transform + pos: -90.5,46.5 + parent: 2 + - uid: 23994 + components: + - type: Transform + pos: -59.5,76.5 + parent: 2 + - uid: 23995 + components: + - type: Transform + pos: -83.5,28.5 + parent: 2 + - uid: 23996 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 + - uid: 23997 + components: + - type: Transform + pos: -81.5,39.5 + parent: 2 + - uid: 23998 + components: + - type: Transform + pos: -98.5,36.5 + parent: 2 + - uid: 23999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,46.5 + parent: 2 + - uid: 24000 + components: + - type: Transform + pos: -33.5,50.5 + parent: 2 + - uid: 24001 + components: + - type: Transform + pos: 47.5,37.5 + parent: 2 + - uid: 24002 + components: + - type: Transform + pos: -140.5,-7.5 + parent: 2 +- proto: Mannequin + entities: + - uid: 14965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,17.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14972 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14971 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14970 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14966 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14968 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14969 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: 14967 + - type: RussianAccent + - uid: 15129 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15135 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15134 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15133 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15131 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15132 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15130 + - uid: 15173 + components: + - type: Transform + pos: 62.5,3.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15176 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15174 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15175 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15188 + components: + - type: Transform + pos: -44.5,6.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15192 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15191 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15189 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15190 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15193 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15197 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15196 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15195 + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15194 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15202 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15201 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15199 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15200 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-23.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15207 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15206 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15204 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15205 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15212 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15211 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15209 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15210 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15217 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15216 + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15214 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15215 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15288 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15290 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15289 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 15340 + components: + - type: Transform + pos: 62.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15342 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 15341 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 40600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,55.5 + parent: 40599 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 40603 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 40601 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 41564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 71.5,77.5 + parent: 40599 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41568 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41567 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41565 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41566 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - uid: 41570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,55.5 + parent: 40599 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41573 + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41571 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 41572 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + - type: RussianAccent + - uid: 45498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 45355 + - type: ContainerContainer + containers: + jumpsuit: !type:ContainerSlot + showEnts: False + occludes: False + ent: 45501 + outerClothing: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + neck: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + mask: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + eyes: !type:ContainerSlot + showEnts: False + occludes: False + ent: 45499 + head: !type:ContainerSlot + showEnts: False + occludes: False + ent: 45500 + suitstorage: !type:ContainerSlot + showEnts: False + occludes: False + ent: null + back: !type:ContainerSlot + showEnts: False + occludes: False + ent: null +- proto: Matchbox + entities: + - uid: 8608 + components: + - type: Transform + parent: 8603 + - type: Physics + canCollide: False + - uid: 24003 + components: + - type: Transform + pos: -122.52306,9.441509 + parent: 2 +- proto: MatchstickSpent + entities: + - uid: 24004 + components: + - type: Transform + pos: -76.29449,18.327751 + parent: 2 +- proto: MaterialBones1 + entities: + - uid: 47070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.1130524,-7.593651 + parent: 46943 + - uid: 47071 + components: + - type: Transform + pos: -4.3318024,-1.6852188 + parent: 46943 + - uid: 47072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.6353607,-4.843651 + parent: 46943 +- proto: MaterialCloth + entities: + - uid: 24005 + components: + - type: Transform + pos: -7.4913225,-9.511583 + parent: 2 +- proto: MaterialCloth1 + entities: + - uid: 24006 + components: + - type: Transform + pos: 28.51428,53.560528 + parent: 2 + - uid: 42670 + components: + - type: Transform + pos: 57.36811,63.363342 + parent: 40599 + - uid: 47073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.50575256,-9.485275 + parent: 46943 + - uid: 47074 + components: + - type: Transform + pos: 0.4228058,-2.59198 + parent: 46943 +- proto: MaterialDiamond1 + entities: + - uid: 15294 + components: + - type: Transform + parent: 15291 + - type: Stack + count: 10 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24007 + components: + - type: Transform + pos: 4.830475,-8.16509 + parent: 2 + - uid: 47035 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47036 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47037 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MaterialDurathread + entities: + - uid: 24008 + components: + - type: Transform + pos: -7.5538225,-9.480333 + parent: 2 +- proto: MaterialGunpowder + entities: + - uid: 24009 + components: + - type: MetaData + desc: Странный белый порошок... + name: белый порошок + - type: Transform + pos: 1.1091489,67.50048 + parent: 2 + - uid: 24010 + components: + - type: Transform + pos: -28.275652,-17.306757 + parent: 2 + - type: Stack + count: 5 + - uid: 24011 + components: + - type: MetaData + desc: Странный белый порошок.. Думаю, вам не стоит его трогать.. + name: странный порошок + - type: Transform + pos: -30.36845,29.822168 + parent: 2 + - uid: 42671 + components: + - type: Transform + pos: 71.40013,78.76999 + parent: 40599 +- proto: MaterialWoodPlank1 + entities: + - uid: 24012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.279636,57.72832 + parent: 2 + - uid: 24013 + components: + - type: Transform + pos: -40.342136,57.47832 + parent: 2 + - uid: 24014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.593864,14.293735 + parent: 2 + - uid: 24015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.343864,14.137485 + parent: 2 + - uid: 42672 + components: + - type: Transform + rot: 0.5759586531581288 rad + pos: 33.487556,73.480225 + parent: 40599 + - uid: 42673 + components: + - type: Transform + rot: -2.0245819323134224 rad + pos: 31.659433,72.605225 + parent: 40599 + - uid: 42674 + components: + - type: Transform + rot: 0.7853981633974483 rad + pos: 34.6214,71.62208 + parent: 40599 + - type: Stack + count: 3 + - uid: 42675 + components: + - type: Transform + rot: 0.7853981633974483 rad + pos: 34.55,71.52833 + parent: 40599 + - type: Stack + count: 5 + - uid: 42676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.550407,34.46174 + parent: 40599 + - uid: 47075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.4225552,-3.5763812 + parent: 46943 + - uid: 47076 + components: + - type: Transform + rot: -1.0471975511965976 rad + pos: -1.3743198,-5.545131 + parent: 46943 + - uid: 47077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.3899448,-4.560756 + parent: 46943 + - uid: 47078 + components: + - type: Transform + pos: -1.4836948,-5.638881 + parent: 46943 + - uid: 47079 + components: + - type: Transform + rot: 1.0471975511965976 rad + pos: 2.6256802,-3.7482562 + parent: 46943 + - uid: 47080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.3756802,-6.467006 + parent: 46943 + - uid: 47081 + components: + - type: Transform + pos: 2.6256802,-7.482631 + parent: 46943 + - uid: 47082 + components: + - type: Transform + rot: 2.443460952792061 rad + pos: 2.2819302,-7.5451317 + parent: 46943 +- proto: MaterialWoodPlank10 + entities: + - uid: 24016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5175,66.647385 + parent: 2 + - uid: 42677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.30986,36.641403 + parent: 40599 + - uid: 42678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.356735,36.516403 + parent: 40599 + - uid: 42679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.21611,36.43828 + parent: 40599 +- proto: MatterBinStockPart + entities: + - uid: 24017 + components: + - type: Transform + pos: 45.60565,-49.547947 + parent: 2 + - uid: 24018 + components: + - type: Transform + pos: 3.7237544,15.650835 + parent: 2 +- proto: Mattress + entities: + - uid: 24019 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 24020 + components: + - type: Transform + pos: -38.5,15.5 + parent: 2 + - uid: 24021 + components: + - type: Transform + pos: -38.5,36.5 + parent: 2 + - uid: 24022 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 24023 + components: + - type: Transform + pos: -74.5,40.5 + parent: 2 + - uid: 24024 + components: + - type: Transform + pos: 73.5,-31.5 + parent: 2 + - uid: 24025 + components: + - type: Transform + pos: -88.5,28.5 + parent: 2 + - uid: 24026 + components: + - type: Transform + pos: 102.5,-43.5 + parent: 2 + - uid: 42680 + components: + - type: Transform + pos: 58.5,63.5 + parent: 40599 + - uid: 42681 + components: + - type: Transform + pos: 57.5,63.5 + parent: 40599 + - uid: 42682 + components: + - type: Transform + pos: 41.5,68.5 + parent: 40599 + - uid: 42683 + components: + - type: Transform + pos: 41.5,70.5 + parent: 40599 + - uid: 42684 + components: + - type: Transform + pos: 41.5,69.5 + parent: 40599 + - uid: 42685 + components: + - type: Transform + pos: 30.5,32.5 + parent: 40599 + - uid: 42686 + components: + - type: Transform + pos: 58.5,30.5 + parent: 40599 + - uid: 42687 + components: + - type: Transform + pos: 57.5,29.5 + parent: 40599 + - uid: 42688 + components: + - type: Transform + pos: 57.5,28.5 + parent: 40599 +- proto: MechEquipmentGrabber + entities: + - uid: 24027 + components: + - type: Transform + rot: 0.2617993877991494 rad + pos: 66.55104,-53.390125 + parent: 2 +- proto: MedalCase + entities: + - uid: 24028 + components: + - type: Transform + pos: 0.5001602,-9.394899 + parent: 2 +- proto: MedicalBed + entities: + - uid: 24029 + components: + - type: Transform + pos: -14.5,50.5 + parent: 2 + - uid: 24030 + components: + - type: Transform + pos: -16.5,49.5 + parent: 2 + - uid: 24031 + components: + - type: Transform + pos: 16.5,60.5 + parent: 2 + - uid: 24032 + components: + - type: Transform + pos: 16.5,62.5 + parent: 2 + - uid: 24033 + components: + - type: Transform + pos: 16.5,64.5 + parent: 2 + - uid: 24034 + components: + - type: Transform + pos: 9.5,65.5 + parent: 2 + - uid: 24035 + components: + - type: Transform + pos: 13.5,65.5 + parent: 2 + - uid: 24036 + components: + - type: Transform + pos: 10.5,53.5 + parent: 2 + - uid: 24037 + components: + - type: Transform + pos: 16.5,51.5 + parent: 2 + - uid: 24038 + components: + - type: Transform + pos: -52.5,13.5 + parent: 2 + - uid: 24039 + components: + - type: Transform + pos: -14.5,52.5 + parent: 2 + - uid: 24040 + components: + - type: Transform + pos: -16.5,53.5 + parent: 2 + - uid: 24041 + components: + - type: Transform + pos: -14.5,53.5 + parent: 2 + - uid: 24042 + components: + - type: Transform + pos: -16.5,50.5 + parent: 2 + - uid: 24043 + components: + - type: Transform + pos: -16.5,52.5 + parent: 2 + - uid: 24044 + components: + - type: Transform + pos: -14.5,49.5 + parent: 2 + - uid: 24045 + components: + - type: Transform + pos: -105.5,4.5 + parent: 2 + - uid: 24046 + components: + - type: Transform + pos: -18.5,50.5 + parent: 2 + - uid: 24047 + components: + - type: Transform + pos: -18.5,52.5 + parent: 2 + - uid: 42689 + components: + - type: Transform + pos: 55.5,63.5 + parent: 40599 +- proto: MedicalScanner + entities: + - uid: 24048 + components: + - type: Transform + pos: -28.5,52.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 24049 + components: + - type: Transform + pos: -23.5,54.5 + parent: 2 +- proto: Medkit + entities: + - uid: 42690 + components: + - type: Transform + pos: 57.14936,59.566467 + parent: 40599 +- proto: MedkitAdvancedFilled + entities: + - uid: 8566 + components: + - type: Transform + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24050 + components: + - type: Transform + pos: -56.51392,11.658268 + parent: 2 + - uid: 42691 + components: + - type: Transform + pos: 60.647575,63.534065 + parent: 40599 + - uid: 46105 + components: + - type: Transform + parent: 46104 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MedkitBruteFilled + entities: + - uid: 24051 + components: + - type: Transform + pos: -20.840689,56.5 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 24052 + components: + - type: Transform + pos: -20.81964,56 + parent: 2 + - uid: 42692 + components: + - type: Transform + pos: 57.58686,59.550842 + parent: 40599 +- proto: MedkitCombat + entities: + - uid: 40767 + components: + - type: Transform + pos: 60.31945,63.64344 + parent: 40599 + - type: Storage + storedItems: + 40768: + position: 0,0 + _rotation: East + 40769: + position: 2,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 40768 + - 40769 +- proto: MedkitCombatFilled + entities: + - uid: 8567 + components: + - type: Transform + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24053 + components: + - type: Transform + pos: -4.468525,58.515934 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 24054 + components: + - type: Transform + pos: 85.54483,-44.427597 + parent: 2 + - uid: 24055 + components: + - type: Transform + pos: -20.314451,57 + parent: 2 + - uid: 24056 + components: + - type: Transform + pos: 40.552696,-46.285526 + parent: 2 + - uid: 24057 + components: + - type: Transform + pos: -38.73617,36.60208 + parent: 2 + - uid: 24058 + components: + - type: Transform + pos: 2.477203,54.703247 + parent: 2 + - uid: 24059 + components: + - type: Transform + pos: -1.5783758,-1.3524618 + parent: 2 + - uid: 24060 + components: + - type: Transform + pos: -103.838356,4.6220202 + parent: 2 + - uid: 24061 + components: + - type: Transform + pos: 23.62912,19.622879 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 24062 + components: + - type: Transform + pos: -20.310242,56.5 + parent: 2 + - uid: 24063 + components: + - type: Transform + pos: -56.51392,12.392643 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 24064 + components: + - type: Transform + pos: -24.45591,-40.290955 + parent: 2 + - uid: 24065 + components: + - type: Transform + pos: -20.83227,57 + parent: 2 + - uid: 24066 + components: + - type: Transform + pos: -56.51392,12.033268 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 24067 + components: + - type: Transform + pos: 40.56652,-46.494675 + parent: 2 + - uid: 24068 + components: + - type: Transform + pos: -20.284983,56 + parent: 2 + - uid: 24069 + components: + - type: Transform + pos: -56.498295,12.736393 + parent: 2 + - uid: 24070 + components: + - type: Transform + pos: -103.84251,4.644225 + parent: 2 +- proto: MetalDoor + entities: + - uid: 24071 + components: + - type: Transform + pos: -105.5,45.5 + parent: 2 + - uid: 24072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.5,43.5 + parent: 2 + - uid: 42693 + components: + - type: Transform + pos: 76.5,35.5 + parent: 40599 + - uid: 46107 + components: + - type: Transform + pos: 2.5,0.5 + parent: 45355 + - uid: 46108 + components: + - type: Transform + pos: -1.5,0.5 + parent: 45355 + - uid: 46109 + components: + - type: Transform + pos: -4.5,6.5 + parent: 45355 + - uid: 46110 + components: + - type: Transform + pos: 5.5,8.5 + parent: 45355 +- proto: MicroManipulatorStockPart + entities: + - uid: 24073 + components: + - type: Transform + pos: 4.6456294,15.525835 + parent: 2 + - uid: 24074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.302492,-6.5899367 + parent: 2 + - uid: 24075 + components: + - type: Transform + pos: 45.652527,-49.204197 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 24076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.629022,18.639996 + parent: 2 +- proto: MindShieldImplanter + entities: + - uid: 8568 + components: + - type: MetaData + name: Щит разума + - type: Transform + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24077 + components: + - type: MetaData + name: имплантер + - type: Transform + pos: 0.54825854,-11.284901 + parent: 2 +- proto: MineralScannerEmpty + entities: + - uid: 24078 + components: + - type: Transform + pos: -60.622833,54.53038 + parent: 2 +- proto: MiningDrill + entities: + - uid: 42694 + components: + - type: Transform + rot: -0.3839724354387525 rad + pos: 32.092087,76.12782 + parent: 40599 +- proto: MiningWindow + entities: + - uid: 24079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 98.5,-38.5 + parent: 2 + - uid: 24080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 99.5,-37.5 + parent: 2 + - uid: 24081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,37.5 + parent: 2 + - uid: 24082 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,37.5 + parent: 2 +- proto: MiningWindowDiagonal + entities: + - uid: 24083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 100.5,-37.5 + parent: 2 +- proto: Mirror + entities: + - uid: 24084 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 24085 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 2 + - uid: 24086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,49.5 + parent: 2 + - uid: 24087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,37.5 + parent: 2 + - uid: 24088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,37.5 + parent: 2 + - uid: 24089 + components: + - type: Transform + pos: 19.5,41.5 + parent: 2 + - uid: 24090 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 24091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,8.5 + parent: 2 + - uid: 46111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 45355 +- proto: ModularGrenade + entities: + - uid: 24092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.365005,-49.504807 + parent: 2 + - uid: 24093 + components: + - type: Transform + pos: 39.74395,-49.344788 + parent: 2 + - uid: 24094 + components: + - type: Transform + pos: -6.6575174,42.02108 + parent: 2 + - uid: 24095 + components: + - type: Transform + pos: -6.6790304,41.99414 + parent: 2 +- proto: MopBucket + entities: + - uid: 24096 + components: + - type: Transform + pos: -7.729992,34.482563 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: [] + shark_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24097 +- proto: MopBucketFull + entities: + - uid: 24098 + components: + - type: Transform + pos: 41.5,25.5 + parent: 2 +- proto: MopItem + entities: + - uid: 24099 + components: + - type: Transform + pos: 4.46373,30.47206 + parent: 2 + - uid: 24100 + components: + - type: Transform + pos: 41.52851,25.540998 + parent: 2 + - uid: 24101 + components: + - type: Transform + pos: 3.4793549,30.487684 + parent: 2 + - uid: 24102 + components: + - type: Transform + pos: -18.564096,44.558735 + parent: 2 + - uid: 24103 + components: + - type: Transform + pos: -56.528408,9.393673 + parent: 2 + - uid: 24104 + components: + - type: Transform + pos: -7.307357,34.39637 + parent: 2 + - uid: 24105 + components: + - type: Transform + pos: 56.378716,-17.386463 + parent: 2 + - uid: 24106 + components: + - type: Transform + pos: 23.455988,43.65704 + parent: 2 + - uid: 24107 + components: + - type: Transform + pos: -99.536354,25.66963 + parent: 2 +- proto: Morgue + entities: + - uid: 19749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,38.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 19750 + - uid: 24108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-9.5 + parent: 2 + - uid: 24109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,38.5 + parent: 2 + - uid: 24110 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 24111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,40.5 + parent: 2 + - uid: 24112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,40.5 + parent: 2 + - uid: 24113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,40.5 + parent: 2 + - uid: 24114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,40.5 + parent: 2 + - uid: 24115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,40.5 + parent: 2 + - uid: 24116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,38.5 + parent: 2 + - uid: 24117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,38.5 + parent: 2 + - uid: 24118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,38.5 + parent: 2 +- proto: MothroachCube + entities: + - uid: 24119 + components: + - type: MetaData + desc: Просто добавь воды и получишь таракамоль ростом 18 см! + - type: Transform + pos: 6.807721,52.16312 + parent: 2 +- proto: Multitool + entities: + - uid: 24120 + components: + - type: Transform + pos: 18.485271,-35.27854 + parent: 2 + - uid: 24121 + components: + - type: Transform + pos: -39.50682,-18.312054 + parent: 2 + - uid: 24122 + components: + - type: Transform + pos: -30.291275,-42.434532 + parent: 2 + - uid: 42695 + components: + - type: Transform + rot: 3.351032163829113 rad + pos: 57.5,69.5 + parent: 40599 +- proto: MysteryFigureBoxTrash + entities: + - uid: 24123 + components: + - type: Transform + pos: -107.33331,44.7307 + parent: 2 + - uid: 24124 + components: + - type: Transform + pos: -107.52081,44.57445 + parent: 2 + - uid: 24125 + components: + - type: Transform + pos: -107.41144,44.63695 + parent: 2 +- proto: NetProbeCartridge + entities: + - uid: 24126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.949696,8.6014185 + parent: 2 + - uid: 24127 + components: + - type: Transform + pos: 2.6607955,-50.933662 + parent: 2 +- proto: Nettle + entities: + - uid: 24128 + components: + - type: Transform + pos: 97.44521,-11.350016 + parent: 2 +- proto: NewsReaderCartridge + entities: + - uid: 24129 + components: + - type: Transform + pos: 10.530551,19.51749 + parent: 2 +- proto: NewtonCradle + entities: + - uid: 24130 + components: + - type: MetaData + desc: Держит пробирки. Вы же сломаете его, так ведь? + name: штатив для пробирок + - type: Transform + pos: -4.5,42.5 + parent: 2 + missingComponents: + - Item + - ItemToggle +- proto: NitrogenCanister + entities: + - uid: 24131 + components: + - type: Transform + pos: 47.5,-50.5 + parent: 2 + - uid: 24132 + components: + - type: Transform + pos: -23.5,-62.5 + parent: 2 + - uid: 24133 + components: + - type: Transform + pos: -12.5,8.5 + parent: 2 + - uid: 24134 + components: + - type: Transform + pos: -9.5,-56.5 + parent: 2 + - uid: 24135 + components: + - type: Transform + pos: 77.5,-43.5 + parent: 2 +- proto: NitrousOxideCanister + entities: + - uid: 42696 + components: + - type: Transform + anchored: True + pos: 38.5,83.5 + parent: 40599 + - type: Physics + bodyType: Static + - type: Lock + locked: True +- proto: NotekeeperCartridge + entities: + - uid: 42697 + components: + - type: Transform + rot: 1.1693705988362009 rad + pos: 55.48,68.9 + parent: 40599 +- proto: NoticeBoard + entities: + - uid: 24136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,30.5 + parent: 2 + - uid: 24137 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 24138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,5.5 + parent: 2 + - uid: 24139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,19.5 + parent: 2 + - uid: 24140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-35.5 + parent: 2 + - uid: 24141 + components: + - type: MetaData + desc: Деревянная расписная дощечка с креплением для трофея. + name: постамент + - type: Transform + pos: -26.5,-12.5 + parent: 2 + missingComponents: + - StorageFillVisualizer + - Storage + - UserInterface + - ContainerContainer + - Construction + - uid: 46112 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 45355 +- proto: NTDefaultCircuitBoard + entities: + - uid: 24142 + components: + - type: Transform + pos: 0.421875,11.493078 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 24143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 24144 + components: + - type: MetaData + desc: Вам, вероятно, не стоит оставаться здесь, чтобы проверить, запущена ли она. + name: ядерная боеголовка + - type: Transform + pos: -7.5,15.5 + parent: 2 + - uid: 24145 + components: + - type: MetaData + name: горячая штучка + - type: Transform + pos: 48.5,17.5 + parent: 2 +- proto: NukeDiskFake + entities: + - uid: 24146 + components: + - type: Transform + pos: -5.509882,16.625505 + parent: 2 +- proto: OcarinaInstrument + entities: + - uid: 24147 + components: + - type: Transform + pos: 59.535385,-0.47612238 + parent: 2 +- proto: Ointment1 + entities: + - uid: 42698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.99404,26.417439 + parent: 40599 + - uid: 42699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.322166,26.683064 + parent: 40599 +- proto: OintmentAdvanced1 + entities: + - uid: 40769 + components: + - type: Transform + parent: 40767 + - type: Stack + count: 3 + - type: Physics + canCollide: False +- proto: OnionRedSeeds + entities: + - uid: 42700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.672676,74.60565 + parent: 40599 +- proto: OnionSeeds + entities: + - uid: 24148 + components: + - type: Transform + pos: -74.46202,13.58172 + parent: 2 +- proto: OperatingTable + entities: + - uid: 24149 + components: + - type: Transform + pos: -25.5,44.5 + parent: 2 + - uid: 24150 + components: + - type: Transform + pos: 45.5,-42.5 + parent: 2 + - uid: 24151 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - uid: 24152 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 24153 + components: + - type: Transform + pos: -16.5,44.5 + parent: 2 + - uid: 24154 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 24155 + components: + - type: Transform + pos: -52.5,9.5 + parent: 2 +- proto: OreBag + entities: + - uid: 42701 + components: + - type: Transform + rot: -0.6457718232379019 rad + pos: 34.132744,70.68666 + parent: 40599 +- proto: OreBagOfHolding + entities: + - uid: 42702 + components: + - type: Transform + rot: 5.218534463463046 rad + pos: 23.6,74.2 + parent: 40599 +- proto: OreBox + entities: + - uid: 41652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,24.5 + parent: 40599 + - type: Storage + storedItems: + 41653: + position: 0,3 + _rotation: South + 41655: + position: 5,1 + _rotation: North + 41656: + position: 2,1 + _rotation: East + 41657: + position: 2,3 + _rotation: North + 41654: + position: 7,2 + _rotation: East + 41658: + position: 5,4 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 41653 + - 41654 + - 41655 + - 41657 + - 41656 + - 41658 +- proto: OreProcessor + entities: + - uid: 24156 + components: + - type: Transform + pos: 71.5,-47.5 + parent: 2 + - uid: 42703 + components: + - type: Transform + pos: 28.5,72.5 + parent: 40599 +- proto: OrganArachnidTongue + entities: + - uid: 15893 + components: + - type: Transform + parent: 15892 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganDionaLungs + entities: + - uid: 24157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.68234,33.8259 + parent: 2 + - uid: 24158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.161503,31.211317 + parent: 2 + - uid: 24159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.51567,31.805067 + parent: 2 +- proto: OrganHumanAppendix + entities: + - uid: 15894 + components: + - type: Transform + parent: 15892 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganHumanEars + entities: + - uid: 15895 + components: + - type: Transform + parent: 15892 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OrganHumanEyes + entities: + - uid: 24160 + components: + - type: Transform + pos: 57.474003,31.450901 + parent: 2 + - uid: 24161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.349003,33.61757 + parent: 2 +- proto: OrganHumanHeart + entities: + - uid: 24162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.786503,31.544651 + parent: 2 + - uid: 24163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.79692,33.596733 + parent: 2 +- proto: OrganHumanKidneys + entities: + - uid: 24164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.849003,31.700901 + parent: 2 + - uid: 24165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.90109,33.77382 + parent: 2 +- proto: OrganHumanLiver + entities: + - uid: 24166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 55.60942,33.659233 + parent: 2 + - uid: 24167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.40109,33.190483 + parent: 2 + - uid: 24168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.49484,31.565483 + parent: 2 +- proto: OrganHumanStomach + entities: + - uid: 24169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.692753,31.700901 + parent: 2 + - uid: 24170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.286503,33.3884 + parent: 2 + - uid: 24171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.849003,32.29465 + parent: 2 +- proto: OrganRatStomach + entities: + - uid: 24172 + components: + - type: Transform + pos: -89.740524,10.648603 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 24173 + components: + - type: Transform + pos: 48.5,-50.5 + parent: 2 + - uid: 24174 + components: + - type: Transform + pos: -23.5,-58.5 + parent: 2 + - uid: 24175 + components: + - type: Transform + pos: -11.5,8.5 + parent: 2 + - uid: 24176 + components: + - type: Transform + pos: -10.5,-56.5 + parent: 2 + - uid: 24177 + components: + - type: Transform + pos: 76.5,-43.5 + parent: 2 + - uid: 24178 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 +- proto: OxygenTankFilled + entities: + - uid: 13 + components: + - type: Transform + parent: 12 + - type: GasTank + toggleActionEntity: 14 + - type: Physics + canCollide: False + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 14 + - type: InsideEntityStorage + - uid: 42704 + components: + - type: Transform + rot: -0.4363323129985824 rad + pos: 38.47,80.49786 + parent: 40599 +- proto: PackPaperRollingFilters + entities: + - uid: 24179 + components: + - type: Transform + pos: 79.538025,5.5973077 + parent: 2 + - uid: 24180 + components: + - type: Transform + pos: 79.70925,5.707383 + parent: 2 + - uid: 24181 + components: + - type: Transform + pos: -117.52675,15.455702 + parent: 2 + - uid: 42705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.265541,29.74499 + parent: 40599 +- proto: PaintingHelloWorld + entities: + - uid: 24182 + components: + - type: Transform + pos: -45.5,1.5 + parent: 2 +- proto: PaintingOldGuitarist + entities: + - uid: 24183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-13.5 + parent: 2 +- proto: PaintingSadClown + entities: + - uid: 24184 + components: + - type: Transform + pos: 62.5,13.5 + parent: 2 +- proto: PaintingSaturn + entities: + - uid: 24185 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 +- proto: PaintingSkeletonBoof + entities: + - uid: 24186 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 +- proto: PaintingSleepingGypsy + entities: + - uid: 24187 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 42706 + components: + - type: Transform + pos: 66.5,80.5 + parent: 40599 +- proto: PaintingTheGreatWave + entities: + - uid: 42707 + components: + - type: Transform + pos: 63.5,80.5 + parent: 40599 +- proto: PaintingTheSonOfMan + entities: + - uid: 42708 + components: + - type: Transform + pos: 76.5,74.5 + parent: 40599 +- proto: PairedChopsticks + entities: + - uid: 46113 + components: + - type: Transform + pos: 1.7076495,4.4630036 + parent: 45355 +- proto: Paper + entities: + - uid: 8481 + components: + - type: Transform + parent: 8480 + - type: Physics + canCollide: False + - uid: 8482 + components: + - type: Transform + parent: 8480 + - type: Physics + canCollide: False + - uid: 8483 + components: + - type: Transform + parent: 8480 + - type: Physics + canCollide: False + - uid: 8500 + components: + - type: Transform + parent: 8498 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + [color=#228B22][color=#d4af37]███[/color][color=#228B22]░███░░░░██░░░░ [color=#d4af37] ★★★[/color] + + [color=#228B22]░██░██[color=#d4af37]██[/color]░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#228B22]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#228B22]░░░░██░░[color=#d4af37]██[/color]░██░██░[/color] [bold] ЦК-КОМ[/bold] + + [color=#228B22]░░░░██░░░████░[/color][color=#d4af37]███ ★★★[/color] [color=black] + + ============================================= + УВЕДОМЛЕНИЕ СЕКТОРАЛЬНОГО ШТАБА ЦК + ============================================= + + Должность составителя: Оператор ЦК + + + Уважаемое Командование Станции! + + + Уведомляем вас, что все секретные документы были вывезены перед вашим прибытием. Оставьте это уведомление для следующего экипажа станции. + + + ============================================= + [italic]Место для печатей[/italic] + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8506 + components: + - type: Transform + parent: 8505 + - type: Physics + canCollide: False + - uid: 8507 + components: + - type: Transform + parent: 8505 + - type: Physics + canCollide: False + - uid: 8508 + components: + - type: Transform + parent: 8505 + - type: Physics + canCollide: False + - uid: 8509 + components: + - type: Transform + parent: 8505 + - type: Physics + canCollide: False + - uid: 8510 + components: + - type: Transform + parent: 8505 + - type: Physics + canCollide: False + - uid: 15160 + components: + - type: Transform + parent: 15153 + - type: Paper + content: >- + ЭТО НЕ МОЁ! МНЕ ПОДКИНУЛИ! + + А в прочем... + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15228 + components: + - type: Transform + parent: 15224 + - type: Paper + content: Ваша задача как смотрителя солнечных панелей на эту зиму - своевременная починка солнечных панелей и заправка суперпакмана. Так как в этот период солнечного света недостаточно для снабжения станции, вам необходимо заправлять генератор ураном и не допускать его взрыва. Персонал заступит на смену в начале следующего года. + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15935 + components: + - type: Transform + parent: 15934 + - type: Paper + content: '[head=3][italic]Я бессмертен, братишка[/head][/italic]' + - type: Physics + canCollide: False + - uid: 24188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.60367,66.956665 + parent: 2 + - type: Paper + content: СИ сказал строить здесь новую ветку соляр.. но Оливер предложил пойти и пустить по стопочке. Потом займусь этим всем. Панели никуда не убегут. + - uid: 24189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.651283,52.44088 + parent: 2 + - uid: 24190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.564816,52.317425 + parent: 2 + - uid: 24191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.53125,-5.796875 + parent: 2 + - uid: 24192 + components: + - type: MetaData + name: визитка + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.315166,17.555656 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + - uid: 24193 + components: + - type: MetaData + name: визитка + - type: Transform + rot: -0.6108652381980153 rad + pos: -15.260597,1.1768914 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + + + + + - uid: 24194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.448841,-32.345074 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + - uid: 24195 + components: + - type: MetaData + name: визитка + - type: Transform + rot: 3.141592653589793 rad + pos: 77.25129,-48.41051 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + + + + - uid: 24196 + components: + - type: MetaData + name: визитка + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.693783,-7.2230387 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + - uid: 24197 + components: + - type: MetaData + name: визитка + - type: Transform + pos: -4.265172,-47.38311 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + - uid: 24198 + components: + - type: Transform + pos: -14.514872,51.57496 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + - uid: 24199 + components: + - type: MetaData + name: визитка + - type: Transform + pos: 33.60009,-9.4413595 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + + + + + + + - uid: 24200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 72.993126,-48.40966 + parent: 2 + - type: Paper + content: >+ + --. --- .-- --- .-. .. - / - . ... .-.. .- --. .-. .- -.. -.-.-- / ..- / -. .- ... / ---. .--. / -. ..- ...- -. .- / .--. --- -- --- --.- -..- .-.-.- / . ... .-.. .. / -.- - --- -....- - --- / ..-.. - --- / ... .-.. -.-- ---- .. - / -....- / -.- --- --- .-. -.. .. -. .- - -.-- ---... + + + [head=3]205, 125[/head] + + - uid: 24201 + components: + - type: MetaData + name: визитка + - type: Transform + rot: 3.141592653589793 rad + pos: 45.305832,-1.3303955 + parent: 2 + - type: Paper + content: >+ + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + + - uid: 24202 + components: + - type: Transform + pos: -40.494846,3.8944569 + parent: 2 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: Boykisser + content: > + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⢀⣀⣀⠀⠀⠀⠀⠀⠀⣿⢷⡄⠀⠀⠀⠀⠀⣀⣠⣤⣤⡤⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⣌⠉⠉⣛⣷⡴⠶⠶⠶⣟⡆⠙⣧⣤⡴⠞⠛⠉⠉⠀⠀⢀⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⢻⡄⠻⣯⡀⠀⠀⠀⠀⠀⠀⠀⠈⠛⠆⠀⠀⠀⠀⠀⠀⢼⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠸⣇⠀⠈⠙⠷⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⢻⡆⠀⠀⢀⣤⣤⣀⠀⠀⠀⣴⡞⠾⣦⡀⠀⠀⣠⡾⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠈⢻⣆⠀⣾⠁⡏⢹⠀⠀⢐⡇⠸⠀⠸⠇⠀⠶⣾⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⢈⡽⣂⢃⠀⣇⢸⠀⡀⢀⡧⠼⠀⣰⣶⠆⢰⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠈⢻⡿⣟⡃⠈⠘⠻⣯⡉⣿⠀⠀⠀⣠⡟⣘⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⢸⣇⣨⣛⣶⠶⠲⠈⠛⠋⠀⠀⠚⣿⣀⣉⣡⣤⣤⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⢀⣴⡾⡛⠫⣿⠳⣥⡀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡟⢭⢈⠈⠙⢷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⢀⣾⠡⢕⠈⠈⡼⣟⣿⠀⠀⠀⠀⠀⠀⠀⢠⡀⢹⡡⡁⣀⢣⠁⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⣯⠀⠘⠢⠂⠀⣿⠻⢾⠀⠀⠀⠀⠀⠀⠈⢻⣌⠗⠈⠈⠀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠀⣠⣿⠀⠀ + + ⠀⠀⠀⠀⢹⣇⠀⠀⠀⠀⠀⠀⢹⡇⠀⠀⠀⠀⠀⠀⢸⡻⣦⡀⠀⠀⠀⣸⠇⠀⠀⠀⠀⠀⣠⡾⠋⣿⠀⠀ + + ⠀⠀⠀⠀⠀⢻⣆⠀⠀⠀⠀⣰⣿⠃⠀⠀⠀⠀⠀⠀⠈⣦⣈⠻⠶⠆⣠⣿⣆⣤⢾⡄⣠⡾⠋⠀⠀⢸⡆⠀ + + ⠀⠀⠀⠀⠀⠀⠙⢷⣀⣀⡾⣻⠇⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⢿⡟⠛⠛⠓⠉⠀⠸⠟⠁⠀⠀⠀⠀⠈⣇⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠘⠋⠉⢱⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡟⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠰⢶⣿⡁⠀⠀⠘⢳⡖⠀⠀⠀⠀⠀⠀⣼⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⡇⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠰⣿⡄⠀⠀⠀⠨⣏⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣧⠀⠀⠀⠀⣭⠀⠀⠀⠀⢀⣀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣤⠟⠁⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡶⠶⢦⠌⣿⠛⠛⠛⠛⠋⡉⣿⠀⠀⢀⠀⠀⢠⡴⠶⠶⠛⠉⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣷⣀⢀⡀⣽⡇⠤⠤⠒⠊⠀⣻⠄⠀⠘⠻⠶⠾⠛⠂⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡆⠀⠀⢐⡧⠀⠀⠀⠀⡠⣾⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣷⠒⠒⠁⣿⠂⠒⠈⠉⠀⣾⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡆⠄⠒⠹⡗⠂⠒⠒⠉⣿⠀⠀⠀⠀ + - uid: 24203 + components: + - type: Transform + pos: -26.664356,16.543526 + parent: 2 + - uid: 24204 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.263916,-16.150003 + parent: 2 + - uid: 24205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 93.170166,-16.071878 + parent: 2 + - uid: 24206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 93.96704,-16.071878 + parent: 2 + - uid: 24207 + components: + - type: Transform + pos: -7.5048704,16.585558 + parent: 2 + - type: Paper + content: ЭТО ПИВНАЯ!!! + - uid: 24208 + components: + - type: Transform + pos: 57.89096,13.526648 + parent: 2 + - uid: 24209 + components: + - type: Transform + pos: 58.10971,13.651648 + parent: 2 + - uid: 24210 + components: + - type: Transform + pos: 58.344086,13.573523 + parent: 2 + - uid: 24211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.63881,12.67103 + parent: 2 + - uid: 24212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.51381,12.29603 + parent: 2 + - uid: 24213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.63881,12.20228 + parent: 2 + - uid: 24214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.612164,2.5172603 + parent: 2 + - uid: 24215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.53404,2.7985103 + parent: 2 + - uid: 24216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.395803,-11.506384 + parent: 2 + - uid: 24217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.395803,-11.861071 + parent: 2 + - uid: 24218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.640415,-11.775457 + parent: 2 + - uid: 24219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5308678,-0.6709788 + parent: 2 + - uid: 24220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5621178,0.6727712 + parent: 2 + - uid: 24221 + components: + - type: Transform + pos: -5.7950993,-5.453012 + parent: 2 + - uid: 24222 + components: + - type: Transform + pos: -5.4982243,-5.468637 + parent: 2 + - uid: 24223 + components: + - type: Transform + pos: 38.429348,-2.4601312 + parent: 2 + - uid: 24224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.366848,-2.3663812 + parent: 2 + - uid: 24225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.74198,19.44368 + parent: 2 + - uid: 24226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.64823,19.553055 + parent: 2 + - uid: 24227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.707147,19.09581 + parent: 2 + - uid: 24228 + components: + - type: Transform + pos: -34.655163,0.5566087 + parent: 2 + - uid: 24229 + components: + - type: Transform + pos: -34.530163,0.5566087 + parent: 2 + - uid: 24230 + components: + - type: Transform + pos: -64.16043,27.940754 + parent: 2 + - type: Paper + content: > + балка не выдержала, и меня завалило... + + + сколько мне тут ещё сидеть? + + + как же хочется домой... + + + у меня слишком мало еды.. + + + я пробовал раскопаться, но всё безуспешно, кругом один лишь только снег... + + + вот и всё, костер погас... осталось гадать, умру я от холода или голода... + + + дружище, если ты это читаешь то никогд_______ + |____ + - uid: 24231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.572258,51.57353 + parent: 2 + - type: Paper + content: > + Иногда мне становится интересно, какого черта мы тут делаем? Какой-то там командир послал нас сюда найти какое-то закопанное сокровище... + + Ходила легенда, что один человек по имени Дейви Джонс, смог украсть передовые технологии киберсана и НТ, а затем совместил их, и получил нечто новое. И это что то, понимая что за ним идет охота, он закопал где то тут. + + А не вранье ли это? Черт его знает... + + + По крайней мере, тут красиво, да и можно собраться с мыслями... + - uid: 24232 + components: + - type: Transform + pos: -127.24823,-15.698017 + parent: 2 + - type: Paper + content: > + Если ты нашёл моё сокровище, то знай, я тебя найду, НАЙДУ И СОТРУ В ПОРОШОК!!! + + Фолкус + - uid: 24233 + components: + - type: Transform + pos: 3.568894,61.371994 + parent: 2 + - type: Paper + stampState: paper_stamp-psychologist + stampedBy: + - stampedColor: '#0082AEFF' + stampedName: stamp-component-stamped-name-psychologist + content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n - галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" + - uid: 24234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.337194,42.63901 + parent: 2 + - uid: 24235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.22782,44.467136 + parent: 2 + - uid: 24236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.309674,53.88594 + parent: 2 + - uid: 24237 + components: + - type: Transform + pos: -43.03664,10.459002 + parent: 2 + - uid: 24238 + components: + - type: Transform + pos: -43.083515,10.584002 + parent: 2 + - uid: 24239 + components: + - type: Transform + pos: -43.083515,10.724627 + parent: 2 + - uid: 24240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.3924136,-31.72242 + parent: 2 + - uid: 24241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.3924136,-31.97242 + parent: 2 + - uid: 24242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.419049,53.714066 + parent: 2 + - uid: 24243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.266441,-46.510803 + parent: 2 + - type: Paper + content: >- + [bold]Список дел:[/bold] + + Починить пробоину на мостике + + Сходить выпить + + Заполнить отчёт о ремонте + + Переименовать наконец подстанцию яйцеголовых в конфигурации! + - uid: 24244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.6217034,53.796997 + parent: 2 + - uid: 24245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5279534,53.578247 + parent: 2 + - uid: 24246 + components: + - type: Transform + pos: 1.9029534,54.796997 + parent: 2 + - uid: 24247 + components: + - type: Transform + pos: 3.381394,61.496994 + parent: 2 + - uid: 24248 + components: + - type: Transform + pos: 32.85169,-9.492445 + parent: 2 + - uid: 24249 + components: + - type: Transform + pos: -24.442257,26.3878 + parent: 2 + - uid: 24250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.49069,25.648216 + parent: 2 + - uid: 24251 + components: + - type: Transform + pos: 32.78919,-9.367445 + parent: 2 + - uid: 24252 + components: + - type: Transform + pos: 6.0683947,21.840733 + parent: 2 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold][/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + ШТРАФ + ============================================= + + За нарушение техники пожарной безопасности при эксплуатации помещения вам будет выписан штраф в размере 1000 спесосов. + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 24253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.7587547,22.283754 + parent: 2 + - type: Paper + content: "[color=#228B22][color=#d4af37]███[/color][color=#228B22]░███░░░░██░░░░ [color=#d4af37] ★★★[/color]\r\n[color=#228B22]░██░██[color=#d4af37]██[/color]░░░██░░░░[/color] [head=3]Бланк документа[/head]\r\n[color=#228B22]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head]\r\n[color=#228B22]░░░░██░░[color=#d4af37]██[/color]░██░██░[/color] [bold] ЦК-КОМ[/bold]\r\n[color=#228B22]░░░░██░░░████░[/color][color=#d4af37]███ ★★★[/color] [color=black]\r\n=============================================\r\n ПРИКАЗ СЕКТОРАЛЬНОГО ШТАБА ЦК\r\n=============================================\r\n\nДолжность составителя: Оператор ЦК\r\n\r\nУважаемый Старший Инженер станции!\r\n\r\nЗа игнорирование требований техники пожарной безопасности при проектировании станции из вашей зарплаты будет вычтен штраф в размере 5000 спесосов.\n\r\n\r\n=============================================\r\n [italic]Место для печатей[/italic] [/color]\n " + - uid: 24254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.799886,-1.3402996 + parent: 2 + - uid: 24255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.643636,-1.4340496 + parent: 2 + - uid: 24256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.9573107,-1.3753695 + parent: 2 + - uid: 24257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -103.64046,-5.2875123 + parent: 2 + - uid: 24258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.35371,24.308737 + parent: 2 + - uid: 24259 + components: + - type: Transform + pos: 75.57045,-38.166645 + parent: 2 + - uid: 24260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.38612,20.379799 + parent: 2 + - uid: 24261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.52675,20.176674 + parent: 2 + - uid: 24262 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -117.3705,16.049452 + parent: 2 + - uid: 24263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 74.47792,-39.674263 + parent: 2 + - uid: 24264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 96.52084,5.4754596 + parent: 2 + - type: Paper + content: >+ + [bullet]Первое правило Бойцовского клуба: не упоминать о Бойцовском клубе. + + + [bullet]Второе правило Бойцовского клуба: не упоминать [color=red]нигде[/color] о Бойцовском клубе. + + + [bullet]Третье правило Бойцовского клуба: боец крикнул «стоп», выдохся, отключился — бой окончен. + + + [bullet]Четвертое: в бою участвуют лишь двое. + + + [bullet]Пятое: один бой за вечер, друзья. + + + [bullet]Шестое: снимать обувь и рубашки. + + + [bullet]Седьмое: бой продолжается столько, сколько нужно. + + + [bullet]Восьмое и последнее: тот, кто впервые пришёл в клуб — примет бой. + + + - uid: 24265 + components: + - type: Transform + pos: -30.844112,-20.361977 + parent: 2 + - uid: 24266 + components: + - type: Transform + pos: -30.578487,-20.283852 + parent: 2 + - uid: 24267 + components: + - type: Transform + pos: -30.515987,-20.393227 + parent: 2 + - uid: 24268 + components: + - type: Transform + pos: -26.89991,-19.385817 + parent: 2 + - uid: 24269 + components: + - type: Transform + pos: -26.634285,-19.370192 + parent: 2 + - uid: 24270 + components: + - type: Transform + pos: -26.415535,-19.417067 + parent: 2 + - uid: 24271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.508968,-17.385021 + parent: 2 + - uid: 24272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.270672,-16.338625 + parent: 2 + - uid: 24273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.383968,-17.416271 + parent: 2 + - uid: 24274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.145672,-16.41675 + parent: 2 + - uid: 24275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.56863,-17.501503 + parent: 2 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold][color=#57a343]Центральное Командование[/color][/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + [bold][color=orange]Стандартный набор десятичных кодов[/color][/bold] + ============================================= + + [head=3]Реакции на сообщения:[/head] + + [bullet][bold]10-1 + + [color=blue]Отлично![/color][/bullet][/bold] + + [bullet][bold]10-3 [color=red]Повторите + + [/color][/bullet][/bold] + + [bullet][bold]10-4 [color=#32a852]Принял[/color][/bullet][/bold] + + [head=3]Доклад:[/head] + + [bullet][bold]10-10 [color=#32a852]Все чисто[/color][/bullet][/bold] + + [bullet][bold]10-11 [color=gold]Наблюдаю преступника, справлюсь своими силами. + + [/color][/bullet][/bold] + + [bullet][bold]10-12 [color=orange]Наблюдаю преступника, нужно подкрепление. + + [/color][/bullet][/bold] + + [bullet][bold]10-13 [color=red]Cрочно подкрепление![/color] + + [/bullet] + - uid: 24276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.820606,16.731026 + parent: 2 + - uid: 24277 + components: + - type: Transform + pos: -26.445606,16.606026 + parent: 2 + - uid: 24278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.50613,-17.501503 + parent: 2 + - type: Paper + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold][color=#57a343]Центральное Командование[/color][/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + [bold][color=orange]Стандартный набор десятичных кодов[/color][/bold] + ============================================= + + [head=3]Реакции на сообщения:[/head] + + [bullet][bold]10-1 + + [color=blue]Отлично![/color][/bullet][/bold] + + [bullet][bold]10-3 [color=red]Повторите + + [/color][/bullet][/bold] + + [bullet][bold]10-4 [color=#32a852]Принял[/color][/bullet][/bold] + + [head=3]Доклад:[/head] + + [bullet][bold]10-10 [color=#32a852]Все чисто[/color][/bullet][/bold] + + [bullet][bold]10-11 [color=gold]Наблюдаю преступника, справлюсь своими силами. + + [/color][/bullet][/bold] + + [bullet][bold]10-12 [color=orange]Наблюдаю преступника, нужно подкрепление. + + [/color][/bullet][/bold] + + [bullet][bold]10-13 [color=red]Cрочно подкрепление![/color] + + [/bullet] + - uid: 24279 + components: + - type: MetaData + name: Лазерные технологии + - type: Transform + pos: 32.92269,-53.338795 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: "-----------------------------------------------------------------------------------\r\n ДЛЯ СЛУЖЕБНОГО ПОЛЬЗОВАНИЯ\r\n Отдел исследований и разработок\r\n\r\nКОПИРОВАНИЕ БЕЗ ПИСЬМЕННОГО РАЗРЕШЕНИЯ НАУЧНОГО РУКОВОДИТЕЛЯ КАРАЕТСЯ 142 СТАТЬЁЙ КОРПОРАТИВНОГО ЗАКОНА.\r\n-----------------------------------------------------------------------------------\r\n Лазерные технологии нт\r\n-----------------------------------------------------------------------------------\r\n Принцип работы:\r\n ___________________________________\r\n | | \r\n | ЭНЕРГОНАКОПЛЕНИЕ | Стандартная ёмкость\r\n | (БАТАРЕЯ) | 1000 Вт\r\n |_________________________________|\r\n | Подача энергии для 1 выстрела\r\n | От 62.5 до 100 Вт \r\n v _______________________________________________________________________\r\n| Активная среда содержит\r\n| АКТИВНАЯ СРЕДА атомы или молекулы,\r\n| (КРИСТАЛЛ/ГАЗ) которые находятся в \r\n| ___________________________ возбужденном состоянии, \r\n|| 1. НАСЫЩЕНИЕ | где энергия атомов\r\n|| АКТИВНОЙ СРЕДЫ | или молекул выше\r\n||_________________________| чем в основном состоянии\r\n| |\r\n| |\r\n| v при наличии фотонов\r\n| _______________________________________ определённой энергии\r\n| | | возбужденные атомы \r\n| | 2. СТИМУЛИРОВАННАЯ | или молекулы \r\n| | ЭМИССИЯ | переходят\r\n| | (Усиление & когерентность)| в основное состояние\r\n| |_____________________________________| излучая фотоны\r\n| |\r\n| |\r\n| v\r\n| ___________________________\r\n| | | Зеркала отражают фотоны\r\n| | 3. ОБРАТНАЯ СВЯЗЬ| обратно в активную среду\r\n| | (ЗЕРКАЛА) | создавая условия для\r\n| | ↑ ↑ | дополнительной эмиссии\r\n| | | | | Этот процесс создаёт эффект\r\n| | (Усиление) | лавины, при котором кол-во\r\n| |__________________________| фотонов растёт\r\n| | \r\n| |\r\n| v\r\n| ____________________________ ____________________\r\n| | | | |\r\n| | ЧАСТИЧНО | | ПОЛНОЕ |\r\n| | ПРОПУСКАЮЩЕЕ | ----> | ЗЕРКАЛО |\r\n| | ЗЕРКАЛО | | |\r\n| |___________________________| |__________________|\r\n|______________________________________________________________________\r\n | Полное зеркало препятствует выходу\r\n (КУРОК) излучения из камеры. При нажатии\r\n | на курок оно поднимается и поток\r\n v фотонов идёт дальше\r\n _________________________________\r\n | КАМЕРА ФОКУСА |\r\n | |\r\n | ЛИНЗЫ И ОПТИЧЕСКИЕ |\r\n | ЭЛЕМЕНТЫ |\r\n |________________________________|\r\n |\r\n |\r\n v\r\n ________________________________\r\n | КАМЕРА ИЗЛУЧЕНИЯ | Взаимодействие луча\r\n | | с материалами,\r\n | (усиление за счёт | которые могут\r\n | сдвига Рамана) | испытывать сдвиг\r\n |________________________________| фотонной энергии\r\n-----------------------------------------------------------------------------------\r\nЭТОТ ДОКУМЕНТ ПРЕДНАЗНАЧЕН ДЛЯ СЛУЖЕБНОГО ПОЛЬЗОВАНИЯ. КОПИРОВАНИЕ И РАСПРОСТРАНЕНИЕ РАЗРЕШЕНО ТОЛЬКО С ПИСЬМЕННОГО РАЗРЕШЕНИЯ НАУЧНОГО РУКОВОДИТЕЛЯ. " + - uid: 24280 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.315632,14.9620285 + parent: 2 + - uid: 24281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.550007,14.9151535 + parent: 2 + - uid: 24282 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.73948,23.392311 + parent: 2 + - type: Paper + content: >2+ + + + + + + + + [bold]Раз, два — найдём тебя, + Три, четыре — ты в могиле, + Пять, шесть — будем жечь, + Семь, восемь — за всё спросим.[/bold] + + + + + + + - uid: 24283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.624344,12.053747 + parent: 2 + - type: Paper + content: >+ + █████████а██ уб██████ по██████ + + + ██████п██ + + + 19.██.3024 + + + Фолкус.. с██ин сын. Его ч██овы сокровища на Юге оказались лажей! Мы на██и его стар███ матроса и допросили. Он сказал, чт█ старик зак██ал свои бог██ства где-то в не██льшой пещерке чуть западнее отсюда. Кажется.. ██ говорил что-██ про генера███ную и тон██ль за Ёлкой. Уж не зн██ врёт или нет, н█ ну██о прове████. Если э██ правда, то секр██ная технология будет наша! + + + ████████гу█████ + + + По█████ ██████████████ + + Б█ять! + + + + - uid: 24284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -122.12761,18.577074 + parent: 2 + - type: Paper + content: >2 + + Olen makaanut täällä väijytyksessä 12 päivää. Tuntuu, että kohde ei edes tule näkyviin. Ehkä sinun pitäisi muuttaa asemaasi, tärkeintä ei ole luovuttaa itseäsi. Nyt haluaisin teetä kaiken tämän sijaan... + - uid: 24285 + components: + - type: MetaData + name: визитка + - type: Transform + rot: -1.5707963267948966 rad + pos: 78.29662,-9.335528 + parent: 2 + - type: Paper + content: > + [color=#e309c7]██████████████████████████████████████████[/color] + + + [head=2]Горячие источники "Тёплая плазма"[/head] + + + Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! + + ==================================================== + + Что вас ждет? + + [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! + + [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! + + [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! + + ==================================================== + + Часы работы: + + Ежедневно с 7:00 до 23:00 + + ==================================================== + + [color=#c4b800]Специальное предложение: [/color] + + Бронируйте сейчас и получите 10% скидку на первый визит! + + ==================================================== + + [color=#E14F4F]Адрес: [/color] + + ##### ###### -20 -180 + + ==================================================== + + [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] + + [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] + + [color=#e309c7]██████████████████████████████████████████[/color] + - uid: 24286 + components: + - type: Transform + pos: -28.518278,43.569336 + parent: 2 + - type: Paper + content: '[head=3]эххх вот би мапери корвака.. так, стоп, а ГДЕ БЛЯТь?![/head]' + - uid: 24287 + components: + - type: Transform + rot: -0.24434609527920614 rad + pos: 53.63438,-12.464876 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >- + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] NTDZX Гласир ЦК [/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ + ============================================= + + + Священнику комплекса Гласир разрешено владеть короткоствольным дробовиком "Аннабель" до тех пор, пока оно используется по назначению. В случае нарушения разрешение аннулируется, оружие изымается Службой Безопасности. + + + ============================================= + [italic]Место для печатей[/italic] + - uid: 24288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.99139,-32.355927 + parent: 2 + - uid: 24289 + components: + - type: Transform + rot: -0.7504915783575618 rad + pos: -76.51497,17.872477 + parent: 2 + - type: Paper + content: > + Мне больно видеть белый свет! + + Мне лучше в полной темноте. + + Я очень много-много лет.... + + Мечтаю только о еде... + - uid: 24290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.36386,43.42494 + parent: 2 + - uid: 24291 + components: + - type: Transform + rot: 0.3839724354387525 rad + pos: 67.2338,-52.86132 + parent: 2 + - type: Paper + content: >- + Здарова, каргонцы! В общем, возникла проблема, из-за высокой сейсмической активности плазменные источники из недр планеты стали просачиваться наружу, образуя целые реки. Это сильно затруднило доставку грузов на прошлой смене. Мы тут покумекали и собрали вам РИПЛИ, ему эта плазма вообще ни по чём, да и таскать с ним заказы будет проще. Короче наслаждайтесь! + + + [italic]ящики, ящики, видишь ящики, ящики грузи ящики, ящики — получишь ящики, ящики[/italic] + - uid: 42709 + components: + - type: Transform + rot: -2.303834612632515 rad + pos: 54.402023,70.58609 + parent: 40599 + - uid: 42710 + components: + - type: Transform + rot: 2.3911010752322315 rad + pos: 56.120773,68.539215 + parent: 40599 + - uid: 42711 + components: + - type: Transform + rot: -1.8849555921538759 rad + pos: 40.49231,68.40181 + parent: 40599 + - type: Paper + content: >2 + + ...Тревога ревёт на весь бункер, спать невозможно. Слышу как за стенкой копошатся с оружием. Что же там происходит.. Кажется это шанс свалить отсюда. Нужно добазариться с Джошем и дать дёру всем вместе. После всех издёвок и пыток за ту провинность.. я больше не собираюсь оставаться в этом аду. Время пришло. + - uid: 42712 + components: + - type: Transform + rot: 0.4014257279586958 rad + pos: 48.705402,68.81379 + parent: 40599 + - type: Paper + content: >2 + + Блять! Это всё же случилось.. Ирвин был прав, Эдмунд сошёл с ума! Повсюду стали появляться какие-то твари.. мне страшно. Мы успели закрыться в саду, но.. Крис ранен, кровь вроде остановили но он выглядит бледно.. + + Еда и вода тут есть, надеюсь нас кто-нибудь спасёт.. За стенкой слышу крики и сирену. Что ж это за блядство.. + - uid: 42713 + components: + - type: Transform + rot: -3.141592653589793 rad + pos: 52.522644,34.542366 + parent: 40599 + - type: Paper + content: >+ + [color=red][Вся следующая информация является строго секретной и конфиденциальной.][/color] + + + Справа расположена + + + [bold]Усовершенствованная лазерная пушка.[/bold] + + Это высокотехнологичное устройство использует принцип усиления электрического поля для значительного увеличения мощности лазера. В отличие от традиционных лазерных систем, данная пушка обладает повышенной производительностью и стабильностью. Она способна генерировать мощные лазерные импульсы с высокой частотой. + + + Слева расположен + + + [bold]Переносной зарядник.[/bold] + + Он представляет собой рюкзак, оснащённый турбозарядником и катушкой Теслы. Этот зарядник разработан для автономного использования в полевых условиях. Он поглощает электрическую энергию из окружающей среды, позволяя заряжать различные электронные устройства в движении. Кроме того, благодаря применению новейших технологий магнитных волн, вес зарядника был значительно уменьшен, что обеспечивает удобство транспортировки и снижает нагрузку на пользователя. Устройство также оснащено системой управления энергией, которая автоматически регулирует процесс зарядки, предотвращая перегрузку и перегрев аккумуляторов подключённых устройств. + + + [color=red][ДАННЫЕ УСТРОЙСТВА ЯВЛЯЮТСЯ ПРОТОТИПАМИ. ИХ ИСПОЛЬЗОВАНИЕ ИЛИ ВЫНОС ИЗ КОМПЛЕКСА СТРОГО ЗАПРЕЩЕНЫ][/color] + + - uid: 42714 + components: + - type: Transform + rot: 2.0943951023931953 rad + pos: 27.339483,61.47233 + parent: 40599 + - type: Paper + content: > + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + Ещё чуть-чуть и плейтест... + + ... + - uid: 45405 + components: + - type: Transform + parent: 45404 + - type: Paper + content: >- + Джо-Доун + + Мужчина средних лет + + Важная шишка из командывания NanoTrasen. + + ================================================== + + Этот идиот оставил мне отличные чаевые за поршивого качества напити! Легко обдурить, стоит попробовать выбить с него побольше в следующий раз! + + + Пришел еще несколько раз за последнюю неделю, не знаю что он тут нашел, но мне только лучше, стабильный доход не бывает лишним. + + + Он стал появлятся в компании дам и платит приличные деньги за молчание, а так же разрешение быть в женских купальнях... Гребаный извращенец! Надеюсь эти дамы дерут с него не мало денег, иначе мне их жаль... + - type: Physics + canCollide: False + - uid: 45406 + components: + - type: Transform + parent: 45404 + - type: Paper + content: >- + Кирилл Блимпанченко + + Слаймолюд молодого возраста + + Род деятельности неизвестен. + + ================================================== + + Этот милый дурачек имел при себе неплохие деньги и кажется он не знал им цену. По всей видимости он на уровне развития подростка, как он сюда забрел непонятно... От воды ему сразу стало плохо, я содрала неплохую прибыль за его лечение, стоит почаще практиковать такой способ на глупых слаймолюдах! + - type: Physics + canCollide: False + - uid: 45407 + components: + - type: Transform + parent: 45404 + - type: Paper + content: >- + ц█████ а███а + + Ниан молодого возраста + + Какой-то мудила из Gorlex Marauders + + ================================================== + + Ворвался сюда с оружием, распугал клиентов, начал кричать чтоб я выдала ему информацию о посетителях из НТ... ЕСТЕСТВЕННО Я ЕМУ ВСЕ ВЫДАЛА, нехватало еще пулю в лоб от этого ненормального! Зато он оставил мне немного слитков золота, вроде даже настоящего... + - type: Physics + canCollide: False + - uid: 46114 + components: + - type: MetaData + desc: Часть текста расплылась и не читается, но большая часть уцелела + name: мокрая окрававленая бумага + - type: Transform + pos: 1.951098,12.908584 + parent: 45355 + - type: Paper + content: █, Джо-Доун, пи█у д█нн█й док██ент находясь в отчаянии. Если ██ это читаете и ви██те мое тело, ██ошу обратится к Nano███sen чер██ б██ж█йш██ станцию Ц███ра██ного ███ан██ва█ия, пе██дайте и█ м██ т█ло для воста███лен█я, я у██р█н в к█р███ации и её во███жно██ях, в замен вы бу██те возн█г██дены, ув██яю в██! И ██те██га███сь п██к█в о██ ███о█о██ли █у█ ██е! +- proto: PaperBin10 + entities: + - uid: 24292 + components: + - type: Transform + pos: 61.5,-35.5 + parent: 2 + - uid: 24293 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 24294 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 24295 + components: + - type: Transform + pos: -12.5,42.5 + parent: 2 + - uid: 24296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + - uid: 24297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,2.5 + parent: 2 + - uid: 24298 + components: + - type: Transform + pos: 82.5,-40.5 + parent: 2 + - uid: 24299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,56.5 + parent: 2 + - uid: 24300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 74.5,-41.5 + parent: 2 + - uid: 42715 + components: + - type: Transform + pos: 73.5,74.5 + parent: 40599 +- proto: PaperBin20 + entities: + - uid: 24301 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 24302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 24303 + components: + - type: Transform + pos: 32.5,-36.5 + parent: 2 + - uid: 24304 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 24305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-49.5 + parent: 2 + - uid: 24306 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 24307 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 24308 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 24309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 24310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - uid: 24311 + components: + - type: Transform + pos: -110.5,1.5 + parent: 2 + - uid: 46115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 45355 +- proto: PaperCaptainsThoughts + entities: + - uid: 24312 + components: + - type: Transform + pos: 10.159396,-6.4242215 + parent: 2 + - uid: 24313 + components: + - type: Transform + pos: 10.425021,-6.5023465 + parent: 2 + - uid: 24314 + components: + - type: Transform + pos: 18.749994,-13.127781 + parent: 2 + - uid: 24315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.468744,-12.705906 + parent: 2 + - type: Paper + content: > + Кто вообще додумался построить станцию на леднике? На улицу без куртки выйти невозможно! + - uid: 24316 + components: + - type: Transform + pos: 9.91293,-6.4954295 + parent: 2 + - type: Paper + content: >- + [bullet] Заказать эшафот и поставить напротив мостика + + [bullet] Организовать распил древесины и производство супа из опилок + + [bullet] Всех неугодных... блин, генератор же вырезали из бюджета.. +- proto: PaperCargoBountyManifest + entities: + - uid: 15929 + components: + - type: Transform + parent: 15928 + - type: Paper + content: Куриное яйцо x1000 упаковок по 12 штук + - type: Physics + canCollide: False +- proto: PaperCNCSheet + entities: + - uid: 24317 + components: + - type: Transform + pos: 2.3180294,44.429867 + parent: 2 + - uid: 24318 + components: + - type: Transform + pos: 2.7711544,43.66424 + parent: 2 + - uid: 24319 + components: + - type: Transform + pos: -0.46765733,20.636866 + parent: 2 + - uid: 24320 + components: + - type: Transform + pos: 0.5635927,20.699366 + parent: 2 + - uid: 24321 + components: + - type: Transform + pos: -0.46765733,19.418116 + parent: 2 + - uid: 24322 + components: + - type: Transform + pos: 0.5792177,19.49624 + parent: 2 + - uid: 24323 + components: + - type: Transform + pos: 1.3448427,19.43374 + parent: 2 + - uid: 24324 + components: + - type: Transform + pos: 1.5167177,20.668116 + parent: 2 +- proto: PaperOffice + entities: + - uid: 24325 + components: + - type: Transform + pos: -19.422108,3.639667 + parent: 2 + - uid: 24326 + components: + - type: Transform + pos: -40.237988,4.3744574 + parent: 2 + - uid: 24327 + components: + - type: Transform + pos: -40.550488,4.3275824 + parent: 2 + - uid: 24328 + components: + - type: Transform + pos: 1.5475541,-46.547344 + parent: 2 + - uid: 24329 + components: + - type: Transform + pos: 1.4121375,-46.318176 + parent: 2 + - uid: 24330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.4103713,-49.373306 + parent: 2 + - uid: 24331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.4728713,-49.48268 + parent: 2 + - uid: 24332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5509963,-49.35768 + parent: 2 + - uid: 24333 + components: + - type: Transform + pos: 1.7871375,-46.328594 + parent: 2 + - uid: 24334 + components: + - type: MetaData + name: инструкция по установке и использованию беговой дорожки R-34 + - type: Transform + pos: 2.6271963,51.751316 + parent: 2 + - type: Paper + content: >- + [head=2]Инструкция по установке и использованию беговой дорожки R-34[/head] + + + + [head=3]Введение[/head] + + Поздравляем с приобретением беговой дорожки R-34! + + Для правильной установки и безопасного использования данного оборудования, пожалуйста, следуйте нижеприведённым инструкциям. + + + + [head=3]Требуемые инструменты и материалы[/head] + + [bullet]Мультитул + + [bullet]Инженер + + + [head=3]Шаги по установке[/head] + + 1. Подготовка места установки. + + Убедитесь, что у вас есть достаточно места для установки беговой дорожки. + + Поверхность должна быть ровной и устойчивой. + + 2. Распаковка и проверка комплектующих. + + Осторожно распакуйте беговую дорожку и проверьте наличие всех комплектующих. + + Убедитесь, что все детали находятся в хорошем состоянии и отсутствуют повреждения. + + 3. Сборка беговой дорожки. + + Следуйте инструкции по сборке беговой дорожки, указанной в руководстве пользователя, которое прилагается к комплекту. + + 4. Подключение кнопок. + + Связь кнопки с дорожкой: + + Подключение должно производиться инженером. + + Используйте мультитул для точного соединения проводов кнопки с беговой дорожкой согласно схеме подключения. + + Связь кнопки с консолью: + + Инженер должен соединить провода кнопки с консолью, используя мультитул, и убедиться, что все соединения правильно установлены. + + 5. Проверка работы. + + Включите беговую дорожку и убедитесь, что все кнопки функционируют корректно. + + Проверьте, что консоль отображает правильные данные и реагирует на команды с кнопок. + - uid: 24335 + components: + - type: Transform + pos: -4.7084513,70.53351 + parent: 2 + - type: Paper + stampState: paper_stamp-cmo + stampedBy: + - stampedColor: '#33CCFFFF' + stampedName: stamp-component-stamped-name-cmo + content: >- + [head=3]Учёт пациентов психдиспансера[/head] + + [bold]Смена от 22.06.3024[/bold] + + + [italic]Пациент №8[/italic] + + Ф.И: Дж█████ Д█████████. + + Пол: М. + + Возраст: 31 год. + + Должность: Офицер СБ. + + Симптомы: Постоянные попытки флирта с представителями противоположного пола, с достаточно сомнительными комплиментами. В конце постоянно называет непонятный набор букв и символов, называя это "Источник". + + Вердикт: Выписать успокоительное, провести терапию на тему женщин. + + + [italic]Пациент №28[/italic] + + Ф.И.: И███ К██ер. + + Пол: М. + + Возраст: 55 лет. + + Должность: Атмосферный техник. + + Симптомы: Резкое неадекватное поведение, копролалия, пикацизм. Попытки нанесения вреда себе и окружающим. + + Вердикт: Запереть в одной из палат, желательно с использованием ограничителей движений. Провести дальнейшее наблюдение и при необходимости медикаментозное лечение. + + + [italic]Пациент №52[/italic] + + Ф.И.: А████ Ни██ + + Пол: Ж. + + Возраст: 27 лет. + + Должность: Офицер СБ. + + Симптомы: Мания к оружию и насилию. Паранойя, маниакальное поведение. Постоянное упоминание странных слов вроде "Робуст" и "Чина лаке". При внешнем осмотре, замечены засечки и порезы в области медиальных вен. + + Вердикт: Провести диагностику. По возможности, запретить находиться в патруле до вынесения точного диагноза. + + + [italic]Пациент №359[/italic] + + Ф.И.: А████ Бл█████ + + Пол: Ж. + + Возраст: 28 лет. + + Должность: Учёный. + + Симптомы: Повышенная строгость и недовольство к окружающим. Перфекционизм и склонность к собственной возвышенности. + + Вердикт: Терапия на тему любви к себе и окружающим, медитация. При острой необходимости прописать расслабляющие методы. + - uid: 24336 + components: + - type: Transform + pos: -44.25985,-16.49642 + parent: 2 + - uid: 24337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.31233,-5.5062623 + parent: 2 + - uid: 24338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -103.31233,-5.5531373 + parent: 2 + - uid: 24339 + components: + - type: Transform + pos: -44.005867,-16.378546 + parent: 2 + - uid: 24340 + components: + - type: Transform + pos: -20.642616,14.550071 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: > + ============================================= + РУКОВОДСТВО ПО ЭКСПЛУАТАЦИИ + ============================================= + + 1) Поместите заключенного в камеру казни + + + 2) Убедитесь, что закрыли все шлюзы + + + 3) Разблокируйте кнопку подачи раскалённого пара, нажмите и заблокируйте её, когда будете готовы начать процедуру казни, автоматическая система подаст ровно столько пара, сколько нужно. + + + 4) После окончания процедуры - разблокируйте и нажмите на кнопку открытия гермозатворов для сброса пара в атмосферу + + + 5) Когда воздушная сигнализация перейдет в нормальный режим - повторно нажмите на кнопку для закрытия гермозатворов и заблокируйте кнопку + + + После выполнения пятого шага, система возвращается в исходное состояние, для следующей процедуры повторите все шаги, начиная с первого. + + ============================================= + [italic]Место для печатей[/italic] + - uid: 24341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.6658874,-11.784885 parent: 2 - - uid: 23620 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: > + Уважаемый Глава Персонала. В рамках проведения программы улучшения рабочих условий, Центральным Командованием были предоставлены альтернативные версии уже имеющихся у вас стандартных печатей ОДОБРЕНО и ОТКАЗАНО. Вы можете использовать их в работе с сотрудниками станции, однако, воздержитесь от их использования во время связи с ЦентКомом. Благодарим за понимание, удачной работы. Слава NanoTrasen! + - uid: 24342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.343864,14.137485 + pos: 9.631929,-11.428617 parent: 2 - - uid: 42276 + - type: Paper + content: > + Внимание капитану станции, ввиду сокращения расходов, а также во избежание установления неблагоприятной атмосферной обстановки на станции, ваш Снегоход был разобран на запчасти и отдан в инженерный отдел для постройки пивного фонтана. За любыми вопросами обращайтесь по факсу на Центральное Командование. + + Благодарим за понимание. + - uid: 24343 components: - type: Transform - rot: 0.5759586531581288 rad - pos: 33.487556,73.480225 - parent: 40203 - - uid: 42277 + pos: 13.498914,-9.135196 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + content: >+ + [color=#1b487e]███░███░░░░██░░░░[/color] + + [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] ЦК-КОМ NTDZX Гласир[/bold] + + [color=#1b487e]░░░░██░░░████░███[/color] + + ============================================= + ОБРАЩЕНИЕ ЦЕНТКОМА + ============================================= + + + Уважаемый капитан комплекса Гласир, довожу до вашего сведения, что результате сбоя орбитального контроллера погоды, в промежутке между сменами, в квадранте прошла сильнейшая снежная буря. Из-за неё территория отбытия была покрыта сугробами, которые могут помешать посадке эвакуационного шаттла. + + В качестве меры предосторожности, нами были предоставлены сейсмические заряды в хранилище комплекса. Требуем от вас проконтролировать заблаговременную расчистку эвакуации и пресекать любые попытки использовать заряды в иных целях. Слава NanoTrasen! + + + ============================================= + [italic]Место для печатей[/italic] + + + + - uid: 24344 components: - type: Transform - rot: -2.0245819323134224 rad - pos: 31.659433,72.605225 - parent: 40203 - - uid: 42278 + rot: 3.141592653589793 rad + pos: 14.657666,-28.414576 + parent: 2 + - type: Paper + content: >+ + Уважаемый персонал станции [bold]NTDZX Гласир[/bold]. + + Ввиду нескольких актов вандализма, а также неподобающего поведения, связанного со "Стеной творчества" временно её использование ограничено, во избежание повторных прецедентов. Проводится внутреннее расследование. + + Благодарим за понимание. + + - uid: 42716 components: - type: Transform - rot: 0.7853981633974483 rad - pos: 34.6214,71.62208 - parent: 40203 - - type: Stack - count: 3 - - uid: 42279 + rot: 1.5707963267948966 rad + pos: 73.601654,74.14394 + parent: 40599 + - type: Paper + content: > + Это была ошибка. Всё это. Не стоило так рисковать. Всё кончено. + + Да простит Господь гения, который пожертвовал человеческими жизнями во имя прогресса. + - uid: 42717 components: - type: Transform - rot: 0.7853981633974483 rad - pos: 34.55,71.52833 - parent: 40203 - - type: Stack - count: 5 - - uid: 42280 + rot: 3.612831551628262 rad + pos: 55.54478,70.07954 + parent: 40599 + - type: Paper + content: >+ + [head=3]Ис[color=#661a1a]█[/color]ледование в[color=#661a1a]о░░ейст[/color]вия заряда Шаровой Те[color=#661a1a]██░ на[/color] врата[/head] + + [bold] + + 00:12:28 - [color=#661a1a]На███░ало [/color]испытаний + + + 00:19:08 - Проверка [color=#661a1a]у░███░вня[/color] напряжения + + + 00:20:31 - Прибыло дополнительное оборудование + + + 00:32:52 - Малый ход подачи [color=#661a1a]з░█████да[/color] + + + 00:38:10 - А[color=#661a1a]█████из[/color] графиков + + + 00:41:22 - Средний ход подачи заряда + + + 00:42:30 - Ошибка в распределении трансформатора + + + 00:49:08 - Ошибка уст[color=#661a1a]ра████████████████ + + ████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ + + [/color] + + 01:08:16 - [color=#661a1a]█████на [/color]тревога + + [/bold] + + + + + + + + + + - uid: 42718 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.550407,34.46174 - parent: 40203 -- proto: MaterialWoodPlank10 - entities: - - uid: 23621 + pos: 53.50572,56.27919 + parent: 40599 + - uid: 42719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5175,66.647385 - parent: 2 - - uid: 42281 + rot: -1.7453292519943295 rad + pos: 53.66197,56.044815 + parent: 40599 + - uid: 42720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.30986,36.641403 - parent: 40203 - - uid: 42282 + rot: -1.2217304763960306 rad + pos: 53.427593,56.138565 + parent: 40599 + - uid: 42721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.356735,36.516403 - parent: 40203 - - uid: 42283 + rot: -1.7453292519943295 rad + pos: 53.31822,57.43544 + parent: 40599 + - uid: 42722 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.21611,36.43828 - parent: 40203 -- proto: MatterBinStockPart - entities: - - uid: 23622 - components: - - type: Transform - pos: 45.60565,-49.547947 - parent: 2 - - uid: 23623 - components: - - type: Transform - pos: 3.7237544,15.650835 - parent: 2 -- proto: Mattress + pos: 53.44322,57.59169 + parent: 40599 +- proto: PaperRolling1 entities: - - uid: 23624 + - uid: 24345 components: + - type: MetaData + name: грязная бумага - type: Transform - pos: -36.5,15.5 + pos: 67.391914,7.2826276 parent: 2 - - uid: 23625 + - uid: 24346 components: - type: Transform - pos: -38.5,15.5 + pos: -117.2455,16.580702 parent: 2 - - uid: 23626 + - uid: 24347 components: - type: Transform - pos: -38.5,36.5 + pos: -30.634495,29.508938 parent: 2 - - uid: 23627 +- proto: PaperScrap + entities: + - uid: 24348 components: - type: Transform - pos: -35.5,36.5 + rot: 3.141592653589793 rad + pos: -89.031494,28.4697 parent: 2 - - uid: 23628 + - type: Paper + content: > + Мне удалось выбраться из заключения.. Холод собачий, но думаю про этот тоннель не знает никто. Надо бы придумать как просидеть тут ближайшее время.. а потом.. не представляю что делать. + - uid: 24349 components: - type: Transform - pos: -74.5,40.5 + pos: -43.373627,-11.404057 parent: 2 - - uid: 23629 + - uid: 24350 components: - type: Transform - pos: -55.5,46.5 + rot: 3.141592653589793 rad + pos: -40.534863,4.5463324 parent: 2 - - uid: 23630 + - uid: 24351 components: - type: Transform - pos: 73.5,-31.5 + pos: -11.824434,68.96183 parent: 2 - - uid: 23631 + - type: Paper + content: Перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...гусеница...гусеница...гусеница...перекур...перекур!! + - uid: 24352 components: - type: Transform - pos: -88.5,28.5 + rot: 3.141592653589793 rad + pos: -43.529877,-11.388432 parent: 2 - - uid: 23632 + - uid: 24353 components: - type: Transform - pos: -91.5,58.5 + pos: -17.704523,22.769758 parent: 2 - - uid: 23633 + - uid: 24354 components: - type: Transform - pos: -91.5,56.5 + pos: 17.870224,-3.1351771 parent: 2 - - uid: 23634 + - uid: 24355 components: - type: Transform - pos: 102.5,-43.5 + pos: -117.54237,16.035488 parent: 2 - - uid: 42284 - components: - - type: Transform - pos: 58.5,63.5 - parent: 40203 - - uid: 42285 - components: - - type: Transform - pos: 57.5,63.5 - parent: 40203 - - uid: 42286 - components: - - type: Transform - pos: 41.5,68.5 - parent: 40203 - - uid: 42287 - components: - - type: Transform - pos: 41.5,70.5 - parent: 40203 - - uid: 42288 - components: - - type: Transform - pos: 41.5,69.5 - parent: 40203 - - uid: 42289 - components: - - type: Transform - pos: 30.5,32.5 - parent: 40203 - - uid: 42290 - components: - - type: Transform - pos: 58.5,30.5 - parent: 40203 - - uid: 42291 - components: - - type: Transform - pos: 57.5,29.5 - parent: 40203 - - uid: 42292 - components: - - type: Transform - pos: 57.5,28.5 - parent: 40203 -- proto: MedalCase - entities: - - uid: 23635 + - uid: 24356 components: - type: Transform - pos: 0.5001602,-9.394899 + pos: -116.65175,16.754238 parent: 2 -- proto: MedicalBed - entities: - - uid: 23636 + - uid: 24357 components: - type: Transform - pos: -14.5,50.5 + pos: -27.498034,-15.387703 parent: 2 - - uid: 23637 + - uid: 24358 components: - type: Transform - pos: -16.5,49.5 + rot: -1.5707963267948966 rad + pos: -27.763659,-15.387703 parent: 2 - - uid: 23638 + - uid: 24359 components: - type: Transform - pos: 16.5,60.5 + pos: 71.391426,-34.55758 parent: 2 - - uid: 23639 + - uid: 24360 components: - type: Transform - pos: 16.5,62.5 + pos: 72.28205,-34.58883 parent: 2 - - uid: 23640 + - uid: 24361 components: - type: Transform - pos: 16.5,64.5 + pos: -89.45337,27.3447 parent: 2 - - uid: 23641 + - uid: 24362 components: - type: Transform - pos: 9.5,65.5 + pos: 101.70253,-43.412582 parent: 2 - - uid: 23642 + - uid: 24363 components: - type: Transform - pos: 13.5,65.5 + rot: -1.5707963267948966 rad + pos: 102.249405,-42.428207 parent: 2 - - uid: 23643 + - uid: 40685 components: - type: Transform - pos: 10.5,53.5 - parent: 2 - - uid: 23644 + parent: 40679 + - type: Paper + content: >+ + Я не думал...я не хотел... что я наделал... нет... Элеонора... + + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 42723 components: - type: Transform - pos: 16.5,51.5 - parent: 2 - - uid: 23645 + rot: -1.5707963267948966 rad + pos: 53.69322,57.65419 + parent: 40599 + - uid: 42724 components: - type: Transform - pos: -52.5,13.5 - parent: 2 - - uid: 23646 + rot: -1.3962634015954636 rad + pos: 53.66197,56.263565 + parent: 40599 + - uid: 47302 components: - type: Transform - pos: -14.5,52.5 - parent: 2 - - uid: 23647 + rot: 0.17453292519943295 rad + pos: -0.24288905,1.1245022 + parent: 47245 + - type: Paper + stampState: paper_stamp-syndicate + stampedBy: + - stampedColor: '#850000FF' + stampedName: stamp-component-stamped-name-syndicate + content: >- + [color=#B50F1D] ███░██████░███[/color] + + [color=#B50F1D] █░░░██░░░░░░░█[/color] + + [color=#B50F1D] █░░░░████░░░░█[/color] [head=3]Syndicate[/head] + + [color=#B50F1D] █░░░░░░░██░░░█[/color] + + [color=#B50F1D] ███░██████░███[/color] + + ============================================= + УКАЗАНИЯ БОЕВОМУ ОТРЯДУ + ============================================= + + Позывной отряда: + + ЧИЖИК + + + Задачи отряда: Максимально скрытно проникнуть на территорию врага. Выкрасть вражеские секретные технологии. Оставить вражеские секретные технологии по координатам ███ -████. Отправить сообщение на факс по адресу ██████ о ситуации после выполнения всех задачь. + + + ============================================= + [italic]Место для печатей[/italic] +- proto: PartRodMetal + entities: + - uid: 24364 components: - type: Transform - pos: -16.5,53.5 + pos: 6.4434824,-44.363564 parent: 2 - - uid: 23648 +- proto: PartRodMetal1 + entities: + - uid: 24365 components: - type: Transform - pos: -14.5,53.5 + rot: 3.141592653589793 rad + pos: 97.40384,-43.400963 parent: 2 - - uid: 23649 + - uid: 24366 components: - type: Transform - pos: -16.5,50.5 + rot: -1.5707963267948966 rad + pos: 97.56009,-45.525963 parent: 2 - - uid: 23650 + - uid: 24367 components: - type: Transform - pos: -16.5,52.5 + rot: 3.141592653589793 rad + pos: 97.71634,-45.557213 parent: 2 - - uid: 23651 + - uid: 24368 components: - type: Transform - pos: -14.5,49.5 + pos: 100.61881,-46.338463 parent: 2 - - uid: 23652 + - uid: 42725 components: - type: Transform - pos: -105.5,4.5 - parent: 2 - - uid: 23653 + pos: 48.419197,37.339207 + parent: 40599 + - uid: 42726 components: - type: Transform - pos: -18.5,50.5 - parent: 2 - - uid: 23654 + rot: 1.5707963267948966 rad + pos: 56.559822,44.72983 + parent: 40599 + - uid: 42727 components: - type: Transform - pos: -18.5,52.5 - parent: 2 - - uid: 42293 + rot: -1.5707963267948966 rad + pos: 48.419197,37.339207 + parent: 40599 + - uid: 42728 components: - type: Transform - pos: 55.5,63.5 - parent: 40203 -- proto: MedicalScanner - entities: - - uid: 23655 + rot: 1.5707963267948966 rad + pos: 47.544197,40.63608 + parent: 40599 + - uid: 42729 components: - type: Transform - pos: -28.5,52.5 - parent: 2 -- proto: MedicalTechFab - entities: - - uid: 23656 + rot: 3.141592653589793 rad + pos: 57.669197,39.620457 + parent: 40599 + - uid: 42730 components: - type: Transform - pos: -23.5,54.5 - parent: 2 -- proto: Medkit - entities: - - uid: 42294 + rot: 1.5707963267948966 rad + pos: 56.450447,43.51108 + parent: 40599 + - uid: 42731 components: - type: Transform - pos: 57.14936,59.566467 - parent: 40203 -- proto: MedkitAdvancedFilled - entities: - - uid: 8326 + rot: -0.8726646259971648 rad + pos: 64.92846,55.34993 + parent: 40599 + - uid: 42732 components: - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15180 + rot: 3.6651914291880923 rad + pos: 65.850334,56.115555 + parent: 40599 + - uid: 42733 components: - type: Transform - parent: 15176 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15185 + rot: -0.3490658503988659 rad + pos: 66.662834,56.50618 + parent: 40599 + - uid: 42734 components: - type: Transform - parent: 15181 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23657 + rot: -1.1519173063162575 rad + pos: 65.391075,53.13334 + parent: 40599 + - uid: 42735 components: - type: Transform - pos: -56.51392,11.658268 - parent: 2 - - uid: 42295 + rot: 0.7853981633974483 rad + pos: 66.33643,57.538094 + parent: 40599 + - uid: 42736 components: - type: Transform - pos: 60.647575,63.534065 - parent: 40203 - - uid: 45752 + rot: 1.5707963267948966 rad + pos: 43.09279,82.89004 + parent: 40599 + - uid: 42737 components: - type: Transform - parent: 45751 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MedkitBruteFilled - entities: - - uid: 23658 + rot: 3.141592653589793 rad + pos: 44.108414,84.70254 + parent: 40599 + - uid: 46734 components: - type: Transform - pos: -20.840689,56.5 - parent: 2 -- proto: MedkitBurnFilled - entities: - - uid: 23659 + rot: -0.34906585039886595 rad + pos: 2.6340485,9.599899 + parent: 46584 + - uid: 46735 components: - type: Transform - pos: -20.81964,56 - parent: 2 - - uid: 42296 + rot: 2.443460952792061 rad + pos: 1.4152985,11.615524 + parent: 46584 + - uid: 46736 components: - type: Transform - pos: 57.58686,59.550842 - parent: 40203 -- proto: MedkitCombat - entities: - - uid: 40371 + pos: -0.52220154,6.4748993 + parent: 46584 + - uid: 46737 components: - type: Transform - pos: 60.31945,63.64344 - parent: 40203 - - type: Storage - storedItems: - 40372: - position: 0,0 - _rotation: East - 40373: - position: 2,0 - _rotation: South - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 40372 - - 40373 -- proto: MedkitCombatFilled + rot: -1.5707963267948966 rad + pos: 1.6340485,11.537399 + parent: 46584 +- proto: PaxChemistryBottle entities: - - uid: 8327 + - uid: 17884 components: - type: Transform - parent: 8318 + parent: 17881 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23660 +- proto: Pen + entities: + - uid: 24369 components: - type: Transform - pos: -4.468525,58.515934 + pos: -108.223236,43.846813 parent: 2 -- proto: MedkitFilled - entities: - - uid: 23661 + - uid: 24370 components: - type: Transform - pos: 84.4917,-46.379368 + pos: 61.33401,-35.03786 parent: 2 - - uid: 23662 + - uid: 24371 components: - type: Transform - pos: -20.314451,57 + pos: 61.287136,-34.772236 parent: 2 - - uid: 23663 + - uid: 24372 components: - type: Transform - pos: 40.552696,-46.285526 + pos: -31.104733,-20.382248 parent: 2 - - uid: 23664 + - uid: 24373 components: - type: Transform - pos: -38.73617,36.60208 + pos: -26.914356,16.481026 parent: 2 - - uid: 23665 + - uid: 24374 components: - type: Transform - pos: 2.477203,54.703247 + pos: 93.045166,-15.415628 parent: 2 - - uid: 23666 + - uid: 24375 components: - type: Transform - pos: -1.5783758,-1.3524618 + pos: -12.554755,-14.441446 parent: 2 - - uid: 23667 + - uid: 24376 components: - type: Transform - pos: -103.838356,4.6220202 + rot: 3.141592653589793 rad + pos: -22.243444,42.45151 parent: 2 - - uid: 23668 + - uid: 24377 components: - type: Transform - pos: 23.62912,19.622879 + rot: -1.5707963267948966 rad + pos: -10.636397,54.08989 parent: 2 -- proto: MedkitOxygenFilled - entities: - - uid: 23669 + - uid: 24378 components: - type: Transform - pos: -20.310242,56.5 + pos: 40.268497,-43.22698 parent: 2 - - uid: 23670 + - uid: 24379 components: - type: Transform - pos: -56.51392,12.392643 + rot: -1.5707963267948966 rad + pos: 58.60971,13.542273 parent: 2 -- proto: MedkitRadiationFilled - entities: - - uid: 23671 + - uid: 24380 components: - type: Transform - pos: -24.45591,-40.290955 + rot: 1.5707963267948966 rad + pos: 2.3121178,1.6258962 parent: 2 - - uid: 23672 + - uid: 24381 components: - type: Transform - pos: -20.83227,57 + rot: 1.5707963267948966 rad + pos: 2.5933678,-0.38972878 parent: 2 - - uid: 23673 + - uid: 24382 components: - type: Transform - pos: -56.51392,12.033268 + pos: 9.220373,-11.320829 parent: 2 -- proto: MedkitToxinFilled - entities: - - uid: 23674 + - uid: 24383 components: - type: Transform - pos: 40.56652,-46.494675 + pos: 8.658675,60.427708 parent: 2 - - uid: 23675 + - uid: 24384 components: - type: Transform - pos: -20.284983,56 + rot: 3.141592653589793 rad + pos: -12.72999,44.254745 parent: 2 - - uid: 23676 + - uid: 24385 components: - type: Transform - pos: -56.498295,12.736393 + pos: 14.39305,60.521458 parent: 2 - - uid: 23677 + - uid: 24386 components: - type: Transform - pos: -103.84251,4.644225 + pos: 16.35197,54.05802 parent: 2 -- proto: MetalDoor - entities: - - uid: 42297 + - uid: 24387 components: - type: Transform - pos: 76.5,35.5 - parent: 40203 - - uid: 45754 + pos: -34.355022,1.1034837 + parent: 2 + - uid: 24388 components: - type: Transform - pos: 2.5,0.5 - parent: 44970 - - uid: 45755 + pos: -42.548534,10.463797 + parent: 2 + - uid: 24389 components: - type: Transform - pos: -1.5,0.5 - parent: 44970 - - uid: 45756 + pos: -42.454784,10.698172 + parent: 2 + - uid: 24390 components: - type: Transform - pos: -4.5,6.5 - parent: 44970 - - uid: 45757 + rot: 1.5707963267948966 rad + pos: -22.38407,44.23276 + parent: 2 + - uid: 24391 components: - type: Transform - pos: 5.5,8.5 - parent: 44970 -- proto: MicroManipulatorStockPart - entities: - - uid: 23678 + pos: 1.3632152,53.890747 + parent: 2 + - uid: 24392 components: - type: Transform - pos: 4.6456294,15.525835 + pos: -36.6518,-12.498175 parent: 2 - - uid: 23679 + - uid: 24393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.302492,-6.5899367 + rot: 3.141592653589793 rad + pos: -20.292784,25.98421 parent: 2 - - uid: 23680 + - uid: 24394 components: - type: Transform - pos: 45.652527,-49.204197 + rot: 1.5707963267948966 rad + pos: -1.1520643,-1.3597445 parent: 2 -- proto: MicrophoneInstrument - entities: - - uid: 23681 + - uid: 24395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.629022,18.639996 + pos: -12.38288,-14.472696 parent: 2 -- proto: MindShieldImplanter - entities: - - uid: 8328 + - uid: 24396 components: - - type: MetaData - name: Щит разума - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23682 + rot: -1.5707963267948966 rad + pos: -117.76112,16.736952 + parent: 2 + - uid: 24397 components: - - type: MetaData - name: имплантер - type: Transform - pos: 0.54825854,-11.284901 + pos: 96.03473,5.4861307 parent: 2 -- proto: MiningDrillDiamond - entities: - - uid: 42298 + - uid: 24398 components: - type: Transform - rot: -0.6283185307179586 rad - pos: 31.908371,75.81804 - parent: 40203 -- proto: MiningWindow - entities: - - uid: 23683 + rot: -1.5707963267948966 rad + pos: -25.125965,-17.403519 + parent: 2 + - uid: 24399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-38.5 + rot: 3.141592653589793 rad + pos: -30.907215,-16.372269 parent: 2 - - uid: 23684 + - uid: 24400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-37.5 + rot: -1.5707963267948966 rad + pos: -43.77678,-16.395605 parent: 2 - - uid: 23685 + - uid: 24401 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,37.5 + pos: -20.518757,15.2432785 parent: 2 - - uid: 23686 + - uid: 24402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,37.5 + rot: -1.5707963267948966 rad + pos: -117.6377,24.707823 parent: 2 -- proto: MiningWindowDiagonal - entities: - - uid: 23687 + - uid: 24403 components: - type: Transform rot: -1.5707963267948966 rad - pos: 100.5,-37.5 + pos: -60.380363,52.221043 parent: 2 -- proto: Mirror - entities: - - uid: 23688 + - uid: 42738 components: - type: Transform - pos: -11.5,-2.5 - parent: 2 - - uid: 23689 + rot: 3.141592653589793 rad + pos: 62.737946,77.66226 + parent: 40599 + - uid: 42739 components: - type: Transform - pos: 18.5,-6.5 - parent: 2 - - uid: 23690 + rot: 0.4537856055185257 rad + pos: 37.60118,59.520912 + parent: 40599 + - uid: 42740 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,49.5 - parent: 2 - - uid: 23691 + pos: 53.66197,55.013565 + parent: 40599 + - uid: 42741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,37.5 - parent: 2 - - uid: 23692 + rot: 3.490658503988659 rad + pos: 53.677593,56.81044 + parent: 40599 +- proto: PenCap + entities: + - uid: 24404 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,37.5 + pos: 18.307442,-12.816851 parent: 2 - - uid: 23693 + - uid: 24405 components: - type: Transform - pos: 19.5,41.5 + rot: -1.5707963267948966 rad + pos: 10.909572,-6.4347415 parent: 2 - - uid: 23694 +- proto: PenCentcom + entities: + - uid: 46116 components: - type: Transform - pos: 26.5,41.5 - parent: 2 - - uid: 23695 + rot: 3.141592653589793 rad + pos: 2.1662426,12.540764 + parent: 45355 +- proto: PenExploding + entities: + - uid: 24406 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,8.5 + pos: 93.27954,-16.118753 parent: 2 - - uid: 45758 + - uid: 24407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,1.5 - parent: 44970 -- proto: ModularGrenade + pos: 38.319973,-2.3976312 + parent: 2 +- proto: PenHop entities: - - uid: 23696 + - uid: 24408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.365005,-49.504807 + rot: 1.5707963267948966 rad + pos: -10.554801,-11.861071 parent: 2 - - uid: 23697 + - uid: 24409 components: - type: Transform - pos: 39.74395,-49.344788 + rot: -1.5707963267948966 rad + pos: -5.1388493,-5.484262 parent: 2 - - uid: 23698 +- proto: PersonalAI + entities: + - uid: 24410 components: - type: Transform - pos: -6.6575174,42.02108 + pos: 18.5938,7.3261075 parent: 2 - - uid: 23699 + - uid: 24411 components: - type: Transform - pos: -6.6790304,41.99414 + rot: -1.5707963267948966 rad + pos: 44.502216,-47.438194 parent: 2 -- proto: MopBucket +- proto: PetCarrier entities: - - uid: 23700 + - uid: 24412 components: - type: Transform - pos: -7.729992,34.482563 + pos: 24.5,22.5 parent: 2 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: [] - shark_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23701 -- proto: MopBucketFull - entities: - - uid: 23702 + - uid: 24413 components: - type: Transform - pos: 41.5,25.5 + pos: 23.5,22.5 parent: 2 -- proto: MopItem - entities: - - uid: 23703 + - uid: 24414 components: - type: Transform - pos: 4.46373,30.47206 + pos: -12.5,62.5 parent: 2 - - uid: 23704 +- proto: PhoneInstrument + entities: + - uid: 24415 components: - type: Transform - pos: 41.52851,25.540998 + pos: -43.375393,1.660028 parent: 2 - - uid: 23705 + - uid: 24416 components: - type: Transform - pos: 3.4793549,30.487684 + pos: 8.402258,-7.429708 parent: 2 - - uid: 23706 + - uid: 24417 components: + - type: MetaData + desc: Он точно ответит... + name: Begorrchi - type: Transform - pos: -18.564096,44.558735 + pos: -80.9523,2.807736 parent: 2 - - uid: 23707 +- proto: PhoneInstrumentSyndicate + entities: + - uid: 24418 components: - type: Transform - pos: -56.528408,9.393673 + pos: -80.62877,11.533225 parent: 2 - - uid: 23708 +- proto: Pickaxe + entities: + - uid: 15105 components: - type: Transform - pos: -7.307357,34.39637 - parent: 2 - - uid: 23709 + parent: 15104 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.120705,-17.492134 - parent: 2 - - uid: 23710 + parent: 15107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24419 components: - type: Transform - pos: 23.455988,43.65704 + pos: -60.410892,54.65461 parent: 2 - - uid: 23711 + - uid: 24420 components: - type: Transform - pos: -99.536354,25.66963 + pos: -94.505295,17.59811 parent: 2 -- proto: Morgue - entities: - - uid: 19433 + - uid: 24421 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,38.5 + pos: -46.798702,34.637077 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 19434 - - uid: 23712 + - uid: 24422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,38.5 + rot: -1.5707963267948966 rad + pos: 74.54137,-48.524277 parent: 2 - - uid: 23713 + - uid: 24423 components: - type: Transform - pos: -19.5,8.5 + rot: 2.181661564992912 rad + pos: 65.53668,-42.850433 parent: 2 - - uid: 23714 + - uid: 24424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,40.5 + pos: -117.949425,32.3168 parent: 2 - - uid: 23715 + - uid: 42742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,40.5 + rot: -0.9948376736367679 rad + pos: 32.736496,68.49639 + parent: 40599 +- proto: PillCanister + entities: + - uid: 24425 + components: + - type: Transform + pos: 18.02342,-13.237282 parent: 2 - - uid: 23716 + - uid: 24426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,40.5 + pos: -13.633438,-4.3606277 parent: 2 - - uid: 23717 + - uid: 24427 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,40.5 + pos: -44.05053,-11.301849 parent: 2 - - uid: 23718 +- proto: PillCanisterDylovene + entities: + - uid: 24428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,40.5 + pos: 7.462455,35.57658 parent: 2 - - uid: 23719 +- proto: PillCanisterRandom + entities: + - uid: 24429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,38.5 + pos: -26.523159,51.567333 parent: 2 - - uid: 23720 + - uid: 24430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,38.5 + pos: -20.858524,55.55884 parent: 2 - - uid: 23721 + - uid: 24431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,38.5 + pos: -12.643206,51.799103 parent: 2 -- proto: MothroachCube +- proto: PillCanisterTricordrazine entities: - - uid: 23722 + - uid: 24432 components: - type: MetaData - desc: Просто добавь воды и получишь таракамоль ростом 18 см! + name: витамины (трикордразин 10 ед.) - type: Transform - pos: 6.807721,52.16312 + pos: -13.383438,-4.2356277 parent: 2 -- proto: Multitool +- proto: PillSpaceDrugs entities: - - uid: 23723 + - uid: 17885 components: - type: Transform - pos: 18.485271,-35.27854 - parent: 2 - - uid: 23724 + parent: 17881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17886 components: - type: Transform - pos: -39.50682,-18.312054 - parent: 2 - - uid: 23725 + parent: 17881 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17887 components: - type: Transform - pos: -30.291275,-42.434532 - parent: 2 - - uid: 42299 + parent: 17881 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PinpointerNuclear + entities: + - uid: 23861 components: + - type: MetaData + name: пинпоинтер торгового аванпоста - type: Transform - rot: 3.351032163829113 rad - pos: 57.5,69.5 - parent: 40203 -- proto: NetProbeCartridge - entities: - - uid: 23726 + parent: 23860 + - type: Pinpointer + targetName: Торговый аванпост + component: TradeStation + - type: Physics + canCollide: False + - type: InsideEntityStorage + missingComponents: + - Contraband + - uid: 24434 components: + - type: MetaData + name: пинпоинтер торгового аванпоста - type: Transform - rot: -1.5707963267948966 rad - pos: -25.949696,8.6014185 + pos: 66.014824,-43.389347 parent: 2 - - uid: 23727 + - type: Pinpointer + targetName: Торговый аванпост + component: TradeStation + missingComponents: + - Contraband + - uid: 24435 components: - type: Transform - pos: 2.6607955,-50.933662 + pos: 9.581446,-9.525494 parent: 2 -- proto: Nettle - entities: - - uid: 23728 + - uid: 24436 components: + - type: MetaData + name: пинпоинтер торгового аванпоста - type: Transform - pos: 97.44521,-11.350016 + pos: 67.40701,-51.26843 parent: 2 -- proto: NewsReaderCartridge + - type: Pinpointer + targetName: Торговый аванпост + component: TradeStation + missingComponents: + - Contraband +- proto: PinpointerStation entities: - - uid: 23729 + - uid: 24433 components: + - type: MetaData + desc: Портативное устройство слежения, отслеживающее ближайшие инородные тела на планете. + name: локатор обломков - type: Transform - pos: 10.530551,19.51749 + pos: 77.75536,-48.41672 parent: 2 -- proto: NewtonCradle + - type: Pinpointer + targetName: обломок + component: SalvageStructure +- proto: PlantBag entities: - - uid: 23730 + - uid: 15144 components: - - type: MetaData - desc: Держит пробирки. Вы же сломаете его, так ведь? - name: штатив для пробирок - type: Transform - pos: -4.5,42.5 + parent: 15137 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlaqueAtmos + entities: + - uid: 24437 + components: + - type: Transform + pos: -4.5,-51.5 parent: 2 - missingComponents: - - Item - - ItemToggle -- proto: NitrogenCanister +- proto: PlasmaCanister entities: - - uid: 23731 + - uid: 24438 components: - type: Transform - pos: 47.5,-50.5 + pos: -14.5,-68.5 parent: 2 - - uid: 23732 + - type: GasCanister + releaseValve: True + releasePressure: 100 + - type: Lock + locked: False + - uid: 46738 components: - type: Transform - pos: -23.5,-62.5 - parent: 2 - - uid: 23733 + pos: -4.5,8.5 + parent: 46584 + - uid: 46739 components: - type: Transform - pos: -12.5,8.5 - parent: 2 - - uid: 23734 + pos: -2.5,6.5 + parent: 46584 + - uid: 46740 components: - type: Transform - pos: -9.5,-56.5 - parent: 2 - - uid: 23735 + pos: -0.5,1.5 + parent: 46584 + - uid: 46741 components: - type: Transform - pos: 77.5,-43.5 - parent: 2 -- proto: NitrousOxideCanister + pos: -3.5,3.5 + parent: 46584 +- proto: PlasmaOre1 entities: - - uid: 42300 + - uid: 42743 components: - type: Transform - anchored: True - pos: 38.5,83.5 - parent: 40203 - - type: Physics - bodyType: Static - - type: Lock - locked: True -- proto: NotekeeperCartridge + rot: 0.5585053606381855 rad + pos: 29.731049,72.57129 + parent: 40599 +- proto: PlasmaReinforcedWindowDirectional entities: - - uid: 42301 + - uid: 24439 components: - type: Transform - rot: 1.1693705988362009 rad - pos: 55.48,68.9 - parent: 40203 -- proto: NoticeBoard - entities: - - uid: 23736 + rot: 1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 24440 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,30.5 + pos: 2.5,14.5 parent: 2 - - uid: 23737 + - uid: 24441 components: - type: Transform - pos: 58.5,8.5 + rot: -1.5707963267948966 rad + pos: 3.5,13.5 parent: 2 - - uid: 23738 + - uid: 24442 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,5.5 + pos: 0.5,11.5 parent: 2 - - uid: 23739 + - uid: 24443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,19.5 + rot: 3.141592653589793 rad + pos: 0.5,11.5 parent: 2 - - uid: 23740 + - uid: 24444 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-35.5 + pos: 4.5,11.5 parent: 2 - - uid: 23741 + - uid: 24445 components: - - type: MetaData - desc: Деревянная расписная дощечка с креплением для трофея. - name: постамент - type: Transform - pos: -26.5,-12.5 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 parent: 2 - missingComponents: - - StorageFillVisualizer - - Storage - - UserInterface - - ContainerContainer - - Construction - - uid: 45759 + - uid: 24446 components: - type: Transform - pos: -1.5,-2.5 - parent: 44970 -- proto: NTDefaultCircuitBoard - entities: - - uid: 23742 + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 24447 components: - type: Transform - pos: 0.421875,11.493078 + rot: 1.5707963267948966 rad + pos: 24.5,-3.5 parent: 2 -- proto: NuclearBomb - entities: - - uid: 23743 + - uid: 24448 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 24449 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-9.5 + pos: 26.5,-3.5 parent: 2 -- proto: NuclearBombKeg - entities: - - uid: 23744 + - uid: 24450 components: - - type: MetaData - desc: Вам, вероятно, не стоит оставаться здесь, чтобы проверить, запущена ли она. - name: ядерная боеголовка - type: Transform - pos: -7.5,15.5 + pos: 26.5,-3.5 parent: 2 - - uid: 23745 + - uid: 24451 components: - - type: MetaData - name: горячая штучка - type: Transform - pos: 48.5,17.5 + pos: 45.5,-56.5 parent: 2 -- proto: NukeDiskFake - entities: - - uid: 23746 + - uid: 24452 components: - type: Transform - pos: -5.509882,16.625505 + pos: 47.5,-56.5 parent: 2 -- proto: OcarinaInstrument - entities: - - uid: 23747 + - uid: 24453 components: - type: Transform - pos: 59.535385,-0.47612238 + pos: 50.5,-56.5 parent: 2 -- proto: Ointment1 - entities: - - uid: 42302 + - uid: 24454 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.99404,26.417439 - parent: 40203 - - uid: 42303 + pos: 52.5,-56.5 + parent: 2 + - uid: 24455 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.322166,26.683064 - parent: 40203 -- proto: OintmentAdvanced1 - entities: - - uid: 40373 + pos: 45.5,-56.5 + parent: 2 + - uid: 24456 components: - type: Transform - parent: 40371 - - type: Stack - count: 3 - - type: Physics - canCollide: False -- proto: OnionRedSeeds - entities: - - uid: 42304 + rot: 3.141592653589793 rad + pos: 47.5,-56.5 + parent: 2 + - type: Construction + defaultTarget: start + - uid: 24457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.672676,74.60565 - parent: 40203 -- proto: OperatingTable - entities: - - uid: 23748 + rot: 3.141592653589793 rad + pos: 50.5,-56.5 + parent: 2 + - uid: 24458 components: - type: Transform - pos: -25.5,44.5 + rot: 3.141592653589793 rad + pos: 52.5,-56.5 parent: 2 - - uid: 23749 + - uid: 24459 components: - type: Transform - pos: 45.5,-42.5 + pos: 79.5,-36.5 parent: 2 - - uid: 23750 + - uid: 42744 components: - type: Transform - pos: 20.5,22.5 - parent: 2 - - uid: 23751 + rot: 1.5707963267948966 rad + pos: 35.5,56.5 + parent: 40599 + - uid: 42745 components: - type: Transform - pos: 17.5,-31.5 - parent: 2 - - uid: 23752 + pos: 53.5,36.5 + parent: 40599 + - uid: 42746 components: - type: Transform - pos: -16.5,44.5 - parent: 2 - - uid: 23753 + rot: 1.5707963267948966 rad + pos: 50.5,35.5 + parent: 40599 + - uid: 42747 components: - type: Transform - pos: -20.5,6.5 - parent: 2 - - uid: 23754 + pos: 51.5,36.5 + parent: 40599 + - uid: 42748 components: - type: Transform - pos: -52.5,9.5 - parent: 2 -- proto: OreBag - entities: - - uid: 42305 + rot: -1.5707963267948966 rad + pos: 54.5,35.5 + parent: 40599 + - uid: 46742 components: - type: Transform - rot: -0.6457718232379019 rad - pos: 34.132744,70.68666 - parent: 40203 -- proto: OreBagOfHolding - entities: - - uid: 42306 + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 46584 + - uid: 46743 components: - type: Transform - rot: 5.218534463463046 rad - pos: 23.6,74.2 - parent: 40203 -- proto: OreBox + pos: 1.5,14.5 + parent: 46584 + - uid: 46744 + components: + - type: Transform + pos: 0.5,14.5 + parent: 46584 + - uid: 46745 + components: + - type: Transform + pos: 2.5,14.5 + parent: 46584 +- proto: PlasmaTank entities: - - uid: 41256 + - uid: 45356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 40203 - - type: Storage - storedItems: - 41257: - position: 0,3 - _rotation: South - 41259: - position: 5,1 - _rotation: North - 41260: - position: 2,1 - _rotation: East - 41261: - position: 2,3 - _rotation: North - 41258: - position: 7,2 - _rotation: East - 41262: - position: 5,4 - _rotation: South + pos: -2.1987104,25.169998 + parent: 45355 + - type: GasTank + toggleActionEntity: 45357 + - type: ActionsContainer - type: ContainerContainer containers: - storagebase: !type:Container - showEnts: False - occludes: True + actions: !type:Container ents: - - 41257 - - 41258 - - 41259 - - 41261 - - 41260 - - 41262 -- proto: OreProcessor + - 45357 +- proto: PlasmaWindoorJanitorLocked entities: - - uid: 23755 + - uid: 24460 components: - type: Transform - pos: 71.5,-47.5 + pos: 5.5,34.5 parent: 2 - - uid: 42307 + - uid: 24461 components: - type: Transform - pos: 28.5,72.5 - parent: 40203 -- proto: OrganArachnidTongue + pos: 4.5,34.5 + parent: 2 +- proto: PlasmaWindoorSecureCommandLocked entities: - - uid: 15579 + - uid: 24462 components: - type: Transform - parent: 15578 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OrganDionaLungs - entities: - - uid: 23756 + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 24463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.68234,33.8259 + pos: -1.5,14.5 parent: 2 - - uid: 23757 +- proto: PlasmaWindoorSecureScienceLocked + entities: + - uid: 24464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.161503,31.211317 + pos: 32.5,-36.5 parent: 2 - - uid: 23758 + - uid: 24465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.51567,31.805067 + pos: 31.5,-36.5 parent: 2 -- proto: OrganHumanAppendix - entities: - - uid: 15580 + - uid: 24466 components: - type: Transform - parent: 15578 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OrganHumanEars - entities: - - uid: 15581 + pos: 30.5,-36.5 + parent: 2 + - uid: 24467 components: - type: Transform - parent: 15578 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OrganHumanEyes - entities: - - uid: 23759 + pos: 37.5,-55.5 + parent: 2 + - uid: 24468 components: - type: Transform - pos: 57.474003,31.450901 + pos: 36.5,-55.5 parent: 2 - - uid: 23760 + - uid: 24469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.349003,33.61757 + pos: 38.5,-55.5 parent: 2 -- proto: OrganHumanHeart +- proto: PlasmaWindoorSecureSecurityLocked entities: - - uid: 23761 + - uid: 24470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.786503,31.544651 + pos: -23.5,19.5 parent: 2 - - uid: 23762 + - uid: 24471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.79692,33.596733 + rot: -1.5707963267948966 rad + pos: -23.5,19.5 parent: 2 -- proto: OrganHumanKidneys - entities: - - uid: 23763 + - uid: 42749 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.849003,31.700901 - parent: 2 - - uid: 23764 + pos: 46.5,77.5 + parent: 40599 + - type: Occluder + boundingBox: -0.5,-0.5,0.5,-0.3 + - uid: 42750 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.90109,33.77382 - parent: 2 -- proto: OrganHumanLiver - entities: - - uid: 23765 + pos: 46.5,83.5 + parent: 40599 + - type: Occluder + boundingBox: -0.5,-0.5,0.5,-0.3 + - uid: 42751 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.60942,33.659233 - parent: 2 - - uid: 23766 + pos: 46.5,79.5 + parent: 40599 + - type: Occluder + boundingBox: -0.5,-0.5,0.5,-0.3 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 24472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.40109,33.190483 + rot: 1.5707963267948966 rad + pos: 76.5,-31.5 parent: 2 - - uid: 23767 +- proto: PlayerStationAi + entities: + - uid: 24473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.49484,31.565483 + pos: 2.5,13.5 parent: 2 -- proto: OrganHumanStomach + - type: PointLight + energy: 5 + color: '#1883E4FF' + radius: 3 +- proto: PlushieArachind entities: - - uid: 23768 + - uid: 24474 components: + - type: MetaData + desc: Очаровательная мягкая игрушка с плутонием внутри. + name: плюшевый Фолкус - type: Transform - rot: 1.5707963267948966 rad - pos: 57.692753,31.700901 + pos: -127.62323,-15.385517 parent: 2 - - uid: 23769 + - type: StaticPrice + price: 5000 + - type: RadiationSource +- proto: PlushieAtmosian + entities: + - uid: 24475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.286503,33.3884 + pos: 26.753233,-2.9812903 parent: 2 - - uid: 23770 + - uid: 24476 components: + - type: MetaData + desc: Очаровательная мягкая игрушка, напоминающая храброго атмосианина. К сожалению, он не сделает литры фрезона за вас. Если вы злоупотребляете бюджетом атмоса, рано или поздно он придет за вами с топором... + name: плюшевый JustUser - type: Transform - rot: 1.5707963267948966 rad - pos: 55.849003,32.29465 + pos: 8.484182,-53.585407 parent: 2 -- proto: OrganRatStomach - entities: - - uid: 23771 + - uid: 24477 components: + - type: MetaData + desc: Очаровательная мягкая игрушка, напоминающая храброго атмосианина. К сожалению он не сварит за вас литры фрезона. Если вы злоупотребляете бюджетом атмосов, рано или поздно он придет за вами с топором... + name: JustUser - type: Transform - pos: -89.740524,10.648603 + pos: -77.512856,1.6400677 parent: 2 -- proto: OxygenCanister +- proto: PlushieBee entities: - - uid: 23772 + - uid: 42752 components: + - type: MetaData + desc: Чиназес + name: плюшевый Dezzzix - type: Transform - pos: 48.5,-50.5 - parent: 2 - - uid: 23773 + pos: 28.073858,61.926765 + parent: 40599 +- proto: PlushieCarp + entities: + - uid: 24478 components: - type: Transform - pos: -23.5,-58.5 + pos: 92.547775,-17.498913 parent: 2 - - uid: 23774 +- proto: PlushieDiona + entities: + - uid: 24479 components: - type: Transform - pos: -11.5,8.5 + pos: 23.485535,48.579548 parent: 2 - - uid: 23775 +- proto: PlushieGhost + entities: + - uid: 24480 components: - type: Transform - pos: -10.5,-56.5 + pos: -18.282412,67.56374 parent: 2 - - uid: 23776 + - uid: 24481 components: - type: Transform - pos: 76.5,-43.5 + rot: 3.141592653589793 rad + pos: -26.481,-20.359512 parent: 2 - - uid: 23777 +- proto: PlushieHampter + entities: + - uid: 24482 components: + - type: MetaData + desc: От него веет дымкой. + name: SatuSmoke - type: Transform - pos: -46.5,-13.5 + pos: -80.16838,4.5221906 parent: 2 -- proto: OxygenTankFilled +- proto: PlushieHolocarp entities: - - uid: 13 + - uid: 42753 components: + - type: MetaData + desc: Он мертв.... + name: электрокарп - type: Transform - parent: 12 - - type: GasTank - toggleActionEntity: 14 + rot: 3.141592653589793 rad + pos: 54.5,45.5 + parent: 40599 - type: Physics canCollide: False - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 14 - - type: InsideEntityStorage - - uid: 42308 + bodyType: Static + missingComponents: + - Item + - uid: 42754 components: + - type: MetaData + desc: Он мертв... + name: электрокарп - type: Transform - rot: -0.4363323129985824 rad - pos: 38.47,80.49786 - parent: 40203 -- proto: PackPaperRollingFilters + rot: 3.141592653589793 rad + pos: 50.5,45.5 + parent: 40599 + - type: Physics + canCollide: False + bodyType: Static + missingComponents: + - Item +- proto: PlushieHuman entities: - - uid: 23778 - components: - - type: Transform - pos: 79.538025,5.5973077 - parent: 2 - - uid: 23779 - components: - - type: Transform - pos: 79.70925,5.707383 - parent: 2 - - uid: 23780 + - uid: 24483 components: + - type: MetaData + desc: Плюшевый дворф из войлока. Качество - ниже не бывает. Дворф голый. Дворф плачет. Дворф кричит. Дворф копает. + name: плюшевый дворф - type: Transform - pos: -117.52675,15.455702 + pos: -118.27755,32.363674 parent: 2 - - uid: 42309 + - uid: 46117 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.265541,29.74499 - parent: 40203 -- proto: PaintingHelloWorld + pos: -1.7818213,25.188519 + parent: 45355 +- proto: PlushieLizard entities: - - uid: 23781 + - uid: 19785 components: + - type: MetaData + desc: ДЖАСИН НЕТ!!! + name: ReitorioN - type: Transform - pos: -45.5,1.5 + pos: -80.12182,15.4130535 parent: 2 -- proto: PaintingOldGuitarist - entities: - - uid: 23782 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19786 + - uid: 24484 components: + - type: MetaData + desc: Император ЕРП империи. + name: плюшевый Боулевард Киллсайд - type: Transform - rot: -1.5707963267948966 rad - pos: -126.5,-13.5 + pos: -37.518524,24.660763 parent: 2 -- proto: PaintingSadClown - entities: - - uid: 23783 + - uid: 24485 components: - type: Transform - pos: 62.5,13.5 + pos: 58.21001,-26.411352 parent: 2 -- proto: PaintingSaturn - entities: - - uid: 23784 + - uid: 24486 components: - type: Transform - pos: -1.5,17.5 + pos: 58.71001,-27.333227 parent: 2 -- proto: PaintingSkeletonBoof - entities: - - uid: 23785 + - uid: 24487 components: + - type: MetaData + desc: Нахимичил и рад. + name: Meguneri - type: Transform - pos: 2.5,17.5 + pos: -78.15789,3.8645697 parent: 2 -- proto: PaintingSleepingGypsy +- proto: PlushieLizardMirrored entities: - - uid: 23786 + - uid: 24488 components: + - type: MetaData + desc: Гласир! + name: Kavalsky - type: Transform - pos: 0.5,17.5 + pos: -80.69427,15.413228 parent: 2 - - uid: 42310 + - uid: 24489 components: - type: Transform - pos: 66.5,80.5 - parent: 40203 -- proto: PaintingTheGreatWave - entities: - - uid: 42311 + pos: -30.273613,-49.317707 + parent: 2 + - uid: 24490 components: - type: Transform - pos: 63.5,80.5 - parent: 40203 -- proto: PaintingTheSonOfMan - entities: - - uid: 42312 + pos: 21.599209,48.603783 + parent: 2 + - uid: 24491 components: - type: Transform - pos: 76.5,74.5 - parent: 40203 -- proto: PairedChopsticks - entities: - - uid: 45760 + pos: 57.24126,-27.208227 + parent: 2 + - uid: 24492 components: + - type: MetaData + desc: Я не унатх, я тостер. + name: Resoid - type: Transform - pos: 1.7076495,4.4630036 - parent: 44970 -- proto: Paper + pos: -81.147606,3.5485344 + parent: 2 +- proto: PlushieMoth entities: - - uid: 8218 - components: - - type: Transform - parent: 8214 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] Гласир ЦК [/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - РАЗРЕШЕНИЕ НА НОШЕНИЕ ОРУЖИЯ - ============================================= - - - Священнику комплекса Гласир разрешено владеть короткоствольным дробовиком "Аннабель" до тех пор, пока оно используется по назначению. В случае нарушения разрешение аннулируется, оружие изымается Службой Безопасности. - - - - ============================================= - [italic]Место для печатей[/italic] - - type: Physics - canCollide: False - - uid: 8242 - components: - - type: Transform - parent: 8241 - - type: Physics - canCollide: False - - uid: 8243 - components: - - type: Transform - parent: 8241 - - type: Physics - canCollide: False - - uid: 8244 - components: - - type: Transform - parent: 8241 - - type: Physics - canCollide: False - - uid: 8261 - components: - - type: Transform - parent: 8259 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >- - [color=#228B22][color=#d4af37]███[/color][color=#228B22]░███░░░░██░░░░ [color=#d4af37] ★★★[/color] - - [color=#228B22]░██░██[color=#d4af37]██[/color]░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#228B22]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#228B22]░░░░██░░[color=#d4af37]██[/color]░██░██░[/color] [bold] ЦК-КОМ[/bold] - - [color=#228B22]░░░░██░░░████░[/color][color=#d4af37]███ ★★★[/color] [color=black] - - ============================================= - УВЕДОМЛЕНИЕ СЕКТОРАЛЬНОГО ШТАБА ЦК - ============================================= - - Должность составителя: Оператор ЦК - - - Уважаемое Командование Станции! - - - Уведомляем вас, что все секретные документы были вывезены перед вашим прибытием. Оставьте это уведомление для следующего экипажа станции. - - - ============================================= - [italic]Место для печатей[/italic] - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 8267 - components: - - type: Transform - parent: 8266 - - type: Physics - canCollide: False - - uid: 8268 - components: - - type: Transform - parent: 8266 - - type: Physics - canCollide: False - - uid: 8269 + - uid: 24493 components: - type: Transform - parent: 8266 - - type: Physics - canCollide: False - - uid: 8270 + rot: -1.5707963267948966 rad + pos: 8.609222,-46.511353 + parent: 2 + - uid: 24494 components: + - type: MetaData + desc: Умелый атмос, особено в теме космических ветров, особено когда сдувает JustUser + name: ArZarLordOfMango - type: Transform - parent: 8266 - - type: Physics - canCollide: False - - uid: 8271 + pos: -76.91312,1.2216735 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 24495 components: + - type: MetaData + name: Оперативник Сайбот - type: Transform - parent: 8266 - - type: Physics - canCollide: False - - uid: 14894 + pos: -6.7087593,16.396034 + parent: 2 +- proto: PlushieRainbowCarp + entities: + - uid: 24496 components: - type: Transform - parent: 14890 - - type: Paper - content: Ваша задача как смотрителя солнечных панелей на эту зиму - своевременная починка солнечных панелей и заправка суперпакмана. Так как в этот период солнечного света недостаточно для снабжения станции, вам необходимо заправлять генератор ураном и не допускать его взрыва. Персонал заступит на смену в начале следующего года. - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15624 + rot: 3.141592653589793 rad + pos: -75.38961,37.71111 + parent: 2 +- proto: PlushieRainbowLizard + entities: + - uid: 24497 components: - type: Transform - parent: 15623 - - type: Paper - content: '[head=3][italic]Я бессмертен, братишка[/head][/italic]' - - type: Physics - canCollide: False - - uid: 23787 + pos: -52.373413,25.274815 + parent: 2 +- proto: PlushieRouny + entities: + - uid: 24498 components: - - type: MetaData - name: визитка - type: Transform rot: -1.5707963267948966 rad - pos: 37.315166,17.555656 + pos: 50.57188,-6.290017 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - uid: 23788 + - uid: 24499 components: - - type: MetaData - name: визитка - type: Transform - rot: -0.6108652381980153 rad - pos: -15.260597,1.1768914 + pos: 92.485275,-14.514538 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - - - - - uid: 23789 +- proto: PlushieSharkBlue + entities: + - uid: 24500 components: + - type: MetaData + desc: Именно он ответственен за постройку ерп комнаты... + name: RedTerror - type: Transform - rot: -1.5707963267948966 rad - pos: 28.448841,-32.345074 + pos: -78.76213,0.5378156 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - uid: 23790 + - uid: 24501 components: - - type: MetaData - name: визитка - type: Transform - rot: 3.141592653589793 rad - pos: 77.25129,-48.41051 + pos: 92.53577,-12.449776 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - - - - uid: 23791 +- proto: PlushieSharkGrey + entities: + - uid: 24502 components: - type: MetaData - name: визитка + desc: Если не войду в историю, войду в твою сестру! + name: Dezzzix - type: Transform - rot: 1.5707963267948966 rad - pos: -28.693783,-7.2230387 + pos: -79.46575,2.5484762 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - uid: 23792 +- proto: PlushieSharkPink + entities: + - uid: 24097 + components: + - type: Transform + parent: 24096 + - type: Physics + canCollide: False + - uid: 24503 components: - type: MetaData - name: визитка + desc: 'Хонкула RTRа :) ' - type: Transform - pos: -4.265172,-47.38311 + rot: -0.9075712110370514 rad + pos: -101.729805,27.598394 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - uid: 23793 + - uid: 24504 components: - type: Transform - pos: -14.514872,51.57496 + pos: 6.5606146,61.58816 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - uid: 23794 + - uid: 24505 components: - type: MetaData - name: визитка + desc: Уплыла. + name: meowstushka - type: Transform - pos: 33.60009,-9.4413595 + pos: -82.82333,2.7351038 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - - - - - - - uid: 23795 +- proto: PortableFlasher + entities: + - uid: 24506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.993126,-48.40966 + pos: -39.5,-6.5 parent: 2 - - type: Paper - content: >+ - --. --- .-- --- .-. .. - / - . ... .-.. .- --. .-. .- -.. -.-.-- / ..- / -. .- ... / ---. .--. / -. ..- ...- -. .- / .--. --- -- --- --.- -..- .-.-.- / . ... .-.. .. / -.- - --- -....- - --- / ..-.. - --- / ... .-.. -.-- ---- .. - / -....- / -.- --- --- .-. -.. .. -. .- - -.-- ---... - - - [head=3]205, 125[/head] - - - uid: 23796 + - uid: 24507 components: - - type: MetaData - name: визитка - type: Transform - rot: 3.141592653589793 rad - pos: 45.305832,-1.3303955 + pos: -44.5,-6.5 parent: 2 - - type: Paper - content: >+ - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - - uid: 23797 + - uid: 24508 components: - type: Transform - pos: -40.494846,3.8944569 + pos: -39.5,-8.5 parent: 2 - - type: Paper - stampState: paper_stamp-syndicate - stampedBy: - - stampedColor: '#850000FF' - stampedName: Boykisser - content: > - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⢀⣀⣀⠀⠀⠀⠀⠀⠀⣿⢷⡄⠀⠀⠀⠀⠀⣀⣠⣤⣤⡤⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⣌⠉⠉⣛⣷⡴⠶⠶⠶⣟⡆⠙⣧⣤⡴⠞⠛⠉⠉⠀⠀⢀⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⢻⡄⠻⣯⡀⠀⠀⠀⠀⠀⠀⠀⠈⠛⠆⠀⠀⠀⠀⠀⠀⢼⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠸⣇⠀⠈⠙⠷⠆⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⡿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⢻⡆⠀⠀⢀⣤⣤⣀⠀⠀⠀⣴⡞⠾⣦⡀⠀⠀⣠⡾⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠈⢻⣆⠀⣾⠁⡏⢹⠀⠀⢐⡇⠸⠀⠸⠇⠀⠶⣾⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⢈⡽⣂⢃⠀⣇⢸⠀⡀⢀⡧⠼⠀⣰⣶⠆⢰⡟⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠈⢻⡿⣟⡃⠈⠘⠻⣯⡉⣿⠀⠀⠀⣠⡟⣘⣷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⢸⣇⣨⣛⣶⠶⠲⠈⠛⠋⠀⠀⠚⣿⣀⣉⣡⣤⣤⣄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⢀⣴⡾⡛⠫⣿⠳⣥⡀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡟⢭⢈⠈⠙⢷⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⢀⣾⠡⢕⠈⠈⡼⣟⣿⠀⠀⠀⠀⠀⠀⠀⢠⡀⢹⡡⡁⣀⢣⠁⢸⡇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⣯⠀⠘⠢⠂⠀⣿⠻⢾⠀⠀⠀⠀⠀⠀⠈⢻⣌⠗⠈⠈⠀⠀⢸⡇⠀⠀⠀⠀⠀⠀⠀⣠⣿⠀⠀ - - ⠀⠀⠀⠀⢹⣇⠀⠀⠀⠀⠀⠀⢹⡇⠀⠀⠀⠀⠀⠀⢸⡻⣦⡀⠀⠀⠀⣸⠇⠀⠀⠀⠀⠀⣠⡾⠋⣿⠀⠀ - - ⠀⠀⠀⠀⠀⢻⣆⠀⠀⠀⠀⣰⣿⠃⠀⠀⠀⠀⠀⠀⠈⣦⣈⠻⠶⠆⣠⣿⣆⣤⢾⡄⣠⡾⠋⠀⠀⢸⡆⠀ - - ⠀⠀⠀⠀⠀⠀⠙⢷⣀⣀⡾⣻⠇⠀⠀⠀⠀⠀⠀⠀⠀⠈⠙⢿⡟⠛⠛⠓⠉⠀⠸⠟⠁⠀⠀⠀⠀⠈⣇⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠘⠋⠉⢱⡏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢿⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⡟⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠰⢶⣿⡁⠀⠀⠘⢳⡖⠀⠀⠀⠀⠀⠀⣼⠇⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢰⡇⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠰⣿⡄⠀⠀⠀⠨⣏⠀⠀⠀⠀⠀⠀⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣧⠀⠀⠀⠀⣭⠀⠀⠀⠀⢀⣀⣿⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⣀⣤⠟⠁⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡶⠶⢦⠌⣿⠛⠛⠛⠛⠋⡉⣿⠀⠀⢀⠀⠀⢠⡴⠶⠶⠛⠉⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣷⣀⢀⡀⣽⡇⠤⠤⠒⠊⠀⣻⠄⠀⠘⠻⠶⠾⠛⠂⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡆⠀⠀⢐⡧⠀⠀⠀⠀⡠⣾⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠈⣷⠒⠒⠁⣿⠂⠒⠈⠉⠀⣾⠂⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ - - ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢹⡆⠄⠒⠹⡗⠂⠒⠒⠉⣿⠀⠀⠀⠀ - - uid: 23798 +- proto: PortableGeneratorJrPacman + entities: + - uid: 24509 components: - type: Transform - pos: -26.664356,16.543526 + pos: 44.5,33.5 parent: 2 - - uid: 23799 + - uid: 24510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.263916,-16.150003 + pos: -12.5,-49.5 parent: 2 - - uid: 23800 + - uid: 24511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.170166,-16.071878 + pos: -20.5,-50.5 parent: 2 - - uid: 23801 + - uid: 24512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.96704,-16.071878 + pos: -20.5,-49.5 parent: 2 - - uid: 23802 + - uid: 24513 components: - type: Transform - pos: -7.5048704,16.585558 + pos: -24.5,39.5 parent: 2 - - type: Paper - content: ЭТО ПИВНАЯ!!! - - uid: 23803 + - uid: 24514 components: - type: Transform - pos: 57.89096,13.526648 + pos: 50.5,-48.5 parent: 2 - - uid: 23804 + - uid: 24515 components: - type: Transform - pos: 58.10971,13.651648 + pos: 35.5,45.5 parent: 2 - - uid: 23805 + - uid: 24516 components: - type: Transform - pos: 58.344086,13.573523 + pos: 45.5,-28.5 parent: 2 - - uid: 23806 + - uid: 24517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.63881,12.67103 + pos: -106.5,44.5 parent: 2 - - uid: 23807 +- proto: PortableGeneratorSuperPacmanMachineCircuitboard + entities: + - uid: 24518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.51381,12.29603 + rot: -1.5707963267948966 rad + pos: -55.18817,66.29156 parent: 2 - - uid: 23808 +- proto: PortableRecharger + entities: + - uid: 42755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.63881,12.20228 + pos: 53.51183,34.576233 + parent: 40599 +- proto: PortableScrubber + entities: + - uid: 24519 + components: + - type: Transform + pos: -5.5,-55.5 parent: 2 - - uid: 23809 + - uid: 24520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.612164,2.5172603 + pos: -4.5,-55.5 parent: 2 - - uid: 23810 +- proto: PortableScrubberMachineCircuitBoard + entities: + - uid: 24521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.53404,2.7985103 + pos: 15.463729,6.6530046 parent: 2 - - uid: 23811 +- proto: PortalGatewayOrange + entities: + - uid: 24522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.395803,-11.506384 + rot: 3.141592653589793 rad + pos: -33.5,15.5 parent: 2 - - uid: 23812 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 24523 + - uid: 24523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.395803,-11.861071 + rot: 3.141592653589793 rad + pos: -100.5,-5.5 parent: 2 - - uid: 23813 + - type: LinkedEntity + deleteOnEmptyLinks: True + linkedEntities: + - 24522 +- proto: PosterBroken + entities: + - uid: 24524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.640415,-11.775457 + pos: 100.5,-43.5 parent: 2 - - uid: 23814 + - uid: 24525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5308678,-0.6709788 + pos: 98.5,-41.5 parent: 2 - - uid: 23815 + - uid: 24526 + components: + - type: Transform + pos: 102.5,-44.5 + parent: 2 + - uid: 42756 + components: + - type: Transform + pos: 53.5,50.5 + parent: 40599 + - uid: 42757 + components: + - type: Transform + pos: 67.5,76.5 + parent: 40599 + - uid: 42758 + components: + - type: Transform + pos: 36.5,67.5 + parent: 40599 + - uid: 47303 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 47245 +- proto: PosterContrabandAmbrosiaVulgaris + entities: + - uid: 24527 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 42759 + components: + - type: Transform + pos: 71.5,26.5 + parent: 40599 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 24528 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 24529 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5621178,0.6727712 + pos: 98.5,-2.5 parent: 2 - - uid: 23816 + - uid: 24530 components: - type: Transform - pos: -5.7950993,-5.453012 + pos: -45.5,-16.5 parent: 2 - - uid: 23817 + - uid: 42760 components: - type: Transform - pos: -5.4982243,-5.468637 + pos: 59.5,84.5 + parent: 40599 + - uid: 42761 + components: + - type: Transform + pos: 44.5,29.5 + parent: 40599 + - uid: 46118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 45355 +- proto: PosterContrabandBorgFancy + entities: + - uid: 24531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-44.5 parent: 2 - - uid: 23818 +- proto: PosterContrabandBorgFancyv2 + entities: + - uid: 24532 components: - type: Transform - pos: 38.429348,-2.4601312 + rot: 3.141592653589793 rad + pos: 21.5,-30.5 parent: 2 - - uid: 23819 +- proto: PosterContrabandBountyHunters + entities: + - uid: 24533 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.366848,-2.3663812 + pos: -30.5,23.5 parent: 2 - - uid: 23820 +- proto: PosterContrabandBustyBackdoorExoBabes6 + entities: + - uid: 24534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.74198,19.44368 + pos: 97.50704,-29.4412 parent: 2 - - uid: 23821 +- proto: PosterContrabandC20r + entities: + - uid: 24535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.64823,19.553055 + pos: -79.5,14.5 parent: 2 - - uid: 23822 + - uid: 24536 + components: + - type: Transform + pos: -53.5,-8.5 + parent: 2 +- proto: PosterContrabandCC64KAd + entities: + - uid: 42762 + components: + - type: Transform + pos: 42.5,69.5 + parent: 40599 +- proto: PosterContrabandClown + entities: + - uid: 24537 + components: + - type: Transform + pos: 51.5,8.5 + parent: 2 +- proto: PosterContrabandDonk + entities: + - uid: 24538 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 42763 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.707147,19.09581 + pos: 47.5,78.5 + parent: 40599 +- proto: PosterContrabandEAT + entities: + - uid: 24539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,5.5 parent: 2 - - uid: 23823 + - uid: 24540 components: - type: Transform - pos: 64.46128,-30.293724 + rot: 3.141592653589793 rad + pos: 26.5,30.5 parent: 2 - - uid: 23824 + - uid: 42764 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,80.5 + parent: 40599 +- proto: PosterContrabandFreeSyndicateEncryptionKey + entities: + - uid: 24541 components: - type: Transform - pos: 64.61753,-30.304142 + pos: -57.5,51.5 parent: 2 - - uid: 23825 + - uid: 24542 components: - type: Transform - pos: 64.52378,-30.481224 + rot: 3.141592653589793 rad + pos: 26.5,53.5 parent: 2 - - uid: 23826 +- proto: PosterContrabandFreeTonto + entities: + - uid: 24543 components: - type: Transform - pos: -34.655163,0.5566087 + pos: 25.5,21.5 parent: 2 - - uid: 23827 +- proto: PosterContrabandFunPolice + entities: + - uid: 42765 components: - type: Transform - pos: -34.530163,0.5566087 + pos: 35.5,79.5 + parent: 40599 +- proto: PosterContrabandGreyTide + entities: + - uid: 24544 + components: + - type: Transform + pos: 55.5,34.5 parent: 2 - - uid: 23828 +- proto: PosterContrabandHackingGuide + entities: + - uid: 24545 components: + - type: MetaData + desc: Откручиваем панель отвёрткой, берём мультитул и прозваниваем им контакты, если горит красным БОЛТЫ - тыкаем ещё раз, если же свет погас, то вскрываем шлюз ломом. Не забудьте про изолированные перчатки! Можно использовать кусачки, но тогда у вас только один шанс. - type: Transform - pos: -75.72072,40.61236 + pos: 14.5,27.5 parent: 2 - - type: Paper - content: > - Только что слышал, как чуть севернее этого места кто-то что-то закапывал. Что же там такое? А хотя черт с ним, мне пора домой. - - uid: 23829 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 24546 components: - type: Transform - pos: -64.16043,27.940754 + pos: 17.5,41.5 parent: 2 - - type: Paper - content: > - балка не выдержала, и меня завалило... - - - сколько мне тут ещё сидеть? - - - как же хочется домой... - - - у меня слишком мало еды.. - - - я пробовал раскопаться, но всё безуспешно, кругом один лишь только снег... - - - вот и всё, костер погас... осталось гадать, умру я от холода или голода... - - - дружище, если ты это читаешь то никогд_______ - |____ - - uid: 23830 +- proto: PosterContrabandKudzu + entities: + - uid: 24547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.635098,52.448757 + rot: 3.141592653589793 rad + pos: 12.5,42.5 parent: 2 - - type: Paper - content: > - Иногда мне становится интересно, какого черта мы тут делаем? Какой-то там командир послал нас сюда найти какое-то закопанное сокровище... - - Ходила легенда, что один человек по имени Дейви Джонс, смог украсть передовые технологии киберсана и НТ, а затем совместил их, и получил нечто новое. И это что то, понимая что за ним идет охота, он закопал где то тут. - - А не вранье ли это? Черт его знает... - - - По крайней мере, тут красиво, да и можно собраться с мыслями... - - uid: 23831 +- proto: PosterContrabandLamarr + entities: + - uid: 24548 components: - type: Transform - pos: -127.24823,-15.698017 + pos: 30.5,-50.5 parent: 2 - - type: Paper - content: > - Если ты нашёл моё сокровище, то знай, я тебя найду, НАЙДУ И СОТРУ В ПОРОШОК!!! - - Фолкус - - uid: 23832 + - uid: 42766 + components: + - type: Transform + pos: 43.5,23.5 + parent: 40599 +- proto: PosterContrabandLustyExomorph + entities: + - uid: 24549 components: - type: Transform - pos: -54.43893,45.6795 + rot: 3.141592653589793 rad + pos: 32.5,-57.5 parent: 2 - - type: Paper - content: >2 - - - - - - ещё пару дней, и у меня будет контрабандного мяса на миллионы! - - - - Черт, тут медведи! Наверное учуяли запах мяса... - - просто буду сидеть тут тихо... - - uid: 23833 + - uid: 24550 components: - type: Transform - pos: 3.568894,61.371994 + pos: -47.5,16.5 parent: 2 - - type: Paper - stampState: paper_stamp-psychologist - stampedBy: - - stampedColor: '#0082AEFF' - stampedName: stamp-component-stamped-name-psychologist - content: "Медикаментозная терапия психических расстройств.\n\n \n Нарколепсия \n - эфедрин, дозировка 30 +диловен\n - дезоксиэфедрин - лучший выбор, дозировка 20 +диловен\n - этилоксиэфедрин, дозировка 10\n - дифенилметиламин, очень дорог, дозировка 5\n\nПриступы агрессии, обострения.\n \n - пакс - успокоительное, дозировка от 5\n - хлоральгидрат - снотворное, дозировка от 10\n - криптобиолин - дезориентирует больного\n\nПовреждения мозга\n \n - маннитол, действие до конца не изучено\n\nТревожность, дрожь, опьянение\n\n - псикодин, побочные эффекты в виде галлюцинаций\n - этилредоксразин - безопасный отрезвитель\n\nГаллюцинации\n\n - синаптизин, крайне токсичен, только с диловеном\n - галоперидол, также убирает дрожь, вызывает сонливость\n\nДепрессия, шизофрения\n\n - Импедризин, токсичен, только с диловеном\n - Космический мираж - безопасный галлюциноген\n - Счастье - вызывает повреждения мозга\n - ТГК - содержится в конопле\n - Токсин Майндбрекер, он же ЛСД. Действует дольше, чем мираж\n\n\n" - - uid: 23834 + - uid: 24551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.337194,42.63901 + rot: -1.5707963267948966 rad + pos: -116.5,22.5 parent: 2 - - uid: 23835 + - uid: 46119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.22782,44.467136 + rot: -1.5707963267948966 rad + pos: 8.5,9.5 + parent: 45355 + - uid: 46120 + components: + - type: Transform + pos: 0.5,10.5 + parent: 45355 +- proto: PosterContrabandMissingGloves + entities: + - uid: 24552 + components: + - type: Transform + pos: 25.5,-13.5 parent: 2 - - uid: 23836 +- proto: PosterContrabandNuclearDeviceInformational + entities: + - uid: 24553 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 +- proto: PosterContrabandPower + entities: + - uid: 24554 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 24555 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.309674,53.88594 + pos: -116.5,26.5 parent: 2 - - uid: 23837 +- proto: PosterContrabandRevolt + entities: + - uid: 24556 components: - type: Transform - pos: -43.03664,10.459002 + rot: -1.5707963267948966 rad + pos: -31.5,22.5 parent: 2 - - uid: 23838 +- proto: PosterContrabandRIPBadger + entities: + - uid: 24557 components: - type: Transform - pos: -43.083515,10.584002 + pos: 25.5,18.5 parent: 2 - - uid: 23839 +- proto: PosterContrabandRise + entities: + - uid: 24558 components: - type: Transform - pos: -43.083515,10.724627 + rot: -1.5707963267948966 rad + pos: -116.5,18.5 parent: 2 - - uid: 23840 + - uid: 42767 + components: + - type: Transform + pos: 30.5,73.5 + parent: 40599 + - uid: 42768 + components: + - type: Transform + pos: 33.5,30.5 + parent: 40599 + - uid: 46121 + components: + - type: Transform + pos: -1.5,10.5 + parent: 45355 +- proto: PosterContrabandSmoke + entities: + - uid: 42769 + components: + - type: Transform + pos: 58.5,77.5 + parent: 40599 +- proto: PosterContrabandSpaceCola + entities: + - uid: 24559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-0.5 + parent: 2 +- proto: PosterContrabandSpaceCube + entities: + - uid: 42770 + components: + - type: Transform + pos: 64.5,43.5 + parent: 40599 + - uid: 42771 + components: + - type: Transform + pos: 64.5,43.5 + parent: 40599 +- proto: PosterContrabandSunkist + entities: + - uid: 46122 + components: + - type: Transform + pos: -3.5,3.5 + parent: 45355 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 24560 + components: + - type: Transform + pos: 89.5,-27.5 + parent: 2 + - uid: 24561 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.3924136,-31.72242 + pos: 95.5,-6.5 parent: 2 - - uid: 23841 + - uid: 24562 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 47304 + components: + - type: Transform + pos: 3.5,0.5 + parent: 47245 +- proto: PosterContrabandTheBigGasTruth + entities: + - uid: 24563 + components: + - type: Transform + pos: -20.5,-64.5 + parent: 2 + - uid: 42772 + components: + - type: Transform + pos: 37.5,71.5 + parent: 40599 +- proto: PosterContrabandTheGriffin + entities: + - uid: 42773 + components: + - type: Transform + pos: 27.5,69.5 + parent: 40599 +- proto: PosterContrabandTools + entities: + - uid: 24564 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.3924136,-31.97242 + pos: 28.5,-4.5 parent: 2 - - uid: 23842 +- proto: PosterContrabandUnreadableAnnouncement + entities: + - uid: 24565 + components: + - type: MetaData + desc: В ходе расследования было выявлено, что врата вызывают глобальную экологическую аномалию. В связи с данной проблемой, руководство деактивировало врата до тех пор, пока не будут найдены меры противодействия. Приносим свои извинения, спасибо за внимание. + name: объявление о закрытии врат + - type: Transform + rot: 3.141592653589793 rad + pos: 93.503044,-35.99981 + parent: 2 + - uid: 24566 components: + - type: MetaData + desc: Плакат, объявляющий о чём-то, однако, кажется, что они, забыли сделать его читаемым. Вы можете разобрать лишь пару слов.. "Мапперская сходка". - type: Transform rot: -1.5707963267948966 rad - pos: -10.419049,53.714066 + pos: -82.5,6.5 parent: 2 - - uid: 23843 + - uid: 46123 components: + - type: MetaData + desc: Самая обычная, слегка обгоревшая вывеска. + name: горячие источники "тёплая плазма" - type: Transform - rot: 1.5707963267948966 rad - pos: 11.266441,-46.510803 + pos: 3.5,0.5 + parent: 45355 +- proto: PosterContrabandVoteWeh + entities: + - uid: 24567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-10.5 parent: 2 - - type: Paper - content: >- - [bold]Список дел:[/bold] - - Починить пробоину на мостике - - Сходить выпить - - Заполнить отчёт о ремонте - - Переименовать наконец подстанцию яйцеголовых в конфигурации! - - uid: 23844 +- proto: PosterContrabandWehWatches + entities: + - uid: 24568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.6217034,53.796997 + pos: -18.5,11.5 parent: 2 - - uid: 23845 + - uid: 42774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5279534,53.578247 + pos: 81.5,33.5 + parent: 40599 +- proto: PosterLegit12Gauge + entities: + - uid: 24569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-10.5 parent: 2 - - uid: 23846 + - uid: 24570 components: - type: Transform - pos: 1.9029534,54.796997 + pos: -72.5,17.5 parent: 2 - - uid: 23847 +- proto: PosterLegit50thAnniversaryVintageReprint + entities: + - uid: 42775 components: - type: Transform - pos: 3.381394,61.496994 + pos: 48.5,56.5 + parent: 40599 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 24571 + components: + - type: Transform + pos: -27.5,44.5 parent: 2 - - uid: 23848 +- proto: PosterLegitBlessThisSpess + entities: + - uid: 42776 components: - type: Transform - pos: 32.85169,-9.492445 + pos: 50.5,50.5 + parent: 40599 +- proto: PosterLegitBuild + entities: + - uid: 24572 + components: + - type: Transform + pos: 3.5,-45.5 parent: 2 - - uid: 23849 + - uid: 42777 components: - type: Transform - pos: -24.442257,26.3878 + pos: 69.5,62.5 + parent: 40599 +- proto: PosterLegitCarbonDioxide + entities: + - uid: 24573 + components: + - type: Transform + pos: -11.5,43.5 parent: 2 - - uid: 23850 +- proto: PosterLegitCarpMount + entities: + - uid: 24574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.49069,25.648216 + pos: 73.5,-36.5 parent: 2 - - uid: 23851 + - uid: 47083 components: - type: Transform - pos: 32.78919,-9.367445 + pos: 0.5,1.5 + parent: 46943 +- proto: PosterLegitCleanliness + entities: + - uid: 24575 + components: + - type: Transform + pos: 8.5,47.5 parent: 2 - - uid: 23852 + - uid: 24576 components: - type: Transform - pos: 6.0683947,21.840733 + pos: 32.5,35.5 parent: 2 - - type: Paper - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold][/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - ШТРАФ - ============================================= - - За нарушение техники пожарной безопасности при эксплуатации помещения вам будет выписан штраф в размере 1000 спесосов. - - - ============================================= - [italic]Место для печатей[/italic] - - uid: 23853 + - uid: 24577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.7587547,22.283754 + pos: 9.5,49.5 parent: 2 - - type: Paper - content: "[color=#228B22][color=#d4af37]███[/color][color=#228B22]░███░░░░██░░░░ [color=#d4af37] ★★★[/color]\r\n[color=#228B22]░██░██[color=#d4af37]██[/color]░░░██░░░░[/color] [head=3]Бланк документа[/head]\r\n[color=#228B22]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head]\r\n[color=#228B22]░░░░██░░[color=#d4af37]██[/color]░██░██░[/color] [bold] ЦК-КОМ[/bold]\r\n[color=#228B22]░░░░██░░░████░[/color][color=#d4af37]███ ★★★[/color] [color=black]\r\n=============================================\r\n ПРИКАЗ СЕКТОРАЛЬНОГО ШТАБА ЦК\r\n=============================================\r\n\nДолжность составителя: Оператор ЦК\r\n\r\nУважаемый Старший Инженер станции!\r\n\r\nЗа игнорирование требований техники пожарной безопасности при проектировании станции из вашей зарплаты будет вычтен штраф в размере 5000 спесосов.\n\r\n\r\n=============================================\r\n [italic]Место для печатей[/italic] [/color]\n " - - uid: 23854 + - uid: 24578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.799886,-1.3402996 + pos: -56.5,-3.5 parent: 2 - - uid: 23855 + - uid: 42778 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.643636,-1.4340496 - parent: 2 - - uid: 23856 + pos: 55.5,83.5 + parent: 40599 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 24579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.9573107,-1.3753695 + pos: -6.5,62.5 parent: 2 - - uid: 23857 + - uid: 42779 + components: + - type: Transform + pos: 34.5,67.5 + parent: 40599 +- proto: PosterLegitEnlist + entities: + - uid: 24580 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.64046,-5.2875123 + pos: 95.5,-5.5 parent: 2 - - uid: 23858 +- proto: PosterLegitFoamForceAd + entities: + - uid: 42780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,78.5 + parent: 40599 +- proto: PosterLegitHelpOthers + entities: + - uid: 24581 components: - type: Transform - pos: -74.63088,17.213686 + pos: -19.5,52.5 parent: 2 - - type: Paper - content: > - Мне больно видеть белый свет! - - Мне лучше в полной темноте. - - Я очень много-много лет.... - - Мечтаю только о еде... - - uid: 23859 + - uid: 42781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.35371,24.308737 + pos: 67.5,72.5 + parent: 40599 +- proto: PosterLegitHereForYourSafety + entities: + - uid: 24582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-4.5 parent: 2 - - uid: 23860 + - uid: 42782 + components: + - type: Transform + pos: 46.5,68.5 + parent: 40599 +- proto: PosterLegitHighClassMartini + entities: + - uid: 24583 components: - type: Transform - pos: 75.57045,-38.166645 + pos: 40.5,17.5 parent: 2 - - uid: 23861 +- proto: PosterLegitIan + entities: + - uid: 24584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.38612,20.379799 + pos: -3.5,-13.5 parent: 2 - - uid: 23862 +- proto: PosterLegitIonRifle + entities: + - uid: 24585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.52675,20.176674 + rot: 3.141592653589793 rad + pos: -35.5,-7.5 parent: 2 - - uid: 23863 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 24586 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.3705,16.049452 + pos: -23.5,46.5 parent: 2 - - uid: 23864 + - uid: 42783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.47792,-39.674263 - parent: 2 - - uid: 23865 + pos: 42.5,54.5 + parent: 40599 + - uid: 42784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.59732,57.518482 - parent: 2 - - uid: 23866 + pos: 46.5,72.5 + parent: 40599 + - uid: 42785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.53482,57.237232 - parent: 2 - - uid: 23867 + pos: 74.5,76.5 + parent: 40599 +- proto: PosterLegitLoveIan + entities: + - uid: 24587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.47232,57.487232 + pos: -12.5,-8.5 parent: 2 - - uid: 23868 +- proto: PosterLegitMime + entities: + - uid: 24588 components: - type: Transform - pos: -75.550446,57.534107 + pos: 65.5,11.5 parent: 2 - - uid: 23869 +- proto: PosterLegitNanomichiAd + entities: + - uid: 24589 components: - type: Transform rot: 3.141592653589793 rad - pos: -74.47232,56.487232 + pos: 20.5,-37.5 parent: 2 - - uid: 23870 + - uid: 24590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.56607,56.315357 + pos: -8.5,-13.5 parent: 2 - - uid: 23871 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 24591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.52084,5.4754596 + pos: 3.5,-12.5 parent: 2 - - type: Paper - content: >+ - [bullet]Первое правило Бойцовского клуба: не упоминать о Бойцовском клубе. - - - [bullet]Второе правило Бойцовского клуба: не упоминать [color=red]нигде[/color] о Бойцовском клубе. - - - [bullet]Третье правило Бойцовского клуба: боец крикнул «стоп», выдохся, отключился — бой окончен. - - - [bullet]Четвертое: в бою участвуют лишь двое. - - - [bullet]Пятое: один бой за вечер, друзья. - - - [bullet]Шестое: снимать обувь и рубашки. - - - [bullet]Седьмое: бой продолжается столько, сколько нужно. - - - [bullet]Восьмое и последнее: тот, кто впервые пришёл в клуб — примет бой. - - - - uid: 23872 +- proto: PosterLegitNoERP + entities: + - uid: 24592 components: - type: Transform - pos: -30.844112,-20.361977 + pos: -37.5,15.5 parent: 2 - - uid: 23873 + - uid: 24593 components: - type: Transform - pos: -30.578487,-20.283852 + rot: -1.5707963267948966 rad + pos: -9.5,60.5 parent: 2 - - uid: 23874 + - uid: 46124 components: - type: Transform - pos: -30.515987,-20.393227 - parent: 2 - - uid: 23875 + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 45355 + - uid: 46125 components: - type: Transform - pos: -26.89991,-19.385817 - parent: 2 - - uid: 23876 + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 45355 +- proto: PosterLegitNTTGC + entities: + - uid: 24594 components: - type: Transform - pos: -26.634285,-19.370192 + pos: 4.5,20.5 parent: 2 - - uid: 23877 +- proto: PosterLegitObey + entities: + - uid: 24595 components: - type: Transform - pos: -26.415535,-19.417067 + rot: 3.141592653589793 rad + pos: -43.5,16.5 parent: 2 - - uid: 23878 +- proto: PosterLegitPeriodicTable + entities: + - uid: 24596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.508968,-17.385021 + pos: -11.5,40.5 parent: 2 - - uid: 23879 +- proto: PosterLegitRenault + entities: + - uid: 24597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.270672,-16.338625 + pos: 9.5,-1.5 parent: 2 - - uid: 23880 +- proto: PosterLegitReportCrimes + entities: + - uid: 42786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.383968,-17.416271 - parent: 2 - - uid: 23881 + pos: 63.5,73.5 + parent: 40599 +- proto: PosterLegitSafetyEyeProtection + entities: + - uid: 24598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.145672,-16.41675 + pos: 7.5,-39.5 parent: 2 - - uid: 23882 + - uid: 42787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.56863,-17.501503 - parent: 2 - - type: Paper - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold][color=#57a343]Центральное Командование[/color][/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - [bold][color=orange]Стандартный набор десятичных кодов[/color][/bold] - ============================================= - - [head=3]Реакции на сообщения:[/head] - - [bullet][bold]10-1 - - [color=blue]Отлично![/color][/bullet][/bold] - - [bullet][bold]10-3 [color=red]Повторите - - [/color][/bullet][/bold] - - [bullet][bold]10-4 [color=#32a852]Принял[/color][/bullet][/bold] - - [head=3]Доклад:[/head] - - [bullet][bold]10-10 [color=#32a852]Все чисто[/color][/bullet][/bold] - - [bullet][bold]10-11 [color=gold]Наблюдаю преступника, справлюсь своими силами. - - [/color][/bullet][/bold] - - [bullet][bold]10-12 [color=orange]Наблюдаю преступника, нужно подкрепление. - - [/color][/bullet][/bold] - - [bullet][bold]10-13 [color=red]Cрочно подкрепление![/color] - - [/bullet] - - uid: 23883 + pos: 54.5,56.5 + parent: 40599 +- proto: PosterLegitSafetyInternals + entities: + - uid: 24599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.820606,16.731026 + pos: -9.5,-57.5 parent: 2 - - uid: 23884 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 24600 components: - type: Transform - pos: -26.445606,16.606026 + pos: -24.5,-43.5 parent: 2 - - uid: 23885 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 24601 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.50613,-17.501503 + pos: -14.5,56.5 parent: 2 - - type: Paper - content: >- - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold][color=#57a343]Центральное Командование[/color][/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - [bold][color=orange]Стандартный набор десятичных кодов[/color][/bold] - ============================================= - - [head=3]Реакции на сообщения:[/head] - - [bullet][bold]10-1 - - [color=blue]Отлично![/color][/bullet][/bold] - - [bullet][bold]10-3 [color=red]Повторите - - [/color][/bullet][/bold] - - [bullet][bold]10-4 [color=#32a852]Принял[/color][/bullet][/bold] - - [head=3]Доклад:[/head] - - [bullet][bold]10-10 [color=#32a852]Все чисто[/color][/bullet][/bold] - - [bullet][bold]10-11 [color=gold]Наблюдаю преступника, справлюсь своими силами. - - [/color][/bullet][/bold] - - [bullet][bold]10-12 [color=orange]Наблюдаю преступника, нужно подкрепление. - - [/color][/bullet][/bold] - - [bullet][bold]10-13 [color=red]Cрочно подкрепление![/color] - - [/bullet] - - uid: 23886 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 24602 components: - - type: MetaData - name: Лазерные технологии - type: Transform - pos: 32.92269,-53.338795 + pos: 1.5,-39.5 parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: "-----------------------------------------------------------------------------------\r\n ДЛЯ СЛУЖЕБНОГО ПОЛЬЗОВАНИЯ\r\n Отдел исследований и разработок\r\n\r\nКОПИРОВАНИЕ БЕЗ ПИСЬМЕННОГО РАЗРЕШЕНИЯ НАУЧНОГО РУКОВОДИТЕЛЯ КАРАЕТСЯ 142 СТАТЬЁЙ КОРПОРАТИВНОГО ЗАКОНА.\r\n-----------------------------------------------------------------------------------\r\n Лазерные технологии нт\r\n-----------------------------------------------------------------------------------\r\n Принцип работы:\r\n ___________________________________\r\n | | \r\n | ЭНЕРГОНАКОПЛЕНИЕ | Стандартная ёмкость\r\n | (БАТАРЕЯ) | 1000 Вт\r\n |_________________________________|\r\n | Подача энергии для 1 выстрела\r\n | От 62.5 до 100 Вт \r\n v _______________________________________________________________________\r\n| Активная среда содержит\r\n| АКТИВНАЯ СРЕДА атомы или молекулы,\r\n| (КРИСТАЛЛ/ГАЗ) которые находятся в \r\n| ___________________________ возбужденном состоянии, \r\n|| 1. НАСЫЩЕНИЕ | где энергия атомов\r\n|| АКТИВНОЙ СРЕДЫ | или молекул выше\r\n||_________________________| чем в основном состоянии\r\n| |\r\n| |\r\n| v при наличии фотонов\r\n| _______________________________________ определённой энергии\r\n| | | возбужденные атомы \r\n| | 2. СТИМУЛИРОВАННАЯ | или молекулы \r\n| | ЭМИССИЯ | переходят\r\n| | (Усиление & когерентность)| в основное состояние\r\n| |_____________________________________| излучая фотоны\r\n| |\r\n| |\r\n| v\r\n| ___________________________\r\n| | | Зеркала отражают фотоны\r\n| | 3. ОБРАТНАЯ СВЯЗЬ| обратно в активную среду\r\n| | (ЗЕРКАЛА) | создавая условия для\r\n| | ↑ ↑ | дополнительной эмиссии\r\n| | | | | Этот процесс создаёт эффект\r\n| | (Усиление) | лавины, при котором кол-во\r\n| |__________________________| фотонов растёт\r\n| | \r\n| |\r\n| v\r\n| ____________________________ ____________________\r\n| | | | |\r\n| | ЧАСТИЧНО | | ПОЛНОЕ |\r\n| | ПРОПУСКАЮЩЕЕ | ----> | ЗЕРКАЛО |\r\n| | ЗЕРКАЛО | | |\r\n| |___________________________| |__________________|\r\n|______________________________________________________________________\r\n | Полное зеркало препятствует выходу\r\n (КУРОК) излучения из камеры. При нажатии\r\n | на курок оно поднимается и поток\r\n v фотонов идёт дальше\r\n _________________________________\r\n | КАМЕРА ФОКУСА |\r\n | |\r\n | ЛИНЗЫ И ОПТИЧЕСКИЕ |\r\n | ЭЛЕМЕНТЫ |\r\n |________________________________|\r\n |\r\n |\r\n v\r\n ________________________________\r\n | КАМЕРА ИЗЛУЧЕНИЯ | Взаимодействие луча\r\n | | с материалами,\r\n | (усиление за счёт | которые могут\r\n | сдвига Рамана) | испытывать сдвиг\r\n |________________________________| фотонной энергии\r\n-----------------------------------------------------------------------------------\r\nЭТОТ ДОКУМЕНТ ПРЕДНАЗНАЧЕН ДЛЯ СЛУЖЕБНОГО ПОЛЬЗОВАНИЯ. КОПИРОВАНИЕ И РАСПРОСТРАНЕНИЕ РАЗРЕШЕНО ТОЛЬКО С ПИСЬМЕННОГО РАЗРЕШЕНИЯ НАУЧНОГО РУКОВОДИТЕЛЯ. " - - uid: 23887 + - uid: 42788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.315632,14.9620285 - parent: 2 - - uid: 23888 + pos: 46.5,57.5 + parent: 40599 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 24603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.550007,14.9151535 + pos: -9.5,45.5 parent: 2 - - uid: 23889 +- proto: PosterLegitSafetyMothPiping + entities: + - uid: 24604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.73948,23.392311 + pos: 9.5,-55.5 parent: 2 - - type: Paper - content: >2+ - - - - - - - - [bold]Раз, два — найдём тебя, - Три, четыре — ты в могиле, - Пять, шесть — будем жечь, - Семь, восемь — за всё спросим.[/bold] - - - - - - - - uid: 23890 + - uid: 24605 components: - - type: MetaData - desc: Она вся в... КЛЕЮ?! Часть текста не читаема... - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5014,13.155414 + pos: 47.5,-51.5 parent: 2 - - type: Paper - content: >+ - Ка[color=#FFFFFF]███[/color]-то ж[color=#FFFFFF]██[/color]кий чудик украл мой в[color=#FFFFFF]███[/color]ый акс[color=#FFFFFF]██[/color]суар и ор[color=#FFFFFF]█[/color]л что-то про свое со[color=#FFFFFF]██[/color]овище... Надо бы на[color=#FFFFFF]██[/color]и и на[color=#FFFFFF]███[/color]ать его! - - - - - - - uid: 23891 +- proto: PosterLegitSafetyReport + entities: + - uid: 24606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.12761,18.577074 + pos: -29.5,-5.5 parent: 2 - - type: Paper - content: >2 - - Olen makaanut täällä väijytyksessä 12 päivää. Tuntuu, että kohde ei edes tule näkyviin. Ehkä sinun pitäisi muuttaa asemaasi, tärkeintä ei ole luovuttaa itseäsi. Nyt haluaisin teetä kaiken tämän sijaan... - - uid: 23892 + - uid: 24607 components: - - type: MetaData - name: визитка - type: Transform - rot: -1.5707963267948966 rad - pos: 78.29662,-9.335528 + pos: -18.5,5.5 parent: 2 - - type: Paper - content: > - [color=#e309c7]██████████████████████████████████████████[/color] - - - [head=2]Горячие источники "Тёплая плазма"[/head] - - - Откройте для себя уникальное место, где природные чудеса соединяются с [bold]вашим комфортом[/bold]! - - ==================================================== - - Что вас ждет? - - [bullet]Озера плазмы: Насладитесь [bold]уникальными[/bold] термальными источниками с плазмой! - - [bullet]Спа-процедуры: Профессиональные массажи и спа-услуги для полного [bold]расслабления[/bold]! - - [bullet]Ресторан: [bold]Вкусная[/bold] еда и напитки для утоления голода после процедур! - - ==================================================== - - Часы работы: - - Ежедневно с 7:00 до 23:00 - - ==================================================== - - [color=#c4b800]Специальное предложение: [/color] - - Бронируйте сейчас и получите 10% скидку на первый визит! - - ==================================================== - - [color=#E14F4F]Адрес: [/color] - - ##### ###### -20 -180 - - ==================================================== - - [italic]Мы ждем вас в Горячих источниках "Тёплая плазма" для незабываемого отдыха и оздоровления![/italic] - - [color=#d7d7d7]Более подробная информация на сайте: fhtp://warm-plasma-spa.just [/color] - - [color=#e309c7]██████████████████████████████████████████[/color] - - uid: 42313 +- proto: PosterLegitScience + entities: + - uid: 24608 components: - type: Transform - rot: -2.303834612632515 rad - pos: 54.402023,70.58609 - parent: 40203 - - uid: 42314 + rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 24609 components: - type: Transform - rot: 2.3911010752322315 rad - pos: 56.120773,68.539215 - parent: 40203 - - uid: 42315 + pos: -41.5,-12.5 + parent: 2 + - uid: 24610 components: - type: Transform - rot: -1.8849555921538759 rad - pos: 40.49231,68.40181 - parent: 40203 - - type: Paper - content: >2 - - ...Тревога ревёт на весь бункер, спать невозможно. Слышу как за стенкой копошатся с оружием. Что же там происходит.. Кажется это шанс свалить отсюда. Нужно добазариться с Джошем и дать дёру всем вместе. После всех издёвок и пыток за ту провинность.. я больше не собираюсь оставаться в этом аду. Время пришло. - - uid: 42316 + pos: -11.5,54.5 + parent: 2 + - uid: 42789 components: - type: Transform - rot: 0.4014257279586958 rad - pos: 48.705402,68.81379 - parent: 40203 - - type: Paper - content: >2 - - Блять! Это всё же случилось.. Ирвин был прав, Эдмунд сошёл с ума! Повсюду стали появляться какие-то твари.. мне страшно. Мы успели закрыться в саду, но.. Крис ранен, кровь вроде остановили но он выглядит бледно.. - - Еда и вода тут есть, надеюсь нас кто-нибудь спасёт.. За стенкой слышу крики и сирену. Что ж это за блядство.. - - uid: 42317 + pos: 35.5,60.5 + parent: 40599 +- proto: PosterLegitSoftCapPopArt + entities: + - uid: 42790 components: - type: Transform - rot: -3.141592653589793 rad - pos: 52.522644,34.542366 - parent: 40203 - - type: Paper - content: >+ - [color=red][Вся следующая информация является строго секретной и конфиденциальной.][/color] - - - Справа расположена - - - [bold]Усовершенствованная лазерная пушка.[/bold] - - Это высокотехнологичное устройство использует принцип усиления электрического поля для значительного увеличения мощности лазера. В отличие от традиционных лазерных систем, данная пушка обладает повышенной производительностью и стабильностью. Она способна генерировать мощные лазерные импульсы с высокой частотой. - - - Слева расположен - - - [bold]Переносной зарядник.[/bold] - - Он представляет собой рюкзак, оснащённый турбозарядником и катушкой Теслы. Этот зарядник разработан для автономного использования в полевых условиях. Он поглощает электрическую энергию из окружающей среды, позволяя заряжать различные электронные устройства в движении. Кроме того, благодаря применению новейших технологий магнитных волн, вес зарядника был значительно уменьшен, что обеспечивает удобство транспортировки и снижает нагрузку на пользователя. Устройство также оснащено системой управления энергией, которая автоматически регулирует процесс зарядки, предотвращая перегрузку и перегрев аккумуляторов подключённых устройств. - - - [color=red][ДАННЫЕ УСТРОЙСТВА ЯВЛЯЮТСЯ ПРОТОТИПАМИ. ИХ ИСПОЛЬЗОВАНИЕ ИЛИ ВЫНОС ИЗ КОМПЛЕКСА СТРОГО ЗАПРЕЩЕНЫ][/color] - - - uid: 42318 + pos: 58.5,29.5 + parent: 40599 +- proto: PosterLegitSpaceCops + entities: + - uid: 24611 components: - type: Transform - rot: 2.0943951023931953 rad - pos: 27.339483,61.47233 - parent: 40203 - - type: Paper - content: > - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - Ещё чуть-чуть и плейтест... - - ... - - uid: 45020 + rot: 3.141592653589793 rad + pos: -50.5,8.5 + parent: 2 +- proto: PosterLegitStateLaws + entities: + - uid: 24612 components: - type: Transform - parent: 45019 - - type: Paper - content: >- - Джо-Доун - - Мужчина средних лет - - Важная шишка из командывания NanoTrasen. - - ================================================== - - Этот идиот оставил мне отличные чаевые за поршивого качества напити! Легко обдурить, стоит попробовать выбить с него побольше в следующий раз! - - - Пришел еще несколько раз за последнюю неделю, не знаю что он тут нашел, но мне только лучше, стабильный доход не бывает лишним. - - - Он стал появлятся в компании дам и платит приличные деньги за молчание, а так же разрешение быть в женских купальнях... Гребаный извращенец! Надеюсь эти дамы дерут с него не мало денег, иначе мне их жаль... - - type: Physics - canCollide: False - - uid: 45021 + rot: 3.141592653589793 rad + pos: 26.5,-36.5 + parent: 2 +- proto: PosterLegitThereIsNoGasGiant + entities: + - uid: 24613 components: - type: Transform - parent: 45019 - - type: Paper - content: >- - Кирилл Блимпанченко - - Слаймолюд молодого возраста - - Род деятельности неизвестен. - - ================================================== - - Этот милый дурачек имел при себе неплохие деньги и кажется он не знал им цену. По всей видимости он на уровне развития подростка, как он сюда забрел непонятно... От воды ему сразу стало плохо, я содрала неплохую прибыль за его лечение, стоит почаще практиковать такой способ на глупых слаймолюдах! - - type: Physics - canCollide: False - - uid: 45022 + pos: -4.5,-57.5 + parent: 2 +- proto: PosterLegitUeNo + entities: + - uid: 42791 components: - type: Transform - parent: 45019 - - type: Paper - content: >- - ц█████ а███а - - Ниан молодого возраста - - Какой-то мудила из Gorlex Marauders - - ================================================== - - Ворвался сюда с оружием, распугал клиентов, начал кричать чтоб я выдала ему информацию о посетителях из НТ... ЕСТЕСТВЕННО Я ЕМУ ВСЕ ВЫДАЛА, нехватало еще пулю в лоб от этого ненормального! Зато он оставил мне немного слитков золота, вроде даже настоящего... - - type: Physics - canCollide: False - - uid: 45761 + pos: 69.5,80.5 + parent: 40599 + - uid: 46126 components: - - type: MetaData - desc: Часть текста расплылась и не читается, но большая часть уцелела - name: мокрая окрававленая бумага - type: Transform - pos: 1.951098,12.908584 - parent: 44970 - - type: Paper - content: █, Джо-Доун, пи█у д█нн█й док██ент находясь в отчаянии. Если ██ это читаете и ви██те мое тело, ██ошу обратится к Nano███sen чер██ б██ж█йш██ станцию Ц███ра██ного ███ан██ва█ия, пе██дайте и█ м██ т█ло для воста███лен█я, я у██р█н в к█р███ации и её во███жно██ях, в замен вы бу██те возн█г██дены, ув██яю в██! И ██те██га███сь п██к█в о██ ███о█о██ли █у█ ██е! -- proto: PaperBin10 + pos: 1.5,6.5 + parent: 45355 +- proto: PosterLegitVacation entities: - - uid: 23893 + - uid: 24614 components: - type: Transform - pos: 2.5,-2.5 + pos: 23.5,5.5 parent: 2 - - uid: 23894 +- proto: PosterLegitWalk + entities: + - uid: 24615 components: - type: Transform - pos: 2.5,-51.5 + pos: -2.5,-18.5 parent: 2 - - uid: 23895 + - uid: 42792 components: - type: Transform - pos: -12.5,42.5 - parent: 2 - - uid: 23896 + pos: 52.5,67.5 + parent: 40599 +- proto: PosterLegitWorkForAFuture + entities: + - uid: 24616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,8.5 + pos: -14.5,-11.5 parent: 2 - - uid: 23897 + - uid: 42793 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,2.5 - parent: 2 - - uid: 23898 - components: - - type: Transform - pos: 82.5,-40.5 - parent: 2 - - uid: 23899 + pos: 39.5,80.5 + parent: 40599 +- proto: PosterMapDelta + entities: + - uid: 24617 components: + - type: MetaData + desc: Карта станции...выглядит не уклюже нарисовано. + name: карта Glacier - type: Transform rot: 3.141592653589793 rad - pos: -7.5,56.5 + pos: -59.5,50.5 parent: 2 - - uid: 23900 +- proto: PotatoAIChip + entities: + - uid: 24618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-32.5 + pos: 3.2550044,15.41646 parent: 2 - - uid: 23901 +- proto: PotatoSeeds + entities: + - uid: 24619 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-41.5 + pos: -74.227615,13.288752 parent: 2 - - uid: 42319 - components: - - type: Transform - pos: 73.5,74.5 - parent: 40203 -- proto: PaperBin20 +- proto: PottedPlant0 entities: - - uid: 23902 + - uid: 24620 components: - type: Transform - pos: 9.5,-6.5 + pos: 16.5,-35.5 parent: 2 - - uid: 23903 + - uid: 24621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + pos: 19.5,-50.5 parent: 2 - - uid: 23904 + - uid: 24622 components: - type: Transform - pos: 32.5,-36.5 + pos: 52.5,-52.5 parent: 2 - - uid: 23905 +- proto: PottedPlant10 + entities: + - uid: 24623 components: - type: Transform - pos: -6.5,-5.5 + pos: -44.5,-0.5 parent: 2 - - uid: 23906 + - uid: 24624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-49.5 + pos: 35.5,-45.5 parent: 2 - - uid: 23907 + - uid: 24625 components: - type: Transform - pos: 3.5,22.5 + pos: 8.5,-2.5 parent: 2 - - uid: 23908 +- proto: PottedPlant12 + entities: + - uid: 24626 components: - type: Transform - pos: -12.5,-14.5 + pos: -28.5,4.5 parent: 2 - - uid: 23909 +- proto: PottedPlant13 + entities: + - uid: 24627 components: - type: Transform - pos: -31.5,-21.5 + pos: -10.5,42.5 parent: 2 -- proto: PaperBin5 +- proto: PottedPlant14 entities: - - uid: 23910 + - uid: 14985 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-35.5 + pos: -104.5,26.5 parent: 2 - - uid: 23911 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 14986 +- proto: PottedPlant15 + entities: + - uid: 42794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,1.5 - parent: 2 - - uid: 23912 + pos: 71.3058,74.55588 + parent: 40599 +- proto: PottedPlant19 + entities: + - uid: 14912 components: - type: Transform - pos: -110.5,1.5 + pos: -113.5,26.5 parent: 2 - - uid: 45762 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 14913 + - uid: 24628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 44970 -- proto: PaperCaptainsThoughts + pos: 26.5,-41.5 + parent: 2 +- proto: PottedPlant20 entities: - - uid: 23913 + - uid: 24629 components: - type: Transform - pos: 10.159396,-6.4242215 + pos: -10.5,40.5 parent: 2 - - uid: 23914 +- proto: PottedPlant21 + entities: + - uid: 24630 components: - type: Transform - pos: 10.425021,-6.5023465 + pos: 4.5,-42.5 parent: 2 - - uid: 23915 + - uid: 24631 components: - type: Transform - pos: 18.749994,-13.127781 + pos: 30.5,-43.5 parent: 2 - - uid: 23916 + - uid: 24632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.468744,-12.705906 + pos: 28.5,-35.5 parent: 2 - - type: Paper - content: > - Кто вообще додумался построить станцию на леднике? На улицу без куртки выйти невозможно! - - uid: 23917 + - uid: 24633 components: - type: Transform - pos: 9.91293,-6.4954295 + pos: 1.5,45.5 parent: 2 - - type: Paper - content: >- - [bullet] Заказать эшафот и поставить напротив мостика - - [bullet] Организовать распил древесины и производство супа из опилок - - [bullet] Всех неугодных... блин, генератор же вырезали из бюджета.. -- proto: PaperCargoBountyManifest - entities: - - uid: 15619 + - uid: 24634 components: - type: Transform - parent: 15618 - - type: Paper - content: Куриное яйцо x1000 упаковок по 12 штук - - type: Physics - canCollide: False -- proto: PaperCNCSheet + pos: -103.5,6.5 + parent: 2 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24635 +- proto: PottedPlant22 entities: - - uid: 23918 + - uid: 24636 components: - type: Transform - pos: 2.3180294,44.429867 + pos: 26.5,-30.5 parent: 2 - - uid: 23919 + - uid: 24637 components: - type: Transform - pos: 2.7711544,43.66424 + pos: -17.5,38.5 parent: 2 - - uid: 23920 +- proto: PottedPlant24 + entities: + - uid: 24638 components: - type: Transform - pos: -0.46765733,20.636866 + pos: 3.5194008,20.269768 parent: 2 - - uid: 23921 +- proto: PottedPlant4 + entities: + - uid: 24639 components: - type: Transform - pos: 0.5635927,20.699366 + pos: -25.5,8.5 parent: 2 - - uid: 23922 +- proto: PottedPlant6 + entities: + - uid: 24640 components: - type: Transform - pos: -0.46765733,19.418116 + pos: 74.5,-38.5 parent: 2 - - uid: 23923 +- proto: PottedPlantAlt1 + entities: + - uid: 42795 components: - type: Transform - pos: 0.5792177,19.49624 + pos: 71.47768,71.35446 + parent: 40599 +- proto: PottedPlantAlt2 + entities: + - uid: 24641 + components: + - type: Transform + pos: 51.5,-22.5 parent: 2 - - uid: 23924 + - uid: 24642 components: - type: Transform - pos: 1.3448427,19.43374 + pos: 25.5,-53.5 parent: 2 - - uid: 23925 +- proto: PottedPlantAlt3 + entities: + - uid: 24643 components: - type: Transform - pos: 1.5167177,20.668116 + pos: 52.5,-22.5 parent: 2 - - uid: 23926 +- proto: PottedPlantAlt4 + entities: + - uid: 24644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.561043,24.79028 + pos: -103.5,12.5 parent: 2 - - uid: 23927 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 24645 +- proto: PottedPlantAlt6 + entities: + - uid: 24646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.576668,24.555904 + pos: -23.5,26.5 parent: 2 -- proto: PaperDoor +- proto: PottedPlantAlt8 entities: - - uid: 23928 + - uid: 24647 components: - type: Transform - pos: -95.5,51.5 + pos: -5.5611515,18.122728 parent: 2 - - uid: 23929 +- proto: PottedPlantBioluminscent + entities: + - uid: 24648 components: - type: Transform - pos: -97.5,45.5 + pos: -31.5,2.5 parent: 2 -- proto: PaperOffice +- proto: PottedPlantRandom entities: - - uid: 23930 + - uid: 24649 components: - type: Transform - pos: -19.422108,3.639667 + pos: 18.5,-7.5 parent: 2 - - uid: 23931 + - uid: 24650 components: - type: Transform - pos: -40.237988,4.3744574 + pos: 16.5,-13.5 parent: 2 - - uid: 23932 + - uid: 24651 components: - type: Transform - pos: -40.550488,4.3275824 + pos: -50.5,-2.5 parent: 2 - - uid: 23933 + - uid: 24652 components: - type: Transform - pos: 1.5475541,-46.547344 + pos: 15.5,8.5 parent: 2 - - uid: 23934 + - uid: 24653 components: - type: Transform - pos: 1.4121375,-46.318176 + pos: -30.5,12.5 parent: 2 - - uid: 23935 + - uid: 24654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.4103713,-49.373306 + pos: 82.5,-37.5 parent: 2 - - uid: 23936 + - uid: 24655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.4728713,-49.48268 + pos: 36.5,27.5 parent: 2 - - uid: 23937 + - uid: 24656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5509963,-49.35768 + pos: 39.5,25.5 parent: 2 - - uid: 23938 + - uid: 24657 components: - type: Transform - pos: 1.7871375,-46.328594 + pos: 64.5,7.5 parent: 2 - - uid: 23939 + - uid: 24658 components: - - type: MetaData - name: инструкция по установке и использованию беговой дорожки R-34 - type: Transform - pos: 2.6271963,51.751316 + pos: 60.5,9.5 parent: 2 - - type: Paper - content: >- - [head=2]Инструкция по установке и использованию беговой дорожки R-34[/head] - - - - [head=3]Введение[/head] - - Поздравляем с приобретением беговой дорожки R-34! - - Для правильной установки и безопасного использования данного оборудования, пожалуйста, следуйте нижеприведённым инструкциям. - - - - [head=3]Требуемые инструменты и материалы[/head] - - [bullet]Мультитул - - [bullet]Инженер - - - [head=3]Шаги по установке[/head] - - 1. Подготовка места установки. - - Убедитесь, что у вас есть достаточно места для установки беговой дорожки. - - Поверхность должна быть ровной и устойчивой. - - 2. Распаковка и проверка комплектующих. - - Осторожно распакуйте беговую дорожку и проверьте наличие всех комплектующих. - - Убедитесь, что все детали находятся в хорошем состоянии и отсутствуют повреждения. - - 3. Сборка беговой дорожки. - - Следуйте инструкции по сборке беговой дорожки, указанной в руководстве пользователя, которое прилагается к комплекту. - - 4. Подключение кнопок. - - Связь кнопки с дорожкой: - - Подключение должно производиться инженером. - - Используйте мультитул для точного соединения проводов кнопки с беговой дорожкой согласно схеме подключения. - - Связь кнопки с консолью: - - Инженер должен соединить провода кнопки с консолью, используя мультитул, и убедиться, что все соединения правильно установлены. - - 5. Проверка работы. - - Включите беговую дорожку и убедитесь, что все кнопки функционируют корректно. - - Проверьте, что консоль отображает правильные данные и реагирует на команды с кнопок. - - uid: 23940 + - uid: 24659 components: - type: Transform - pos: -4.7084513,70.53351 + pos: 57.5,9.5 parent: 2 - - type: Paper - stampState: paper_stamp-cmo - stampedBy: - - stampedColor: '#33CCFFFF' - stampedName: stamp-component-stamped-name-cmo - content: >- - [head=3]Учёт пациентов психдиспансера[/head] - - [bold]Смена от 22.06.3024[/bold] - - - [italic]Пациент №8[/italic] - - Ф.И: Дж█████ Д█████████. - - Пол: М. - - Возраст: 31 год. - - Должность: Офицер СБ. - - Симптомы: Постоянные попытки флирта с представителями противоположного пола, с достаточно сомнительными комплиментами. В конце постоянно называет непонятный набор букв и символов, называя это "Источник". - - Вердикт: Выписать успокоительное, провести терапию на тему женщин. - - - [italic]Пациент №28[/italic] - - Ф.И.: И███ К██ер. - - Пол: М. - - Возраст: 55 лет. - - Должность: Атмосферный техник. - - Симптомы: Резкое неадекватное поведение, копролалия, пикацизм. Попытки нанесения вреда себе и окружающим. - - Вердикт: Запереть в одной из палат, желательно с использованием ограничителей движений. Провести дальнейшее наблюдение и при необходимости медикаментозное лечение. - - - [italic]Пациент №52[/italic] - - Ф.И.: А████ Ни██ - - Пол: Ж. - - Возраст: 27 лет. - - Должность: Офицер СБ. - - Симптомы: Мания к оружию и насилию. Паранойя, маниакальное поведение. Постоянное упоминание странных слов вроде "Робуст" и "Чина лаке". При внешнем осмотре, замечены засечки и порезы в области медиальных вен. - - Вердикт: Провести диагностику. По возможности, запретить находиться в патруле до вынесения точного диагноза. - - - [italic]Пациент №359[/italic] - - Ф.И.: А████ Бл█████ - - Пол: Ж. - - Возраст: 28 лет. - - Должность: Учёный. - - Симптомы: Повышенная строгость и недовольство к окружающим. Перфекционизм и склонность к собственной возвышенности. - - Вердикт: Терапия на тему любви к себе и окружающим, медитация. При острой необходимости прописать расслабляющие методы. - - uid: 23941 + - uid: 24660 components: - type: Transform - pos: -44.25985,-16.49642 + pos: 53.5,9.5 parent: 2 - - uid: 23942 + - uid: 24661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.31233,-5.5062623 + pos: 41.5,17.5 parent: 2 - - uid: 23943 + - uid: 24662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.31233,-5.5531373 + pos: 41.5,17.5 parent: 2 - - uid: 23944 + - uid: 24663 components: - type: Transform - pos: -44.005867,-16.378546 + pos: 24.5,38.5 parent: 2 - - uid: 23945 + - uid: 24664 components: - type: Transform - pos: -20.642616,14.550071 + pos: 48.5,21.5 parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: > - ============================================= - РУКОВОДСТВО ПО ЭКСПЛУАТАЦИИ - ============================================= - - 1) Поместите заключенного в камеру казни - - - 2) Убедитесь, что закрыли все шлюзы - - - 3) Разблокируйте кнопку подачи раскалённого пара, нажмите и заблокируйте её, когда будете готовы начать процедуру казни, автоматическая система подаст ровно столько пара, сколько нужно. - - - 4) После окончания процедуры - разблокируйте и нажмите на кнопку открытия гермозатворов для сброса пара в атмосферу - - - 5) Когда воздушная сигнализация перейдет в нормальный режим - повторно нажмите на кнопку для закрытия гермозатворов и заблокируйте кнопку - - - После выполнения пятого шага, система возвращается в исходное состояние, для следующей процедуры повторите все шаги, начиная с первого. - - ============================================= - [italic]Место для печатей[/italic] - - uid: 23947 + - uid: 24665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.6658874,-11.784885 + pos: 24.5,31.5 parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: > - Уважаемый Глава Персонала. В рамках проведения программы улучшения рабочих условий, Центральным Командованием были предоставлены альтернативные версии уже имеющихся у вас стандартных печатей ОДОБРЕНО и ОТКАЗАНО. Вы можете использовать их в работе с сотрудниками станции, однако, воздержитесь от их использования во время связи с ЦентКомом. Благодарим за понимание, удачной работы. Слава NanoTrasen! - - uid: 23948 + - uid: 24666 components: - type: Transform - pos: 9.631929,-11.428617 + pos: 34.5,31.5 parent: 2 - - type: Paper - content: > - Внимание капитану станции, ввиду сокращения расходов, а также во избежание установления неблагоприятной атмосферной обстановки на станции, ваш Снегоход был разобран на запчасти и отдан в инженерный отдел для постройки пивного фонтана. За любыми вопросами обращайтесь по факсу на Центральное Командование. - - Благодарим за понимание. - - uid: 23949 + - uid: 24667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.306904,-9.418037 + pos: 39.5,17.5 parent: 2 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - content: >+ - [color=#1b487e]███░███░░░░██░░░░[/color] - - [color=#1b487e]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#1b487e]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#1b487e]░░░░██░░██░██░██░[/color] [bold] ЦК-КОМ NTDZX Гласир[/bold] - - [color=#1b487e]░░░░██░░░████░███[/color] - - ============================================= - ОБРАЩЕНИЕ ЦЕНТКОМА - ============================================= - - Уважаемый капитан комплекса Гласир, довожу до вашего сведения, что в результате сбоя орбитального контроллера погоды, в промежутке между сменами, в квадранте прошла сильнейшая снежная буря. Из-за неё территория отбытия была покрыта сугробами, которые могут помешать посадке эвакуационного шаттла. - - В качестве меры предосторожности, нами были предоставлены сейсмические заряды в хранилище станции. Требуем от вас проконтролировать заблаговременную расчистку зоны эвакуации и пресекать любые попытки использовать заряды в иных целях. Слава NanoTrasen! - - ============================================= - [italic]Место для печатей[/italic] - - - - - uid: 27955 + - uid: 24668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.657666,-28.414576 + pos: -6.5,-4.5 parent: 2 - - type: Paper - content: >+ - Уважаемый персонал станции [bold]NTDZX Гласир[/bold]. - - Ввиду нескольких актов вандализма, а также неподобающего поведения, связанного со "Стеной творчества" временно её использование ограничено, во избежание повторных прецедентов. Проводится внутреннее расследование. - - Благодарим за понимание. - - - uid: 42320 + - uid: 24669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.601654,74.14394 - parent: 40203 - - type: Paper - content: > - Это была ошибка. Всё это. Не стоило так рисковать. Всё кончено. - - Да простит Господь гения, который пожертвовал человеческими жизнями во имя прогресса. - - uid: 42321 + pos: -7.5,-12.5 + parent: 2 + - uid: 24670 components: - type: Transform - rot: 3.612831551628262 rad - pos: 55.54478,70.07954 - parent: 40203 - - type: Paper - content: >+ - [head=3]Ис[color=#661a1a]█[/color]ледование в[color=#661a1a]о░░ейст[/color]вия заряда Шаровой Те[color=#661a1a]██░ на[/color] врата[/head] - - [bold] - - 00:12:28 - [color=#661a1a]На███░ало [/color]испытаний - - - 00:19:08 - Проверка [color=#661a1a]у░███░вня[/color] напряжения - - - 00:20:31 - Прибыло дополнительное оборудование - - - 00:32:52 - Малый ход подачи [color=#661a1a]з░█████да[/color] - - - 00:38:10 - А[color=#661a1a]█████из[/color] графиков - - - 00:41:22 - Средний ход подачи заряда - - - 00:42:30 - Ошибка в распределении трансформатора - - - 00:49:08 - Ошибка уст[color=#661a1a]ра████████████████ - - ████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████ - - [/color] - - 01:08:16 - [color=#661a1a]█████на [/color]тревога - - [/bold] - - - - - - - - - - - uid: 42322 + pos: 34.5,17.5 + parent: 2 + - uid: 24671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.50572,56.27919 - parent: 40203 - - uid: 42323 + pos: 13.5,26.5 + parent: 2 + - uid: 24672 components: - type: Transform - rot: -1.7453292519943295 rad - pos: 53.66197,56.044815 - parent: 40203 - - uid: 42324 + pos: 5.5,-32.5 + parent: 2 + - uid: 24673 components: - type: Transform - rot: -1.2217304763960306 rad - pos: 53.427593,56.138565 - parent: 40203 - - uid: 42325 + pos: 7.5,-32.5 + parent: 2 + - uid: 24674 components: - type: Transform - rot: -1.7453292519943295 rad - pos: 53.31822,57.43544 - parent: 40203 - - uid: 42326 + pos: -9.5,-5.5 + parent: 2 + - uid: 24675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.44322,57.59169 - parent: 40203 -- proto: PaperRolling1 - entities: - - uid: 23950 + pos: 38.5,-0.5 + parent: 2 + - uid: 24676 components: - - type: MetaData - name: грязная бумага - type: Transform - pos: 67.391914,7.2826276 + pos: 42.5,11.5 parent: 2 - - uid: 23951 + - uid: 24677 components: - type: Transform - pos: 9.550137,19.556362 + pos: 38.5,13.5 parent: 2 - - uid: 23952 + - uid: 24678 components: - type: Transform - pos: -117.2455,16.580702 + pos: 18.5,-4.5 parent: 2 - - uid: 23953 + - uid: 24679 components: - type: Transform - pos: -30.634495,29.508938 + pos: 9.5,20.5 parent: 2 -- proto: PaperScrap - entities: - - uid: 23954 + - uid: 24680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.031494,28.4697 + pos: 23.5,51.5 parent: 2 - - type: Paper - content: > - Мне удалось выбраться из заключения.. Холод собачий, но думаю про этот тоннель не знает никто. Надо бы придумать как просидеть тут ближайшее время.. а потом.. не представляю что делать. - - uid: 23955 + - uid: 24681 components: - type: Transform - pos: -43.373627,-11.404057 + pos: -34.5,8.5 parent: 2 - - uid: 23956 + - uid: 24682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.534863,4.5463324 + pos: 10.5,-49.5 parent: 2 - - uid: 23957 + - uid: 24683 components: - type: Transform - pos: -11.824434,68.96183 + pos: 0.5,-46.5 parent: 2 - - type: Paper - content: Перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...перекур...гусеница...гусеница...гусеница...перекур...перекур!! - - uid: 23958 + - uid: 24684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.529877,-11.388432 + pos: -6.5,-42.5 parent: 2 - - uid: 23959 + - uid: 24685 components: - type: Transform - pos: -17.704523,22.769758 + pos: -6.5,-48.5 parent: 2 - - uid: 23960 + - uid: 24686 components: - type: Transform - pos: 17.870224,-3.1351771 + pos: -50.5,10.5 parent: 2 - - uid: 23961 + - uid: 24687 components: - type: Transform - pos: -117.54237,16.035488 + pos: -8.5,-38.5 parent: 2 - - uid: 23962 + - uid: 24688 components: - type: Transform - pos: -116.65175,16.754238 + pos: 3.5,38.5 parent: 2 - - uid: 23963 + - uid: 24689 components: - type: Transform - pos: -27.498034,-15.387703 + pos: -12.5,60.5 parent: 2 - - uid: 23964 + - uid: 24690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.763659,-15.387703 + pos: -7.5,2.5 parent: 2 - - uid: 23965 + - uid: 24691 components: - type: Transform - pos: 71.391426,-34.55758 + pos: -9.5,-0.5 parent: 2 - - uid: 23966 + - uid: 24692 components: - type: Transform - pos: 72.28205,-34.58883 + pos: 12.5,2.5 parent: 2 - - uid: 23967 + - uid: 24693 components: - type: Transform - pos: -89.45337,27.3447 + pos: 14.5,-0.5 parent: 2 - - uid: 23968 + - uid: 24694 components: - type: Transform - pos: 101.70253,-43.412582 + pos: 8.5,3.5 parent: 2 - - uid: 23969 + - uid: 24695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.249405,-42.428207 + pos: -3.5,3.5 parent: 2 - - uid: 40289 + - uid: 24696 components: - type: Transform - parent: 40283 - - type: Paper - content: >+ - Я не думал...я не хотел... что я наделал... нет... Элеонора... - - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 42327 + pos: -4.5,55.5 + parent: 2 + - uid: 24697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.69322,57.65419 - parent: 40203 - - uid: 42328 + pos: -6.5,56.5 + parent: 2 + - uid: 24698 components: - type: Transform - rot: -1.3962634015954636 rad - pos: 53.66197,56.263565 - parent: 40203 -- proto: PartRodMetal + pos: 65.5,-29.5 + parent: 2 + - uid: 24699 + components: + - type: Transform + pos: 66.5,-49.5 + parent: 2 + - uid: 24700 + components: + - type: Transform + pos: 70.5,-49.5 + parent: 2 + - uid: 24701 + components: + - type: Transform + pos: 70.5,-41.5 + parent: 2 + - uid: 24702 + components: + - type: Transform + pos: 2.5,-53.5 + parent: 2 + - uid: 24703 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 24704 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 +- proto: PottedPlantRandomPlastic entities: - - uid: 23970 + - uid: 24705 components: - type: Transform - pos: 6.4434824,-44.363564 + pos: 26.5,-39.5 parent: 2 -- proto: PartRodMetal1 + - uid: 24706 + components: + - type: Transform + pos: -12.5,55.5 + parent: 2 +- proto: PottedPlantRD entities: - - uid: 23971 + - uid: 24707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.40384,-43.400963 + pos: 27.5,-53.5 parent: 2 - - uid: 23972 +- proto: PowerCageSmall + entities: + - uid: 24708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 97.56009,-45.525963 + pos: 3.5050044,15.63521 parent: 2 - - uid: 23973 +- proto: PowerCellAntiqueProto + entities: + - uid: 42796 components: - type: Transform - rot: 3.141592653589793 rad - pos: 97.71634,-45.557213 - parent: 2 - - uid: 23974 + pos: 68.590775,62.77556 + parent: 40599 +- proto: PowerCellMediumPrinted + entities: + - uid: 24709 components: - type: Transform - pos: 100.61881,-46.338463 + pos: -97.36717,35.514385 parent: 2 - - uid: 42329 +- proto: PowerCellMicroreactor + entities: + - uid: 42798 components: - type: Transform - pos: 48.419197,37.339207 - parent: 40203 - - uid: 42330 + parent: 42797 + - type: Physics + canCollide: False +- proto: PowerCellRecharger + entities: + - uid: 24710 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.559822,44.72983 - parent: 40203 - - uid: 42331 + pos: -27.5,54.5 + parent: 2 + - uid: 24711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.419197,37.339207 - parent: 40203 - - uid: 42332 + pos: -39.5,-11.5 + parent: 2 + - uid: 24712 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.544197,40.63608 - parent: 40203 - - uid: 42333 + pos: 19.5,-31.5 + parent: 2 + - uid: 24713 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.669197,39.620457 - parent: 40203 - - uid: 42334 + pos: 30.5,-36.5 + parent: 2 + - uid: 24714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.450447,43.51108 - parent: 40203 - - uid: 42335 + pos: 26.5,-49.5 + parent: 2 + - uid: 24715 components: - type: Transform - rot: -0.8726646259971648 rad - pos: 64.92846,55.34993 - parent: 40203 - - uid: 42336 + pos: -1.5,-33.5 + parent: 2 + - uid: 24716 components: - type: Transform - rot: 3.6651914291880923 rad - pos: 65.850334,56.115555 - parent: 40203 - - uid: 42337 + rot: -1.5707963267948966 rad + pos: 22.5,-29.5 + parent: 2 + - uid: 24717 components: - type: Transform - rot: -0.3490658503988659 rad - pos: 66.662834,56.50618 - parent: 40203 - - uid: 42338 + pos: 27.5,-8.5 + parent: 2 + - uid: 24718 components: - type: Transform - rot: -1.1519173063162575 rad - pos: 65.391075,53.13334 - parent: 40203 - - uid: 42339 + rot: 1.5707963267948966 rad + pos: -103.5,-4.5 + parent: 2 + - uid: 24719 components: - type: Transform - rot: 0.7853981633974483 rad - pos: 66.33643,57.538094 - parent: 40203 - - uid: 42340 + rot: 1.5707963267948966 rad + pos: 67.5,-43.5 + parent: 2 + - uid: 24720 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 24721 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.09279,82.89004 - parent: 40203 - - uid: 42341 + pos: -12.5,53.5 + parent: 2 + - uid: 42799 + components: + - type: Transform + pos: 53.5,54.5 + parent: 40599 + - uid: 42800 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.108414,84.70254 - parent: 40203 -- proto: PaxChemistryBottle + pos: 56.5,57.5 + parent: 40599 +- proto: PowerCellSmall entities: - - uid: 17570 + - uid: 24722 components: - type: Transform - parent: 17567 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Pen + pos: 45.445816,-48.86427 + parent: 2 +- proto: PoweredLEDSmallLight entities: - - uid: 23975 + - uid: 24723 components: - type: Transform - pos: -31.104733,-20.382248 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 parent: 2 - - uid: 23976 + - uid: 24724 components: - type: Transform - pos: -26.914356,16.481026 + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 parent: 2 - - uid: 23977 + - uid: 24725 components: - type: Transform - pos: 93.045166,-15.415628 + pos: -9.5,62.5 parent: 2 - - uid: 23978 + - uid: 24726 components: - type: Transform - pos: -12.554755,-14.441446 + rot: 3.141592653589793 rad + pos: -43.5,-12.5 parent: 2 - - uid: 23979 +- proto: Poweredlight + entities: + - uid: 24727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.243444,42.45151 + pos: 64.5,-33.5 parent: 2 - - uid: 23980 + - uid: 24728 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.636397,54.08989 + pos: 102.5,-21.5 parent: 2 - - uid: 23981 + - uid: 24729 components: - type: Transform - pos: 40.268497,-43.22698 + rot: -1.5707963267948966 rad + pos: 102.5,-31.5 parent: 2 - - uid: 23982 + - uid: 24730 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.60971,13.542273 + pos: 102.5,-35.5 parent: 2 - - uid: 23983 + - uid: 24731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.3121178,1.6258962 + pos: -25.5,24.5 parent: 2 - - uid: 23984 + - uid: 24732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5933678,-0.38972878 + rot: -1.5707963267948966 rad + pos: -42.5,-16.5 parent: 2 - - uid: 23985 + - uid: 24733 components: - type: Transform - pos: 9.220373,-11.320829 + pos: -42.5,4.5 parent: 2 - - uid: 23986 + - uid: 24734 components: - type: Transform - pos: 8.658675,60.427708 + pos: -8.5,36.5 parent: 2 - - uid: 23987 + - uid: 24735 components: - type: Transform - pos: 64.58628,-30.75206 + rot: -1.5707963267948966 rad + pos: -12.5,-55.5 parent: 2 - - uid: 23988 + - uid: 24736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.72999,44.254745 + pos: 2.5,-40.5 parent: 2 - - uid: 23989 + - uid: 24737 components: - type: Transform - pos: 14.39305,60.521458 + rot: -1.5707963267948966 rad + pos: -1.5,-45.5 parent: 2 - - uid: 23990 + - uid: 24738 components: - type: Transform - pos: 16.35197,54.05802 + pos: -3.5,-40.5 parent: 2 - - uid: 23991 + - uid: 24739 components: - type: Transform - pos: -34.355022,1.1034837 + rot: 3.141592653589793 rad + pos: -3.5,-50.5 parent: 2 - - uid: 23992 + - uid: 24740 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.534405,52.152767 + pos: 15.5,6.5 parent: 2 - - uid: 23993 + - uid: 24741 components: - type: Transform - pos: -42.548534,10.463797 + rot: 3.141592653589793 rad + pos: 5.5,-44.5 parent: 2 - - uid: 23994 + - uid: 24742 components: - type: Transform - pos: -42.454784,10.698172 + rot: 3.141592653589793 rad + pos: 2.5,-44.5 parent: 2 - - uid: 23995 + - uid: 24743 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.38407,44.23276 + pos: 8.5,-8.5 parent: 2 - - uid: 23996 + - uid: 24744 components: - type: Transform - pos: 1.3632152,53.890747 + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 parent: 2 - - uid: 23997 + - uid: 24745 components: - type: Transform - pos: -36.6518,-12.498175 + rot: 3.141592653589793 rad + pos: 17.5,-13.5 parent: 2 - - uid: 23998 + - uid: 24746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,32.5 + parent: 2 + - uid: 24747 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.292784,25.98421 + pos: 10.5,24.5 parent: 2 - - uid: 23999 + - type: PoweredLight + on: False + - uid: 24748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.1520643,-1.3597445 + pos: 9.5,29.5 parent: 2 - - uid: 24000 + - uid: 24749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.38288,-14.472696 + pos: 54.5,7.5 parent: 2 - - uid: 24001 + - uid: 24750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.40959,-31.889427 + rot: 3.141592653589793 rad + pos: 59.5,6.5 parent: 2 - - uid: 24002 + - uid: 24751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.50334,-31.951927 + pos: 66.5,6.5 parent: 2 - - uid: 24003 + - uid: 24752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.76112,16.736952 + rot: 3.141592653589793 rad + pos: 59.5,6.5 parent: 2 - - uid: 24004 + - uid: 24753 components: - type: Transform - pos: 96.03473,5.4861307 + pos: 66.5,6.5 parent: 2 - - uid: 24005 + - uid: 24754 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.125965,-17.403519 + pos: 58.5,11.5 parent: 2 - - uid: 24006 + - uid: 24755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.907215,-16.372269 + rot: -1.5707963267948966 rad + pos: 57.5,3.5 parent: 2 - - uid: 24007 + - uid: 24756 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.77678,-16.395605 + pos: 57.5,-1.5 parent: 2 - - uid: 24008 + - uid: 24757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.518757,15.2432785 + pos: 54.5,-4.5 parent: 2 - - uid: 24010 + - uid: 24758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.6377,24.707823 + pos: 61.5,12.5 parent: 2 - - uid: 42342 + - uid: 24759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.737946,77.66226 - parent: 40203 - - uid: 42343 + pos: 18.5,1.5 + parent: 2 + - uid: 24760 components: - type: Transform - rot: 0.4537856055185257 rad - pos: 37.60118,59.520912 - parent: 40203 - - uid: 42344 + rot: 1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 2 + - uid: 24761 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.66197,55.013565 - parent: 40203 - - uid: 42345 + pos: 42.5,-24.5 + parent: 2 + - uid: 24762 components: - type: Transform - rot: 3.490658503988659 rad - pos: 53.677593,56.81044 - parent: 40203 -- proto: PenCap - entities: - - uid: 24011 + pos: 51.5,12.5 + parent: 2 + - uid: 24763 components: - type: Transform - pos: 18.307442,-12.816851 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 parent: 2 - - uid: 24012 + - uid: 24764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.909572,-6.4347415 + rot: 3.141592653589793 rad + pos: 47.5,17.5 parent: 2 -- proto: PenCentcom - entities: - - uid: 45763 + - uid: 24765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.1662426,12.540764 - parent: 44970 -- proto: PenExploding - entities: - - uid: 24013 + rot: 1.5707963267948966 rad + pos: 41.5,23.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 24766 components: - type: Transform rot: 3.141592653589793 rad - pos: 93.27954,-16.118753 + pos: 42.5,17.5 parent: 2 - - uid: 24014 + - type: PoweredLight + on: False + - uid: 24767 components: - type: Transform - pos: 38.319973,-2.3976312 + rot: -1.5707963267948966 rad + pos: 26.5,39.5 parent: 2 -- proto: PenHop - entities: - - uid: 24015 + - uid: 24768 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 24769 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.554801,-11.861071 + pos: 28.5,37.5 parent: 2 - - uid: 24016 + - uid: 24770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.1388493,-5.484262 + pos: -13.5,1.5 parent: 2 -- proto: PersonalAI - entities: - - uid: 24017 + - uid: 24771 components: - type: Transform - pos: 18.5938,7.3261075 + rot: -1.5707963267948966 rad + pos: 18.5,39.5 parent: 2 - - uid: 24018 + - uid: 24772 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.502216,-47.438194 + pos: 18.5,34.5 parent: 2 -- proto: PetCarrier - entities: - - uid: 24019 + - uid: 24773 components: - type: Transform - pos: 24.5,22.5 + pos: 11.5,41.5 parent: 2 - - uid: 24020 + - uid: 24774 components: - type: Transform - pos: 23.5,22.5 + rot: 3.141592653589793 rad + pos: 22.5,17.5 parent: 2 - - uid: 24021 + - uid: 24775 components: - type: Transform - pos: -12.5,62.5 + rot: 1.5707963267948966 rad + pos: 20.5,28.5 parent: 2 -- proto: PhoneInstrument - entities: - - uid: 24022 + - uid: 24776 components: - type: Transform - pos: -43.375393,1.660028 + pos: 15.5,36.5 parent: 2 - - uid: 24023 + - uid: 24777 components: - type: Transform - pos: 8.402258,-7.429708 + rot: 3.141592653589793 rad + pos: 9.5,31.5 parent: 2 - - uid: 24024 + - uid: 24778 components: - - type: MetaData - desc: Он точно ответит... - name: Begorrchi - type: Transform - pos: -80.9523,2.807736 + rot: 1.5707963267948966 rad + pos: 7.5,39.5 parent: 2 -- proto: Pickaxe - entities: - - uid: 14793 + - uid: 24779 components: - type: Transform - parent: 14792 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 14798 + pos: 31.5,38.5 + parent: 2 + - uid: 24780 components: - type: Transform - parent: 14795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24025 + rot: -1.5707963267948966 rad + pos: 38.5,27.5 + parent: 2 + - uid: 24781 components: - type: Transform - pos: -94.505295,17.59811 + rot: -1.5707963267948966 rad + pos: -9.5,15.5 parent: 2 - - uid: 24026 + - type: PoweredLight + on: False + - uid: 24782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.798702,34.637077 + pos: -8.5,-10.5 parent: 2 - - uid: 24027 + - uid: 24783 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.54137,-48.524277 + pos: -3.5,-14.5 parent: 2 - - uid: 24028 + - type: PoweredLight + on: False + - uid: 24784 components: - type: Transform - rot: 2.181661564992912 rad - pos: 65.53668,-42.850433 + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 parent: 2 - - uid: 42346 + - type: PoweredLight + on: False + - uid: 24785 components: - type: Transform - rot: -0.9948376736367679 rad - pos: 32.736496,68.49639 - parent: 40203 -- proto: PillCanister - entities: - - uid: 24029 + rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 24786 components: - type: Transform - pos: 18.02342,-13.237282 + rot: 1.5707963267948966 rad + pos: 20.5,-7.5 parent: 2 - - uid: 24030 + - type: PoweredLight + on: False + - uid: 24787 components: - type: Transform - pos: -13.633438,-4.3606277 + pos: 19.5,-15.5 parent: 2 - - uid: 24031 + - type: PoweredLight + on: False + - uid: 24788 components: - type: Transform - pos: -44.05053,-11.301849 + rot: -1.5707963267948966 rad + pos: -15.5,-7.5 parent: 2 -- proto: PillCanisterDylovene - entities: - - uid: 24032 + - type: PoweredLight + on: False + - uid: 24789 components: - type: Transform - pos: 7.462455,35.57658 + rot: -1.5707963267948966 rad + pos: -15.5,8.5 parent: 2 -- proto: PillCanisterRandom - entities: - - uid: 24033 + - type: PoweredLight + on: False + - uid: 24790 components: - type: Transform - pos: -26.523159,51.567333 + rot: 1.5707963267948966 rad + pos: 20.5,8.5 parent: 2 - - uid: 24034 + - type: PoweredLight + on: False + - uid: 24791 components: - type: Transform - pos: -20.858524,55.55884 + rot: 1.5707963267948966 rad + pos: 14.5,15.5 parent: 2 - - uid: 24035 + - uid: 24792 components: - type: Transform - pos: -12.643206,51.799103 + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 parent: 2 -- proto: PillCanisterTricordrazine - entities: - - uid: 24036 + - uid: 24793 components: - - type: MetaData - name: витамины (трикордразин 10 ед.) - type: Transform - pos: -13.383438,-4.2356277 + rot: 3.141592653589793 rad + pos: -5.5,-7.5 parent: 2 -- proto: PillSpaceDrugs - entities: - - uid: 17571 + - uid: 24794 components: - type: Transform - parent: 17567 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17572 + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + - uid: 24795 components: - type: Transform - parent: 17567 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17573 + pos: -4.5,-2.5 + parent: 2 + - uid: 24796 components: - type: Transform - parent: 17567 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PinionAirlockGlass - entities: - - uid: 24037 + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - uid: 24797 components: - type: Transform - pos: -87.5,59.5 + rot: 1.5707963267948966 rad + pos: -4.5,12.5 parent: 2 -- proto: PinpointerNuclear - entities: - - uid: 23460 + - uid: 24798 components: - - type: MetaData - name: пинпоинтер торгового аванпоста - type: Transform - parent: 23459 - - type: Pinpointer - targetName: Торговый аванпост - component: TradeStation - - type: Physics - canCollide: False - - type: InsideEntityStorage - missingComponents: - - Contraband - - uid: 24038 + pos: -2.5,14.5 + parent: 2 + - uid: 24799 components: - - type: MetaData - name: пинпоинтер торгового аванпоста - type: Transform - pos: 77.77774,-48.393547 + pos: 7.5,14.5 parent: 2 - - type: Pinpointer - targetName: Торговый аванпост - component: TradeStation - missingComponents: - - Contraband - - uid: 24039 + - uid: 24800 components: - - type: MetaData - name: пинпоинтер торгового аванпоста - type: Transform - pos: 66.014824,-43.389347 + rot: 3.141592653589793 rad + pos: 15.5,-0.5 parent: 2 - - type: Pinpointer - targetName: Торговый аванпост - component: TradeStation - missingComponents: - - Contraband - - uid: 24040 + - uid: 24801 components: - type: Transform - pos: 9.581446,-9.525494 + pos: -5.5,2.5 parent: 2 - - uid: 24041 + - uid: 24802 components: - - type: MetaData - name: пинпоинтер торгового аванпоста - type: Transform - pos: 67.40701,-51.26843 + rot: 3.141592653589793 rad + pos: -10.5,-0.5 parent: 2 - - type: Pinpointer - targetName: Торговый аванпост - component: TradeStation - missingComponents: - - Contraband -- proto: PlantBag - entities: - - uid: 14832 + - uid: 24803 components: - type: Transform - parent: 14825 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PlaqueAtmos - entities: - - uid: 24042 + pos: 10.5,2.5 + parent: 2 + - uid: 24804 components: - type: Transform - pos: -4.5,-51.5 + rot: 1.5707963267948966 rad + pos: -22.5,4.5 parent: 2 -- proto: PlasmaCanister - entities: - - uid: 24043 + - uid: 24805 components: - type: Transform - pos: -14.5,-68.5 + pos: -20.5,8.5 parent: 2 - - type: GasCanister - releaseValve: True - releasePressure: 100 - - type: Lock - locked: False -- proto: PlasmaOre1 - entities: - - uid: 42347 + - uid: 24806 components: - type: Transform - rot: 0.5585053606381855 rad - pos: 29.731049,72.57129 - parent: 40203 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 24044 + pos: -14.5,-15.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 24807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 24808 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 24809 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,13.5 + pos: -10.5,-48.5 parent: 2 - - uid: 24045 + - uid: 24810 components: - type: Transform - pos: 2.5,14.5 + rot: 1.5707963267948966 rad + pos: -10.5,-42.5 parent: 2 - - uid: 24046 + - uid: 24811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,13.5 + rot: 1.5707963267948966 rad + pos: 24.5,-14.5 parent: 2 - - uid: 24047 + - uid: 24812 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,11.5 + pos: 24.5,-18.5 parent: 2 - - uid: 24048 + - uid: 24813 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,11.5 + pos: -13.5,18.5 parent: 2 - - uid: 24049 + - uid: 24814 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,11.5 + pos: -9.5,18.5 parent: 2 - - uid: 24050 + - uid: 24815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,11.5 + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 parent: 2 - - uid: 24051 + - uid: 24816 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,14.5 + pos: 24.5,2.5 parent: 2 - - uid: 24052 + - uid: 24817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 + pos: 22.5,22.5 parent: 2 - - uid: 24053 + - uid: 24818 components: - type: Transform - pos: 24.5,-3.5 + rot: -1.5707963267948966 rad + pos: 5.5,32.5 parent: 2 - - uid: 24054 + - uid: 24819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-3.5 + rot: 1.5707963267948966 rad + pos: 36.5,29.5 parent: 2 - - uid: 24055 + - uid: 24820 components: - type: Transform - pos: 26.5,-3.5 + pos: 5.5,-40.5 parent: 2 - - uid: 24056 + - uid: 24821 components: - type: Transform - pos: 45.5,-56.5 + rot: 1.5707963267948966 rad + pos: 15.5,23.5 parent: 2 - - uid: 24057 + - type: PoweredLight + on: False + - uid: 24822 components: - type: Transform - pos: 47.5,-56.5 + rot: -1.5707963267948966 rad + pos: 24.5,20.5 parent: 2 - - uid: 24058 + - uid: 24823 components: - type: Transform - pos: 50.5,-56.5 + rot: 1.5707963267948966 rad + pos: 9.5,20.5 parent: 2 - - uid: 24059 + - uid: 24824 components: - type: Transform - pos: 52.5,-56.5 + pos: 11.5,22.5 parent: 2 - - uid: 24060 + - uid: 24825 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-56.5 + rot: -1.5707963267948966 rad + pos: -10.5,6.5 parent: 2 - - uid: 24061 + - uid: 24826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-56.5 + rot: -1.5707963267948966 rad + pos: -9.5,11.5 parent: 2 - - type: Construction - defaultTarget: start - - uid: 24062 + - uid: 24827 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-56.5 + pos: 11.5,-9.5 parent: 2 - - uid: 24063 + - uid: 24828 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-56.5 + pos: 14.5,-5.5 parent: 2 - - uid: 24064 + - uid: 24829 components: - type: Transform - pos: 79.5,-36.5 + rot: 1.5707963267948966 rad + pos: 14.5,-39.5 parent: 2 - - uid: 42348 + - uid: 24830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,56.5 - parent: 40203 - - uid: 42349 + rot: 3.141592653589793 rad + pos: -0.5,-64.5 + parent: 2 + - uid: 24831 components: - type: Transform - pos: 53.5,36.5 - parent: 40203 - - uid: 42350 + pos: 1.5,-53.5 + parent: 2 + - uid: 24832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,35.5 - parent: 40203 - - uid: 42351 + pos: -4.5,-52.5 + parent: 2 + - uid: 24833 components: - type: Transform - pos: 51.5,36.5 - parent: 40203 - - uid: 42352 + rot: 3.141592653589793 rad + pos: -7.5,-56.5 + parent: 2 + - uid: 24834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,35.5 - parent: 40203 -- proto: PlasmaTank - entities: - - uid: 44971 + pos: 2.5,-46.5 + parent: 2 + - uid: 24835 components: - type: Transform - pos: -2.1987104,25.169998 - parent: 44970 - - type: GasTank - toggleActionEntity: 44972 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 44972 -- proto: PlasmaWindoorJanitorLocked - entities: - - uid: 24065 + rot: 3.141592653589793 rad + pos: 2.5,-51.5 + parent: 2 + - uid: 24836 components: - type: Transform - pos: 5.5,34.5 + rot: 1.5707963267948966 rad + pos: 6.5,-48.5 parent: 2 - - uid: 24066 + - uid: 24837 components: - type: Transform - pos: 4.5,34.5 + rot: 3.141592653589793 rad + pos: 68.5,-27.5 parent: 2 -- proto: PlasmaWindoorSecureCommandLocked - entities: - - uid: 24067 + - uid: 24838 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,12.5 + pos: -16.5,-64.5 parent: 2 - - uid: 24068 + - uid: 24839 components: - type: Transform - pos: -1.5,14.5 + rot: 1.5707963267948966 rad + pos: -19.5,-60.5 parent: 2 -- proto: PlasmaWindoorSecureScienceLocked - entities: - - uid: 24069 + - uid: 24840 components: - type: Transform - pos: 32.5,-36.5 + rot: -1.5707963267948966 rad + pos: 67.5,-30.5 parent: 2 - - uid: 24070 + - uid: 24841 components: - type: Transform - pos: 31.5,-36.5 + rot: 3.141592653589793 rad + pos: -8.5,-64.5 parent: 2 - - uid: 24071 + - uid: 24842 components: - type: Transform - pos: 30.5,-36.5 + pos: 57.5,-29.5 parent: 2 -- proto: PlasmaWindoorSecureSecurityLocked - entities: - - uid: 24072 + - uid: 24843 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,19.5 + pos: 55.5,-32.5 parent: 2 - - uid: 24073 + - uid: 24844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,19.5 + pos: 16.5,58.5 parent: 2 - - uid: 42353 + - uid: 24845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,77.5 - parent: 40203 - - type: Occluder - boundingBox: -0.5,-0.5,0.5,-0.3 - - uid: 42354 + rot: 3.141592653589793 rad + pos: 6.5,-56.5 + parent: 2 + - uid: 24846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,83.5 - parent: 40203 - - type: Occluder - boundingBox: -0.5,-0.5,0.5,-0.3 - - uid: 42355 + pos: 70.5,-48.5 + parent: 2 + - uid: 24847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,79.5 - parent: 40203 - - type: Occluder - boundingBox: -0.5,-0.5,0.5,-0.3 -- proto: PlasticFlapsAirtightClear - entities: - - uid: 24074 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-1.5 + pos: 70.5,-42.5 parent: 2 -- proto: PlasticFlapsAirtightOpaque - entities: - - uid: 24075 + - uid: 24848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-31.5 + pos: 55.5,-36.5 parent: 2 -- proto: PlayerStationAi - entities: - - uid: 24076 + - uid: 24849 components: - type: Transform - pos: 2.5,13.5 + pos: 59.5,-36.5 parent: 2 - - type: PointLight - energy: 5 - color: '#1883E4FF' - radius: 3 -- proto: PlushieArachind - entities: - - uid: 24077 + - uid: 24850 components: - - type: MetaData - desc: Очаровательная мягкая игрушка с плутонием внутри. - name: плюшевый Фолкус - type: Transform - pos: -127.62323,-15.385517 + pos: 69.5,-36.5 parent: 2 - - type: StaticPrice - price: 5000 - - type: RadiationSource -- proto: PlushieAtmosian - entities: - - uid: 24078 + - uid: 24851 components: - type: Transform - pos: 26.753233,-2.9812903 + rot: 3.141592653589793 rad + pos: 66.5,-49.5 parent: 2 - - uid: 24079 + - uid: 24852 components: - - type: MetaData - desc: Очаровательная мягкая игрушка, напоминающая храброго атмосианина. К сожалению, он не сделает литры фрезона за вас. Если вы злоупотребляете бюджетом атмоса, рано или поздно он придет за вами с топором... - name: плюшевый JustUser - type: Transform - pos: 8.484182,-53.585407 + rot: 3.141592653589793 rad + pos: 62.5,-49.5 parent: 2 - - uid: 24080 + - uid: 24853 components: - - type: MetaData - desc: Очаровательная мягкая игрушка, напоминающая храброго атмосианина. К сожалению он не сварит за вас литры фрезона. Если вы злоупотребляете бюджетом атмосов, рано или поздно он придет за вами с топором... - name: JustUser - type: Transform - pos: -77.512856,1.6400677 + rot: 1.5707963267948966 rad + pos: 61.5,-46.5 parent: 2 -- proto: PlushieBee - entities: - - uid: 42356 + - uid: 24854 components: - - type: MetaData - desc: Чиназес - name: плюшевый Dezzzix - type: Transform - pos: 28.073858,61.926765 - parent: 40203 -- proto: PlushieCarp - entities: - - uid: 24081 + rot: 3.141592653589793 rad + pos: 59.5,-44.5 + parent: 2 + - uid: 24855 components: - type: Transform - pos: 92.547775,-17.498913 + rot: 3.141592653589793 rad + pos: 56.5,-44.5 parent: 2 -- proto: PlushieDiona - entities: - - uid: 24082 + - uid: 24856 components: - type: Transform - pos: 23.485535,48.579548 + rot: 1.5707963267948966 rad + pos: 54.5,-42.5 parent: 2 -- proto: PlushieGhost - entities: - - uid: 24083 + - uid: 24857 components: - type: Transform - pos: -18.282412,67.56374 + rot: -1.5707963267948966 rad + pos: 69.5,-51.5 parent: 2 -- proto: PlushieHampter - entities: - - uid: 24084 + - uid: 24858 components: - - type: MetaData - desc: Тапай хомяука, сука! - type: Transform - pos: 2.4655592,2.4359589 + rot: 1.5707963267948966 rad + pos: 67.5,-51.5 parent: 2 - - uid: 24085 + - uid: 24859 components: - - type: MetaData - desc: От него веет дымкой. - name: SatuSmoke - type: Transform - pos: -80.16838,4.5221906 + rot: 3.141592653589793 rad + pos: 13.5,60.5 parent: 2 -- proto: PlushieHolocarp - entities: - - uid: 42357 + - uid: 24860 components: - - type: MetaData - desc: Он мертв.... - name: электрокарп - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,45.5 - parent: 40203 - - type: Physics - canCollide: False - bodyType: Static - missingComponents: - - Item - - uid: 42358 + rot: -1.5707963267948966 rad + pos: 76.5,-39.5 + parent: 2 + - uid: 24861 components: - - type: MetaData - desc: Он мертв... - name: электрокарп - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,45.5 - parent: 40203 - - type: Physics - canCollide: False - bodyType: Static - missingComponents: - - Item -- proto: PlushieHuman - entities: - - uid: 45764 + rot: 1.5707963267948966 rad + pos: 78.5,-38.5 + parent: 2 + - uid: 24862 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.7818213,25.188519 - parent: 44970 -- proto: PlushieLizard - entities: - - uid: 24086 + pos: 82.5,-38.5 + parent: 2 + - uid: 24863 components: - type: Transform - pos: 58.21001,-26.411352 + rot: -1.5707963267948966 rad + pos: 74.5,-43.5 parent: 2 - - uid: 24087 + - uid: 24864 components: - type: Transform - pos: 58.71001,-27.333227 + rot: 1.5707963267948966 rad + pos: 76.5,-43.5 parent: 2 - - uid: 24088 + - uid: 24865 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.4615746,47.49128 + pos: 74.5,-48.5 parent: 2 - - uid: 24089 + - uid: 24866 components: - - type: MetaData - desc: Император ЕРП империи. - name: плюшевый Боулевард Киллсайд - type: Transform - pos: -75.524155,13.56876 + rot: 1.5707963267948966 rad + pos: 76.5,-48.5 parent: 2 - - uid: 24090 + - uid: 24867 components: - - type: MetaData - desc: Нахимичил и рад. - name: Meguneri - type: Transform - pos: -78.15789,3.8645697 + rot: 3.141592653589793 rad + pos: -17.5,-46.5 parent: 2 -- proto: PlushieLizardMirrored - entities: - - uid: 24091 + - uid: 24868 components: - type: Transform - pos: -30.273613,-49.317707 + rot: 3.141592653589793 rad + pos: -28.5,-46.5 parent: 2 - - uid: 24092 + - uid: 24869 components: - type: Transform - pos: 21.599209,48.603783 + rot: 3.141592653589793 rad + pos: -21.5,-42.5 parent: 2 - - uid: 24093 + - uid: 24870 components: - type: Transform - pos: 57.24126,-27.208227 + rot: -1.5707963267948966 rad + pos: 85.5,-44.5 parent: 2 - - uid: 24094 + - uid: 24871 components: - - type: MetaData - desc: Я не унатх, я тостер. - name: Resoid - type: Transform - pos: -81.147606,3.5485344 + rot: -1.5707963267948966 rad + pos: -12.5,-50.5 parent: 2 -- proto: PlushieMoth - entities: - - uid: 24095 + - uid: 24872 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.609222,-46.511353 + pos: 24.5,-37.5 parent: 2 - - uid: 24096 + - uid: 24873 components: - - type: MetaData - desc: Умелый атмос, особено в теме космических ветров, особено когда сдувает JustUser - name: ArZarLordOfMango - type: Transform - pos: -76.91312,1.2216735 + rot: -1.5707963267948966 rad + pos: 16.5,53.5 parent: 2 -- proto: PlushieNar - entities: - - uid: 24097 + - uid: 24874 components: - type: Transform - pos: 25.47286,13.567226 + rot: 3.141592653589793 rad + pos: 11.5,56.5 parent: 2 -- proto: PlushieNuke - entities: - - uid: 24098 + - uid: 24875 components: - - type: MetaData - name: Оперативник Сайбот - type: Transform - pos: -6.7087593,16.396034 + rot: -1.5707963267948966 rad + pos: 21.5,56.5 parent: 2 -- proto: PlushieRouny - entities: - - uid: 24099 + - uid: 24876 components: - type: Transform - pos: 92.485275,-14.514538 + rot: 3.141592653589793 rad + pos: 30.5,-57.5 parent: 2 -- proto: PlushieSharkBlue - entities: - - uid: 24100 + - uid: 24877 components: - - type: MetaData - desc: Именно он ответственен за постройку ерп комнаты... - name: RedTerror - type: Transform - pos: -78.76213,0.5378156 + rot: 1.5707963267948966 rad + pos: 4.5,58.5 parent: 2 - - uid: 24101 + - uid: 24878 components: - type: Transform - pos: 92.53577,-12.449776 + rot: 3.141592653589793 rad + pos: 30.5,-54.5 parent: 2 -- proto: PlushieSharkGrey - entities: - - uid: 24102 + - uid: 24879 components: - - type: MetaData - desc: Если не войду в историю, войду в твою сестру! - name: Dezzzix - type: Transform - pos: -79.46575,2.5484762 + rot: -1.5707963267948966 rad + pos: 29.5,60.5 parent: 2 -- proto: PlushieSharkPink - entities: - - uid: 23701 + - uid: 24880 components: - type: Transform - parent: 23700 - - type: Physics - canCollide: False - - uid: 24103 + rot: 3.141592653589793 rad + pos: 26.5,56.5 + parent: 2 + - uid: 24881 components: - - type: MetaData - desc: 'Хонкула RTRа :) ' - type: Transform - rot: -0.9075712110370514 rad - pos: -101.729805,27.598394 + rot: 3.141592653589793 rad + pos: 23.5,-54.5 parent: 2 - - uid: 24104 + - uid: 24882 components: - type: Transform - pos: 6.5606146,61.58816 + pos: 22.5,-51.5 parent: 2 - - uid: 24105 + - uid: 24883 components: - - type: MetaData - desc: Уплыла, но обещала вернуться. - name: meowstushka - type: Transform - pos: -82.82333,2.7351038 + rot: 1.5707963267948966 rad + pos: 26.5,-56.5 parent: 2 -- proto: PlushieSpaceLizard - entities: - - uid: 24106 + - uid: 24884 components: - type: Transform - pos: -28.501926,43.515278 + rot: 1.5707963267948966 rad + pos: 22.5,52.5 parent: 2 -- proto: PonderingOrb - entities: - - uid: 24107 + - uid: 24885 components: - type: Transform - pos: -51.507305,25.503119 + rot: -1.5707963267948966 rad + pos: 19.5,-44.5 parent: 2 -- proto: PortableFlasher - entities: - - uid: 24108 + - uid: 24886 components: - type: Transform - pos: -39.5,-6.5 + rot: -1.5707963267948966 rad + pos: 19.5,-49.5 parent: 2 - - uid: 24109 + - uid: 24887 components: - type: Transform - pos: -44.5,-6.5 + rot: 1.5707963267948966 rad + pos: 16.5,61.5 parent: 2 - - uid: 24110 + - uid: 24888 components: - type: Transform - pos: -39.5,-8.5 + rot: -1.5707963267948966 rad + pos: 39.5,-53.5 parent: 2 -- proto: PortableGeneratorJrPacman - entities: - - uid: 24111 + - uid: 24889 components: - type: Transform - pos: 44.5,33.5 + rot: 1.5707963267948966 rad + pos: 35.5,-53.5 parent: 2 - - uid: 24112 + - uid: 24890 components: - type: Transform - pos: -12.5,-49.5 + pos: 43.5,-51.5 parent: 2 - - uid: 24113 + - uid: 24891 components: - type: Transform - pos: -20.5,-50.5 + rot: 3.141592653589793 rad + pos: 43.5,-55.5 parent: 2 - - uid: 24114 + - uid: 24892 components: - type: Transform - pos: -20.5,-49.5 + pos: 48.5,-52.5 parent: 2 - - uid: 24115 + - uid: 24893 components: - type: Transform - pos: -24.5,39.5 + rot: -1.5707963267948966 rad + pos: 52.5,-53.5 parent: 2 - - uid: 24116 + - uid: 24894 components: - type: Transform - pos: 50.5,-48.5 + rot: 3.141592653589793 rad + pos: 27.5,-43.5 parent: 2 - - uid: 24117 + - uid: 24895 components: - type: Transform - pos: 35.5,45.5 + pos: 22.5,-31.5 parent: 2 - - uid: 24118 + - uid: 24896 components: - type: Transform - pos: 45.5,-28.5 + rot: 3.141592653589793 rad + pos: 18.5,-35.5 parent: 2 - - uid: 24119 + - uid: 24897 components: - type: Transform - pos: -87.5,65.5 + rot: 3.141592653589793 rad + pos: 18.5,-41.5 parent: 2 -- proto: PortableGeneratorSuperPacmanMachineCircuitboard - entities: - - uid: 24120 + - uid: 24898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.18817,66.29156 + pos: 33.5,-42.5 parent: 2 -- proto: PortableRecharger - entities: - - uid: 42359 + - uid: 24899 components: - type: Transform - pos: 53.51183,34.576233 - parent: 40203 -- proto: PortableScrubber - entities: - - uid: 24121 + pos: 28.5,-37.5 + parent: 2 + - uid: 24900 components: - type: Transform - pos: -5.5,-55.5 + pos: 31.5,-33.5 parent: 2 - - uid: 24122 + - uid: 24901 components: - type: Transform - pos: -4.5,-55.5 + pos: 40.5,-45.5 parent: 2 -- proto: PortableScrubberMachineCircuitBoard - entities: - - uid: 24123 + - uid: 24902 components: - type: Transform - pos: 15.463729,6.6530046 + rot: -1.5707963267948966 rad + pos: 45.5,-48.5 parent: 2 -- proto: PortalGatewayOrange - entities: - - uid: 24124 + - uid: 24903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,15.5 + rot: 1.5707963267948966 rad + pos: 35.5,-47.5 parent: 2 - - type: LinkedEntity - deleteOnEmptyLinks: True - linkedEntities: - - 24125 - - uid: 24125 + - uid: 24904 components: - type: Transform rot: 3.141592653589793 rad - pos: -100.5,-5.5 + pos: 98.5,-11.5 parent: 2 - - type: LinkedEntity - deleteOnEmptyLinks: True - linkedEntities: - - 24124 -- proto: PosterBroken - entities: - - uid: 24126 + - uid: 24905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-43.5 + pos: -14.5,-36.5 parent: 2 - - uid: 24127 + - uid: 24906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 98.5,-41.5 + rot: -1.5707963267948966 rad + pos: 68.5,-12.5 parent: 2 - - uid: 24128 + - uid: 24907 components: - type: Transform - pos: 102.5,-44.5 + rot: -1.5707963267948966 rad + pos: 68.5,-18.5 parent: 2 - - uid: 42360 + - uid: 24908 components: - type: Transform - pos: 53.5,50.5 - parent: 40203 - - uid: 42361 + rot: 1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 2 + - uid: 24909 components: - type: Transform - pos: 67.5,76.5 - parent: 40203 - - uid: 42362 + pos: 24.5,-40.5 + parent: 2 + - uid: 24910 components: - type: Transform - pos: 36.5,67.5 - parent: 40203 -- proto: PosterContrabandAmbrosiaVulgaris - entities: - - uid: 24129 + pos: 45.5,-22.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 24911 components: - type: Transform - pos: 15.5,37.5 + rot: 3.141592653589793 rad + pos: 45.5,-25.5 parent: 2 - - uid: 42363 + - uid: 24912 components: - type: Transform - pos: 71.5,26.5 - parent: 40203 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 24130 + pos: 50.5,-22.5 + parent: 2 + - type: PoweredLight + on: False + - uid: 24913 components: - type: Transform - pos: 9.5,-54.5 + pos: 58.5,-22.5 parent: 2 -- proto: PosterContrabandBeachStarYamamoto - entities: - - uid: 24131 + - type: PoweredLight + on: False + - uid: 24914 components: - type: Transform rot: -1.5707963267948966 rad - pos: 98.5,-2.5 + pos: 63.5,-29.5 parent: 2 - - uid: 24132 + - uid: 24915 components: - type: Transform - pos: -45.5,-16.5 + rot: 3.141592653589793 rad + pos: 83.5,-26.5 parent: 2 - - uid: 42364 + - uid: 24916 components: - type: Transform - pos: 59.5,84.5 - parent: 40203 - - uid: 42365 + rot: 3.141592653589793 rad + pos: 81.5,-26.5 + parent: 2 + - uid: 24917 components: - type: Transform - pos: 44.5,29.5 - parent: 40203 - - uid: 45765 + pos: 78.5,-7.5 + parent: 2 + - uid: 24918 + components: + - type: Transform + pos: 80.5,-7.5 + parent: 2 + - uid: 24919 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,13.5 - parent: 44970 -- proto: PosterContrabandBorgFancy - entities: - - uid: 24133 + pos: 81.5,-20.5 + parent: 2 + - uid: 24920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-44.5 + rot: 1.5707963267948966 rad + pos: 78.5,-20.5 parent: 2 -- proto: PosterContrabandBorgFancyv2 - entities: - - uid: 24134 + - uid: 24921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-30.5 + rot: 1.5707963267948966 rad + pos: 78.5,-10.5 parent: 2 -- proto: PosterContrabandBountyHunters - entities: - - uid: 24135 + - uid: 24922 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,23.5 + pos: 81.5,-10.5 parent: 2 -- proto: PosterContrabandBustyBackdoorExoBabes6 - entities: - - uid: 24136 + - uid: 24923 components: - type: Transform - pos: 97.50704,-29.4412 + rot: 3.141592653589793 rad + pos: -7.5,34.5 parent: 2 -- proto: PosterContrabandCC64KAd - entities: - - uid: 42366 + - uid: 24924 components: - type: Transform - pos: 42.5,69.5 - parent: 40203 -- proto: PosterContrabandClown - entities: - - uid: 24137 + rot: -1.5707963267948966 rad + pos: -46.5,5.5 + parent: 2 + - uid: 24925 components: - type: Transform - pos: 51.5,8.5 + rot: -1.5707963267948966 rad + pos: -32.5,-11.5 parent: 2 -- proto: PosterContrabandCybersun600 - entities: - - uid: 24138 + - uid: 24926 components: - type: Transform - pos: -95.5,47.5 + rot: 3.141592653589793 rad + pos: -36.5,-4.5 parent: 2 - - uid: 24139 + - uid: 24927 components: - type: Transform - pos: -104.5,47.5 + rot: -1.5707963267948966 rad + pos: -36.5,7.5 parent: 2 -- proto: PosterContrabandDonk - entities: - - uid: 24140 + - uid: 24928 components: - type: Transform - pos: 23.5,32.5 + rot: -1.5707963267948966 rad + pos: -27.5,-0.5 parent: 2 - - uid: 42367 + - uid: 24929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,78.5 - parent: 40203 -- proto: PosterContrabandEAT - entities: - - uid: 24141 + pos: -46.5,1.5 + parent: 2 + - uid: 24930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,5.5 + pos: -53.5,13.5 parent: 2 - - uid: 24142 + - uid: 24931 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,30.5 + pos: -53.5,8.5 parent: 2 - - uid: 42368 + - uid: 24932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,8.5 + parent: 2 + - uid: 24933 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,80.5 - parent: 40203 -- proto: PosterContrabandFreeSyndicateEncryptionKey - entities: - - uid: 24143 + pos: -19.5,11.5 + parent: 2 + - uid: 24934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,53.5 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 parent: 2 - - uid: 24144 + - uid: 24935 components: - type: Transform - pos: -117.5,31.5 + rot: 3.141592653589793 rad + pos: 23.5,-29.5 parent: 2 -- proto: PosterContrabandFreeTonto - entities: - - uid: 24145 + - uid: 24936 components: - type: Transform - pos: 25.5,21.5 + pos: -8.5,54.5 parent: 2 -- proto: PosterContrabandFunPolice - entities: - - uid: 42369 + - uid: 24937 components: - type: Transform - pos: 35.5,79.5 - parent: 40203 -- proto: PosterContrabandGreyTide - entities: - - uid: 24146 + rot: 1.5707963267948966 rad + pos: -38.5,-0.5 + parent: 2 + - uid: 24938 components: - type: Transform - pos: 55.5,34.5 + rot: 3.141592653589793 rad + pos: -43.5,6.5 parent: 2 -- proto: PosterContrabandHackingGuide - entities: - - uid: 24147 + - uid: 24939 components: - - type: MetaData - desc: Откручиваем панель отвёрткой, берём мультитул и прозваниваем им контакты, если горит красным БОЛТЫ - тыкаем ещё раз, если же свет погас, то вскрываем шлюз ломом. Не забудьте про изолированные перчатки! Можно использовать кусачки, но тогда у вас только один шанс. - type: Transform - pos: 14.5,27.5 + rot: 3.141592653589793 rad + pos: -22.5,-11.5 parent: 2 -- proto: PosterContrabandHaveaPuff - entities: - - uid: 24148 + - uid: 24940 components: - type: Transform - pos: 17.5,41.5 + rot: -1.5707963267948966 rad + pos: -27.5,-8.5 parent: 2 -- proto: PosterContrabandKudzu - entities: - - uid: 24149 + - uid: 24941 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,42.5 + rot: 1.5707963267948966 rad + pos: 14.5,12.5 parent: 2 -- proto: PosterContrabandLamarr - entities: - - uid: 24150 + - uid: 24942 components: - type: Transform - pos: 30.5,-50.5 + rot: -1.5707963267948966 rad + pos: 28.5,-29.5 parent: 2 - - uid: 42370 + - uid: 24943 components: - type: Transform - pos: 43.5,23.5 - parent: 40203 -- proto: PosterContrabandLustyExomorph - entities: - - uid: 24151 + rot: -1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 24944 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-57.5 + pos: -28.5,-4.5 parent: 2 - - uid: 24152 + - type: PoweredLight + on: False + - uid: 24945 components: - type: Transform - pos: -47.5,16.5 + pos: -23.5,0.5 parent: 2 - - uid: 24153 + - type: PoweredLight + on: False + - uid: 24946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,22.5 + rot: 3.141592653589793 rad + pos: -22.5,-2.5 parent: 2 - - uid: 45766 + - type: PoweredLight + on: False + - uid: 24947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 44970 - - uid: 45767 + rot: 1.5707963267948966 rad + pos: -10.5,-33.5 + parent: 2 + - uid: 24948 components: - type: Transform - pos: 0.5,10.5 - parent: 44970 -- proto: PosterContrabandMissingGloves - entities: - - uid: 24154 + pos: -4.5,-31.5 + parent: 2 + - uid: 24949 components: - type: Transform - pos: 25.5,-13.5 + rot: 1.5707963267948966 rad + pos: -30.5,-8.5 parent: 2 -- proto: PosterContrabandNuclearDeviceInformational - entities: - - uid: 24155 + - uid: 24950 components: - type: Transform - pos: 1.5,-12.5 + pos: -22.5,-6.5 parent: 2 -- proto: PosterContrabandPower - entities: - - uid: 24156 + - uid: 24951 components: - type: Transform - pos: -31.5,-44.5 + rot: 3.141592653589793 rad + pos: -38.5,-19.5 parent: 2 -- proto: PosterContrabandRebelsUnite - entities: - - uid: 24157 + - uid: 24952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,26.5 + rot: 3.141592653589793 rad + pos: -100.5,-8.5 parent: 2 -- proto: PosterContrabandRedRum - entities: - - uid: 24158 + - uid: 24953 components: - type: Transform - pos: -85.5,57.5 + rot: 1.5707963267948966 rad + pos: -110.5,-6.5 parent: 2 -- proto: PosterContrabandRevolt - entities: - - uid: 24159 + - uid: 24954 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,22.5 + pos: -103.5,-5.5 parent: 2 -- proto: PosterContrabandRIPBadger - entities: - - uid: 24160 + - uid: 24955 components: - type: Transform - pos: 25.5,18.5 + pos: -96.5,-6.5 parent: 2 -- proto: PosterContrabandRise - entities: - - uid: 24161 + - uid: 24956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,18.5 + pos: 24.5,36.5 parent: 2 - - uid: 42371 + - uid: 24957 components: - type: Transform - pos: 30.5,73.5 - parent: 40203 - - uid: 42372 + rot: 1.5707963267948966 rad + pos: -102.5,25.5 + parent: 2 + - uid: 24958 components: - type: Transform - pos: 33.5,30.5 - parent: 40203 - - uid: 45768 + rot: 3.141592653589793 rad + pos: -100.5,22.5 + parent: 2 + - uid: 24959 components: - type: Transform - pos: -1.5,10.5 - parent: 44970 -- proto: PosterContrabandSmoke - entities: - - uid: 42373 + rot: 1.5707963267948966 rad + pos: -110.5,9.5 + parent: 2 + - uid: 24960 components: - type: Transform - pos: 58.5,77.5 - parent: 40203 -- proto: PosterContrabandSpaceCola - entities: - - uid: 24162 + rot: -1.5707963267948966 rad + pos: -103.5,11.5 + parent: 2 + - uid: 24961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-0.5 + rot: -1.5707963267948966 rad + pos: -103.5,7.5 parent: 2 -- proto: PosterContrabandSpaceCube - entities: - - uid: 42374 + - uid: 24962 components: - type: Transform - pos: 64.5,43.5 - parent: 40203 - - uid: 42375 + rot: -1.5707963267948966 rad + pos: -119.5,8.5 + parent: 2 + - uid: 24963 components: - type: Transform - pos: 64.5,43.5 - parent: 40203 -- proto: PosterContrabandSunkist - entities: - - uid: 45769 + rot: -1.5707963267948966 rad + pos: -119.5,3.5 + parent: 2 + - uid: 24964 components: - type: Transform - pos: -3.5,3.5 - parent: 44970 -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 24163 + rot: 1.5707963267948966 rad + pos: -117.5,11.5 + parent: 2 + - uid: 24965 components: - type: Transform - pos: 89.5,-27.5 + pos: -114.5,12.5 parent: 2 - - uid: 24164 + - uid: 24966 components: - type: Transform rot: -1.5707963267948966 rad - pos: 95.5,-6.5 + pos: -112.5,3.5 parent: 2 -- proto: PosterContrabandTheBigGasTruth - entities: - - uid: 24165 + - uid: 24967 components: - type: Transform - pos: -20.5,-64.5 + rot: 1.5707963267948966 rad + pos: -117.5,3.5 parent: 2 - - uid: 42376 + - uid: 24968 components: - type: Transform - pos: 37.5,71.5 - parent: 40203 -- proto: PosterContrabandTheGriffin - entities: - - uid: 42377 + rot: 1.5707963267948966 rad + pos: -110.5,3.5 + parent: 2 + - uid: 24969 components: - type: Transform - pos: 27.5,69.5 - parent: 40203 -- proto: PosterContrabandTools - entities: - - uid: 24166 + pos: -104.5,4.5 + parent: 2 + - uid: 24970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 + rot: 1.5707963267948966 rad + pos: -101.5,3.5 parent: 2 -- proto: PosterContrabandUnreadableAnnouncement - entities: - - uid: 24167 + - uid: 24971 components: - - type: MetaData - desc: Плакат, объявляющий о чём-то, однако, кажется, что они, забыли сделать его читаемым. Вы можете разобрать лишь пару слов.. "Мапперская сходка". - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,6.5 + rot: 3.141592653589793 rad + pos: -98.5,1.5 parent: 2 - - uid: 45770 + - uid: 24972 components: - - type: MetaData - desc: Самая обычная, слегка обгоревшая вывеска. - name: горячие источники "тёплая плазма" - type: Transform - pos: 3.5,0.5 - parent: 44970 -- proto: PosterContrabandVoteWeh - entities: - - uid: 24168 + rot: 1.5707963267948966 rad + pos: -101.5,7.5 + parent: 2 + - uid: 24973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-10.5 + rot: 1.5707963267948966 rad + pos: -101.5,11.5 parent: 2 -- proto: PosterContrabandWehWatches - entities: - - uid: 24169 + - uid: 24974 components: - type: Transform - pos: -18.5,11.5 + rot: 3.141592653589793 rad + pos: -111.5,14.5 parent: 2 - - uid: 42378 + - uid: 24975 components: - type: Transform - pos: 81.5,33.5 - parent: 40203 -- proto: PosterLegit12Gauge - entities: - - uid: 24170 + pos: -106.5,26.5 + parent: 2 + - uid: 24976 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-10.5 + pos: -104.5,14.5 parent: 2 -- proto: PosterLegit50thAnniversaryVintageReprint - entities: - - uid: 42379 + - uid: 24977 components: - type: Transform - pos: 48.5,56.5 - parent: 40203 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 24171 + pos: -111.5,26.5 + parent: 2 + - uid: 24978 components: - type: Transform - pos: -27.5,44.5 + rot: -1.5707963267948966 rad + pos: -112.5,18.5 parent: 2 -- proto: PosterLegitBlessThisSpess - entities: - - uid: 24172 + - uid: 24979 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 + rot: 1.5707963267948966 rad + pos: -105.5,18.5 parent: 2 - - uid: 42380 + - uid: 24980 components: - type: Transform - pos: 50.5,50.5 - parent: 40203 -- proto: PosterLegitBuild - entities: - - uid: 24173 + rot: 3.141592653589793 rad + pos: -108.5,18.5 + parent: 2 + - uid: 24981 components: - type: Transform - pos: 3.5,-45.5 + pos: -96.5,5.5 parent: 2 - - uid: 42381 + - uid: 24982 components: - type: Transform - pos: 69.5,62.5 - parent: 40203 -- proto: PosterLegitCarbonDioxide - entities: - - uid: 24174 + pos: 96.5,-8.5 + parent: 2 + - uid: 24983 components: - type: Transform - pos: -11.5,43.5 + rot: -1.5707963267948966 rad + pos: 102.5,-25.5 parent: 2 -- proto: PosterLegitCarpMount - entities: - - uid: 24175 + - uid: 24984 components: - type: Transform - pos: 73.5,-36.5 + pos: -50.5,-2.5 parent: 2 -- proto: PosterLegitCleanliness - entities: - - uid: 24176 + - uid: 24985 components: - type: Transform - pos: 8.5,47.5 + pos: -55.5,-2.5 parent: 2 - - uid: 24177 + - uid: 24986 components: - type: Transform - pos: 32.5,35.5 + rot: 1.5707963267948966 rad + pos: -34.5,15.5 parent: 2 - - uid: 24178 + - uid: 24987 components: - type: Transform - pos: 9.5,49.5 + rot: 3.141592653589793 rad + pos: -22.5,14.5 parent: 2 - - uid: 24179 + - uid: 24988 components: - type: Transform - pos: -56.5,-3.5 + rot: 1.5707963267948966 rad + pos: -30.5,-41.5 parent: 2 - - uid: 42382 + - uid: 42801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,83.5 - parent: 40203 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 24180 + rot: 1.5707963267948966 rad + pos: 43.5,71.5 + parent: 40599 + - uid: 42802 components: - type: Transform - pos: -6.5,62.5 - parent: 2 - - uid: 42383 + rot: -1.5707963267948966 rad + pos: 66.5,78.5 + parent: 40599 + - uid: 42803 components: - type: Transform - pos: 34.5,67.5 - parent: 40203 -- proto: PosterLegitEnlist - entities: - - uid: 24181 + rot: -1.5707963267948966 rad + pos: 60.5,78.5 + parent: 40599 + - uid: 42804 components: - type: Transform rot: -1.5707963267948966 rad - pos: 95.5,-5.5 - parent: 2 -- proto: PosterLegitFoamForceAd - entities: - - uid: 42384 + pos: 69.5,78.5 + parent: 40599 + - uid: 42805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,62.5 + parent: 40599 + - uid: 42806 + components: + - type: Transform + pos: 65.5,59.5 + parent: 40599 + - uid: 42807 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,78.5 - parent: 40203 -- proto: PosterLegitHelpOthers - entities: - - uid: 24182 + pos: 68.5,53.5 + parent: 40599 + - uid: 42808 components: - type: Transform - pos: 23.5,12.5 - parent: 2 - - uid: 24183 + rot: 3.141592653589793 rad + pos: 65.5,50.5 + parent: 40599 + - uid: 42809 components: - type: Transform - pos: -19.5,52.5 - parent: 2 - - uid: 42385 + rot: 1.5707963267948966 rad + pos: 63.5,53.5 + parent: 40599 + - uid: 42810 components: - type: Transform - pos: 67.5,72.5 - parent: 40203 -- proto: PosterLegitHereForYourSafety - entities: - - uid: 24184 + pos: 73.5,79.5 + parent: 40599 + - uid: 42811 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 2 - - uid: 42386 + pos: 73.5,71.5 + parent: 40599 + - uid: 42812 components: - type: Transform - pos: 46.5,68.5 - parent: 40203 -- proto: PosterLegitHighClassMartini - entities: - - uid: 24185 + rot: 1.5707963267948966 rad + pos: 54.5,71.5 + parent: 40599 + - uid: 42813 components: - type: Transform - pos: 40.5,17.5 - parent: 2 -- proto: PosterLegitIan - entities: - - uid: 24186 + rot: 3.141592653589793 rad + pos: 58.5,74.5 + parent: 40599 + - uid: 42814 components: - type: Transform - pos: -3.5,-13.5 - parent: 2 -- proto: PosterLegitIonRifle - entities: - - uid: 24187 + rot: 1.5707963267948966 rad + pos: 68.5,70.5 + parent: 40599 + - uid: 42815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-7.5 - parent: 2 -- proto: PosterLegitJustAWeekAway - entities: - - uid: 24188 + rot: -1.5707963267948966 rad + pos: 68.5,62.5 + parent: 40599 + - uid: 42816 components: - type: Transform - pos: -23.5,46.5 - parent: 2 - - uid: 42387 + rot: -1.5707963267948966 rad + pos: 53.5,59.5 + parent: 40599 + - uid: 42817 components: - type: Transform - pos: 42.5,54.5 - parent: 40203 - - uid: 42388 + rot: -1.5707963267948966 rad + pos: 53.5,63.5 + parent: 40599 + - uid: 42818 components: - type: Transform - pos: 46.5,72.5 - parent: 40203 - - uid: 42389 + pos: 41.5,66.5 + parent: 40599 + - uid: 42819 components: - type: Transform - pos: 74.5,76.5 - parent: 40203 -- proto: PosterLegitLoveIan - entities: - - uid: 24189 + pos: 31.5,66.5 + parent: 40599 + - uid: 42820 components: - type: Transform - pos: -12.5,-8.5 - parent: 2 -- proto: PosterLegitMime - entities: - - uid: 24190 + pos: 47.5,66.5 + parent: 40599 + - uid: 42821 components: - type: Transform - pos: 65.5,11.5 - parent: 2 -- proto: PosterLegitNanomichiAd - entities: - - uid: 24191 + pos: 55.5,49.5 + parent: 40599 + - uid: 42822 + components: + - type: Transform + pos: 58.5,57.5 + parent: 40599 + - uid: 42823 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,55.5 + parent: 40599 + - uid: 42824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,78.5 + parent: 40599 + - uid: 42825 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-37.5 - parent: 2 - - uid: 24192 + pos: 41.5,76.5 + parent: 40599 + - uid: 42826 components: - type: Transform - pos: -8.5,-13.5 - parent: 2 -- proto: PosterLegitNanotrasenLogo + pos: 39.5,74.5 + parent: 40599 + - uid: 46127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 45355 + - uid: 47305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 47245 +- proto: PoweredlightBlue entities: - - uid: 24193 + - uid: 24989 components: - type: Transform - pos: 3.5,-12.5 + rot: 3.141592653589793 rad + pos: -37.5,-9.5 parent: 2 -- proto: PosterLegitNoERP +- proto: PoweredlightCyan entities: - - uid: 24194 + - uid: 24990 components: - type: Transform - pos: -37.5,15.5 + rot: 3.141592653589793 rad + pos: 53.5,-2.5 parent: 2 - - uid: 24195 + - type: PoweredLight + on: False + - uid: 24991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,60.5 + rot: 1.5707963267948966 rad + pos: -26.5,45.5 parent: 2 - - uid: 24196 + - uid: 24992 components: - type: Transform - pos: -76.5,11.5 + rot: 3.141592653589793 rad + pos: 26.5,4.5 parent: 2 - - uid: 24197 +- proto: PoweredlightEmpty + entities: + - uid: 23758 components: - type: Transform - pos: -73.5,12.5 + rot: -1.5707963267948966 rad + pos: -99.5,19.5 parent: 2 - - uid: 24198 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23759 + - type: ApcPowerReceiver + powerLoad: 25 + - type: DamageOnInteract + isDamageActive: False + - uid: 23760 components: - type: Transform - pos: -77.5,15.5 + rot: 1.5707963267948966 rad + pos: -102.5,19.5 parent: 2 - - uid: 24199 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23761 + - type: ApcPowerReceiver + powerLoad: 25 + - type: DamageOnInteract + isDamageActive: False + - uid: 24993 components: - type: Transform - pos: -73.5,13.5 + pos: -56.5,67.5 parent: 2 - - uid: 24200 + - uid: 24994 components: - type: Transform - pos: -73.5,14.5 + rot: 3.141592653589793 rad + pos: 98.5,-40.5 parent: 2 - - uid: 45771 + - uid: 42639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 44970 - - uid: 45772 + pos: 63.5,66.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42640 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42641 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,10.5 - parent: 44970 -- proto: PosterLegitNTTGC - entities: - - uid: 24201 + pos: 63.5,78.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42642 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42643 components: - type: Transform - pos: 4.5,20.5 - parent: 2 -- proto: PosterLegitObey - entities: - - uid: 24202 + rot: 3.141592653589793 rad + pos: 64.5,74.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42644 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42645 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,16.5 - parent: 2 -- proto: PosterLegitPeriodicTable - entities: - - uid: 24203 + pos: 55.5,51.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42646 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42647 components: - type: Transform - pos: -11.5,40.5 - parent: 2 - - uid: 24204 + pos: 53.5,79.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42648 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42827 components: - type: Transform - pos: -88.5,54.5 - parent: 2 -- proto: PosterLegitRenault - entities: - - uid: 24205 + rot: -1.5707963267948966 rad + pos: 66.5,70.5 + parent: 40599 + - uid: 46096 components: - type: Transform - pos: 9.5,-1.5 - parent: 2 -- proto: PosterLegitReportCrimes - entities: - - uid: 42390 + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 45355 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 46097 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 46098 components: - type: Transform - pos: 63.5,73.5 - parent: 40203 -- proto: PosterLegitSafetyEyeProtection - entities: - - uid: 24206 + pos: 3.5,9.5 + parent: 45355 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 46099 + - type: ApcPowerReceiver + powerLoad: 60 + - uid: 46100 components: - type: Transform - pos: 7.5,-39.5 - parent: 2 - - uid: 42391 + pos: -4.5,9.5 + parent: 45355 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 46101 + - type: ApcPowerReceiver + powerLoad: 60 + - uid: 46102 components: - type: Transform - pos: 54.5,56.5 - parent: 40203 -- proto: PosterLegitSafetyInternals - entities: - - uid: 24207 + pos: 0.5,5.5 + parent: 45355 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 46103 + - type: ApcPowerReceiver + powerLoad: 60 + - uid: 47296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 - parent: 2 -- proto: PosterLegitSafetyMothDelam + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 47245 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 47297 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: PoweredlightExterior entities: - - uid: 24208 + - uid: 42828 components: - type: Transform - pos: -24.5,-43.5 - parent: 2 -- proto: PosterLegitSafetyMothEpi - entities: - - uid: 24209 + rot: -1.5707963267948966 rad + pos: 52.5,71.5 + parent: 40599 + - uid: 42829 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,56.5 - parent: 2 -- proto: PosterLegitSafetyMothHardhat + rot: 1.5707963267948966 rad + pos: 47.5,71.5 + parent: 40599 +- proto: PoweredlightGreen entities: - - uid: 24210 + - uid: 24995 components: - type: Transform - pos: 1.5,-39.5 + rot: -1.5707963267948966 rad + pos: 53.5,-2.5 parent: 2 - - uid: 42392 + - type: PoweredLight + on: False + - uid: 42830 components: - type: Transform - pos: 46.5,57.5 - parent: 40203 -- proto: PosterLegitSafetyMothMeth - entities: - - uid: 24211 + pos: 42.5,63.5 + parent: 40599 + - uid: 42831 components: - type: Transform - pos: -9.5,45.5 - parent: 2 -- proto: PosterLegitSafetyMothPiping + pos: 44.5,63.5 + parent: 40599 +- proto: PoweredlightLED entities: - - uid: 24212 + - uid: 24996 components: - type: Transform - pos: 9.5,-55.5 + pos: 4.5,62.5 parent: 2 - - uid: 24213 + - uid: 24997 components: - type: Transform - pos: 47.5,-51.5 + pos: 10.5,48.5 parent: 2 -- proto: PosterLegitSafetyReport - entities: - - uid: 24214 + - uid: 24998 components: - type: Transform - pos: -29.5,-5.5 + rot: 1.5707963267948966 rad + pos: -28.5,56.5 parent: 2 - - uid: 24215 + - uid: 24999 components: - type: Transform - pos: -18.5,5.5 + pos: -21.5,47.5 parent: 2 -- proto: PosterLegitScience - entities: - - uid: 24216 + - uid: 25000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-32.5 + pos: -27.5,52.5 parent: 2 -- proto: PosterLegitSecWatch - entities: - - uid: 24217 + - uid: 25001 components: - type: Transform - pos: -41.5,-12.5 + pos: -15.5,55.5 parent: 2 - - uid: 24218 + - uid: 25002 components: - type: Transform - pos: -11.5,54.5 + pos: -22.5,52.5 parent: 2 - - uid: 42393 - components: - - type: Transform - pos: 35.5,60.5 - parent: 40203 -- proto: PosterLegitSoftCapPopArt - entities: - - uid: 42394 + - uid: 25003 components: - type: Transform - pos: 58.5,29.5 - parent: 40203 -- proto: PosterLegitSpaceCops - entities: - - uid: 24219 + rot: 1.5707963267948966 rad + pos: -2.5,37.5 + parent: 2 + - uid: 25004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,8.5 + rot: -1.5707963267948966 rad + pos: -0.5,42.5 parent: 2 -- proto: PosterLegitStateLaws - entities: - - uid: 24220 + - uid: 25005 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-36.5 + pos: -22.5,54.5 parent: 2 -- proto: PosterLegitThereIsNoGasGiant - entities: - - uid: 24221 + - uid: 25006 components: - type: Transform - pos: -4.5,-57.5 + rot: 1.5707963267948966 rad + pos: -18.5,48.5 parent: 2 -- proto: PosterLegitUeNo - entities: - - uid: 42395 - components: - - type: Transform - pos: 69.5,80.5 - parent: 40203 - - uid: 45773 - components: - - type: Transform - pos: 1.5,6.5 - parent: 44970 -- proto: PosterLegitVacation - entities: - - uid: 24222 + - uid: 25007 components: - type: Transform - pos: 23.5,5.5 + rot: -1.5707963267948966 rad + pos: -12.5,49.5 parent: 2 -- proto: PosterLegitWalk - entities: - - uid: 24223 + - uid: 25008 components: - type: Transform - pos: -2.5,-18.5 + rot: -1.5707963267948966 rad + pos: -12.5,60.5 parent: 2 - - uid: 42396 + - uid: 25009 components: - type: Transform - pos: 52.5,67.5 - parent: 40203 -- proto: PosterLegitWorkForAFuture - entities: - - uid: 24224 + rot: 3.141592653589793 rad + pos: -3.5,47.5 + parent: 2 + - uid: 25010 components: - type: Transform - pos: -14.5,-11.5 + pos: 5.5,49.5 parent: 2 - - uid: 42397 + - uid: 25011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,80.5 - parent: 40203 -- proto: PotatoAIChip - entities: - - uid: 24225 + rot: 3.141592653589793 rad + pos: 4.5,36.5 + parent: 2 + - uid: 25012 components: - type: Transform - pos: 3.2550044,15.41646 + rot: 1.5707963267948966 rad + pos: -2.5,55.5 parent: 2 -- proto: PottedPlant0 - entities: - - uid: 24226 + - uid: 25013 components: - type: Transform - pos: 16.5,-35.5 + rot: 3.141592653589793 rad + pos: -3.5,61.5 parent: 2 - - uid: 24227 + - uid: 25014 components: - type: Transform - pos: 19.5,-50.5 + pos: -8.5,59.5 parent: 2 - - uid: 24228 + - uid: 25015 components: - type: Transform - pos: 52.5,-52.5 + pos: -3.5,52.5 parent: 2 -- proto: PottedPlant10 - entities: - - uid: 24229 + - uid: 25016 components: - type: Transform - pos: -44.5,-0.5 + pos: 3.5,54.5 parent: 2 - - uid: 24230 + - uid: 25017 components: - type: Transform - pos: 35.5,-45.5 + rot: -1.5707963267948966 rad + pos: -4.5,55.5 parent: 2 - - uid: 24231 + - uid: 25018 components: - type: Transform - pos: 8.5,-2.5 + rot: 3.141592653589793 rad + pos: 6.5,43.5 parent: 2 -- proto: PottedPlant12 +- proto: PoweredlightOrange entities: - - uid: 24232 + - uid: 25019 components: - type: Transform - pos: -28.5,4.5 + pos: -5.5,44.5 parent: 2 -- proto: PottedPlant13 - entities: - - uid: 24233 + - uid: 25020 components: - type: Transform + rot: 1.5707963267948966 rad pos: -10.5,42.5 parent: 2 -- proto: PottedPlant14 +- proto: PoweredlightPink entities: - - uid: 14671 + - uid: 25021 components: - type: Transform - pos: -104.5,26.5 + rot: 3.141592653589793 rad + pos: 15.5,31.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 14672 -- proto: PottedPlant15 +- proto: PoweredLightPostSmall entities: - - uid: 42398 + - uid: 25022 components: - type: Transform - pos: 71.3058,74.55588 - parent: 40203 -- proto: PottedPlant19 - entities: - - uid: 14603 + rot: -1.5707963267948966 rad + pos: 27.5,-45.5 + parent: 2 + - uid: 25023 components: - type: Transform - pos: -113.5,26.5 + pos: -0.5,64.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 14604 - - uid: 24234 + - uid: 25024 components: - type: Transform - pos: 26.5,-41.5 + pos: 3.5,67.5 parent: 2 -- proto: PottedPlant20 - entities: - - uid: 24235 + - uid: 46746 components: - type: Transform - pos: -10.5,40.5 - parent: 2 -- proto: PottedPlant21 - entities: - - uid: 24236 + pos: -1.5,3.5 + parent: 46584 + - uid: 46747 components: - type: Transform - pos: 4.5,-42.5 - parent: 2 - - uid: 24237 + pos: 0.5,8.5 + parent: 46584 + - uid: 46748 components: - type: Transform - pos: 30.5,-43.5 - parent: 2 - - uid: 24238 + pos: -0.5,11.5 + parent: 46584 + - uid: 46749 components: - type: Transform - pos: 28.5,-35.5 + pos: 10.5,7.5 + parent: 46584 +- proto: PoweredLightPostSmallEmpty + entities: + - uid: 23763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-27.5 parent: 2 - - uid: 24239 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23764 + - type: ApcPowerReceiver + powerLoad: 60 + needsPower: False + - type: DamageOnInteract + isDamageActive: False + - uid: 23765 components: - type: Transform - pos: 1.5,45.5 + rot: 1.5707963267948966 rad + pos: 35.5,-19.5 parent: 2 - - uid: 24240 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23766 + - type: ApcPowerReceiver + powerLoad: 60 + needsPower: False + - type: ExtensionCableReceiver + receptionRange: 12 + - type: DamageOnInteract + isDamageActive: False + - uid: 23767 components: - type: Transform - pos: -18.5,22.5 + pos: 42.5,-1.5 parent: 2 - - uid: 24241 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23768 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 23769 components: - type: Transform - pos: -103.5,6.5 + pos: 42.5,3.5 parent: 2 - type: ContainerContainer containers: - stash: !type:ContainerSlot + light_bulb: !type:ContainerSlot showEnts: False occludes: True - ent: 24242 -- proto: PottedPlant22 - entities: - - uid: 24243 + ent: 23770 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 23771 components: - type: Transform - pos: 26.5,-30.5 + rot: 1.5707963267948966 rad + pos: -5.5,25.5 parent: 2 - - uid: 24244 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23772 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 23773 components: - type: Transform - pos: -17.5,38.5 + pos: 31.5,9.5 parent: 2 -- proto: PottedPlant24 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23774 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False +- proto: PoweredlightRed entities: - - uid: 24245 + - uid: 25025 components: - type: Transform - pos: 3.5194008,20.269768 + rot: 3.141592653589793 rad + pos: -23.5,-21.5 parent: 2 -- proto: PottedPlant4 - entities: - - uid: 24246 + - uid: 25026 components: - type: Transform - pos: -25.5,8.5 + rot: 1.5707963267948966 rad + pos: -33.5,-17.5 parent: 2 -- proto: PottedPlant6 - entities: - - uid: 24247 + - uid: 25027 components: - type: Transform - pos: 74.5,-38.5 + rot: 1.5707963267948966 rad + pos: -40.5,-13.5 parent: 2 -- proto: PottedPlantAlt1 - entities: - - uid: 42399 + - uid: 25028 components: - type: Transform - pos: 71.47768,71.35446 - parent: 40203 -- proto: PottedPlantAlt2 - entities: - - uid: 24248 + rot: -1.5707963267948966 rad + pos: -19.5,-17.5 + parent: 2 + - uid: 25029 components: - type: Transform - pos: 51.5,-22.5 + rot: -1.5707963267948966 rad + pos: -32.5,-6.5 parent: 2 - - uid: 24249 + - uid: 25030 components: - type: Transform - pos: 25.5,-53.5 + rot: 1.5707963267948966 rad + pos: -38.5,7.5 parent: 2 -- proto: PottedPlantAlt3 - entities: - - uid: 24250 + - uid: 25031 components: - type: Transform - pos: 52.5,-22.5 + rot: -1.5707963267948966 rad + pos: -36.5,-0.5 parent: 2 -- proto: PottedPlantAlt4 - entities: - - uid: 24251 + - uid: 25032 components: - type: Transform - pos: -20.497095,22.621477 + rot: 1.5707963267948966 rad + pos: -34.5,1.5 parent: 2 - - uid: 24252 + - uid: 25033 components: - type: Transform - pos: -69.758606,-2.2889142 + rot: 1.5707963267948966 rad + pos: -50.5,7.5 parent: 2 - - uid: 24253 + - uid: 25034 components: - type: Transform - pos: -65.289856,-2.3045392 + rot: 1.5707963267948966 rad + pos: -50.5,0.5 parent: 2 - - uid: 24254 + - uid: 25035 components: - type: Transform - pos: -103.5,12.5 + rot: 3.141592653589793 rad + pos: -43.5,10.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 24255 -- proto: PottedPlantAlt6 - entities: - - uid: 24256 + - uid: 25036 components: - type: Transform - pos: -23.5,26.5 + rot: 3.141592653589793 rad + pos: -49.5,10.5 parent: 2 -- proto: PottedPlantAlt8 - entities: - - uid: 24257 + - uid: 25037 components: - type: Transform - pos: -5.5611515,18.122728 + pos: -27.5,12.5 parent: 2 -- proto: PottedPlantBioluminscent - entities: - - uid: 24258 + - uid: 25038 components: - type: Transform - pos: -31.5,2.5 + rot: 3.141592653589793 rad + pos: -32.5,10.5 parent: 2 -- proto: PottedPlantRandom - entities: - - uid: 24259 + - uid: 25039 components: - type: Transform - pos: 18.5,-7.5 + pos: -44.5,-2.5 parent: 2 - - uid: 24260 + - uid: 25040 components: - type: Transform - pos: 16.5,-13.5 + rot: 3.141592653589793 rad + pos: -37.5,10.5 parent: 2 - - uid: 24261 + - uid: 25041 components: - type: Transform - pos: -50.5,-2.5 + rot: 3.141592653589793 rad + pos: -25.5,-21.5 parent: 2 - - uid: 24262 + - uid: 25042 components: - type: Transform - pos: 15.5,8.5 + rot: 3.141592653589793 rad + pos: -29.5,-21.5 parent: 2 - - uid: 24263 + - uid: 25043 components: - type: Transform - pos: -30.5,12.5 + pos: -28.5,16.5 parent: 2 - - uid: 24264 + - uid: 25044 components: - type: Transform - pos: 82.5,-37.5 + pos: -22.5,20.5 parent: 2 - - uid: 24265 + - uid: 25045 components: - type: Transform - pos: 19.5,21.5 + pos: 26.5,15.5 parent: 2 - - uid: 24266 + - uid: 25046 components: - type: Transform - pos: 36.5,27.5 + rot: 3.141592653589793 rad + pos: -47.5,-9.5 parent: 2 - - uid: 24267 + - uid: 25047 components: - type: Transform - pos: 39.5,25.5 + rot: 3.141592653589793 rad + pos: -44.5,-9.5 parent: 2 - - uid: 24268 + - uid: 25048 components: - type: Transform - pos: 64.5,7.5 + rot: -1.5707963267948966 rad + pos: 53.5,4.5 parent: 2 - - uid: 24269 + - type: PoweredLight + on: False +- proto: PoweredlightSodium + entities: + - uid: 25049 components: - type: Transform - pos: 60.5,9.5 + rot: -1.5707963267948966 rad + pos: -13.5,12.5 parent: 2 - - uid: 24270 + - uid: 25050 components: - type: Transform - pos: 57.5,9.5 + pos: 5.5,-14.5 parent: 2 - - uid: 24271 + - uid: 25051 components: - type: Transform - pos: 53.5,9.5 + pos: -0.5,-14.5 parent: 2 - - uid: 24272 + - uid: 25052 components: - type: Transform - pos: 41.5,17.5 + rot: 3.141592653589793 rad + pos: -7.5,-17.5 parent: 2 - - uid: 24273 + - uid: 25053 components: - type: Transform - pos: 41.5,17.5 + rot: 1.5707963267948966 rad + pos: -17.5,3.5 parent: 2 - - uid: 24274 + - uid: 25054 components: - type: Transform - pos: 24.5,38.5 + rot: 1.5707963267948966 rad + pos: 18.5,12.5 parent: 2 - - uid: 24275 + - uid: 25055 components: - type: Transform - pos: 48.5,21.5 + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 parent: 2 - - uid: 24276 + - uid: 25056 components: - type: Transform - pos: 24.5,31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-12.5 parent: 2 - - uid: 24277 + - uid: 25057 components: - type: Transform - pos: 34.5,31.5 + rot: -1.5707963267948966 rad + pos: 22.5,-2.5 parent: 2 - - uid: 24278 + - uid: 25058 components: - type: Transform - pos: 39.5,17.5 + rot: 1.5707963267948966 rad + pos: -3.5,3.5 parent: 2 - - uid: 24279 + - uid: 25059 components: - type: Transform - pos: -6.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,3.5 parent: 2 - - uid: 24280 + - uid: 25060 components: - type: Transform - pos: -7.5,-12.5 + pos: 62.5,-22.5 parent: 2 - - uid: 24281 + - uid: 25061 components: - type: Transform - pos: 34.5,17.5 + rot: 3.141592653589793 rad + pos: 55.5,-24.5 parent: 2 - - uid: 24282 + - uid: 25062 components: - type: Transform - pos: 13.5,29.5 + rot: 3.141592653589793 rad + pos: 48.5,-24.5 parent: 2 - - uid: 24283 + - uid: 25063 components: - type: Transform - pos: 13.5,26.5 + pos: -19.5,26.5 parent: 2 - - uid: 24284 + - uid: 25064 components: - type: Transform - pos: 5.5,-32.5 + rot: 3.141592653589793 rad + pos: -19.5,22.5 parent: 2 - - uid: 24285 + - uid: 25065 components: - type: Transform - pos: 7.5,-32.5 + pos: 53.5,4.5 parent: 2 - - uid: 24286 + - type: PoweredLight + on: False + - uid: 25066 components: - type: Transform - pos: -9.5,-5.5 + rot: -1.5707963267948966 rad + pos: 39.5,25.5 parent: 2 - - uid: 24287 + - uid: 25067 components: - type: Transform - pos: 38.5,-0.5 + rot: -1.5707963267948966 rad + pos: 39.5,17.5 parent: 2 - - uid: 24288 + - uid: 25068 components: - type: Transform - pos: 42.5,11.5 + pos: 17.5,-19.5 parent: 2 - - uid: 24289 + - uid: 25069 components: - type: Transform - pos: 38.5,13.5 + rot: -1.5707963267948966 rad + pos: 5.5,-22.5 parent: 2 - - uid: 24290 + - uid: 25070 components: - type: Transform - pos: 18.5,-4.5 + rot: 1.5707963267948966 rad + pos: -0.5,-22.5 parent: 2 - - uid: 24291 + - uid: 25071 components: - type: Transform - pos: 9.5,20.5 + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 parent: 2 - - uid: 24292 + - uid: 25072 components: - type: Transform - pos: 23.5,51.5 + rot: -1.5707963267948966 rad + pos: -3.5,69.5 parent: 2 - - uid: 24293 + - uid: 25073 components: - type: Transform - pos: -34.5,8.5 + rot: 3.141592653589793 rad + pos: -6.5,18.5 parent: 2 - - uid: 24294 + - uid: 25074 components: - type: Transform - pos: 10.5,-49.5 + rot: -1.5707963267948966 rad + pos: 7.5,19.5 parent: 2 - - uid: 24295 + - uid: 25075 components: - type: Transform - pos: 0.5,-46.5 + rot: -1.5707963267948966 rad + pos: 3.5,20.5 parent: 2 - - uid: 24296 + - uid: 25076 components: - type: Transform - pos: -6.5,-42.5 + pos: 93.5,-14.5 parent: 2 - - uid: 24297 + - uid: 25077 components: - type: Transform - pos: -6.5,-48.5 + rot: 3.141592653589793 rad + pos: 30.5,17.5 parent: 2 - - uid: 24298 + - type: PoweredLight + on: False + - uid: 25078 components: - type: Transform - pos: -50.5,10.5 + rot: -1.5707963267948966 rad + pos: 22.5,3.5 parent: 2 - - uid: 24299 + - uid: 25079 components: - type: Transform - pos: -8.5,-38.5 + rot: 1.5707963267948966 rad + pos: -17.5,-12.5 parent: 2 - - uid: 24300 +- proto: PoweredSmallLight + entities: + - uid: 25080 components: - type: Transform - pos: 3.5,38.5 + rot: 1.5707963267948966 rad + pos: 45.5,-14.5 parent: 2 - - uid: 24301 + - uid: 25081 components: - type: Transform - pos: -12.5,60.5 + rot: 3.141592653589793 rad + pos: 54.5,-13.5 parent: 2 - - uid: 24302 + - uid: 25082 components: - type: Transform - pos: -7.5,2.5 + rot: -1.5707963267948966 rad + pos: 51.5,-14.5 parent: 2 - - uid: 24303 + - uid: 25083 components: - type: Transform - pos: -9.5,-0.5 + pos: 2.5,58.5 parent: 2 - - uid: 24304 + - uid: 25084 components: - type: Transform - pos: 12.5,2.5 + rot: -1.5707963267948966 rad + pos: 94.5,-9.5 parent: 2 - - uid: 24305 + - uid: 25085 components: - type: Transform - pos: 14.5,-0.5 + rot: -1.5707963267948966 rad + pos: 94.5,-11.5 parent: 2 - - uid: 24306 + - uid: 25086 components: - type: Transform - pos: 8.5,3.5 + rot: -1.5707963267948966 rad + pos: -24.5,60.5 parent: 2 - - uid: 24307 + - uid: 25087 components: - type: Transform - pos: -3.5,3.5 + pos: -50.5,58.5 parent: 2 - - uid: 24308 + - uid: 25088 components: - type: Transform - pos: -4.5,55.5 + rot: 1.5707963267948966 rad + pos: -113.5,30.5 parent: 2 - - uid: 24309 + - uid: 25089 components: - type: Transform - pos: -6.5,56.5 + rot: 1.5707963267948966 rad + pos: -113.5,28.5 parent: 2 - - uid: 24310 + - uid: 25090 components: - type: Transform - pos: 66.5,-36.5 + rot: -1.5707963267948966 rad + pos: -104.5,30.5 parent: 2 - - uid: 24311 + - uid: 25091 components: - type: Transform - pos: 66.5,-49.5 + rot: 1.5707963267948966 rad + pos: -107.5,30.5 parent: 2 - - uid: 24312 + - uid: 25092 components: - type: Transform - pos: 70.5,-49.5 + rot: -1.5707963267948966 rad + pos: -104.5,32.5 parent: 2 - - uid: 24313 + - uid: 25093 components: - type: Transform - pos: 70.5,-41.5 + rot: 1.5707963267948966 rad + pos: -113.5,32.5 parent: 2 - - uid: 24314 + - uid: 25094 components: - type: Transform - pos: 2.5,-53.5 + rot: 3.141592653589793 rad + pos: -53.5,-6.5 parent: 2 - - uid: 24315 + - uid: 25095 components: - type: Transform - pos: 45.5,20.5 + rot: 3.141592653589793 rad + pos: -55.5,-6.5 parent: 2 -- proto: PottedPlantRandomPlastic - entities: - - uid: 24316 + - uid: 25096 components: - type: Transform - pos: 26.5,-39.5 + rot: 3.141592653589793 rad + pos: -51.5,-6.5 parent: 2 - - uid: 24317 + - uid: 25097 components: - type: Transform - pos: -18.5,55.5 + rot: 3.141592653589793 rad + pos: 12.5,-43.5 parent: 2 - - uid: 24318 + - uid: 25098 components: - type: Transform - pos: -12.5,55.5 + rot: 1.5707963267948966 rad + pos: -34.5,6.5 parent: 2 -- proto: PottedPlantRD - entities: - - uid: 24319 + - uid: 25099 components: - type: Transform - pos: 27.5,-53.5 + rot: 3.141592653589793 rad + pos: -5.5,38.5 parent: 2 -- proto: PowerCageSmall - entities: - - uid: 24320 + - uid: 25100 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5050044,15.63521 + pos: -28.5,6.5 parent: 2 -- proto: PowerCellAntiqueProto - entities: - - uid: 42400 + - uid: 25101 components: - type: Transform - pos: 68.2931,63.781418 - parent: 40203 -- proto: PowerCellMicroreactor - entities: - - uid: 42402 + rot: -1.5707963267948966 rad + pos: 82.5,-34.5 + parent: 2 + - uid: 25102 components: - type: Transform - parent: 42401 - - type: Physics - canCollide: False -- proto: PowerCellRecharger - entities: - - uid: 24321 + pos: -33.5,-43.5 + parent: 2 + - uid: 25103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,54.5 + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 - - uid: 24322 + - uid: 25104 components: - type: Transform - pos: -39.5,-11.5 + rot: -1.5707963267948966 rad + pos: 42.5,29.5 parent: 2 - - uid: 24323 + - uid: 25105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-31.5 + pos: 59.5,4.5 parent: 2 - - uid: 24324 + - uid: 25106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-36.5 + rot: -1.5707963267948966 rad + pos: 67.5,4.5 parent: 2 - - uid: 24325 + - uid: 25107 components: - type: Transform - pos: 26.5,-49.5 + rot: 1.5707963267948966 rad + pos: 59.5,2.5 parent: 2 - - uid: 24326 + - uid: 25108 components: - type: Transform - pos: -1.5,-33.5 + rot: 1.5707963267948966 rad + pos: 59.5,3.5 parent: 2 - - uid: 24327 + - uid: 25109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-29.5 + rot: 1.5707963267948966 rad + pos: 59.5,-1.5 parent: 2 - - uid: 24328 + - uid: 25110 components: - type: Transform - pos: 27.5,-8.5 + rot: 1.5707963267948966 rad + pos: 59.5,-0.5 parent: 2 - - uid: 24329 + - uid: 25111 components: - type: Transform rot: 1.5707963267948966 rad - pos: -103.5,-4.5 + pos: 59.5,-2.5 parent: 2 - - uid: 24330 + - uid: 25112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,-43.5 + pos: 44.5,-19.5 parent: 2 - - uid: 24331 + - uid: 25113 components: - type: Transform - pos: -33.5,-17.5 + rot: 1.5707963267948966 rad + pos: 61.5,-4.5 parent: 2 - - uid: 24332 + - uid: 25114 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,53.5 + pos: 46.5,26.5 parent: 2 - - uid: 42403 - components: - - type: Transform - pos: 53.5,54.5 - parent: 40203 - - uid: 42404 + - uid: 25115 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,57.5 - parent: 40203 -- proto: PowerCellSmall - entities: - - uid: 24333 + pos: 47.5,29.5 + parent: 2 + - uid: 25116 components: - type: Transform - pos: 45.445816,-48.86427 + rot: 3.141592653589793 rad + pos: 38.5,31.5 parent: 2 -- proto: PoweredLEDLightPostSmall - entities: - - uid: 24334 + - uid: 25117 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-20.5 + pos: 44.5,28.5 parent: 2 - - uid: 24335 + - uid: 25118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-28.5 + pos: 25.5,43.5 parent: 2 - - uid: 24336 + - uid: 25119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-20.5 + rot: 3.141592653589793 rad + pos: 23.5,42.5 parent: 2 - - uid: 24337 + - uid: 25120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 + pos: 19.5,43.5 parent: 2 -- proto: PoweredLEDSmallLight - entities: - - uid: 24338 + - uid: 25121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 + rot: 3.141592653589793 rad + pos: 21.5,42.5 parent: 2 - - uid: 24339 + - uid: 25122 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-9.5 + pos: -12.5,-10.5 parent: 2 - - uid: 24340 + - uid: 25123 components: - type: Transform - pos: -9.5,62.5 + rot: 3.141592653589793 rad + pos: -12.5,-4.5 parent: 2 - - uid: 24341 + - uid: 25124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,58.5 + pos: -12.5,-6.5 parent: 2 - - uid: 24342 + - uid: 25125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-12.5 + pos: 9.5,-11.5 parent: 2 -- proto: Poweredlight - entities: - - uid: 24343 + - type: Timer + - uid: 25126 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-21.5 + rot: 1.5707963267948966 rad + pos: -26.5,6.5 parent: 2 - - uid: 24344 + - uid: 25127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 102.5,-31.5 + pos: 42.5,27.5 parent: 2 - - uid: 24345 + - uid: 25128 components: - type: Transform rot: -1.5707963267948966 rad - pos: 102.5,-35.5 + pos: 40.5,28.5 parent: 2 - - uid: 24346 + - uid: 25129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-20.5 + rot: 1.5707963267948966 rad + pos: 21.5,-48.5 parent: 2 - - uid: 24347 + - uid: 25130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-21.5 + rot: -1.5707963267948966 rad + pos: 33.5,-47.5 parent: 2 - - uid: 24348 + - uid: 25131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,24.5 + rot: 3.141592653589793 rad + pos: 11.5,-51.5 parent: 2 - - uid: 24349 + - uid: 25132 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-16.5 + pos: 70.5,-55.5 parent: 2 - - uid: 24350 + - uid: 25133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-13.5 + pos: 66.5,-55.5 parent: 2 - - uid: 24351 + - uid: 25134 components: - type: Transform - pos: -42.5,4.5 + pos: 13.5,65.5 parent: 2 - - uid: 24352 + - uid: 25135 components: - type: Transform - pos: -8.5,36.5 + pos: 9.5,65.5 parent: 2 - - uid: 24353 + - uid: 25136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-55.5 + rot: 3.141592653589793 rad + pos: -22.5,-51.5 parent: 2 - - uid: 24354 + - uid: 25137 components: - type: Transform - pos: 2.5,-40.5 + pos: -21.5,-34.5 parent: 2 - - uid: 24355 + - uid: 25138 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-45.5 + pos: 16.5,51.5 parent: 2 - - uid: 24356 + - uid: 25139 components: - type: Transform - pos: -3.5,-40.5 + rot: 1.5707963267948966 rad + pos: 18.5,52.5 parent: 2 - - uid: 24357 + - uid: 25140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-50.5 + pos: 28.5,54.5 parent: 2 - - uid: 24358 + - uid: 25141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 + pos: 24.5,61.5 parent: 2 - - uid: 24359 + - uid: 25142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 + pos: 49.5,-48.5 parent: 2 - - uid: 24360 + - uid: 25143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-44.5 + rot: -1.5707963267948966 rad + pos: 52.5,-58.5 parent: 2 - - uid: 24361 + - uid: 25144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-8.5 + pos: 45.5,-58.5 parent: 2 - - uid: 24362 + - uid: 25145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-8.5 + pos: -16.5,44.5 parent: 2 - - uid: 24363 + - uid: 25146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 + rot: -1.5707963267948966 rad + pos: -12.5,39.5 parent: 2 - - uid: 24364 + - uid: 25147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,32.5 + pos: 70.5,-29.5 parent: 2 - - uid: 24365 + - uid: 25148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,24.5 + pos: 44.5,-28.5 parent: 2 - - uid: 24366 + - uid: 25149 components: - type: Transform - pos: 9.5,29.5 + pos: -41.5,17.5 parent: 2 - - uid: 24367 + - uid: 25150 components: - type: Transform - pos: 54.5,7.5 + pos: -45.5,17.5 parent: 2 - - uid: 24368 + - uid: 25151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,6.5 + pos: -49.5,17.5 parent: 2 - - uid: 24369 + - uid: 25152 components: - type: Transform - pos: 66.5,6.5 + pos: 73.5,-29.5 parent: 2 - - uid: 24370 + - uid: 25153 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,6.5 + pos: 9.5,43.5 parent: 2 - - uid: 24371 + - uid: 25154 components: - type: Transform - pos: 66.5,6.5 + rot: 3.141592653589793 rad + pos: 17.5,45.5 parent: 2 - - uid: 24372 + - uid: 25155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,11.5 + rot: 3.141592653589793 rad + pos: 11.5,43.5 parent: 2 - - uid: 24373 + - uid: 25156 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,3.5 + pos: -104.5,28.5 parent: 2 - - uid: 24374 + - uid: 25157 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,-1.5 + pos: -110.5,30.5 parent: 2 - - uid: 24375 + - uid: 25158 components: - type: Transform - pos: 54.5,-4.5 + rot: 1.5707963267948966 rad + pos: -102.5,27.5 parent: 2 - - uid: 24376 + - uid: 25159 components: - type: Transform - pos: 61.5,12.5 + rot: 3.141592653589793 rad + pos: -116.5,15.5 parent: 2 - - uid: 24377 + - uid: 25160 components: - type: Transform - pos: 18.5,1.5 + rot: 3.141592653589793 rad + pos: -116.5,19.5 parent: 2 - - uid: 24378 + - uid: 25161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-25.5 + rot: 3.141592653589793 rad + pos: -116.5,23.5 parent: 2 - - uid: 24379 + - uid: 25162 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-24.5 + pos: 97.5,-3.5 parent: 2 - - uid: 24380 + - uid: 25163 components: - type: Transform - pos: 51.5,12.5 + rot: 3.141592653589793 rad + pos: -54.5,15.5 parent: 2 - - uid: 24381 + - uid: 25164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,22.5 + rot: -1.5707963267948966 rad + pos: -43.5,26.5 parent: 2 - - uid: 24382 + - uid: 25165 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,17.5 + pos: -35.5,21.5 parent: 2 - - uid: 24383 + - uid: 25166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,23.5 + pos: -37.5,26.5 parent: 2 - - uid: 24384 + - uid: 25167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,17.5 + rot: 1.5707963267948966 rad + pos: -28.5,43.5 parent: 2 - - uid: 24385 + - uid: 25168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,39.5 + rot: 1.5707963267948966 rad + pos: -117.5,-0.5 parent: 2 - - uid: 24386 + - uid: 25169 components: - type: Transform - pos: 32.5,34.5 + rot: 3.141592653589793 rad + pos: 53.5,-16.5 parent: 2 - - uid: 24387 + - uid: 42832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,37.5 - parent: 2 - - uid: 24388 + rot: 3.141592653589793 rad + pos: 59.5,59.5 + parent: 40599 + - uid: 42833 components: - type: Transform - pos: 21.5,39.5 - parent: 2 - - uid: 24389 + rot: 1.5707963267948966 rad + pos: 59.5,82.5 + parent: 40599 + - uid: 42834 components: - type: Transform - pos: -13.5,1.5 - parent: 2 - - uid: 24390 + rot: 3.141592653589793 rad + pos: 33.5,68.5 + parent: 40599 + - uid: 42835 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,39.5 - parent: 2 - - uid: 24391 + pos: 41.5,69.5 + parent: 40599 + - uid: 42836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,34.5 - parent: 2 - - uid: 24392 + pos: 45.5,56.5 + parent: 40599 + - uid: 42837 components: + - type: MetaData + desc: Если лампа погасла, система активна. + name: индикатор активности системы - type: Transform - pos: 11.5,41.5 - parent: 2 - - uid: 24393 + rot: 3.141592653589793 rad + pos: 47.5,55.5 + parent: 40599 + - uid: 42838 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,12.5 - parent: 2 - - uid: 24394 + pos: 45.5,82.5 + parent: 40599 + - uid: 42839 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,17.5 - parent: 2 - - uid: 24395 + rot: 1.5707963267948966 rad + pos: 72.5,59.5 + parent: 40599 + - uid: 46128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,28.5 - parent: 2 - - uid: 24396 + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 45355 + - uid: 46129 components: - type: Transform - pos: 15.5,36.5 - parent: 2 - - uid: 24397 + pos: 10.5,9.5 + parent: 45355 +- proto: PoweredSmallLightEmpty + entities: + - uid: 23721 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,31.5 + pos: -40.5,21.5 parent: 2 - - uid: 24398 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23722 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 23723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,39.5 + pos: -32.5,27.5 parent: 2 - - uid: 24399 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23724 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 23725 components: - type: Transform - pos: 31.5,38.5 + rot: 1.5707963267948966 rad + pos: -13.5,69.5 parent: 2 - - uid: 24400 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23726 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 23727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,27.5 + pos: -8.5,74.5 parent: 2 - - uid: 24401 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23728 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 25170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,15.5 + pos: -19.5,38.5 parent: 2 - - uid: 24402 + - uid: 25171 components: - type: Transform - pos: -8.5,-10.5 + pos: -52.5,61.5 parent: 2 - - uid: 24403 + - uid: 25172 components: - type: Transform - pos: -0.5,-14.5 + rot: 1.5707963267948966 rad + pos: -49.5,64.5 parent: 2 - - uid: 24404 + - uid: 25173 components: - type: Transform - pos: 5.5,-14.5 + rot: 3.141592653589793 rad + pos: -35.5,35.5 parent: 2 - - uid: 24405 + - uid: 25174 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-14.5 - parent: 2 - - uid: 24406 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-14.5 + pos: -46.5,-12.5 parent: 2 - - uid: 24407 + - uid: 25175 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-17.5 + pos: -50.5,67.5 parent: 2 - - uid: 24408 + - uid: 25176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 + rot: -1.5707963267948966 rad + pos: -51.5,64.5 parent: 2 - - uid: 24409 + - uid: 25177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,3.5 + rot: -1.5707963267948966 rad + pos: 97.5,-43.5 parent: 2 - - uid: 24410 + - uid: 25178 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,12.5 - parent: 2 - - uid: 24411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,3.5 + pos: 101.5,-43.5 parent: 2 - - uid: 24412 + - uid: 25179 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-0.5 + pos: -31.5,43.5 parent: 2 - - uid: 24413 + - uid: 42629 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-7.5 - parent: 2 - - uid: 24414 + pos: 60.5,62.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42630 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42631 components: - type: Transform - pos: 19.5,-15.5 - parent: 2 - - uid: 24415 + rot: -1.5707963267948966 rad + pos: 57.5,82.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42632 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 2 - - uid: 24416 + rot: 1.5707963267948966 rad + pos: 28.5,71.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42634 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42635 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 2 - - uid: 24417 + pos: 39.5,56.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42636 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 2 - - uid: 24418 + pos: 56.5,63.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42638 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 42840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,8.5 - parent: 2 - - uid: 24419 + rot: 3.141592653589793 rad + pos: 56.5,59.5 + parent: 40599 +- proto: PoweredStrobeLightEmpty + entities: + - uid: 23719 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,15.5 + pos: -10.5,41.5 parent: 2 - - uid: 24420 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23720 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 42619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 - parent: 2 - - uid: 24421 + pos: 41.5,63.5 + parent: 40599 + - type: PointLight + color: '#B40D0DFF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42620 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42621 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-7.5 - parent: 2 - - uid: 24422 + pos: 45.5,63.5 + parent: 40599 + - type: PointLight + color: '#B40D0DFF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42622 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42623 + components: + - type: Transform + pos: 58.5,72.5 + parent: 40599 + - type: AmbientSound + volume: 1 + range: 4 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42624 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42625 + components: + - type: Transform + pos: 62.5,72.5 + parent: 40599 + - type: AmbientSound + volume: 1 + range: 4 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42626 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False + - uid: 42627 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-4.5 - parent: 2 - - uid: 24423 + pos: 38.5,79.5 + parent: 40599 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42628 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False +- proto: PoweredStrobeLightSiren + entities: + - uid: 23702 components: - type: Transform - pos: -4.5,-2.5 + rot: -1.5707963267948966 rad + pos: -112.5,22.5 parent: 2 - - uid: 24424 + - type: AmbientSound + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23703 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 + pos: -107.5,12.5 parent: 2 - - uid: 24425 + - type: AmbientSound + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23705 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,12.5 + pos: -105.5,22.5 parent: 2 - - uid: 24426 + - type: AmbientSound + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23707 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23708 components: - type: Transform - pos: -2.5,14.5 + rot: 1.5707963267948966 rad + pos: -101.5,11.5 parent: 2 - - uid: 24427 + - type: AmbientSound + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23709 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23710 components: - type: Transform - pos: 7.5,14.5 + rot: 3.141592653589793 rad + pos: -4.5,-0.5 parent: 2 - - uid: 24428 + - type: AmbientSound + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23711 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 23712 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-0.5 + pos: 9.5,-0.5 parent: 2 - - uid: 24429 + - type: AmbientSound + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Corvax/Misc/siren.ogg + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23713 + - type: ApcPowerReceiver + powerLoad: 0 +- proto: PresentRandom + entities: + - uid: 15015 components: - type: Transform - pos: -5.5,2.5 - parent: 2 - - uid: 24430 + parent: 15014 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-0.5 + pos: 62.085705,28.929926 parent: 2 - - uid: 24431 + - uid: 25181 components: - type: Transform - pos: 10.5,2.5 + pos: 57.48203,-17.34218 parent: 2 - - uid: 24432 + - uid: 25182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-1.5 + pos: 5.7258134,-36.497807 parent: 2 - - uid: 24433 + - uid: 25183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 + pos: 33.888603,46.23016 parent: 2 - - uid: 24434 + - uid: 25184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,4.5 + pos: -13.482866,-68.49724 parent: 2 - - uid: 24435 + - uid: 25185 components: - type: Transform - pos: -20.5,8.5 + pos: 57.51113,-31.463657 parent: 2 - - uid: 24436 + - uid: 25186 components: - type: Transform - pos: -14.5,-15.5 + pos: 89.27177,-2.9459286 parent: 2 - - uid: 24437 + - uid: 25187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-11.5 + pos: 32.37728,-9.3538685 parent: 2 - - uid: 24438 + - uid: 25188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 + pos: -67.49625,-22.46907 parent: 2 - - uid: 24439 +- proto: PresentRandomAsh + entities: + - uid: 25189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-2.5 + pos: 37.46461,-39.455025 parent: 2 - - uid: 24440 +- proto: PresentRandomCash + entities: + - uid: 25190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-37.5 + pos: -4.4639816,52.59594 parent: 2 - - uid: 24441 + - uid: 25191 components: - type: Transform - pos: -4.5,-35.5 + pos: -18.91269,67.69478 parent: 2 - - uid: 24442 +- proto: PrintedDocumentComplaintViolationLaborRules + entities: + - uid: 25192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-48.5 + pos: -41.988026,10.600693 parent: 2 - - uid: 24443 +- proto: PrintedDocumentOrderDismissal + entities: + - uid: 25193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-42.5 + pos: -42.79052,1.6302462 parent: 2 - - uid: 24444 +- proto: PrintedDocumentPermissionToCarryWeapons + entities: + - uid: 25194 components: - type: Transform - pos: 27.5,-4.5 + pos: 79.67552,-36.43598 parent: 2 - - uid: 24445 +- proto: PrintedDocumentPrescriptionDrugAuthorization + entities: + - uid: 25195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-14.5 + pos: 3.8792992,61.675793 parent: 2 - - uid: 24446 +- proto: PrintedDocumentReportStation + entities: + - uid: 25196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-18.5 + pos: 8.68634,-9.609186 parent: 2 - - uid: 24447 +- proto: PrintedDocumentSentence + entities: + - uid: 25197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,18.5 + pos: -32.29887,7.159455 parent: 2 - - uid: 24448 + - uid: 25198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,18.5 + pos: -32.483295,7.096955 parent: 2 - - uid: 24449 +- proto: PrinterDoc + entities: + - uid: 25199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + rot: 3.141592653589793 rad + pos: 64.5,-33.5 parent: 2 - - uid: 24450 + - uid: 25200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,2.5 + pos: 73.5,-41.5 parent: 2 - - uid: 24451 + - uid: 25201 components: - type: Transform - pos: 22.5,22.5 + pos: 13.5,-7.5 parent: 2 - - uid: 24452 + - uid: 25202 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 2 - - uid: 24453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,29.5 + pos: -34.5,-0.5 parent: 2 - - uid: 24454 + - uid: 25203 components: - type: Transform - pos: 5.5,-40.5 + pos: 3.5,21.5 parent: 2 - - uid: 24455 + - uid: 25204 components: - type: Transform - pos: 16.5,25.5 + pos: -17.5,26.5 parent: 2 - - uid: 24456 + - uid: 25205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,20.5 + pos: -3.5,-9.5 parent: 2 - - uid: 24457 +- proto: PrinterDocMachineCircuitboard + entities: + - uid: 25206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 + pos: 15.640812,6.3925877 parent: 2 - - uid: 24458 +- proto: Protolathe + entities: + - uid: 25207 components: - type: Transform - pos: 11.5,22.5 + pos: 30.5,-41.5 parent: 2 - - uid: 24459 +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 25208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 + rot: 3.141592653589793 rad + pos: 15.411645,5.3613377 parent: 2 - - uid: 24460 +- proto: PsychBed + entities: + - uid: 25209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,11.5 + pos: 1.5,65.5 parent: 2 - - uid: 24461 +- proto: PuddleEgg + entities: + - uid: 25210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 + pos: -50.5,-30.5 parent: 2 - - uid: 24462 + - uid: 25211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,3.5 + pos: -52.5,-29.5 parent: 2 - - uid: 24463 +- proto: PumpkinLantern + entities: + - uid: 25212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-9.5 + pos: 6.5000176,-35.182793 parent: 2 - - uid: 24464 + - uid: 25213 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-5.5 + pos: -6.5993433,-22.57261 parent: 2 - - uid: 24465 + - uid: 25214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-39.5 + pos: 26.682161,-4.160592 parent: 2 - - uid: 24466 + - uid: 25215 components: - type: Transform - pos: -0.5,34.5 + pos: -35.482014,26.73232 parent: 2 - - uid: 24467 + - uid: 25216 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-64.5 + pos: 18.381672,29.108368 parent: 2 - - uid: 24468 + - uid: 25217 components: - type: Transform - pos: 1.5,-53.5 + pos: -56.43173,3.5277672 parent: 2 - - uid: 24469 + - uid: 25218 components: - type: Transform - pos: -4.5,-52.5 + pos: 82.45868,-26.403128 parent: 2 - - uid: 24470 + - uid: 25219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-56.5 + pos: 1.6519756,-2.2191138 parent: 2 - - uid: 24471 + - uid: 25220 components: - type: Transform - pos: 2.5,-46.5 + pos: 3.3863506,-2.2347388 parent: 2 - - uid: 24472 + - uid: 25221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-51.5 + pos: -4.007269,-45.3106 parent: 2 - - uid: 24473 + - uid: 25222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-48.5 + pos: 95.72275,-18.574968 parent: 2 - - uid: 24474 + - uid: 25223 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-27.5 + pos: 31.505379,-15.344918 parent: 2 - - uid: 24475 +- proto: PumpkinLanternLarge + entities: + - uid: 25224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-64.5 + pos: -12.646218,-24.311552 parent: 2 - - uid: 24476 + - uid: 25225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-60.5 + pos: 2.519066,15.631662 parent: 2 - - uid: 24477 + - uid: 25226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-30.5 + pos: 29.076134,20.314491 parent: 2 - - uid: 24478 + - uid: 25227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-33.5 + pos: 35.355614,-10.188252 parent: 2 - - uid: 24479 + - uid: 25228 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-64.5 + pos: 21.457445,39.570663 parent: 2 - - uid: 24480 + - uid: 25229 components: - type: Transform - pos: 57.5,-29.5 + pos: -7.3050404,29.023321 parent: 2 - - uid: 24481 +- proto: PumpkinLanternSmall + entities: + - uid: 25230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-32.5 + pos: -32.03732,29.88248 parent: 2 - - uid: 24482 + - uid: 25231 components: - type: Transform - pos: 16.5,58.5 + pos: -18.520374,22.75593 parent: 2 - - uid: 24483 + - uid: 25232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-56.5 + pos: -6.5993433,-28.014677 parent: 2 - - uid: 24484 + - uid: 25233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-48.5 + pos: 26.682161,-10.457467 parent: 2 - - uid: 24485 + - uid: 25234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,-42.5 + pos: -38.169514,23.716696 parent: 2 - - uid: 24486 + - uid: 25235 components: - type: Transform - pos: 55.5,-36.5 + pos: 91.58332,-25.422981 parent: 2 - - uid: 24487 + - uid: 25236 components: - type: Transform - pos: 59.5,-36.5 + pos: 37.485706,20.662552 parent: 2 - - uid: 24488 + - uid: 25237 components: - type: Transform - pos: 62.5,-36.5 + pos: 15.272297,27.983368 parent: 2 - - uid: 24489 + - uid: 25238 components: - type: Transform - pos: 69.5,-36.5 + pos: 36.503296,-1.1411676 parent: 2 - - uid: 24490 + - uid: 25239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-49.5 + pos: 23.809904,28.939253 parent: 2 - - uid: 24491 + - uid: 25240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-49.5 + pos: 102.607414,-26.656898 parent: 2 - - uid: 24492 + - uid: 25241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-46.5 + pos: 34.74809,0.82812595 parent: 2 - - uid: 24493 + - uid: 25242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-44.5 + pos: -27.411312,-3.388648 parent: 2 - - uid: 24494 + - uid: 25243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-44.5 + pos: 48.480843,-9.222567 parent: 2 - - uid: 24495 +- proto: Rack + entities: + - uid: 25244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-42.5 + pos: -41.5,65.5 parent: 2 - - uid: 24496 + - uid: 25245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-51.5 + pos: -60.5,54.5 parent: 2 - - uid: 24497 + - uid: 25246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-51.5 + pos: 18.5,27.5 parent: 2 - - uid: 24498 + - uid: 25247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,60.5 + pos: 59.5,36.5 parent: 2 - - uid: 24499 + - uid: 25248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,-39.5 + pos: -23.5,65.5 parent: 2 - - uid: 24500 + - uid: 25249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-38.5 + pos: -22.5,65.5 parent: 2 - - uid: 24501 + - uid: 25250 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,-38.5 + pos: -34.5,42.5 parent: 2 - - uid: 24502 + - uid: 25251 components: - type: Transform rot: -1.5707963267948966 rad - pos: 74.5,-43.5 + pos: -107.5,31.5 parent: 2 - - uid: 24503 + - uid: 25252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-43.5 + rot: -1.5707963267948966 rad + pos: -107.5,30.5 parent: 2 - - uid: 24504 + - uid: 25253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-48.5 + pos: -83.5,28.5 parent: 2 - - uid: 24505 + - uid: 25254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-48.5 + pos: -83.5,30.5 parent: 2 - - uid: 24506 + - uid: 25255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-46.5 + pos: -48.5,63.5 parent: 2 - - uid: 24507 + - uid: 25256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-46.5 + pos: 10.5,-45.5 parent: 2 - - uid: 24508 + - uid: 25257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-42.5 + pos: 15.5,6.5 parent: 2 - - uid: 24509 + - uid: 25258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,-44.5 + pos: 15.5,5.5 parent: 2 - - uid: 24510 + - uid: 25259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-50.5 + pos: 15.5,4.5 parent: 2 - - uid: 24511 + - uid: 25260 components: - type: Transform - pos: -2.5,34.5 + pos: 15.5,7.5 parent: 2 - - uid: 24512 + - uid: 25261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-37.5 + rot: 1.5707963267948966 rad + pos: 14.5,11.5 parent: 2 - - uid: 24513 + - uid: 25262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,53.5 + pos: -40.5,-6.5 parent: 2 - - uid: 24514 + - uid: 25263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,56.5 + pos: 1.5,-53.5 parent: 2 - - uid: 24515 + - uid: 25264 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,56.5 + pos: 24.5,-43.5 parent: 2 - - uid: 24516 + - uid: 25265 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-57.5 + pos: 43.5,-55.5 parent: 2 - - uid: 24517 + - uid: 25266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,58.5 + pos: 51.5,-49.5 parent: 2 - - uid: 24518 + - uid: 25267 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,-54.5 + pos: 45.5,-52.5 parent: 2 - - uid: 24519 + - uid: 25268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,60.5 + pos: 21.5,-36.5 parent: 2 - - uid: 24520 + - uid: 25269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,56.5 + pos: 45.5,-18.5 parent: 2 - - uid: 24521 + - uid: 25270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-54.5 + pos: 44.5,-18.5 parent: 2 - - uid: 24522 + - uid: 25271 components: - type: Transform - pos: 22.5,-51.5 + pos: 59.5,-12.5 parent: 2 - - uid: 24523 + - uid: 25272 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-56.5 + pos: 49.5,26.5 parent: 2 - - uid: 24524 + - uid: 25273 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,52.5 - parent: 2 - - uid: 24525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-44.5 - parent: 2 - - uid: 24526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-49.5 + pos: 45.5,33.5 parent: 2 - - uid: 24527 + - uid: 25274 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,61.5 - parent: 2 - - uid: 24528 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-53.5 + pos: 36.5,39.5 parent: 2 - - uid: 24529 + - uid: 25275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-53.5 + pos: 0.5,-11.5 parent: 2 - - uid: 24530 + - uid: 25276 components: - type: Transform - pos: 43.5,-51.5 + pos: 3.5,15.5 parent: 2 - - uid: 24531 + - uid: 25277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-55.5 + pos: 4.5,15.5 parent: 2 - - uid: 24532 + - uid: 25278 components: - type: Transform - pos: 48.5,-52.5 + pos: -11.5,-7.5 parent: 2 - - uid: 24533 + - uid: 25279 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-53.5 - parent: 2 - - uid: 24534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-43.5 - parent: 2 - - uid: 24535 - components: - - type: Transform - pos: 22.5,-31.5 - parent: 2 - - uid: 24536 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-35.5 - parent: 2 - - uid: 24537 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-41.5 + pos: -3.5,-38.5 parent: 2 - - uid: 24538 + - uid: 25280 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-42.5 - parent: 2 - - uid: 24539 - components: - - type: Transform - pos: 28.5,-37.5 - parent: 2 - - uid: 24540 - components: - - type: Transform - pos: 31.5,-33.5 - parent: 2 - - uid: 24541 - components: - - type: Transform - pos: 40.5,-45.5 + pos: 27.5,-11.5 parent: 2 - - uid: 24542 + - uid: 25281 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-48.5 + pos: 27.5,-10.5 parent: 2 - - uid: 24543 + - uid: 25282 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-47.5 - parent: 2 - - uid: 24544 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-11.5 + pos: 14.5,-40.5 parent: 2 - - uid: 24545 + - uid: 25283 components: - type: Transform - pos: -14.5,-36.5 + pos: 17.5,-41.5 parent: 2 - - uid: 24546 + - uid: 25284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-12.5 + rot: 1.5707963267948966 rad + pos: 23.5,-54.5 parent: 2 - - uid: 24547 + - uid: 25285 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,-18.5 + pos: 38.5,-51.5 parent: 2 - - uid: 24548 + - uid: 25286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-34.5 + pos: 33.5,-39.5 parent: 2 - - uid: 24549 + - uid: 25287 components: - type: Transform - pos: 24.5,-40.5 + pos: 4.5,-36.5 parent: 2 - - uid: 24550 + - uid: 25288 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-34.5 + pos: 36.5,-0.5 parent: 2 - - uid: 24551 + - uid: 25289 components: - type: Transform - pos: 45.5,-22.5 + rot: -1.5707963267948966 rad + pos: 42.5,13.5 parent: 2 - - uid: 24552 + - uid: 25290 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-25.5 + pos: 29.5,-39.5 parent: 2 - - uid: 24553 + - uid: 25291 components: - type: Transform - pos: 50.5,-22.5 + rot: 1.5707963267948966 rad + pos: -24.5,-40.5 parent: 2 - - uid: 24554 + - uid: 25292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-24.5 + pos: 18.5,-35.5 parent: 2 - - uid: 24555 + - uid: 25293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-24.5 + rot: 1.5707963267948966 rad + pos: 28.5,-42.5 parent: 2 - - uid: 24556 + - uid: 25294 components: - type: Transform - pos: 55.5,-22.5 + rot: 1.5707963267948966 rad + pos: 28.5,-41.5 parent: 2 - - uid: 24557 + - uid: 25295 components: - type: Transform - pos: 62.5,-22.5 + rot: 1.5707963267948966 rad + pos: -9.5,11.5 parent: 2 - - uid: 24558 + - uid: 25296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-29.5 + rot: 1.5707963267948966 rad + pos: -9.5,12.5 parent: 2 - - uid: 24559 + - uid: 25297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-32.5 + rot: 1.5707963267948966 rad + pos: -9.5,10.5 parent: 2 - - uid: 24560 + - uid: 25298 components: - type: Transform rot: 3.141592653589793 rad - pos: 83.5,-26.5 + pos: -48.5,-8.5 parent: 2 - - uid: 24561 + - uid: 25299 components: - type: Transform rot: 3.141592653589793 rad - pos: 81.5,-26.5 - parent: 2 - - uid: 24562 - components: - - type: Transform - pos: 78.5,-7.5 - parent: 2 - - uid: 24563 - components: - - type: Transform - pos: 80.5,-7.5 + pos: -48.5,-9.5 parent: 2 - - uid: 24564 + - uid: 25300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-20.5 + pos: 3.5,-46.5 parent: 2 - - uid: 24565 + - uid: 25301 components: - type: Transform rot: 1.5707963267948966 rad - pos: 78.5,-20.5 + pos: -18.5,44.5 parent: 2 - - uid: 24566 + - uid: 25302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 78.5,-10.5 + pos: -1.5,-50.5 parent: 2 - - uid: 24567 + - uid: 25303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-10.5 + pos: 70.5,-52.5 parent: 2 - - uid: 24568 + - uid: 25304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,34.5 + pos: 70.5,-53.5 parent: 2 - - uid: 24569 + - uid: 25305 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-14.5 + pos: 74.5,-48.5 parent: 2 - - uid: 24570 + - uid: 25306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,5.5 + pos: -12.5,-53.5 parent: 2 - - uid: 24571 + - uid: 25307 components: - type: Transform - pos: -23.5,-13.5 + pos: -12.5,-52.5 parent: 2 - - uid: 24572 + - uid: 25308 components: - type: Transform - pos: -28.5,-13.5 + pos: -37.5,-8.5 parent: 2 - - uid: 24573 + - uid: 25309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-11.5 + pos: -41.5,-8.5 parent: 2 - - uid: 24574 + - uid: 25310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-6.5 + pos: -40.5,-8.5 parent: 2 - - uid: 24575 + - uid: 25311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-4.5 + pos: -37.5,-6.5 parent: 2 - - uid: 24576 + - uid: 25312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-0.5 + pos: -36.5,-8.5 parent: 2 - - uid: 24577 + - uid: 25313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,7.5 + pos: -42.5,-8.5 parent: 2 - - uid: 24578 + - uid: 25314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,7.5 + pos: -44.5,-7.5 parent: 2 - - uid: 24579 + - uid: 25315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-0.5 + pos: -44.5,-8.5 parent: 2 - - uid: 24580 + - uid: 25316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,1.5 + pos: 40.5,-46.5 parent: 2 - - uid: 24581 + - uid: 25317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,1.5 + pos: 35.5,-49.5 parent: 2 - - uid: 24582 + - uid: 25318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,0.5 + pos: 69.5,10.5 parent: 2 - - uid: 24583 + - uid: 25319 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,7.5 + pos: 64.5,18.5 parent: 2 - - uid: 24584 + - uid: 25320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,10.5 + rot: 1.5707963267948966 rad + pos: 65.5,14.5 parent: 2 - - uid: 24585 + - uid: 25321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,10.5 + rot: 1.5707963267948966 rad + pos: 74.5,3.5 parent: 2 - - uid: 24586 + - uid: 25322 components: - type: Transform - pos: -53.5,13.5 + rot: 1.5707963267948966 rad + pos: 57.5,21.5 parent: 2 - - uid: 24587 + - uid: 25323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,8.5 + pos: 40.5,-49.5 parent: 2 - - uid: 24588 + - uid: 25324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,8.5 + pos: 41.5,-27.5 parent: 2 - - uid: 24589 + - uid: 25325 components: - type: Transform - pos: -27.5,12.5 + pos: 52.5,-29.5 parent: 2 - - uid: 24590 + - uid: 25326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,11.5 + pos: 49.5,-31.5 parent: 2 - - uid: 24591 + - uid: 25327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,10.5 + pos: -33.5,-43.5 parent: 2 - - uid: 24592 + - uid: 25328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-29.5 + pos: 91.5,-28.5 parent: 2 - - uid: 24593 + - uid: 25329 components: - type: Transform - pos: -8.5,54.5 + pos: -36.5,-6.5 parent: 2 - - uid: 24594 + - uid: 25330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,-0.5 - parent: 2 - - uid: 24595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,6.5 - parent: 2 - - uid: 24596 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 2 - - uid: 24597 - components: - - type: Transform - pos: -32.5,12.5 + pos: 14.5,12.5 parent: 2 - - uid: 24598 + - uid: 25331 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,10.5 + rot: 1.5707963267948966 rad + pos: 15.5,12.5 parent: 2 - - uid: 24599 + - uid: 25332 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-8.5 + pos: 65.5,-26.5 parent: 2 - - uid: 24600 + - uid: 25333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,12.5 + pos: -4.5,-33.5 parent: 2 - - uid: 24601 + - uid: 25334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-29.5 + pos: -10.5,51.5 parent: 2 - - uid: 24602 + - uid: 25335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-32.5 + pos: -21.5,47.5 parent: 2 - - uid: 24603 + - uid: 25336 components: - type: Transform - pos: -44.5,-2.5 + pos: -23.5,10.5 parent: 2 - - uid: 24604 + - uid: 25337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-4.5 + pos: 22.5,48.5 parent: 2 - - uid: 24605 + - uid: 25338 components: - type: Transform - pos: -23.5,0.5 + pos: 60.5,-14.5 parent: 2 - - uid: 24606 + - uid: 25339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-2.5 + pos: 7.5,22.5 parent: 2 - - uid: 24607 + - uid: 25340 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,10.5 + pos: 56.5,-15.5 parent: 2 - - uid: 24608 + - uid: 25341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-33.5 + rot: 3.141592653589793 rad + pos: -39.5,-18.5 parent: 2 - - uid: 24609 + - uid: 25342 components: - type: Transform - pos: -4.5,-31.5 + pos: 48.5,41.5 parent: 2 - - uid: 24610 + - uid: 25343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 + rot: -1.5707963267948966 rad + pos: -21.5,26.5 parent: 2 - - uid: 24611 + - uid: 25344 components: - type: Transform - pos: -22.5,-6.5 + pos: -28.5,-31.5 parent: 2 - - uid: 24612 + - uid: 25345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-19.5 + pos: -47.5,-22.5 parent: 2 - - uid: 24613 + - uid: 25346 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,22.5 - parent: 2 - - uid: 24614 - components: - - type: Transform - pos: -19.5,26.5 + pos: 30.5,47.5 parent: 2 - - uid: 24615 + - uid: 25347 components: - type: Transform rot: 3.141592653589793 rad - pos: -100.5,-8.5 + pos: 97.5,-11.5 parent: 2 - - uid: 24616 + - uid: 25348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-6.5 + pos: -115.5,1.5 parent: 2 - - uid: 24617 + - uid: 25349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-5.5 + pos: -96.5,-6.5 parent: 2 - - uid: 24618 + - uid: 25350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,-24.5 + pos: 11.5,-2.5 parent: 2 - - uid: 24619 + - uid: 25351 components: - type: Transform - pos: -96.5,-6.5 + pos: 27.5,17.5 parent: 2 - - uid: 24620 + - uid: 25352 components: - type: Transform - pos: 24.5,36.5 + pos: 10.5,37.5 parent: 2 - - uid: 24621 + - uid: 25353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-18.5 + pos: -0.5,-19.5 parent: 2 - - uid: 24622 + - uid: 25354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,25.5 + pos: -79.5,26.5 parent: 2 - - uid: 24623 + - uid: 25355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,22.5 + pos: -59.5,67.5 parent: 2 - - uid: 24624 + - uid: 25356 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,9.5 + pos: -46.5,68.5 parent: 2 - - uid: 24625 + - uid: 25357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,11.5 + pos: -45.5,66.5 parent: 2 - - uid: 24626 + - uid: 25358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,7.5 + pos: -47.5,68.5 parent: 2 - - uid: 24627 + - uid: 25359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,8.5 + rot: 3.141592653589793 rad + pos: -61.5,65.5 parent: 2 - - uid: 24628 + - uid: 25360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,3.5 + pos: -50.5,61.5 parent: 2 - - uid: 24629 + - uid: 25361 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,11.5 + pos: -99.5,22.5 parent: 2 - - uid: 24630 + - uid: 25362 components: - type: Transform - pos: -114.5,12.5 + pos: -99.5,25.5 parent: 2 - - uid: 24631 + - uid: 25363 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.5,3.5 + pos: -102.5,17.5 parent: 2 - - uid: 24632 + - uid: 25364 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,3.5 + pos: -45.5,38.5 parent: 2 - - uid: 24633 + - uid: 25365 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,3.5 + pos: -55.5,37.5 parent: 2 - - uid: 24634 + - uid: 25366 components: - type: Transform - pos: -104.5,4.5 + pos: -56.5,37.5 parent: 2 - - uid: 24635 + - uid: 25367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,3.5 + pos: -107.5,19.5 parent: 2 - - uid: 24636 + - uid: 25368 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,1.5 + pos: -110.5,24.5 parent: 2 - - uid: 24637 + - uid: 25369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,7.5 + pos: -81.5,39.5 parent: 2 - - uid: 24638 + - uid: 25370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,11.5 + pos: -82.5,39.5 parent: 2 - - uid: 24639 + - uid: 25371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,14.5 + pos: -98.5,36.5 parent: 2 - - uid: 24640 + - uid: 25372 components: - type: Transform - pos: -106.5,26.5 + rot: -1.5707963267948966 rad + pos: -75.5,46.5 parent: 2 - - uid: 24641 + - uid: 25373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,14.5 + rot: -1.5707963267948966 rad + pos: 91.5,-0.5 parent: 2 - - uid: 24642 + - uid: 25374 components: - type: Transform - pos: -111.5,26.5 + pos: -33.5,50.5 parent: 2 - - uid: 24643 + - uid: 25375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,18.5 + pos: -51.5,57.5 parent: 2 - - uid: 24644 + - uid: 25376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,18.5 + pos: 78.5,18.5 parent: 2 - - uid: 24645 + - uid: 25377 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,18.5 + pos: 0.5,-53.5 parent: 2 - - uid: 24646 + - uid: 25378 components: - type: Transform - pos: -96.5,5.5 + pos: -141.5,3.5 parent: 2 - - uid: 24647 + - uid: 25379 + components: + - type: Transform + pos: -140.5,-7.5 + parent: 2 + - uid: 25380 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-21.5 + pos: -46.5,25.5 parent: 2 - - uid: 24648 + - uid: 25381 components: - type: Transform - pos: 96.5,-8.5 + rot: 3.141592653589793 rad + pos: -46.5,24.5 parent: 2 - - uid: 24649 + - uid: 25382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-25.5 + rot: 3.141592653589793 rad + pos: -59.5,-8.5 parent: 2 - - uid: 24650 + - uid: 25383 components: - type: Transform - pos: -50.5,-2.5 + pos: 7.5,-44.5 parent: 2 - - uid: 24651 + - uid: 25384 components: - type: Transform - pos: -55.5,-2.5 + pos: 96.5,-43.5 parent: 2 - - uid: 24652 + - uid: 25385 components: - type: Transform - pos: -28.5,16.5 + rot: 3.141592653589793 rad + pos: -30.5,44.5 parent: 2 - - uid: 24653 + - uid: 25386 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,15.5 + pos: -30.5,-42.5 parent: 2 - - uid: 24654 + - uid: 25387 components: - type: Transform - pos: -22.5,20.5 + pos: 50.5,-19.5 parent: 2 - - uid: 24655 + - uid: 25388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,14.5 + pos: 28.5,10.5 parent: 2 - - uid: 24656 + - uid: 25389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-41.5 + pos: -25.5,60.5 parent: 2 - - uid: 42405 + - uid: 25390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,71.5 - parent: 40203 - - uid: 42406 + pos: 66.5,-53.5 + parent: 2 + - uid: 25391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,78.5 - parent: 40203 - - uid: 42407 + pos: -107.5,44.5 + parent: 2 + - uid: 25392 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,78.5 - parent: 40203 - - uid: 42408 + pos: -94.5,52.5 + parent: 2 + - uid: 25393 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,78.5 - parent: 40203 - - uid: 42409 + pos: -93.5,52.5 + parent: 2 + - uid: 42841 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,62.5 - parent: 40203 - - uid: 42410 - components: - - type: Transform - pos: 65.5,59.5 - parent: 40203 - - uid: 42411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,53.5 - parent: 40203 - - uid: 42412 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,50.5 - parent: 40203 - - uid: 42413 + pos: 60.5,63.5 + parent: 40599 + - uid: 42842 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,53.5 - parent: 40203 - - uid: 42414 + pos: 61.5,63.5 + parent: 40599 + - uid: 42843 components: - type: Transform - pos: 73.5,79.5 - parent: 40203 - - uid: 42415 + rot: 1.5707963267948966 rad + pos: 39.5,57.5 + parent: 40599 + - uid: 42844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,71.5 - parent: 40203 - - uid: 42416 + rot: 1.5707963267948966 rad + pos: 45.5,57.5 + parent: 40599 + - uid: 42845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,71.5 - parent: 40203 - - uid: 42417 + pos: 37.5,63.5 + parent: 40599 + - uid: 42846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,74.5 - parent: 40203 - - uid: 42418 + rot: -1.5707963267948966 rad + pos: 34.5,71.5 + parent: 40599 + - uid: 42847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,70.5 - parent: 40203 - - uid: 42419 + pos: 68.5,61.5 + parent: 40599 + - uid: 42848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,62.5 - parent: 40203 - - uid: 42420 + pos: 64.5,41.5 + parent: 40599 + - uid: 42849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,59.5 - parent: 40203 - - uid: 42421 + pos: 64.5,41.5 + parent: 40599 + - uid: 42850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,63.5 - parent: 40203 - - uid: 42422 + pos: 78.5,36.5 + parent: 40599 + - uid: 42851 components: - type: Transform - pos: 41.5,66.5 - parent: 40203 - - uid: 42423 + pos: 77.5,33.5 + parent: 40599 + - uid: 42852 components: - type: Transform - pos: 31.5,66.5 - parent: 40203 - - uid: 42424 + pos: 77.5,33.5 + parent: 40599 + - uid: 42853 components: - type: Transform - pos: 47.5,66.5 - parent: 40203 - - uid: 42425 + pos: 48.5,25.5 + parent: 40599 + - uid: 42854 components: - type: Transform - pos: 55.5,49.5 - parent: 40203 - - uid: 42426 + rot: 3.141592653589793 rad + pos: 72.5,27.5 + parent: 40599 + - uid: 42855 components: - type: Transform - pos: 58.5,57.5 - parent: 40203 - - uid: 42427 + pos: 54.5,28.5 + parent: 40599 + - uid: 46130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,55.5 - parent: 40203 - - uid: 42428 + pos: -5.5,9.5 + parent: 45355 + - uid: 46131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,78.5 - parent: 40203 - - uid: 42429 + pos: -4.5,9.5 + parent: 45355 + - uid: 46132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,76.5 - parent: 40203 - - uid: 42430 + pos: 4.5,9.5 + parent: 45355 + - uid: 46133 components: - type: Transform - pos: 39.5,74.5 - parent: 40203 - - uid: 45774 + pos: 3.5,9.5 + parent: 45355 + - uid: 46134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 44970 -- proto: PoweredlightBlue + pos: 3.5,1.5 + parent: 45355 +- proto: RadiationCollectorFullTank entities: - - uid: 24657 + - uid: 25394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-9.5 + pos: -23.5,-37.5 parent: 2 -- proto: PoweredlightCyan - entities: - - uid: 24658 + - uid: 25395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-2.5 + pos: -23.5,-36.5 parent: 2 - - type: PoweredLight - on: False - - uid: 24659 + - uid: 25396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,45.5 + pos: -23.5,-35.5 parent: 2 -- proto: PoweredlightEmpty - entities: - - uid: 23369 + - uid: 25397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,19.5 + pos: -19.5,-37.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23370 - - type: ApcPowerReceiver - powerLoad: 25 - - type: DamageOnInteract - isDamageActive: False - - uid: 23371 + - uid: 25398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,19.5 + pos: -19.5,-35.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23372 - - type: ApcPowerReceiver - powerLoad: 25 - - type: DamageOnInteract - isDamageActive: False - - uid: 24660 + - uid: 25399 components: - type: Transform - pos: -56.5,67.5 + pos: -19.5,-37.5 parent: 2 - - uid: 24661 +- proto: RadioHandheld + entities: + - uid: 25400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-40.5 + rot: 1.5707963267948966 rad + pos: -108.26483,42.862526 parent: 2 - - uid: 42243 +- proto: RadioHandheldSecurity + entities: + - uid: 25401 components: - type: Transform - pos: 63.5,66.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42244 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42245 + pos: -30.75003,-0.5750499 + parent: 2 +- proto: RagItem + entities: + - uid: 8609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,78.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42246 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42247 + parent: 8603 + - type: Physics + canCollide: False + - uid: 25402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,74.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42248 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42249 + pos: 40.53905,22.79186 + parent: 2 + - uid: 25403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,51.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42250 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42251 + pos: -18.281649,44.558735 + parent: 2 +- proto: Railing + entities: + - uid: 25404 components: - type: Transform - pos: 53.5,79.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42252 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42431 + pos: 48.5,-9.5 + parent: 2 + - uid: 25405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,70.5 - parent: 40203 - - uid: 45743 + rot: 3.141592653589793 rad + pos: 92.5,-36.5 + parent: 2 + - uid: 25406 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 44970 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 45744 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 45745 - components: - - type: Transform - pos: 3.5,9.5 - parent: 44970 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 45746 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 45747 - components: - - type: Transform - pos: -4.5,9.5 - parent: 44970 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 45748 - - type: ApcPowerReceiver - powerLoad: 60 - - uid: 45749 - components: - - type: Transform - pos: 0.5,5.5 - parent: 44970 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 45750 - - type: ApcPowerReceiver - powerLoad: 60 -- proto: PoweredlightExterior - entities: - - uid: 42432 + pos: 103.5,-28.5 + parent: 2 + - uid: 25407 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,71.5 - parent: 40203 - - uid: 42433 + pos: 103.5,-29.5 + parent: 2 + - uid: 25408 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,71.5 - parent: 40203 -- proto: PoweredlightGreen - entities: - - uid: 24662 + pos: 103.5,-27.5 + parent: 2 + - uid: 25409 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-2.5 + pos: 103.5,-27.5 parent: 2 - - type: PoweredLight - on: False - - uid: 42434 - components: - - type: Transform - pos: 42.5,63.5 - parent: 40203 - - uid: 42435 - components: - - type: Transform - pos: 44.5,63.5 - parent: 40203 -- proto: PoweredlightLED - entities: - - uid: 24663 + - uid: 25410 components: - type: Transform - pos: 4.5,62.5 + rot: -1.5707963267948966 rad + pos: 103.5,-28.5 parent: 2 - - uid: 24664 + - uid: 25411 components: - type: Transform - pos: 10.5,48.5 + pos: -22.5,-18.5 parent: 2 - - uid: 24665 + - uid: 25412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,56.5 + pos: -23.5,-18.5 parent: 2 - - uid: 24666 + - uid: 25413 components: - type: Transform - pos: -21.5,47.5 + pos: -24.5,-18.5 parent: 2 - - uid: 24667 + - uid: 25414 components: - type: Transform - pos: -27.5,52.5 + pos: -28.5,-18.5 parent: 2 - - uid: 24668 + - uid: 25415 components: - type: Transform - pos: -15.5,55.5 + pos: -30.5,-18.5 parent: 2 - - uid: 24669 + - uid: 25416 components: - type: Transform - pos: -22.5,52.5 + pos: -50.5,60.5 parent: 2 - - uid: 24670 + - uid: 25417 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,37.5 + pos: -108.5,-0.5 parent: 2 - - uid: 24671 + - uid: 25418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,42.5 + pos: -106.5,-1.5 parent: 2 - - uid: 24672 + - uid: 25419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,54.5 + rot: 1.5707963267948966 rad + pos: -108.5,-1.5 parent: 2 - - uid: 24673 + - uid: 25420 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,48.5 + pos: -108.5,-2.5 parent: 2 - - uid: 24674 + - uid: 25421 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,49.5 + pos: -106.5,-0.5 parent: 2 - - uid: 24675 + - uid: 25422 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,60.5 - parent: 2 - - uid: 24676 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,47.5 - parent: 2 - - uid: 24677 - components: - - type: Transform - pos: 5.5,49.5 + pos: 90.5,-19.5 parent: 2 - - uid: 24678 + - uid: 25423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,36.5 + pos: -25.5,46.5 parent: 2 - - uid: 24679 + - uid: 25424 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,55.5 + pos: -4.5,50.5 parent: 2 - - uid: 24680 + - uid: 25425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,61.5 + pos: -26.5,46.5 parent: 2 - - uid: 24681 + - uid: 25426 components: - type: Transform - pos: -8.5,59.5 + pos: -26.5,10.5 parent: 2 - - uid: 24682 + - uid: 25427 components: - type: Transform - pos: -3.5,52.5 + pos: -27.5,10.5 parent: 2 - - uid: 24683 + - uid: 25428 components: - type: Transform - pos: 3.5,54.5 + rot: -1.5707963267948966 rad + pos: -25.5,10.5 parent: 2 - - uid: 24684 + - uid: 25429 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,55.5 + pos: -26.5,10.5 parent: 2 - - uid: 24685 + - uid: 25430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,43.5 + pos: 1.5,-6.5 parent: 2 -- proto: PoweredlightOrange - entities: - - uid: 24686 + - uid: 25431 components: - type: Transform - pos: -5.5,44.5 + pos: 2.5,-6.5 parent: 2 - - uid: 24687 + - uid: 25432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,42.5 + pos: 3.5,-6.5 parent: 2 -- proto: PoweredlightPink - entities: - - uid: 24688 + - uid: 25433 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,31.5 - parent: 2 - - uid: 24689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,28.5 - parent: 2 -- proto: PoweredLightPostSmall - entities: - - uid: 24690 - components: - - type: Transform - pos: 42.5,3.5 + pos: 1.5,-4.5 parent: 2 - - uid: 24691 + - uid: 25434 components: - type: Transform - pos: 42.5,-1.5 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 parent: 2 - - uid: 24692 + - uid: 25435 components: - type: Transform - pos: 35.5,-19.5 + rot: 3.141592653589793 rad + pos: 2.5,-4.5 parent: 2 - - uid: 24693 + - uid: 25436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-28.5 + rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 2 - - uid: 24694 + - uid: 25437 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-45.5 - parent: 2 - - uid: 24695 - components: - - type: Transform - pos: -0.5,64.5 - parent: 2 - - uid: 24696 - components: - - type: Transform - pos: 3.5,67.5 + pos: 29.5,-10.5 parent: 2 -- proto: PoweredlightRed - entities: - - uid: 24697 + - uid: 25438 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-9.5 + pos: -1.5,-3.5 parent: 2 - - uid: 24698 + - uid: 25439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-9.5 + rot: -1.5707963267948966 rad + pos: 29.5,-8.5 parent: 2 - - uid: 24699 + - uid: 25440 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,4.5 + pos: 29.5,-6.5 parent: 2 - - type: PoweredLight - on: False -- proto: PoweredlightSodium - entities: - - uid: 24700 + - uid: 25441 components: - type: Transform - pos: 53.5,4.5 + rot: -1.5707963267948966 rad + pos: 29.5,-7.5 parent: 2 - - type: PoweredLight - on: False - - uid: 24701 + - uid: 25442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,25.5 + pos: 29.5,-9.5 parent: 2 - - uid: 24702 + - uid: 25443 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,17.5 + pos: 29.5,-5.5 parent: 2 - - uid: 24703 + - uid: 25444 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,17.5 + pos: 12.5,-19.5 parent: 2 - - uid: 24704 + - uid: 25445 components: - type: Transform - pos: 17.5,-19.5 + rot: -1.5707963267948966 rad + pos: 28.5,20.5 parent: 2 - - uid: 24705 + - uid: 25446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-22.5 + rot: 1.5707963267948966 rad + pos: 62.5,-0.5 parent: 2 - - uid: 24706 + - uid: 25447 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-22.5 + pos: 62.5,0.5 parent: 2 - - uid: 24707 + - uid: 25448 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-23.5 + pos: 62.5,1.5 parent: 2 - - uid: 24708 + - uid: 25449 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: 62.5,2.5 parent: 2 - - uid: 24709 + - uid: 25450 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,9.5 + pos: 49.5,1.5 parent: 2 - - uid: 24710 + - uid: 25451 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,69.5 + pos: 49.5,0.5 parent: 2 - - uid: 24711 + - uid: 25452 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,18.5 + pos: 21.5,36.5 parent: 2 - - uid: 24712 + - uid: 25453 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,19.5 + pos: 52.5,23.5 parent: 2 - - uid: 24713 + - uid: 25454 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 2 - - uid: 24714 - components: - - type: Transform - pos: 93.5,-14.5 - parent: 2 -- proto: PoweredSmallLight - entities: - - uid: 24715 - components: - - type: Transform - pos: 2.5,58.5 + pos: 52.5,24.5 parent: 2 - - uid: 24716 + - uid: 25455 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-9.5 + pos: 52.5,22.5 parent: 2 - - uid: 24717 + - uid: 25456 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-11.5 + pos: 52.5,21.5 parent: 2 - - uid: 24718 + - uid: 25457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,60.5 + pos: 29.5,19.5 parent: 2 - - uid: 24719 + - uid: 25458 components: - type: Transform - pos: -50.5,58.5 + rot: -1.5707963267948966 rad + pos: 17.5,31.5 parent: 2 - - uid: 24720 + - uid: 25459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,30.5 + pos: 13.5,31.5 parent: 2 - - uid: 24721 + - uid: 25460 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,28.5 + pos: -4.5,2.5 parent: 2 - - uid: 24722 + - uid: 25461 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,30.5 + pos: 9.5,2.5 parent: 2 - - uid: 24723 + - uid: 25462 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,30.5 + pos: -8.5,-43.5 parent: 2 - - uid: 24724 + - uid: 25463 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,32.5 - parent: 2 - - uid: 24725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,32.5 + pos: -9.5,-25.5 parent: 2 - - uid: 24726 + - uid: 25464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-6.5 + rot: -1.5707963267948966 rad + pos: -9.5,-27.5 parent: 2 - - uid: 24727 + - uid: 25465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-6.5 + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 parent: 2 - - uid: 24728 + - uid: 25466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-6.5 + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 parent: 2 - - uid: 24729 + - uid: 25467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-43.5 + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 parent: 2 - - uid: 24730 + - uid: 25468 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,6.5 + pos: -9.5,-23.5 parent: 2 - - uid: 24731 + - uid: 25469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,38.5 + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 parent: 2 - - uid: 24732 + - uid: 25470 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,6.5 + pos: -9.5,-24.5 parent: 2 - - uid: 24733 + - uid: 25471 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,-34.5 + pos: -9.5,-21.5 parent: 2 - - uid: 24734 + - uid: 25472 components: - type: Transform - pos: -33.5,-43.5 + rot: -1.5707963267948966 rad + pos: -9.5,-23.5 parent: 2 - - uid: 24735 + - uid: 25473 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,4.5 + pos: -9.5,-27.5 parent: 2 - - uid: 24736 + - uid: 25474 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-3.5 + pos: -9.5,-22.5 parent: 2 - - uid: 24737 + - uid: 25475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,29.5 + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 parent: 2 - - uid: 24738 + - uid: 25476 components: - type: Transform rot: 1.5707963267948966 rad - pos: 59.5,4.5 + pos: -9.5,-21.5 parent: 2 - - uid: 24739 + - uid: 25477 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,4.5 + pos: -10.5,-43.5 parent: 2 - - uid: 24740 + - uid: 25478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,2.5 + rot: -1.5707963267948966 rad + pos: -10.5,-42.5 parent: 2 - - uid: 24741 + - uid: 25479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,3.5 + rot: -1.5707963267948966 rad + pos: -10.5,-41.5 parent: 2 - - uid: 24742 + - uid: 25480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-1.5 + rot: -1.5707963267948966 rad + pos: -10.5,-49.5 parent: 2 - - uid: 24743 + - uid: 25481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-0.5 + rot: -1.5707963267948966 rad + pos: -10.5,-48.5 parent: 2 - - uid: 24744 + - uid: 25482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-2.5 + rot: -1.5707963267948966 rad + pos: -10.5,-47.5 parent: 2 - - uid: 24745 + - uid: 25483 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-19.5 + pos: -8.5,-42.5 parent: 2 - - uid: 24746 + - uid: 25484 components: - type: Transform rot: 1.5707963267948966 rad - pos: 61.5,-4.5 - parent: 2 - - uid: 24747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-16.5 + pos: -8.5,-41.5 parent: 2 - - uid: 24748 + - uid: 25485 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,26.5 - parent: 2 - - uid: 24749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,29.5 - parent: 2 - - uid: 24750 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,31.5 + pos: -8.5,-47.5 parent: 2 - - uid: 24751 + - uid: 25486 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,28.5 + pos: -8.5,-48.5 parent: 2 - - uid: 24752 + - uid: 25487 components: - type: Transform - pos: 25.5,43.5 + rot: 1.5707963267948966 rad + pos: -8.5,-49.5 parent: 2 - - uid: 24753 + - uid: 25488 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,42.5 + pos: 9.5,-19.5 parent: 2 - - uid: 24754 + - uid: 25489 components: - type: Transform - pos: 19.5,43.5 + rot: 3.141592653589793 rad + pos: 11.5,-19.5 parent: 2 - - uid: 24755 + - uid: 25490 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,42.5 + pos: 10.5,-19.5 parent: 2 - - uid: 24756 + - uid: 25491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-10.5 + rot: 3.141592653589793 rad + pos: 13.5,-19.5 parent: 2 - - uid: 24757 + - uid: 25492 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-4.5 + pos: -0.5,-15.5 parent: 2 - - uid: 24758 + - uid: 25493 components: - type: Transform - pos: -12.5,-6.5 + rot: 3.141592653589793 rad + pos: -1.5,-15.5 parent: 2 - - uid: 24759 + - uid: 25494 components: - type: Transform - pos: 9.5,-11.5 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 parent: 2 - - type: Timer - - uid: 24760 + - uid: 25495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 + rot: 3.141592653589793 rad + pos: 15.5,-19.5 parent: 2 - - uid: 24761 + - uid: 25496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,27.5 + rot: 3.141592653589793 rad + pos: 14.5,-19.5 parent: 2 - - uid: 24762 + - uid: 25497 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,5.5 + pos: 5.5,-15.5 parent: 2 - - uid: 24763 + - uid: 25498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,28.5 + rot: 3.141592653589793 rad + pos: -9.5,-15.5 parent: 2 - - uid: 24764 + - uid: 25499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-48.5 + rot: 3.141592653589793 rad + pos: -8.5,-15.5 parent: 2 - - uid: 24765 + - uid: 25500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-47.5 + rot: 3.141592653589793 rad + pos: -6.5,-15.5 parent: 2 - - uid: 24766 + - uid: 25501 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-51.5 + pos: -7.5,-15.5 parent: 2 - - uid: 24767 + - uid: 25502 components: - type: Transform - pos: 70.5,-55.5 + rot: 3.141592653589793 rad + pos: -5.5,-15.5 parent: 2 - - uid: 24768 + - uid: 25503 components: - type: Transform - pos: 66.5,-55.5 + rot: 3.141592653589793 rad + pos: -4.5,-15.5 parent: 2 - - uid: 24769 + - uid: 25504 components: - type: Transform - pos: 13.5,65.5 + rot: 3.141592653589793 rad + pos: -12.5,-15.5 parent: 2 - - uid: 24770 + - uid: 25505 components: - type: Transform - pos: 9.5,65.5 + rot: -1.5707963267948966 rad + pos: -27.5,10.5 parent: 2 - - uid: 24771 + - uid: 25506 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-51.5 + pos: -25.5,10.5 parent: 2 - - uid: 24772 + - uid: 25507 components: - type: Transform - pos: -21.5,-34.5 + rot: 3.141592653589793 rad + pos: 86.5,-20.5 parent: 2 - - uid: 24773 + - uid: 25508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,51.5 + rot: 3.141592653589793 rad + pos: 85.5,-20.5 parent: 2 - - uid: 24774 + - uid: 25509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,52.5 + rot: 3.141592653589793 rad + pos: 87.5,-20.5 parent: 2 - - uid: 24775 + - uid: 25510 components: - type: Transform - pos: 28.5,54.5 + rot: 3.141592653589793 rad + pos: 88.5,-20.5 parent: 2 - - uid: 24776 + - uid: 25511 components: - type: Transform - pos: 24.5,61.5 + rot: 3.141592653589793 rad + pos: 89.5,-20.5 parent: 2 - - uid: 24777 + - uid: 25512 components: - type: Transform - pos: 49.5,-48.5 + rot: -1.5707963267948966 rad + pos: 77.5,-33.5 parent: 2 - - uid: 24778 + - uid: 25513 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-58.5 + pos: 77.5,-32.5 parent: 2 - - uid: 24779 + - uid: 25514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-58.5 + pos: 89.5,-10.5 parent: 2 - - uid: 24780 + - uid: 25515 components: - type: Transform - pos: -16.5,44.5 + rot: 3.141592653589793 rad + pos: -3.5,48.5 parent: 2 - - uid: 24781 + - uid: 25516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,39.5 + pos: -3.5,51.5 parent: 2 - - uid: 24782 + - uid: 25517 components: - type: Transform - pos: 70.5,-29.5 + rot: 1.5707963267948966 rad + pos: -4.5,49.5 parent: 2 - - uid: 24783 + - uid: 25518 components: - type: Transform - pos: 44.5,-28.5 + pos: 88.5,-10.5 parent: 2 - - uid: 24784 + - uid: 25519 components: - type: Transform - pos: -41.5,17.5 + pos: 87.5,-10.5 parent: 2 - - uid: 24785 + - uid: 25520 components: - type: Transform - pos: -45.5,17.5 + pos: 86.5,-10.5 parent: 2 - - uid: 24786 + - uid: 25521 components: - type: Transform - pos: -49.5,17.5 + pos: 85.5,-10.5 parent: 2 - - uid: 24787 + - uid: 25522 components: - type: Transform - pos: 73.5,-29.5 + pos: 74.5,-10.5 parent: 2 - - uid: 24788 + - uid: 25523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,43.5 + pos: 73.5,-10.5 parent: 2 - - uid: 24789 + - uid: 25524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,45.5 + pos: 72.5,-10.5 parent: 2 - - uid: 24790 + - uid: 25525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 + pos: 71.5,-10.5 parent: 2 - - uid: 24791 + - uid: 25526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,28.5 + pos: 70.5,-10.5 parent: 2 - - uid: 24792 + - uid: 25527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,30.5 + rot: 1.5707963267948966 rad + pos: 69.5,-19.5 parent: 2 - - uid: 24793 + - uid: 25528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,27.5 + rot: 3.141592653589793 rad + pos: 79.5,-20.5 parent: 2 - - uid: 24794 + - uid: 25529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,24.5 + pos: 69.5,-11.5 parent: 2 - - uid: 24795 + - uid: 25530 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,15.5 + pos: 78.5,-20.5 parent: 2 - - uid: 24796 + - uid: 25531 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,19.5 + pos: 70.5,-20.5 parent: 2 - - uid: 24797 + - uid: 25532 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,23.5 + pos: 71.5,-20.5 parent: 2 - - uid: 24798 + - uid: 25533 components: - type: Transform - pos: 97.5,-3.5 + rot: 3.141592653589793 rad + pos: 72.5,-20.5 parent: 2 - - uid: 24799 + - uid: 25534 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,15.5 + pos: 73.5,-20.5 parent: 2 - - uid: 24800 + - uid: 25535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,26.5 + rot: 3.141592653589793 rad + pos: 74.5,-20.5 parent: 2 - - uid: 24801 + - uid: 25536 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,21.5 + pos: 80.5,-20.5 parent: 2 - - uid: 24802 + - uid: 25537 components: - type: Transform - pos: -37.5,26.5 + rot: 3.141592653589793 rad + pos: 81.5,-20.5 parent: 2 - - uid: 24803 + - uid: 25538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,55.5 + pos: 81.5,-10.5 parent: 2 - - uid: 24804 + - uid: 25539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,43.5 + pos: 80.5,-10.5 parent: 2 - - uid: 42436 + - uid: 25540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,59.5 - parent: 40203 - - uid: 42437 + pos: 79.5,-10.5 + parent: 2 + - uid: 25541 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,82.5 - parent: 40203 - - uid: 42438 + pos: 78.5,-10.5 + parent: 2 + - uid: 25542 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,68.5 - parent: 40203 - - uid: 42439 + pos: -2.5,51.5 + parent: 2 + - uid: 25543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,69.5 - parent: 40203 - - uid: 42440 + rot: 3.141592653589793 rad + pos: -2.5,48.5 + parent: 2 + - uid: 25544 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,56.5 - parent: 40203 - - uid: 42441 - components: - - type: MetaData - desc: Если лампа погасла, система активна. - name: индикатор активности системы - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,55.5 - parent: 40203 - - uid: 42442 + pos: -1.5,50.5 + parent: 2 + - uid: 25545 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,82.5 - parent: 40203 - - uid: 42443 + pos: -1.5,49.5 + parent: 2 + - uid: 25546 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,59.5 - parent: 40203 - - uid: 45775 + pos: 5.5,37.5 + parent: 2 + - uid: 25547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 44970 - - uid: 45776 + rot: 1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 25548 components: - type: Transform - pos: 10.5,9.5 - parent: 44970 -- proto: PoweredSmallLightEmpty - entities: - - uid: 23332 + rot: 3.141592653589793 rad + pos: 5.5,37.5 + parent: 2 + - uid: 25549 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,21.5 + pos: 5.5,38.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23333 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 23334 + - uid: 25550 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,27.5 + pos: 5.5,36.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23335 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 23336 + - uid: 25551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,69.5 + rot: 3.141592653589793 rad + pos: 5.5,36.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23337 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 23338 + - uid: 25552 components: - type: Transform - pos: -8.5,74.5 + rot: -1.5707963267948966 rad + pos: -3.5,18.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23339 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 24805 + - uid: 25553 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,38.5 + pos: -3.5,19.5 parent: 2 - - uid: 24806 + - uid: 25554 components: - type: Transform - pos: -52.5,61.5 + rot: -1.5707963267948966 rad + pos: 90.5,-11.5 parent: 2 - - uid: 24807 + - uid: 25555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,64.5 + rot: -1.5707963267948966 rad + pos: 90.5,-12.5 parent: 2 - - uid: 24808 + - uid: 25556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,35.5 + rot: -1.5707963267948966 rad + pos: 90.5,-13.5 parent: 2 - - uid: 24809 + - uid: 25557 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-12.5 + pos: 90.5,-14.5 parent: 2 - - uid: 24810 + - uid: 25558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,67.5 + rot: -1.5707963267948966 rad + pos: 90.5,-15.5 parent: 2 - - uid: 24811 + - uid: 25559 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,64.5 + pos: 90.5,-16.5 parent: 2 - - uid: 24812 + - uid: 25560 components: - type: Transform - pos: -55.5,-28.5 + rot: -1.5707963267948966 rad + pos: 90.5,-17.5 parent: 2 - - uid: 24813 + - uid: 25561 components: - type: Transform rot: -1.5707963267948966 rad - pos: 97.5,-43.5 + pos: 90.5,-18.5 parent: 2 - - uid: 24814 + - uid: 25562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 101.5,-43.5 + pos: -122.5,1.5 parent: 2 - - uid: 24815 + - uid: 25563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,43.5 + pos: -119.5,1.5 parent: 2 - - uid: 42233 + - uid: 25564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,62.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42234 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42235 + pos: -120.5,1.5 + parent: 2 + - uid: 25565 + components: + - type: Transform + pos: -121.5,1.5 + parent: 2 + - uid: 25566 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,82.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42236 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42237 + pos: -123.5,10.5 + parent: 2 + - uid: 25567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,71.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42238 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42239 + rot: -1.5707963267948966 rad + pos: -123.5,11.5 + parent: 2 + - uid: 25568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,56.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42240 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42241 + rot: 3.141592653589793 rad + pos: -122.5,12.5 + parent: 2 + - uid: 25569 components: - type: Transform - pos: 56.5,63.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42242 - - type: ApcPowerReceiver - powerLoad: 60 - - type: DamageOnInteract - isDamageActive: False - - uid: 42444 + rot: 3.141592653589793 rad + pos: -121.5,12.5 + parent: 2 + - uid: 25570 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,59.5 - parent: 40203 -- proto: PoweredStrobeLightEmpty - entities: - - uid: 23330 + pos: -119.5,12.5 + parent: 2 + - uid: 25571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,41.5 + rot: 3.141592653589793 rad + pos: -120.5,12.5 parent: 2 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23331 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 42223 + - uid: 25572 components: - type: Transform - pos: 41.5,63.5 - parent: 40203 - - type: PointLight - color: '#B40D0DFF' - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42224 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42225 + rot: -1.5707963267948966 rad + pos: -123.5,2.5 + parent: 2 + - uid: 25573 components: - type: Transform - pos: 45.5,63.5 - parent: 40203 - - type: PointLight - color: '#B40D0DFF' - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42226 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42227 + rot: -1.5707963267948966 rad + pos: -123.5,3.5 + parent: 2 + - uid: 25574 components: - type: Transform - pos: 58.5,72.5 - parent: 40203 - - type: AmbientSound - volume: 1 - range: 4 - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42228 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42229 + rot: -1.5707963267948966 rad + pos: -124.5,5.5 + parent: 2 + - uid: 25575 components: - type: Transform - pos: 62.5,72.5 - parent: 40203 - - type: AmbientSound - volume: 1 - range: 4 - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42230 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False - - uid: 42231 + rot: -1.5707963267948966 rad + pos: -124.5,6.5 + parent: 2 + - uid: 25576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,79.5 - parent: 40203 - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42232 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DamageOnInteract - isDamageActive: False -- proto: PoweredStrobeLightSiren - entities: - - uid: 23313 + pos: -124.5,7.5 + parent: 2 + - uid: 25577 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.5,22.5 + pos: -124.5,8.5 parent: 2 - - type: AmbientSound - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23314 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23315 + - uid: 25578 components: - type: Transform - pos: -107.5,12.5 + rot: 3.141592653589793 rad + pos: -10.5,-15.5 parent: 2 - - type: AmbientSound - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23316 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23317 + - uid: 25579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,22.5 + pos: 65.5,-37.5 parent: 2 - - type: AmbientSound - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23318 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23319 + - uid: 25580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,11.5 + pos: 66.5,-37.5 parent: 2 - - type: AmbientSound - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23320 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23321 + - uid: 25581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 + pos: 67.5,-37.5 parent: 2 - - type: AmbientSound - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23322 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 23323 + - uid: 25582 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-0.5 + pos: 67.5,-44.5 parent: 2 - - type: AmbientSound - sound: !type:SoundPathSpecifier - params: - variation: null - playOffsetSeconds: 0 - loop: False - referenceDistance: 1 - rolloffFactor: 1 - maxDistance: 15 - pitch: 1 - volume: 0 - path: /Audio/Corvax/Misc/siren.ogg - - type: ContainerContainer - containers: - light_bulb: !type:ContainerSlot - showEnts: False - occludes: True - ent: 23324 - - type: ApcPowerReceiver - powerLoad: 0 -- proto: PresentRandom - entities: - - uid: 14699 + - uid: 25583 components: - type: Transform - parent: 14698 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 24816 + rot: 3.141592653589793 rad + pos: 66.5,-44.5 + parent: 2 + - uid: 25584 components: - type: Transform - pos: 62.085705,28.929926 + rot: 3.141592653589793 rad + pos: 65.5,-44.5 parent: 2 - - uid: 24817 + - uid: 25585 components: - type: Transform - pos: 57.48203,-17.34218 + rot: 1.5707963267948966 rad + pos: -50.5,60.5 parent: 2 - - uid: 24818 + - uid: 25586 components: + - type: MetaData + desc: Стань тем самым турникменом. + name: турник - type: Transform - pos: 5.7258134,-36.497807 + rot: 1.5707963267948966 rad + pos: -119.5,9.5 parent: 2 - - uid: 24819 + - uid: 25587 components: + - type: MetaData + desc: Лучше не лизать. + name: брусья - type: Transform - pos: 33.888603,46.23016 + pos: -119.5,10.5 parent: 2 - - uid: 24820 + - uid: 25588 components: + - type: MetaData + desc: Лучше не лизать. + name: брусья - type: Transform - pos: -13.482866,-68.49724 + rot: 3.141592653589793 rad + pos: -119.5,8.5 parent: 2 - - uid: 24821 + - uid: 25589 components: - type: Transform - pos: 57.51113,-31.463657 + rot: -1.5707963267948966 rad + pos: -106.5,-2.5 parent: 2 - - uid: 24822 + - uid: 25590 components: - type: Transform - pos: 89.27177,-2.9459286 + rot: 3.141592653589793 rad + pos: -50.5,60.5 parent: 2 - - uid: 24823 + - uid: 25591 components: - type: Transform - pos: 32.37728,-9.3538685 + rot: -1.5707963267948966 rad + pos: -70.5,25.5 parent: 2 - - uid: 24824 + - uid: 25592 components: - type: Transform - pos: 41.51896,53.610313 + pos: -71.5,26.5 parent: 2 - - uid: 24825 + - uid: 25593 components: - type: Transform - pos: -67.49625,-22.46907 + rot: -1.5707963267948966 rad + pos: -74.5,27.5 parent: 2 -- proto: PresentRandomAsh - entities: - - uid: 24826 + - uid: 25594 components: - type: Transform - pos: 37.46461,-39.455025 + pos: -68.5,24.5 parent: 2 -- proto: PresentRandomCash - entities: - - uid: 24827 + - uid: 25595 components: - type: Transform - pos: -4.4639816,52.59594 + pos: -69.5,24.5 parent: 2 - - uid: 24828 + - uid: 25596 components: - type: Transform - pos: -18.91269,67.69478 + pos: -70.5,24.5 parent: 2 -- proto: PrintedDocumentComplaintViolationLaborRules - entities: - - uid: 24829 + - uid: 25597 components: - type: Transform - pos: -41.988026,10.600693 + rot: 3.141592653589793 rad + pos: -71.5,22.5 parent: 2 -- proto: PrintedDocumentOrderDismissal - entities: - - uid: 24830 + - uid: 25598 components: + - type: MetaData + desc: Помогает качать мышцы. + name: гриф - type: Transform - pos: -42.79052,1.6302462 + rot: -1.5707963267948966 rad + pos: -120.5,11.5 parent: 2 -- proto: PrintedDocumentPermissionToCarryWeapons - entities: - - uid: 24831 + - uid: 25599 components: - type: Transform - pos: 79.67552,-36.43598 + pos: -29.5,-18.5 parent: 2 -- proto: PrintedDocumentPrescriptionDrugAuthorization - entities: - - uid: 24832 + - uid: 25600 components: - type: Transform - pos: 3.8792992,61.675793 + rot: 1.5707963267948966 rad + pos: 103.5,-29.5 parent: 2 -- proto: PrintedDocumentReportStation - entities: - - uid: 24833 + - uid: 25601 components: - type: Transform - pos: 8.68634,-9.609186 + rot: 3.141592653589793 rad + pos: -46.5,27.5 parent: 2 -- proto: PrintedDocumentSentence - entities: - - uid: 24834 + - uid: 25602 components: - type: Transform - pos: -32.29887,7.159455 + rot: 3.141592653589793 rad + pos: -46.5,26.5 parent: 2 - - uid: 24835 + - uid: 25603 components: - type: Transform - pos: -32.483295,7.096955 + rot: 1.5707963267948966 rad + pos: -21.5,-8.5 parent: 2 -- proto: PrinterDoc - entities: - - uid: 24836 + - uid: 25604 components: - type: Transform - pos: 73.5,-41.5 + rot: 1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - - uid: 24837 + - uid: 25605 components: - type: Transform - pos: 13.5,-7.5 + rot: 1.5707963267948966 rad + pos: -21.5,-11.5 parent: 2 - - uid: 24838 + - uid: 25606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 parent: 2 - - uid: 24839 + - uid: 25607 components: - type: Transform - pos: 3.5,21.5 + rot: 3.141592653589793 rad + pos: 93.5,-36.5 parent: 2 - - uid: 24840 + - uid: 25608 components: - type: Transform - pos: -17.5,26.5 + rot: 3.141592653589793 rad + pos: 94.5,-36.5 parent: 2 - - uid: 24841 + - uid: 25609 components: - type: Transform - pos: -3.5,-9.5 + pos: -74.5,13.5 parent: 2 -- proto: PrinterDocMachineCircuitboard - entities: - - uid: 24842 + - uid: 25610 components: - type: Transform - pos: 15.640812,6.3925877 + pos: -76.5,13.5 parent: 2 -- proto: Protolathe - entities: - - uid: 24843 + - uid: 42856 components: - type: Transform - pos: 30.5,-41.5 - parent: 2 -- proto: ProtolatheMachineCircuitboard - entities: - - uid: 24844 + pos: 68.5,37.5 + parent: 40599 + - uid: 42857 + components: + - type: Transform + pos: 71.5,37.5 + parent: 40599 + - uid: 42858 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.411645,5.3613377 - parent: 2 -- proto: PsychBed - entities: - - uid: 24845 + pos: 63.5,54.5 + parent: 40599 + - uid: 42859 components: - type: Transform - pos: 1.5,65.5 - parent: 2 -- proto: PuddleEgg - entities: - - uid: 24846 + rot: 3.141592653589793 rad + pos: 68.5,55.5 + parent: 40599 + - uid: 42860 components: - type: Transform - pos: -50.5,-30.5 - parent: 2 - - uid: 24847 + pos: 58.5,74.5 + parent: 40599 + - uid: 42861 components: - type: Transform - pos: -52.5,-29.5 - parent: 2 -- proto: Rack - entities: - - uid: 24848 + rot: 3.141592653589793 rad + pos: 58.5,75.5 + parent: 40599 + - uid: 42862 components: - type: Transform - pos: 59.5,36.5 - parent: 2 - - uid: 24849 + rot: 1.5707963267948966 rad + pos: 62.5,50.5 + parent: 40599 + - uid: 42863 components: - type: Transform - pos: -23.5,65.5 - parent: 2 - - uid: 24850 + rot: -1.5707963267948966 rad + pos: 67.5,50.5 + parent: 40599 + - uid: 42864 components: - type: Transform - pos: -22.5,65.5 - parent: 2 - - uid: 24851 + rot: 1.5707963267948966 rad + pos: 52.5,75.5 + parent: 40599 + - uid: 42865 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,42.5 - parent: 2 - - uid: 24852 + pos: 50.5,75.5 + parent: 40599 + - uid: 42866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,31.5 - parent: 2 - - uid: 24853 + rot: 1.5707963267948966 rad + pos: 69.5,68.5 + parent: 40599 + - uid: 42867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 69.5,67.5 + parent: 40599 + - uid: 42868 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,30.5 - parent: 2 - - uid: 24854 + pos: 68.5,68.5 + parent: 40599 + - uid: 42869 components: - type: Transform - pos: -83.5,28.5 - parent: 2 - - uid: 24855 + rot: -1.5707963267948966 rad + pos: 68.5,67.5 + parent: 40599 + - uid: 42870 components: - type: Transform - pos: -83.5,30.5 - parent: 2 - - uid: 24856 + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 40599 + - uid: 42871 components: - type: Transform - pos: -48.5,63.5 - parent: 2 - - uid: 24857 + rot: 1.5707963267948966 rad + pos: 48.5,27.5 + parent: 40599 + - uid: 42872 components: - type: Transform - pos: 10.5,-45.5 - parent: 2 - - uid: 24858 + rot: 1.5707963267948966 rad + pos: 47.5,27.5 + parent: 40599 + - uid: 42873 components: - type: Transform - pos: 15.5,6.5 - parent: 2 - - uid: 24859 + rot: 3.141592653589793 rad + pos: 74.5,29.5 + parent: 40599 + - uid: 42874 components: - type: Transform - pos: 15.5,5.5 - parent: 2 - - uid: 24860 + rot: -1.5707963267948966 rad + pos: 40.5,53.5 + parent: 40599 + - uid: 42875 components: - type: Transform - pos: 15.5,4.5 - parent: 2 - - uid: 24861 + rot: 1.5707963267948966 rad + pos: 44.5,53.5 + parent: 40599 + - uid: 42876 components: - type: Transform - pos: 15.5,7.5 - parent: 2 - - uid: 24862 + pos: 67.5,37.5 + parent: 40599 + - uid: 42877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,11.5 - parent: 2 - - uid: 24863 + pos: 73.5,37.5 + parent: 40599 + - uid: 42878 components: - type: Transform - pos: -40.5,-6.5 - parent: 2 - - uid: 24864 + pos: 70.5,37.5 + parent: 40599 + - uid: 42879 components: - type: Transform - pos: 1.5,-53.5 - parent: 2 - - uid: 24865 + pos: 72.5,37.5 + parent: 40599 + - uid: 42880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-43.5 - parent: 2 - - uid: 24866 + pos: 69.5,37.5 + parent: 40599 + - uid: 42881 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-55.5 - parent: 2 - - uid: 24867 + pos: 68.5,33.5 + parent: 40599 + - uid: 42882 components: - type: Transform - pos: 51.5,-49.5 - parent: 2 - - uid: 24868 + rot: 3.141592653589793 rad + pos: 67.5,33.5 + parent: 40599 + - uid: 42883 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-52.5 - parent: 2 - - uid: 24869 + pos: 69.5,33.5 + parent: 40599 + - uid: 42884 components: - type: Transform - pos: 21.5,-36.5 - parent: 2 - - uid: 24870 + rot: 3.141592653589793 rad + pos: 71.5,33.5 + parent: 40599 + - uid: 42885 components: - type: Transform - pos: 45.5,-18.5 - parent: 2 - - uid: 24871 + rot: 3.141592653589793 rad + pos: 72.5,33.5 + parent: 40599 + - uid: 42886 components: - type: Transform - pos: 44.5,-18.5 - parent: 2 - - uid: 24872 + rot: 3.141592653589793 rad + pos: 73.5,33.5 + parent: 40599 + - uid: 42887 components: - type: Transform - pos: 59.5,-12.5 - parent: 2 - - uid: 24873 + rot: 3.141592653589793 rad + pos: 70.5,33.5 + parent: 40599 + - uid: 46135 components: - type: Transform - pos: 46.5,-11.5 - parent: 2 - - uid: 24874 + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 45355 + - uid: 46136 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 2 - - uid: 24875 + pos: 7.5,6.5 + parent: 45355 + - uid: 46137 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,33.5 - parent: 2 - - uid: 24876 + pos: -4.5,0.5 + parent: 45355 + - uid: 46138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,39.5 - parent: 2 - - uid: 24877 + pos: -4.5,1.5 + parent: 45355 + - uid: 46139 components: - type: Transform - pos: 0.5,-11.5 - parent: 2 - - uid: 24878 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 45355 + - uid: 46140 components: - type: Transform - pos: 3.5,15.5 - parent: 2 - - uid: 24879 + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 45355 + - uid: 46750 components: - type: Transform - pos: 4.5,15.5 - parent: 2 - - uid: 24880 + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 46584 + - uid: 46751 components: - type: Transform - pos: -11.5,-7.5 - parent: 2 - - uid: 24881 + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 46584 + - uid: 46752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 2 - - uid: 24882 + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 46584 + - uid: 46753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-11.5 - parent: 2 - - uid: 24883 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 46584 + - uid: 47084 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 46943 +- proto: RailingCorner + entities: + - uid: 25611 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-10.5 + pos: 47.5,-9.5 parent: 2 - - uid: 24884 + - uid: 25612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-40.5 + pos: 49.5,-9.5 parent: 2 - - uid: 24885 + - uid: 25613 components: - type: Transform - pos: 17.5,-41.5 + pos: 5.5,-19.5 parent: 2 - - uid: 24886 + - uid: 25614 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,-54.5 + pos: 5.5,-23.5 parent: 2 - - uid: 24887 + - uid: 25615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-51.5 + pos: -4.5,1.5 parent: 2 - - uid: 24888 + - uid: 25616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-39.5 + rot: -1.5707963267948966 rad + pos: 28.5,19.5 parent: 2 - - uid: 24889 + - uid: 25617 components: - type: Transform - pos: 4.5,-36.5 + rot: -1.5707963267948966 rad + pos: 49.5,-0.5 parent: 2 - - uid: 24890 + - uid: 25618 components: - type: Transform - pos: 36.5,-0.5 + rot: 3.141592653589793 rad + pos: 49.5,2.5 parent: 2 - - uid: 24891 + - uid: 25619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,13.5 + pos: 22.5,37.5 parent: 2 - - uid: 24892 + - uid: 25620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-39.5 + rot: -1.5707963267948966 rad + pos: 20.5,37.5 parent: 2 - - uid: 24893 + - uid: 25621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-40.5 + rot: -1.5707963267948966 rad + pos: 9.5,1.5 parent: 2 - - uid: 24894 + - uid: 25622 components: - type: Transform - pos: 18.5,-35.5 + rot: -1.5707963267948966 rad + pos: 4.5,-19.5 parent: 2 - - uid: 24895 + - uid: 25623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-42.5 + rot: 3.141592653589793 rad + pos: 4.5,-23.5 parent: 2 - - uid: 24896 + - uid: 25624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-41.5 + rot: 3.141592653589793 rad + pos: -3.5,20.5 parent: 2 - - uid: 24897 + - uid: 25625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,11.5 + rot: 3.141592653589793 rad + pos: -124.5,9.5 parent: 2 - - uid: 24898 + - uid: 25626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,12.5 + rot: -1.5707963267948966 rad + pos: -123.5,1.5 parent: 2 - - uid: 24899 + - uid: 25627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,10.5 + rot: -1.5707963267948966 rad + pos: -124.5,4.5 parent: 2 - - uid: 24900 + - uid: 25628 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,-8.5 + pos: -123.5,12.5 parent: 2 - - uid: 24901 + - uid: 25629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-9.5 + rot: -1.5707963267948966 rad + pos: -74.5,26.5 parent: 2 - - uid: 24902 + - uid: 42888 components: - type: Transform - pos: 3.5,-46.5 - parent: 2 - - uid: 24903 + rot: 3.141592653589793 rad + pos: 67.5,55.5 + parent: 40599 + - uid: 46754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,44.5 - parent: 2 - - uid: 24904 + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 46584 + - uid: 47085 components: - type: Transform - pos: -1.5,-50.5 - parent: 2 - - uid: 24905 + pos: 1.5,-0.5 + parent: 46943 + - uid: 47086 components: - type: Transform - pos: 70.5,-52.5 - parent: 2 - - uid: 24906 + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 46943 +- proto: RailingCornerSmall + entities: + - uid: 25630 components: - type: Transform - pos: 70.5,-53.5 + rot: 1.5707963267948966 rad + pos: 95.5,-35.5 parent: 2 - - uid: 24907 + - uid: 25631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,-48.5 + pos: 95.5,-36.5 parent: 2 - - uid: 24908 + - uid: 25632 components: - type: Transform - pos: -44.5,6.5 + rot: 3.141592653589793 rad + pos: 69.5,-32.5 parent: 2 - - uid: 24909 + - uid: 25633 components: - type: Transform - pos: -12.5,-53.5 + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 parent: 2 - - uid: 24910 + - uid: 25634 components: - type: Transform - pos: -12.5,-52.5 + pos: -27.5,-19.5 parent: 2 - - uid: 24911 + - uid: 25635 components: - type: Transform - pos: -37.5,-8.5 + rot: -1.5707963267948966 rad + pos: -28.5,-19.5 parent: 2 - - uid: 24912 + - uid: 25636 components: - type: Transform - pos: -41.5,-8.5 + rot: 1.5707963267948966 rad + pos: -21.5,-18.5 parent: 2 - - uid: 24913 + - uid: 25637 components: - type: Transform - pos: -40.5,-8.5 + rot: 3.141592653589793 rad + pos: -25.5,-18.5 parent: 2 - - uid: 24914 + - uid: 25638 components: - type: Transform - pos: -37.5,-6.5 + rot: 3.141592653589793 rad + pos: -31.5,-18.5 parent: 2 - - uid: 24915 + - uid: 25639 components: - type: Transform - pos: -36.5,-8.5 + rot: 3.141592653589793 rad + pos: -28.5,-18.5 parent: 2 - - uid: 24916 + - uid: 25640 components: - type: Transform - pos: -42.5,-8.5 + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 parent: 2 - - uid: 24917 + - uid: 25641 components: - type: Transform - pos: -44.5,-7.5 + pos: 0.5,-15.5 parent: 2 - - uid: 24918 + - uid: 25642 components: - type: Transform - pos: -44.5,-8.5 + pos: 7.5,-15.5 parent: 2 - - uid: 24919 + - uid: 25643 components: - type: Transform - pos: 40.5,-46.5 + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - - uid: 24920 + - uid: 25644 components: - type: Transform - pos: 35.5,-49.5 + rot: 3.141592653589793 rad + pos: 4.5,-14.5 parent: 2 - - uid: 24921 + - uid: 25645 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,10.5 + pos: 5.5,-14.5 parent: 2 - - uid: 24922 + - uid: 25646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,18.5 + rot: -1.5707963267948966 rad + pos: 8.5,-19.5 parent: 2 - - uid: 24923 + - uid: 25647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,14.5 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 parent: 2 - - uid: 24924 + - uid: 25648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,3.5 + pos: 29.5,-11.5 parent: 2 - - uid: 24925 + - uid: 25649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,21.5 + pos: 29.5,-4.5 parent: 2 - - uid: 24926 + - uid: 25650 components: - type: Transform - pos: -20.5,60.5 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 parent: 2 - - uid: 24927 + - uid: 25651 components: - type: Transform - pos: 40.5,-49.5 + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 parent: 2 - - uid: 24928 + - uid: 25652 components: - type: Transform - pos: 41.5,-27.5 + pos: 4.5,-4.5 parent: 2 - - uid: 24929 + - uid: 25653 components: - type: Transform - pos: 52.5,-29.5 + rot: -1.5707963267948966 rad + pos: 9.5,0.5 parent: 2 - - uid: 24930 + - uid: 25654 components: - type: Transform - pos: 49.5,-31.5 + pos: -4.5,0.5 parent: 2 - - uid: 24931 + - uid: 25655 components: - type: Transform - pos: -33.5,-43.5 + rot: -1.5707963267948966 rad + pos: -5.5,0.5 parent: 2 - - uid: 24932 + - uid: 25656 components: - type: Transform - pos: 91.5,-28.5 + pos: 28.5,20.5 parent: 2 - - uid: 24933 + - uid: 25657 components: - type: Transform - pos: -36.5,-6.5 + pos: 30.5,18.5 parent: 2 - - uid: 24934 + - uid: 25658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,12.5 + pos: 14.5,32.5 parent: 2 - - uid: 24935 + - uid: 25659 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,12.5 + pos: -4.5,1.5 parent: 2 - - uid: 24936 + - uid: 25660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-26.5 + rot: 3.141592653589793 rad + pos: 62.5,3.5 parent: 2 - - uid: 24937 + - uid: 25661 components: - type: Transform - pos: -4.5,-33.5 + rot: -1.5707963267948966 rad + pos: 62.5,-1.5 parent: 2 - - uid: 24938 + - uid: 25662 components: - type: Transform - pos: -10.5,51.5 + pos: 50.5,-1.5 parent: 2 - - uid: 24939 + - uid: 25663 components: - type: Transform - pos: -21.5,47.5 + rot: 3.141592653589793 rad + pos: 48.5,-1.5 parent: 2 - - uid: 24940 + - uid: 25664 components: - type: Transform - pos: -23.5,10.5 + rot: 1.5707963267948966 rad + pos: 49.5,-0.5 parent: 2 - - uid: 24941 + - uid: 25665 components: - type: Transform - pos: 22.5,48.5 + rot: 1.5707963267948966 rad + pos: 50.5,3.5 parent: 2 - - uid: 24942 + - uid: 25666 components: - type: Transform - pos: 60.5,-14.5 + pos: 50.5,2.5 parent: 2 - - uid: 24943 + - uid: 25667 components: - type: Transform - pos: 7.5,22.5 + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 parent: 2 - - uid: 24944 + - uid: 25668 components: - type: Transform - pos: 56.5,-15.5 + rot: 3.141592653589793 rad + pos: 48.5,-0.5 parent: 2 - - uid: 24945 + - uid: 25669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-18.5 + rot: -1.5707963267948966 rad + pos: 48.5,2.5 parent: 2 - - uid: 24946 + - uid: 25670 components: - type: Transform - pos: 48.5,41.5 + pos: 49.5,2.5 parent: 2 - - uid: 24947 + - uid: 25671 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,26.5 + pos: 48.5,3.5 parent: 2 - - uid: 24948 + - uid: 25672 components: - type: Transform - pos: -28.5,-31.5 + rot: 1.5707963267948966 rad + pos: 50.5,-0.5 parent: 2 - - uid: 24949 + - uid: 25673 components: - type: Transform - pos: -47.5,-22.5 + rot: -1.5707963267948966 rad + pos: 49.5,-1.5 parent: 2 - - uid: 24950 + - uid: 25674 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,47.5 + pos: 48.5,3.5 parent: 2 - - uid: 24951 + - uid: 25675 components: - type: Transform rot: 3.141592653589793 rad - pos: 97.5,-11.5 - parent: 2 - - uid: 24952 - components: - - type: Transform - pos: -115.5,1.5 - parent: 2 - - uid: 24953 - components: - - type: Transform - pos: -96.5,-6.5 + pos: 49.5,3.5 parent: 2 - - uid: 24954 + - uid: 25676 components: - type: Transform - pos: 11.5,-2.5 + rot: 3.141592653589793 rad + pos: 21.5,37.5 parent: 2 - - uid: 24955 + - uid: 25677 components: - type: Transform - pos: 27.5,17.5 + rot: 1.5707963267948966 rad + pos: 22.5,37.5 parent: 2 - - uid: 24956 + - uid: 25678 components: - type: Transform - pos: 10.5,37.5 + rot: 1.5707963267948966 rad + pos: 20.5,38.5 parent: 2 - - uid: 24957 + - uid: 25679 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-19.5 + pos: 21.5,37.5 parent: 2 - - uid: 24958 + - uid: 25680 components: - type: Transform - pos: -79.5,26.5 + rot: 3.141592653589793 rad + pos: 22.5,38.5 parent: 2 - - uid: 24959 + - uid: 25681 components: - type: Transform - pos: -59.5,67.5 + rot: 3.141592653589793 rad + pos: 20.5,37.5 parent: 2 - - uid: 24960 + - uid: 25682 components: - type: Transform - pos: -46.5,68.5 + rot: -1.5707963267948966 rad + pos: 20.5,36.5 parent: 2 - - uid: 24961 + - uid: 25683 components: - type: Transform - pos: -45.5,66.5 + pos: 22.5,36.5 parent: 2 - - uid: 24962 + - uid: 25684 components: - type: Transform - pos: -47.5,68.5 + pos: 52.5,20.5 parent: 2 - - uid: 24963 + - uid: 25685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,65.5 + rot: -1.5707963267948966 rad + pos: 27.5,20.5 parent: 2 - - uid: 24964 + - uid: 25686 components: - type: Transform - pos: -50.5,61.5 + pos: 14.5,31.5 parent: 2 - - uid: 24965 + - uid: 25687 components: - type: Transform - pos: -80.5,14.5 + pos: 17.5,31.5 parent: 2 - - uid: 24966 + - uid: 25688 components: - type: Transform - pos: -79.5,14.5 + rot: 1.5707963267948966 rad + pos: 30.5,19.5 parent: 2 - - uid: 24967 + - uid: 25689 components: - type: Transform - pos: -99.5,22.5 + rot: -1.5707963267948966 rad + pos: 13.5,31.5 parent: 2 - - uid: 24968 + - uid: 25690 components: - type: Transform - pos: -99.5,25.5 + rot: 1.5707963267948966 rad + pos: 28.5,21.5 parent: 2 - - uid: 24969 + - uid: 25691 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,17.5 - parent: 2 - - uid: 24970 - components: - - type: Transform - pos: -45.5,38.5 + pos: 16.5,31.5 parent: 2 - - uid: 24971 + - uid: 25692 components: - type: Transform - pos: -55.5,37.5 + rot: 3.141592653589793 rad + pos: 13.5,32.5 parent: 2 - - uid: 24972 + - uid: 25693 components: - type: Transform - pos: -56.5,37.5 + rot: -1.5707963267948966 rad + pos: 29.5,18.5 parent: 2 - - uid: 24973 + - uid: 25694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,26.5 + pos: 17.5,32.5 parent: 2 - - uid: 24974 + - uid: 25695 components: - type: Transform - pos: -107.5,19.5 + rot: 3.141592653589793 rad + pos: 29.5,19.5 parent: 2 - - uid: 24975 + - uid: 25696 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,24.5 + pos: 27.5,21.5 parent: 2 - - uid: 24976 + - uid: 25697 components: - type: Transform - pos: -75.5,55.5 + rot: 3.141592653589793 rad + pos: 16.5,32.5 parent: 2 - - uid: 24977 + - uid: 25698 components: - type: Transform - pos: -81.5,39.5 + rot: 3.141592653589793 rad + pos: 9.5,1.5 parent: 2 - - uid: 24978 + - uid: 25699 components: - type: Transform - pos: -82.5,39.5 + rot: 3.141592653589793 rad + pos: -5.5,1.5 parent: 2 - - uid: 24979 + - uid: 25700 components: - type: Transform - pos: -98.5,36.5 + rot: 1.5707963267948966 rad + pos: 10.5,1.5 parent: 2 - - uid: 24980 + - uid: 25701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,46.5 + pos: 10.5,0.5 parent: 2 - - uid: 24981 + - uid: 25702 components: - type: Transform rot: -1.5707963267948966 rad - pos: 91.5,-0.5 - parent: 2 - - uid: 24982 - components: - - type: Transform - pos: -33.5,50.5 + pos: 1.5,12.5 parent: 2 - - uid: 24983 + - uid: 25703 components: - type: Transform - pos: -29.5,68.5 + pos: 3.5,12.5 parent: 2 - - uid: 24984 + - uid: 25704 components: - type: Transform - pos: -51.5,57.5 + rot: 1.5707963267948966 rad + pos: 3.5,14.5 parent: 2 - - uid: 24985 + - uid: 25705 components: - type: Transform - pos: 78.5,18.5 + rot: 3.141592653589793 rad + pos: 1.5,14.5 parent: 2 - - uid: 24986 + - uid: 25706 components: - type: Transform - pos: 0.5,-53.5 + rot: 1.5707963267948966 rad + pos: -10.5,-40.5 parent: 2 - - uid: 24987 + - uid: 25707 components: - type: Transform - pos: -141.5,3.5 + pos: -10.5,-44.5 parent: 2 - - uid: 24988 + - uid: 25708 components: - type: Transform - pos: -140.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-46.5 parent: 2 - - uid: 24989 + - uid: 25709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,25.5 + pos: -10.5,-50.5 parent: 2 - - uid: 24990 + - uid: 25710 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,24.5 + pos: -8.5,-40.5 parent: 2 - - uid: 24991 + - uid: 25711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-8.5 + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 parent: 2 - - uid: 24992 + - uid: 25712 components: - type: Transform - pos: 7.5,-44.5 + pos: -7.5,-44.5 parent: 2 - - uid: 24993 + - uid: 25713 components: - type: Transform - pos: 96.5,-43.5 + rot: 1.5707963267948966 rad + pos: -7.5,-46.5 parent: 2 - - uid: 24994 + - uid: 25714 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,44.5 + pos: -8.5,-46.5 parent: 2 - - uid: 24995 + - uid: 25715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-42.5 + rot: -1.5707963267948966 rad + pos: -8.5,-50.5 parent: 2 - - uid: 42445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,63.5 - parent: 40203 - - uid: 42446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,63.5 - parent: 40203 - - uid: 42447 + - uid: 25716 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,57.5 - parent: 40203 - - uid: 42448 + pos: 0.5,-14.5 + parent: 2 + - uid: 25717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,57.5 - parent: 40203 - - uid: 42449 + pos: 16.5,-19.5 + parent: 2 + - uid: 25718 components: - type: Transform - pos: 37.5,63.5 - parent: 40203 - - uid: 42450 + pos: -2.5,-15.5 + parent: 2 + - uid: 25719 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,71.5 - parent: 40203 - - uid: 42451 - components: - - type: Transform - pos: 68.5,61.5 - parent: 40203 - - uid: 42452 - components: - - type: Transform - pos: 64.5,41.5 - parent: 40203 - - uid: 42453 - components: - - type: Transform - pos: 64.5,41.5 - parent: 40203 - - uid: 42454 - components: - - type: Transform - pos: 78.5,36.5 - parent: 40203 - - uid: 42455 - components: - - type: Transform - pos: 77.5,33.5 - parent: 40203 - - uid: 42456 - components: - - type: Transform - pos: 77.5,33.5 - parent: 40203 - - uid: 42457 - components: - - type: Transform - pos: 48.5,25.5 - parent: 40203 - - uid: 42458 + pos: -13.5,-15.5 + parent: 2 + - uid: 25720 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,27.5 - parent: 40203 - - uid: 42459 - components: - - type: Transform - pos: 54.5,28.5 - parent: 40203 - - uid: 45777 + pos: -0.5,-14.5 + parent: 2 + - uid: 25721 components: - type: Transform - pos: -5.5,9.5 - parent: 44970 - - uid: 45778 + rot: 1.5707963267948966 rad + pos: 77.5,-31.5 + parent: 2 + - uid: 25722 components: - type: Transform - pos: -4.5,9.5 - parent: 44970 - - uid: 45779 + rot: -1.5707963267948966 rad + pos: 69.5,-20.5 + parent: 2 + - uid: 25723 components: - type: Transform - pos: 4.5,9.5 - parent: 44970 - - uid: 45780 + rot: 3.141592653589793 rad + pos: 69.5,-10.5 + parent: 2 + - uid: 25724 components: - type: Transform - pos: 3.5,9.5 - parent: 44970 - - uid: 45781 + rot: 3.141592653589793 rad + pos: -4.5,51.5 + parent: 2 + - uid: 25725 components: - type: Transform - pos: 3.5,1.5 - parent: 44970 -- proto: RadiationCollectorFullTank - entities: - - uid: 24996 + pos: -1.5,48.5 + parent: 2 + - uid: 25726 components: - type: Transform - pos: -23.5,-37.5 + rot: 1.5707963267948966 rad + pos: -1.5,51.5 parent: 2 - - uid: 24997 + - uid: 25727 components: - type: Transform - pos: -23.5,-36.5 + rot: -1.5707963267948966 rad + pos: -4.5,48.5 parent: 2 - - uid: 24998 + - uid: 25728 components: - type: Transform - pos: -23.5,-35.5 + pos: -15.5,48.5 parent: 2 - - uid: 24999 + - uid: 25729 components: - type: Transform - pos: -19.5,-37.5 + rot: 3.141592653589793 rad + pos: -15.5,54.5 parent: 2 - - uid: 25000 + - uid: 25730 components: - type: Transform - pos: -19.5,-35.5 + rot: 1.5707963267948966 rad + pos: -15.5,54.5 parent: 2 - - uid: 25001 + - uid: 25731 components: - type: Transform - pos: -19.5,-37.5 + rot: -1.5707963267948966 rad + pos: -15.5,48.5 parent: 2 -- proto: RadioHandheldSecurity - entities: - - uid: 25002 + - uid: 25732 components: - type: Transform - pos: -30.75003,-0.5750499 + rot: 1.5707963267948966 rad + pos: 90.5,-10.5 parent: 2 -- proto: RagItem - entities: - - uid: 25003 + - uid: 25733 components: - type: Transform - pos: 40.53905,22.79186 + pos: 90.5,-20.5 parent: 2 - - uid: 25004 + - uid: 25734 components: - type: Transform - pos: -18.281649,44.558735 + pos: -123.5,9.5 parent: 2 -- proto: Railing - entities: - - uid: 25005 + - uid: 25735 components: - type: Transform rot: 1.5707963267948966 rad - pos: 103.5,-28.5 + pos: -123.5,4.5 parent: 2 - - uid: 25006 + - uid: 25736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-29.5 + pos: 68.5,-44.5 parent: 2 - - uid: 25007 + - uid: 25737 components: - type: Transform rot: 1.5707963267948966 rad - pos: 103.5,-27.5 - parent: 2 - - uid: 25008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-27.5 + pos: 68.5,-37.5 parent: 2 - - uid: 25009 + - uid: 25738 components: - type: Transform rot: -1.5707963267948966 rad - pos: 103.5,-28.5 + pos: 64.5,-44.5 parent: 2 - - uid: 25010 + - uid: 25739 components: - type: Transform - pos: -22.5,-18.5 + rot: 3.141592653589793 rad + pos: 64.5,-43.5 parent: 2 - - uid: 25011 + - uid: 25740 components: - type: Transform - pos: -23.5,-18.5 + rot: 1.5707963267948966 rad + pos: 65.5,-43.5 parent: 2 - - uid: 25012 + - uid: 25741 components: - type: Transform - pos: -24.5,-18.5 + pos: 65.5,-44.5 parent: 2 - - uid: 25013 + - uid: 25742 components: - type: Transform - pos: -28.5,-18.5 + rot: 3.141592653589793 rad + pos: 64.5,-37.5 parent: 2 - - uid: 25014 + - uid: 25743 components: - type: Transform - pos: -30.5,-18.5 + rot: -1.5707963267948966 rad + pos: 64.5,-38.5 parent: 2 - - uid: 25015 + - uid: 25744 components: - type: Transform - pos: -50.5,60.5 + pos: 65.5,-38.5 parent: 2 - - uid: 25016 + - uid: 25745 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,-0.5 + pos: 65.5,-37.5 parent: 2 - - uid: 25017 + - uid: 25746 components: + - type: MetaData + desc: Стань тем самым турникменом. + name: турник - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,-1.5 + pos: -119.5,8.5 parent: 2 - - uid: 25018 + - uid: 25747 components: + - type: MetaData + desc: Стань тем самым турникменом. + name: турник - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,-1.5 + rot: 3.141592653589793 rad + pos: -119.5,10.5 parent: 2 - - uid: 25019 + - uid: 25748 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,-2.5 + pos: -70.5,26.5 parent: 2 - - uid: 25020 + - uid: 25749 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,-0.5 + pos: -71.5,23.5 parent: 2 - - uid: 25021 + - uid: 25750 components: - type: Transform rot: -1.5707963267948966 rad - pos: 90.5,-19.5 + pos: -25.5,-19.5 parent: 2 - - uid: 25022 + - uid: 25751 components: - type: Transform - pos: -25.5,46.5 + pos: -24.5,-19.5 parent: 2 - - uid: 25023 + - uid: 25752 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,50.5 - parent: 2 - - uid: 25024 - components: - - type: Transform - pos: -26.5,46.5 - parent: 2 - - uid: 25025 - components: - - type: Transform - pos: -26.5,10.5 + pos: -27.5,-18.5 parent: 2 - - uid: 25026 + - uid: 25753 components: - type: Transform - pos: -27.5,10.5 + rot: 3.141592653589793 rad + pos: 74.5,-30.5 parent: 2 - - uid: 25027 + - uid: 25754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,10.5 + pos: -20.5,-6.5 parent: 2 - - uid: 25028 + - uid: 25755 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,10.5 + pos: -21.5,-6.5 parent: 2 - - uid: 25029 + - uid: 25756 components: - type: Transform - pos: 1.5,-6.5 + rot: 3.141592653589793 rad + pos: -21.5,-11.5 parent: 2 - - uid: 25030 + - uid: 25757 components: - type: Transform - pos: 2.5,-6.5 + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 parent: 2 - - uid: 25031 + - uid: 25758 components: - type: Transform - pos: 3.5,-6.5 + rot: 3.141592653589793 rad + pos: 94.5,-35.5 parent: 2 - - uid: 25032 + - uid: 25759 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-4.5 + pos: 91.5,-35.5 parent: 2 - - uid: 25033 + - uid: 25760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + rot: 1.5707963267948966 rad + pos: 92.5,-35.5 parent: 2 - - uid: 25034 + - uid: 25761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 + rot: -1.5707963267948966 rad + pos: 91.5,-36.5 parent: 2 - - uid: 25035 + - uid: 42889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-4.5 - parent: 2 - - uid: 25036 + pos: 64.5,54.5 + parent: 40599 + - uid: 42890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 - parent: 2 - - uid: 25037 + pos: 59.5,75.5 + parent: 40599 + - uid: 42891 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 2 - - uid: 25038 + pos: 57.5,76.5 + parent: 40599 + - uid: 42892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 2 - - uid: 25039 + rot: 3.141592653589793 rad + pos: 57.5,74.5 + parent: 40599 + - uid: 42893 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-6.5 - parent: 2 - - uid: 25040 + pos: 57.5,75.5 + parent: 40599 + - uid: 42894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-7.5 - parent: 2 - - uid: 25041 + rot: 1.5707963267948966 rad + pos: 59.5,74.5 + parent: 40599 + - uid: 42895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 2 - - uid: 25042 + rot: 3.141592653589793 rad + pos: 62.5,51.5 + parent: 40599 + - uid: 42896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-5.5 - parent: 2 - - uid: 25043 + rot: 1.5707963267948966 rad + pos: 67.5,51.5 + parent: 40599 + - uid: 42897 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-19.5 - parent: 2 - - uid: 25044 + pos: 49.5,76.5 + parent: 40599 + - uid: 42898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,20.5 - parent: 2 - - uid: 25045 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-0.5 - parent: 2 - - uid: 25046 + pos: 49.5,74.5 + parent: 40599 + - uid: 42899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,0.5 - parent: 2 - - uid: 25047 + pos: 50.5,76.5 + parent: 40599 + - uid: 42900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,1.5 - parent: 2 - - uid: 25048 + rot: 3.141592653589793 rad + pos: 52.5,76.5 + parent: 40599 + - uid: 42901 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,2.5 - parent: 2 - - uid: 25049 + pos: 53.5,76.5 + parent: 40599 + - uid: 42902 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,1.5 - parent: 2 - - uid: 25050 + pos: 52.5,74.5 + parent: 40599 + - uid: 42903 components: - type: Transform - pos: 53.5,-11.5 - parent: 2 - - uid: 25051 + pos: 50.5,74.5 + parent: 40599 + - uid: 42904 components: - type: Transform - pos: 52.5,-11.5 - parent: 2 - - uid: 25052 + rot: 3.141592653589793 rad + pos: 69.5,69.5 + parent: 40599 + - uid: 42905 components: - type: Transform - pos: 51.5,-11.5 - parent: 2 - - uid: 25053 + rot: 1.5707963267948966 rad + pos: 68.5,69.5 + parent: 40599 + - uid: 42906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,0.5 - parent: 2 - - uid: 25054 + pos: 68.5,66.5 + parent: 40599 + - uid: 42907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,36.5 - parent: 2 - - uid: 25055 + rot: -1.5707963267948966 rad + pos: 67.5,66.5 + parent: 40599 + - uid: 42908 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,23.5 - parent: 2 - - uid: 25056 + pos: 69.5,66.5 + parent: 40599 + - uid: 42909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,24.5 - parent: 2 - - uid: 25057 + rot: 3.141592653589793 rad + pos: 50.5,36.5 + parent: 40599 + - uid: 42910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,22.5 - parent: 2 - - uid: 25058 + rot: 1.5707963267948966 rad + pos: 54.5,36.5 + parent: 40599 + - uid: 42911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,21.5 - parent: 2 - - uid: 25059 + rot: 3.141592653589793 rad + pos: 66.5,37.5 + parent: 40599 + - uid: 42912 components: - type: Transform - pos: 29.5,19.5 - parent: 2 - - uid: 25060 + rot: 1.5707963267948966 rad + pos: 74.5,37.5 + parent: 40599 + - uid: 42913 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,31.5 - parent: 2 - - uid: 25061 + pos: 66.5,33.5 + parent: 40599 + - uid: 42914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,31.5 - parent: 2 - - uid: 25062 + pos: 74.5,33.5 + parent: 40599 + - uid: 46141 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 2 - - uid: 25063 + pos: 6.5,7.5 + parent: 45355 + - uid: 46142 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,2.5 - parent: 2 - - uid: 25064 + pos: 5.5,5.5 + parent: 45355 + - uid: 46143 + components: + - type: Transform + pos: 6.5,5.5 + parent: 45355 + - uid: 46144 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-43.5 - parent: 2 - - uid: 25065 + pos: -5.5,2.5 + parent: 45355 + - uid: 46145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 2 - - uid: 25066 + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 45355 + - uid: 46146 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 45355 + - uid: 46147 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-27.5 - parent: 2 - - uid: 25067 + pos: -4.5,-0.5 + parent: 45355 + - uid: 46148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 2 - - uid: 25068 + pos: -5.5,-0.5 + parent: 45355 + - uid: 46149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 2 - - uid: 25069 + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 45355 + - uid: 46150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 - parent: 2 - - uid: 25070 + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 45355 +- proto: RailingRound + entities: + - uid: 25762 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-23.5 + pos: 49.5,-1.5 parent: 2 - - uid: 25071 + - uid: 25763 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-24.5 + pos: 49.5,3.5 parent: 2 - - uid: 25072 + - uid: 25764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 + rot: 3.141592653589793 rad + pos: -9.5,-20.5 parent: 2 - - uid: 25073 + - uid: 25765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 + pos: -9.5,-28.5 parent: 2 - - uid: 25074 + - uid: 25766 components: + - type: MetaData + name: корзина для баскетбола - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-23.5 + rot: 1.5707963267948966 rad + pos: -124.5,7.5 parent: 2 - - uid: 25075 +- proto: RandomArtifactSpawner + entities: + - uid: 25767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-27.5 + pos: 46.5,-58.5 parent: 2 - - uid: 25076 + - uid: 47087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-22.5 - parent: 2 - - uid: 25077 + pos: -0.5,10.5 + parent: 46943 +- proto: RandomBoard + entities: + - uid: 25768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-22.5 + pos: 96.5,-36.5 parent: 2 - - uid: 25078 +- proto: RandomCargoCorpseSpawner + entities: + - uid: 46151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 2 - - uid: 25079 + pos: -1.5,2.5 + parent: 45355 + - uid: 46152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-43.5 - parent: 2 - - uid: 25080 + pos: -1.5,11.5 + parent: 45355 +- proto: RandomCommandCorpseSpawner + entities: + - uid: 46153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-42.5 - parent: 2 - - uid: 25081 + pos: 4.5,16.5 + parent: 45355 +- proto: RandomDrinkBottle + entities: + - uid: 25769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-41.5 + pos: 92.5,-15.5 parent: 2 - - uid: 25082 + - uid: 25770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-49.5 + pos: -3.5,-47.5 parent: 2 - - uid: 25083 + - uid: 25771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-48.5 + pos: 21.5,-49.5 parent: 2 - - uid: 25084 + - uid: 25772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-47.5 + pos: 35.5,-53.5 parent: 2 - - uid: 25085 + - uid: 25773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-42.5 + pos: -22.5,65.5 parent: 2 - - uid: 25086 + - uid: 42915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 2 - - uid: 25087 + pos: 59.5,77.5 + parent: 40599 +- proto: RandomDrinkGlass + entities: + - uid: 25774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-47.5 + pos: -4.5,-44.5 parent: 2 - - uid: 25088 + - uid: 25775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-48.5 + pos: 40.5,21.5 parent: 2 - - uid: 25089 + - uid: 25776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-49.5 + pos: 40.5,19.5 parent: 2 - - uid: 25090 + - uid: 25777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-19.5 + pos: 94.5,-16.5 parent: 2 - - uid: 25091 + - uid: 42916 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-19.5 - parent: 2 - - uid: 25092 + pos: 79.5,35.5 + parent: 40599 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 42917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-19.5 - parent: 2 - - uid: 25093 + rot: 1.5707963267948966 rad + pos: 56.5,55.5 + parent: 40599 + - uid: 42918 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 2 - - uid: 25094 + rot: 1.5707963267948966 rad + pos: 63.5,78.5 + parent: 40599 + - uid: 42919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 2 - - uid: 25095 + rot: -1.5707963267948966 rad + pos: 47.5,30.5 + parent: 40599 + - uid: 42920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 2 - - uid: 25096 + rot: -1.5707963267948966 rad + pos: 51.5,35.5 + parent: 40599 + - uid: 42921 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-15.5 - parent: 2 - - uid: 25097 + rot: -1.5707963267948966 rad + pos: 48.5,41.5 + parent: 40599 + - uid: 42922 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-19.5 - parent: 2 - - uid: 25098 + rot: -1.5707963267948966 rad + pos: 37.5,23.5 + parent: 40599 + - uid: 46755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-19.5 - parent: 2 - - uid: 25099 + pos: -3.5,9.5 + parent: 46584 + - uid: 46756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-15.5 - parent: 2 - - uid: 25100 + pos: 4.5,4.5 + parent: 46584 +- proto: RandomFoodBakedSingle + entities: + - uid: 25778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-15.5 + pos: 24.5,27.5 parent: 2 - - uid: 25101 + - uid: 25779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 + pos: 33.5,20.5 parent: 2 - - uid: 25102 + - uid: 25780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-15.5 + pos: 93.5,-16.5 parent: 2 - - uid: 25103 +- proto: RandomFoodBakedWhole + entities: + - uid: 25781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-15.5 + pos: 28.5,30.5 parent: 2 - - uid: 25104 +- proto: RandomFoodMeal + entities: + - uid: 25782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-15.5 + pos: -49.5,5.5 parent: 2 - - uid: 25105 + - uid: 25783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-15.5 + pos: -4.5,-46.5 parent: 2 - - uid: 25106 + - uid: 25784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-15.5 + pos: -3.5,-43.5 parent: 2 - - uid: 25107 + - uid: 25785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 + pos: 26.5,34.5 parent: 2 - - uid: 25108 + - uid: 25786 components: - type: Transform - pos: -25.5,10.5 + pos: 16.5,-48.5 parent: 2 - - uid: 25109 + - uid: 25787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-20.5 + pos: 29.5,-51.5 parent: 2 - - uid: 25110 + - uid: 25788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,-20.5 + pos: 29.5,24.5 parent: 2 - - uid: 25111 + - uid: 25789 components: - type: Transform - rot: 3.141592653589793 rad - pos: 87.5,-20.5 + pos: 40.5,-45.5 parent: 2 - - uid: 25112 + - uid: 25790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 88.5,-20.5 + pos: 78.5,-9.5 parent: 2 - - uid: 25113 + - uid: 25791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 89.5,-20.5 + pos: 81.5,-9.5 parent: 2 - - uid: 25114 + - uid: 25792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 77.5,-33.5 + pos: 69.5,-10.5 parent: 2 - - uid: 25115 + - uid: 25793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-34.5 + pos: 69.5,-20.5 parent: 2 - - uid: 25116 + - uid: 25794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-32.5 + pos: 81.5,-21.5 parent: 2 - - uid: 25117 + - uid: 25795 components: - type: Transform - pos: 89.5,-10.5 + pos: -50.5,2.5 parent: 2 - - uid: 25118 + - uid: 25796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,48.5 + pos: -115.5,5.5 parent: 2 - - uid: 25119 + - uid: 25797 components: - type: Transform - pos: -3.5,51.5 + pos: -114.5,3.5 parent: 2 - - uid: 25120 + - uid: 42923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,49.5 - parent: 2 - - uid: 25121 + pos: 73.5,79.5 + parent: 40599 + - uid: 42924 components: - type: Transform - pos: 88.5,-10.5 - parent: 2 - - uid: 25122 + pos: 79.5,36.5 + parent: 40599 +- proto: RandomFoodSingle + entities: + - uid: 25798 components: - type: Transform - pos: 87.5,-10.5 + pos: 28.5,-32.5 parent: 2 - - uid: 25123 +- proto: RandomMeat + entities: + - uid: 47088 components: - type: Transform - pos: 86.5,-10.5 - parent: 2 - - uid: 25124 + pos: 5.5220337,-2.0663986 + parent: 46943 + - uid: 47089 components: - type: Transform - pos: 85.5,-10.5 - parent: 2 - - uid: 25125 + pos: 2.5064087,5.3711014 + parent: 46943 + - uid: 47090 components: - type: Transform - pos: 74.5,-10.5 - parent: 2 - - uid: 25126 + pos: -2.8373413,2.6679764 + parent: 46943 + - uid: 47091 components: - type: Transform - pos: 73.5,-10.5 - parent: 2 - - uid: 25127 + pos: -4.4154663,-2.5038986 + parent: 46943 +- proto: RandomMedicCorpseSpawner + entities: + - uid: 42925 components: - type: Transform - pos: 72.5,-10.5 - parent: 2 - - uid: 25128 + pos: 60.5,62.5 + parent: 40599 + - uid: 42926 components: - type: Transform - pos: 71.5,-10.5 - parent: 2 - - uid: 25129 + rot: -1.5707963267948966 rad + pos: 51.5,60.5 + parent: 40599 +- proto: RandomPainting + entities: + - uid: 25799 components: - type: Transform - pos: 70.5,-10.5 + pos: -45.5,-13.5 parent: 2 - - uid: 25130 + - uid: 25800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-19.5 + pos: -43.5,5.5 parent: 2 - - uid: 25131 + - uid: 25801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,-20.5 + pos: -6.5,17.5 parent: 2 - - uid: 25132 + - uid: 42927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-11.5 - parent: 2 - - uid: 25133 + pos: 74.5,80.5 + parent: 40599 + - uid: 47092 components: - type: Transform rot: 3.141592653589793 rad - pos: 78.5,-20.5 - parent: 2 - - uid: 25134 + pos: -5.5,-7.5 + parent: 46943 + - uid: 47093 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-20.5 - parent: 2 - - uid: 25135 + pos: 6.5,-3.5 + parent: 46943 + - uid: 47094 components: - type: Transform rot: 3.141592653589793 rad - pos: 71.5,-20.5 - parent: 2 - - uid: 25136 + pos: 5.5,-10.5 + parent: 46943 + - uid: 47095 components: - type: Transform rot: 3.141592653589793 rad - pos: 72.5,-20.5 - parent: 2 - - uid: 25137 + pos: -5.5,-0.5 + parent: 46943 +- proto: RandomPosterAny + entities: + - uid: 25802 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,-20.5 + pos: -35.5,20.5 parent: 2 - - uid: 25138 + - uid: 25803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-20.5 + pos: 2.5,35.5 parent: 2 - - uid: 25139 + - uid: 25804 components: - type: Transform - rot: 3.141592653589793 rad - pos: 80.5,-20.5 + pos: 6.5,31.5 parent: 2 - - uid: 25140 + - uid: 25805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 81.5,-20.5 + pos: 15.5,42.5 parent: 2 - - uid: 25141 + - uid: 25806 components: - type: Transform - pos: 81.5,-10.5 + pos: 29.5,40.5 parent: 2 - - uid: 25142 + - uid: 25807 components: - type: Transform - pos: 80.5,-10.5 + pos: 21.5,44.5 parent: 2 - - uid: 25143 + - uid: 25808 components: - type: Transform - pos: 79.5,-10.5 + pos: 6.5,40.5 parent: 2 - - uid: 25144 + - uid: 25809 components: - type: Transform - pos: 78.5,-10.5 + pos: 23.5,44.5 parent: 2 - - uid: 25145 + - uid: 25810 components: - type: Transform - pos: -2.5,51.5 + pos: 27.5,35.5 parent: 2 - - uid: 25146 + - uid: 25811 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,48.5 + pos: 53.5,-42.5 parent: 2 - - uid: 25147 + - uid: 25812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,50.5 + rot: 3.141592653589793 rad + pos: 60.5,-47.5 parent: 2 - - uid: 25148 + - uid: 25813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,49.5 + rot: 3.141592653589793 rad + pos: 86.5,-45.5 parent: 2 - - uid: 25149 + - uid: 25814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,37.5 + rot: 3.141592653589793 rad + pos: 71.5,-48.5 parent: 2 - - uid: 25150 + - uid: 25815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,38.5 + rot: 3.141592653589793 rad + pos: 69.5,-35.5 parent: 2 - - uid: 25151 + - uid: 25816 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,37.5 + pos: 65.5,-50.5 parent: 2 - - uid: 25152 + - uid: 25817 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,38.5 + pos: 8.5,43.5 parent: 2 - - uid: 25153 + - uid: 25818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,36.5 + pos: -31.5,24.5 parent: 2 - - uid: 25154 + - uid: 25819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,36.5 + pos: -47.5,25.5 parent: 2 - - uid: 25155 + - uid: 25820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,18.5 + pos: -42.5,22.5 parent: 2 - - uid: 25156 + - uid: 25821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,19.5 + pos: -35.5,27.5 parent: 2 - - uid: 25157 + - uid: 25822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-11.5 + pos: -28.5,28.5 parent: 2 - - uid: 25158 +- proto: RandomPosterContraband + entities: + - uid: 25823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-12.5 + pos: -20.5,13.5 parent: 2 - - uid: 25159 + - uid: 25824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-13.5 + pos: -9.5,55.5 parent: 2 - - uid: 25160 + - uid: 25825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-14.5 + pos: -37.5,-20.5 parent: 2 - - uid: 25161 + - uid: 25826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-15.5 + pos: -38.5,27.5 parent: 2 - - uid: 25162 + - uid: 25827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-16.5 + pos: -31.5,31.5 parent: 2 - - uid: 25163 +- proto: RandomPosterLegit + entities: + - uid: 25828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-17.5 + pos: -31.5,-10.5 parent: 2 - - uid: 25164 + - uid: 25829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,-18.5 + pos: -35.5,0.5 parent: 2 - - uid: 25165 + - uid: 25830 components: - type: Transform - pos: -122.5,1.5 + pos: -18.5,-15.5 parent: 2 - - uid: 25166 + - uid: 25831 components: - type: Transform - pos: -119.5,1.5 + pos: -11.5,-53.5 parent: 2 - - uid: 25167 + - uid: 25832 components: - type: Transform - pos: -120.5,1.5 + pos: 25.5,55.5 parent: 2 - - uid: 25168 + - uid: 25833 components: - type: Transform - pos: -121.5,1.5 + pos: 23.5,59.5 parent: 2 - - uid: 25169 + - uid: 25834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,10.5 + pos: 16.5,55.5 parent: 2 - - uid: 25170 + - uid: 25835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,11.5 + pos: -3.5,-34.5 parent: 2 - - uid: 25171 + - uid: 25836 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,12.5 + pos: -11.5,-34.5 parent: 2 - - uid: 25172 + - uid: 25837 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,12.5 + pos: 4.5,-39.5 parent: 2 - - uid: 25173 + - uid: 25838 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,12.5 + rot: 1.5707963267948966 rad + pos: 13.5,-40.5 parent: 2 - - uid: 25174 + - uid: 25839 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,12.5 + rot: 1.5707963267948966 rad + pos: 15.5,-46.5 parent: 2 - - uid: 25175 + - uid: 25840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,2.5 + pos: 30.5,-55.5 parent: 2 - - uid: 25176 + - uid: 25841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,3.5 + pos: 0.5,51.5 parent: 2 - - uid: 25177 + - uid: 25842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,5.5 + pos: -19.5,-47.5 parent: 2 - - uid: 25178 +- proto: RandomScienceCorpseSpawner + entities: + - uid: 42928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -124.5,6.5 - parent: 2 - - uid: 25179 + pos: 56.5,38.5 + parent: 40599 + - uid: 42929 components: - type: Transform rot: -1.5707963267948966 rad - pos: -124.5,7.5 - parent: 2 - - uid: 25180 + pos: 29.5,25.5 + parent: 40599 + - uid: 42930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,8.5 - parent: 2 - - uid: 25181 + rot: 1.5707963267948966 rad + pos: 55.5,69.5 + parent: 40599 + - uid: 42931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 2 - - uid: 25182 + pos: 36.5,39.5 + parent: 40599 + - uid: 42932 components: - type: Transform - pos: 65.5,-37.5 - parent: 2 - - uid: 25183 + rot: -1.5707963267948966 rad + pos: 58.5,30.5 + parent: 40599 + - uid: 42933 components: - type: Transform - pos: 66.5,-37.5 - parent: 2 - - uid: 25184 + pos: 65.5,38.5 + parent: 40599 +- proto: RandomSecurityCorpseSpawner + entities: + - uid: 42934 components: - type: Transform - pos: 67.5,-37.5 - parent: 2 - - uid: 25185 + rot: -1.5707963267948966 rad + pos: 55.5,41.5 + parent: 40599 + - uid: 42935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,-44.5 - parent: 2 - - uid: 25186 + rot: 1.5707963267948966 rad + pos: 30.5,68.5 + parent: 40599 + - uid: 42936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-44.5 - parent: 2 - - uid: 25187 + rot: 1.5707963267948966 rad + pos: 40.5,76.5 + parent: 40599 + - uid: 42937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-44.5 - parent: 2 - - uid: 25188 + rot: 1.5707963267948966 rad + pos: 38.5,74.5 + parent: 40599 +- proto: RandomServiceCorpseSpawner + entities: + - uid: 42938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 80.5,29.5 + parent: 40599 + - uid: 42939 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,60.5 + pos: 49.5,68.5 + parent: 40599 +- proto: RandomSoap + entities: + - uid: 25843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -107.5,32.5 parent: 2 - - uid: 25189 + - uid: 25844 components: - - type: MetaData - desc: Стань тем самым турникменом. - name: турник - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,9.5 + pos: -110.5,32.5 parent: 2 - - uid: 25190 + - uid: 25845 components: - - type: MetaData - desc: Лучше не лизать. - name: брусья - type: Transform - pos: -119.5,10.5 + pos: 40.5,-31.5 parent: 2 - - uid: 25191 + - uid: 25846 components: - - type: MetaData - desc: Лучше не лизать. - name: брусья - type: Transform rot: 3.141592653589793 rad - pos: -119.5,8.5 + pos: 12.5,-49.5 parent: 2 - - uid: 25192 + - uid: 25847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-2.5 + pos: 97.5,6.5 parent: 2 - - uid: 25193 + - uid: 25848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,60.5 + pos: 69.5,-32.5 parent: 2 - - uid: 25194 +- proto: RandomSpawner + entities: + - uid: 25849 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,25.5 + pos: 94.5,-41.5 parent: 2 - - uid: 25195 + - uid: 25850 components: - type: Transform - pos: -71.5,26.5 + pos: -14.5,-52.5 parent: 2 - - uid: 25196 + - uid: 25851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,27.5 + pos: -30.5,5.5 parent: 2 - - uid: 25197 + - uid: 25852 components: - type: Transform - pos: -68.5,24.5 + pos: -29.5,-2.5 parent: 2 - - uid: 25198 + - uid: 25853 components: - type: Transform - pos: -69.5,24.5 + pos: -47.5,-3.5 parent: 2 - - uid: 25199 + - uid: 25854 components: - type: Transform - pos: -70.5,24.5 + pos: -55.5,12.5 parent: 2 - - uid: 25200 + - uid: 25855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,22.5 + rot: -1.5707963267948966 rad + pos: 82.5,7.5 parent: 2 - - uid: 25201 + - uid: 25856 components: - - type: MetaData - desc: Помогает качать мышцы. - name: гриф - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,11.5 + pos: 44.5,-43.5 parent: 2 - - uid: 25202 + - uid: 25857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-0.5 + rot: -1.5707963267948966 rad + pos: 40.5,-40.5 parent: 2 - - uid: 25203 + - uid: 25858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-0.5 + pos: 38.5,-42.5 parent: 2 - - uid: 25204 + - uid: 25859 components: - type: Transform - pos: -29.5,-18.5 + pos: 44.5,-38.5 parent: 2 - - uid: 25205 + - uid: 25860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-29.5 + pos: 43.5,-41.5 parent: 2 - - uid: 25206 + - uid: 25861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,65.5 + pos: 89.5,-42.5 parent: 2 - - uid: 25207 + - uid: 25862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,65.5 + pos: 91.5,-36.5 parent: 2 - - uid: 25208 + - uid: 25863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,27.5 + pos: 92.5,-37.5 parent: 2 - - uid: 25209 + - uid: 25864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,26.5 + pos: 95.5,-35.5 parent: 2 - - uid: 25210 + - uid: 25865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-8.5 + pos: 95.5,-37.5 parent: 2 - - uid: 25211 + - uid: 25866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-10.5 + pos: 90.5,-43.5 parent: 2 - - uid: 25212 + - uid: 25867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 + pos: 92.5,-39.5 parent: 2 - - uid: 25213 + - uid: 25868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-6.5 + pos: 93.5,-40.5 parent: 2 - - uid: 42460 + - uid: 25869 components: - type: Transform - pos: 68.5,37.5 - parent: 40203 - - uid: 42461 + pos: 92.5,-44.5 + parent: 2 + - uid: 25870 components: - type: Transform - pos: 71.5,37.5 - parent: 40203 - - uid: 42462 + pos: 87.5,-42.5 + parent: 2 + - uid: 25871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,54.5 - parent: 40203 - - uid: 42463 + pos: -5.5,-46.5 + parent: 2 + - uid: 25872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,55.5 - parent: 40203 - - uid: 42464 + pos: -13.5,-46.5 + parent: 2 + - uid: 25873 components: - type: Transform - pos: 58.5,74.5 - parent: 40203 - - uid: 42465 + pos: -22.5,-44.5 + parent: 2 + - uid: 25874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,75.5 - parent: 40203 - - uid: 42466 + pos: -25.5,-45.5 + parent: 2 + - uid: 25875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,50.5 - parent: 40203 - - uid: 42467 + pos: -6.5,-36.5 + parent: 2 + - uid: 25876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,50.5 - parent: 40203 - - uid: 42468 + pos: -20.5,-36.5 + parent: 2 + - uid: 25877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,75.5 - parent: 40203 - - uid: 42469 + pos: -24.5,-42.5 + parent: 2 + - uid: 25878 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,75.5 - parent: 40203 - - uid: 42470 + pos: 82.5,4.5 + parent: 2 + - uid: 25879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,68.5 - parent: 40203 - - uid: 42471 + pos: 30.5,-52.5 + parent: 2 + - uid: 25880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,67.5 - parent: 40203 - - uid: 42472 + pos: 27.5,-56.5 + parent: 2 + - uid: 25881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,68.5 - parent: 40203 - - uid: 42473 + pos: 24.5,-46.5 + parent: 2 + - uid: 25882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,67.5 - parent: 40203 - - uid: 42474 + pos: 30.5,-48.5 + parent: 2 + - uid: 25883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,27.5 - parent: 40203 - - uid: 42475 + pos: 18.5,-49.5 + parent: 2 + - uid: 25884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,27.5 - parent: 40203 - - uid: 42476 + pos: 18.5,-40.5 + parent: 2 + - uid: 25885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,27.5 - parent: 40203 - - uid: 42477 + pos: 23.5,-35.5 + parent: 2 + - uid: 25886 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,29.5 - parent: 40203 - - uid: 42478 + pos: 32.5,-42.5 + parent: 2 + - uid: 25887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,53.5 - parent: 40203 - - uid: 42479 + pos: 32.5,-33.5 + parent: 2 + - uid: 25888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,53.5 - parent: 40203 - - uid: 42480 + pos: 28.5,-30.5 + parent: 2 + - uid: 25889 components: - type: Transform - pos: 67.5,37.5 - parent: 40203 - - uid: 42481 + pos: 31.5,-57.5 + parent: 2 + - uid: 25890 components: - type: Transform - pos: 73.5,37.5 - parent: 40203 - - uid: 42482 + pos: 3.5,-41.5 + parent: 2 + - uid: 25891 components: - type: Transform - pos: 70.5,37.5 - parent: 40203 - - uid: 42483 + pos: -2.5,-53.5 + parent: 2 + - uid: 25892 components: - type: Transform - pos: 72.5,37.5 - parent: 40203 - - uid: 42484 + pos: 4.5,-53.5 + parent: 2 + - uid: 25893 components: - type: Transform - pos: 69.5,37.5 - parent: 40203 - - uid: 42485 + pos: -4.5,-42.5 + parent: 2 + - uid: 25894 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,33.5 - parent: 40203 - - uid: 42486 + pos: -2.5,-45.5 + parent: 2 + - uid: 25895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,33.5 - parent: 40203 - - uid: 42487 + pos: 7.5,-41.5 + parent: 2 + - uid: 25896 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,33.5 - parent: 40203 - - uid: 42488 + pos: 2.5,-43.5 + parent: 2 + - uid: 25897 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,33.5 - parent: 40203 - - uid: 42489 + pos: -25.5,-50.5 + parent: 2 + - uid: 25898 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,33.5 - parent: 40203 - - uid: 42490 + rot: -1.5707963267948966 rad + pos: 79.5,6.5 + parent: 2 + - uid: 25899 components: - type: Transform - rot: 3.141592653589793 rad - pos: 73.5,33.5 - parent: 40203 - - uid: 42491 + rot: -1.5707963267948966 rad + pos: 77.5,5.5 + parent: 2 + - uid: 25900 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,33.5 - parent: 40203 - - uid: 45782 + rot: -1.5707963267948966 rad + pos: 80.5,4.5 + parent: 2 + - uid: 25901 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 44970 - - uid: 45783 + pos: 81.5,6.5 + parent: 2 + - uid: 25902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,6.5 - parent: 44970 - - uid: 45784 + rot: -1.5707963267948966 rad + pos: 79.5,7.5 + parent: 2 + - uid: 25903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,0.5 - parent: 44970 - - uid: 45785 + pos: -31.5,0.5 + parent: 2 + - uid: 25904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 - parent: 44970 - - uid: 45786 + pos: -45.5,12.5 + parent: 2 + - uid: 25905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 - parent: 44970 - - uid: 45787 + pos: -45.5,16.5 + parent: 2 + - uid: 25906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,1.5 - parent: 44970 -- proto: RailingCorner - entities: - - uid: 25214 + pos: -40.5,15.5 + parent: 2 + - uid: 25907 components: - type: Transform - pos: 5.5,-19.5 + pos: -26.5,11.5 parent: 2 - - uid: 25215 + - uid: 25908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-23.5 + pos: -38.5,5.5 parent: 2 - - uid: 25216 + - uid: 25909 components: - type: Transform - pos: -4.5,1.5 + pos: -36.5,-2.5 parent: 2 - - uid: 25217 + - uid: 25910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 + pos: -33.5,-11.5 parent: 2 - - uid: 25218 + - uid: 25911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-0.5 + pos: -22.5,-9.5 parent: 2 - - uid: 25219 + - uid: 25912 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,2.5 + pos: -17.5,25.5 parent: 2 - - uid: 25220 + - uid: 25913 components: - type: Transform - pos: 22.5,37.5 + pos: 10.5,33.5 parent: 2 - - uid: 25221 + - uid: 25914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,37.5 + pos: 25.5,32.5 parent: 2 - - uid: 25222 + - uid: 25915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,1.5 + pos: 26.5,29.5 parent: 2 - - uid: 25223 + - uid: 25916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-19.5 + pos: 55.5,32.5 parent: 2 - - uid: 25224 + - uid: 25917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-23.5 + pos: 56.5,31.5 parent: 2 - - uid: 25225 + - uid: 25918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,20.5 + pos: 57.5,33.5 parent: 2 - - uid: 25226 + - uid: 25919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,9.5 + pos: 54.5,33.5 parent: 2 - - uid: 25227 + - uid: 25920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,1.5 + pos: 54.5,32.5 parent: 2 - - uid: 25228 + - uid: 25921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,4.5 + pos: 57.5,31.5 parent: 2 - - uid: 25229 + - uid: 25922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,12.5 + pos: 55.5,32.5 parent: 2 - - uid: 25230 + - uid: 25923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,26.5 + pos: 56.5,32.5 parent: 2 - - uid: 42492 + - uid: 25924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,55.5 - parent: 40203 -- proto: RailingCornerSmall - entities: - - uid: 25231 + pos: 55.5,33.5 + parent: 2 + - uid: 25925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-32.5 + pos: 55.5,31.5 parent: 2 - - uid: 25232 + - uid: 25926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-18.5 + pos: -99.5,-8.5 parent: 2 - - uid: 25233 + - uid: 25927 components: - type: Transform - pos: -27.5,-19.5 + rot: 1.5707963267948966 rad + pos: -109.5,-4.5 parent: 2 - - uid: 25234 + - uid: 25928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 + rot: 1.5707963267948966 rad + pos: -106.5,-7.5 parent: 2 - - uid: 25235 + - uid: 25929 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-18.5 + pos: -104.5,1.5 parent: 2 - - uid: 25236 + - uid: 25930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-18.5 + rot: 1.5707963267948966 rad + pos: -109.5,6.5 parent: 2 - - uid: 25237 + - uid: 25931 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-18.5 + rot: 1.5707963267948966 rad + pos: -117.5,7.5 parent: 2 - - uid: 25238 + - uid: 25932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-18.5 + rot: 1.5707963267948966 rad + pos: -108.5,10.5 parent: 2 - - uid: 25239 + - uid: 25933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-15.5 + rot: 1.5707963267948966 rad + pos: -112.5,14.5 parent: 2 - - uid: 25240 + - uid: 25934 components: - type: Transform - pos: 0.5,-15.5 + rot: 1.5707963267948966 rad + pos: -109.5,20.5 parent: 2 - - uid: 25241 + - uid: 25935 components: - type: Transform - pos: 7.5,-15.5 + rot: 1.5707963267948966 rad + pos: -113.5,22.5 parent: 2 - - uid: 25242 + - uid: 25936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-15.5 + rot: 1.5707963267948966 rad + pos: -109.5,25.5 parent: 2 - - uid: 25243 + - uid: 25937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-14.5 + rot: 1.5707963267948966 rad + pos: -105.5,23.5 parent: 2 - - uid: 25244 + - uid: 25938 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-14.5 + pos: -101.5,23.5 parent: 2 - - uid: 25245 + - uid: 25939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 + rot: 1.5707963267948966 rad + pos: -107.5,29.5 parent: 2 - - uid: 25246 + - uid: 25940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 + rot: 1.5707963267948966 rad + pos: -111.5,32.5 parent: 2 - - uid: 25247 + - uid: 25941 components: - type: Transform - pos: 29.5,-11.5 + rot: 1.5707963267948966 rad + pos: -102.5,14.5 parent: 2 - - uid: 25248 + - uid: 25942 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-4.5 + pos: -100.5,10.5 parent: 2 - - uid: 25249 + - uid: 25943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-4.5 + rot: 1.5707963267948966 rad + pos: -99.5,2.5 parent: 2 - - uid: 25250 + - uid: 25944 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-6.5 + pos: -96.5,3.5 parent: 2 - - uid: 25251 + - uid: 25945 components: - type: Transform - pos: 4.5,-4.5 + rot: 1.5707963267948966 rad + pos: 95.5,1.5 parent: 2 - - uid: 25252 + - uid: 25946 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,0.5 + pos: 100.5,5.5 parent: 2 - - uid: 25253 + - uid: 25947 components: - type: Transform - pos: -4.5,0.5 + rot: -1.5707963267948966 rad + pos: 103.5,2.5 parent: 2 - - uid: 25254 + - uid: 25948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + pos: 7.5,-55.5 parent: 2 - - uid: 25255 + - uid: 25949 components: - type: Transform - pos: 28.5,20.5 + pos: -19.5,-59.5 parent: 2 - - uid: 25256 + - uid: 25950 components: - type: Transform - pos: 30.5,18.5 + pos: -1.5,-60.5 parent: 2 - - uid: 25257 + - uid: 25951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,32.5 + pos: -30.5,-9.5 parent: 2 - - uid: 25258 + - uid: 25952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,1.5 + pos: -24.5,-10.5 parent: 2 - - uid: 25259 + - uid: 25953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,3.5 + pos: -29.5,-7.5 parent: 2 - - uid: 25260 + - uid: 25954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,-1.5 + pos: -31.5,-71.5 parent: 2 - - uid: 25261 + - uid: 25955 components: - type: Transform - pos: 50.5,-1.5 + pos: -31.5,-63.5 parent: 2 - - uid: 25262 + - uid: 25956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-1.5 + rot: -1.5707963267948966 rad + pos: -114.5,1.5 parent: 2 - - uid: 25263 + - uid: 25957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-0.5 + pos: 98.5,-46.5 parent: 2 - - uid: 25264 + - uid: 25958 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,3.5 + pos: 102.5,-43.5 parent: 2 - - uid: 25265 + - uid: 25959 components: - type: Transform - pos: 50.5,2.5 + pos: 15.5,27.5 parent: 2 - - uid: 25266 + - uid: 25960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-1.5 + pos: 17.5,27.5 parent: 2 - - uid: 25267 + - uid: 25961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-0.5 + pos: 16.5,29.5 parent: 2 - - uid: 25268 + - uid: 25962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-11.5 + pos: -90.5,28.5 parent: 2 - - uid: 25269 + - uid: 25963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-11.5 + pos: -75.5,13.5 parent: 2 - - uid: 25270 + - uid: 25964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,2.5 + pos: -77.5,16.5 parent: 2 - - uid: 25271 + - uid: 25965 components: - type: Transform - pos: 49.5,2.5 + pos: -74.5,17.5 parent: 2 - - uid: 25272 + - uid: 42940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,3.5 - parent: 2 - - uid: 25273 + pos: 56.5,82.5 + parent: 40599 + - uid: 42941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 2 - - uid: 25274 + pos: 53.5,78.5 + parent: 40599 + - uid: 42942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-1.5 - parent: 2 - - uid: 25275 + pos: 49.5,77.5 + parent: 40599 + - uid: 42943 + components: + - type: Transform + pos: 55.5,74.5 + parent: 40599 + - uid: 42944 + components: + - type: Transform + pos: 60.5,82.5 + parent: 40599 + - uid: 42945 + components: + - type: Transform + pos: 45.5,28.5 + parent: 40599 + - uid: 42946 + components: + - type: Transform + pos: 41.5,25.5 + parent: 40599 + - uid: 42947 + components: + - type: Transform + pos: 47.5,26.5 + parent: 40599 + - uid: 47096 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,3.5 - parent: 2 - - uid: 25276 + pos: 3.5,-9.5 + parent: 46943 + - uid: 47097 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,3.5 - parent: 2 - - uid: 25277 + pos: 4.5,-6.5 + parent: 46943 + - uid: 47098 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,37.5 - parent: 2 - - uid: 25278 + pos: -2.5,-8.5 + parent: 46943 + - uid: 47099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 2 - - uid: 25279 + pos: 2.5,-0.5 + parent: 46943 + - uid: 47100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,38.5 + pos: -0.5,-10.5 + parent: 46943 + - uid: 47101 + components: + - type: Transform + pos: 4.5,2.5 + parent: 46943 + - uid: 47102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 46943 +- proto: RandomSpawner100 + entities: + - uid: 25966 + components: + - type: Transform + pos: -116.5,-0.5 parent: 2 - - uid: 25280 + - uid: 25967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,37.5 + pos: -115.5,-0.5 parent: 2 - - uid: 25281 + - uid: 25968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,38.5 + pos: 36.5,-38.5 parent: 2 - - uid: 25282 + - uid: 25969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,37.5 + pos: 40.5,-39.5 parent: 2 - - uid: 25283 + - uid: 25970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,36.5 + pos: 37.5,-36.5 parent: 2 - - uid: 25284 + - uid: 25971 components: - type: Transform - pos: 22.5,36.5 + pos: 35.5,-34.5 parent: 2 - - uid: 25285 + - uid: 25972 components: - type: Transform - pos: 52.5,20.5 + pos: 38.5,-41.5 parent: 2 - - uid: 25286 + - uid: 25973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 + pos: 35.5,-40.5 parent: 2 - - uid: 25287 + - uid: 25974 components: - type: Transform - pos: 14.5,31.5 + pos: 31.5,-38.5 parent: 2 - - uid: 25288 + - uid: 25975 components: - type: Transform - pos: 17.5,31.5 + pos: 22.5,-42.5 parent: 2 - - uid: 25289 + - uid: 25976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,19.5 + pos: 19.5,-33.5 parent: 2 - - uid: 25290 + - uid: 25977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,31.5 + pos: 17.5,-46.5 parent: 2 - - uid: 25291 + - uid: 25978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,21.5 + pos: 22.5,-53.5 parent: 2 - - uid: 25292 + - uid: 25979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,31.5 + pos: -1.5,-56.5 parent: 2 - - uid: 25293 + - uid: 25980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,32.5 + pos: -10.5,-54.5 parent: 2 - - uid: 25294 + - uid: 25981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,18.5 + pos: -5.5,19.5 parent: 2 - - uid: 25295 + - uid: 25982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,32.5 + pos: 34.5,27.5 parent: 2 - - uid: 25296 + - uid: 25983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,19.5 + pos: 8.5,64.5 parent: 2 - - uid: 25297 + - uid: 25984 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,21.5 + pos: 5.5,57.5 parent: 2 - - uid: 25298 + - uid: 25985 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,32.5 + pos: 17.5,56.5 parent: 2 - - uid: 25299 + - uid: 25986 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,1.5 + pos: 15.5,58.5 parent: 2 - - uid: 25300 + - uid: 25987 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,1.5 + pos: 8.5,61.5 parent: 2 - - uid: 25301 + - uid: 25988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,1.5 + pos: 10.5,57.5 parent: 2 - - uid: 25302 + - uid: 25989 components: - type: Transform - pos: 10.5,0.5 + rot: 3.141592653589793 rad + pos: 13.5,60.5 parent: 2 - - uid: 25303 + - uid: 25990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 + rot: 3.141592653589793 rad + pos: 17.5,61.5 parent: 2 - - uid: 25304 + - uid: 25991 components: - type: Transform - pos: 3.5,12.5 + pos: 24.5,56.5 parent: 2 - - uid: 25305 + - uid: 25992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,14.5 + pos: 15.5,50.5 parent: 2 - - uid: 25306 + - uid: 25993 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,14.5 + pos: 11.5,53.5 parent: 2 - - uid: 25307 + - uid: 25994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-40.5 + pos: 18.5,58.5 parent: 2 - - uid: 25308 + - uid: 25995 components: - type: Transform - pos: -10.5,-44.5 + pos: 14.5,54.5 parent: 2 - - uid: 25309 + - uid: 25996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-46.5 + pos: 19.5,56.5 parent: 2 - - uid: 25310 + - uid: 25997 components: - type: Transform - pos: -10.5,-50.5 + pos: 17.5,62.5 parent: 2 - - uid: 25311 + - uid: 25998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-40.5 + pos: 24.5,61.5 parent: 2 - - uid: 25312 + - uid: 25999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-44.5 + pos: 27.5,59.5 parent: 2 - - uid: 25313 + - uid: 26000 components: - type: Transform - pos: -7.5,-44.5 + pos: 29.5,52.5 parent: 2 - - uid: 25314 + - uid: 26001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-46.5 + pos: 22.5,52.5 parent: 2 - - uid: 25315 + - uid: 26002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-46.5 + pos: -28.5,-7.5 parent: 2 - - uid: 25316 + - uid: 26003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-50.5 + pos: -36.5,-65.5 parent: 2 - - uid: 25317 + - uid: 26004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-14.5 + pos: 96.5,-45.5 parent: 2 - - uid: 25318 + - uid: 26005 components: - type: Transform - pos: 16.5,-19.5 + pos: 101.5,-46.5 parent: 2 - - uid: 25319 + - uid: 26006 components: - type: Transform - pos: -2.5,-15.5 + pos: 99.5,-43.5 parent: 2 - - uid: 25320 + - uid: 26007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + pos: 100.5,-40.5 parent: 2 - - uid: 25321 + - uid: 26008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-14.5 + pos: 98.5,-40.5 parent: 2 - - uid: 25322 + - uid: 26009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 77.5,-31.5 + pos: 97.5,-43.5 parent: 2 - - uid: 25323 + - uid: 26010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-20.5 + pos: -117.5,-1.5 parent: 2 - - uid: 25324 + - uid: 26011 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-10.5 + pos: -91.5,26.5 parent: 2 - - uid: 25325 + - uid: 26012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,51.5 + pos: -87.5,27.5 parent: 2 - - uid: 25326 + - uid: 42948 components: - type: Transform - pos: -1.5,48.5 - parent: 2 - - uid: 25327 + pos: 51.5,79.5 + parent: 40599 + - uid: 42949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,51.5 - parent: 2 - - uid: 25328 + pos: 62.5,79.5 + parent: 40599 + - uid: 42950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,48.5 - parent: 2 - - uid: 25329 + pos: 68.5,39.5 + parent: 40599 + - uid: 42951 components: - type: Transform - pos: -15.5,48.5 - parent: 2 - - uid: 25330 + pos: 67.5,41.5 + parent: 40599 + - uid: 42952 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,54.5 - parent: 2 - - uid: 25331 + pos: 40.5,35.5 + parent: 40599 + - uid: 42953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,54.5 - parent: 2 - - uid: 25332 + pos: 45.5,25.5 + parent: 40599 + - uid: 42954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,48.5 - parent: 2 - - uid: 25333 + pos: 43.5,27.5 + parent: 40599 + - uid: 42955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 90.5,-10.5 - parent: 2 - - uid: 25334 + pos: 46.5,23.5 + parent: 40599 + - uid: 42956 components: - type: Transform - pos: 90.5,-20.5 + pos: 38.5,36.5 + parent: 40599 + - uid: 47103 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 46943 + - uid: 47104 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 46943 + - uid: 47306 + components: + - type: Transform + pos: 2.5,0.5 + parent: 47245 +- proto: RandomVending + entities: + - uid: 26013 + components: + - type: Transform + pos: 21.5,-38.5 parent: 2 - - uid: 25335 + - uid: 26014 components: - type: Transform - pos: -123.5,9.5 + pos: -9.5,2.5 parent: 2 - - uid: 25336 + - uid: 26015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,4.5 + pos: -1.5,-40.5 parent: 2 - - uid: 25337 + - uid: 26016 components: - type: Transform - pos: 68.5,-44.5 + pos: 14.5,2.5 parent: 2 - - uid: 25338 + - uid: 26017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-37.5 + pos: 69.5,-7.5 parent: 2 - - uid: 25339 + - uid: 26018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-44.5 + pos: 80.5,-27.5 parent: 2 - - uid: 25340 +- proto: RandomVendingDrinks + entities: + - uid: 26019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-43.5 + pos: -17.5,-17.5 parent: 2 - - uid: 25341 + - uid: 26020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-43.5 + pos: 28.5,-29.5 parent: 2 - - uid: 25342 + - uid: 26021 components: - type: Transform - pos: 65.5,-44.5 + pos: 23.5,61.5 parent: 2 - - uid: 25343 + - uid: 26022 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-37.5 + pos: 57.5,-4.5 parent: 2 - - uid: 25344 + - uid: 26023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-38.5 + pos: -3.5,-4.5 parent: 2 - - uid: 25345 + - uid: 26024 components: - type: Transform - pos: 65.5,-38.5 + pos: 20.5,28.5 parent: 2 - - uid: 25346 + - uid: 26025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-37.5 + pos: 7.5,28.5 parent: 2 - - uid: 25347 + - uid: 26026 components: - - type: MetaData - desc: Стань тем самым турникменом. - name: турник - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,8.5 + pos: 16.5,-50.5 parent: 2 - - uid: 25348 + - uid: 26027 components: - - type: MetaData - desc: Стань тем самым турникменом. - name: турник - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,10.5 + pos: 21.5,-54.5 parent: 2 - - uid: 25349 + - uid: 26028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,26.5 + pos: 14.5,16.5 parent: 2 - - uid: 25350 + - uid: 26029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,23.5 + pos: -9.5,15.5 parent: 2 - - uid: 25351 + - uid: 26030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-19.5 + pos: -3.5,-40.5 parent: 2 - - uid: 25352 + - uid: 26031 components: - type: Transform - pos: -24.5,-19.5 + pos: 1.5,49.5 parent: 2 - - uid: 25353 + - uid: 26032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-18.5 + pos: -46.5,0.5 parent: 2 - - uid: 25354 + - uid: 26033 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-30.5 + pos: 24.5,40.5 parent: 2 - - uid: 25355 + - uid: 26034 components: - type: Transform - pos: -20.5,-6.5 + pos: 69.5,-36.5 parent: 2 - - uid: 25356 + - uid: 26035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-6.5 + pos: -95.5,1.5 parent: 2 - - uid: 25357 +- proto: RandomVendingSnacks + entities: + - uid: 26036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-11.5 + pos: -17.5,-16.5 parent: 2 - - uid: 25358 + - uid: 26037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 + pos: 23.5,60.5 parent: 2 - - uid: 42493 + - uid: 26038 components: - type: Transform - pos: 64.5,54.5 - parent: 40203 - - uid: 42494 + pos: -2.5,-40.5 + parent: 2 + - uid: 26039 components: - type: Transform - pos: 59.5,75.5 - parent: 40203 - - uid: 42495 + pos: 20.5,29.5 + parent: 2 + - uid: 26040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,76.5 - parent: 40203 - - uid: 42496 + pos: -3.5,-2.5 + parent: 2 + - uid: 26041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,74.5 - parent: 40203 - - uid: 42497 + pos: 7.5,29.5 + parent: 2 + - uid: 26042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,75.5 - parent: 40203 - - uid: 42498 + pos: 21.5,-52.5 + parent: 2 + - uid: 26043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,74.5 - parent: 40203 - - uid: 42499 + pos: 14.5,15.5 + parent: 2 + - uid: 26044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,51.5 - parent: 40203 - - uid: 42500 + pos: -9.5,16.5 + parent: 2 + - uid: 26045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,51.5 - parent: 40203 - - uid: 42501 + pos: 2.5,49.5 + parent: 2 + - uid: 26046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,76.5 - parent: 40203 - - uid: 42502 + pos: 2.5,49.5 + parent: 2 + - uid: 26047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,74.5 - parent: 40203 - - uid: 42503 + pos: 28.5,-28.5 + parent: 2 + - uid: 26048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,76.5 - parent: 40203 - - uid: 42504 + pos: -46.5,6.5 + parent: 2 + - uid: 26049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,76.5 - parent: 40203 - - uid: 42505 + pos: 68.5,-36.5 + parent: 2 + - uid: 26050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,76.5 - parent: 40203 - - uid: 42506 + pos: -96.5,1.5 + parent: 2 +- proto: ReagentContainerCornmeal + entities: + - uid: 26051 components: + - type: MetaData + desc: Лучший корм для лучших крабиков! + name: корм для крабов - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,74.5 - parent: 40203 - - uid: 42507 + pos: -3.3616,-56.43843 + parent: 2 + - uid: 26052 components: + - type: MetaData + desc: Лучший корм для лучших крабиков! + name: корм для крабов - type: Transform - pos: 50.5,74.5 - parent: 40203 - - uid: 42508 + pos: 24.233582,17.931705 + parent: 2 +- proto: ReagentContainerCornmealSmall + entities: + - uid: 26053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,69.5 - parent: 40203 - - uid: 42509 + pos: 26.330297,35.18314 + parent: 2 + - uid: 26054 components: + - type: MetaData + desc: Лучший корм для лучших котиков! + name: корм для котиков - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,69.5 - parent: 40203 - - uid: 42510 + pos: -14.830851,60.537964 + parent: 2 + - uid: 26055 components: + - type: MetaData + desc: Лучший корм для лучших котиков! + name: корм для кошек - type: Transform - pos: 68.5,66.5 - parent: 40203 - - uid: 42511 + pos: 24.20889,17.5243 + parent: 2 +- proto: ReagentContainerFlour + entities: + - uid: 26056 components: + - type: MetaData + desc: Лучший корм для лучших собак! + name: корм для собак - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,66.5 - parent: 40203 - - uid: 42512 + pos: 24.726774,17.92999 + parent: 2 +- proto: ReagentContainerFlourSmall + entities: + - uid: 26057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,66.5 - parent: 40203 - - uid: 42513 + pos: 26.658422,35.167515 + parent: 2 + - uid: 26058 components: + - type: MetaData + desc: Лучший корм для лучших грызунов! + name: корм для грызунов - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,36.5 - parent: 40203 - - uid: 42514 + pos: 24.702082,17.473202 + parent: 2 +- proto: ReagentContainerRice + entities: + - uid: 26059 components: + - type: MetaData + desc: Большой мешок корма для собак. Отлично подходит для пухленьких пушистых собачек! + name: корм для собак - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,36.5 - parent: 40203 - - uid: 42515 + pos: -43.392117,-16.423685 + parent: 2 + missingComponents: + - SolutionContainerManager + - SolutionTransfer + - DrawableSolution + - RefillableSolution + - DrainableSolution + - Drink +- proto: Recycler + entities: + - uid: 26060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,37.5 - parent: 40203 - - uid: 42516 + rot: 1.5707963267948966 rad + pos: 73.5,-34.5 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 26061 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,37.5 - parent: 40203 - - uid: 42517 + pos: 102.5,-40.5 + parent: 2 + - uid: 26062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,33.5 - parent: 40203 - - uid: 42518 + pos: 15.5,63.5 + parent: 2 + - uid: 26063 components: - type: Transform - pos: 74.5,33.5 - parent: 40203 - - uid: 45788 + pos: 15.5,55.5 + parent: 2 + - uid: 26064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 44970 - - uid: 45789 + pos: 15.5,52.5 + parent: 2 + - uid: 26065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 44970 - - uid: 45790 + pos: 9.5,59.5 + parent: 2 + - uid: 26066 components: - type: Transform - pos: 6.5,5.5 - parent: 44970 - - uid: 45791 + pos: 11.5,65.5 + parent: 2 + - uid: 26067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 44970 - - uid: 45792 + pos: 17.5,59.5 + parent: 2 + - uid: 42957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 44970 - - uid: 45793 + rot: 1.5707963267948966 rad + pos: 58.5,66.5 + parent: 40599 + - uid: 42958 components: - type: Transform - pos: -3.5,-0.5 - parent: 44970 - - uid: 45794 + rot: 1.5707963267948966 rad + pos: 58.5,65.5 + parent: 40599 + - uid: 42959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 44970 - - uid: 45795 + rot: 1.5707963267948966 rad + pos: 62.5,65.5 + parent: 40599 + - uid: 42960 components: - type: Transform - pos: -5.5,-0.5 - parent: 44970 - - uid: 45796 + rot: 1.5707963267948966 rad + pos: 61.5,66.5 + parent: 40599 + - uid: 42961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 44970 - - uid: 45797 + pos: 34.5,73.5 + parent: 40599 + - uid: 47307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 44970 -- proto: RailingRound + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 47245 +- proto: ReinforcedPlasmaWindow entities: - - uid: 25359 + - uid: 26068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-1.5 + pos: -6.5,-67.5 parent: 2 - - uid: 25360 + - uid: 26069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,3.5 + pos: -1.5,-67.5 parent: 2 - - uid: 25361 + - uid: 26070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 + pos: -17.5,-54.5 parent: 2 - - uid: 25362 + - uid: 26071 components: - type: Transform - pos: -9.5,-28.5 + pos: -17.5,-53.5 parent: 2 - - uid: 25363 + - uid: 26072 components: - - type: MetaData - name: корзина для баскетбола - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,7.5 + pos: -18.5,-56.5 parent: 2 -- proto: RandomArtifactSpawner - entities: - - uid: 25364 + - uid: 26073 components: - type: Transform - pos: 46.5,-58.5 + pos: -22.5,-57.5 parent: 2 -- proto: RandomBoard - entities: - - uid: 25365 + - uid: 26074 components: - type: Transform - pos: 96.5,-36.5 + pos: -22.5,-62.5 parent: 2 -- proto: RandomCargoCorpseSpawner - entities: - - uid: 45798 + - uid: 26075 components: - type: Transform - pos: -1.5,2.5 - parent: 44970 - - uid: 45799 + pos: -22.5,-63.5 + parent: 2 + - uid: 26076 components: - type: Transform - pos: -1.5,11.5 - parent: 44970 -- proto: RandomCommandCorpseSpawner - entities: - - uid: 45800 + pos: -3.5,-67.5 + parent: 2 + - uid: 26077 components: - type: Transform - pos: 4.5,16.5 - parent: 44970 -- proto: RandomDrinkBottle - entities: - - uid: 25366 + pos: -5.5,-67.5 + parent: 2 + - uid: 26078 components: - type: Transform - pos: 92.5,-15.5 + pos: -22.5,-58.5 parent: 2 - - uid: 25367 + - uid: 26079 components: - type: Transform - pos: -3.5,-47.5 + pos: -2.5,-67.5 parent: 2 - - uid: 25368 + - uid: 26080 components: - type: Transform - pos: 21.5,-49.5 + pos: -19.5,-56.5 parent: 2 - - uid: 25369 + - uid: 26081 components: - type: Transform - pos: 35.5,-53.5 + pos: -22.5,-59.5 parent: 2 - - uid: 25370 + - uid: 26082 components: - type: Transform - pos: -22.5,65.5 + pos: -22.5,-61.5 parent: 2 - - uid: 42519 + - uid: 26083 components: - type: Transform - pos: 59.5,77.5 - parent: 40203 -- proto: RandomDrinkGlass - entities: - - uid: 25371 + pos: -7.5,-67.5 + parent: 2 + - uid: 26084 components: - type: Transform - pos: -4.5,-44.5 + pos: -9.5,-67.5 parent: 2 - - uid: 25372 + - uid: 26085 components: - type: Transform - pos: 40.5,21.5 + pos: -10.5,-67.5 parent: 2 - - uid: 25373 + - uid: 26086 components: - type: Transform - pos: 40.5,19.5 + pos: -11.5,-67.5 parent: 2 - - uid: 25374 + - uid: 26087 components: - type: Transform - pos: 94.5,-16.5 + pos: -13.5,-67.5 parent: 2 - - uid: 42520 + - uid: 26088 components: - type: Transform - pos: 79.5,35.5 - parent: 40203 -- proto: RandomEngineerCorpseSpawner - entities: - - uid: 42521 + pos: -14.5,-67.5 + parent: 2 + - uid: 26089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,52.5 - parent: 40203 - - uid: 42522 + pos: -15.5,-67.5 + parent: 2 + - uid: 26090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,55.5 - parent: 40203 - - uid: 42523 + pos: -17.5,-67.5 + parent: 2 + - uid: 26091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,78.5 - parent: 40203 - - uid: 42524 + pos: -18.5,-67.5 + parent: 2 + - uid: 26092 components: - type: Transform - pos: 47.5,30.5 - parent: 40203 - - uid: 42525 + pos: -19.5,-67.5 + parent: 2 + - uid: 26093 components: - type: Transform - pos: 48.5,41.5 - parent: 40203 - - uid: 42526 + pos: 45.5,-56.5 + parent: 2 + - uid: 26094 components: - type: Transform - pos: 51.5,35.5 - parent: 40203 - - uid: 42527 + pos: 47.5,-56.5 + parent: 2 + - uid: 26095 components: - type: Transform - pos: 55.5,41.5 - parent: 40203 - - uid: 42528 + pos: 52.5,-56.5 + parent: 2 + - uid: 26096 components: - type: Transform - pos: 46.5,20.5 - parent: 40203 - - uid: 42529 + pos: 50.5,-56.5 + parent: 2 + - uid: 26097 components: - type: Transform - pos: 68.5,25.5 - parent: 40203 -- proto: RandomFoodBakedSingle - entities: - - uid: 25375 + pos: -23.5,20.5 + parent: 2 + - uid: 26098 components: - type: Transform - pos: 24.5,27.5 + pos: -23.5,18.5 parent: 2 - - uid: 25376 + - uid: 26099 components: - type: Transform - pos: 33.5,20.5 + rot: -1.5707963267948966 rad + pos: -19.5,18.5 parent: 2 - - uid: 25377 + - uid: 26100 components: - type: Transform - pos: 93.5,-16.5 + rot: 3.141592653589793 rad + pos: 29.5,-50.5 parent: 2 -- proto: RandomFoodBakedWhole - entities: - - uid: 25378 + - uid: 26101 components: - type: Transform - pos: 28.5,30.5 + rot: 3.141592653589793 rad + pos: 28.5,-50.5 parent: 2 -- proto: RandomFoodMeal - entities: - - uid: 25379 + - uid: 26102 components: - type: Transform - pos: -49.5,5.5 + rot: 3.141592653589793 rad + pos: 27.5,-50.5 parent: 2 - - uid: 25380 + - uid: 26103 components: - type: Transform - pos: -4.5,-46.5 + rot: 3.141592653589793 rad + pos: 22.5,-25.5 parent: 2 - - uid: 25381 + - uid: 26104 components: - type: Transform - pos: -3.5,-43.5 + rot: 3.141592653589793 rad + pos: 25.5,-29.5 parent: 2 - - uid: 25382 + - uid: 26105 components: - type: Transform - pos: 26.5,34.5 + rot: 3.141592653589793 rad + pos: 23.5,-25.5 parent: 2 - - uid: 25383 + - uid: 42962 components: - type: Transform - pos: 16.5,-48.5 - parent: 2 - - uid: 25384 + pos: 39.5,62.5 + parent: 40599 + - uid: 42963 components: - type: Transform - pos: 29.5,-51.5 - parent: 2 - - uid: 25385 + pos: 39.5,61.5 + parent: 40599 + - uid: 42964 components: - type: Transform - pos: 29.5,24.5 - parent: 2 - - uid: 25386 + pos: 39.5,60.5 + parent: 40599 + - uid: 42965 components: - type: Transform - pos: 40.5,-45.5 - parent: 2 - - uid: 25387 + pos: 70.5,60.5 + parent: 40599 + missingComponents: + - Damageable + - Destructible + - RCDDeconstructable + - uid: 42966 components: - type: Transform - pos: 78.5,-9.5 - parent: 2 - - uid: 25388 + rot: 1.5707963267948966 rad + pos: 65.5,61.5 + parent: 40599 + - uid: 42967 components: - type: Transform - pos: 81.5,-9.5 - parent: 2 - - uid: 25389 + rot: 1.5707963267948966 rad + pos: 65.5,63.5 + parent: 40599 + - uid: 47308 + components: + - type: Transform + pos: 0.5,2.5 + parent: 47245 + - uid: 47309 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,-10.5 - parent: 2 - - uid: 25390 + pos: -1.5,1.5 + parent: 47245 + - uid: 47310 components: - type: Transform - pos: 69.5,-20.5 - parent: 2 - - uid: 25391 + rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 47245 +- proto: ReinforcedPlasmaWindowDiagonal + entities: + - uid: 47311 components: - type: Transform - pos: 81.5,-21.5 - parent: 2 - - uid: 25392 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 47245 + - uid: 47312 components: - type: Transform - pos: -50.5,2.5 - parent: 2 - - uid: 25393 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 47245 +- proto: ReinforcedShiv + entities: + - uid: 15496 components: - type: Transform - pos: -115.5,5.5 - parent: 2 - - uid: 25394 + parent: 15493 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26106 components: - type: Transform - pos: -114.5,3.5 + rot: 1.5707963267948966 rad + pos: 94.22693,3.6326761 parent: 2 - - uid: 42530 + - uid: 26107 components: - type: Transform - pos: 73.5,79.5 - parent: 40203 - - uid: 42531 + rot: -1.5707963267948966 rad + pos: 98.86755,6.413926 + parent: 2 + - uid: 42968 components: - type: Transform - pos: 79.5,36.5 - parent: 40203 -- proto: RandomFoodSingle + rot: -1.6580627893946132 rad + pos: 50.89437,61.25232 + parent: 40599 +- proto: ReinforcedUraniumWindow entities: - - uid: 25395 + - uid: 26108 components: - type: Transform - pos: 28.5,-32.5 + rot: -1.5707963267948966 rad + pos: -21.5,-39.5 parent: 2 -- proto: RandomMedicCorpseSpawner - entities: - - uid: 42532 - components: - - type: Transform - pos: 60.5,62.5 - parent: 40203 - - uid: 42533 + - uid: 26109 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,60.5 - parent: 40203 - - uid: 42534 + pos: -19.5,-39.5 + parent: 2 + - uid: 26110 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,29.5 - parent: 40203 -- proto: RandomPainting - entities: - - uid: 25396 + pos: -23.5,-39.5 + parent: 2 + - uid: 26111 components: - type: Transform - pos: -45.5,-13.5 + pos: 35.5,-37.5 parent: 2 - - uid: 25397 + - uid: 26112 components: - type: Transform - pos: -43.5,5.5 + rot: 1.5707963267948966 rad + pos: 14.5,51.5 parent: 2 - - uid: 25398 + - uid: 26113 components: - type: Transform - pos: -6.5,17.5 + rot: 1.5707963267948966 rad + pos: 12.5,53.5 parent: 2 - - uid: 42535 + - uid: 26114 components: - type: Transform - pos: 74.5,80.5 - parent: 40203 -- proto: RandomPosterAny - entities: - - uid: 25399 + rot: 1.5707963267948966 rad + pos: 8.5,62.5 + parent: 2 + - uid: 26115 components: - type: Transform - pos: -35.5,20.5 + rot: 1.5707963267948966 rad + pos: 10.5,62.5 parent: 2 - - uid: 25400 + - uid: 26116 components: - type: Transform - pos: 2.5,35.5 + rot: 1.5707963267948966 rad + pos: 12.5,62.5 parent: 2 - - uid: 25401 + - uid: 26117 components: - type: Transform - pos: 6.5,31.5 + rot: 1.5707963267948966 rad + pos: 14.5,62.5 parent: 2 - - uid: 25402 +- proto: ReinforcedWindow + entities: + - uid: 26118 components: - type: Transform - pos: 15.5,42.5 + pos: -14.5,4.5 parent: 2 - - uid: 25403 + - uid: 26119 components: - type: Transform - pos: 29.5,40.5 + rot: 1.5707963267948966 rad + pos: 103.5,-33.5 parent: 2 - - uid: 25404 + - uid: 26120 components: - type: Transform - pos: 21.5,44.5 + pos: 97.5,-12.5 parent: 2 - - uid: 25405 + - uid: 26121 components: - type: Transform - pos: 6.5,40.5 + pos: 96.5,-12.5 parent: 2 - - uid: 25406 + - uid: 26122 components: - type: Transform - pos: 23.5,44.5 + pos: -6.5,-41.5 parent: 2 - - uid: 25407 + - uid: 26123 components: - type: Transform - pos: 27.5,35.5 + rot: 3.141592653589793 rad + pos: -111.5,21.5 parent: 2 - - uid: 25408 + - uid: 26124 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-42.5 + pos: -111.5,20.5 parent: 2 - - uid: 25409 + - uid: 26125 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-47.5 + pos: -111.5,19.5 parent: 2 - - uid: 25410 + - uid: 26126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 86.5,-45.5 + rot: 1.5707963267948966 rad + pos: 67.5,-28.5 parent: 2 - - uid: 25411 + - uid: 26127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 71.5,-48.5 + rot: 1.5707963267948966 rad + pos: 0.5,38.5 parent: 2 - - uid: 25412 + - uid: 26128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-35.5 + rot: 1.5707963267948966 rad + pos: 15.5,10.5 parent: 2 - - uid: 25413 + - uid: 26129 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.5,-50.5 + pos: -11.5,52.5 parent: 2 - - uid: 25414 + - uid: 26130 components: - type: Transform - pos: 8.5,43.5 + pos: -3.5,56.5 parent: 2 - - uid: 25415 + - uid: 26131 components: - type: Transform - pos: -31.5,24.5 + pos: -51.5,10.5 parent: 2 - - uid: 25416 + - uid: 26132 components: - type: Transform - pos: -47.5,25.5 + pos: -51.5,12.5 parent: 2 - - uid: 25417 + - uid: 26133 components: - type: Transform - pos: -42.5,22.5 + pos: 2.5,-3.5 parent: 2 - - uid: 25418 + - uid: 26134 components: - type: Transform - pos: -35.5,27.5 + pos: 3.5,-3.5 parent: 2 - - uid: 25419 + - uid: 26135 components: - type: Transform - pos: -28.5,28.5 + pos: -1.5,-2.5 parent: 2 -- proto: RandomPosterContraband - entities: - - uid: 25420 + - uid: 26136 components: - type: Transform - pos: -20.5,13.5 + pos: -20.5,-62.5 parent: 2 - - uid: 25421 + - uid: 26137 components: - type: Transform - pos: -9.5,55.5 + pos: -1.5,-65.5 parent: 2 - - uid: 25422 + - uid: 26138 components: - type: Transform - pos: -37.5,-20.5 + pos: -20.5,-57.5 parent: 2 - - uid: 25423 + - uid: 26139 components: - type: Transform - pos: -38.5,27.5 + pos: -6.5,-65.5 parent: 2 - - uid: 25424 + - uid: 26140 components: - type: Transform - pos: -31.5,31.5 + pos: -7.5,-65.5 parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 25425 + - uid: 26141 components: - type: Transform - pos: -31.5,-10.5 + pos: -20.5,-59.5 parent: 2 - - uid: 25426 + - uid: 26142 components: - type: Transform - pos: -35.5,0.5 + pos: -20.5,-61.5 parent: 2 - - uid: 25427 + - uid: 26143 components: - type: Transform - pos: -18.5,-15.5 + pos: -20.5,-63.5 parent: 2 - - uid: 25428 + - uid: 26144 components: - type: Transform - pos: -11.5,-53.5 + pos: -14.5,-65.5 parent: 2 - - uid: 25429 + - uid: 26145 components: - type: Transform - pos: 25.5,55.5 + pos: -13.5,-65.5 parent: 2 - - uid: 25430 + - uid: 26146 components: - type: Transform - pos: 23.5,59.5 + pos: -15.5,-65.5 parent: 2 - - uid: 25431 + - uid: 26147 components: - type: Transform - pos: 16.5,55.5 + pos: -17.5,-65.5 parent: 2 - - uid: 25432 + - uid: 26148 components: - type: Transform - pos: -3.5,-34.5 + pos: -20.5,-58.5 parent: 2 - - uid: 25433 + - uid: 26149 components: - type: Transform - pos: -11.5,-34.5 + pos: -9.5,-65.5 parent: 2 - - uid: 25434 + - uid: 26150 components: - type: Transform - pos: 4.5,-39.5 + pos: -11.5,-65.5 parent: 2 - - uid: 25435 + - uid: 26151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-40.5 + pos: -10.5,-65.5 parent: 2 - - uid: 25436 + - uid: 26152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-46.5 + pos: -2.5,-65.5 parent: 2 - - uid: 25437 + - uid: 26153 components: - type: Transform - pos: 30.5,-55.5 + pos: -3.5,-65.5 parent: 2 - - uid: 25438 + - uid: 26154 components: - type: Transform - pos: 0.5,51.5 + pos: -5.5,-65.5 parent: 2 - - uid: 25439 + - uid: 26155 components: - type: Transform - pos: -19.5,-47.5 + rot: -1.5707963267948966 rad + pos: -9.5,20.5 parent: 2 -- proto: RandomScienceCorpseSpawner - entities: - - uid: 42536 + - uid: 26156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,69.5 - parent: 40203 - - uid: 42537 + rot: -1.5707963267948966 rad + pos: 3.5,-60.5 + parent: 2 + - uid: 26157 components: - type: Transform - pos: 56.5,38.5 - parent: 40203 - - uid: 42538 + rot: -1.5707963267948966 rad + pos: 0.5,-65.5 + parent: 2 + - uid: 26158 components: - type: Transform - pos: 52.5,43.5 - parent: 40203 - - uid: 42539 + pos: 76.5,-49.5 + parent: 2 + - uid: 26159 components: - type: Transform - pos: 29.5,26.5 - parent: 40203 - - uid: 42540 + rot: -1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 2 + - uid: 26160 components: - type: Transform - pos: 80.5,29.5 - parent: 40203 - - uid: 42541 + rot: -1.5707963267948966 rad + pos: -8.5,-39.5 + parent: 2 + - uid: 26161 components: - type: Transform - pos: 55.5,35.5 - parent: 40203 -- proto: RandomSecurityCorpseSpawner - entities: - - uid: 42542 + rot: -1.5707963267948966 rad + pos: 2.5,-65.5 + parent: 2 + - uid: 26162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,68.5 - parent: 40203 - - uid: 42543 + pos: -22.5,2.5 + parent: 2 + - uid: 26163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,76.5 - parent: 40203 - - uid: 42544 + rot: -1.5707963267948966 rad + pos: 3.5,-59.5 + parent: 2 + - uid: 26164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,74.5 - parent: 40203 -- proto: RandomServiceCorpseSpawner - entities: - - uid: 42545 + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - uid: 26165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,68.5 - parent: 40203 -- proto: RandomSoap - entities: - - uid: 25440 + rot: -1.5707963267948966 rad + pos: 3.5,-62.5 + parent: 2 + - uid: 26166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,32.5 + pos: -19.5,2.5 parent: 2 - - uid: 25441 + - uid: 26167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,32.5 + rot: -1.5707963267948966 rad + pos: 3.5,-61.5 parent: 2 - - uid: 25442 + - uid: 26168 components: - type: Transform - pos: 40.5,-31.5 + pos: -20.5,2.5 parent: 2 - - uid: 25443 + - uid: 26169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-49.5 + rot: -1.5707963267948966 rad + pos: 3.5,-63.5 parent: 2 - - uid: 25444 + - uid: 26170 components: - type: Transform - pos: 97.5,6.5 + pos: 71.5,-41.5 parent: 2 - - uid: 25445 + - uid: 26171 components: - type: Transform - pos: 69.5,-32.5 + rot: -1.5707963267948966 rad + pos: -0.5,-50.5 parent: 2 -- proto: RandomSpawner - entities: - - uid: 25446 + - uid: 26172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 94.5,-41.5 + pos: -0.5,-47.5 parent: 2 - - uid: 25447 + - uid: 26173 components: - type: Transform - pos: -14.5,-52.5 + rot: -1.5707963267948966 rad + pos: -0.5,-46.5 parent: 2 - - uid: 25448 + - uid: 26174 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,46.5 + pos: 3.5,-58.5 parent: 2 - - uid: 25449 + - uid: 26175 components: - type: Transform - pos: -30.5,5.5 + pos: -3.5,4.5 parent: 2 - - uid: 25450 + - uid: 26176 components: - type: Transform - pos: -29.5,-2.5 + pos: -1.5,4.5 parent: 2 - - uid: 25451 + - uid: 26177 components: - type: Transform - pos: -47.5,-3.5 + pos: 8.5,4.5 parent: 2 - - uid: 25452 + - uid: 26178 components: - type: Transform - pos: -55.5,12.5 + pos: 7.5,4.5 parent: 2 - - uid: 25453 + - uid: 26179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,7.5 + pos: -0.5,5.5 parent: 2 - - uid: 25454 + - uid: 26180 components: - type: Transform - pos: 44.5,-43.5 + pos: 6.5,4.5 parent: 2 - - uid: 25455 + - uid: 26181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-40.5 + pos: 0.5,5.5 parent: 2 - - uid: 25456 + - uid: 26182 components: - type: Transform - pos: 38.5,-42.5 + pos: 5.5,5.5 parent: 2 - - uid: 25457 + - uid: 26183 components: - type: Transform - pos: 44.5,-38.5 + pos: 1.5,6.5 parent: 2 - - uid: 25458 + - uid: 26184 components: - type: Transform - pos: 43.5,-41.5 + pos: 3.5,6.5 parent: 2 - - uid: 25459 + - uid: 26185 components: - type: Transform - pos: 89.5,-42.5 + pos: 2.5,6.5 parent: 2 - - uid: 25460 + - uid: 26186 components: - type: Transform - pos: 91.5,-36.5 + pos: 4.5,5.5 parent: 2 - - uid: 25461 + - uid: 26187 components: - type: Transform - pos: 92.5,-37.5 + pos: 3.5,-7.5 parent: 2 - - uid: 25462 + - uid: 26188 components: - type: Transform - pos: 95.5,-35.5 + pos: 2.5,-7.5 parent: 2 - - uid: 25463 + - uid: 26189 components: - type: Transform - pos: 95.5,-37.5 + pos: 1.5,-7.5 parent: 2 - - uid: 25464 + - uid: 26190 components: - type: Transform - pos: 90.5,-43.5 + pos: 71.5,-38.5 parent: 2 - - uid: 25465 + - uid: 26191 components: - type: Transform - pos: 92.5,-39.5 + pos: 78.5,-49.5 parent: 2 - - uid: 25466 + - uid: 26192 components: - type: Transform - pos: 93.5,-40.5 + pos: 79.5,-49.5 parent: 2 - - uid: 25467 + - uid: 26193 components: - type: Transform - pos: 92.5,-44.5 + pos: 77.5,-49.5 parent: 2 - - uid: 25468 + - uid: 26194 components: - type: Transform - pos: 87.5,-42.5 + pos: 71.5,-40.5 parent: 2 - - uid: 25469 + - uid: 26195 components: - type: Transform - pos: -5.5,-46.5 + pos: 71.5,-37.5 parent: 2 - - uid: 25470 + - uid: 26196 components: - type: Transform - pos: -13.5,-46.5 + pos: -51.5,6.5 parent: 2 - - uid: 25471 + - uid: 26197 components: - type: Transform - pos: -22.5,-44.5 + rot: 3.141592653589793 rad + pos: 32.5,16.5 parent: 2 - - uid: 25472 + - uid: 26198 components: - type: Transform - pos: -25.5,-45.5 + rot: -1.5707963267948966 rad + pos: -14.5,0.5 parent: 2 - - uid: 25473 + - uid: 26199 components: - type: Transform - pos: -6.5,-36.5 + rot: -1.5707963267948966 rad + pos: 17.5,0.5 parent: 2 - - uid: 25474 + - uid: 26200 components: - type: Transform - pos: -20.5,-36.5 + rot: -1.5707963267948966 rad + pos: -12.5,0.5 parent: 2 - - uid: 25475 + - uid: 26201 components: - type: Transform - pos: -24.5,-42.5 + rot: -1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 - - uid: 25476 + - uid: 26202 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 26203 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 26204 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 26205 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 26206 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,4.5 + pos: -13.5,20.5 parent: 2 - - uid: 25477 + - uid: 26207 components: - type: Transform - pos: 30.5,-52.5 + rot: -1.5707963267948966 rad + pos: 28.5,-9.5 parent: 2 - - uid: 25478 + - uid: 26208 components: - type: Transform - pos: 27.5,-56.5 + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 parent: 2 - - uid: 25479 + - uid: 26209 components: - type: Transform - pos: 24.5,-46.5 + rot: -1.5707963267948966 rad + pos: 28.5,-7.5 parent: 2 - - uid: 25480 + - uid: 26210 components: - type: Transform - pos: 30.5,-48.5 + rot: 1.5707963267948966 rad + pos: 26.5,-18.5 parent: 2 - - uid: 25481 + - uid: 26211 components: - type: Transform - pos: 18.5,-49.5 + rot: 1.5707963267948966 rad + pos: 26.5,-14.5 parent: 2 - - uid: 25482 + - uid: 26212 components: - type: Transform - pos: 18.5,-40.5 + rot: -1.5707963267948966 rad + pos: 28.5,-5.5 parent: 2 - - uid: 25483 + - uid: 26213 components: - type: Transform - pos: 23.5,-35.5 + rot: -1.5707963267948966 rad + pos: 28.5,-6.5 parent: 2 - - uid: 25484 + - uid: 26214 components: - type: Transform - pos: 32.5,-42.5 + rot: -1.5707963267948966 rad + pos: 28.5,-10.5 parent: 2 - - uid: 25485 + - uid: 26215 components: - type: Transform - pos: 32.5,-33.5 + rot: 1.5707963267948966 rad + pos: 26.5,2.5 parent: 2 - - uid: 25486 + - uid: 26216 components: - type: Transform - pos: 28.5,-30.5 + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 parent: 2 - - uid: 25487 + - uid: 26217 components: - type: Transform - pos: 31.5,-57.5 + pos: -8.5,-57.5 parent: 2 - - uid: 25488 + - uid: 26218 components: - type: Transform - pos: 3.5,-41.5 + pos: -19.5,-65.5 parent: 2 - - uid: 25489 + - uid: 26219 components: - type: Transform - pos: -2.5,-53.5 + rot: -1.5707963267948966 rad + pos: -3.5,-57.5 parent: 2 - - uid: 25490 + - uid: 26220 components: - type: Transform - pos: 4.5,-53.5 + pos: -6.5,-57.5 parent: 2 - - uid: 25491 + - uid: 26221 components: - type: Transform - pos: -4.5,-42.5 + rot: -1.5707963267948966 rad + pos: 2.5,-56.5 parent: 2 - - uid: 25492 + - uid: 26222 components: - type: Transform - pos: -2.5,-45.5 + pos: 6.5,-2.5 parent: 2 - - uid: 25493 + - uid: 26223 components: - type: Transform - pos: 7.5,-41.5 + pos: -2.5,4.5 parent: 2 - - uid: 25494 + - uid: 26224 components: - type: Transform - pos: 2.5,-43.5 + pos: 1.5,-3.5 parent: 2 - - uid: 25495 + - uid: 26225 components: - type: Transform - pos: -25.5,-50.5 + rot: 1.5707963267948966 rad + pos: 19.5,4.5 parent: 2 - - uid: 25496 + - uid: 26226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,6.5 + rot: 1.5707963267948966 rad + pos: 19.5,6.5 parent: 2 - - uid: 25497 + - uid: 26227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,5.5 + rot: 1.5707963267948966 rad + pos: 19.5,5.5 parent: 2 - - uid: 25498 + - uid: 26228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,4.5 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 parent: 2 - - uid: 25499 + - uid: 26229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,6.5 + rot: 1.5707963267948966 rad + pos: -14.5,7.5 parent: 2 - - uid: 25500 + - uid: 26230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,7.5 + pos: 13.5,-18.5 parent: 2 - - uid: 25501 + - uid: 26231 components: - type: Transform - pos: -31.5,0.5 + pos: 15.5,-18.5 parent: 2 - - uid: 25502 + - uid: 26232 components: - type: Transform - pos: -45.5,12.5 + pos: 10.5,-18.5 parent: 2 - - uid: 25503 + - uid: 26233 components: - type: Transform - pos: -45.5,16.5 + pos: 9.5,-18.5 parent: 2 - - uid: 25504 + - uid: 26234 components: - type: Transform - pos: -40.5,15.5 + pos: 14.5,-18.5 parent: 2 - - uid: 25505 + - uid: 26235 components: - type: Transform - pos: -26.5,11.5 + pos: 12.5,-18.5 parent: 2 - - uid: 25506 + - uid: 26236 components: - type: Transform - pos: -38.5,5.5 + pos: 11.5,-18.5 parent: 2 - - uid: 25507 + - uid: 26237 components: - type: Transform - pos: -36.5,-2.5 + pos: 67.5,-25.5 parent: 2 - - uid: 25508 + - uid: 26238 components: - type: Transform - pos: -33.5,-11.5 + pos: 69.5,-25.5 parent: 2 - - uid: 25509 + - uid: 26239 components: - type: Transform - pos: -22.5,-9.5 + pos: 65.5,-28.5 parent: 2 - - uid: 25510 + - uid: 26240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,25.5 + rot: 1.5707963267948966 rad + pos: 65.5,-25.5 parent: 2 - - uid: 25511 + - uid: 26241 components: - type: Transform - pos: 10.5,33.5 + pos: 69.5,-50.5 parent: 2 - - uid: 25512 + - uid: 26242 components: - type: Transform - pos: 25.5,32.5 + pos: 67.5,-50.5 parent: 2 - - uid: 25513 + - uid: 26243 components: - type: Transform - pos: 26.5,29.5 + pos: -39.5,2.5 parent: 2 - - uid: 25514 + - uid: 26244 components: - type: Transform - pos: 55.5,32.5 + pos: -41.5,-1.5 parent: 2 - - uid: 25515 + - uid: 26245 components: - type: Transform - pos: 56.5,31.5 + pos: -43.5,-1.5 parent: 2 - - uid: 25516 + - uid: 26246 components: - type: Transform - pos: 57.5,33.5 + pos: -10.5,-13.5 parent: 2 - - uid: 25517 + - uid: 26247 components: - type: Transform - pos: 54.5,33.5 + pos: -9.5,-13.5 parent: 2 - - uid: 25518 + - uid: 26248 components: - type: Transform - pos: 54.5,32.5 + pos: -7.5,-13.5 parent: 2 - - uid: 25519 + - uid: 26249 components: - type: Transform - pos: 57.5,31.5 + pos: -6.5,-13.5 parent: 2 - - uid: 25520 + - uid: 26250 components: - type: Transform - pos: 55.5,32.5 + rot: 3.141592653589793 rad + pos: -39.5,1.5 parent: 2 - - uid: 25521 + - uid: 26251 components: - type: Transform - pos: 56.5,32.5 + rot: 3.141592653589793 rad + pos: -39.5,0.5 parent: 2 - - uid: 25522 + - uid: 26252 components: - type: Transform - pos: 55.5,33.5 + pos: -27.5,-1.5 parent: 2 - - uid: 25523 + - uid: 26253 components: - type: Transform - pos: 55.5,31.5 + pos: -30.5,-1.5 parent: 2 - - uid: 25524 + - uid: 26254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-5.5 + rot: 3.141592653589793 rad + pos: 69.5,-17.5 parent: 2 - - uid: 25525 + - uid: 26255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-2.5 + rot: 3.141592653589793 rad + pos: 69.5,-14.5 parent: 2 - - uid: 25526 + - uid: 26256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-1.5 + pos: 76.5,-32.5 parent: 2 - - uid: 25527 + - uid: 26257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-4.5 + rot: 3.141592653589793 rad + pos: 69.5,-13.5 parent: 2 - - uid: 25528 + - uid: 26258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-8.5 + pos: 76.5,-33.5 parent: 2 - - uid: 25529 + - uid: 26259 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-8.5 + pos: -42.5,14.5 parent: 2 - - uid: 25530 + - uid: 26260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-4.5 + rot: 3.141592653589793 rad + pos: 69.5,-16.5 parent: 2 - - uid: 25531 + - uid: 26261 components: - type: Transform rot: 1.5707963267948966 rad - pos: -106.5,-7.5 + pos: -41.5,14.5 parent: 2 - - uid: 25532 + - uid: 26262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,1.5 + pos: -51.5,4.5 parent: 2 - - uid: 25533 + - uid: 26263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,6.5 + pos: -51.5,2.5 parent: 2 - - uid: 25534 + - uid: 26264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,7.5 + pos: -51.5,1.5 parent: 2 - - uid: 25535 + - uid: 26265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,10.5 + pos: -51.5,3.5 parent: 2 - - uid: 25536 + - uid: 26266 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,14.5 + pos: -45.5,14.5 parent: 2 - - uid: 25537 + - uid: 26267 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,20.5 + pos: -50.5,14.5 parent: 2 - - uid: 25538 + - uid: 26268 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,22.5 + pos: -49.5,14.5 parent: 2 - - uid: 25539 + - uid: 26269 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,25.5 + pos: -46.5,14.5 parent: 2 - - uid: 25540 + - uid: 26270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,23.5 + pos: -51.5,5.5 parent: 2 - - uid: 25541 + - uid: 26271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,23.5 + pos: -35.5,-14.5 parent: 2 - - uid: 25542 + - uid: 26272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,29.5 + rot: 3.141592653589793 rad + pos: -10.5,68.5 parent: 2 - - uid: 25543 + - uid: 26273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,32.5 + rot: 3.141592653589793 rad + pos: -10.5,70.5 parent: 2 - - uid: 25544 + - uid: 26274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,14.5 + rot: 3.141592653589793 rad + pos: -9.5,71.5 parent: 2 - - uid: 25545 + - uid: 26275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,10.5 + rot: 3.141592653589793 rad + pos: -7.5,71.5 parent: 2 - - uid: 25546 + - uid: 26276 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,2.5 + pos: -32.5,-1.5 parent: 2 - - uid: 25547 + - uid: 26277 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,3.5 + pos: -34.5,-1.5 parent: 2 - - uid: 25548 + - uid: 26278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,50.5 + pos: -27.5,-12.5 parent: 2 - - uid: 25549 + - uid: 26279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,43.5 + pos: -11.5,51.5 parent: 2 - - uid: 25550 + - uid: 26280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,1.5 + pos: -3.5,42.5 parent: 2 - - uid: 25551 + - uid: 26281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,5.5 + pos: -3.5,41.5 parent: 2 - - uid: 25552 + - uid: 26282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,2.5 + pos: -3.5,40.5 parent: 2 - - uid: 25553 + - uid: 26283 components: - type: Transform - pos: 7.5,-55.5 + pos: 0.5,36.5 parent: 2 - - uid: 25554 + - uid: 26284 components: - type: Transform - pos: -19.5,-59.5 + pos: 39.5,-31.5 parent: 2 - - uid: 25555 + - uid: 26285 components: - type: Transform - pos: -1.5,-60.5 + pos: -3.5,58.5 parent: 2 - - uid: 25556 + - uid: 26286 components: - type: Transform - pos: -30.5,-9.5 + pos: -3.5,57.5 parent: 2 - - uid: 25557 + - uid: 26287 components: - type: Transform - pos: -24.5,-10.5 + rot: 1.5707963267948966 rad + pos: -7.5,-32.5 parent: 2 - - uid: 25558 + - uid: 26288 components: - type: Transform - pos: -29.5,-7.5 + rot: 1.5707963267948966 rad + pos: -7.5,-31.5 parent: 2 - - uid: 25559 + - uid: 26289 components: - type: Transform - pos: -31.5,-71.5 + rot: 1.5707963267948966 rad + pos: -35.5,-12.5 parent: 2 - - uid: 25560 + - uid: 26290 components: - type: Transform - pos: -31.5,-63.5 + rot: 1.5707963267948966 rad + pos: -6.5,-49.5 parent: 2 - - uid: 25561 + - uid: 26291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,1.5 + rot: 1.5707963267948966 rad + pos: -6.5,-50.5 parent: 2 - - uid: 25562 + - type: PointLight + softness: 3 + energy: 7 + color: '#FF8227FF' + radius: 10 + - uid: 26292 components: - type: Transform - pos: 98.5,-46.5 + rot: 1.5707963267948966 rad + pos: -6.5,-40.5 parent: 2 - - uid: 25563 + - type: PointLight + softness: 3 + energy: 7 + color: '#FF8227FF' + radius: 10 + - uid: 26293 components: - type: Transform - pos: 102.5,-43.5 + rot: 3.141592653589793 rad + pos: -114.5,23.5 parent: 2 - - uid: 42546 - components: - - type: Transform - pos: 56.5,82.5 - parent: 40203 - - uid: 42547 + - uid: 26294 components: - type: Transform - pos: 53.5,78.5 - parent: 40203 - - uid: 42548 + rot: 3.141592653589793 rad + pos: -114.5,19.5 + parent: 2 + - uid: 26295 components: - type: Transform - pos: 49.5,77.5 - parent: 40203 - - uid: 42549 + rot: 3.141592653589793 rad + pos: -106.5,20.5 + parent: 2 + - uid: 26296 components: - type: Transform - pos: 55.5,74.5 - parent: 40203 - - uid: 42550 + rot: 3.141592653589793 rad + pos: -106.5,19.5 + parent: 2 + - uid: 26297 components: - type: Transform - pos: 60.5,82.5 - parent: 40203 - - uid: 42551 + rot: 3.141592653589793 rad + pos: -106.5,21.5 + parent: 2 + - uid: 26298 components: - type: Transform - pos: 45.5,28.5 - parent: 40203 - - uid: 42552 + rot: 3.141592653589793 rad + pos: -114.5,15.5 + parent: 2 + - uid: 26299 components: - type: Transform - pos: 41.5,25.5 - parent: 40203 - - uid: 42553 + rot: 3.141592653589793 rad + pos: -118.5,4.5 + parent: 2 + - uid: 26300 components: - type: Transform - pos: 47.5,26.5 - parent: 40203 -- proto: RandomSpawner100 - entities: - - uid: 25564 + rot: 3.141592653589793 rad + pos: -118.5,5.5 + parent: 2 + - uid: 26301 components: - type: Transform - pos: 36.5,-38.5 + rot: 3.141592653589793 rad + pos: -118.5,6.5 parent: 2 - - uid: 25565 + - uid: 26302 components: - type: Transform - pos: 40.5,-39.5 + rot: 3.141592653589793 rad + pos: -118.5,7.5 parent: 2 - - uid: 25566 + - uid: 26303 components: - type: Transform - pos: 37.5,-36.5 + pos: -118.5,20.5 parent: 2 - - uid: 25567 + - uid: 26304 components: - type: Transform - pos: 35.5,-34.5 + pos: -118.5,24.5 parent: 2 - - uid: 25568 + - uid: 26305 components: - type: Transform - pos: 38.5,-41.5 + pos: -118.5,16.5 parent: 2 - - uid: 25569 + - uid: 26306 components: - type: Transform - pos: 35.5,-40.5 + pos: 71.5,-45.5 parent: 2 - - uid: 25570 + - uid: 26307 components: - type: Transform - pos: 31.5,-38.5 + pos: -16.5,23.5 parent: 2 - - uid: 25571 + - uid: 26308 components: - type: Transform - pos: 22.5,-42.5 + pos: -16.5,25.5 parent: 2 - - uid: 25572 + - uid: 26309 components: - type: Transform - pos: 19.5,-33.5 + rot: -1.5707963267948966 rad + pos: -49.5,69.5 parent: 2 - - uid: 25573 + - uid: 26310 components: - type: Transform - pos: 17.5,-46.5 + rot: -1.5707963267948966 rad + pos: -50.5,69.5 parent: 2 - - uid: 25574 + - uid: 26311 components: - type: Transform - pos: 22.5,-53.5 + rot: -1.5707963267948966 rad + pos: -52.5,69.5 parent: 2 - - uid: 25575 + - uid: 26312 components: - type: Transform - pos: -1.5,-56.5 + rot: -1.5707963267948966 rad + pos: -51.5,69.5 parent: 2 - - uid: 25576 + - uid: 26313 components: - type: Transform - pos: -10.5,-54.5 + pos: -112.5,0.5 parent: 2 - - uid: 25577 + - uid: 26314 components: - type: Transform - pos: -5.5,19.5 + pos: -113.5,0.5 parent: 2 - - uid: 25578 + - uid: 26315 components: - type: Transform - pos: 34.5,27.5 + rot: -1.5707963267948966 rad + pos: 103.5,-23.5 parent: 2 - - uid: 25579 + - uid: 26316 components: - type: Transform - pos: 8.5,64.5 + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 parent: 2 - - uid: 25580 + - uid: 42969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,57.5 - parent: 2 - - uid: 25581 + pos: 65.5,76.5 + parent: 40599 + - uid: 42970 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,56.5 - parent: 2 - - uid: 25582 + pos: 62.5,76.5 + parent: 40599 + - uid: 42971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,58.5 - parent: 2 - - uid: 25583 + rot: 1.5707963267948966 rad + pos: 59.5,76.5 + parent: 40599 + - uid: 42972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,61.5 - parent: 2 - - uid: 25584 + rot: 1.5707963267948966 rad + pos: 68.5,76.5 + parent: 40599 + - uid: 42973 components: - type: Transform - pos: 10.5,57.5 - parent: 2 - - uid: 25585 + rot: 3.141592653589793 rad + pos: 70.5,74.5 + parent: 40599 + - uid: 42974 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,60.5 - parent: 2 - - uid: 25586 + pos: 70.5,75.5 + parent: 40599 + - uid: 42975 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,61.5 - parent: 2 - - uid: 25587 + pos: 54.5,45.5 + parent: 40599 + - uid: 42976 components: - type: Transform - pos: 24.5,56.5 - parent: 2 - - uid: 25588 + rot: 3.141592653589793 rad + pos: 50.5,45.5 + parent: 40599 +- proto: ReinforcedWindowDiagonal + entities: + - uid: 26317 components: - type: Transform - pos: 15.5,50.5 + pos: -1.5,5.5 parent: 2 - - uid: 25589 + - uid: 26318 components: - type: Transform - pos: 11.5,53.5 + pos: 0.5,6.5 parent: 2 - - uid: 25590 + - uid: 26319 components: - type: Transform - pos: 18.5,58.5 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 parent: 2 - - uid: 25591 + - uid: 26320 components: - type: Transform - pos: 14.5,54.5 + rot: -1.5707963267948966 rad + pos: 6.5,5.5 parent: 2 - - uid: 25592 +- proto: RemoteSignaller + entities: + - uid: 26321 components: - type: Transform - pos: 19.5,56.5 + pos: 38.41338,-48.329163 parent: 2 - - uid: 25593 + - uid: 26322 components: - type: Transform - pos: 17.5,62.5 + pos: 38.741505,-48.235413 parent: 2 - - uid: 25594 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 26323 components: - type: Transform - pos: 24.5,61.5 + pos: 35.5,-54.5 parent: 2 - - uid: 25595 +- proto: RevolverCapGun + entities: + - uid: 15258 components: - type: Transform - pos: 27.5,59.5 - parent: 2 - - uid: 25596 + parent: 15253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26324 components: - type: Transform - pos: 29.5,52.5 + rot: 3.141592653589793 rad + pos: 66.49824,17.575611 parent: 2 - - uid: 25597 + - uid: 26325 components: - type: Transform - pos: 22.5,52.5 + rot: -1.5707963267948966 rad + pos: -21.227972,-20.935272 parent: 2 - - uid: 25598 + - uid: 26326 components: - type: Transform - pos: -28.5,-7.5 + rot: -1.5707963267948966 rad + pos: -43.387802,27.051956 parent: 2 - - uid: 25599 + - uid: 42977 components: - type: Transform - pos: -36.5,-65.5 - parent: 2 - - uid: 25600 + rot: 0.8203047484373349 rad + pos: 41.432594,79.269844 + parent: 40599 +- proto: RiotBulletShield + entities: + - uid: 42978 components: - type: Transform - pos: 96.5,-45.5 - parent: 2 - - uid: 25601 + rot: 1.8849555921538759 rad + pos: 41.05597,76.85492 + parent: 40599 +- proto: RobustHarvestChemistryBottle + entities: + - uid: 15140 components: - type: Transform - pos: 101.5,-46.5 - parent: 2 - - uid: 25602 + parent: 15138 + - type: Physics + canCollide: False + - uid: 26327 components: - type: Transform - pos: 99.5,-43.5 + pos: 7.6055145,32.600613 parent: 2 - - uid: 25603 +- proto: RockGuitarInstrument + entities: + - uid: 26328 components: - type: Transform - pos: 100.5,-40.5 + pos: 53.542038,-7.429006 parent: 2 - - uid: 25604 +- proto: RollerBed + entities: + - uid: 26329 components: - type: Transform - pos: 98.5,-40.5 + pos: -54.32946,13.607117 parent: 2 - - uid: 25605 +- proto: RollerBedSpawnFolded + entities: + - uid: 26330 components: - type: Transform - pos: 97.5,-43.5 + pos: 1.4292179,54.718872 parent: 2 - - uid: 42554 +- proto: RollingPin + entities: + - uid: 8453 components: - type: Transform - pos: 51.5,79.5 - parent: 40203 - - uid: 42555 + parent: 8445 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26331 components: - type: Transform - pos: 62.5,79.5 - parent: 40203 - - uid: 42556 + pos: 32.440063,34.49218 + parent: 2 +- proto: RubberneckGlass + entities: + - uid: 26332 components: - type: Transform - pos: 68.5,39.5 - parent: 40203 - - uid: 42557 + pos: 12.531928,-3.5038266 + parent: 2 +- proto: RubberStampApproved + entities: + - uid: 26333 components: + - type: MetaData + name: печать "ОДОБРЕНО" - type: Transform - pos: 67.5,41.5 - parent: 40203 - - uid: 42558 + pos: -3.6248074,-12.01973 + parent: 2 + - type: Stamp + stampedName: Заебись! + - uid: 26334 components: - type: Transform - pos: 40.5,35.5 - parent: 40203 - - uid: 42559 + pos: 65.37227,-38.7416 + parent: 2 + - uid: 26335 components: - type: Transform - pos: 45.5,25.5 - parent: 40203 - - uid: 42560 + pos: 74.78042,-38.134106 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 26336 components: + - type: MetaData + name: печать "ОТКАЗАНО" - type: Transform - pos: 43.5,27.5 - parent: 40203 - - uid: 42561 + pos: -3.3647175,-11.886908 + parent: 2 + - type: Stamp + stampedName: Хуйня, переделывай! + - uid: 26337 components: - type: Transform - pos: 46.5,23.5 - parent: 40203 - - uid: 42562 + pos: 65.68477,-38.77285 + parent: 2 + - uid: 26338 components: - type: Transform - pos: 38.5,36.5 - parent: 40203 -- proto: RandomVending + pos: 74.88979,-38.39973 + parent: 2 +- proto: SalvageHumanCorpseSpawner entities: - - uid: 25606 + - uid: 26339 components: - type: Transform - pos: 21.5,-38.5 + rot: -1.5707963267948966 rad + pos: 78.5,5.5 parent: 2 - - uid: 25607 + - uid: 26340 components: - type: Transform - pos: -9.5,2.5 + rot: -1.5707963267948966 rad + pos: -63.5,27.5 parent: 2 - - uid: 25608 + - uid: 26341 components: - type: Transform - pos: -1.5,-40.5 + pos: -91.5,12.5 parent: 2 - - uid: 25609 + - uid: 26342 components: - type: Transform - pos: 14.5,2.5 + rot: 1.5707963267948966 rad + pos: 27.5,53.5 parent: 2 - - uid: 25610 + - uid: 42979 components: - type: Transform - pos: 69.5,-7.5 - parent: 2 - - uid: 25611 + rot: -1.5707963267948966 rad + pos: 49.5,37.5 + parent: 40599 + - uid: 42980 components: - type: Transform - pos: 78.5,-26.5 - parent: 2 -- proto: RandomVendingDrinks - entities: - - uid: 25612 + rot: -1.5707963267948966 rad + pos: 37.5,30.5 + parent: 40599 + - uid: 42981 components: - type: Transform - pos: -17.5,-17.5 - parent: 2 - - uid: 25613 + rot: -1.5707963267948966 rad + pos: 68.5,25.5 + parent: 40599 + - uid: 42982 components: - type: Transform - pos: 28.5,-29.5 - parent: 2 - - uid: 25614 + rot: -1.5707963267948966 rad + pos: 82.5,38.5 + parent: 40599 + - uid: 42983 components: - type: Transform - pos: 23.5,61.5 - parent: 2 - - uid: 25615 + pos: 39.5,56.5 + parent: 40599 + - uid: 42984 components: - type: Transform - pos: 57.5,-4.5 - parent: 2 - - uid: 25616 + pos: 58.5,63.5 + parent: 40599 + - uid: 42985 components: - type: Transform - pos: -3.5,-4.5 - parent: 2 - - uid: 25617 + rot: -1.5707963267948966 rad + pos: 60.5,83.5 + parent: 40599 + - uid: 42986 components: - type: Transform - pos: 20.5,28.5 - parent: 2 - - uid: 25618 + pos: 74.5,73.5 + parent: 40599 + - uid: 42987 components: - type: Transform - pos: 7.5,28.5 - parent: 2 - - uid: 25619 + rot: -1.5707963267948966 rad + pos: 56.5,22.5 + parent: 40599 + - uid: 42988 components: - type: Transform - pos: 16.5,-50.5 - parent: 2 - - uid: 25620 + rot: -1.5707963267948966 rad + pos: 54.5,43.5 + parent: 40599 + - uid: 46154 components: - type: Transform - pos: 21.5,-54.5 - parent: 2 - - uid: 25621 + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 45355 + - uid: 46155 components: - type: Transform - pos: 14.5,16.5 - parent: 2 - - uid: 25622 + pos: 7.5,8.5 + parent: 45355 + - uid: 46156 components: - type: Transform - pos: -9.5,15.5 - parent: 2 - - uid: 25623 + pos: -5.5,13.5 + parent: 45355 + - uid: 46757 components: - type: Transform - pos: -3.5,-40.5 - parent: 2 - - uid: 25624 + pos: -2.5,0.5 + parent: 46584 + - uid: 47106 components: - type: Transform - pos: 1.5,49.5 - parent: 2 - - uid: 25625 + pos: 0.5,9.5 + parent: 46943 + - uid: 47107 components: - type: Transform - pos: -46.5,0.5 - parent: 2 - - uid: 25626 + pos: -3.5,-3.5 + parent: 46943 + - uid: 47108 components: - type: Transform - pos: 24.5,40.5 - parent: 2 - - uid: 25627 + pos: 5.5,-0.5 + parent: 46943 +- proto: SalvageLootSpawner + entities: + - uid: 46157 components: - type: Transform - pos: 69.5,-36.5 - parent: 2 - - uid: 25628 + pos: 6.5,9.5 + parent: 45355 + - uid: 46158 components: - type: Transform - pos: -95.5,1.5 - parent: 2 -- proto: RandomVendingSnacks - entities: - - uid: 25629 + pos: -1.5,16.5 + parent: 45355 + - uid: 46758 components: - type: Transform - pos: -17.5,-16.5 - parent: 2 - - uid: 25630 + pos: 5.5,2.5 + parent: 46584 + - uid: 46759 components: - type: Transform - pos: 23.5,60.5 - parent: 2 - - uid: 25631 + pos: -0.5,13.5 + parent: 46584 +- proto: SalvageMaterialCrateSpawner + entities: + - uid: 26343 components: - type: Transform - pos: -2.5,-40.5 + pos: -63.5,28.5 parent: 2 - - uid: 25632 + - uid: 26344 components: - type: Transform - pos: 20.5,29.5 + pos: -57.5,32.5 parent: 2 - - uid: 25633 + - uid: 26345 components: - type: Transform - pos: -3.5,-2.5 + pos: -46.5,38.5 parent: 2 - - uid: 25634 + - uid: 26346 components: - type: Transform - pos: 7.5,29.5 + pos: -39.5,33.5 parent: 2 - - uid: 25635 + - uid: 46760 components: - type: Transform - pos: 21.5,-52.5 - parent: 2 - - uid: 25636 + pos: 8.5,9.5 + parent: 46584 + - uid: 46761 components: - type: Transform - pos: 14.5,15.5 - parent: 2 - - uid: 25637 + pos: -3.5,0.5 + parent: 46584 +- proto: SalvageSpawnerEquipment + entities: + - uid: 26347 components: - type: Transform - pos: -9.5,16.5 + rot: 1.5707963267948966 rad + pos: 92.5,-32.5 parent: 2 - - uid: 25638 + - uid: 42989 components: - type: Transform - pos: 2.5,49.5 - parent: 2 - - uid: 25639 + pos: 53.5,51.5 + parent: 40599 + - uid: 42990 components: - type: Transform - pos: 2.5,49.5 - parent: 2 - - uid: 25640 + pos: 66.5,70.5 + parent: 40599 +- proto: SalvageSpawnerEquipmentValuable + entities: + - uid: 46762 components: - type: Transform - pos: 28.5,-28.5 - parent: 2 - - uid: 25641 + pos: -2.5,10.5 + parent: 46584 + - uid: 46763 components: - type: Transform - pos: -46.5,6.5 - parent: 2 - - uid: 25642 + pos: 5.5,5.5 + parent: 46584 + - uid: 46764 components: - type: Transform - pos: 68.5,-36.5 - parent: 2 - - uid: 25643 + pos: 4.5,2.5 + parent: 46584 +- proto: SalvageSpawnerScrapCommon + entities: + - uid: 26348 components: - type: Transform - pos: -96.5,1.5 + pos: 90.5,-37.5 parent: 2 -- proto: ReagentContainerCornmeal - entities: - - uid: 25644 + - uid: 26349 components: - - type: MetaData - desc: Лучший корм для лучших крабиков! - name: корм для крабов - type: Transform - pos: -3.3616,-56.43843 + rot: -1.5707963267948966 rad + pos: 100.5,-46.5 parent: 2 - - uid: 25645 + - uid: 26350 components: - - type: MetaData - desc: Лучший корм для лучших крабиков! - name: корм для крабов - type: Transform - pos: 24.233582,17.931705 + rot: -1.5707963267948966 rad + pos: 97.5,-45.5 parent: 2 -- proto: ReagentContainerCornmealSmall - entities: - - uid: 25646 + - uid: 26351 components: - type: Transform - pos: 26.330297,35.18314 + rot: -1.5707963267948966 rad + pos: 96.5,-43.5 parent: 2 - - uid: 25647 + - uid: 26352 components: - - type: MetaData - desc: Лучший корм для лучших котиков! - name: корм для котиков - type: Transform - pos: -14.830851,60.537964 + rot: -1.5707963267948966 rad + pos: 99.5,-42.5 parent: 2 - - uid: 25648 + - uid: 26353 components: - - type: MetaData - desc: Лучший корм для лучших котиков! - name: корм для кошек - type: Transform - pos: 24.20889,17.5243 + rot: -1.5707963267948966 rad + pos: 102.5,-38.5 parent: 2 -- proto: ReagentContainerFlour - entities: - - uid: 25649 + - uid: 42991 components: - - type: MetaData - desc: Лучший корм для лучших собак! - name: корм для собак - type: Transform - pos: 24.726774,17.92999 - parent: 2 -- proto: ReagentContainerFlourSmall - entities: - - uid: 25650 + pos: 49.5,59.5 + parent: 40599 + - uid: 42992 components: - type: Transform - pos: 26.658422,35.167515 - parent: 2 - - uid: 25651 + pos: 52.5,57.5 + parent: 40599 + - uid: 42993 components: - - type: MetaData - desc: Лучший корм для лучших грызунов! - name: корм для грызунов - type: Transform - pos: 24.702082,17.473202 - parent: 2 -- proto: ReagentContainerRice - entities: - - uid: 25652 + pos: 63.5,66.5 + parent: 40599 + - uid: 42994 components: - - type: MetaData - desc: Большой мешок корма для собак. Отлично подходит для пухленьких пушистых собачек! - name: корм для собак - type: Transform - pos: -43.392117,-16.423685 - parent: 2 - missingComponents: - - SolutionContainerManager - - SolutionTransfer - - DrawableSolution - - RefillableSolution - - DrainableSolution - - Drink -- proto: Recycler - entities: - - uid: 25653 + pos: 66.5,62.5 + parent: 40599 + - uid: 42995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-34.5 - parent: 2 -- proto: ReinforcedGirder - entities: - - uid: 25654 + pos: 60.5,57.5 + parent: 40599 + - uid: 46765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-40.5 - parent: 2 - - uid: 25655 + pos: -0.5,3.5 + parent: 46584 + - uid: 46766 components: - type: Transform - pos: 15.5,63.5 - parent: 2 - - uid: 25656 + pos: 2.5,-0.5 + parent: 46584 + - uid: 46767 components: - type: Transform - pos: 15.5,55.5 - parent: 2 - - uid: 25657 + pos: 8.5,3.5 + parent: 46584 +- proto: SalvageSpawnerScrapCommon75 + entities: + - uid: 42996 components: - type: Transform - pos: 15.5,52.5 - parent: 2 - - uid: 25658 + pos: 56.5,51.5 + parent: 40599 + - uid: 42997 components: - type: Transform - pos: 9.5,59.5 - parent: 2 - - uid: 25659 + pos: 56.5,70.5 + parent: 40599 + - uid: 42998 components: - type: Transform - pos: 11.5,65.5 - parent: 2 - - uid: 25660 + pos: 58.5,68.5 + parent: 40599 + - uid: 42999 components: - type: Transform - pos: 17.5,59.5 - parent: 2 - - uid: 42563 + pos: 62.5,71.5 + parent: 40599 + - uid: 43000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,66.5 - parent: 40203 - - uid: 42564 + pos: 63.5,68.5 + parent: 40599 + - uid: 43001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,65.5 - parent: 40203 - - uid: 42565 + pos: 67.5,54.5 + parent: 40599 + - uid: 43002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,65.5 - parent: 40203 - - uid: 42566 + pos: 57.5,55.5 + parent: 40599 + - uid: 43003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,66.5 - parent: 40203 - - uid: 42567 + pos: 63.5,51.5 + parent: 40599 + - uid: 46768 components: - type: Transform - pos: 34.5,73.5 - parent: 40203 -- proto: ReinforcedPlasmaWindow + pos: 4.5,5.5 + parent: 46584 + - uid: 46769 + components: + - type: Transform + pos: 5.5,4.5 + parent: 46584 +- proto: SalvageSpawnerScrapValuable entities: - - uid: 25661 + - uid: 26354 components: - type: Transform - pos: -6.5,-67.5 + rot: 1.5707963267948966 rad + pos: 95.5,-33.5 parent: 2 - - uid: 25662 + - uid: 43004 components: - type: Transform - pos: -1.5,-67.5 - parent: 2 - - uid: 25663 + rot: 3.141592653589793 rad + pos: 49.5,53.5 + parent: 40599 + - uid: 43005 components: - type: Transform - pos: -17.5,-54.5 - parent: 2 - - uid: 25664 + pos: 51.5,63.5 + parent: 40599 +- proto: SalvageSpawnerScrapValuable75 + entities: + - uid: 43006 components: - type: Transform - pos: -17.5,-53.5 - parent: 2 - - uid: 25665 + pos: 57.5,65.5 + parent: 40599 + - uid: 46770 components: - type: Transform - pos: -18.5,-56.5 - parent: 2 - - uid: 25666 + pos: -1.5,1.5 + parent: 46584 + - uid: 46771 components: - type: Transform - pos: -22.5,-57.5 - parent: 2 - - uid: 25667 + pos: -2.5,9.5 + parent: 46584 +- proto: SalvageSpawnerTreasureValuable + entities: + - uid: 43007 components: - type: Transform - pos: -22.5,-62.5 - parent: 2 - - uid: 25668 + pos: 61.5,63.5 + parent: 40599 + - uid: 46772 components: - type: Transform - pos: -22.5,-63.5 - parent: 2 - - uid: 25669 + pos: 3.5,4.5 + parent: 46584 +- proto: Saw + entities: + - uid: 26355 components: - type: Transform - pos: -3.5,-67.5 + pos: -26.41361,42.660713 parent: 2 - - uid: 25670 + - uid: 26356 components: - type: Transform - pos: -5.5,-67.5 + rot: -1.5707963267948966 rad + pos: -15.094624,44.535408 parent: 2 - - uid: 25671 +- proto: SawAdvanced + entities: + - uid: 23822 components: - type: Transform - pos: -22.5,-58.5 - parent: 2 - - uid: 25672 + parent: 23821 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Scalpel + entities: + - uid: 26357 components: - type: Transform - pos: -2.5,-67.5 + rot: -1.5707963267948966 rad + pos: -20.604689,8.576597 parent: 2 - - uid: 25673 + - uid: 26358 components: - type: Transform - pos: -19.5,-56.5 + rot: -1.5707963267948966 rad + pos: -15.379175,44.580284 parent: 2 - - uid: 25674 +- proto: ScalpelAdvanced + entities: + - uid: 26359 components: - type: Transform - pos: -22.5,-59.5 + pos: -24.401966,42.662052 parent: 2 - - uid: 25675 +- proto: ScalpelLaser + entities: + - uid: 26360 components: - type: Transform - pos: -22.5,-61.5 + pos: -4.524184,57.261887 parent: 2 - - uid: 25676 +- proto: ScalpelShiv + entities: + - uid: 24635 components: - type: Transform - pos: -7.5,-67.5 - parent: 2 - - uid: 25677 + parent: 24634 + - type: Physics + canCollide: False + - uid: 26361 components: - type: Transform - pos: -9.5,-67.5 + rot: 3.141592653589793 rad + pos: 102.28943,2.0233011 parent: 2 - - uid: 25678 + - uid: 43008 components: - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 25679 + pos: 36.417595,68.6306 + parent: 40599 +- proto: SciFlash + entities: + - uid: 41561 components: - type: Transform - pos: -11.5,-67.5 - parent: 2 - - uid: 25680 + parent: 41556 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41562 components: - type: Transform - pos: -13.5,-67.5 - parent: 2 - - uid: 25681 + parent: 41556 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ScrapAirlock1 + entities: + - uid: 26362 components: - type: Transform - pos: -14.5,-67.5 + rot: -1.5707963267948966 rad + pos: 58.50161,32.655632 parent: 2 - - uid: 25682 + - uid: 26363 components: - type: Transform - pos: -15.5,-67.5 + pos: 70.57218,-30.730766 parent: 2 - - uid: 25683 + - uid: 26364 components: - type: Transform - pos: -17.5,-67.5 + rot: 1.5707963267948966 rad + pos: 58.673485,32.186882 parent: 2 - - uid: 25684 + - uid: 46773 components: - type: Transform - pos: -18.5,-67.5 - parent: 2 - - uid: 25685 + rot: 1.5707963267948966 rad + pos: 2.0659232,6.371254 + parent: 46584 + - uid: 46774 components: - type: Transform - pos: -19.5,-67.5 - parent: 2 - - uid: 25686 + rot: 3.141592653589793 rad + pos: 0.1708979,6.551606 + parent: 46584 + - uid: 47313 components: - type: Transform - pos: 45.5,-56.5 - parent: 2 - - uid: 25687 + pos: 0.24556029,-2.6724868 + parent: 47245 + - uid: 47314 components: - type: Transform - pos: 47.5,-56.5 - parent: 2 - - uid: 25688 + rot: 1.5707963267948966 rad + pos: 1.4210184,-3.6099868 + parent: 47245 +- proto: ScrapAirlock2 + entities: + - uid: 26365 components: - type: Transform - pos: 52.5,-56.5 + rot: -1.5707963267948966 rad + pos: 59.767235,32.94939 parent: 2 - - uid: 25689 +- proto: ScrapBucket + entities: + - uid: 26366 components: - type: Transform - pos: 50.5,-56.5 + rot: -1.5707963267948966 rad + pos: 51.906853,22.797617 parent: 2 - - uid: 25690 + - uid: 26367 components: - type: Transform - pos: -23.5,20.5 + pos: 56.903328,26.95197 parent: 2 - - uid: 25691 + - uid: 26368 components: - type: Transform - pos: -23.5,18.5 + pos: 1.464921,32.309586 parent: 2 - - uid: 25692 +- proto: ScrapCamera + entities: + - uid: 26369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,18.5 + pos: 23.518099,61.610638 parent: 2 - - uid: 25693 + - uid: 26370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-50.5 + rot: -1.5707963267948966 rad + pos: 12.900718,63.973022 parent: 2 - - uid: 25694 + - uid: 26371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-50.5 + pos: 8.315161,65.75427 parent: 2 - - uid: 25695 + - uid: 26372 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-50.5 + pos: 44.303486,29.777037 parent: 2 - - uid: 25696 + - uid: 26373 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-25.5 + rot: -1.5707963267948966 rad + pos: 36.733337,34.32181 parent: 2 - - uid: 25697 + - uid: 26374 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-29.5 + pos: 49.35094,27.719748 parent: 2 - - uid: 25698 + - uid: 26375 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-25.5 + pos: 65.060844,14.306746 parent: 2 - - uid: 42568 - components: - - type: Transform - pos: 39.5,62.5 - parent: 40203 - - uid: 42569 + - uid: 26376 components: - type: Transform - pos: 39.5,61.5 - parent: 40203 - - uid: 42570 + pos: 61.36187,-6.816493 + parent: 2 + - uid: 26377 components: - type: Transform - pos: 39.5,60.5 - parent: 40203 - - uid: 42571 + pos: -50.996513,-40.83624 + parent: 2 + - uid: 26378 components: - type: Transform - pos: 70.5,60.5 - parent: 40203 - - uid: 42572 + rot: -1.5707963267948966 rad + pos: 45.684483,-42.20428 + parent: 2 +- proto: ScrapCanister1 + entities: + - uid: 26379 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,61.5 - parent: 40203 - - uid: 42573 + pos: 59.80788,18.327133 + parent: 2 + - uid: 26380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,63.5 - parent: 40203 -- proto: ReinforcedShiv + rot: -1.5707963267948966 rad + pos: 45.192978,-38.867393 + parent: 2 +- proto: ScrapCanister2 entities: - - uid: 15190 + - uid: 26381 components: - type: Transform - parent: 15187 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25699 + rot: 1.5707963267948966 rad + pos: -76.921265,1.0311702 + parent: 2 + - uid: 26382 components: - type: Transform rot: 1.5707963267948966 rad - pos: 94.22693,3.6326761 + pos: 59.104755,18.764633 parent: 2 - - uid: 25700 + - uid: 26383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.86755,6.413926 + pos: -18.67363,-54.688473 parent: 2 - - uid: 42574 + - uid: 26384 components: - type: Transform - rot: -1.6580627893946132 rad - pos: 50.89437,61.25232 - parent: 40203 -- proto: ReinforcedUraniumWindow + rot: 3.141592653589793 rad + pos: 45.114853,-38.32052 + parent: 2 +- proto: ScrapCloset entities: - - uid: 25701 + - uid: 26385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-39.5 + pos: 10.468136,61.522694 parent: 2 - - uid: 25702 + - uid: 26386 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-39.5 + pos: 61.492,37.557377 parent: 2 - - uid: 25703 + - uid: 26387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-39.5 + rot: 3.141592653589793 rad + pos: 75.80734,24.422739 parent: 2 - - uid: 25704 + - uid: 26388 components: - type: Transform - pos: 35.5,-37.5 + rot: 1.5707963267948966 rad + pos: 38.596317,31.45697 parent: 2 - - uid: 25705 + - uid: 26389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,51.5 + rot: 3.141592653589793 rad + pos: -28.374542,-28.607267 parent: 2 - - uid: 25706 + - uid: 26390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,53.5 + rot: 3.141592653589793 rad + pos: 96.56636,3.972783 parent: 2 - - uid: 25707 + - uid: 26391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,62.5 + rot: 3.141592653589793 rad + pos: 35.442978,-40.554893 parent: 2 - - uid: 25708 + - uid: 26392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,62.5 + rot: -1.5707963267948966 rad + pos: -18.456867,-26.571524 parent: 2 - - uid: 25709 + - uid: 26393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,62.5 + pos: 55.450275,-19.454962 parent: 2 - - uid: 25710 + - uid: 43009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,62.5 - parent: 2 -- proto: ReinforcedWindow + rot: -1.5707963267948966 rad + pos: 39.80757,56.374565 + parent: 40599 +- proto: ScrapFaxMachine entities: - - uid: 25711 + - uid: 26394 components: - type: Transform - pos: -14.5,4.5 + rot: -1.5707963267948966 rad + pos: 73.578926,-32.416954 parent: 2 - - uid: 25712 + - uid: 26395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-33.5 + pos: 29.478872,57.425213 parent: 2 - - uid: 25713 + - uid: 46775 components: - type: Transform - pos: 97.5,-12.5 - parent: 2 - - uid: 25714 + pos: 3.5034232,2.6056292 + parent: 46584 + - uid: 47315 components: - type: Transform - pos: 96.5,-12.5 - parent: 2 - - uid: 25715 + pos: -1.4539815,0.5306383 + parent: 47245 +- proto: ScrapFireExtinguisher + entities: + - uid: 26396 components: - type: Transform - pos: -6.5,-41.5 + pos: 64.58287,35.476074 parent: 2 - - uid: 25716 + - uid: 26397 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,21.5 + pos: 64.542175,18.328588 parent: 2 - - uid: 25717 + - uid: 26398 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,20.5 + pos: -28.43182,-32.235374 parent: 2 - - uid: 25718 + - uid: 26399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,19.5 + pos: 69.46655,-51.54457 parent: 2 - - uid: 25719 + - uid: 43010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-28.5 - parent: 2 - - uid: 25720 + rot: 3.141592653589793 rad + pos: 68.47834,59.27398 + parent: 40599 + - uid: 43011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,38.5 - parent: 2 - - uid: 25721 + rot: 0.3490658503988659 rad + pos: 52.436558,52.76187 + parent: 40599 + - uid: 46776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,10.5 - parent: 2 - - uid: 25722 + pos: 5.472173,3.4806292 + parent: 46584 +- proto: ScrapFirelock1 + entities: + - uid: 26400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,52.5 + pos: 9.545745,57.63207 parent: 2 - - uid: 25723 + - uid: 26401 components: - type: Transform - pos: -3.5,56.5 + rot: -1.5707963267948966 rad + pos: 20.709864,49.516666 parent: 2 - - uid: 25724 + - uid: 46777 components: - type: Transform - pos: -51.5,10.5 - parent: 2 - - uid: 25725 + pos: -0.5691223,10.855942 + parent: 46584 +- proto: ScrapFirelock2 + entities: + - uid: 26402 components: - type: Transform - pos: -51.5,12.5 + pos: 9.56137,56.75707 parent: 2 - - uid: 25726 + - uid: 26403 components: - type: Transform - pos: 2.5,-3.5 + rot: -1.5707963267948966 rad + pos: 20.553614,49.34479 parent: 2 - - uid: 25727 + - uid: 26404 components: - type: Transform - pos: 3.5,-3.5 + pos: 100.935425,2.7466671 parent: 2 - - uid: 25728 + - uid: 46778 components: - type: Transform - pos: -1.5,-2.5 - parent: 2 - - uid: 25729 + pos: -0.7722473,10.137192 + parent: 46584 +- proto: ScrapGlass + entities: + - uid: 26405 components: - type: Transform - pos: -20.5,-62.5 + rot: 3.141592653589793 rad + pos: 100.77884,-39.885338 parent: 2 - - uid: 25730 + - uid: 26406 components: - type: Transform - pos: -1.5,-65.5 + pos: 29.514524,61.44706 parent: 2 - - uid: 25731 + - uid: 26407 components: - type: Transform - pos: -20.5,-57.5 + pos: 18.466751,4.9060597 parent: 2 - - uid: 25732 + - uid: 26408 components: - type: Transform - pos: -6.5,-65.5 + pos: 70.578926,-33.49508 parent: 2 - - uid: 25733 + - uid: 26409 components: - type: Transform - pos: -7.5,-65.5 + rot: 3.141592653589793 rad + pos: 57.44453,21.564018 parent: 2 - - uid: 25734 + - uid: 26410 components: - type: Transform - pos: -20.5,-59.5 + rot: -1.5707963267948966 rad + pos: -18.503742,-26.524649 parent: 2 - - uid: 25735 + - uid: 26411 components: - type: Transform - pos: -20.5,-61.5 + pos: 18.638626,4.6404347 parent: 2 - - uid: 25736 + - uid: 26412 components: - type: Transform - pos: -20.5,-63.5 + rot: 3.141592653589793 rad + pos: -41.28216,-40.99064 parent: 2 - - uid: 25737 + - uid: 26413 components: - type: Transform - pos: -14.5,-65.5 + rot: -1.5707963267948966 rad + pos: -37.96966,-39.912514 parent: 2 - - uid: 25738 + - uid: 26414 components: - type: Transform - pos: -13.5,-65.5 + pos: -39.297787,-41.24064 parent: 2 - - uid: 25739 + - uid: 26415 components: - type: Transform - pos: -15.5,-65.5 + rot: 1.5707963267948966 rad + pos: 52.63071,-29.531963 parent: 2 - - uid: 25740 + - uid: 26416 components: - type: Transform - pos: -17.5,-65.5 + pos: -56.91377,65.11272 parent: 2 - - uid: 25741 + - uid: 26417 components: - type: Transform - pos: -20.5,-58.5 + rot: 3.141592653589793 rad + pos: 97.52884,-40.432213 parent: 2 - - uid: 25742 + - uid: 26418 components: + - type: MetaData + name: схема ретранслятора - type: Transform - pos: -9.5,-65.5 + pos: -63.00795,53.747227 parent: 2 - - uid: 25743 +- proto: ScrapIntercom + entities: + - uid: 26419 components: - type: Transform - pos: -11.5,-65.5 + pos: 69.294685,7.6119137 parent: 2 - - uid: 25744 + - uid: 26420 components: - type: Transform - pos: -10.5,-65.5 + pos: 69.294685,7.6119137 parent: 2 - - uid: 25745 + - uid: 26421 components: - type: Transform - pos: -2.5,-65.5 + rot: -1.5707963267948966 rad + pos: -32.365097,-46.38326 parent: 2 - - uid: 25746 + - uid: 26422 components: - type: Transform - pos: -3.5,-65.5 + rot: -1.5707963267948966 rad + pos: 101.13444,-40.447838 parent: 2 - - uid: 25747 + - uid: 26423 components: - type: Transform - pos: -5.5,-65.5 + rot: 1.5707963267948966 rad + pos: 101.43131,-40.557213 parent: 2 - - uid: 25748 +- proto: ScrapMedkit + entities: + - uid: 26424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,20.5 + pos: 70.391426,-32.33883 parent: 2 - - uid: 25749 + - uid: 26425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-60.5 + pos: 65.569595,14.549084 parent: 2 - - uid: 25750 + - uid: 26426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-65.5 + pos: 97.38085,0.6131401 parent: 2 - - uid: 25751 + - uid: 26427 components: - type: Transform - pos: 76.5,-49.5 + rot: 3.141592653589793 rad + pos: 101.4746,6.285015 parent: 2 - - uid: 25752 + - uid: 26428 components: - type: Transform - pos: 60.5,-34.5 + pos: 25.46398,60.72942 parent: 2 - - uid: 25753 + - uid: 26429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-39.5 + pos: 63.973495,35.6792 parent: 2 - - uid: 25754 + - uid: 26430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-39.5 + rot: 3.141592653589793 rad + pos: 19.603817,45.302254 parent: 2 - - uid: 25755 + - uid: 26431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-65.5 + pos: 41.453857,-27.510317 parent: 2 - - uid: 25756 + - uid: 26432 components: - type: Transform - pos: -22.5,2.5 + rot: 3.141592653589793 rad + pos: 40.692978,-43.50802 parent: 2 - - uid: 25757 + - uid: 26433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-59.5 + pos: 101.71256,-42.729088 parent: 2 - - uid: 25758 + - uid: 43012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 2 - - uid: 25759 + pos: 56.446236,59.785217 + parent: 40599 + - uid: 43013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-62.5 - parent: 2 - - uid: 25760 + rot: 3.141592653589793 rad + pos: 57.5261,26.561739 + parent: 40599 + - uid: 47316 components: - type: Transform - pos: -19.5,2.5 + pos: 1.3585184,1.1556382 + parent: 47245 +- proto: ScrapMopBucket + entities: + - uid: 26434 + components: + - type: Transform + pos: 73.078926,-33.416954 parent: 2 - - uid: 25761 + - uid: 26435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-61.5 + pos: 74.01475,16.974003 parent: 2 - - uid: 25762 + - uid: 26436 components: - type: Transform - pos: -20.5,2.5 + rot: 1.5707963267948966 rad + pos: 57.550667,42.587975 parent: 2 - - uid: 25763 + - uid: 26437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-63.5 + rot: 0.5235987755982988 rad + pos: 49.630764,-19.783087 parent: 2 - - uid: 25764 + - uid: 26438 components: - type: Transform - pos: 60.5,-33.5 + rot: -1.5707963267948966 rad + pos: -36.831333,-32.704124 parent: 2 - - uid: 25765 + - uid: 26439 components: - type: Transform - pos: 60.5,-32.5 + pos: -101.45629,27.376717 parent: 2 - - uid: 25766 +- proto: ScrapPAI + entities: + - uid: 26440 components: - type: Transform - pos: 71.5,-41.5 + pos: 71.828926,-33.52633 parent: 2 - - uid: 25767 + - uid: 26441 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-50.5 + pos: 78.56406,18.458649 parent: 2 - - uid: 25768 + - uid: 26442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + pos: 78.56406,18.458649 parent: 2 - - uid: 25769 + - uid: 26443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-46.5 + pos: 37.411728,-36.023643 parent: 2 - - uid: 25770 +- proto: ScrapPAIGold + entities: + - uid: 26444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-58.5 + pos: 50.65896,-19.454962 parent: 2 - - uid: 25771 + - uid: 26445 components: - type: Transform - pos: -3.5,4.5 + rot: -2.0245819323134224 rad + pos: -34.122192,25.750288 parent: 2 - - uid: 25772 +- proto: ScrapSteel + entities: + - uid: 26446 components: - type: Transform - pos: -1.5,4.5 + rot: 3.141592653589793 rad + pos: 100.34134,-39.369713 parent: 2 - - uid: 25773 + - uid: 43014 components: - type: Transform - pos: 8.5,4.5 - parent: 2 - - uid: 25774 + rot: 1.5707963267948966 rad + pos: 39.40132,56.374565 + parent: 40599 + - uid: 43015 components: - type: Transform - pos: 7.5,4.5 - parent: 2 - - uid: 25775 + rot: 1.5707963267948966 rad + pos: 65.4046,56.607964 + parent: 40599 + - uid: 43016 components: - type: Transform - pos: -0.5,5.5 - parent: 2 - - uid: 25776 + pos: 66.18585,57.99859 + parent: 40599 + - uid: 46779 components: - type: Transform - pos: 6.5,4.5 - parent: 2 - - uid: 25777 + rot: 3.141592653589793 rad + pos: 4.409673,7.699379 + parent: 46584 + - uid: 46780 components: - type: Transform - pos: 0.5,5.5 - parent: 2 - - uid: 25778 + rot: 1.5707963267948966 rad + pos: 4.4059877,8.87016 + parent: 46584 + - uid: 46781 components: - type: Transform - pos: 5.5,5.5 - parent: 2 - - uid: 25779 + rot: 1.5707963267948966 rad + pos: 1.3278627,3.1982853 + parent: 46584 + - uid: 46782 components: - type: Transform - pos: 1.5,6.5 - parent: 2 - - uid: 25780 + pos: 8.484113,4.573285 + parent: 46584 + - uid: 46783 components: - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 25781 + rot: 1.5707963267948966 rad + pos: 8.077863,2.6514103 + parent: 46584 + - uid: 47317 components: - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 25782 + rot: 1.5707963267948966 rad + pos: 4.4522686,0.5618883 + parent: 47245 + - uid: 47318 components: - type: Transform - pos: 4.5,5.5 - parent: 2 - - uid: 25783 + rot: 3.141592653589793 rad + pos: -4.5321064,-0.5474867 + parent: 47245 +- proto: ScrapTube + entities: + - uid: 26447 components: - type: Transform - pos: 3.5,-7.5 + rot: -1.5707963267948966 rad + pos: 29.267258,60.379726 parent: 2 - - uid: 25784 + - uid: 26448 components: - type: Transform - pos: 2.5,-7.5 + rot: 3.141592653589793 rad + pos: 29.626633,56.910976 parent: 2 - - uid: 25785 + - uid: 26449 components: - type: Transform - pos: 1.5,-7.5 + rot: 3.141592653589793 rad + pos: 8.731744,60.58057 parent: 2 - - uid: 25786 + - uid: 26450 components: - type: Transform - pos: 71.5,-38.5 + rot: 3.141592653589793 rad + pos: 36.724228,-39.13302 parent: 2 - - uid: 25787 + - uid: 26451 components: - type: Transform - pos: 78.5,-49.5 + rot: 1.5707963267948966 rad + pos: 36.427353,-39.50802 parent: 2 - - uid: 25788 + - uid: 26452 components: - type: Transform - pos: 79.5,-49.5 + rot: 1.5707963267948966 rad + pos: 42.958603,-45.617393 parent: 2 - - uid: 25789 + - uid: 26453 components: - type: Transform - pos: 77.5,-49.5 + pos: 43.286728,-45.63302 parent: 2 - - uid: 25790 + - uid: 43017 components: - type: Transform - pos: 71.5,-40.5 + pos: 55.74485,26.686739 + parent: 40599 + - uid: 43018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 56.166725,26.483614 + parent: 40599 +- proto: Screen + entities: + - uid: 26454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 103.5,-26.5 parent: 2 - - uid: 25791 + - uid: 26455 components: - type: Transform - pos: 71.5,-37.5 + rot: -1.5707963267948966 rad + pos: 103.5,-36.5 parent: 2 - - uid: 25792 +- proto: Screwdriver + entities: + - uid: 26456 components: - type: Transform - pos: -51.5,6.5 + rot: 3.141592653589793 rad + pos: 12.45331,-13.480621 parent: 2 - - uid: 25793 + - uid: 26457 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,16.5 + pos: 45.533466,-47.98507 parent: 2 - - uid: 25794 + - uid: 26459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,0.5 + parent: 26458 + - type: Physics + canCollide: False +- proto: SecurityTechFab + entities: + - uid: 26460 + components: + - type: Transform + pos: -39.5,-16.5 parent: 2 - - uid: 25795 +- proto: SeedExtractor + entities: + - uid: 26461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,0.5 + pos: -100.5,17.5 parent: 2 - - uid: 25796 + - uid: 26462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,0.5 + pos: 15.5,36.5 parent: 2 - - uid: 25797 +- proto: SeismicCharge + entities: + - uid: 15106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,0.5 + parent: 15104 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.36339092,-8.302514 parent: 2 - - uid: 25798 + - uid: 26464 components: - type: Transform - pos: 0.5,-13.5 + rot: 1.5707963267948966 rad + pos: 0.6133909,-8.302514 parent: 2 - - type: PointLight - color: '#D89FFFFF' - - uid: 25799 + - uid: 26465 components: - type: Transform - pos: 4.5,-13.5 + rot: 1.5707963267948966 rad + pos: 0.44151592,-8.521264 parent: 2 - - type: PointLight - color: '#D89FFFFF' - - uid: 25800 +- proto: ShadowTree01 + entities: + - uid: 26466 components: - type: Transform - pos: 1.5,-13.5 + pos: -6.0212183,-27.092802 parent: 2 - - uid: 25801 +- proto: ShadowTree02 + entities: + - uid: 26467 components: - type: Transform - pos: 3.5,-13.5 + pos: -6.0368433,-23.811552 parent: 2 - - uid: 25802 + - uid: 26468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,20.5 + pos: -13.021218,-23.592802 parent: 2 - - uid: 25803 +- proto: ShadowTree03 + entities: + - uid: 26469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-9.5 + pos: -13.068093,-27.202177 parent: 2 - - uid: 25804 +- proto: ShadowTree04 + entities: + - uid: 26470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-8.5 + pos: -6.1618433,-21.952177 parent: 2 - - uid: 25805 +- proto: ShadowTree06 + entities: + - uid: 26471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-7.5 + pos: -13.099343,-21.936552 parent: 2 - - uid: 25806 + - uid: 26472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 + pos: -3.0700507,49.766674 parent: 2 - - uid: 25807 +- proto: ShardCrystalCyan + entities: + - uid: 26473 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-14.5 + pos: -39.861927,59.579746 parent: 2 - - uid: 25808 + - uid: 26474 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-5.5 + pos: -91.591286,17.580168 parent: 2 - - uid: 25809 + - uid: 26475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-6.5 + pos: -37.111927,57.704746 parent: 2 - - uid: 25810 +- proto: ShardCrystalOrange + entities: + - uid: 26476 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-10.5 + pos: -41.83339,55.630585 parent: 2 - - uid: 25811 + - uid: 26477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 + pos: -50.084972,46.423298 parent: 2 - - uid: 25812 + - uid: 26478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-1.5 + rot: 3.141592653589793 rad + pos: -40.380264,52.568085 parent: 2 - - uid: 25813 + - uid: 26479 components: - type: Transform - pos: -8.5,-57.5 + rot: -1.5707963267948966 rad + pos: -51.881855,52.770638 parent: 2 - - uid: 25814 +- proto: ShardCrystalRed + entities: + - uid: 26480 components: - type: Transform - pos: -19.5,-65.5 + pos: -80.34049,11.818943 parent: 2 - - uid: 25815 + - uid: 26481 components: + - type: MetaData + desc: Осколок кристалла ярко-красного цвета. Он странно теплится у вас в руках. + name: осколок редспейс кристалла - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-57.5 + pos: -47.556717,50.498253 parent: 2 - - uid: 25816 + - type: PointLight + energy: 3 + - type: RadiationSource + slope: 1 + - type: HandTeleporter + portalCreationDelay: 2 + clearPortalsSound: !type:SoundPathSpecifier + path: /Audio/Machines/button.ogg + newPortalSound: !type:SoundPathSpecifier + params: + volume: -2 + path: /Audio/Machines/high_tech_confirm.ogg +- proto: ShardGlass + entities: + - uid: 26482 components: - type: Transform - pos: -6.5,-57.5 + pos: 44.063614,-45.62183 parent: 2 - - uid: 25817 + - uid: 26483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-56.5 + pos: 44.219864,-45.37183 parent: 2 - - uid: 25818 + - uid: 26484 components: - type: Transform - pos: 6.5,-2.5 + pos: 43.82924,-45.262455 parent: 2 - - uid: 25819 + - uid: 26485 components: - type: Transform - pos: -2.5,4.5 + pos: -9.916868,39.926693 parent: 2 - - uid: 25820 + - uid: 26486 components: - type: Transform - pos: 1.5,-3.5 + rot: 1.5707963267948966 rad + pos: 12.471011,64.3754 parent: 2 - - uid: 25821 + - uid: 26487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,4.5 + pos: 12.908511,64.73477 parent: 2 - - uid: 25822 + - uid: 26488 components: + - type: MetaData + desc: Это не гарантийный случай... + name: осколок экрана - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,6.5 + rot: 2.1642082724729685 rad + pos: -33.950813,25.310196 parent: 2 - - uid: 25823 + - uid: 26489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,5.5 + rot: 3.141592653589793 rad + pos: -30.275948,-68.95973 parent: 2 - - uid: 25824 + - uid: 26490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,7.5 + pos: -31.220394,-65.04307 parent: 2 - - uid: 25825 + - uid: 26491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,7.5 + pos: -36.79892,-67.27918 parent: 2 - - uid: 25826 + - uid: 26492 components: - type: Transform - pos: 13.5,-18.5 + pos: -38.09059,-71.03817 parent: 2 - - uid: 25827 + - uid: 26493 components: - type: Transform - pos: 15.5,-18.5 + rot: 3.141592653589793 rad + pos: -36.854477,-71.802055 parent: 2 - - uid: 25828 + - uid: 26494 components: - type: Transform - pos: 10.5,-18.5 + rot: 3.141592653589793 rad + pos: -37.8267,-73.21873 parent: 2 - - uid: 25829 + - uid: 26495 components: - type: Transform - pos: 9.5,-18.5 + rot: 1.5707963267948966 rad + pos: -33.661697,-69.677055 parent: 2 - - uid: 25830 + - uid: 26496 components: - type: Transform - pos: 14.5,-18.5 + rot: 3.141592653589793 rad + pos: 99.919464,-39.979088 parent: 2 - - uid: 25831 + - uid: 26497 components: - type: Transform - pos: 12.5,-18.5 + rot: 1.5707963267948966 rad + pos: 100.74759,-40.463463 parent: 2 - - uid: 25832 + - uid: 26498 components: - type: Transform - pos: 11.5,-18.5 + pos: 100.35136,-38.339855 parent: 2 - - uid: 25833 + - uid: 26499 components: - type: Transform - pos: 67.5,-25.5 + rot: -1.5707963267948966 rad + pos: 101.25761,-38.60548 parent: 2 - - uid: 25834 + - uid: 26500 components: - type: Transform - pos: 69.5,-25.5 + rot: -1.5707963267948966 rad + pos: 101.17948,-37.871105 parent: 2 - - uid: 25835 + - uid: 43019 components: - type: Transform - pos: 65.5,-28.5 - parent: 2 - - uid: 25836 + rot: -1.5707963267948966 rad + pos: 55.36811,60.253967 + parent: 40599 + - uid: 43020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-25.5 - parent: 2 - - uid: 25837 + rot: 3.141592653589793 rad + pos: 55.27436,59.597717 + parent: 40599 + - uid: 43021 components: - type: Transform - pos: 69.5,-50.5 - parent: 2 - - uid: 25838 + rot: -1.5707963267948966 rad + pos: 42.57836,35.760033 + parent: 40599 +- proto: ShardGlassPlasma + entities: + - uid: 47319 components: - type: Transform - pos: 67.5,-50.5 - parent: 2 - - uid: 25839 + pos: -1.1505343,2.6869307 + parent: 47245 + - uid: 47320 components: - type: Transform - pos: -39.5,2.5 - parent: 2 - - uid: 25840 + rot: -1.5707963267948966 rad + pos: -0.29115915,3.2181807 + parent: 47245 +- proto: ShardGlassReinforced + entities: + - uid: 26501 components: - type: Transform - pos: -41.5,-1.5 + pos: 13.279766,51.568233 parent: 2 - - uid: 25841 + - uid: 26502 components: - type: Transform - pos: -43.5,-1.5 + pos: 13.201641,51.08386 parent: 2 - - uid: 25842 + - uid: 43022 components: - type: Transform - pos: -10.5,-13.5 - parent: 2 - - uid: 25843 + rot: 0.4188790204786391 rad + pos: 42.75895,83.5385 + parent: 40599 + - uid: 43023 components: - type: Transform - pos: -9.5,-13.5 - parent: 2 - - uid: 25844 + rot: -1.7278759594743862 rad + pos: 43.649574,84.24162 + parent: 40599 + - uid: 43024 components: - type: Transform - pos: -7.5,-13.5 - parent: 2 - - uid: 25845 + rot: 3.8920842319473548 rad + pos: 44.305824,82.67912 + parent: 40599 + - uid: 43025 components: - type: Transform - pos: -6.5,-13.5 - parent: 2 - - uid: 25846 + rot: 2.2165681500327987 rad + pos: 39.20643,73.4142 + parent: 40599 + - uid: 43026 + components: + - type: Transform + rot: -0.4537856055185257 rad + pos: 39.909554,73.4142 + parent: 40599 +- proto: SheetGlass + entities: + - uid: 15900 + components: + - type: Transform + parent: 15899 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,1.5 - parent: 2 - - uid: 25847 + parent: 15899 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,0.5 + pos: -1.8239937,-38.258694 parent: 2 - - uid: 25848 + - uid: 26504 components: - type: Transform - pos: -27.5,-1.5 + pos: 1.4601965,-53.45498 parent: 2 - - uid: 25849 +- proto: SheetGlass10 + entities: + - uid: 15907 components: - type: Transform - pos: -30.5,-1.5 - parent: 2 - - uid: 25850 + parent: 15906 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-17.5 + pos: 21.5,-36.5 parent: 2 - - uid: 25851 + - uid: 26506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-14.5 + pos: 27.731052,-10.438164 parent: 2 - - uid: 25852 + - uid: 26507 components: - type: Transform - pos: 76.5,-32.5 + pos: 39.5,-52.5 parent: 2 - - uid: 25853 + - uid: 26508 components: - type: Transform - pos: 76.5,-34.5 + pos: -20.434984,57.676792 parent: 2 - - uid: 25854 + - uid: 26509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-13.5 + pos: -28.454178,-31.355892 parent: 2 - - uid: 25855 + - uid: 26510 components: - type: Transform - pos: 76.5,-33.5 + pos: 56.530476,-15.413422 parent: 2 - - uid: 25856 + - uid: 26511 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,14.5 + pos: -41.58834,65.55849 parent: 2 - - uid: 25857 +- proto: SheetPlasma + entities: + - uid: 15875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-16.5 - parent: 2 - - uid: 25858 + parent: 15874 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,14.5 + pos: 14.502623,-40.499435 parent: 2 - - uid: 25859 +- proto: SheetPlasma1 + entities: + - uid: 26513 components: - type: Transform - pos: -51.5,4.5 + pos: -8.380107,42.6411 parent: 2 - - uid: 25860 +- proto: SheetPlasteel + entities: + - uid: 26514 components: - type: Transform - pos: -51.5,2.5 + pos: 6.1622324,-44.394814 parent: 2 - - uid: 25861 +- proto: SheetPlasteel1 + entities: + - uid: 26515 components: - type: Transform - pos: -51.5,1.5 + rot: 1.5707963267948966 rad + pos: 101.46634,-40.447838 parent: 2 - - uid: 25862 + - uid: 43027 components: - type: Transform - pos: -51.5,3.5 - parent: 2 - - uid: 25863 + rot: 0.3839724354387525 rad + pos: 54.418564,69.49234 + parent: 40599 +- proto: SheetPlasteel10 + entities: + - uid: 43028 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,14.5 - parent: 2 - - uid: 25864 + pos: 68.340775,62.74431 + parent: 40599 +- proto: SheetPlastic + entities: + - uid: 15902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,14.5 - parent: 2 - - uid: 25865 + parent: 15899 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,14.5 - parent: 2 - - uid: 25866 + parent: 15899 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,14.5 + pos: -1.6247315,-38.256447 parent: 2 - - uid: 25867 +- proto: SheetPlastic10 + entities: + - uid: 15908 components: - type: Transform - pos: -51.5,5.5 - parent: 2 - - uid: 25868 + parent: 15906 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26517 components: - type: Transform - pos: -35.5,-14.5 + pos: 21.5,-36.5 parent: 2 - - uid: 25869 + - uid: 26518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,68.5 + pos: 27.606052,-10.344414 parent: 2 - - uid: 25870 + - uid: 26519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,70.5 + pos: -20.60686,57.723667 parent: 2 - - uid: 25871 + - uid: 26520 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,71.5 + pos: 30.61314,47.49514 parent: 2 - - uid: 25872 +- proto: SheetRGlass + entities: + - uid: 26521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,71.5 + pos: 6.7403574,-44.59794 parent: 2 - - uid: 25873 + - uid: 43029 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-1.5 - parent: 2 - - uid: 25874 + pos: 68.69083,62.423363 + parent: 40599 +- proto: SheetSteel + entities: + - uid: 15904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-1.5 - parent: 2 - - uid: 25875 + parent: 15899 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15905 components: - type: Transform - pos: -27.5,-12.5 - parent: 2 - - uid: 25876 + parent: 15899 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26522 components: - type: Transform - pos: -11.5,51.5 + pos: 0.541487,-53.363113 parent: 2 - - uid: 25877 + - uid: 26523 components: - type: Transform - pos: -3.5,42.5 + pos: -2.1675568,-38.352444 parent: 2 - - uid: 25878 + - uid: 26524 components: - type: Transform - pos: -3.5,41.5 + pos: 0.43211198,-53.37874 parent: 2 - - uid: 25879 + - uid: 26525 components: - type: Transform - pos: -3.5,40.5 + pos: 0.44773698,-53.519363 parent: 2 - - uid: 25880 + - uid: 26526 components: - type: Transform - pos: 0.5,36.5 + pos: -12.418163,-52.448612 parent: 2 - - uid: 25881 +- proto: SheetSteel1 + entities: + - uid: 26527 components: - type: Transform - pos: 39.5,-31.5 + rot: -1.5707963267948966 rad + pos: -54.059372,67.57281 parent: 2 - - uid: 25882 + - uid: 26528 components: - type: Transform - pos: -3.5,58.5 + rot: 3.141592653589793 rad + pos: -54.090622,66.57281 parent: 2 - - uid: 25883 + - uid: 26529 components: - type: Transform - pos: -3.5,57.5 + pos: -56.783867,64.60854 parent: 2 - - uid: 25884 + - uid: 26530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-32.5 + pos: -56.028122,65.83843 parent: 2 - - uid: 25885 + - uid: 26531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-31.5 + pos: -56.903122,66.60406 parent: 2 - - uid: 25886 + - uid: 26532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 + rot: 3.141592653589793 rad + pos: 42.39613,-41.467564 parent: 2 - - uid: 25887 + - uid: 26533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-49.5 + pos: 39.505505,-36.717594 parent: 2 - - uid: 25888 + - uid: 26534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-50.5 + rot: 3.141592653589793 rad + pos: 44.52113,-37.38944 parent: 2 - - type: PointLight - softness: 3 - energy: 7 - color: '#FF8227FF' - radius: 10 - - uid: 25889 + - uid: 26535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-40.5 + pos: 40.018497,-36.47605 parent: 2 - - type: PointLight - softness: 3 - energy: 7 - color: '#FF8227FF' - radius: 10 - - uid: 25890 + - uid: 26536 components: - type: Transform rot: 3.141592653589793 rad - pos: -114.5,23.5 + pos: 39.64613,-40.88944 parent: 2 - - uid: 25891 + - uid: 26537 components: - type: Transform rot: 3.141592653589793 rad - pos: -114.5,19.5 + pos: 42.068005,-40.48319 parent: 2 - - uid: 25892 + - uid: 26538 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,20.5 + pos: 43.099255,-40.35819 parent: 2 - - uid: 25893 + - uid: 26539 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,19.5 + pos: 43.630505,-39.42069 parent: 2 - - uid: 25894 + - uid: 26540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,21.5 + pos: 39.737247,-36.366676 parent: 2 - - uid: 25895 + - uid: 26541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,15.5 + pos: 42.76674,-42.512455 parent: 2 - - uid: 25896 + - uid: 26542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,4.5 + pos: 39.505505,-36.030094 parent: 2 - - uid: 25897 + - uid: 26543 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,5.5 + pos: 16.565926,61.662376 parent: 2 - - uid: 25898 + - uid: 26544 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,6.5 + pos: 100.388214,-40.025963 parent: 2 - - uid: 25899 + - uid: 46159 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,7.5 - parent: 2 - - uid: 25900 + pos: -2.5,3.5 + parent: 45355 + - uid: 46160 components: - type: Transform - pos: -118.5,20.5 - parent: 2 - - uid: 25901 + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 45355 +- proto: SheetSteel10 + entities: + - uid: 15909 components: - type: Transform - pos: -118.5,24.5 - parent: 2 - - uid: 25902 + parent: 15906 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 26545 components: - type: Transform - pos: -118.5,16.5 + pos: 21.5,-36.5 parent: 2 - - uid: 25903 + - uid: 26546 components: - type: Transform - pos: 71.5,-45.5 + pos: 27.434177,-10.281914 parent: 2 - - uid: 25904 + - uid: 26547 components: - type: Transform - pos: -16.5,23.5 + pos: 39.5,-52.5 parent: 2 - - uid: 25905 + - uid: 26548 components: - type: Transform - pos: -16.5,25.5 + pos: -47.55656,-22.239029 parent: 2 - - uid: 25906 + - uid: 26549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,17.5 + rot: 1.5707963267948966 rad + pos: -41.416466,65.69911 parent: 2 - - uid: 25907 + - uid: 43030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,69.5 - parent: 2 - - uid: 25908 + pos: 28.737438,69.60604 + parent: 40599 + - uid: 43031 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,69.5 - parent: 2 - - uid: 25909 + pos: 68.72208,62.860863 + parent: 40599 +- proto: SheetUranium + entities: + - uid: 15876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,69.5 - parent: 2 - - uid: 25910 + parent: 15874 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetUranium1 + entities: + - uid: 26550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,69.5 + pos: -54.449997,65.55718 parent: 2 - - uid: 25911 + - uid: 26551 components: - type: Transform - pos: -112.5,0.5 + pos: -54.449997,65.60406 parent: 2 - - uid: 25912 + - uid: 26552 components: - type: Transform - pos: -113.5,0.5 + pos: -56.043747,66.71343 parent: 2 - - uid: 25913 + - uid: 26553 components: - type: Transform rot: -1.5707963267948966 rad - pos: 103.5,-23.5 + pos: -54.606247,67.07281 parent: 2 - - uid: 25914 + - uid: 43032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 2 - - uid: 42575 + pos: 28.503063,69.586044 + parent: 40599 + - type: Stack + count: 4 +- proto: ShelfBar + entities: + - uid: 17702 components: - type: Transform - pos: 65.5,76.5 - parent: 40203 - - uid: 42576 + pos: -79.5,19.5 + parent: 2 + - type: Storage + storedItems: + 17705: + position: 1,0 + _rotation: South + 17703: + position: 1,3 + _rotation: South + 17704: + position: 5,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 17704 + - 17703 + - 17705 +- proto: ShelfWood + entities: + - uid: 8603 components: - type: Transform - pos: 62.5,76.5 - parent: 40203 - - uid: 42577 + rot: -1.5707963267948966 rad + pos: -73.5,16.5 + parent: 2 + - type: Storage + storedItems: + 8604: + position: 0,3 + _rotation: South + 8610: + position: 2,3 + _rotation: South + 8606: + position: 0,0 + _rotation: South + 8607: + position: 0,1 + _rotation: South + 8605: + position: 1,0 + _rotation: South + 8608: + position: 2,0 + _rotation: South + 8609: + position: 3,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 8604 + - 8610 + - 8606 + - 8607 + - 8605 + - 8608 + - 8609 +- proto: ShellShotgun + entities: + - uid: 26554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,76.5 - parent: 40203 - - uid: 42578 + pos: -77.53578,16.715826 + parent: 2 + - type: CartridgeAmmo + spent: True + missingComponents: + - DamageOnHighSpeedImpact + - uid: 26555 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.5,76.5 - parent: 40203 - - uid: 42579 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,74.5 - parent: 40203 - - uid: 42580 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,75.5 - parent: 40203 - - uid: 42581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,45.5 - parent: 40203 - - uid: 42582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,45.5 - parent: 40203 -- proto: ReinforcedWindowDiagonal - entities: - - uid: 25915 + pos: 55.45285,33.645626 + parent: 2 + - uid: 26556 components: - type: Transform - pos: -1.5,5.5 + rot: 1.5707963267948966 rad + pos: 55.723682,31.458126 parent: 2 - - uid: 25916 + - uid: 26557 components: - type: Transform - pos: 0.5,6.5 + rot: 3.141592653589793 rad + pos: 52.89035,32.958126 parent: 2 - - uid: 25917 + - uid: 26558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,6.5 + rot: -0.7504915783575618 rad + pos: -78.7448,17.291021 parent: 2 - - uid: 25918 + - type: CartridgeAmmo + spent: True + - uid: 26559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 + rot: 1.8675022996339325 rad + pos: -78.463646,17.722004 parent: 2 -- proto: RemoteSignaller + - type: CartridgeAmmo + spent: True +- proto: ShellShotgunBeanbag entities: - - uid: 25919 + - uid: 26560 components: - type: Transform - pos: 38.41338,-48.329163 + rot: 3.141592653589793 rad + pos: 24.3758,-3.5125403 parent: 2 - - uid: 25920 + - uid: 26561 components: - type: Transform - pos: 38.741505,-48.235413 + rot: 3.141592653589793 rad + pos: 24.547674,-3.5594153 parent: 2 -- proto: ResearchAndDevelopmentServer +- proto: ShellShotgunIncendiary entities: - - uid: 25921 + - uid: 43033 components: - type: Transform - pos: 35.5,-54.5 - parent: 2 -- proto: ResearchDisk - entities: - - uid: 15632 + rot: 3.9269908169872414 rad + pos: 37.595787,80.45 + parent: 40599 + - uid: 43034 components: - type: Transform - parent: 15631 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RevolverCapGun - entities: - - uid: 14921 + rot: 3.9269908169872414 rad + pos: 37.752037,80.44682 + parent: 40599 + - uid: 43035 components: - type: Transform - parent: 14916 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25922 + rot: 4.014257279586958 rad + pos: 37.939537,80.44807 + parent: 40599 +- proto: ShellShotgunSlug + entities: + - uid: 43036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.49824,17.575611 - parent: 2 - - uid: 25923 + pos: 42.36847,76.683044 + parent: 40599 + - uid: 43037 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.227972,-20.935272 - parent: 2 - - uid: 25924 + pos: 41.915344,78.651794 + parent: 40599 +- proto: ShippingContainerBlank + entities: + - uid: 26562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.387802,27.051956 + pos: -106.5,50.5 parent: 2 - - uid: 42583 +- proto: ShippingContainerConarex + entities: + - uid: 26563 components: - type: Transform - rot: 0.8203047484373349 rad - pos: 41.432594,79.269844 - parent: 40203 -- proto: RiotBulletShield + pos: 56.5,-43.5 + parent: 2 +- proto: ShippingContainerCybersun entities: - - uid: 42584 + - uid: 46784 components: - type: Transform - rot: 1.8849555921538759 rad - pos: 41.05597,76.85492 - parent: 40203 -- proto: RobustHarvestChemistryBottle + pos: -5.5,4.5 + parent: 46584 +- proto: ShippingContainerDeforest entities: - - uid: 14828 + - uid: 26564 components: - type: Transform - parent: 14826 - - type: Physics - canCollide: False - - uid: 25925 + pos: 56.5,-40.5 + parent: 2 + - uid: 26565 components: - type: Transform - pos: 7.6055145,32.600613 + pos: -114.5,46.5 parent: 2 -- proto: RockGuitarInstrument +- proto: ShippingContainerKahraman entities: - - uid: 25926 + - uid: 26566 components: - type: Transform - pos: 53.542038,-7.429006 + pos: -107.5,49 parent: 2 -- proto: RollerBed - entities: - - uid: 25927 + - uid: 26567 components: - type: Transform - pos: -54.32946,13.607117 + pos: 56.5,-37.5 parent: 2 -- proto: RollerBedSpawnFolded +- proto: ShippingContainerKosmologistika entities: - - uid: 25928 + - uid: 26568 components: - type: Transform - pos: 1.4292179,54.718872 + pos: -109.5,50 parent: 2 -- proto: RollingPin +- proto: ShippingContainerNakamura entities: - - uid: 8209 - components: - - type: Transform - parent: 8201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25929 + - uid: 46785 components: - type: Transform - pos: 32.440063,34.49218 - parent: 2 -- proto: RubberneckGlass + pos: -6.5,5.5 + parent: 46584 +- proto: ShippingContainerNanotrasen entities: - - uid: 25930 + - uid: 26569 components: - type: Transform - pos: 12.531928,-3.5038266 + pos: -115.5,45.5 parent: 2 -- proto: RubberStampApproved +- proto: ShippingContainerVitezstvi entities: - - uid: 25931 + - uid: 26570 components: - - type: MetaData - name: печать "ОДОБРЕНО" - type: Transform - pos: -3.6248074,-12.01973 + pos: 58.5,-42.5 parent: 2 - - type: Stamp - stampedName: Заебись! - - uid: 25932 +- proto: ShotGunCabinetFilled + entities: + - uid: 26571 components: - type: Transform - pos: 65.37227,-38.7416 + pos: -37.5,-10.5 parent: 2 - - uid: 25933 + - uid: 26572 components: - type: Transform - pos: 74.78042,-38.134106 + rot: 3.141592653589793 rad + pos: 13.5,-6.5 parent: 2 -- proto: RubberStampDenied +- proto: ShotGunCabinetOpen entities: - - uid: 25934 + - uid: 26573 components: - type: MetaData - name: печать "ОТКАЗАНО" + desc: Жаль нет ружья! + name: шкаф для дробовика - type: Transform - pos: -3.3647175,-11.886908 + rot: 1.5707963267948966 rad + pos: -80.5,18.5 parent: 2 - - type: Stamp - stampedName: Хуйня, переделывай! - - uid: 25935 +- proto: Shovel + entities: + - uid: 8610 components: - type: Transform - pos: 65.68477,-38.77285 - parent: 2 - - uid: 25936 + parent: 8603 + - type: Physics + canCollide: False + - uid: 26574 components: - type: Transform - pos: 74.88979,-38.39973 + pos: -61.57611,65.617744 parent: 2 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 25937 + - uid: 26575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,5.5 + rot: 1.5707963267948966 rad + pos: 74.375885,-48.500843 parent: 2 - - uid: 25938 + - uid: 26576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,27.5 + pos: -46.418274,34.47845 parent: 2 - - uid: 25939 + - uid: 26577 components: - type: Transform - pos: -56.5,43.5 + pos: -14.028751,25.702032 parent: 2 - - uid: 25940 + - uid: 43038 components: - type: Transform - pos: -91.5,12.5 - parent: 2 - - uid: 25941 + rot: -0.5934119456780721 rad + pos: 48.24816,70.53787 + parent: 40599 +- proto: ShuttersFrame + entities: + - uid: 26578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,53.5 + pos: 39.5,-37.5 parent: 2 - - uid: 42585 + - uid: 43039 components: - type: Transform - pos: 39.5,56.5 - parent: 40203 - - uid: 42586 + pos: 52.5,64.5 + parent: 40599 + missingComponents: + - Pullable + - uid: 43040 components: - type: Transform - pos: 58.5,63.5 - parent: 40203 - - uid: 42587 + pos: 50.5,58.5 + parent: 40599 + missingComponents: + - Pullable + - uid: 43041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,53.5 - parent: 40203 - - uid: 42588 + pos: 45.5,67.5 + parent: 40599 + missingComponents: + - Pullable +- proto: ShuttersNormal + entities: + - uid: 26579 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,83.5 - parent: 40203 - - uid: 42589 + pos: -117.5,42.5 + parent: 2 + - uid: 26580 components: - type: Transform - pos: 74.5,73.5 - parent: 40203 - - uid: 42590 + pos: 17.5,26.5 + parent: 2 + - uid: 26581 components: - type: Transform - pos: 53.5,44.5 - parent: 40203 - - uid: 42591 + pos: 16.5,26.5 + parent: 2 + - uid: 26582 components: - type: Transform - pos: 49.5,37.5 - parent: 40203 - - uid: 42592 + pos: 15.5,26.5 + parent: 2 + - uid: 26583 components: - type: Transform - pos: 64.5,36.5 - parent: 40203 - - uid: 42593 + pos: 10.5,-14.5 + parent: 2 + - uid: 26584 components: - type: Transform - pos: 37.5,21.5 - parent: 40203 - - uid: 42594 + pos: 11.5,-14.5 + parent: 2 + - uid: 26585 components: - type: Transform - pos: 37.5,30.5 - parent: 40203 - - uid: 42595 + pos: 12.5,-14.5 + parent: 2 + - uid: 26586 components: - type: Transform - pos: 56.5,22.5 - parent: 40203 - - uid: 42596 + pos: 4.5,29.5 + parent: 2 + - uid: 26587 components: - type: Transform - pos: 71.5,23.5 - parent: 40203 - - uid: 42597 + pos: 3.5,29.5 + parent: 2 + - uid: 26588 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,41.5 - parent: 40203 - - uid: 42598 + pos: -10.5,68.5 + parent: 2 + - uid: 26589 components: - type: Transform rot: 1.5707963267948966 rad - pos: 82.5,38.5 - parent: 40203 - - uid: 45801 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 44970 - - uid: 45802 - components: - - type: Transform - pos: 7.5,8.5 - parent: 44970 - - uid: 45803 - components: - - type: Transform - pos: -5.5,13.5 - parent: 44970 -- proto: SalvageLootSpawner - entities: - - uid: 45804 - components: - - type: Transform - pos: 6.5,9.5 - parent: 44970 - - uid: 45805 - components: - - type: Transform - pos: -1.5,16.5 - parent: 44970 -- proto: SalvageMaterialCrateSpawner - entities: - - uid: 25942 + pos: -10.5,70.5 + parent: 2 + - uid: 26590 components: - type: Transform - pos: -63.5,28.5 + pos: -9.5,71.5 parent: 2 - - uid: 25943 + - uid: 26591 components: - type: Transform - pos: -57.5,32.5 + pos: -7.5,71.5 parent: 2 - - uid: 25944 + - uid: 26592 components: - type: Transform - pos: -46.5,38.5 + rot: 1.5707963267948966 rad + pos: 25.5,-31.5 parent: 2 - - uid: 25945 + - uid: 26593 components: - type: Transform - pos: -39.5,33.5 + rot: 1.5707963267948966 rad + pos: 25.5,-32.5 parent: 2 -- proto: SalvageSpawnerEquipment - entities: - - uid: 25946 + - uid: 26594 components: - type: Transform rot: 1.5707963267948966 rad - pos: 92.5,-32.5 + pos: 25.5,-33.5 parent: 2 - - uid: 42599 + - uid: 26595 components: - type: Transform - pos: 53.5,51.5 - parent: 40203 - - uid: 42600 + rot: -1.5707963267948966 rad + pos: -117.5,43.5 + parent: 2 + - uid: 43042 components: - type: Transform - pos: 66.5,70.5 - parent: 40203 -- proto: SalvageSpawnerScrapCommon - entities: - - uid: 25947 + pos: 43.5,67.5 + parent: 40599 + - uid: 43043 components: - type: Transform - pos: 90.5,-37.5 - parent: 2 - - uid: 25948 + pos: 60.5,53.5 + parent: 40599 + - uid: 43044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-46.5 - parent: 2 - - uid: 25949 + pos: 59.5,53.5 + parent: 40599 + - uid: 43045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-45.5 - parent: 2 - - uid: 25950 + pos: 50.5,64.5 + parent: 40599 + - uid: 43046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-43.5 - parent: 2 - - uid: 25951 + rot: 1.5707963267948966 rad + pos: 39.5,62.5 + parent: 40599 + - uid: 43047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-42.5 - parent: 2 - - uid: 25952 + rot: 1.5707963267948966 rad + pos: 39.5,61.5 + parent: 40599 + - uid: 43048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-38.5 - parent: 2 - - uid: 42601 + pos: 55.5,67.5 + parent: 40599 + - uid: 43049 components: - type: Transform - pos: 49.5,59.5 - parent: 40203 - - uid: 42602 + pos: 50.5,75.5 + parent: 40599 + - uid: 43050 components: - type: Transform - pos: 52.5,57.5 - parent: 40203 - - uid: 42603 + pos: 52.5,75.5 + parent: 40599 + - uid: 43051 components: - type: Transform - pos: 63.5,66.5 - parent: 40203 - - uid: 42604 + pos: 51.5,75.5 + parent: 40599 + - uid: 43052 components: - type: Transform - pos: 66.5,62.5 - parent: 40203 - - uid: 42605 + rot: -1.5707963267948966 rad + pos: 70.5,74.5 + parent: 40599 + - uid: 43053 components: - type: Transform - pos: 60.5,57.5 - parent: 40203 -- proto: SalvageSpawnerScrapCommon75 + pos: 44.5,67.5 + parent: 40599 +- proto: ShuttersNormalOpen entities: - - uid: 42606 - components: - - type: Transform - pos: 56.5,51.5 - parent: 40203 - - uid: 42607 + - uid: 26596 components: - type: Transform - pos: 56.5,70.5 - parent: 40203 - - uid: 42608 + pos: -5.5,-13.5 + parent: 2 + - uid: 26597 components: - type: Transform - pos: 58.5,68.5 - parent: 40203 - - uid: 42609 + rot: 1.5707963267948966 rad + pos: -16.5,25.5 + parent: 2 + - uid: 26598 components: - type: Transform - pos: 62.5,71.5 - parent: 40203 - - uid: 42610 + rot: 1.5707963267948966 rad + pos: -16.5,23.5 + parent: 2 + - uid: 26599 components: - type: Transform - pos: 63.5,68.5 - parent: 40203 - - uid: 42611 + rot: 1.5707963267948966 rad + pos: -3.5,57.5 + parent: 2 + - uid: 26600 components: - type: Transform - pos: 67.5,54.5 - parent: 40203 - - uid: 42612 + rot: 1.5707963267948966 rad + pos: -3.5,58.5 + parent: 2 + - uid: 26601 components: - type: Transform - pos: 57.5,55.5 - parent: 40203 - - uid: 42613 + rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + - uid: 26602 components: - type: Transform - pos: 63.5,51.5 - parent: 40203 -- proto: SalvageSpawnerScrapValuable - entities: - - uid: 25953 + pos: -115.5,9.5 + parent: 2 + - uid: 26603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-33.5 + pos: -10.5,-13.5 parent: 2 - - uid: 42614 + - uid: 26604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,53.5 - parent: 40203 - - uid: 42615 + pos: -9.5,-13.5 + parent: 2 + - uid: 26605 components: - type: Transform - pos: 51.5,63.5 - parent: 40203 -- proto: SalvageSpawnerScrapValuable75 - entities: - - uid: 42616 + pos: -7.5,-13.5 + parent: 2 + - uid: 26606 components: - type: Transform - pos: 57.5,65.5 - parent: 40203 -- proto: SalvageSpawnerTreasureValuable - entities: - - uid: 42617 + pos: -6.5,-13.5 + parent: 2 + - uid: 26607 components: - type: Transform - pos: 61.5,63.5 - parent: 40203 -- proto: Saw - entities: - - uid: 25954 + pos: -43.5,-1.5 + parent: 2 + - uid: 26608 components: - type: Transform - pos: -26.41361,42.660713 + pos: -41.5,-1.5 parent: 2 - - uid: 25955 + - uid: 26609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.094624,44.535408 + rot: 1.5707963267948966 rad + pos: -39.5,0.5 parent: 2 -- proto: SawAdvanced - entities: - - uid: 23421 + - uid: 26610 components: - type: Transform - parent: 23420 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Scalpel - entities: - - uid: 25956 + rot: 1.5707963267948966 rad + pos: -39.5,1.5 + parent: 2 + - uid: 26611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.604689,8.576597 + rot: 1.5707963267948966 rad + pos: -39.5,2.5 parent: 2 - - uid: 25957 + - uid: 26612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.379175,44.580284 + pos: -30.5,-1.5 parent: 2 -- proto: ScalpelAdvanced - entities: - - uid: 25958 + - uid: 26613 components: - type: Transform - pos: -24.401966,42.662052 + pos: -29.5,-1.5 parent: 2 -- proto: ScalpelLaser - entities: - - uid: 25959 + - uid: 26614 components: - type: Transform - pos: -4.524184,57.261887 + pos: -28.5,-1.5 parent: 2 -- proto: ScalpelShiv - entities: - - uid: 24242 + - uid: 26615 components: - type: Transform - parent: 24241 - - type: Physics - canCollide: False - - uid: 25960 + pos: -27.5,-1.5 + parent: 2 + - uid: 26616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.28943,2.0233011 + pos: -32.5,-1.5 parent: 2 - - uid: 42618 + - uid: 26617 components: - type: Transform - pos: 36.417595,68.6306 - parent: 40203 -- proto: SciFlash - entities: - - uid: 41165 + pos: -34.5,-1.5 + parent: 2 + - uid: 26618 components: - type: Transform - parent: 41160 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41166 + pos: -20.5,2.5 + parent: 2 + - uid: 26619 components: - type: Transform - parent: 41160 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ScrapAirlock1 - entities: - - uid: 25961 + pos: -19.5,2.5 + parent: 2 + - uid: 26620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.50161,32.655632 + pos: -22.5,2.5 parent: 2 - - uid: 25962 + - uid: 26621 components: - type: Transform - pos: 70.57218,-30.730766 + rot: 1.5707963267948966 rad + pos: -3.5,42.5 parent: 2 - - uid: 25963 + - uid: 26622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.673485,32.186882 + pos: -3.5,41.5 parent: 2 -- proto: ScrapAirlock2 - entities: - - uid: 25964 + - uid: 26623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.767235,32.94939 + rot: 1.5707963267948966 rad + pos: -3.5,40.5 parent: 2 -- proto: ScrapBucket - entities: - - uid: 25965 + - uid: 26624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.906853,22.797617 + pos: -8.5,45.5 parent: 2 - - uid: 25966 + - uid: 26625 components: - type: Transform - pos: 56.903328,26.95197 + pos: -7.5,45.5 parent: 2 - - uid: 25967 + - uid: 26626 components: - type: Transform - pos: 1.464921,32.309586 + pos: -113.5,9.5 parent: 2 -- proto: ScrapCamera - entities: - - uid: 25968 + - uid: 26627 components: - type: Transform - pos: 23.518099,61.610638 + pos: -114.5,9.5 parent: 2 - - uid: 25969 + - uid: 26628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.900718,63.973022 + pos: -112.5,9.5 parent: 2 - - uid: 25970 + - uid: 26629 components: - type: Transform - pos: 8.315161,65.75427 + pos: 27.5,-50.5 parent: 2 - - uid: 25971 + - uid: 26630 components: - type: Transform - pos: 44.303486,29.777037 + pos: 28.5,-50.5 parent: 2 - - uid: 25972 + - uid: 26631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.733337,34.32181 + pos: 29.5,-50.5 parent: 2 - - uid: 25973 + - uid: 26632 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.35094,27.719748 + rot: -1.5707963267948966 rad + pos: -0.5,-50.5 parent: 2 - - uid: 25974 + - uid: 26633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.060844,14.306746 + rot: -1.5707963267948966 rad + pos: -0.5,-47.5 parent: 2 - - uid: 25975 + - uid: 26634 components: - type: Transform - pos: 61.36187,-6.816493 + rot: -1.5707963267948966 rad + pos: -0.5,-46.5 parent: 2 - - uid: 25976 + - uid: 26635 components: - type: Transform - pos: -50.996513,-40.83624 + pos: 71.5,-37.5 parent: 2 - - uid: 25977 + - uid: 26636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.684483,-42.20428 + pos: 71.5,-38.5 parent: 2 -- proto: ScrapCanister1 - entities: - - uid: 25978 + - uid: 26637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.80788,18.327133 + pos: 71.5,-40.5 parent: 2 - - uid: 25979 + - uid: 26638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.192978,-38.867393 + pos: 71.5,-41.5 parent: 2 -- proto: ScrapCanister2 - entities: - - uid: 25980 + - uid: 26639 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.921265,1.0311702 + pos: -3.5,56.5 parent: 2 - - uid: 25981 + - uid: 43054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.104755,18.764633 - parent: 2 - - uid: 25982 + pos: 58.5,53.5 + parent: 40599 + - uid: 43055 components: - type: Transform - pos: -18.67363,-54.688473 - parent: 2 - - uid: 25983 + rot: 3.141592653589793 rad + pos: 51.5,58.5 + parent: 40599 + - uid: 43056 + components: + - type: Transform + pos: 51.5,64.5 + parent: 40599 + - uid: 43057 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.114853,-38.32052 - parent: 2 -- proto: ScrapCloset + pos: 52.5,58.5 + parent: 40599 + - uid: 43058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,60.5 + parent: 40599 + - uid: 43059 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 70.5,75.5 + parent: 40599 +- proto: ShuttersRadiation entities: - - uid: 25984 + - uid: 26640 components: - type: Transform - pos: 10.468136,61.522694 + pos: -23.5,-39.5 parent: 2 - - uid: 25985 + - uid: 26641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.492,37.557377 + pos: -21.5,-39.5 parent: 2 - - uid: 25986 + - uid: 26642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.80734,24.422739 + pos: -19.5,-39.5 parent: 2 - - uid: 25987 +- proto: ShuttersRadiationOpen + entities: + - uid: 26643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.596317,31.45697 + pos: 35.5,-37.5 parent: 2 - - uid: 25988 +- proto: ShuttersWindowOpen + entities: + - uid: 26644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.374542,-28.607267 + pos: 29.5,30.5 parent: 2 - - uid: 25989 + - uid: 26645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.56636,3.972783 + pos: 30.5,30.5 parent: 2 - - uid: 25990 + - uid: 26646 components: - type: Transform - pos: 47.528572,-10.504818 + pos: 32.5,30.5 parent: 2 - - uid: 25991 + - uid: 26647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.442978,-40.554893 + pos: 31.5,30.5 parent: 2 - - uid: 25992 + - uid: 26648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.456867,-26.571524 + pos: 28.5,30.5 parent: 2 - - uid: 25993 + - uid: 26649 components: - type: Transform - pos: -86.50125,57.500885 + pos: 27.5,30.5 parent: 2 - - uid: 42619 +- proto: ShuttleGunSvalinnMachineGun + entities: + - uid: 42797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.80757,56.374565 - parent: 40203 -- proto: ScrapFaxMachine + pos: 70.5,61.5 + parent: 40599 + - type: ContainerContainer + containers: + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + gun_magazine: !type:ContainerSlot + showEnts: False + occludes: True + ent: 42798 +- proto: SignAi entities: - - uid: 25994 + - uid: 26650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.578926,-32.416954 + pos: 11.5,12.5 parent: 2 - - uid: 25995 +- proto: SignalButton + entities: + - uid: 26651 components: + - type: MetaData + name: кнопка голубого прожектора - type: Transform - pos: 29.478872,57.425213 + rot: 3.141592653589793 rad + pos: 55.169548,-3.4746032 parent: 2 -- proto: ScrapFireExtinguisher - entities: - - uid: 25996 + - type: DeviceLinkSource + linkedPorts: + 24990: + - Pressed: Toggle + - uid: 26652 components: + - type: MetaData + name: кнопка зелёного прожектора - type: Transform - pos: 64.58287,35.476074 + rot: 3.141592653589793 rad + pos: 55.376602,-3.4746032 parent: 2 - - uid: 25997 + - type: DeviceLinkSource + linkedPorts: + 24995: + - Pressed: Toggle + - uid: 26653 components: + - type: MetaData + name: кнопка красного прожектора - type: Transform rot: 3.141592653589793 rad - pos: 64.542175,18.328588 + pos: 55.57863,-3.4746208 parent: 2 - - uid: 25998 + - type: DeviceLinkSource + linkedPorts: + 25048: + - Pressed: Toggle + - uid: 26654 components: + - type: MetaData + name: кнопка оранжевого прожектора - type: Transform rot: 3.141592653589793 rad - pos: -28.43182,-32.235374 + pos: 55.782333,-3.4746208 parent: 2 - - uid: 25999 + - type: DeviceLinkSource + linkedPorts: + 25065: + - Pressed: Toggle + - uid: 26655 components: + - type: MetaData + desc: Эта кнопка переключает ставни. - type: Transform - pos: -87.20438,57.32901 + pos: -5.5,-9.5 parent: 2 - - uid: 26000 + - type: DeviceLinkSource + linkedPorts: + 26606: + - Pressed: Toggle + 26605: + - Pressed: Toggle + 26604: + - Pressed: Toggle + 26603: + - Pressed: Toggle + 26596: + - Pressed: Toggle + - uid: 26656 components: - type: Transform - pos: 69.46655,-51.54457 + pos: 11.5,-10.5 parent: 2 - - uid: 42620 + - type: DeviceLinkSource + linkedPorts: + 26583: + - Pressed: Toggle + 26584: + - Pressed: Toggle + 26585: + - Pressed: Toggle + - uid: 26657 components: + - type: MetaData + desc: Эта кнопка блокирует ставни. - type: Transform - rot: 3.141592653589793 rad - pos: 68.47834,59.27398 - parent: 40203 - - uid: 42621 + pos: -44.444115,4.7060437 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26607: + - Pressed: Toggle + 26608: + - Pressed: Toggle + 26609: + - Pressed: Toggle + 26610: + - Pressed: Toggle + 26611: + - Pressed: Toggle + - uid: 26658 components: + - type: MetaData + name: кнопка вызова уборщика - type: Transform - rot: 0.3490658503988659 rad - pos: 52.436558,52.76187 - parent: 40203 -- proto: ScrapFirelock1 - entities: - - uid: 26001 + rot: 3.141592653589793 rad + pos: -35.5,-5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23616: + - Pressed: Toggle + - uid: 26659 components: - type: Transform - pos: 9.545745,57.63207 + rot: -1.5707963267948966 rad + pos: 2.5,51.5 parent: 2 - - uid: 26002 + - uid: 26660 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.709864,49.516666 + pos: -3.5,43.5 parent: 2 -- proto: ScrapFirelock2 - entities: - - uid: 26003 + - type: DeviceLinkSource + linkedPorts: + 26621: + - Pressed: Toggle + 26622: + - Pressed: Toggle + 26623: + - Pressed: Toggle + 23719: + - Pressed: Toggle + 26625: + - Pressed: Toggle + 26624: + - Pressed: Toggle + - uid: 26661 components: + - type: MetaData + desc: Эта кнопка выключает свет в библиотеке. - type: Transform - pos: 9.56137,56.75707 + rot: 3.141592653589793 rad + pos: -0.5,17.5 parent: 2 - - uid: 26004 + - type: DeviceLinkSource + linkedPorts: + 25073: + - Pressed: Toggle + 25075: + - Pressed: Toggle + - uid: 26662 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.553614,49.34479 + pos: 77.5,-38.5 parent: 2 - - uid: 26005 + - type: DeviceLinkSource + linkedPorts: + 26635: + - Pressed: Toggle + 26636: + - Pressed: Toggle + 26637: + - Pressed: Toggle + 26638: + - Pressed: Toggle + - uid: 26663 components: + - type: MetaData + name: кнопка вызова уборщика - type: Transform - pos: 100.935425,2.7466671 + rot: -1.5707963267948966 rad + pos: 29.5,-37.5 parent: 2 -- proto: ScrapGlass - entities: - - uid: 26006 + - type: DeviceLinkSource + linkedPorts: + 23619: + - Pressed: Toggle + - uid: 26664 components: + - type: MetaData + name: кнопка вызова уборщика - type: Transform rot: 3.141592653589793 rad - pos: 100.77884,-39.885338 + pos: -2.5,-35.5 parent: 2 - - uid: 26007 + - type: DeviceLinkSource + linkedPorts: + 23621: + - Pressed: Toggle + - uid: 26665 components: + - type: MetaData + name: кнопка вызова уборщика - type: Transform - pos: 29.514524,61.44706 + pos: 1.3151459,38.75961 parent: 2 - - uid: 26008 + - type: DeviceLinkSource + linkedPorts: + 23620: + - Pressed: Toggle + - uid: 26666 components: + - type: MetaData + name: кнопка вызова уборщика - type: Transform - pos: 18.466751,4.9060597 + pos: -4.5,3.5 parent: 2 - - uid: 26009 + - type: DeviceLinkSource + linkedPorts: + 23618: + - Pressed: Toggle + 23617: + - Pressed: Toggle + - uid: 26667 components: + - type: MetaData + name: кнопка вызова уборщика - type: Transform - pos: 70.578926,-33.49508 + pos: 35.5,25.5 parent: 2 - - uid: 26010 + - type: DeviceLinkSource + linkedPorts: + 23623: + - Pressed: Toggle + - uid: 26668 components: + - type: MetaData + desc: Эта кнопка открывает и закрывает ворота. - type: Transform - rot: 3.141592653589793 rad - pos: 57.44453,21.564018 + rot: 1.5707963267948966 rad + pos: -108.78381,43.84562 parent: 2 - - uid: 26011 + - type: DeviceLinkSource + linkedPorts: + 26595: + - Pressed: Toggle + 26579: + - Pressed: Toggle + - uid: 43060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.503742,-26.524649 - parent: 2 - - uid: 26012 + pos: 59.5,61.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40718: + - Pressed: Toggle + 40717: + - Pressed: Close + 40729: + - Pressed: Close +- proto: SignalButtonDirectional + entities: + - uid: 26669 components: - type: Transform - pos: 18.638626,4.6404347 + rot: 1.5707963267948966 rad + pos: -56.5,-6.5 parent: 2 - - uid: 26013 + - type: DeviceLinkSource + linkedPorts: + 185: + - Pressed: DoorBolt + - uid: 26670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.28216,-40.99064 + rot: 1.5707963267948966 rad + pos: -54.5,-6.5 parent: 2 - - uid: 26014 + - type: DeviceLinkSource + linkedPorts: + 186: + - Pressed: DoorBolt + - uid: 26671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.96966,-39.912514 + rot: 1.5707963267948966 rad + pos: -52.5,-6.5 parent: 2 - - uid: 26015 + - type: DeviceLinkSource + linkedPorts: + 187: + - Pressed: DoorBolt + - uid: 26672 components: - type: Transform - pos: -39.297787,-41.24064 + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 2 - - uid: 26016 + - type: DeviceLinkSource + linkedPorts: + 26632: + - Pressed: Toggle + 26601: + - Pressed: Toggle + 26633: + - Pressed: Toggle + 26634: + - Pressed: Toggle + - uid: 26673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.63071,-29.531963 + rot: 3.141592653589793 rad + pos: 31.5,-58.5 parent: 2 - - uid: 26017 + - uid: 26674 components: - type: Transform - pos: -56.91377,65.11272 + rot: 3.141592653589793 rad + pos: 49.5,-56.5 parent: 2 - - uid: 26018 + - uid: 26675 components: - type: Transform rot: 3.141592653589793 rad - pos: 97.52884,-40.432213 + pos: 48.5,-56.5 parent: 2 -- proto: ScrapIntercom - entities: - - uid: 26019 + - uid: 26676 components: - type: Transform - pos: 69.294685,7.6119137 + rot: 1.5707963267948966 rad + pos: 7.5,61.5 parent: 2 - - uid: 26020 + - type: DeviceLinkSource + linkedPorts: + 8298: + - Pressed: Toggle + - uid: 26677 components: - type: Transform - pos: 69.294685,7.6119137 + rot: -1.5707963267948966 rad + pos: 15.5,61.5 parent: 2 - - uid: 26021 + - type: DeviceLinkSource + linkedPorts: + 8299: + - Pressed: Toggle + - uid: 26678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.365097,-46.38326 + pos: -11.5,62.5 parent: 2 - - uid: 26022 + - uid: 26679 components: + - type: MetaData + desc: Эта кнопка переключает ставни. - type: Transform - rot: -1.5707963267948966 rad - pos: 101.13444,-40.447838 + rot: 1.5707963267948966 rad + pos: -118.5,10.5 parent: 2 - - uid: 26023 + - type: DeviceLinkSource + linkedPorts: + 26602: + - Pressed: Toggle + 26627: + - Pressed: Toggle + 26626: + - Pressed: Toggle + 26628: + - Pressed: Toggle + - uid: 26680 components: + - type: MetaData + name: кнопка вызова уборщика - type: Transform rot: 1.5707963267948966 rad - pos: 101.43131,-40.557213 + pos: 64.5,-32.5 parent: 2 -- proto: ScrapMedkit - entities: - - uid: 26024 + - type: DeviceLinkSource + linkedPorts: + 23622: + - Pressed: Toggle + - uid: 26681 components: - type: Transform - pos: 70.391426,-32.33883 + rot: 3.141592653589793 rad + pos: 18.201746,26.569319 parent: 2 - - uid: 26025 + - type: DeviceLinkSource + linkedPorts: + 26580: + - Pressed: Toggle + 26581: + - Pressed: Toggle + 26582: + - Pressed: Toggle + - uid: 26682 components: - type: Transform - pos: 65.569595,14.549084 + rot: -1.5707963267948966 rad + pos: 10.5,43.5 parent: 2 - - uid: 26026 + - type: DeviceLinkSource + linkedPorts: + 188: + - Pressed: DoorBolt + - uid: 26683 components: - type: Transform - pos: 97.38085,0.6131401 + rot: -1.5707963267948966 rad + pos: 12.5,43.5 parent: 2 - - uid: 26027 + - type: DeviceLinkSource + linkedPorts: + 189: + - Pressed: DoorBolt + - uid: 26684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 101.4746,6.285015 + pos: 42.5,28.5 parent: 2 - - uid: 26028 + - type: DeviceLinkSource + linkedPorts: + 182: + - Pressed: DoorBolt + - uid: 26685 components: - type: Transform - pos: 25.46398,60.72942 + pos: 42.5,30.5 parent: 2 - - uid: 26029 + - type: DeviceLinkSource + linkedPorts: + 181: + - Pressed: DoorBolt + - uid: 43061 components: - type: Transform - pos: 63.973495,35.6792 - parent: 2 - - uid: 26030 + rot: 1.5707963267948966 rad + pos: 47.5,59.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40728: + - Pressed: Open + 40726: + - Pressed: Open + 40730: + - Pressed: Open + 40727: + - Pressed: Close + 40725: + - Pressed: Close + 40724: + - Pressed: Close + - uid: 43062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.603817,45.302254 - parent: 2 - - uid: 26031 + pos: 44.5,58.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40727: + - Pressed: Open + 40724: + - Pressed: Open + 40725: + - Pressed: Open + 40728: + - Pressed: Close + 40726: + - Pressed: Close + 40730: + - Pressed: Close + 42837: + - Pressed: Off + 43086: + - Pressed: Trigger + 42623: + - Pressed: On + 42625: + - Pressed: On + - uid: 43063 components: - type: Transform - pos: 41.453857,-27.510317 - parent: 2 - - uid: 26032 + rot: -1.5707963267948966 rad + pos: 73.5,58.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40734: + - Pressed: Toggle + - uid: 43064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.692978,-43.50802 - parent: 2 - - uid: 26033 + rot: 1.5707963267948966 rad + pos: 69.5,55.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40721: + - Pressed: Open + 42797: + - Pressed: On + - uid: 43065 components: - type: Transform - pos: -89.63961,58.51434 - parent: 2 - - uid: 26034 + rot: -1.5707963267948966 rad + pos: 71.5,50.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 43092: + - Pressed: Trigger + - uid: 43066 components: - type: Transform - pos: 101.71256,-42.729088 - parent: 2 - - uid: 42622 + rot: 1.5707963267948966 rad + pos: 69.5,52.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40723: + - Pressed: Open + - uid: 43067 components: - type: Transform - pos: 56.446236,59.785217 - parent: 40203 - - uid: 42623 + rot: -1.5707963267948966 rad + pos: 71.5,58.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40722: + - Pressed: Toggle + - uid: 43068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,53.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40733: + - Pressed: Toggle + - uid: 43069 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5261,26.561739 - parent: 40203 -- proto: ScrapMopBucket - entities: - - uid: 26035 + pos: 74.5,72.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40720: + - Pressed: Open + 40731: + - Pressed: Open + 40732: + - Pressed: Open + - uid: 43070 components: + - type: MetaData + name: кнопка тревоги - type: Transform - pos: 73.078926,-33.416954 - parent: 2 - - uid: 26036 + rot: 3.141592653589793 rad + pos: 58.5,67.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40735: + - Pressed: Toggle + 42623: + - Pressed: Toggle + 42625: + - Pressed: Toggle + - uid: 43071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,52.5 + parent: 40599 + - uid: 43072 components: + - type: MetaData + desc: Эта кнопка что-то активирует. Кажется, она неисправна.. + name: кнопка гермозатворов - type: Transform rot: -1.5707963267948966 rad - pos: 74.01475,16.974003 - parent: 2 - - uid: 26037 + pos: 61.5,52.5 + parent: 40599 + - uid: 43073 components: + - type: MetaData + name: кнопка ставней - type: Transform - rot: 1.5707963267948966 rad - pos: 57.550667,42.587975 - parent: 2 - - uid: 26038 + pos: 49.5,75.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 43049: + - Pressed: Toggle + 43050: + - Pressed: Close + - uid: 43074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.78695,-11.2616825 - parent: 2 - - uid: 26039 + pos: 39.5,77.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 43095: + - Pressed: Trigger + 43098: + - Pressed: Trigger + 42749: + - Pressed: Open + 42751: + - Pressed: Open + 42750: + - Pressed: Open + - uid: 43075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.831333,-32.704124 - parent: 2 - - uid: 26040 + rot: 3.141592653589793 rad + pos: 38.5,75.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40737: + - Pressed: Close + 43096: + - Pressed: Trigger + 43083: + - Pressed: Open + 40764: + - Pressed: Trigger + 42627: + - Pressed: On + - uid: 43076 components: - type: Transform - pos: -101.45629,27.376717 - parent: 2 -- proto: ScrapPAI - entities: - - uid: 26041 + rot: -1.5707963267948966 rad + pos: 39.5,77.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 43097: + - Pressed: Trigger + - uid: 43077 components: + - type: MetaData + desc: Эта кнопка что-то активирует. Кажется, она неисправна.. + name: кнопка ставней - type: Transform - pos: 71.828926,-33.52633 - parent: 2 - - uid: 26042 + rot: 1.5707963267948966 rad + pos: 70.5,73.5 + parent: 40599 + - uid: 43078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 78.56406,18.458649 - parent: 2 - - uid: 26043 + rot: 3.141592653589793 rad + pos: 44.5,58.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40728: + - Pressed: Close + 40726: + - Pressed: Close + 40730: + - Pressed: Close + 43084: + - Pressed: Trigger + 40727: + - Pressed: Close + 40724: + - Pressed: Close + 40725: + - Pressed: Close + - uid: 43079 components: - type: Transform rot: -1.5707963267948966 rad - pos: 78.56406,18.458649 - parent: 2 - - uid: 26044 + pos: 47.5,59.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 43088: + - Pressed: Trigger + 40727: + - Pressed: Close + 40724: + - Pressed: Close + 40725: + - Pressed: Close + 40728: + - Pressed: Close + 40726: + - Pressed: Close + 40730: + - Pressed: Close + - uid: 43080 components: + - type: MetaData + desc: Эта кнопка открывает Медблок. + name: кнопка гермозатворов - type: Transform - rot: -1.5707963267948966 rad - pos: 37.411728,-36.023643 - parent: 2 -- proto: ScrapPAIGold + rot: 1.5707963267948966 rad + pos: 54.5,68.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40718: + - Pressed: Toggle + 40717: + - Pressed: Toggle + 40729: + - Pressed: Toggle +- proto: SignalControlledValve entities: - - uid: 26045 + - uid: 26686 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.512947,-11.551693 + pos: -19.5,18.5 parent: 2 - - uid: 26046 + - type: GasValve + open: False + - uid: 43081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.512947,-11.551693 - parent: 2 - - uid: 26047 + rot: 1.5707963267948966 rad + pos: 35.5,56.5 + parent: 40599 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#888888FF' + - uid: 43082 components: - type: Transform - rot: -2.0245819323134224 rad - pos: -34.122192,25.750288 - parent: 2 -- proto: ScrapSteel + pos: 36.5,82.5 + parent: 40599 + - type: GasValve + open: False + - uid: 43083 + components: + - type: Transform + pos: 38.5,82.5 + parent: 40599 + - type: GasValve + open: False +- proto: SignalTimer entities: - - uid: 26048 + - uid: 26687 components: - type: Transform rot: 3.141592653589793 rad - pos: 100.34134,-39.369713 + pos: -19.5,18.5 parent: 2 - - uid: 42624 + - type: DeviceLinkSource + linkedPorts: + 26686: + - Timer: Close + - uid: 43084 components: + - type: MetaData + name: закрытие выхода + открытие пара + таймер закрытия пара - type: Transform - rot: 1.5707963267948966 rad - pos: 39.40132,56.374565 - parent: 40203 - - uid: 42625 + pos: 36.5,57.5 + parent: 40599 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 43085: + - Timer: Trigger + 43081: + - Timer: Open + 40728: + - Timer: Close + 40726: + - Timer: Close + 40730: + - Timer: Close + 42830: + - Timer: Off + 42831: + - Timer: Off + 42619: + - Timer: On + 42621: + - Timer: On + - uid: 43085 components: + - type: MetaData + name: закрытие пара + таймер на открытие входа - type: Transform - rot: 1.5707963267948966 rad - pos: 65.4046,56.607964 - parent: 40203 - - uid: 42626 + rot: -1.5707963267948966 rad + pos: 37.5,56.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 43087: + - Timer: Trigger + 40763: + - Timer: Trigger + 43081: + - Timer: Close + - uid: 43086 components: + - type: MetaData + name: первый цикл часть 1 - type: Transform - pos: 66.18585,57.99859 - parent: 40203 -- proto: ScrapTube - entities: - - uid: 26049 + pos: 47.5,57.5 + parent: 40599 + - type: SignalTimer + delay: 3 + - type: DeviceLinkSource + linkedPorts: + 43091: + - Timer: Trigger + 43093: + - Timer: Trigger + 42817: + - Timer: Toggle + 40607: + - Timer: DoorBolt + 42814: + - Timer: Toggle + 42819: + - Timer: Toggle + - uid: 43087 components: + - type: MetaData + name: открытие входа - type: Transform - rot: -1.5707963267948966 rad - pos: 29.267258,60.379726 - parent: 2 - - uid: 26050 + rot: 3.141592653589793 rad + pos: 36.5,55.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40725: + - Timer: Open + 40724: + - Timer: Open + 40727: + - Timer: Open + 42619: + - Timer: Off + 42621: + - Timer: Off + 42830: + - Timer: On + 42831: + - Timer: On + 43101: + - Timer: Trigger + - uid: 43088 components: + - type: MetaData + name: закрытие входа + открытие пара + таймер закрытия пара - type: Transform - rot: 3.141592653589793 rad - pos: 29.626633,56.910976 - parent: 2 - - uid: 26051 + pos: 35.5,57.5 + parent: 40599 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 43081: + - Timer: Open + 40724: + - Timer: Close + 40727: + - Timer: Close + 43090: + - Timer: Trigger + 40725: + - Timer: Close + 42830: + - Timer: Off + 42831: + - Timer: Off + 42619: + - Timer: On + 42621: + - Timer: On + - uid: 43089 components: + - type: MetaData + name: открытие выхода - type: Transform rot: 3.141592653589793 rad - pos: 8.731744,60.58057 - parent: 2 - - uid: 26052 + pos: 35.5,55.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40728: + - Timer: Open + 40726: + - Timer: Open + 40730: + - Timer: Open + 42619: + - Timer: Off + 42621: + - Timer: Off + 42830: + - Timer: On + 42831: + - Timer: On + 43100: + - Timer: Trigger + - uid: 43090 components: + - type: MetaData + name: закрытие пара + таймер на открытие выхода + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,56.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 43081: + - Timer: Close + 43089: + - Timer: Trigger + 40763: + - Timer: Trigger + - uid: 43091 + components: + - type: MetaData + name: первый цикл часть 2 - type: Transform rot: 3.141592653589793 rad - pos: 36.724228,-39.13302 - parent: 2 - - uid: 26053 + pos: 47.5,56.5 + parent: 40599 + - type: SignalTimer + delay: 6 + - type: DeviceLinkSource + linkedPorts: + 43086: + - Timer: Trigger + 43058: + - Timer: Toggle + 42835: + - Timer: Toggle + 40609: + - Timer: Toggle + 43048: + - Timer: Toggle + - uid: 43092 components: + - type: MetaData + name: гермозатворы и пушка - type: Transform - rot: 1.5707963267948966 rad - pos: 36.427353,-39.50802 - parent: 2 - - uid: 26054 + pos: 72.5,50.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40723: + - Start: Open + - Timer: Close + 40721: + - Start: Close + - Timer: Open + 42797: + - Start: Off + - Timer: On + - uid: 43093 components: + - type: MetaData + name: второй цикл часть 1 - type: Transform - rot: 1.5707963267948966 rad - pos: 42.958603,-45.617393 - parent: 2 - - uid: 26055 + pos: 47.5,56.5 + parent: 40599 + - type: SignalTimer + delay: 1 + - type: DeviceLinkSource + linkedPorts: + 43094: + - Timer: Trigger + 42815: + - Timer: Toggle + 43057: + - Timer: Toggle + 43054: + - Timer: Toggle + 43052: + - Timer: Toggle + 43059: + - Timer: Toggle + - uid: 43094 components: + - type: MetaData + name: второй цикл часть 2 - type: Transform - pos: 43.286728,-45.63302 - parent: 2 - - uid: 26056 + rot: 3.141592653589793 rad + pos: 47.5,55.5 + parent: 40599 + - type: SignalTimer + delay: 15 + - type: DeviceLinkSource + linkedPorts: + 43093: + - Timer: Trigger + 42820: + - Timer: Toggle + 42803: + - Timer: Toggle + 43056: + - Timer: Toggle + 43044: + - Timer: Toggle + 42819: + - Timer: Toggle + - uid: 43095 components: + - type: MetaData + name: турели типа да (30 сек) - type: Transform - pos: -89.62625,57.407135 - parent: 2 - - uid: 42627 + pos: 47.5,81.5 + parent: 40599 + - type: SignalTimer + delay: 30 + - type: DeviceLinkSource + linkedPorts: + 40619: + - Start: DoorBolt + - Timer: DoorBolt + 40620: + - Start: DoorBolt + - Timer: DoorBolt + 42749: + - Timer: DoorBolt + 42751: + - Timer: DoorBolt + 42750: + - Timer: DoorBolt + 40737: + - Timer: Open + 43099: + - Timer: Trigger + - uid: 43096 components: + - type: MetaData + name: таймер выхода - type: Transform - pos: 55.74485,26.686739 - parent: 40203 - - uid: 42628 + rot: 3.141592653589793 rad + pos: 38.5,82.5 + parent: 40599 + - type: SignalTimer + delay: 15 + - type: DeviceLinkSource + linkedPorts: + 43082: + - Timer: Open + 43083: + - Timer: Close + 40736: + - Timer: Open + 42627: + - Timer: Off + 43097: + - Timer: Trigger + - uid: 43097 components: + - type: MetaData + name: таймер входа - type: Transform - rot: -1.5707963267948966 rad - pos: 56.166725,26.483614 - parent: 40203 -- proto: Screen - entities: - - uid: 26057 + rot: 1.5707963267948966 rad + pos: 37.5,82.5 + parent: 40599 + - type: SignalTimer + delay: 15 + - type: DeviceLinkSource + linkedPorts: + 40737: + - Timer: Open + 42627: + - Timer: Off + - uid: 43098 components: + - type: MetaData + name: таймер болтов турелей 0.1 - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-26.5 - parent: 2 - - uid: 26058 + rot: 3.141592653589793 rad + pos: 47.5,81.5 + parent: 40599 + - type: SignalTimer + delay: 0.1 + - type: DeviceLinkSource + linkedPorts: + 42749: + - Timer: DoorBolt + 42751: + - Timer: DoorBolt + 42750: + - Timer: DoorBolt + - uid: 43099 components: + - type: MetaData + name: таймер закрытия 0.1 - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-36.5 - parent: 2 -- proto: Screwdriver - entities: - - uid: 26059 + rot: 1.5707963267948966 rad + pos: 47.5,81.5 + parent: 40599 + - type: SignalTimer + delay: 0.1 + - type: DeviceLinkSource + linkedPorts: + 42750: + - Timer: Close + 42751: + - Timer: Close + 42749: + - Timer: Close + - uid: 43100 components: + - type: MetaData + name: таймер закрытия выхода - type: Transform rot: 3.141592653589793 rad - pos: 12.45331,-13.480621 - parent: 2 - - uid: 26060 + pos: 34.5,55.5 + parent: 40599 + - type: SignalTimer + delay: 10 + - type: DeviceLinkSource + linkedPorts: + 40728: + - Timer: Close + 40726: + - Timer: Close + 40730: + - Timer: Close + - uid: 43101 components: + - type: MetaData + name: таймер закрытия входа - type: Transform rot: 3.141592653589793 rad - pos: 45.533466,-47.98507 - parent: 2 - - uid: 26062 - components: - - type: Transform - parent: 26061 - - type: Physics - canCollide: False -- proto: SecurityTechFab + pos: 37.5,55.5 + parent: 40599 + - type: SignalTimer + delay: 10 + - type: DeviceLinkSource + linkedPorts: + 40725: + - Timer: Close + 40727: + - Timer: Close + 40724: + - Timer: Close +- proto: SignAnomaly entities: - - uid: 26063 + - uid: 26688 components: - type: Transform - pos: -39.5,-16.5 + pos: 41.5,-50.5 parent: 2 -- proto: SeedExtractor +- proto: SignAnomaly2 entities: - - uid: 26064 - components: - - type: Transform - pos: 9.5,41.5 - parent: 2 - - uid: 26065 + - uid: 26689 components: - type: Transform - pos: -100.5,17.5 + pos: 20.5,-42.5 parent: 2 -- proto: SeismicCharge +- proto: SignArcade entities: - - uid: 14794 - components: - - type: Transform - parent: 14792 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26066 + - uid: 26690 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.36339092,-8.302514 + pos: 23.5,12.5 parent: 2 - - uid: 26067 +- proto: SignArmory + entities: + - uid: 26691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.6133909,-8.302514 + pos: -41.5,-5.5 parent: 2 - - uid: 26068 + - uid: 26692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.44151592,-8.521264 + rot: 3.141592653589793 rad + pos: -99.5,5.5 parent: 2 -- proto: ShardCrystalBlue +- proto: SignAtmos entities: - - uid: 26069 + - uid: 26693 components: - type: Transform - pos: 42.61385,54.628906 + pos: -8.5,-51.5 parent: 2 -- proto: ShardCrystalCyan +- proto: SignBar entities: - - uid: 26070 + - uid: 26694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.861927,59.579746 + pos: 40.5,23.5 parent: 2 - - uid: 26071 + - uid: 26695 components: - type: Transform - pos: 42.1451,51.23828 + rot: -1.5707963267948966 rad + pos: -43.5,28.5 parent: 2 - - uid: 26072 +- proto: SignBarbershop + entities: + - uid: 26696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.252712,53.230854 + pos: -6.5,32.5 parent: 2 - - uid: 26073 +- proto: SignBio + entities: + - uid: 26697 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.591286,17.580168 + pos: 14.5,39.5 parent: 2 - - uid: 26074 +- proto: SignBiohazardMed + entities: + - uid: 26698 components: - type: Transform - pos: -37.111927,57.704746 + rot: 1.5707963267948966 rad + pos: 11.5,42.5 parent: 2 -- proto: ShardCrystalOrange +- proto: SignCansScience entities: - - uid: 26075 + - uid: 26699 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.83339,55.630585 - parent: 2 - - uid: 26076 - components: - - type: Transform - pos: -50.084972,46.423298 + pos: 51.5,-51.5 parent: 2 - - uid: 26077 +- proto: SignChapel + entities: + - uid: 26700 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.380264,52.568085 + pos: 44.5,-9.5 parent: 2 - - uid: 26078 +- proto: SignChem + entities: + - uid: 26701 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.881855,52.770638 + pos: -5.5,45.5 parent: 2 -- proto: ShardCrystalRed - entities: - - uid: 26079 + - uid: 26702 components: - - type: MetaData - desc: Осколок кристалла ярко-красного цвета. Он странно теплится у вас в руках. - name: осколок редспейс кристалла - type: Transform rot: -1.5707963267948966 rad - pos: -47.556717,50.498253 + pos: -3.5,38.5 parent: 2 - - type: PointLight - energy: 3 - - type: RadiationSource - slope: 1 - intensity: 2.5 - - type: HandTeleporter - portalCreationDelay: 2 - clearPortalsSound: !type:SoundPathSpecifier - path: /Audio/Machines/button.ogg - newPortalSound: !type:SoundPathSpecifier - params: - volume: -2 - path: /Audio/Machines/high_tech_confirm.ogg -- proto: ShardGlass +- proto: SignCloning entities: - - uid: 26080 - components: - - type: Transform - pos: 44.063614,-45.62183 - parent: 2 - - uid: 26081 - components: - - type: Transform - pos: 44.219864,-45.37183 - parent: 2 - - uid: 26082 + - uid: 26703 components: - type: Transform - pos: 43.82924,-45.262455 + rot: 3.141592653589793 rad + pos: -25.5,50.5 parent: 2 - - uid: 26083 +- proto: SignConference + entities: + - uid: 26704 components: - type: Transform - pos: -9.916868,39.926693 + pos: -31.5,-12.5 parent: 2 - - uid: 26084 +- proto: SignCryogenicsMed + entities: + - uid: 26705 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.223225,53.160156 + pos: -19.5,50.5 parent: 2 - - uid: 26085 +- proto: SignDanger + entities: + - uid: 43102 components: - type: Transform - pos: 41.0826,51.941406 - parent: 2 - - uid: 26086 + pos: 28.5,25.5 + parent: 40599 + - uid: 43103 components: - type: Transform - pos: 40.952255,53.135105 - parent: 2 - - uid: 26087 + pos: 74.5,22.5 + parent: 40599 + - uid: 43104 components: - type: Transform - pos: -68.26528,-4.553951 - parent: 2 - - uid: 26088 + pos: 82.5,30.5 + parent: 40599 + - uid: 43105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.17153,-1.5227008 - parent: 2 - - uid: 26089 + pos: 85.5,38.5 + parent: 40599 + - uid: 43106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.10903,-4.9445763 - parent: 2 - - uid: 26090 + pos: 62.5,32.5 + parent: 40599 + - uid: 43107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.471011,64.3754 - parent: 2 - - uid: 26091 + pos: 38.5,26.5 + parent: 40599 + - uid: 43108 components: - type: Transform - pos: 12.908511,64.73477 - parent: 2 - - uid: 26092 + pos: 33.5,39.5 + parent: 40599 + - uid: 43109 components: - - type: MetaData - desc: Это не гарантийный случай... - name: осколок экрана - type: Transform - rot: 2.1642082724729685 rad - pos: -33.950813,25.310196 - parent: 2 - - uid: 26093 + pos: 50.5,31.5 + parent: 40599 + - uid: 43110 components: - type: Transform - pos: -88.770676,56.521137 - parent: 2 - - uid: 26094 + pos: 78.5,41.5 + parent: 40599 +- proto: SignDangerMed + entities: + - uid: 26706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.2863,56.474262 + pos: -134.5,4.5 parent: 2 - - uid: 26095 + - uid: 26707 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.275948,-68.95973 + pos: 12.5,62.5 parent: 2 - - uid: 26096 + - uid: 26708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.220394,-65.04307 + pos: 10.5,62.5 parent: 2 - - uid: 26097 + - uid: 26709 components: - type: Transform - pos: -36.79892,-67.27918 + pos: 12.5,59.5 parent: 2 - - uid: 26098 + - uid: 26710 components: - type: Transform - pos: -38.09059,-71.03817 + pos: 20.5,59.5 parent: 2 - - uid: 26099 + - uid: 26711 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.854477,-71.802055 + pos: 39.5,-31.5 parent: 2 - - uid: 26100 + - uid: 26712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.8267,-73.21873 + rot: 1.5707963267948966 rad + pos: 75.47896,4.486988 parent: 2 - - uid: 26101 + - uid: 43111 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.661697,-69.677055 - parent: 2 - - uid: 26102 + pos: 50.5,47.5 + parent: 40599 + - uid: 43112 components: - type: Transform rot: 3.141592653589793 rad - pos: 99.919464,-39.979088 - parent: 2 - - uid: 26103 + pos: 68.5,57.5 + parent: 40599 +- proto: SignDirectionalBar + entities: + - uid: 26713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.74759,-40.463463 - parent: 2 - - uid: 26104 - components: - - type: Transform - pos: 100.35136,-38.339855 + pos: -13.469852,17.682484 parent: 2 - - uid: 26105 + - uid: 26714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.25761,-38.60548 + rot: 1.5707963267948966 rad + pos: 23.491169,2.7778897 parent: 2 - - uid: 26106 + - uid: 26715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.17948,-37.871105 + rot: 3.141592653589793 rad + pos: 23.497423,-14.082951 parent: 2 - - uid: 42629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 55.36811,60.253967 - parent: 40203 - - uid: 42630 + - uid: 26716 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.27436,59.597717 - parent: 40203 - - uid: 42631 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.57836,35.760033 - parent: 40203 -- proto: ShardGlassReinforced + pos: 34.509804,16.721863 + parent: 2 +- proto: SignDirectionalBridge entities: - - uid: 26107 + - uid: 26717 components: - type: Transform - pos: 13.279766,51.568233 + rot: 1.5707963267948966 rad + pos: -18.49935,2.5389524 parent: 2 - - uid: 26108 + - uid: 26718 components: - type: Transform - pos: 13.201641,51.08386 + rot: -1.5707963267948966 rad + pos: 23.519487,-1.4023342 parent: 2 - - uid: 42632 - components: - - type: Transform - rot: 0.4188790204786391 rad - pos: 42.75895,83.5385 - parent: 40203 - - uid: 42633 - components: - - type: Transform - rot: -1.7278759594743862 rad - pos: 43.649574,84.24162 - parent: 40203 - - uid: 42634 - components: - - type: Transform - rot: 3.8920842319473548 rad - pos: 44.305824,82.67912 - parent: 40203 - - uid: 42635 - components: - - type: Transform - rot: 2.2165681500327987 rad - pos: 39.20643,73.4142 - parent: 40203 - - uid: 42636 - components: - - type: Transform - rot: -0.4537856055185257 rad - pos: 39.909554,73.4142 - parent: 40203 -- proto: SheetGlass +- proto: SignDirectionalBrig entities: - - uid: 15591 - components: - - type: Transform - parent: 15590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15592 - components: - - type: Transform - parent: 15590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26109 + - uid: 26719 components: - type: Transform - pos: -1.8239937,-38.258694 + rot: -1.5707963267948966 rad + pos: 19.5,-14.8 parent: 2 - - uid: 26110 +- proto: SignDirectionalChapel + entities: + - uid: 26720 components: - type: Transform - pos: 1.4601965,-53.45498 + rot: 3.141592653589793 rad + pos: 23.521086,-1.1663976 parent: 2 -- proto: SheetGlass10 +- proto: SignDirectionalCryo entities: - - uid: 15598 - components: - - type: Transform - parent: 15597 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26111 + - uid: 26721 components: - type: Transform - pos: 21.5,-36.5 + pos: 4.4696746,-18.419004 parent: 2 - - uid: 26112 + - uid: 26722 components: - type: Transform - pos: 27.731052,-10.438164 + rot: -1.5707963267948966 rad + pos: 19.5,-14.2 parent: 2 - - uid: 26113 +- proto: SignDirectionalDorms + entities: + - uid: 26723 components: - type: Transform - pos: 39.5,-52.5 + pos: 34.515987,16.268932 parent: 2 - - uid: 26114 +- proto: SignDirectionalEng + entities: + - uid: 26724 components: - type: Transform - pos: -20.434984,57.676792 + rot: -1.5707963267948966 rad + pos: 19.5,-14.4 parent: 2 - - uid: 26115 + - uid: 26725 components: - type: Transform - pos: -28.454178,-31.355892 + pos: -11.4340925,-18.392933 parent: 2 - - uid: 26116 + - uid: 26726 components: - type: Transform - pos: 56.530476,-15.413422 + pos: 23.519487,-1.6210842 parent: 2 -- proto: SheetPlasma - entities: - - uid: 15560 - components: - - type: Transform - parent: 15559 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26117 + - uid: 26727 components: - type: Transform - pos: 14.502623,-40.499435 + pos: -18.482128,2.2960944 parent: 2 -- proto: SheetPlasma1 +- proto: SignDirectionalEvac entities: - - uid: 26118 + - uid: 26728 components: - type: Transform - pos: -8.380107,42.6411 + rot: 1.5707963267948966 rad + pos: 43.499065,-21.70497 parent: 2 -- proto: SheetPlasteel - entities: - - uid: 26119 + - uid: 26729 components: - type: Transform - pos: 6.1622324,-44.394814 + rot: 1.5707963267948966 rad + pos: 86.5,-24.5 parent: 2 -- proto: SheetPlasteel1 - entities: - - uid: 26120 + - uid: 26730 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.46634,-40.447838 + pos: 65.5,-21.5 parent: 2 - - uid: 42637 + - uid: 26731 components: - type: Transform - rot: 0.3839724354387525 rad - pos: 54.418564,69.49234 - parent: 40203 -- proto: SheetPlasteel10 - entities: - - uid: 42638 + pos: 94.5,-24.5 + parent: 2 + - uid: 26732 components: - type: Transform rot: 1.5707963267948966 rad - pos: 68.44083,62.767113 - parent: 40203 -- proto: SheetPlastic - entities: - - uid: 15593 - components: - - type: Transform - parent: 15590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15594 - components: - - type: Transform - parent: 15590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26121 - components: - - type: Transform - pos: -1.6247315,-38.256447 + pos: 23.5,-18.5 parent: 2 -- proto: SheetPlastic10 - entities: - - uid: 15599 - components: - - type: Transform - parent: 15597 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26122 + - uid: 26733 components: - type: Transform - pos: 21.5,-36.5 + pos: -18.5,-1.5 parent: 2 - - uid: 26123 + - uid: 26734 components: - type: Transform - pos: 27.606052,-10.344414 + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 parent: 2 - - uid: 26124 + - uid: 26735 components: - type: Transform - pos: -20.60686,57.723667 + pos: 18.5,17.5 parent: 2 - - uid: 26125 + - uid: 26736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.61314,47.49514 + pos: 30.5,16.5 parent: 2 -- proto: SheetRGlass +- proto: SignDirectionalFood entities: - - uid: 26126 + - uid: 26737 components: - type: Transform - pos: 6.7403574,-44.59794 + rot: 3.141592653589793 rad + pos: 34.515987,16.487682 parent: 2 - - uid: 42639 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.69083,62.423363 - parent: 40203 -- proto: SheetSteel +- proto: SignDirectionalHop entities: - - uid: 15595 - components: - - type: Transform - parent: 15590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15596 - components: - - type: Transform - parent: 15590 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26127 - components: - - type: Transform - pos: 0.541487,-53.363113 - parent: 2 - - uid: 26128 + - uid: 26738 components: - type: Transform - pos: -2.1675568,-38.352444 + pos: -9.5,17.5 parent: 2 - - uid: 26129 + - uid: 26739 components: - type: Transform - pos: 0.43211198,-53.37874 + pos: 23.491169,2.5591397 parent: 2 - - uid: 26130 + - uid: 26740 components: - type: Transform - pos: 0.44773698,-53.519363 + rot: -1.5707963267948966 rad + pos: 19.5,-14.6 parent: 2 - - uid: 26131 +- proto: SignDirectionalJanitor + entities: + - uid: 26741 components: - type: Transform - pos: -12.418163,-52.448612 + rot: -1.5707963267948966 rad + pos: 6.506645,26.834694 parent: 2 -- proto: SheetSteel1 +- proto: SignDirectionalLibrary entities: - - uid: 26132 + - uid: 26742 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.059372,67.57281 + pos: 6.5221033,26.363205 parent: 2 - - uid: 26133 +- proto: SignDirectionalMed + entities: + - uid: 26743 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.090622,66.57281 - parent: 2 - - uid: 26134 - components: - - type: Transform - pos: -56.783867,64.60854 - parent: 2 - - uid: 26135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.028122,65.83843 - parent: 2 - - uid: 26136 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.903122,66.60406 + pos: -13.450169,17.459784 parent: 2 - - uid: 26137 + - uid: 26744 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.39613,-41.467564 + pos: 23.50784,-14.291285 parent: 2 - - uid: 26138 + - uid: 26745 components: - type: Transform - pos: 39.505505,-36.717594 + rot: -1.5707963267948966 rad + pos: 6.522641,26.605423 parent: 2 - - uid: 26139 + - uid: 26746 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.52113,-37.38944 + pos: 0.5695162,29.558548 parent: 2 - - uid: 26140 +- proto: SignDirectionalSci + entities: + - uid: 26747 components: - type: Transform - pos: 40.018497,-36.47605 + pos: 23.491169,2.3403897 parent: 2 - - uid: 26141 + - uid: 26748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.64613,-40.88944 + pos: 23.493433,-14.689808 parent: 2 - - uid: 26142 +- proto: SignDirectionalSec + entities: + - uid: 26749 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.068005,-40.48319 + pos: -9.502101,17.701454 parent: 2 - - uid: 26143 + - uid: 26750 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.099255,-40.35819 + rot: -1.5707963267948966 rad + pos: -18.493652,2.793484 parent: 2 - - uid: 26144 +- proto: SignDirectionalSolar + entities: + - uid: 26751 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.630505,-39.42069 - parent: 2 - - uid: 26145 - components: - - type: Transform - pos: 39.737247,-36.366676 + pos: -29.5,41.5 parent: 2 - - uid: 26146 +- proto: SignDirectionalSupply + entities: + - uid: 26752 components: - type: Transform - pos: 42.76674,-42.512455 + rot: 1.5707963267948966 rad + pos: 43.5,-21.5 parent: 2 - - uid: 26147 + - uid: 26753 components: - type: Transform - pos: 39.505505,-36.030094 + rot: 1.5707963267948966 rad + pos: 23.497423,-14.468369 parent: 2 - - uid: 26148 + - uid: 26754 components: - type: Transform - pos: 16.565926,61.662376 + pos: 60.5,-25.5 parent: 2 - - uid: 26149 +- proto: SignDisposalSpace + entities: + - uid: 26755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 100.388214,-40.025963 + rot: 1.5707963267948966 rad + pos: 72.5,-28.5 parent: 2 - - uid: 45806 +- proto: SignDoors + entities: + - uid: 43113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 - parent: 44970 - - uid: 45807 + rot: 1.5707963267948966 rad + pos: 56.5,67.5 + parent: 40599 + - uid: 43114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 44970 -- proto: SheetSteel10 + pos: 64.5,67.5 + parent: 40599 +- proto: SignElectricalMed entities: - - uid: 15600 - components: - - type: Transform - parent: 15597 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 26150 + - uid: 26756 components: - type: Transform - pos: 21.5,-36.5 + rot: -1.5707963267948966 rad + pos: 17.5,10.5 parent: 2 - - uid: 26151 + - uid: 26757 components: - type: Transform - pos: 27.434177,-10.281914 + rot: -1.5707963267948966 rad + pos: -11.5,-37.5 parent: 2 - - uid: 26152 + - uid: 26758 components: - type: Transform - pos: 39.5,-52.5 + rot: 1.5707963267948966 rad + pos: -13.5,-43.5 parent: 2 - - uid: 26153 + - uid: 26759 components: - type: Transform - pos: -47.55656,-22.239029 + rot: 1.5707963267948966 rad + pos: -15.5,-43.5 parent: 2 - - uid: 42640 - components: - - type: Transform - pos: 28.737438,69.60604 - parent: 40203 - - uid: 42641 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.72208,62.860863 - parent: 40203 -- proto: SheetUranium - entities: - - uid: 15561 - components: - - type: Transform - parent: 15559 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SheetUranium1 - entities: - - uid: 26154 + - uid: 26760 components: - type: Transform - pos: -54.449997,65.55718 + rot: 1.5707963267948966 rad + pos: -1.5,-51.5 parent: 2 - - uid: 26155 + - uid: 26761 components: - type: Transform - pos: -54.449997,65.60406 + pos: -35.5,-47.5 parent: 2 - - uid: 26156 + - uid: 26762 components: - type: Transform - pos: -56.043747,66.71343 + pos: -35.5,-43.5 parent: 2 - - uid: 26157 + - uid: 26763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.606247,67.07281 + rot: 1.5707963267948966 rad + pos: -29.5,-43.5 parent: 2 - - uid: 42642 + - uid: 43115 components: - type: Transform - pos: 28.503063,69.586044 - parent: 40203 - - type: Stack - count: 4 -- proto: ShellShotgun - entities: - - uid: 26158 + rot: 1.5707963267948966 rad + pos: 58.5,42.5 + parent: 40599 + - uid: 43116 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.45285,33.645626 - parent: 2 - - uid: 26159 + pos: 58.5,38.5 + parent: 40599 + - uid: 43117 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.723682,31.458126 - parent: 2 - - uid: 26160 + pos: 46.5,38.5 + parent: 40599 + - uid: 43118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.89035,32.958126 - parent: 2 -- proto: ShellShotgunBeanbag + rot: 1.5707963267948966 rad + pos: 46.5,42.5 + parent: 40599 +- proto: SignEngine entities: - - uid: 26161 + - uid: 26764 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.3758,-3.5125403 + pos: -15.5,-47.5 parent: 2 - - uid: 26162 + - uid: 26765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.547674,-3.5594153 + rot: 1.5707963267948966 rad + pos: -27.5,-43.5 parent: 2 -- proto: ShellShotgunIncendiary - entities: - - uid: 42643 - components: - - type: Transform - rot: 3.9269908169872414 rad - pos: 37.595787,80.45 - parent: 40203 - - uid: 42644 - components: - - type: Transform - rot: 3.9269908169872414 rad - pos: 37.752037,80.44682 - parent: 40203 - - uid: 42645 - components: - - type: Transform - rot: 4.014257279586958 rad - pos: 37.939537,80.44807 - parent: 40203 -- proto: ShellShotgunSlug - entities: - - uid: 42646 - components: - - type: Transform - pos: 42.36847,76.683044 - parent: 40203 - - uid: 42647 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.915344,78.651794 - parent: 40203 -- proto: ShippingContainerConarex - entities: - - uid: 26163 + - uid: 43119 components: - type: Transform - pos: 56.5,-43.5 - parent: 2 -- proto: ShippingContainerDeforest + rot: 1.5707963267948966 rad + pos: 68.5,64.5 + parent: 40599 +- proto: SignEngineering entities: - - uid: 26164 + - uid: 26766 components: - type: Transform - pos: 56.5,-40.5 + rot: 3.141592653589793 rad + pos: -7.5,-34.5 parent: 2 -- proto: ShippingContainerKahraman +- proto: SignEVA entities: - - uid: 26165 + - uid: 26767 components: - type: Transform - pos: 56.5,-37.5 + rot: -1.5707963267948966 rad + pos: -14.5,10.5 parent: 2 -- proto: ShippingContainerVitezstvi +- proto: SignExamroom entities: - - uid: 26166 + - uid: 26768 components: - type: Transform - pos: 58.5,-42.5 + pos: -106.5,5.5 parent: 2 -- proto: Shiv - entities: - - uid: 26167 + - uid: 43120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.175446,56.498665 - parent: 2 -- proto: ShotGunCabinetFilled + pos: 54.5,59.5 + parent: 40599 +- proto: SignFlammableMed entities: - - uid: 26168 - components: - - type: Transform - pos: -37.5,-10.5 - parent: 2 - - uid: 26169 + - uid: 26769 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-6.5 - parent: 2 -- proto: Shovel - entities: - - uid: 26170 - components: - - type: Transform - pos: -61.57611,65.617744 + pos: -17.5,-52.5 parent: 2 - - uid: 26171 + - uid: 26770 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.375885,-48.500843 - parent: 2 - - uid: 26172 - components: - - type: Transform - pos: -46.418274,34.47845 + pos: -66.5,23.5 parent: 2 - - uid: 26173 + - uid: 26771 components: - type: Transform - pos: -14.028751,25.702032 + pos: -80.5,46.5 parent: 2 - - uid: 42648 - components: - - type: Transform - rot: -0.5934119456780721 rad - pos: 48.24816,70.53787 - parent: 40203 -- proto: ShuttersFrame - entities: - - uid: 26174 + - uid: 26772 components: - type: Transform - pos: 39.5,-37.5 + pos: -23.5,17.5 parent: 2 - - uid: 42649 - components: - - type: Transform - pos: 52.5,64.5 - parent: 40203 - - uid: 42650 + - uid: 43121 components: - type: Transform - pos: 50.5,58.5 - parent: 40203 - - uid: 42651 + rot: 3.141592653589793 rad + pos: 63.5,57.5 + parent: 40599 + - uid: 46161 components: - type: Transform - pos: 45.5,67.5 - parent: 40203 -- proto: ShuttersNormal + pos: -0.5,16.5 + parent: 45355 +- proto: SignHead entities: - - uid: 26175 - components: - - type: Transform - pos: 10.5,-14.5 - parent: 2 - - uid: 26176 - components: - - type: Transform - pos: 11.5,-14.5 - parent: 2 - - uid: 26177 + - uid: 26773 components: - type: Transform - pos: 12.5,-14.5 + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 parent: 2 - - uid: 26178 + - uid: 26774 components: - type: Transform - pos: 4.5,29.5 + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 parent: 2 - - uid: 26179 +- proto: SignHydro1 + entities: + - uid: 26775 components: - type: Transform - pos: 3.5,29.5 + rot: 3.141592653589793 rad + pos: -103.5,17.5 parent: 2 - - uid: 26180 + - uid: 26776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,68.5 + pos: 9.5,30.5 parent: 2 - - uid: 26181 + - uid: 26777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,70.5 + pos: 19.5,34.5 parent: 2 - - uid: 26182 + - uid: 43122 components: - type: Transform - pos: -9.5,71.5 - parent: 2 - - uid: 26183 + pos: 53.5,75.5 + parent: 40599 +- proto: SignInterrogation + entities: + - uid: 26778 components: - type: Transform - pos: -7.5,71.5 + pos: -35.5,5.5 parent: 2 - - uid: 26184 +- proto: SignJanitor + entities: + - uid: 26779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-31.5 + pos: 2.5,29.5 parent: 2 - - uid: 26185 + - uid: 26780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-32.5 + rot: 3.141592653589793 rad + pos: -103.5,24.5 parent: 2 - - uid: 26186 +- proto: SignKiddiePlaque + entities: + - uid: 26781 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-33.5 + - type: MetaData + desc: Табличка, на которой описана техника безопасности и правила катка. Главное - берите снаряжение по номерам! + - type: Transform + pos: 3.5,-24.5 parent: 2 - - uid: 42652 + - uid: 26782 components: + - type: MetaData + desc: 'Небольшая табличка. Текст на ней гласит: "Внимание! Вскрывать только при самом экстренном случае нехватки оснащения! В иных случаях, обратитесь к своему непосредственному начальству!"' + name: предупреждающая табличка - type: Transform - pos: 43.5,67.5 - parent: 40203 - - uid: 42653 + pos: 25.5,-2.5 + parent: 2 + - uid: 43123 components: + - type: MetaData + desc: Сильное тело и быстрый ум не убоятся холода. + name: Теслаград - type: Transform - pos: 60.5,53.5 - parent: 40203 - - uid: 42654 + pos: 51.5,18.5 + parent: 40599 +- proto: SignLaserMed + entities: + - uid: 43124 components: - type: Transform - pos: 59.5,53.5 - parent: 40203 - - uid: 42655 + pos: 59.5,73.5 + parent: 40599 +- proto: SignLawyer + entities: + - uid: 26783 components: - type: Transform - pos: 50.5,64.5 - parent: 40203 - - uid: 42656 + rot: -1.5707963267948966 rad + pos: -16.5,26.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 26784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,62.5 - parent: 40203 - - uid: 42657 + pos: 0.5,23.5 + parent: 2 +- proto: SignMagneticsMed + entities: + - uid: 43125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,61.5 - parent: 40203 - - uid: 42658 + pos: 61.5,73.5 + parent: 40599 +- proto: SignMedical + entities: + - uid: 26785 components: - type: Transform - pos: 55.5,67.5 - parent: 40203 - - uid: 42659 + pos: -51.5,13.5 + parent: 2 + - uid: 26786 components: - type: Transform - pos: 50.5,75.5 - parent: 40203 - - uid: 42660 + pos: -11.5,46.5 + parent: 2 + - uid: 26787 components: - type: Transform - pos: 52.5,75.5 - parent: 40203 - - uid: 42661 + pos: -2.5,44.5 + parent: 2 + - uid: 43126 components: - type: Transform - pos: 51.5,75.5 - parent: 40203 - - uid: 42662 + pos: 54.5,63.5 + parent: 40599 +- proto: SignMorgue + entities: + - uid: 26788 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,74.5 - parent: 40203 - - uid: 42663 + pos: -13.5,45.5 + parent: 2 +- proto: SignNews + entities: + - uid: 26789 components: - type: Transform - pos: 44.5,67.5 - parent: 40203 -- proto: ShuttersNormalOpen + pos: 14.5,22.5 + parent: 2 +- proto: SignNosmoking entities: - - uid: 26187 + - uid: 26790 components: - type: Transform - pos: -5.5,-13.5 + pos: -40.5,-5.5 parent: 2 - - uid: 26188 +- proto: SignNTMine + entities: + - uid: 26791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,25.5 + pos: -15.5,35.5 parent: 2 - - uid: 26189 + - uid: 26792 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,23.5 + pos: 96.5,-44.5 parent: 2 - - uid: 26190 +- proto: SignPlaque + entities: + - uid: 26793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,57.5 + pos: 5.5,-48.5 parent: 2 - - uid: 26191 + - uid: 26794 components: + - type: MetaData + desc: На табличке указаны номер, дата ввода в эксплуатацию и авторы проекта станции. Видны только инициалы Д.В.и Е.К. + name: Серийный номер - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,58.5 + pos: 16.5,-14.5 parent: 2 - - uid: 26192 +- proto: SignPrison + entities: + - uid: 26795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 + pos: -37.5,9.5 parent: 2 - - uid: 26193 + - uid: 43127 components: - type: Transform - pos: -115.5,9.5 - parent: 2 - - uid: 26194 + rot: -1.5707963267948966 rad + pos: 30.5,67.5 + parent: 40599 +- proto: SignPsychology + entities: + - uid: 26796 components: - type: Transform - pos: -10.5,-13.5 + rot: 1.5707963267948966 rad + pos: 0.5,61.5 parent: 2 - - uid: 26195 +- proto: SignRadiationMed + entities: + - uid: 26797 components: - type: Transform - pos: -9.5,-13.5 + pos: -21.5,-43.5 parent: 2 - - uid: 26196 + - uid: 26798 components: - type: Transform - pos: -7.5,-13.5 + pos: -19.5,-43.5 parent: 2 - - uid: 26197 +- proto: SignReception + entities: + - uid: 26799 components: - type: Transform - pos: -6.5,-13.5 + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 parent: 2 - - uid: 26198 + - uid: 26800 components: - type: Transform - pos: -43.5,-1.5 + rot: -1.5707963267948966 rad + pos: 0.5,41.5 parent: 2 - - uid: 26199 + - uid: 46162 components: - type: Transform - pos: -41.5,-1.5 - parent: 2 - - uid: 26200 + pos: 4.5,1.5 + parent: 45355 +- proto: SignRedOne + entities: + - uid: 26801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,0.5 + rot: 3.141592653589793 rad + pos: -41.5,14.5 parent: 2 - - uid: 26201 + - uid: 26802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,1.5 + pos: -114.5,17.5 parent: 2 - - uid: 26202 + - uid: 26803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,2.5 + pos: -6.6942444,71.39649 parent: 2 - - uid: 26203 +- proto: SignRedThree + entities: + - uid: 26804 components: - type: Transform - pos: -30.5,-1.5 + rot: 3.141592653589793 rad + pos: -49.5,14.5 parent: 2 - - uid: 26204 + - uid: 26805 components: - type: Transform - pos: -29.5,-1.5 + pos: -114.5,25.5 parent: 2 - - uid: 26205 +- proto: SignRedTwo + entities: + - uid: 26806 components: - type: Transform - pos: -28.5,-1.5 + rot: 3.141592653589793 rad + pos: -45.5,14.5 parent: 2 - - uid: 26206 + - uid: 26807 components: - type: Transform - pos: -27.5,-1.5 + pos: -114.5,21.5 parent: 2 - - uid: 26207 + - uid: 26808 components: - type: Transform - pos: -32.5,-1.5 + pos: -6.37943,71.39649 parent: 2 - - uid: 26208 +- proto: SignRND + entities: + - uid: 26809 components: - type: Transform - pos: -34.5,-1.5 + pos: 26.5,-27.5 parent: 2 - - uid: 26209 + - uid: 26810 components: - type: Transform - pos: -20.5,2.5 + pos: 28.5,-27.5 parent: 2 - - uid: 26210 + - uid: 43128 components: - type: Transform - pos: -19.5,2.5 - parent: 2 - - uid: 26211 + pos: 49.5,58.5 + parent: 40599 +- proto: SignRobo + entities: + - uid: 26811 components: - type: Transform - pos: -22.5,2.5 + pos: 25.5,-30.5 parent: 2 - - uid: 26212 + - uid: 26812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,42.5 + pos: 23.5,-39.5 parent: 2 - - uid: 26213 +- proto: SignSalvage + entities: + - uid: 26813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,41.5 + pos: 71.5,-44.5 parent: 2 - - uid: 26214 +- proto: SignSecurearea + entities: + - uid: 26814 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,40.5 + pos: -31.5,17.5 parent: 2 - - uid: 26215 +- proto: SignSecureMed + entities: + - uid: 26815 components: - type: Transform - pos: -8.5,45.5 + pos: -6.5,63.5 parent: 2 - - uid: 26216 + - uid: 26816 components: - type: Transform - pos: -7.5,45.5 + pos: -3.5,63.5 parent: 2 - - uid: 26217 + - uid: 43129 components: - type: Transform - pos: -113.5,9.5 - parent: 2 - - uid: 26218 + pos: 31.5,73.5 + parent: 40599 + - uid: 43130 components: - type: Transform - pos: -114.5,9.5 - parent: 2 - - uid: 26219 + rot: 1.5707963267948966 rad + pos: 64.5,76.5 + parent: 40599 + - uid: 43131 components: - type: Transform - pos: -112.5,9.5 - parent: 2 - - uid: 26220 + pos: 51.5,33.5 + parent: 40599 + - uid: 43132 components: - type: Transform - pos: 27.5,-50.5 - parent: 2 - - uid: 26221 + pos: 53.5,33.5 + parent: 40599 +- proto: SignSecureMedRed + entities: + - uid: 43133 components: - type: Transform - pos: 28.5,-50.5 - parent: 2 - - uid: 26222 + pos: 39.5,63.5 + parent: 40599 + - uid: 43134 components: - type: Transform - pos: 29.5,-50.5 - parent: 2 - - uid: 26223 + pos: 39.5,59.5 + parent: 40599 + - uid: 43135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-50.5 - parent: 2 - - uid: 26224 + pos: 44.5,54.5 + parent: 40599 + - uid: 43136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 - parent: 2 - - uid: 26225 + pos: 40.5,54.5 + parent: 40599 + - uid: 43137 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-46.5 - parent: 2 - - uid: 26226 + pos: 57.5,50.5 + parent: 40599 +- proto: SignSecurity + entities: + - uid: 26817 components: - type: Transform - pos: 71.5,-37.5 + pos: -26.5,-3.5 parent: 2 - - uid: 26227 + - uid: 43138 components: - type: Transform - pos: 71.5,-38.5 - parent: 2 - - uid: 26228 + pos: 37.5,64.5 + parent: 40599 +- proto: SignShock + entities: + - uid: 26818 components: - type: Transform - pos: 71.5,-40.5 + pos: -121.5,0.5 parent: 2 - - uid: 26229 + - uid: 26819 components: - type: Transform - pos: 71.5,-41.5 + pos: -121.5,13.5 parent: 2 - - uid: 26230 + - uid: 43139 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,56.5 - parent: 2 - - uid: 42664 + pos: 54.5,46.5 + parent: 40599 +- proto: SignSmoking + entities: + - uid: 26820 components: - type: Transform - pos: 58.5,53.5 - parent: 40203 - - uid: 42665 + pos: -49.5,-2.5 + parent: 2 + - uid: 26821 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,58.5 - parent: 40203 - - uid: 42666 + pos: -46.5,9.5 + parent: 2 + - uid: 26822 components: - type: Transform - pos: 51.5,64.5 - parent: 40203 - - uid: 42667 + rot: 1.5707963267948966 rad + pos: 39.5,29.5 + parent: 2 + - uid: 26823 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,58.5 - parent: 40203 - - uid: 42668 + pos: 66.5,7.5 + parent: 2 + - uid: 26824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,60.5 - parent: 40203 - - uid: 42669 + pos: 11.5,-52.5 + parent: 2 + - uid: 43140 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,75.5 - parent: 40203 -- proto: ShuttersRadiation + pos: 58.5,83.5 + parent: 40599 +- proto: SignSurgery entities: - - uid: 26231 + - uid: 26825 components: - type: Transform - pos: -23.5,-39.5 + rot: 3.141592653589793 rad + pos: -19.5,47.5 parent: 2 - - uid: 26232 +- proto: SignTelecomms + entities: + - uid: 26826 components: - type: Transform - pos: -21.5,-39.5 + pos: -6.5,12.5 parent: 2 - - uid: 26233 +- proto: SignToolStorage + entities: + - uid: 26827 components: - type: Transform - pos: -19.5,-39.5 + pos: 23.5,-3.5 parent: 2 -- proto: ShuttersRadiationOpen +- proto: SignVirology entities: - - uid: 26234 + - uid: 26828 components: - type: Transform - pos: 35.5,-37.5 + pos: 0.5,56.5 parent: 2 -- proto: ShuttersWindowOpen +- proto: SignXenobio entities: - - uid: 26235 + - uid: 26829 components: - type: Transform - pos: 29.5,30.5 + pos: 38.5,-44.5 parent: 2 - - uid: 26236 +- proto: SilverOre1 + entities: + - uid: 26830 components: - type: Transform - pos: 30.5,30.5 + pos: 41.168175,45.86887 parent: 2 - - uid: 26237 +- proto: SilverRing + entities: + - uid: 47038 components: - type: Transform - pos: 32.5,30.5 - parent: 2 - - uid: 26238 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SingularityBeacon + entities: + - uid: 43141 components: + - type: MetaData + desc: Нестандартного вида генератор сдерживающего поля. + name: генератор сдерживающего поля - type: Transform - pos: 31.5,30.5 - parent: 2 - - uid: 26239 + pos: 50.5,42.5 + parent: 40599 + - type: Anchorable + flags: None + missingComponents: + - Item + - SingularityAttractor + - SinguloFood + - Destructible + - ApcPowerReceiver + - StaticPrice + - ExtensionCableReceiver + - LightningTarget + - Damageable + - Pullable + - Contraband + - uid: 43142 components: + - type: MetaData + desc: Нестандартного вида генератор сдерживающего поля. + name: генератор сдерживающего поля - type: Transform - pos: 28.5,30.5 - parent: 2 - - uid: 26240 + pos: 54.5,42.5 + parent: 40599 + - type: Anchorable + flags: None + missingComponents: + - Item + - SingularityAttractor + - SinguloFood + - Destructible + - ApcPowerReceiver + - StaticPrice + - ExtensionCableReceiver + - LightningTarget + - Damageable + - Pullable + - Contraband + - uid: 43143 components: + - type: MetaData + desc: Нестандартного вида генератор сдерживающего поля. + name: генератор сдерживающего поля - type: Transform - pos: 27.5,30.5 - parent: 2 -- proto: ShuttleGunSvalinnMachineGun - entities: - - uid: 42401 + pos: 54.5,38.5 + parent: 40599 + - type: Anchorable + flags: None + missingComponents: + - Item + - SingularityAttractor + - SinguloFood + - Destructible + - ApcPowerReceiver + - StaticPrice + - ExtensionCableReceiver + - LightningTarget + - Damageable + - Pullable + - Contraband + - uid: 43144 components: + - type: MetaData + desc: Нестандартного вида генератор сдерживающего поля. + name: генератор сдерживающего поля - type: Transform - pos: 70.5,61.5 - parent: 40203 - - type: ContainerContainer - containers: - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: 42402 -- proto: SignAi + pos: 50.5,38.5 + parent: 40599 + - type: Anchorable + flags: None + missingComponents: + - Item + - SingularityAttractor + - SinguloFood + - Destructible + - ApcPowerReceiver + - StaticPrice + - ExtensionCableReceiver + - LightningTarget + - Damageable + - Pullable + - Contraband +- proto: Sink entities: - - uid: 26241 + - uid: 26831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,12.5 + rot: 1.5707963267948966 rad + pos: 40.5,27.5 parent: 2 -- proto: SignalButton - entities: - - uid: 26242 + - uid: 26832 components: - - type: MetaData - name: кнопка голубого прожектора - type: Transform - rot: 3.141592653589793 rad - pos: 55.169548,-3.4746032 + rot: 1.5707963267948966 rad + pos: 40.5,29.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24658: - - Pressed: Toggle - - uid: 26243 + - uid: 26833 components: - - type: MetaData - name: кнопка зелёного прожектора - type: Transform - rot: 3.141592653589793 rad - pos: 55.376602,-3.4746032 + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24662: - - Pressed: Toggle - - uid: 26244 + - uid: 26834 + components: + - type: Transform + pos: -10.5,62.5 + parent: 2 + - uid: 26835 components: - - type: MetaData - name: кнопка красного прожектора - type: Transform rot: 3.141592653589793 rad - pos: 55.57863,-3.4746208 + pos: 82.5,-35.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24699: - - Pressed: Toggle - - uid: 26245 + - uid: 26836 components: - - type: MetaData - name: кнопка оранжевого прожектора - type: Transform rot: 3.141592653589793 rad - pos: 55.782333,-3.4746208 + pos: -25.5,54.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24700: - - Pressed: Toggle - - uid: 26246 + - uid: 26837 components: - - type: MetaData - desc: Эта кнопка переключает ставни. - type: Transform - pos: -5.5,-9.5 + rot: -1.5707963267948966 rad + pos: -112.5,10.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26197: - - Pressed: Toggle - 26196: - - Pressed: Toggle - 26195: - - Pressed: Toggle - 26194: - - Pressed: Toggle - 26187: - - Pressed: Toggle - - uid: 26247 + - uid: 26838 components: - type: Transform - pos: 11.5,-10.5 + rot: 1.5707963267948966 rad + pos: 12.5,64.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26175: - - Pressed: Toggle - 26176: - - Pressed: Toggle - 26177: - - Pressed: Toggle - - uid: 26248 + - uid: 26839 components: - - type: MetaData - desc: Эта кнопка блокирует ставни. - type: Transform - pos: -44.444115,4.7060437 + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26198: - - Pressed: Toggle - 26199: - - Pressed: Toggle - 26200: - - Pressed: Toggle - 26201: - - Pressed: Toggle - 26202: - - Pressed: Toggle - - uid: 26249 +- proto: SinkEmpty + entities: + - uid: 26840 components: - - type: MetaData - name: кнопка вызова уборщика - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-5.5 + pos: 31.5,-56.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23214: - - Pressed: Toggle - - uid: 26250 + - uid: 26841 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,51.5 + pos: 10.5,64.5 parent: 2 - - uid: 26251 + - uid: 26842 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,43.5 + pos: -40.5,21.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26212: - - Pressed: Toggle - 26213: - - Pressed: Toggle - 26214: - - Pressed: Toggle - 23330: - - Pressed: Toggle - 26216: - - Pressed: Toggle - 26215: - - Pressed: Toggle - - uid: 26252 +- proto: SinkStemless + entities: + - uid: 26843 components: - - type: MetaData - desc: Эта кнопка выключает свет в библиотеке. - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,17.5 + pos: -5.5,36.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 24711: - - Pressed: Toggle - 24713: - - Pressed: Toggle - - uid: 26253 +- proto: SinkStemlessWater + entities: + - uid: 26844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,-38.5 + rot: 3.141592653589793 rad + pos: 10.5,-51.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26226: - - Pressed: Toggle - 26227: - - Pressed: Toggle - 26228: - - Pressed: Toggle - 26229: - - Pressed: Toggle - - uid: 26254 + - uid: 26845 components: - - type: MetaData - name: кнопка вызова уборщика - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-37.5 + pos: -110.5,31.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23217: - - Pressed: Toggle - - uid: 26255 + - uid: 26846 components: - - type: MetaData - name: кнопка вызова уборщика - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-35.5 + rot: -1.5707963267948966 rad + pos: -110.5,29.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23219: - - Pressed: Toggle - - uid: 26256 + - uid: 26847 components: - - type: MetaData - name: кнопка вызова уборщика - type: Transform - pos: 1.3151459,38.75961 + rot: -1.5707963267948966 rad + pos: -110.5,30.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23218: - - Pressed: Toggle - - uid: 26257 + - uid: 26848 components: - - type: MetaData - name: кнопка вызова уборщика - type: Transform - pos: -4.5,3.5 + pos: -9.5,44.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23216: - - Pressed: Toggle - 23215: - - Pressed: Toggle - - uid: 26258 + - uid: 26849 components: - - type: MetaData - name: кнопка вызова уборщика - type: Transform - pos: 35.5,25.5 + rot: 3.141592653589793 rad + pos: -9.5,38.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23221: - - Pressed: Toggle - - uid: 42670 - components: - - type: Transform - pos: 59.5,61.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40322: - - Pressed: Toggle - 40321: - - Pressed: Close - 40333: - - Pressed: Close -- proto: SignalButtonDirectional - entities: - - uid: 26259 + - uid: 26850 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: 43.14036,21.482449 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26223: - - Pressed: Toggle - 26192: - - Pressed: Toggle - 26224: - - Pressed: Toggle - 26225: - - Pressed: Toggle - - uid: 26260 + - uid: 26851 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-58.5 + pos: 26.5,42.5 parent: 2 - - uid: 26261 + - uid: 26852 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-56.5 + pos: 19.5,42.5 parent: 2 - - uid: 26262 + - uid: 26853 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-56.5 + pos: -11.5,-3.5 parent: 2 - - uid: 26263 + - uid: 26854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,61.5 + pos: -44.5,-11.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8055: - - Pressed: Toggle - - uid: 26264 + - uid: 26855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,61.5 + pos: -51.516624,-2.7828975 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 8056: - - Pressed: Toggle - - uid: 26265 + - uid: 26856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,62.5 + pos: -52.485374,-2.7828975 parent: 2 - - uid: 26266 + - uid: 26857 components: - - type: MetaData - desc: Эта кнопка переключает ставни. - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,10.5 + pos: -53.501,-2.7672725 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26193: - - Pressed: Toggle - 26218: - - Pressed: Toggle - 26217: - - Pressed: Toggle - 26219: - - Pressed: Toggle - - uid: 26267 + - uid: 26858 components: - - type: MetaData - name: кнопка вызова уборщика - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-32.5 + pos: -54.454124,-2.7516475 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 23220: - - Pressed: Toggle - - uid: 42671 + - uid: 43145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,59.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40332: - - Pressed: Open - 40330: - - Pressed: Open - 40334: - - Pressed: Open - 40331: - - Pressed: Close - 40329: - - Pressed: Close - 40328: - - Pressed: Close - - uid: 42672 + pos: 57.497917,83.365555 + parent: 40599 + - uid: 43146 components: - type: Transform - pos: 44.5,58.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40331: - - Pressed: Open - 40328: - - Pressed: Open - 40329: - - Pressed: Open - 40332: - - Pressed: Close - 40330: - - Pressed: Close - 40334: - - Pressed: Close - 42441: - - Pressed: Off - 42696: - - Pressed: Trigger - 42227: - - Pressed: On - 42229: - - Pressed: On - - uid: 42673 + pos: 56.493286,83.36093 + parent: 40599 +- proto: SinkWide + entities: + - uid: 26859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,58.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40338: - - Pressed: Toggle - - uid: 42674 + rot: 1.5707963267948966 rad + pos: 1.5,31.5 + parent: 2 + - uid: 26860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,55.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40325: - - Pressed: Open - 42401: - - Pressed: On - - uid: 42675 + pos: -17.5,44.5 + parent: 2 + - uid: 26861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,50.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 42702: - - Pressed: Trigger - - uid: 42676 + rot: 1.5707963267948966 rad + pos: -26.5,44.5 + parent: 2 + - uid: 26862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 69.5,52.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40327: - - Pressed: Open - - uid: 42677 + pos: -53.5,9.5 + parent: 2 + - uid: 26863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,58.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40326: - - Pressed: Toggle - - uid: 42678 + pos: 65.5,7.5 + parent: 2 + - uid: 26864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,53.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40337: - - Pressed: Toggle - - uid: 42679 + rot: 3.141592653589793 rad + pos: 46.5,25.5 + parent: 2 + - uid: 26865 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,72.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40324: - - Pressed: Open - 40335: - - Pressed: Open - 40336: - - Pressed: Open - - uid: 42680 + pos: 26.5,31.5 + parent: 2 + - uid: 26866 components: - - type: MetaData - name: кнопка тревоги - type: Transform rot: 3.141592653589793 rad - pos: 58.5,67.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40339: - - Pressed: Toggle - 42227: - - Pressed: Toggle - 42229: - - Pressed: Toggle - - uid: 42681 + pos: 9.5,-13.5 + parent: 2 + - uid: 26867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,6.5 + parent: 2 + - uid: 26868 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,52.5 - parent: 40203 - - uid: 42682 + pos: 1.5,30.5 + parent: 2 + - uid: 26869 components: - - type: MetaData - desc: Эта кнопка что-то активирует. Кажется, она неисправна.. - name: кнопка гермозатворов - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,52.5 - parent: 40203 - - uid: 42683 + pos: 11.5,48.5 + parent: 2 + - uid: 26870 components: - - type: MetaData - name: кнопка ставней - type: Transform - pos: 49.5,75.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 42659: - - Pressed: Toggle - 42660: - - Pressed: Close - - uid: 42684 + rot: -1.5707963267948966 rad + pos: 11.5,46.5 + parent: 2 + - uid: 26871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,77.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 42705: - - Pressed: Trigger - 42708: - - Pressed: Trigger - 42353: - - Pressed: Open - 42355: - - Pressed: Open - 42354: - - Pressed: Open - - uid: 42685 + rot: -1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 + - uid: 26872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,75.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40341: - - Pressed: Close - 42706: - - Pressed: Trigger - 42693: - - Pressed: Open - 40368: - - Pressed: Trigger - 42231: - - Pressed: On - - uid: 42686 + pos: 12.5,41.5 + parent: 2 + - uid: 26873 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,77.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 42707: - - Pressed: Trigger - - uid: 42687 + pos: 18.5,32.5 + parent: 2 + - uid: 26874 components: - - type: MetaData - desc: Эта кнопка что-то активирует. Кажется, она неисправна.. - name: кнопка ставней - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,73.5 - parent: 40203 - - uid: 42688 + pos: -102.5,28.5 + parent: 2 + - uid: 26875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,58.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40332: - - Pressed: Close - 40330: - - Pressed: Close - 40334: - - Pressed: Close - 42694: - - Pressed: Trigger - 40331: - - Pressed: Close - 40328: - - Pressed: Close - 40329: - - Pressed: Close - - uid: 42689 + rot: -1.5707963267948966 rad + pos: -99.5,16.5 + parent: 2 + - uid: 26876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,59.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 42698: - - Pressed: Trigger - 40331: - - Pressed: Close - 40328: - - Pressed: Close - 40329: - - Pressed: Close - 40332: - - Pressed: Close - 40330: - - Pressed: Close - 40334: - - Pressed: Close - - uid: 42690 + rot: 3.141592653589793 rad + pos: 1.5,56.5 + parent: 2 + - uid: 26877 components: - - type: MetaData - desc: Эта кнопка открывает Медблок. - name: кнопка гермозатворов - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,68.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40322: - - Pressed: Toggle - 40321: - - Pressed: Toggle - 40333: - - Pressed: Toggle -- proto: SignalControlledValve - entities: - - uid: 26268 + rot: 3.141592653589793 rad + pos: 2.5,56.5 + parent: 2 + - uid: 43147 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,18.5 - parent: 2 - - type: GasValve - open: False - - uid: 42691 + pos: 58.5,61.5 + parent: 40599 +- proto: SmallLight + entities: + - uid: 26878 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,56.5 - parent: 40203 - - type: GasValve - open: False - - type: AtmosPipeColor - color: '#888888FF' - - uid: 42692 + pos: -59.5,53.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 26879 components: - type: Transform - pos: 36.5,82.5 - parent: 40203 - - type: GasValve - open: False - - uid: 42693 + pos: 29.5,58.5 + parent: 2 + - uid: 26880 components: - type: Transform - pos: 38.5,82.5 - parent: 40203 - - type: GasValve - open: False -- proto: SignalTimer + pos: -6.5,45.5 + parent: 2 + - uid: 26881 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 +- proto: SMESBasic entities: - - uid: 26269 + - uid: 26882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,18.5 + pos: -21.5,60.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26268: - - Timer: Close - - uid: 42694 + - uid: 26883 components: - type: MetaData - name: закрытие выхода + открытие пара + таймер закрытия пара + name: СМЭС "ИИ, Серверная" - type: Transform - pos: 36.5,57.5 - parent: 40203 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 42695: - - Timer: Trigger - 42691: - - Timer: Open - 40332: - - Timer: Close - 40330: - - Timer: Close - 40334: - - Timer: Close - 42434: - - Timer: Off - 42435: - - Timer: Off - 42223: - - Timer: On - 42225: - - Timer: On - - uid: 42695 + pos: 0.5,15.5 + parent: 2 + - uid: 26884 components: - type: MetaData - name: закрытие пара + таймер на открытие входа + name: СМЭС "Массив" - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,56.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 42697: - - Timer: Trigger - 40367: - - Timer: Trigger - 42691: - - Timer: Close - - uid: 42696 + pos: -15.5,-41.5 + parent: 2 + - uid: 26885 components: - type: MetaData - name: первый цикл часть 1 + name: СМЭС "Массив" - type: Transform - pos: 47.5,57.5 - parent: 40203 - - type: SignalTimer - delay: 3 - - type: DeviceLinkSource - linkedPorts: - 42701: - - Timer: Trigger - 42703: - - Timer: Trigger - 42421: - - Timer: Toggle - 40211: - - Timer: DoorBolt - 42418: - - Timer: Toggle - 42423: - - Timer: Toggle - - uid: 42697 + pos: -13.5,-41.5 + parent: 2 + - uid: 26886 components: - type: MetaData - name: открытие входа + name: СМЭС "Массив" - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,55.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40329: - - Timer: Open - 40328: - - Timer: Open - 40331: - - Timer: Open - 42223: - - Timer: Off - 42225: - - Timer: Off - 42434: - - Timer: On - 42435: - - Timer: On - 42711: - - Timer: Trigger - - uid: 42698 + pos: -15.5,-40.5 + parent: 2 + - uid: 26887 components: - type: MetaData - name: закрытие входа + открытие пара + таймер закрытия пара + name: СМЭС "Массив" - type: Transform - pos: 35.5,57.5 - parent: 40203 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 42691: - - Timer: Open - 40328: - - Timer: Close - 40331: - - Timer: Close - 42700: - - Timer: Trigger - 40329: - - Timer: Close - 42434: - - Timer: Off - 42435: - - Timer: Off - 42223: - - Timer: On - 42225: - - Timer: On - - uid: 42699 + pos: -13.5,-40.5 + parent: 2 + - uid: 26888 components: - type: MetaData - name: открытие выхода + name: СМЭС "Массив" - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,55.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40332: - - Timer: Open - 40330: - - Timer: Open - 40334: - - Timer: Open - 42223: - - Timer: Off - 42225: - - Timer: Off - 42434: - - Timer: On - 42435: - - Timer: On - 42710: - - Timer: Trigger - - uid: 42700 + pos: -15.5,-38.5 + parent: 2 + - uid: 26889 components: - type: MetaData - name: закрытие пара + таймер на открытие выхода + name: СМЭС "Массив" - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,56.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 42691: - - Timer: Close - 42699: - - Timer: Trigger - 40367: - - Timer: Trigger - - uid: 42701 + pos: -13.5,-39.5 + parent: 2 + - uid: 26890 components: - type: MetaData - name: первый цикл часть 2 + name: СМЭС "Массив" - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,56.5 - parent: 40203 - - type: SignalTimer - delay: 6 - - type: DeviceLinkSource - linkedPorts: - 42696: - - Timer: Trigger - 42668: - - Timer: Toggle - 42439: - - Timer: Toggle - 40213: - - Timer: Toggle - 42658: - - Timer: Toggle - - uid: 42702 + pos: -13.5,-38.5 + parent: 2 + - uid: 26891 components: - type: MetaData - name: гермозатворы и пушка + name: СМЭС "Массив" - type: Transform - pos: 72.5,50.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40327: - - Start: Open - - Timer: Close - 40325: - - Start: Close - - Timer: Open - 42401: - - Start: Off - - Timer: On - - uid: 42703 + pos: -15.5,-39.5 + parent: 2 + - uid: 26892 components: - type: MetaData - name: второй цикл часть 1 + name: СМЭС "Двигатель Антиматерии" - type: Transform - pos: 47.5,56.5 - parent: 40203 - - type: SignalTimer - delay: 1 - - type: DeviceLinkSource - linkedPorts: - 42704: - - Timer: Trigger - 42419: - - Timer: Toggle - 42667: - - Timer: Toggle - 42664: - - Timer: Toggle - 42662: - - Timer: Toggle - 42669: - - Timer: Toggle - - uid: 42704 + pos: -26.5,-42.5 + parent: 2 + - uid: 26893 components: - type: MetaData - name: второй цикл часть 2 + name: СМЭС "ТЭГ" - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,55.5 - parent: 40203 - - type: SignalTimer - delay: 15 - - type: DeviceLinkSource - linkedPorts: - 42703: - - Timer: Trigger - 42424: - - Timer: Toggle - 42407: - - Timer: Toggle - 42666: - - Timer: Toggle - 42654: - - Timer: Toggle - 42423: - - Timer: Toggle - - uid: 42705 + pos: -16.5,-48.5 + parent: 2 + - uid: 26894 components: - - type: MetaData - name: турели типа да (30 сек) - type: Transform - pos: 47.5,81.5 - parent: 40203 - - type: SignalTimer - delay: 30 - - type: DeviceLinkSource - linkedPorts: - 40223: - - Start: DoorBolt - - Timer: DoorBolt - 40224: - - Start: DoorBolt - - Timer: DoorBolt - 42353: - - Timer: DoorBolt - 42355: - - Timer: DoorBolt - 42354: - - Timer: DoorBolt - 40341: - - Timer: Open - 42709: - - Timer: Trigger - - uid: 42706 + pos: -133.5,11.5 + parent: 2 + - uid: 43148 components: - - type: MetaData - name: таймер выхода - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,82.5 - parent: 40203 - - type: SignalTimer - delay: 15 - - type: DeviceLinkSource - linkedPorts: - 42692: - - Timer: Open - 42693: - - Timer: Close - 40340: - - Timer: Open - 42231: - - Timer: Off - 42707: - - Timer: Trigger - - uid: 42707 + pos: 63.5,59.5 + parent: 40599 + - uid: 43149 components: - - type: MetaData - name: таймер входа - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,82.5 - parent: 40203 - - type: SignalTimer - delay: 15 - - type: DeviceLinkSource - linkedPorts: - 40341: - - Timer: Open - 42231: - - Timer: Off - - uid: 42708 + pos: 64.5,59.5 + parent: 40599 + - uid: 46786 components: - - type: MetaData - name: таймер болтов турелей 0.1 - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,81.5 - parent: 40203 - - type: SignalTimer - delay: 0.1 - - type: DeviceLinkSource - linkedPorts: - 42353: - - Timer: DoorBolt - 42355: - - Timer: DoorBolt - 42354: - - Timer: DoorBolt - - uid: 42709 + pos: 6.5,6.5 + parent: 46584 +- proto: SMESBasicEmpty + entities: + - uid: 26895 components: - - type: MetaData - name: таймер закрытия 0.1 - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,81.5 - parent: 40203 - - type: SignalTimer - delay: 0.1 - - type: DeviceLinkSource - linkedPorts: - 42354: - - Timer: Close - 42355: - - Timer: Close - 42353: - - Timer: Close - - uid: 42710 + pos: -57.5,63.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 26896 components: - - type: MetaData - name: таймер закрытия выхода - type: Transform rot: 3.141592653589793 rad - pos: 34.5,55.5 - parent: 40203 - - type: SignalTimer - delay: 10 - - type: DeviceLinkSource - linkedPorts: - 40332: - - Timer: Close - 40330: - - Timer: Close - 40334: - - Timer: Close - - uid: 42711 + pos: 18.286644,4.507171 + parent: 2 + - uid: 26897 components: - - type: MetaData - name: таймер закрытия входа - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,55.5 - parent: 40203 - - type: SignalTimer - delay: 10 - - type: DeviceLinkSource - linkedPorts: - 40329: - - Timer: Close - 40331: - - Timer: Close - 40328: - - Timer: Close -- proto: SignAnomaly + pos: 0.65688276,-43.142662 + parent: 2 +- proto: SmokeGrenade entities: - - uid: 26270 + - uid: 26898 components: - type: Transform - pos: 41.5,-50.5 + pos: -24.515804,-7.8226504 parent: 2 -- proto: SignAnomaly2 +- proto: SmokingPipeFilledCannabisRainbow entities: - - uid: 26271 + - uid: 24645 components: - type: Transform - pos: 20.5,-42.5 - parent: 2 -- proto: SignArcade + parent: 24644 + - type: Physics + canCollide: False +- proto: SnapPop entities: - - uid: 26272 + - uid: 26899 components: - type: Transform - pos: 17.5,26.5 + pos: 58.722466,-17.402088 parent: 2 -- proto: SignArmory +- proto: SnowBattlemap entities: - - uid: 26273 + - uid: 26900 components: - type: Transform - pos: -41.5,-5.5 + pos: 93.045166,-15.998913 parent: 2 - - uid: 26274 + - uid: 26901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,5.5 + pos: 0.077181816,19.90153 parent: 2 -- proto: SignAtmos +- proto: Soap entities: - - uid: 26275 + - uid: 26902 components: - type: Transform - pos: -8.5,-51.5 + pos: -42.497555,17.408945 parent: 2 -- proto: SignBar + - uid: 26903 + components: + - type: Transform + pos: 66.49114,4.3308225 + parent: 2 + - uid: 43150 + components: + - type: Transform + rot: -0.8726646259971648 rad + pos: 60.624687,81.46779 + parent: 40599 +- proto: SoapDeluxe entities: - - uid: 26276 + - uid: 26904 components: - type: Transform - pos: 40.5,23.5 + rot: -1.5707963267948966 rad + pos: -4.5935335,36.710293 parent: 2 - - uid: 26277 + - uid: 26905 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,28.5 + pos: -4.764709,36.71457 parent: 2 -- proto: SignBarbershop + - uid: 43151 + components: + - type: Transform + rot: 5.235987755982989 rad + pos: 57.081047,83.46779 + parent: 40599 +- proto: SoapHomemade entities: - - uid: 26278 + - uid: 26906 components: - type: Transform - pos: -6.5,32.5 + pos: 23.360405,42.376984 parent: 2 -- proto: SignBio +- proto: SodaDispenser entities: - - uid: 26279 + - uid: 26907 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,39.5 + pos: 43.5,22.5 parent: 2 -- proto: SignBiohazardMed - entities: - - uid: 26280 + - uid: 26908 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,42.5 + pos: -110.5,10.5 parent: 2 -- proto: SignCansScience +- proto: SodaDispenserEmpty entities: - - uid: 26281 + - uid: 26909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-51.5 + rot: 3.141592653589793 rad + pos: -36.5,21.5 parent: 2 -- proto: SignChapel + - uid: 46163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 45355 +- proto: SolarAssembly entities: - - uid: 26282 + - uid: 26910 components: - type: Transform - pos: 29.5,8.5 + pos: -37.5,64.5 parent: 2 - - uid: 26283 + - uid: 26911 components: - type: Transform - pos: 23.5,8.5 + pos: -39.5,68.5 parent: 2 -- proto: SignChem - entities: - - uid: 26284 + - uid: 26912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,45.5 + pos: -35.5,67.5 parent: 2 - - uid: 26285 + - uid: 26913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,38.5 + pos: -39.5,-66.5 parent: 2 -- proto: SignCloning - entities: - - uid: 26286 + - uid: 26914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,50.5 + pos: -32.5,-70.5 parent: 2 -- proto: SignConference + - uid: 26915 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 2 +- proto: SolarAssemblyFlatpack entities: - - uid: 26287 + - uid: 26916 components: - type: Transform - pos: -31.5,-12.5 + rot: 0.4886921905584123 rad + pos: -39.385216,67.49599 parent: 2 -- proto: SignCryogenicsMed +- proto: SolarPanel entities: - - uid: 26288 + - uid: 26917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,50.5 + rot: -1.5707963267948966 rad + pos: -63.5,54.5 parent: 2 - - uid: 26289 + - uid: 26918 components: - type: Transform - pos: -56.5,-27.5 + pos: -33.5,-64.5 parent: 2 -- proto: SignDanger - entities: - - uid: 42712 + - uid: 26919 components: - type: Transform - pos: 28.5,25.5 - parent: 40203 - - uid: 42713 + pos: -33.5,-70.5 + parent: 2 + - uid: 26920 components: - type: Transform - pos: 74.5,22.5 - parent: 40203 - - uid: 42714 + pos: -60.5,75.5 + parent: 2 + - uid: 26921 components: - type: Transform - pos: 82.5,30.5 - parent: 40203 - - uid: 42715 + pos: -33.5,-68.5 + parent: 2 + - uid: 26922 components: - type: Transform - pos: 85.5,38.5 - parent: 40203 - - uid: 42716 + pos: -33.5,-66.5 + parent: 2 + - uid: 26923 components: - type: Transform - pos: 62.5,32.5 - parent: 40203 - - uid: 42717 + pos: -31.5,-70.5 + parent: 2 + - uid: 26924 components: - type: Transform - pos: 38.5,26.5 - parent: 40203 - - uid: 42718 + pos: -36.5,-68.5 + parent: 2 + - uid: 26925 components: - type: Transform - pos: 33.5,39.5 - parent: 40203 - - uid: 42719 + pos: -30.5,-70.5 + parent: 2 + - uid: 26926 components: - type: Transform - pos: 50.5,31.5 - parent: 40203 - - uid: 42720 + pos: -35.5,-70.5 + parent: 2 + - uid: 26927 components: - type: Transform - pos: 78.5,41.5 - parent: 40203 -- proto: SignDangerMed - entities: - - uid: 26290 + pos: -29.5,-70.5 + parent: 2 + - uid: 26928 components: - type: Transform - pos: -134.5,4.5 + pos: -37.5,-70.5 parent: 2 - - uid: 26291 + - uid: 26929 components: - type: Transform - pos: 12.5,62.5 + pos: -37.5,-68.5 parent: 2 - - uid: 26292 + - uid: 26930 components: - type: Transform - pos: 10.5,62.5 + pos: -36.5,-70.5 parent: 2 - - uid: 26293 + - uid: 26931 components: - type: Transform - pos: 12.5,59.5 + pos: -38.5,-68.5 parent: 2 - - uid: 26294 + - uid: 26932 components: - type: Transform - pos: 20.5,59.5 + pos: -29.5,-64.5 parent: 2 - - uid: 26295 + - uid: 26933 components: - type: Transform - pos: 39.5,-31.5 + pos: -39.5,-68.5 parent: 2 - - uid: 26296 + - uid: 26934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.47896,4.486988 + pos: -39.5,-70.5 parent: 2 - - uid: 42721 + - uid: 26935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,47.5 - parent: 40203 - - uid: 42722 + pos: -39.5,-64.5 + parent: 2 + - uid: 26936 + components: + - type: Transform + pos: -38.5,-66.5 + parent: 2 + - uid: 26937 + components: + - type: Transform + pos: -48.5,75.5 + parent: 2 + - uid: 26938 + components: + - type: Transform + pos: -49.5,75.5 + parent: 2 + - uid: 26939 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,57.5 - parent: 40203 -- proto: SignDirectionalBar - entities: - - uid: 26297 + pos: -70.5,73.5 + parent: 2 + - uid: 26940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.469852,17.682484 + rot: 3.141592653589793 rad + pos: -69.5,75.5 parent: 2 - - uid: 26298 + - uid: 26941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.491169,2.7778897 + rot: 3.141592653589793 rad + pos: -71.5,73.5 parent: 2 - - uid: 26299 + - uid: 26942 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.497423,-14.082951 + pos: -71.5,71.5 parent: 2 - - uid: 26300 + - uid: 26943 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.509804,16.721863 + pos: -73.5,75.5 parent: 2 -- proto: SignDirectionalBridge - entities: - - uid: 26301 + - uid: 26944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.49935,2.5389524 + rot: 3.141592653589793 rad + pos: -73.5,71.5 parent: 2 - - uid: 26302 + - uid: 26945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.519487,-1.4023342 + rot: 3.141592653589793 rad + pos: -72.5,75.5 parent: 2 -- proto: SignDirectionalBrig - entities: - - uid: 26303 + - uid: 26946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-14.8 + rot: 3.141592653589793 rad + pos: -69.5,73.5 parent: 2 -- proto: SignDirectionalChapel - entities: - - uid: 26304 + - uid: 26947 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.521086,-1.1663976 + pos: -68.5,73.5 parent: 2 -- proto: SignDirectionalCryo - entities: - - uid: 26305 + - uid: 26948 components: - type: Transform - pos: 4.4696746,-18.419004 + rot: 3.141592653589793 rad + pos: -68.5,71.5 parent: 2 - - uid: 26306 + - uid: 26949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-14.2 + rot: 3.141592653589793 rad + pos: -68.5,75.5 parent: 2 -- proto: SignDirectionalDorms - entities: - - uid: 26307 + - uid: 26950 components: - type: Transform - pos: 34.515987,16.268932 + pos: -64.5,73.5 parent: 2 -- proto: SignDirectionalEng - entities: - - uid: 26308 + - uid: 26951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-14.4 + pos: -64.5,72.5 parent: 2 - - uid: 26309 + - uid: 26952 components: - type: Transform - pos: -11.4340925,-18.392933 + pos: -52.5,73.5 parent: 2 - - uid: 26310 + - uid: 26953 components: - type: Transform - pos: 23.519487,-1.6210842 + pos: -53.5,73.5 parent: 2 - - uid: 26311 + - uid: 26954 components: - type: Transform - pos: -18.482128,2.2960944 + rot: 3.141592653589793 rad + pos: -70.5,71.5 parent: 2 -- proto: SignDirectionalEvac - entities: - - uid: 26312 + - uid: 26955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.499065,-21.70497 + rot: 3.141592653589793 rad + pos: -74.5,75.5 parent: 2 - - uid: 26313 + - uid: 26956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 86.5,-24.5 + rot: 3.141592653589793 rad + pos: -74.5,73.5 parent: 2 - - uid: 26314 + - uid: 26957 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-21.5 + rot: 3.141592653589793 rad + pos: -74.5,71.5 parent: 2 - - uid: 26315 + - uid: 26958 components: - type: Transform - pos: 94.5,-24.5 + pos: -62.5,74.5 parent: 2 - - uid: 26316 + - uid: 26959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-18.5 + pos: -62.5,73.5 parent: 2 - - uid: 26317 + - uid: 26960 components: - type: Transform - pos: -18.5,-1.5 + pos: -62.5,72.5 parent: 2 - - uid: 26318 + - uid: 26961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 + pos: -62.5,71.5 parent: 2 - - uid: 26319 + - uid: 26962 components: - type: Transform - pos: 18.5,17.5 + pos: -60.5,74.5 parent: 2 - - uid: 26320 + - uid: 26963 components: - type: Transform - pos: 30.5,16.5 + pos: -60.5,71.5 parent: 2 -- proto: SignDirectionalFood - entities: - - uid: 26321 + - uid: 26964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.515987,16.487682 + pos: -58.5,74.5 parent: 2 -- proto: SignDirectionalHop - entities: - - uid: 26322 + - uid: 26965 components: - type: Transform - pos: -9.5,17.5 + pos: -60.5,72.5 parent: 2 - - uid: 26323 + - uid: 26966 components: - type: Transform - pos: 23.491169,2.5591397 + pos: -58.5,72.5 parent: 2 - - uid: 26324 + - uid: 26967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-14.6 + pos: -58.5,73.5 parent: 2 -- proto: SignDirectionalJanitor - entities: - - uid: 26325 + - uid: 26968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.506645,26.834694 + pos: -58.5,71.5 parent: 2 -- proto: SignDirectionalLibrary - entities: - - uid: 26326 + - uid: 26969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5221033,26.363205 + pos: -53.5,75.5 parent: 2 -- proto: SignDirectionalMed - entities: - - uid: 26327 + - uid: 26970 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.450169,17.459784 + pos: -54.5,75.5 parent: 2 - - uid: 26328 + - uid: 26971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.50784,-14.291285 + pos: -51.5,75.5 parent: 2 - - uid: 26329 + - uid: 26972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.522641,26.605423 + pos: -52.5,75.5 parent: 2 - - uid: 26330 + - uid: 26973 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5695162,29.558548 + pos: -50.5,75.5 parent: 2 -- proto: SignDirectionalSci - entities: - - uid: 26331 + - uid: 26974 components: - type: Transform - pos: 23.491169,2.3403897 + pos: -64.5,75.5 parent: 2 - - uid: 26332 + - uid: 26975 components: - type: Transform - pos: 23.493433,-14.689808 + pos: -62.5,75.5 parent: 2 -- proto: SignDirectionalSec - entities: - - uid: 26333 + - uid: 26976 components: - type: Transform - pos: -9.502101,17.701454 + pos: -51.5,73.5 parent: 2 - - uid: 26334 + - uid: 26977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.493652,2.793484 + pos: -50.5,73.5 parent: 2 -- proto: SignDirectionalSolar - entities: - - uid: 26335 + - uid: 26978 components: - type: Transform - pos: -29.5,71.5 + pos: -48.5,73.5 parent: 2 - - uid: 26336 + - uid: 26979 + components: + - type: Transform + pos: -48.5,71.5 + parent: 2 + - uid: 26980 + components: + - type: Transform + pos: -49.5,71.5 + parent: 2 + - uid: 26981 + components: + - type: Transform + pos: -50.5,71.5 + parent: 2 + - uid: 26982 + components: + - type: Transform + pos: -54.5,71.5 + parent: 2 + - uid: 26983 + components: + - type: Transform + pos: -52.5,71.5 + parent: 2 + - uid: 26984 + components: + - type: Transform + pos: -32.5,-68.5 + parent: 2 + - uid: 26985 + components: + - type: Transform + pos: -31.5,-66.5 + parent: 2 + - uid: 26986 + components: + - type: Transform + pos: -35.5,-66.5 + parent: 2 + - uid: 26987 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 2 + - uid: 26988 + components: + - type: Transform + pos: -32.5,-66.5 + parent: 2 + - uid: 26989 + components: + - type: Transform + pos: -36.5,-66.5 + parent: 2 + - uid: 26990 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 + - uid: 26991 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 26992 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 + - uid: 26993 + components: + - type: Transform + pos: -29.5,-68.5 + parent: 2 + - uid: 26994 + components: + - type: Transform + pos: -37.5,-64.5 + parent: 2 + - uid: 26995 + components: + - type: Transform + pos: -36.5,-64.5 + parent: 2 + - uid: 26996 + components: + - type: Transform + pos: -29.5,-66.5 + parent: 2 + - uid: 26997 + components: + - type: Transform + pos: -30.5,-66.5 + parent: 2 + - uid: 26998 + components: + - type: Transform + pos: -38.5,-64.5 + parent: 2 + - uid: 26999 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,41.5 + pos: -35.5,-72.5 parent: 2 -- proto: SignDirectionalSupply - entities: - - uid: 26337 + - uid: 27000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-21.5 + rot: 3.141592653589793 rad + pos: -38.5,-72.5 parent: 2 - - uid: 26338 + - uid: 27001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.497423,-14.468369 + rot: 3.141592653589793 rad + pos: -39.5,-72.5 parent: 2 - - uid: 26339 + - uid: 27002 components: - type: Transform - pos: 60.5,-25.5 + rot: 3.141592653589793 rad + pos: -32.5,-72.5 parent: 2 -- proto: SignDisposalSpace - entities: - - uid: 26340 + - uid: 27003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,-28.5 + rot: 3.141592653589793 rad + pos: -33.5,-72.5 parent: 2 -- proto: SignDoors - entities: - - uid: 42723 + - uid: 27004 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-72.5 + parent: 2 + - uid: 27005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-72.5 + parent: 2 + - uid: 46787 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,67.5 - parent: 40203 - - uid: 42724 + pos: 10.5,4.5 + parent: 46584 + - uid: 46788 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,67.5 - parent: 40203 -- proto: SignElectricalMed + pos: 10.5,5.5 + parent: 46584 + - uid: 46789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 46584 + - uid: 46790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 46584 + - uid: 46791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 46584 + - uid: 46792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 46584 + - uid: 46793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,5.5 + parent: 46584 +- proto: SolarPanelBroken entities: - - uid: 26341 + - uid: 27006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,10.5 + pos: -73.5,73.5 parent: 2 - - uid: 26342 + - uid: 27007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-37.5 + pos: -72.5,73.5 + parent: 2 + - uid: 27008 + components: + - type: Transform + pos: -72.5,71.5 + parent: 2 + - uid: 27009 + components: + - type: Transform + pos: -49.5,73.5 + parent: 2 + - uid: 27010 + components: + - type: Transform + pos: -69.5,71.5 + parent: 2 + - uid: 27011 + components: + - type: Transform + pos: -58.5,75.5 + parent: 2 + - uid: 27012 + components: + - type: Transform + pos: -60.5,73.5 + parent: 2 + - uid: 27013 + components: + - type: Transform + pos: -71.5,75.5 parent: 2 - - uid: 26343 + - uid: 27014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-43.5 + pos: -70.5,75.5 parent: 2 - - uid: 26344 + - uid: 27015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-43.5 + pos: -64.5,74.5 parent: 2 - - uid: 26345 + - uid: 27016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-51.5 + pos: -64.5,71.5 parent: 2 - - uid: 26346 + - uid: 27017 components: - type: Transform - pos: -35.5,-47.5 + pos: -54.5,73.5 parent: 2 - - uid: 26347 + - uid: 27018 components: - type: Transform - pos: -35.5,-43.5 + pos: -53.5,71.5 parent: 2 - - uid: 26348 + - uid: 27019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-43.5 + pos: -51.5,71.5 parent: 2 - - uid: 42725 + - uid: 27020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,42.5 - parent: 40203 - - uid: 42726 + pos: -30.5,-64.5 + parent: 2 + - uid: 27021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,38.5 - parent: 40203 - - uid: 42727 + pos: -37.5,-66.5 + parent: 2 + - uid: 27022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,38.5 - parent: 40203 - - uid: 42728 + pos: -30.5,-68.5 + parent: 2 + - uid: 27023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,42.5 - parent: 40203 -- proto: SignEngine - entities: - - uid: 26349 + pos: -38.5,-70.5 + parent: 2 + - uid: 27024 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-47.5 + pos: -31.5,-72.5 parent: 2 - - uid: 26350 + - uid: 27025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-43.5 + rot: 3.141592653589793 rad + pos: -36.5,-72.5 parent: 2 - - uid: 42729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,64.5 - parent: 40203 -- proto: SignEngineering - entities: - - uid: 26351 + - uid: 27026 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-34.5 + pos: -37.5,-72.5 parent: 2 -- proto: SignEVA - entities: - - uid: 26352 + - uid: 46794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 2 -- proto: SignExamroom - entities: - - uid: 26353 + pos: 10.5,6.5 + parent: 46584 + - uid: 46795 components: - type: Transform - pos: -106.5,5.5 - parent: 2 - - uid: 42730 + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 46584 + - uid: 46796 components: - type: Transform - pos: 54.5,59.5 - parent: 40203 -- proto: SignFlammableMed - entities: - - uid: 26354 + pos: 10.5,3.5 + parent: 46584 + - uid: 46797 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-52.5 - parent: 2 - - uid: 26355 + pos: 9.5,8.5 + parent: 46584 + - uid: 46798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,23.5 - parent: 2 - - uid: 26356 + rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 46584 +- proto: SolarTracker + entities: + - uid: 27027 components: - type: Transform - pos: -80.5,46.5 + pos: -61.5,76.5 parent: 2 - - uid: 26357 + - uid: 27028 components: - type: Transform - pos: -23.5,17.5 + pos: -34.5,-73.5 parent: 2 - - uid: 42731 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,57.5 - parent: 40203 - - uid: 45808 + - uid: 46799 components: - type: Transform - pos: -0.5,16.5 - parent: 44970 -- proto: SignHead + pos: 11.5,8.5 + parent: 46584 +- proto: SolidSecretDoor entities: - - uid: 26358 + - uid: 27029 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-1.5 + pos: 26.5,52.5 parent: 2 - - uid: 26359 + - uid: 27030 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-1.5 + pos: 23.5,15.5 parent: 2 -- proto: SignHydro1 - entities: - - uid: 26360 + - uid: 27031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,17.5 + rot: -1.5707963267948966 rad + pos: -53.5,-9.5 parent: 2 - - uid: 26361 +- proto: SpaceCash + entities: + - uid: 27032 components: - type: Transform - pos: 9.5,30.5 + pos: 21.939957,48.335506 parent: 2 - - uid: 26362 + - uid: 27033 components: - type: Transform - pos: 19.5,34.5 + pos: 21.945702,47.967632 parent: 2 - - uid: 42732 - components: - - type: Transform - pos: 53.5,75.5 - parent: 40203 -- proto: SignInterrogation - entities: - - uid: 26363 + - uid: 27034 components: - type: Transform - pos: -35.5,5.5 + pos: 21.551998,48.08313 parent: 2 -- proto: SignJanitor - entities: - - uid: 26364 + - uid: 27035 components: - type: Transform - pos: 2.5,29.5 + pos: 21.693218,47.72381 parent: 2 - - uid: 26365 + - uid: 27036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,24.5 + pos: 21.376545,48.284176 parent: 2 -- proto: SignKiddiePlaque - entities: - - uid: 26366 + - uid: 27037 components: - - type: MetaData - desc: Табличка, на которой описана техника безопасности и правила катка. Главное - берите снаряжение по номерам! - type: Transform - pos: 3.5,-24.5 + pos: 21.26528,47.912025 parent: 2 - - uid: 26367 + - uid: 27038 components: - - type: MetaData - desc: 'Небольшая табличка. Текст на ней гласит: "Внимание! Вскрывать только при самом экстренном случае нехватки оснащения! В иных случаях, обратитесь к своему непосредственному начальству!"' - name: предупреждающая табличка - type: Transform - pos: 25.5,-2.5 + pos: 21.804482,48.13446 parent: 2 - - uid: 42733 + - uid: 27039 components: - - type: MetaData - desc: Сильное тело и быстрый ум не убоятся холода. - name: Теслаград - type: Transform - pos: 51.5,18.5 - parent: 40203 -- proto: SignLaserMed - entities: - - uid: 42734 + pos: 23.89282,48.20718 + parent: 2 + - uid: 27040 components: - type: Transform - pos: 59.5,73.5 - parent: 40203 -- proto: SignLawyer - entities: - - uid: 26368 + pos: 23.905659,47.963356 + parent: 2 + - uid: 27041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,26.5 + pos: 21.33803,48.284176 parent: 2 -- proto: SignLibrary +- proto: SpaceCash10 entities: - - uid: 26369 + - uid: 27042 components: - type: Transform - pos: 0.5,23.5 + pos: -29.565361,27.817581 parent: 2 -- proto: SignMagneticsMed - entities: - - uid: 42735 + - uid: 27043 components: - type: Transform - pos: 61.5,73.5 - parent: 40203 -- proto: SignMedical - entities: - - uid: 26370 + pos: -29.612236,27.645706 + parent: 2 + - uid: 27044 components: - type: Transform - pos: -51.5,13.5 + pos: -29.534111,27.505081 parent: 2 - - uid: 26371 + - uid: 45399 components: - type: Transform - pos: -11.5,46.5 - parent: 2 - - uid: 26372 + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45400 components: - type: Transform - pos: -2.5,44.5 - parent: 2 - - uid: 42736 + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 45401 components: - type: Transform - pos: 54.5,63.5 - parent: 40203 -- proto: SignMorgue - entities: - - uid: 26373 + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 2 -- proto: SignNews + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash100 entities: - - uid: 26374 + - uid: 27045 components: - type: Transform - pos: 14.5,22.5 + pos: 2.8168125,1.8065335 parent: 2 -- proto: SignNosmoking - entities: - - uid: 26375 + - uid: 27046 components: - type: Transform - pos: -40.5,-5.5 + rot: -1.5707963267948966 rad + pos: -29.362236,27.598831 parent: 2 -- proto: SignNTMine - entities: - - uid: 26376 + - uid: 41582 components: - type: Transform - pos: -15.5,35.5 - parent: 2 - - uid: 26377 + parent: 41579 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 41583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-44.5 - parent: 2 -- proto: SignPlaque - entities: - - uid: 26378 + parent: 41579 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47040 components: - type: Transform - pos: 5.5,-48.5 - parent: 2 - - uid: 26379 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47041 components: - - type: MetaData - desc: На табличке указаны номер, дата ввода в эксплуатацию и авторы проекта станции. Видны только инициалы Д.В.и Е.К. - name: Серийный номер - type: Transform - pos: 16.5,-14.5 - parent: 2 -- proto: SignPrison + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash1000 entities: - - uid: 26380 + - uid: 41584 components: - type: Transform - pos: -37.5,9.5 - parent: 2 - - uid: 42737 + parent: 41579 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash10000 + entities: + - uid: 15295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,67.5 - parent: 40203 -- proto: SignPsychology + parent: 15291 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceCash2500 entities: - - uid: 26381 + - uid: 27047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,61.5 + pos: 0.45714092,-8.880639 parent: 2 -- proto: SignRadiationMed + - uid: 45402 + components: + - type: Transform + parent: 45392 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpaceHeater entities: - - uid: 26382 + - uid: 27048 components: - type: Transform - pos: -21.5,-43.5 + pos: -21.5,-51.5 parent: 2 - - uid: 26383 + - uid: 27049 components: - type: Transform - pos: -19.5,-43.5 + pos: -21.5,-48.5 parent: 2 -- proto: SignReception +- proto: SpaceHeaterAnchored entities: - - uid: 26384 + - uid: 27050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-1.5 + pos: -46.5,8.5 parent: 2 - - uid: 26385 + - uid: 27051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,41.5 + pos: 18.5,31.5 parent: 2 - - uid: 45809 + - uid: 27052 components: - type: Transform - pos: 4.5,1.5 - parent: 44970 -- proto: SignRedOne + pos: 11.5,41.5 + parent: 2 +- proto: SpaceHeaterEnabled entities: - - uid: 26386 + - uid: 27053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,14.5 + pos: 0.5,12.5 parent: 2 - - uid: 26387 + - type: SpaceHeater + mode: Cool + - type: GasThermoMachine + coefficientOfPerformance: -0.9 + targetTemperature: 268.15 + heatCapacity: 3500 +- proto: SpacemenFigureSpawner + entities: + - uid: 27054 components: - type: Transform - pos: -114.5,17.5 + pos: 7.5,20.5 parent: 2 - - uid: 26388 +- proto: SpaceQuartz1 + entities: + - uid: 43152 components: - type: Transform - pos: -6.6942444,71.39649 - parent: 2 -- proto: SignRedThree + rot: -0.3665191429188092 rad + pos: 30.570244,71.46791 + parent: 40599 +- proto: SpaceVillainArcade entities: - - uid: 26389 + - uid: 27055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,14.5 + rot: 1.5707963267948966 rad + pos: -110.5,3.5 parent: 2 - - uid: 26390 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 27056 components: - type: Transform - pos: -114.5,25.5 + rot: 3.141592653589793 rad + pos: 43.5,-33.5 parent: 2 -- proto: SignRedTwo - entities: - - uid: 26391 + - uid: 27057 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,14.5 + pos: 42.5,-33.5 parent: 2 - - uid: 26392 + - uid: 27058 components: - type: Transform - pos: -114.5,21.5 + pos: 44.5,-31.5 parent: 2 - - uid: 26393 + - uid: 27059 components: - type: Transform - pos: -6.37943,71.39649 + pos: 43.5,-31.5 parent: 2 -- proto: SignRND - entities: - - uid: 26394 + - uid: 27060 components: - type: Transform - pos: 26.5,-27.5 + rot: 3.141592653589793 rad + pos: 41.5,-33.5 parent: 2 - - uid: 26395 + - uid: 27061 components: - type: Transform - pos: 28.5,-27.5 + rot: -1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 - - uid: 42738 + - uid: 27062 components: - type: Transform - pos: 49.5,58.5 - parent: 40203 -- proto: SignRobo - entities: - - uid: 26396 + rot: -1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - uid: 27063 components: - type: Transform - pos: 25.5,-30.5 + rot: -1.5707963267948966 rad + pos: 28.5,7.5 parent: 2 - - uid: 26397 + - uid: 27064 components: - type: Transform - pos: 23.5,-39.5 + rot: -1.5707963267948966 rad + pos: 28.5,6.5 parent: 2 -- proto: SignSalvage +- proto: SpawnMechRipley entities: - - uid: 26398 + - uid: 27065 components: - type: Transform - pos: 71.5,-44.5 + pos: 66.5,-52.5 parent: 2 -- proto: SignSecurearea +- proto: SpawnMobAlexander entities: - - uid: 26399 + - uid: 27066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,17.5 + pos: 25.5,40.5 parent: 2 -- proto: SignSecureMed +- proto: SpawnMobBandito entities: - - uid: 26400 + - uid: 27067 components: - type: Transform - pos: -6.5,63.5 + pos: 8.5,38.5 parent: 2 - - uid: 26401 +- proto: SpawnMobBear + entities: + - uid: 27068 components: - type: Transform - pos: -3.5,63.5 + pos: -60.5,-4.5 parent: 2 - - uid: 42739 + - uid: 27069 components: - type: Transform - pos: 31.5,73.5 - parent: 40203 - - uid: 42740 + pos: -73.5,60.5 + parent: 2 +- proto: SpawnMobBearSalvage + entities: + - uid: 43153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,76.5 - parent: 40203 - - uid: 42741 + pos: 49.5,78.5 + parent: 40599 + - uid: 43154 components: - type: Transform - pos: 51.5,33.5 - parent: 40203 - - uid: 42742 + pos: 52.5,76.5 + parent: 40599 + - uid: 43155 components: - type: Transform - pos: 53.5,33.5 - parent: 40203 -- proto: SignSecureMedRed - entities: - - uid: 42743 + pos: 56.5,78.5 + parent: 40599 + - uid: 43156 components: - type: Transform - pos: 39.5,63.5 - parent: 40203 - - uid: 42744 + pos: 44.5,72.5 + parent: 40599 + - uid: 46800 components: - type: Transform - pos: 39.5,59.5 - parent: 40203 - - uid: 42745 + rot: 1.5707963267948966 rad + pos: -4.5,9.5 + parent: 46584 + - uid: 46801 components: - type: Transform - pos: 44.5,54.5 - parent: 40203 - - uid: 42746 + pos: 1.5,13.5 + parent: 46584 +- proto: SpawnMobCarp + entities: + - uid: 43157 components: - type: Transform - pos: 40.5,54.5 - parent: 40203 - - uid: 42747 + pos: 55.5,70.5 + parent: 40599 + - uid: 43158 components: - type: Transform - pos: 57.5,50.5 - parent: 40203 -- proto: SignSecurity - entities: - - uid: 26402 + pos: 65.5,71.5 + parent: 40599 + - uid: 43159 components: - type: Transform - pos: -26.5,-3.5 - parent: 2 - - uid: 42748 + pos: 62.5,68.5 + parent: 40599 + - uid: 43160 components: - type: Transform - pos: 37.5,64.5 - parent: 40203 -- proto: SignShock - entities: - - uid: 26403 + pos: 52.5,61.5 + parent: 40599 + - uid: 43161 components: - type: Transform - pos: -121.5,0.5 - parent: 2 - - uid: 26404 + pos: 54.5,48.5 + parent: 40599 + - uid: 46164 components: - type: Transform - pos: -121.5,13.5 - parent: 2 - - uid: 42749 + pos: -10.5,8.5 + parent: 45355 + - uid: 46165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,46.5 - parent: 40203 -- proto: SignSmoking - entities: - - uid: 26405 + pos: -4.5,-9.5 + parent: 45355 + - uid: 46166 components: - type: Transform - pos: -49.5,-2.5 - parent: 2 - - uid: 26406 + pos: -1.5,21.5 + parent: 45355 + - uid: 46167 components: - type: Transform - pos: -46.5,9.5 - parent: 2 - - uid: 26407 + pos: 7.5,13.5 + parent: 45355 + - uid: 46168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,29.5 - parent: 2 - - uid: 26408 + pos: 2.5,-0.5 + parent: 45355 + - uid: 46169 components: - type: Transform - pos: 66.5,7.5 - parent: 2 - - uid: 26409 + pos: 14.5,-3.5 + parent: 45355 + - uid: 46170 components: - type: Transform - pos: 11.5,-52.5 - parent: 2 - - uid: 42750 + pos: 13.5,4.5 + parent: 45355 + - uid: 46171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,83.5 - parent: 40203 -- proto: SignSurgery + pos: 8.5,-10.5 + parent: 45355 +- proto: SpawnMobCarpHolo entities: - - uid: 26410 + - uid: 43162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,47.5 - parent: 2 -- proto: SignTelecomms + pos: 49.5,62.5 + parent: 40599 +- proto: SpawnMobCarpMagic entities: - - uid: 26411 + - uid: 43163 components: - type: Transform - pos: -6.5,12.5 - parent: 2 -- proto: SignToolStorage - entities: - - uid: 26412 + pos: 29.5,65.5 + parent: 40599 + - uid: 43164 components: - type: Transform - pos: 23.5,-3.5 - parent: 2 -- proto: SignVirology + pos: 33.5,66.5 + parent: 40599 +- proto: SpawnMobCatException entities: - - uid: 26413 + - uid: 27070 components: - type: Transform - pos: 0.5,56.5 + pos: -15.5,60.5 parent: 2 -- proto: SignXenobio +- proto: SpawnMobCatFloppa entities: - - uid: 26414 + - uid: 27071 components: - type: Transform - pos: 38.5,-44.5 + pos: 24.5,18.5 parent: 2 -- proto: SignZomlab +- proto: SpawnMobCatRuntime entities: - - uid: 26415 + - uid: 27072 components: - type: Transform - pos: -88.5,60.5 + pos: 3.5,51.5 parent: 2 -- proto: SilverDoor +- proto: SpawnMobCobraSalvage entities: - - uid: 26416 - components: - - type: Transform - pos: 41.5,50.5 - parent: 2 - - uid: 26417 + - uid: 43165 components: - type: Transform - pos: 41.5,47.5 - parent: 2 -- proto: SilverOre1 - entities: - - uid: 26418 + pos: 63.5,77.5 + parent: 40599 + - uid: 43166 components: - type: Transform - pos: 41.168175,45.86887 - parent: 2 -- proto: SingularityBeacon - entities: - - uid: 42751 + rot: -1.5707963267948966 rad + pos: 61.5,60.5 + parent: 40599 + - uid: 46802 components: - - type: MetaData - desc: Нестандартного вида генератор сдерживающего поля. - name: генератор сдерживающего поля - type: Transform - pos: 50.5,42.5 - parent: 40203 - - type: Anchorable - flags: None - missingComponents: - - Item - - SingularityAttractor - - SinguloFood - - Destructible - - ApcPowerReceiver - - StaticPrice - - ExtensionCableReceiver - - LightningTarget - - Damageable - - Pullable - - Contraband - - uid: 42752 + pos: 5.5,10.5 + parent: 46584 + - uid: 46803 components: - - type: MetaData - desc: Нестондартного вида генератор сдерживающего поля. - name: генератор сдерживающего поля - type: Transform - pos: 54.5,42.5 - parent: 40203 - - type: Anchorable - flags: None - missingComponents: - - Item - - SingularityAttractor - - SinguloFood - - Destructible - - ApcPowerReceiver - - StaticPrice - - ExtensionCableReceiver - - LightningTarget - - Damageable - - Pullable - - Contraband - - uid: 42753 + pos: 8.5,6.5 + parent: 46584 + - uid: 46804 components: - - type: MetaData - desc: Нестандартного вида генератор сдерживающего поля. - name: генератор сдерживающего поля - type: Transform - pos: 54.5,38.5 - parent: 40203 - - type: Anchorable - flags: None - missingComponents: - - Item - - SingularityAttractor - - SinguloFood - - Destructible - - ApcPowerReceiver - - StaticPrice - - ExtensionCableReceiver - - LightningTarget - - Damageable - - Pullable - - Contraband - - uid: 42754 + pos: 3.5,-1.5 + parent: 46584 + - uid: 46805 components: - - type: MetaData - desc: Нестандартного вида генератор сдерживающего поля. - name: генератор сдерживающего поля - type: Transform - pos: 50.5,38.5 - parent: 40203 - - type: Anchorable - flags: None - missingComponents: - - Item - - SingularityAttractor - - SinguloFood - - Destructible - - ApcPowerReceiver - - StaticPrice - - ExtensionCableReceiver - - LightningTarget - - Damageable - - Pullable - - Contraband -- proto: Sink + pos: -6.5,6.5 + parent: 46584 +- proto: SpawnMobCockroach entities: - - uid: 26419 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,27.5 - parent: 2 - - uid: 26420 + - uid: 27073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,29.5 + pos: -48.5,4.5 parent: 2 - - uid: 26421 + - uid: 27074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-5.5 + pos: -20.5,11.5 parent: 2 - - uid: 26422 + - uid: 27075 components: - type: Transform - pos: -10.5,62.5 + pos: -38.5,15.5 parent: 2 - - uid: 26423 + - uid: 27076 components: - type: Transform - rot: 3.141592653589793 rad - pos: 82.5,-35.5 + pos: -13.5,41.5 parent: 2 - - uid: 26424 + - uid: 27077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,54.5 + pos: 93.5,-42.5 parent: 2 - - uid: 26425 + - uid: 27078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,10.5 + pos: 81.5,-34.5 parent: 2 - - uid: 26426 +- proto: SpawnMobCorgi + entities: + - uid: 27079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,64.5 + pos: -3.5,-10.5 parent: 2 -- proto: SinkEmpty +- proto: SpawnMobCrabAtmos entities: - - uid: 26427 + - uid: 27080 components: - type: Transform - pos: 31.5,-56.5 + pos: -2.5,-56.5 parent: 2 - - uid: 26428 +- proto: SpawnMobFoxRenault + entities: + - uid: 27081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-8.5 + pos: 13.5,-2.5 parent: 2 - - uid: 26429 +- proto: SpawnMobFrog + entities: + - uid: 27082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,64.5 + pos: 0.5,67.5 parent: 2 - - uid: 26430 +- proto: SpawnMobKangarooSalvage + entities: + - uid: 43167 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,21.5 - parent: 2 -- proto: SinkStemless - entities: - - uid: 26431 + pos: 32.5,72.5 + parent: 40599 + - uid: 43168 components: - type: Transform - pos: -5.5,36.5 - parent: 2 -- proto: SinkStemlessWater - entities: - - uid: 26432 + rot: 3.141592653589793 rad + pos: 34.5,69.5 + parent: 40599 + - uid: 43169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-51.5 - parent: 2 - - uid: 26433 + rot: 1.5707963267948966 rad + pos: 68.5,66.5 + parent: 40599 + - uid: 46806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,31.5 - parent: 2 - - uid: 26434 + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 46584 + - uid: 46807 components: - type: Transform rot: -1.5707963267948966 rad - pos: -110.5,29.5 - parent: 2 - - uid: 26435 + pos: 4.5,6.5 + parent: 46584 +- proto: SpawnMobLizard + entities: + - uid: 27083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,30.5 + rot: 1.5707963267948966 rad + pos: -102.5,19.5 parent: 2 - - uid: 26436 +- proto: SpawnMobMcGriff + entities: + - uid: 27084 components: - type: Transform - pos: -9.5,44.5 + pos: -41.5,-17.5 parent: 2 - - uid: 26437 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 27085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,38.5 + rot: 1.5707963267948966 rad + pos: 45.5,19.5 parent: 2 - - uid: 26438 +- proto: SpawnMobMouse + entities: + - uid: 27086 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.14036,21.482449 + pos: -25.5,18.5 parent: 2 - - uid: 26439 + - uid: 27087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,42.5 + pos: 92.5,-35.5 parent: 2 - - uid: 26440 + - uid: 27088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,42.5 + pos: -36.5,35.5 parent: 2 - - uid: 26441 + - uid: 27089 components: - type: Transform - pos: -11.5,-3.5 + pos: 60.5,-16.5 parent: 2 - - uid: 26442 + - uid: 27090 components: - type: Transform - pos: -44.5,-11.5 + pos: 44.5,-19.5 parent: 2 - - uid: 26443 + - uid: 27091 components: - type: Transform - pos: -51.516624,-2.7828975 + pos: -17.5,39.5 parent: 2 - - uid: 26444 + - uid: 27092 components: - type: Transform - pos: -52.485374,-2.7828975 + pos: -49.5,16.5 parent: 2 - - uid: 26445 + - uid: 27093 components: - type: Transform - pos: -53.501,-2.7672725 + pos: -28.5,8.5 parent: 2 - - uid: 26446 +- proto: SpawnMobPossumMorty + entities: + - uid: 27094 components: - type: Transform - pos: -54.454124,-2.7516475 + pos: -17.5,43.5 parent: 2 - - uid: 42755 +- proto: SpawnMobShark + entities: + - uid: 43170 components: - type: Transform - pos: 57.497917,83.365555 - parent: 40203 - - uid: 42756 + pos: 60.5,69.5 + parent: 40599 + - uid: 46172 components: - type: Transform - pos: 56.493286,83.36093 - parent: 40203 -- proto: SinkWide + pos: 4.5,-0.5 + parent: 45355 +- proto: SpawnMobShiva entities: - - uid: 26447 + - uid: 27095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,31.5 + pos: -44.5,8.5 parent: 2 - - uid: 26448 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 27096 components: - type: Transform - pos: -17.5,44.5 + pos: -3.5,18.5 parent: 2 - - uid: 26449 +- proto: SpawnMobSmile + entities: + - uid: 27097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,44.5 + pos: 30.5,-54.5 parent: 2 - - uid: 26450 +- proto: SpawnMobSpaceSpider + entities: + - uid: 27098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,9.5 + rot: -1.5707963267948966 rad + pos: 12.5,60.5 parent: 2 - - uid: 26451 + - uid: 27099 components: - type: Transform - pos: 65.5,7.5 + pos: 81.5,7.5 parent: 2 - - uid: 26452 +- proto: SpawnMobSpiderSalvage + entities: + - uid: 43171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,25.5 - parent: 2 - - uid: 26453 + pos: 36.5,73.5 + parent: 40599 + - uid: 43172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,31.5 - parent: 2 - - uid: 26454 + pos: 40.5,72.5 + parent: 40599 + - uid: 43173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-13.5 - parent: 2 - - uid: 26455 + pos: 58.5,56.5 + parent: 40599 + - uid: 46173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,6.5 - parent: 2 - - uid: 26456 + pos: 10.5,8.5 + parent: 45355 + - uid: 46174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,30.5 - parent: 2 - - uid: 26457 + pos: -4.5,4.5 + parent: 45355 + - uid: 46175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,48.5 - parent: 2 - - uid: 26458 + pos: -5.5,14.5 + parent: 45355 + - uid: 46176 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,46.5 + pos: 2.5,13.5 + parent: 45355 + - uid: 46177 + components: + - type: Transform + pos: 2.5,5.5 + parent: 45355 +- proto: SpawnMobSyndicateFootSoldier + entities: + - uid: 27100 + components: + - type: Transform + pos: -63.5,50.5 parent: 2 - - uid: 26459 + - type: ConditionalSpawner + prototypes: + - MobSyndicateSmuggler + - uid: 27101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,47.5 + pos: -59.5,52.5 parent: 2 - - uid: 26460 + - type: ConditionalSpawner + prototypes: + - MobSyndicateSmuggler +- proto: SpawnMobWalter + entities: + - uid: 27102 components: - type: Transform - pos: 12.5,41.5 + pos: -4.5,39.5 parent: 2 - - uid: 26461 +- proto: SpawnPointAtmos + entities: + - uid: 27103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,32.5 + pos: -3.5,-53.5 parent: 2 - - uid: 26462 + - uid: 27104 components: - type: Transform - pos: -102.5,28.5 + pos: 5.5,-53.5 parent: 2 - - uid: 26463 + - uid: 27105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,16.5 + pos: -6.5,-53.5 parent: 2 - - uid: 26464 +- proto: SpawnPointBartender + entities: + - uid: 27106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,56.5 + pos: 42.5,23.5 parent: 2 - - uid: 26465 + - uid: 27107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,56.5 + pos: 48.5,22.5 parent: 2 - - uid: 26466 +- proto: SpawnPointBorg + entities: + - uid: 27108 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,56.5 + pos: 10.5,25.5 parent: 2 - - uid: 42757 + - uid: 27109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,61.5 - parent: 40203 -- proto: SmallLight + pos: 11.5,-13.5 + parent: 2 +- proto: SpawnPointBotanist entities: - - uid: 26467 + - uid: 27110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,53.5 + pos: 16.5,39.5 parent: 2 - - uid: 26468 + - uid: 27111 components: - type: Transform - pos: -79.5,14.5 + pos: 8.5,39.5 parent: 2 - - uid: 26469 + - uid: 27112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,17.5 + pos: 11.5,31.5 parent: 2 -- proto: SmartFridge - entities: - - uid: 26470 + - uid: 27113 components: - type: Transform - pos: 29.5,58.5 + pos: 18.5,43.5 parent: 2 - - uid: 26471 +- proto: SpawnPointCaptain + entities: + - uid: 27114 components: - type: Transform - pos: -6.5,45.5 + pos: 18.5,-2.5 parent: 2 - - uid: 26472 + - uid: 27115 components: - type: Transform - pos: 23.5,34.5 + pos: 10.5,-8.5 parent: 2 -- proto: SMESBasic - entities: - - uid: 26473 + - uid: 27116 components: - - type: MetaData - name: СМЭС "ИИ, Серверная" - type: Transform - pos: 0.5,15.5 + pos: 17.5,-11.5 parent: 2 - - uid: 26474 +- proto: SpawnPointCargoTechnician + entities: + - uid: 27117 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -15.5,-41.5 + pos: 64.5,-48.5 parent: 2 - - uid: 26475 + - uid: 27118 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -13.5,-41.5 + pos: 62.5,-48.5 parent: 2 - - uid: 26476 + - uid: 27119 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -15.5,-40.5 + pos: 66.5,-40.5 parent: 2 - - uid: 26477 + - uid: 27120 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -13.5,-40.5 + pos: 56.5,-30.5 parent: 2 - - uid: 26478 + - uid: 27121 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -15.5,-38.5 + pos: 58.5,-39.5 parent: 2 - - uid: 26479 + - uid: 27122 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -13.5,-39.5 + pos: 62.5,-33.5 parent: 2 - - uid: 26480 +- proto: SpawnPointChaplain + entities: + - uid: 27123 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -13.5,-38.5 + pos: 48.5,-8.5 parent: 2 - - uid: 26481 + - uid: 27124 components: - - type: MetaData - name: СМЭС "Массив" - type: Transform - pos: -15.5,-39.5 + pos: 53.5,-13.5 parent: 2 - - uid: 26482 +- proto: SpawnPointChef + entities: + - uid: 27125 components: - - type: MetaData - name: СМЭС "Двигатель Антиматерии" - type: Transform - pos: -26.5,-42.5 + pos: 25.5,39.5 parent: 2 - - uid: 26483 + - uid: 27126 components: - - type: MetaData - name: СМЭС "ТЭГ" - type: Transform - pos: -16.5,-48.5 + pos: 29.5,37.5 parent: 2 - - uid: 26484 +- proto: SpawnPointChemist + entities: + - uid: 27127 components: - - type: MetaData - name: СМЭС "Медицинский" - type: Transform - pos: -18.5,57.5 + pos: -9.5,43.5 parent: 2 - - uid: 26485 + - uid: 27128 components: - type: Transform - pos: -133.5,11.5 + pos: -9.5,40.5 parent: 2 - - uid: 42758 +- proto: SpawnPointChiefEngineer + entities: + - uid: 27129 components: - type: Transform - pos: 63.5,59.5 - parent: 40203 - - uid: 42759 + pos: 6.5,-48.5 + parent: 2 + - uid: 27130 components: - type: Transform - pos: 64.5,59.5 - parent: 40203 -- proto: SMESBasicEmpty + pos: 3.5,-50.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer entities: - - uid: 26486 + - uid: 27131 components: - type: Transform - pos: -57.5,63.5 + pos: -14.5,58.5 parent: 2 -- proto: SMESMachineCircuitboard - entities: - - uid: 26487 + - uid: 27132 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.286644,4.507171 + pos: -15.5,62.5 parent: 2 - - uid: 26488 + - uid: 27133 components: - type: Transform - pos: 0.65688276,-43.142662 + pos: -8.5,57.5 parent: 2 -- proto: SmokeGrenade +- proto: SpawnPointClown entities: - - uid: 26489 + - uid: 27134 components: - type: Transform - pos: -24.515804,-7.8226504 + pos: 49.5,11.5 parent: 2 -- proto: SmokingPipeFilledCannabisRainbow +- proto: SpawnPointDetective entities: - - uid: 24255 + - uid: 27135 components: - type: Transform - parent: 24254 - - type: Physics - canCollide: False -- proto: SnapPop - entities: - - uid: 26490 + pos: -20.5,4.5 + parent: 2 + - uid: 27136 components: - type: Transform - pos: 53.739784,-16.334576 + pos: -25.5,7.5 parent: 2 -- proto: SnowBattlemap +- proto: SpawnPointHeadOfPersonnel entities: - - uid: 26491 + - uid: 27137 components: - type: Transform - pos: 93.045166,-15.998913 + pos: -13.5,-12.5 parent: 2 - - uid: 26492 + - uid: 27138 components: - type: Transform - pos: 0.077181816,19.90153 + pos: -4.5,-12.5 parent: 2 - - uid: 26493 + - uid: 27139 components: - type: Transform - pos: -89.12467,63.61417 + pos: -7.5,-7.5 parent: 2 -- proto: Soap +- proto: SpawnPointHeadOfSecurity entities: - - uid: 26494 + - uid: 27140 components: - type: Transform - pos: -42.497555,17.408945 + pos: -40.5,7.5 parent: 2 - - uid: 26495 + - uid: 27141 components: - type: Transform - pos: 66.49114,4.3308225 + pos: -42.5,2.5 parent: 2 - - uid: 42760 +- proto: SpawnPointJanitor + entities: + - uid: 27142 components: - type: Transform - rot: -0.8726646259971648 rad - pos: 60.624687,81.46779 - parent: 40203 -- proto: SoapDeluxe - entities: - - uid: 26496 + pos: 2.5,32.5 + parent: 2 + - uid: 27143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5935335,36.710293 + pos: 5.5,31.5 parent: 2 - - uid: 26497 +- proto: SpawnPointLawyer + entities: + - uid: 27144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.764709,36.71457 + pos: -24.5,25.5 parent: 2 - - uid: 42761 + - uid: 27145 components: - type: Transform - rot: 5.235987755982989 rad - pos: 57.081047,83.46779 - parent: 40203 -- proto: SoapHomemade + pos: -21.5,25.5 + parent: 2 +- proto: SpawnPointLibrarian entities: - - uid: 26498 + - uid: 27146 components: - type: Transform - pos: 23.360405,42.376984 + pos: 6.5,18.5 parent: 2 -- proto: SodaDispenser +- proto: SpawnPointMedicalDoctor entities: - - uid: 26499 + - uid: 27147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,22.5 + pos: 25.5,57.5 parent: 2 - - uid: 26500 + - uid: 27148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,10.5 + pos: -27.5,55.5 parent: 2 -- proto: SodaDispenserEmpty - entities: - - uid: 26501 + - uid: 27149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,21.5 + pos: -14.5,43.5 parent: 2 - - uid: 45810 + - uid: 27150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 44970 -- proto: SolarAssembly - entities: - - uid: 26502 + pos: -21.5,56.5 + parent: 2 + - uid: 27151 components: - type: Transform - pos: -39.5,-66.5 + pos: -17.5,51.5 parent: 2 - - uid: 26503 + - uid: 27152 components: - type: Transform - pos: -32.5,-70.5 + pos: 3.5,44.5 parent: 2 - - uid: 26504 + - uid: 27153 components: - type: Transform - pos: -32.5,-64.5 + pos: 1.5,43.5 parent: 2 -- proto: SolarPanel +- proto: SpawnPointMedicalIntern entities: - - uid: 26505 + - uid: 27154 components: - type: Transform - pos: -33.5,-64.5 + pos: -13.5,49.5 parent: 2 - - uid: 26506 + - uid: 27155 components: - type: Transform - pos: -33.5,-70.5 + pos: -5.5,69.5 parent: 2 - - uid: 26507 + - uid: 27156 components: - type: Transform - pos: -60.5,75.5 + pos: -25.5,44.5 parent: 2 - - uid: 26508 + - uid: 27157 components: - type: Transform - pos: -33.5,-68.5 + pos: 3.5,42.5 parent: 2 - - uid: 26509 +- proto: SpawnPointMime + entities: + - uid: 27158 components: - type: Transform - pos: -33.5,-66.5 + pos: 64.5,12.5 parent: 2 - - uid: 26510 +- proto: SpawnPointMusician + entities: + - uid: 27159 components: - type: Transform - pos: -31.5,-70.5 + pos: 55.5,13.5 parent: 2 - - uid: 26511 + - uid: 27160 components: - type: Transform - pos: -36.5,-68.5 + pos: 55.5,-4.5 parent: 2 - - uid: 26512 +- proto: SpawnPointObserver + entities: + - uid: 27161 components: - type: Transform - pos: -30.5,-70.5 + pos: 2.5,-16.5 parent: 2 - - uid: 26513 +- proto: SpawnPointParamedic + entities: + - uid: 27162 components: - type: Transform - pos: -35.5,-70.5 + pos: 4.5,52.5 parent: 2 - - uid: 26514 +- proto: SpawnPointPassenger + entities: + - uid: 27163 components: - type: Transform - pos: -29.5,-70.5 + pos: 30.5,23.5 parent: 2 - - uid: 26515 + - uid: 27164 components: - type: Transform - pos: -37.5,-70.5 + pos: 16.5,28.5 parent: 2 - - uid: 26516 + - uid: 27165 components: - type: Transform - pos: -37.5,-68.5 + pos: 38.5,17.5 parent: 2 - - uid: 26517 + - uid: 27166 components: - type: Transform - pos: -36.5,-70.5 + pos: 31.5,19.5 parent: 2 - - uid: 26518 + - uid: 27167 components: - type: Transform - pos: -38.5,-68.5 + pos: 42.5,10.5 parent: 2 - - uid: 26519 + - uid: 27168 components: - type: Transform - pos: -29.5,-64.5 + pos: 39.5,10.5 parent: 2 - - uid: 26520 + - uid: 27169 components: - type: Transform - pos: -39.5,-68.5 + pos: 43.5,1.5 parent: 2 - - uid: 26521 + - uid: 27170 components: - type: Transform - pos: -39.5,-70.5 + pos: 45.5,2.5 parent: 2 - - uid: 26522 + - uid: 27171 components: - type: Transform - pos: -39.5,-64.5 + pos: 37.5,-4.5 parent: 2 - - uid: 26523 + - uid: 27172 components: - type: Transform - pos: -38.5,-66.5 + pos: 37.5,-1.5 parent: 2 - - uid: 26524 + - uid: 27173 components: - type: Transform - pos: -48.5,75.5 + pos: 34.5,-12.5 parent: 2 - - uid: 26525 + - uid: 27174 components: - type: Transform - pos: -49.5,75.5 + pos: 34.5,-9.5 parent: 2 - - uid: 26526 +- proto: SpawnPointPsychologist + entities: + - uid: 27175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,73.5 + pos: 4.5,60.5 parent: 2 - - uid: 26527 + - uid: 27176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,75.5 + pos: 3.5,64.5 parent: 2 - - uid: 26528 +- proto: SpawnPointQuartermaster + entities: + - uid: 27177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,73.5 + pos: 81.5,-39.5 parent: 2 - - uid: 26529 + - uid: 27178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,71.5 + pos: 81.5,-33.5 parent: 2 - - uid: 26530 + - uid: 27179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,75.5 + pos: 75.5,-39.5 parent: 2 - - uid: 26531 +- proto: SpawnPointReporter + entities: + - uid: 27180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,71.5 + pos: 10.5,18.5 parent: 2 - - uid: 26532 + - uid: 27181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,75.5 + pos: 12.5,21.5 parent: 2 - - uid: 26533 +- proto: SpawnPointResearchAssistant + entities: + - uid: 27182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,73.5 + pos: 51.5,-58.5 parent: 2 - - uid: 26534 + - uid: 27183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,73.5 + pos: 44.5,-37.5 parent: 2 - - uid: 26535 + - uid: 27184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,71.5 + pos: 17.5,-49.5 parent: 2 - - uid: 26536 + - uid: 27185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,75.5 + pos: 18.5,-49.5 parent: 2 - - uid: 26537 +- proto: SpawnPointResearchDirector + entities: + - uid: 27186 components: - type: Transform - pos: -64.5,73.5 + pos: 31.5,-56.5 parent: 2 - - uid: 26538 + - uid: 27187 components: - type: Transform - pos: -64.5,72.5 + pos: 28.5,-55.5 parent: 2 - - uid: 26539 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 27188 components: - type: Transform - pos: -52.5,73.5 + pos: 99.5,-39.5 parent: 2 - - uid: 26540 + - uid: 27189 components: - type: Transform - pos: -53.5,73.5 + pos: 73.5,-44.5 parent: 2 - - uid: 26541 + - uid: 27190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,71.5 + pos: 78.5,-47.5 parent: 2 - - uid: 26542 + - uid: 27191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,75.5 + pos: 79.5,-47.5 parent: 2 - - uid: 26543 +- proto: SpawnPointScientist + entities: + - uid: 27192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,73.5 + pos: 18.5,-44.5 parent: 2 - - uid: 26544 + - uid: 27193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,71.5 + pos: 17.5,-44.5 parent: 2 - - uid: 26545 + - uid: 27194 components: - type: Transform - pos: -62.5,74.5 + pos: 17.5,-45.5 parent: 2 - - uid: 26546 + - uid: 27195 components: - type: Transform - pos: -62.5,73.5 + pos: 18.5,-45.5 parent: 2 - - uid: 26547 + - uid: 27196 components: - type: Transform - pos: -62.5,72.5 + pos: 18.5,-46.5 parent: 2 - - uid: 26548 + - uid: 27197 components: - type: Transform - pos: -62.5,71.5 + pos: 17.5,-46.5 parent: 2 - - uid: 26549 +- proto: SpawnPointSecurityCadet + entities: + - uid: 27198 components: - type: Transform - pos: -60.5,74.5 + pos: -53.5,-3.5 parent: 2 - - uid: 26550 + - uid: 27199 components: - type: Transform - pos: -60.5,71.5 + pos: -25.5,-8.5 parent: 2 - - uid: 26551 + - uid: 27200 components: - type: Transform - pos: -58.5,74.5 + pos: -27.5,-14.5 parent: 2 - - uid: 26552 + - uid: 27201 components: - type: Transform - pos: -60.5,72.5 + pos: -41.5,17.5 parent: 2 - - uid: 26553 + - uid: 27202 components: - type: Transform - pos: -58.5,72.5 + pos: -29.5,-9.5 parent: 2 - - uid: 26554 + - uid: 27203 components: - type: Transform - pos: -58.5,73.5 + pos: 98.5,-3.5 parent: 2 - - uid: 26555 + - uid: 27204 components: - type: Transform - pos: -58.5,71.5 + pos: 96.5,-3.5 parent: 2 - - uid: 26556 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 27205 components: - type: Transform - pos: -53.5,75.5 + pos: -25.5,-9.5 parent: 2 - - uid: 26557 + - uid: 27206 components: - type: Transform - pos: -54.5,75.5 + pos: -24.5,-16.5 parent: 2 - - uid: 26558 + - uid: 27207 components: - type: Transform - pos: -51.5,75.5 + pos: -50.5,4.5 parent: 2 - - uid: 26559 + - uid: 27208 components: - type: Transform - pos: -52.5,75.5 + pos: -49.5,6.5 parent: 2 - - uid: 26560 + - uid: 27209 components: - type: Transform - pos: -50.5,75.5 + pos: -31.5,-15.5 parent: 2 - - uid: 26561 + - uid: 27210 components: - type: Transform - pos: -64.5,75.5 + pos: -28.5,-9.5 parent: 2 - - uid: 26562 + - uid: 27211 components: - type: Transform - pos: -62.5,75.5 + pos: -28.5,-7.5 parent: 2 - - uid: 26563 + - uid: 27212 components: - type: Transform - pos: -51.5,73.5 + pos: -28.5,-8.5 parent: 2 - - uid: 26564 + - uid: 27213 components: - type: Transform - pos: -50.5,73.5 + pos: -29.5,-7.5 parent: 2 - - uid: 26565 + - uid: 27214 components: - type: Transform - pos: -48.5,73.5 + pos: -29.5,-8.5 parent: 2 - - uid: 26566 +- proto: SpawnPointServiceWorker + entities: + - uid: 27215 components: - type: Transform - pos: -48.5,71.5 + pos: 13.5,28.5 parent: 2 - - uid: 26567 + - uid: 27216 components: - type: Transform - pos: -49.5,71.5 + pos: 29.5,33.5 parent: 2 - - uid: 26568 + - uid: 27217 components: - type: Transform - pos: -50.5,71.5 + pos: 42.5,19.5 parent: 2 - - uid: 26569 +- proto: SpawnPointStationEngineer + entities: + - uid: 27218 components: - type: Transform - pos: -54.5,71.5 + pos: 4.5,-43.5 parent: 2 - - uid: 26570 + - uid: 27219 components: - type: Transform - pos: -52.5,71.5 + pos: -4.5,-48.5 parent: 2 - - uid: 26571 + - uid: 27220 components: - type: Transform - pos: -32.5,-68.5 + pos: -5.5,-44.5 parent: 2 - - uid: 26572 + - uid: 27221 components: - type: Transform - pos: -31.5,-66.5 + pos: 6.5,-41.5 parent: 2 - - uid: 26573 + - uid: 27222 components: - type: Transform - pos: -35.5,-66.5 + pos: -4.5,-37.5 parent: 2 - - uid: 26574 + - uid: 27223 components: - type: Transform - pos: -31.5,-68.5 + pos: 2.5,-41.5 parent: 2 - - uid: 26575 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 27224 components: - type: Transform - pos: -32.5,-66.5 + pos: -21.5,-36.5 parent: 2 - - uid: 26576 + - uid: 27225 components: - type: Transform - pos: -36.5,-66.5 + pos: -24.5,-41.5 parent: 2 - - uid: 26577 + - uid: 27226 components: - type: Transform - pos: -35.5,-68.5 + pos: -14.5,-37.5 parent: 2 - - uid: 26578 + - uid: 27227 components: - type: Transform - pos: -31.5,-64.5 + pos: -25.5,-51.5 parent: 2 - - uid: 26579 + - uid: 27228 components: - type: Transform - pos: -35.5,-64.5 + pos: -3.5,-48.5 parent: 2 - - uid: 26580 +- proto: SpawnPointWarden + entities: + - uid: 27229 components: - type: Transform - pos: -29.5,-68.5 + pos: -30.5,-21.5 parent: 2 - - uid: 26581 + - uid: 27230 components: - type: Transform - pos: -37.5,-64.5 + pos: -36.5,-13.5 parent: 2 - - uid: 26582 + - uid: 27231 components: - type: Transform - pos: -36.5,-64.5 + pos: -44.5,-17.5 parent: 2 - - uid: 26583 + - uid: 27232 components: - type: Transform - pos: -29.5,-66.5 + pos: -41.5,-19.5 parent: 2 - - uid: 26584 + - uid: 27233 components: - type: Transform - pos: -30.5,-66.5 + pos: -42.5,-11.5 parent: 2 - - uid: 26585 +- proto: SpawnPointZookeeper + entities: + - uid: 27234 components: - type: Transform - pos: -38.5,-64.5 + pos: 23.5,18.5 parent: 2 - - uid: 26586 + - uid: 27235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-72.5 + pos: 20.5,21.5 parent: 2 - - uid: 26587 +- proto: Spear + entities: + - uid: 27236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-72.5 + pos: 95.74255,5.663926 parent: 2 - - uid: 26588 + - uid: 27237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-72.5 + pos: -76.846344,-9.944233 parent: 2 - - uid: 26589 + - type: Physics + canCollide: False + missingComponents: + - Item + - Pullable +- proto: SpearReinforced + entities: + - uid: 27238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-72.5 + rot: -1.5707963267948966 rad + pos: 99.55505,-0.25794888 parent: 2 - - uid: 26590 +- proto: SpeedLoaderMagnum + entities: + - uid: 23461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-72.5 - parent: 2 - - uid: 26591 + parent: 23460 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 43174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-72.5 - parent: 2 - - uid: 26592 + pos: 71.424545,79.43027 + parent: 40599 +- proto: SpeedLoaderMagnumAP + entities: + - uid: 23462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-72.5 - parent: 2 -- proto: SolarPanelBroken + parent: 23460 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SpiderWeb entities: - - uid: 26593 + - uid: 27239 components: - type: Transform - pos: -73.5,73.5 + rot: -1.5707963267948966 rad + pos: 23.5,54.5 parent: 2 - - uid: 26594 + - uid: 27240 components: - type: Transform - pos: -72.5,73.5 + pos: 22.5,53.5 parent: 2 - - uid: 26595 + - uid: 27241 components: - type: Transform - pos: -72.5,71.5 + pos: 22.5,54.5 parent: 2 - - uid: 26596 + - uid: 27242 components: - type: Transform - pos: -49.5,73.5 + rot: -1.5707963267948966 rad + pos: 81.5,7.5 parent: 2 - - uid: 26597 + - uid: 27243 components: - type: Transform - pos: -69.5,71.5 + rot: -1.5707963267948966 rad + pos: 82.5,5.5 parent: 2 - - uid: 26598 + - uid: 27244 components: - type: Transform - pos: -58.5,75.5 + pos: 10.5,53.5 parent: 2 - - uid: 26599 + - uid: 27245 components: - type: Transform - pos: -60.5,73.5 + pos: 2.5,56.5 parent: 2 - - uid: 26600 + - uid: 27246 components: - type: Transform - pos: -71.5,75.5 + pos: 17.5,64.5 parent: 2 - - uid: 26601 + - uid: 27247 components: - type: Transform - pos: -70.5,75.5 + pos: 17.5,62.5 parent: 2 - - uid: 26602 + - uid: 27248 components: - type: Transform - pos: -64.5,74.5 + pos: 17.5,63.5 parent: 2 - - uid: 26603 + - uid: 27249 components: - type: Transform - pos: -64.5,71.5 + pos: 16.5,63.5 parent: 2 - - uid: 26604 + - uid: 27250 components: - type: Transform - pos: -54.5,73.5 + pos: 16.5,64.5 parent: 2 - - uid: 26605 + - uid: 27251 components: - type: Transform - pos: -53.5,71.5 + pos: 16.5,62.5 parent: 2 - - uid: 26606 + - uid: 27252 components: - type: Transform - pos: -51.5,71.5 + pos: 15.5,63.5 parent: 2 - - uid: 26607 + - uid: 27253 components: - type: Transform - pos: -30.5,-64.5 + pos: 14.5,63.5 parent: 2 - - uid: 26608 + - uid: 27254 components: - type: Transform - pos: -37.5,-66.5 + pos: 24.5,51.5 parent: 2 - - uid: 26609 + - uid: 27255 components: - type: Transform - pos: -30.5,-68.5 + pos: 11.5,53.5 parent: 2 - - uid: 26610 + - uid: 27256 components: - type: Transform - pos: -38.5,-70.5 + pos: 11.5,54.5 parent: 2 - - uid: 26611 + - uid: 27257 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-72.5 + pos: 10.5,54.5 parent: 2 - - uid: 26612 + - uid: 27258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-72.5 + pos: 1.5,56.5 parent: 2 - - uid: 26613 + - uid: 27259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-72.5 + rot: -1.5707963267948966 rad + pos: 19.5,60.5 parent: 2 -- proto: SolarTracker - entities: - - uid: 26614 + - uid: 27260 components: - type: Transform - pos: -61.5,76.5 + rot: -1.5707963267948966 rad + pos: 81.5,8.5 parent: 2 - - uid: 26615 + - uid: 27261 components: - type: Transform - pos: -34.5,-73.5 + rot: -1.5707963267948966 rad + pos: 82.5,8.5 parent: 2 -- proto: SolidSecretDoor - entities: - - uid: 26616 + - uid: 27262 components: - type: Transform - pos: -67.5,-9.5 + rot: -1.5707963267948966 rad + pos: 81.5,4.5 parent: 2 - - uid: 26617 + - uid: 27263 components: - type: Transform - pos: -78.5,15.5 + rot: -1.5707963267948966 rad + pos: 82.5,4.5 parent: 2 -- proto: SpaceCash - entities: - - uid: 26618 + - uid: 27264 components: - type: Transform - pos: 21.939957,48.335506 + rot: -1.5707963267948966 rad + pos: 82.5,7.5 parent: 2 - - uid: 26619 + - uid: 27265 components: - type: Transform - pos: 21.945702,47.967632 + rot: -1.5707963267948966 rad + pos: 83.5,5.5 parent: 2 - - uid: 26620 + - uid: 27266 components: - type: Transform - pos: 21.551998,48.08313 + rot: -1.5707963267948966 rad + pos: 56.5,33.5 parent: 2 - - uid: 26621 + - uid: 27267 components: - type: Transform - pos: 21.693218,47.72381 + rot: -1.5707963267948966 rad + pos: 54.5,32.5 parent: 2 - - uid: 26622 + - uid: 27268 components: - type: Transform - pos: 21.376545,48.284176 + rot: -1.5707963267948966 rad + pos: 58.5,33.5 parent: 2 - - uid: 26623 + - uid: 27269 components: - type: Transform - pos: 21.26528,47.912025 + rot: -1.5707963267948966 rad + pos: 57.5,31.5 parent: 2 - - uid: 26624 + - uid: 27270 components: - type: Transform - pos: 21.804482,48.13446 + rot: -1.5707963267948966 rad + pos: 57.5,33.5 parent: 2 - - uid: 26625 + - uid: 27271 components: - type: Transform - pos: 23.89282,48.20718 + rot: -1.5707963267948966 rad + pos: 55.5,31.5 parent: 2 - - uid: 26626 + - uid: 27272 components: - type: Transform - pos: 23.905659,47.963356 + rot: 3.141592653589793 rad + pos: 27.5,51.5 parent: 2 - - uid: 26627 + - uid: 27273 components: - type: Transform - pos: 21.33803,48.284176 + rot: 3.141592653589793 rad + pos: 28.5,54.5 parent: 2 -- proto: SpaceCash10 - entities: - - uid: 26628 + - uid: 27274 components: - type: Transform - pos: -29.565361,27.817581 + rot: 1.5707963267948966 rad + pos: 29.5,52.5 parent: 2 - - uid: 26629 + - uid: 27275 components: - type: Transform - pos: -29.612236,27.645706 + rot: 1.5707963267948966 rad + pos: 29.5,53.5 parent: 2 - - uid: 26630 + - uid: 27276 components: - type: Transform - pos: -29.534111,27.505081 + rot: 3.141592653589793 rad + pos: 22.5,51.5 parent: 2 - - uid: 45014 + - uid: 27277 components: - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45015 + rot: 3.141592653589793 rad + pos: 23.5,51.5 + parent: 2 + - uid: 27278 components: - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 45016 + rot: 3.141592653589793 rad + pos: 23.5,52.5 + parent: 2 + - uid: 27279 components: - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceCash100 - entities: - - uid: 26631 + rot: -1.5707963267948966 rad + pos: 12.5,60.5 + parent: 2 + - uid: 27280 components: - type: Transform - pos: 2.8168125,1.8065335 + rot: 3.141592653589793 rad + pos: 11.5,60.5 parent: 2 - - uid: 26632 + - uid: 27281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.362236,27.598831 + rot: 3.141592653589793 rad + pos: 12.5,61.5 parent: 2 - - uid: 41186 + - uid: 27282 components: - type: Transform - parent: 41183 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 41187 + rot: 1.5707963267948966 rad + pos: 13.5,61.5 + parent: 2 + - uid: 27283 components: - type: Transform - parent: 41183 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceCash1000 - entities: - - uid: 41188 + rot: 1.5707963267948966 rad + pos: 13.5,60.5 + parent: 2 + - uid: 27284 components: - type: Transform - parent: 41183 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceCash10000 - entities: - - uid: 14972 + rot: 1.5707963267948966 rad + pos: 14.5,60.5 + parent: 2 + - uid: 27285 components: - type: Transform - parent: 14968 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceCash2500 - entities: - - uid: 26633 + rot: 1.5707963267948966 rad + pos: 14.5,60.5 + parent: 2 + - uid: 27286 components: - type: Transform - pos: 0.45714092,-8.880639 + pos: 11.5,60.5 parent: 2 - - uid: 45017 + - uid: 43175 components: - type: Transform - parent: 45007 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpaceHeater - entities: - - uid: 26634 + rot: 1.5707963267948966 rad + pos: 36.5,74.5 + parent: 40599 + - uid: 43176 components: - type: Transform - pos: -21.5,-51.5 - parent: 2 - - uid: 26635 + rot: -1.5707963267948966 rad + pos: 36.5,73.5 + parent: 40599 + - uid: 43177 components: - type: Transform - pos: -21.5,-48.5 - parent: 2 -- proto: SpaceHeaterAnchored - entities: - - uid: 26636 + rot: 3.141592653589793 rad + pos: 37.5,74.5 + parent: 40599 + - uid: 43178 components: - type: Transform - pos: -46.5,8.5 - parent: 2 - - uid: 26637 + rot: 1.5707963267948966 rad + pos: 38.5,74.5 + parent: 40599 + - uid: 43179 components: - type: Transform - pos: 18.5,31.5 - parent: 2 - - uid: 26638 + rot: 1.5707963267948966 rad + pos: 39.5,73.5 + parent: 40599 + - uid: 43180 components: - type: Transform - pos: 11.5,41.5 - parent: 2 -- proto: SpaceHeaterEnabled - entities: - - uid: 26639 + rot: 1.5707963267948966 rad + pos: 40.5,74.5 + parent: 40599 + - uid: 43181 components: - type: Transform - pos: 0.5,12.5 - parent: 2 - - type: SpaceHeater - mode: Cool - - type: GasThermoMachine - coefficientOfPerformance: -0.9 - targetTemperature: 268.15 - heatCapacity: 3500 -- proto: SpacemenFigureSpawner - entities: - - uid: 26640 + pos: 40.5,72.5 + parent: 40599 + - uid: 43182 + components: + - type: Transform + pos: 40.5,73.5 + parent: 40599 + - uid: 43183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,73.5 + parent: 40599 + - uid: 43184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,72.5 + parent: 40599 + - uid: 43185 components: - type: Transform - pos: 7.5,20.5 - parent: 2 -- proto: SpaceQuartz1 - entities: - - uid: 42762 + rot: -1.5707963267948966 rad + pos: 37.5,74.5 + parent: 40599 + - uid: 43186 components: - type: Transform - rot: -0.3665191429188092 rad - pos: 30.570244,71.46791 - parent: 40203 -- proto: SpaceVillainArcade - entities: - - uid: 26641 + rot: -1.5707963267948966 rad + pos: 39.5,74.5 + parent: 40599 + - uid: 43187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,3.5 - parent: 2 -- proto: SpaceVillainArcadeFilled - entities: - - uid: 26642 + rot: 3.141592653589793 rad + pos: 37.5,73.5 + parent: 40599 + - uid: 43188 components: - type: Transform - pos: 16.5,29.5 - parent: 2 - - uid: 26643 + rot: 1.5707963267948966 rad + pos: 37.5,72.5 + parent: 40599 + - uid: 43189 components: - type: Transform - pos: 17.5,29.5 - parent: 2 - - uid: 26644 + rot: -1.5707963267948966 rad + pos: 55.5,56.5 + parent: 40599 + - uid: 43190 components: - type: Transform - pos: 18.5,29.5 - parent: 2 - - uid: 26645 + rot: -1.5707963267948966 rad + pos: 56.5,56.5 + parent: 40599 + - uid: 43191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-33.5 - parent: 2 - - uid: 26646 + rot: -1.5707963267948966 rad + pos: 56.5,54.5 + parent: 40599 + - uid: 43192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-33.5 - parent: 2 - - uid: 26647 + rot: -1.5707963267948966 rad + pos: 58.5,56.5 + parent: 40599 + - uid: 43193 components: - type: Transform - pos: 44.5,-31.5 - parent: 2 - - uid: 26648 + rot: -1.5707963267948966 rad + pos: 57.5,55.5 + parent: 40599 + - uid: 43194 components: - type: Transform - pos: 43.5,-31.5 - parent: 2 - - uid: 26649 + rot: -1.5707963267948966 rad + pos: 57.5,55.5 + parent: 40599 + - uid: 43195 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-33.5 - parent: 2 -- proto: SpawnMobAlexander - entities: - - uid: 26650 + rot: -1.5707963267948966 rad + pos: 58.5,53.5 + parent: 40599 + - uid: 43196 components: - type: Transform - pos: 25.5,40.5 - parent: 2 -- proto: SpawnMobBandito - entities: - - uid: 26651 + rot: -1.5707963267948966 rad + pos: 58.5,54.5 + parent: 40599 + - uid: 43197 components: - type: Transform - pos: 8.5,38.5 - parent: 2 -- proto: SpawnMobBear - entities: - - uid: 26652 + rot: -1.5707963267948966 rad + pos: 59.5,54.5 + parent: 40599 + - uid: 43198 components: - type: Transform - pos: -55.5,42.5 - parent: 2 - - uid: 26653 + rot: -1.5707963267948966 rad + pos: 61.5,54.5 + parent: 40599 + - uid: 43199 components: - type: Transform - pos: -57.5,44.5 - parent: 2 - - uid: 26654 + rot: -1.5707963267948966 rad + pos: 60.5,55.5 + parent: 40599 + - uid: 43200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,52.5 - parent: 2 - - uid: 26655 + rot: -1.5707963267948966 rad + pos: 58.5,56.5 + parent: 40599 + - uid: 43201 components: - type: Transform - pos: -68.5,19.5 - parent: 2 - - uid: 26656 + rot: -1.5707963267948966 rad + pos: 59.5,55.5 + parent: 40599 + - uid: 43202 components: - type: Transform - pos: -65.5,-13.5 - parent: 2 - - uid: 26657 + rot: -1.5707963267948966 rad + pos: 57.5,56.5 + parent: 40599 + - uid: 43203 components: - type: Transform - pos: -134.5,-10.5 - parent: 2 -- proto: SpawnMobBearSalvage - entities: - - uid: 42763 + rot: -1.5707963267948966 rad + pos: 60.5,56.5 + parent: 40599 + - uid: 46178 components: - type: Transform - pos: 49.5,78.5 - parent: 40203 - - uid: 42764 + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 45355 + - uid: 46179 components: - type: Transform - pos: 52.5,76.5 - parent: 40203 - - uid: 42765 + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 45355 + - uid: 46180 components: - type: Transform - pos: 56.5,78.5 - parent: 40203 - - uid: 42766 + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 45355 + - uid: 46181 components: - type: Transform - pos: 44.5,72.5 - parent: 40203 -- proto: SpawnMobCarp - entities: - - uid: 26658 + rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 45355 + - uid: 46182 components: - type: Transform - pos: -75.5,37.5 - parent: 2 - - uid: 42767 + pos: 10.5,7.5 + parent: 45355 + - uid: 46183 components: - type: Transform - pos: 55.5,70.5 - parent: 40203 - - uid: 42768 + rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 45355 + - uid: 46184 components: - type: Transform - pos: 65.5,71.5 - parent: 40203 - - uid: 42769 + pos: -5.5,13.5 + parent: 45355 + - uid: 46185 components: - type: Transform - pos: 62.5,68.5 - parent: 40203 - - uid: 42770 + pos: 2.5,5.5 + parent: 45355 + - uid: 46186 components: - type: Transform - pos: 52.5,61.5 - parent: 40203 - - uid: 42771 + pos: -5.5,4.5 + parent: 45355 + - uid: 46187 components: - type: Transform - pos: 54.5,48.5 - parent: 40203 - - uid: 45811 + pos: -4.5,3.5 + parent: 45355 + - uid: 46188 components: - type: Transform - pos: -10.5,8.5 - parent: 44970 - - uid: 45812 + pos: -4.5,4.5 + parent: 45355 + - uid: 46189 components: - type: Transform - pos: -4.5,-9.5 - parent: 44970 - - uid: 45813 + pos: -5.5,1.5 + parent: 45355 + - uid: 46190 components: - type: Transform - pos: -1.5,21.5 - parent: 44970 - - uid: 45814 + pos: -5.5,0.5 + parent: 45355 + - uid: 46191 components: - type: Transform - pos: 7.5,13.5 - parent: 44970 - - uid: 45815 + pos: -4.5,0.5 + parent: 45355 + - uid: 46192 components: - type: Transform - pos: 2.5,-0.5 - parent: 44970 - - uid: 45816 + pos: -5.5,-0.5 + parent: 45355 + - uid: 46193 components: - type: Transform - pos: 14.5,-3.5 - parent: 44970 - - uid: 45817 + pos: -4.5,-0.5 + parent: 45355 + - uid: 46194 components: - type: Transform - pos: 13.5,4.5 - parent: 44970 - - uid: 45818 + pos: -4.5,-1.5 + parent: 45355 + - uid: 46195 components: - type: Transform - pos: 8.5,-10.5 - parent: 44970 -- proto: SpawnMobCarpHolo - entities: - - uid: 42772 + pos: -2.5,-2.5 + parent: 45355 + - uid: 46196 components: - type: Transform - pos: 49.5,62.5 - parent: 40203 -- proto: SpawnMobCarpMagic - entities: - - uid: 42773 + pos: -1.5,-2.5 + parent: 45355 + - uid: 46197 components: - type: Transform - pos: 29.5,65.5 - parent: 40203 - - uid: 42774 + pos: -1.5,-1.5 + parent: 45355 + - uid: 46198 components: - type: Transform - pos: 33.5,66.5 - parent: 40203 -- proto: SpawnMobCatException - entities: - - uid: 26659 + pos: -0.5,-2.5 + parent: 45355 + - uid: 46199 components: - type: Transform - pos: -15.5,60.5 - parent: 2 -- proto: SpawnMobCatFloppa - entities: - - uid: 26660 + pos: -1.5,1.5 + parent: 45355 + - uid: 46200 components: - type: Transform - pos: 24.5,18.5 - parent: 2 -- proto: SpawnMobCatRuntime - entities: - - uid: 26661 + pos: -2.5,1.5 + parent: 45355 + - uid: 46201 components: - type: Transform - pos: 3.5,51.5 - parent: 2 -- proto: SpawnMobCobraSalvage - entities: - - uid: 42775 + pos: -1.5,2.5 + parent: 45355 + - uid: 46202 components: - type: Transform - pos: 63.5,77.5 - parent: 40203 - - uid: 42776 + pos: -0.5,1.5 + parent: 45355 + - uid: 46203 components: - type: Transform - pos: 56.5,62.5 - parent: 40203 - - uid: 42777 + pos: -1.5,0.5 + parent: 45355 + - uid: 46204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,60.5 - parent: 40203 -- proto: SpawnMobCockroach - entities: - - uid: 26662 + pos: 5.5,4.5 + parent: 45355 + - uid: 46205 components: - type: Transform - pos: -76.5,17.5 - parent: 2 - - uid: 26663 + pos: 5.5,3.5 + parent: 45355 + - uid: 46206 components: - type: Transform - pos: -74.5,17.5 - parent: 2 - - uid: 26664 + pos: 6.5,4.5 + parent: 45355 + - uid: 46207 components: - type: Transform - pos: -48.5,4.5 - parent: 2 - - uid: 26665 + pos: 7.5,8.5 + parent: 45355 + - uid: 46208 components: - type: Transform - pos: -20.5,11.5 - parent: 2 - - uid: 26666 + pos: 7.5,9.5 + parent: 45355 + - uid: 46209 components: - type: Transform - pos: -38.5,15.5 - parent: 2 - - uid: 26667 + pos: 6.5,8.5 + parent: 45355 + - uid: 46210 components: - type: Transform - pos: -13.5,41.5 - parent: 2 - - uid: 26668 + pos: 7.5,7.5 + parent: 45355 + - uid: 46211 components: - type: Transform - pos: 93.5,-42.5 - parent: 2 - - uid: 26669 + pos: 1.5,7.5 + parent: 45355 + - uid: 46212 components: - type: Transform - pos: 81.5,-34.5 - parent: 2 -- proto: SpawnMobCorgi - entities: - - uid: 26670 + pos: 1.5,8.5 + parent: 45355 + - uid: 46213 components: - type: Transform - pos: -3.5,-10.5 - parent: 2 -- proto: SpawnMobCrabAtmos - entities: - - uid: 26671 + pos: 0.5,7.5 + parent: 45355 + - uid: 46214 components: - type: Transform - pos: -2.5,-56.5 - parent: 2 -- proto: SpawnMobFoxRenault - entities: - - uid: 26672 + pos: -2.5,9.5 + parent: 45355 + - uid: 46215 components: - type: Transform - pos: 13.5,-2.5 - parent: 2 -- proto: SpawnMobFrog - entities: - - uid: 26673 + pos: -2.5,10.5 + parent: 45355 + - uid: 46216 components: - type: Transform - pos: 0.5,67.5 - parent: 2 -- proto: SpawnMobKangarooSalvage - entities: - - uid: 42778 + pos: -2.5,11.5 + parent: 45355 + - uid: 46217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,72.5 - parent: 40203 - - uid: 42779 + pos: -3.5,9.5 + parent: 45355 + - uid: 46218 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,69.5 - parent: 40203 - - uid: 42780 + pos: -1.5,9.5 + parent: 45355 + - uid: 46219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,66.5 - parent: 40203 -- proto: SpawnMobLizard - entities: - - uid: 26674 + pos: -2.5,8.5 + parent: 45355 + - uid: 46220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,19.5 - parent: 2 -- proto: SpawnMobMcGriff - entities: - - uid: 26675 + pos: 1.5,1.5 + parent: 45355 + - uid: 46221 components: - type: Transform - pos: -41.5,-17.5 - parent: 2 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 26676 + pos: 1.5,2.5 + parent: 45355 + - uid: 46222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 2 -- proto: SpawnMobMouse - entities: - - uid: 26677 + pos: 2.5,2.5 + parent: 45355 + - uid: 46223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,18.5 - parent: 2 - - uid: 26678 + pos: 2.5,3.5 + parent: 45355 + - uid: 46224 components: - type: Transform - pos: 92.5,-35.5 - parent: 2 - - uid: 26679 + pos: 3.5,2.5 + parent: 45355 + - uid: 46225 components: - type: Transform - pos: -36.5,35.5 - parent: 2 - - uid: 26680 + pos: 2.5,1.5 + parent: 45355 + - uid: 46226 components: - type: Transform - pos: 60.5,-16.5 - parent: 2 - - uid: 26681 + pos: 0.5,3.5 + parent: 45355 + - uid: 46227 components: - type: Transform - pos: 44.5,-19.5 - parent: 2 - - uid: 26682 + pos: 0.5,5.5 + parent: 45355 + - uid: 46228 components: - type: Transform - pos: -17.5,39.5 - parent: 2 - - uid: 26683 + pos: 3.5,5.5 + parent: 45355 + - uid: 46229 components: - type: Transform - pos: -49.5,16.5 - parent: 2 - - uid: 26684 + pos: 3.5,5.5 + parent: 45355 + - uid: 46230 components: - type: Transform - pos: -28.5,8.5 - parent: 2 -- proto: SpawnMobPossumMorty - entities: - - uid: 26685 + pos: 3.5,4.5 + parent: 45355 + - uid: 46231 components: - type: Transform - pos: -17.5,43.5 - parent: 2 -- proto: SpawnMobShark - entities: - - uid: 42781 + pos: 2.5,12.5 + parent: 45355 + - uid: 46232 components: - type: Transform - pos: 60.5,69.5 - parent: 40203 - - uid: 45819 + pos: 1.5,13.5 + parent: 45355 + - uid: 46233 components: - type: Transform - pos: 4.5,-0.5 - parent: 44970 -- proto: SpawnMobShiva - entities: - - uid: 26686 + pos: 2.5,13.5 + parent: 45355 + - uid: 46234 components: - type: Transform - pos: -44.5,8.5 - parent: 2 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 26687 + pos: 2.5,14.5 + parent: 45355 + - uid: 46235 components: - type: Transform - pos: -3.5,18.5 - parent: 2 -- proto: SpawnMobSmile - entities: - - uid: 26688 + pos: 3.5,13.5 + parent: 45355 + - uid: 46236 components: - type: Transform - pos: 30.5,-54.5 - parent: 2 -- proto: SpawnMobSpaceSpider - entities: - - uid: 26689 + pos: -4.5,13.5 + parent: 45355 + - uid: 46237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,60.5 - parent: 2 - - uid: 26690 + pos: -4.5,14.5 + parent: 45355 + - uid: 46238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,52.5 - parent: 2 - - uid: 26691 + pos: -5.5,14.5 + parent: 45355 + - uid: 46239 components: - type: Transform - pos: 81.5,7.5 - parent: 2 -- proto: SpawnMobSpiderSalvage - entities: - - uid: 42782 + pos: -5.5,15.5 + parent: 45355 + - uid: 46240 components: - type: Transform - pos: 36.5,73.5 - parent: 40203 - - uid: 42783 + pos: -5.5,12.5 + parent: 45355 + - uid: 46241 components: - type: Transform - pos: 40.5,72.5 - parent: 40203 - - uid: 42784 + pos: -1.5,11.5 + parent: 45355 + - uid: 46242 components: - type: Transform - pos: 58.5,56.5 - parent: 40203 - - uid: 45820 + pos: -1.5,12.5 + parent: 45355 + - uid: 46243 components: - type: Transform - pos: 10.5,8.5 - parent: 44970 - - uid: 45821 + pos: 5.5,5.5 + parent: 45355 + - uid: 46244 components: - type: Transform - pos: -4.5,4.5 - parent: 44970 - - uid: 45822 + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 45355 + - uid: 46245 components: - type: Transform - pos: -5.5,14.5 - parent: 44970 - - uid: 45823 + pos: 10.5,8.5 + parent: 45355 + - uid: 46246 components: - type: Transform - pos: 2.5,13.5 - parent: 44970 - - uid: 45824 + pos: 9.5,8.5 + parent: 45355 + - uid: 46247 components: - type: Transform - pos: 2.5,5.5 - parent: 44970 -- proto: SpawnMobSyndicateFootSoldier - entities: - - uid: 26692 + pos: 10.5,9.5 + parent: 45355 + - uid: 46248 components: - type: Transform - pos: -63.5,50.5 - parent: 2 - - uid: 26693 + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 45355 + - uid: 46249 components: - type: Transform - pos: -59.5,52.5 - parent: 2 -- proto: SpawnMobWalter + pos: 6.5,9.5 + parent: 45355 +- proto: Spoon entities: - - uid: 26694 + - uid: 27287 components: - type: Transform - pos: -4.5,39.5 + pos: -46.58729,2.7295692 parent: 2 -- proto: SpawnPointAtmos - entities: - - uid: 26695 + - uid: 27288 components: - type: Transform - pos: -3.5,-53.5 + rot: -1.5707963267948966 rad + pos: 30.955378,30.529366 parent: 2 - - uid: 26696 + - uid: 43204 components: - type: Transform - pos: 5.5,-53.5 - parent: 2 - - uid: 26697 + rot: -1.5707963267948966 rad + pos: 49.459976,79.54522 + parent: 40599 + - uid: 43205 components: - type: Transform - pos: -6.5,-53.5 - parent: 2 -- proto: SpawnPointBartender - entities: - - uid: 26698 + rot: -1.5707963267948966 rad + pos: 49.4756,79.45147 + parent: 40599 + - uid: 43206 components: - type: Transform - pos: 42.5,23.5 - parent: 2 - - uid: 26699 + rot: -1.5707963267948966 rad + pos: 49.522476,79.373344 + parent: 40599 + - uid: 46250 components: - type: Transform - pos: 48.5,22.5 - parent: 2 -- proto: SpawnPointBorg - entities: - - uid: 26700 + rot: -1.5707963267948966 rad + pos: 4.524347,4.472701 + parent: 45355 + - uid: 46251 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,25.5 - parent: 2 - - uid: 26701 + pos: 4.602472,4.441451 + parent: 45355 +- proto: SpoonPlastic + entities: + - uid: 27289 components: - type: Transform - pos: 11.5,-13.5 + rot: 1.5707963267948966 rad + pos: -114.42557,5.6168714 parent: 2 -- proto: SpawnPointBotanist +- proto: SprayBottleSpaceCleaner entities: - - uid: 26702 + - uid: 27290 components: - type: Transform - pos: 16.5,39.5 + pos: -20.519583,55.56885 parent: 2 - - uid: 26703 + - uid: 27291 components: - type: Transform - pos: 8.5,39.5 + pos: 4.2268305,32.820644 parent: 2 - - uid: 26704 + - uid: 27292 components: - type: Transform - pos: 11.5,31.5 + pos: 4.0705805,32.820644 parent: 2 - - uid: 26705 + - uid: 27293 components: - type: Transform - pos: 18.5,43.5 + pos: -12.270467,43.241665 parent: 2 -- proto: SpawnPointCaptain +- proto: SprayBottleWater entities: - - uid: 26706 + - uid: 27294 components: - type: Transform - pos: 18.5,-2.5 + pos: -9.377184,34.545 parent: 2 - - uid: 26707 + - uid: 27295 components: - type: Transform - pos: 10.5,-8.5 + pos: -9.098298,34.532166 parent: 2 - - uid: 26708 + - uid: 27296 components: - type: Transform - pos: 17.5,-11.5 + pos: -99.59231,22.679768 parent: 2 -- proto: SpawnPointCargoTechnician - entities: - - uid: 26709 + - uid: 27297 components: - type: Transform - pos: 64.5,-48.5 + pos: -99.27981,22.679768 parent: 2 - - uid: 26710 +- proto: SprayPainter + entities: + - uid: 27298 components: - type: Transform - pos: 62.5,-48.5 + pos: 27.569883,-8.005627 parent: 2 - - uid: 26711 +- proto: StairDark + entities: + - uid: 27299 components: - type: Transform - pos: 66.5,-40.5 + pos: -21.5,17.5 parent: 2 - - uid: 26712 + - uid: 27300 components: - type: Transform - pos: 56.5,-30.5 + rot: 1.5707963267948966 rad + pos: -31.5,16.5 parent: 2 - - uid: 26713 + - uid: 27301 components: - type: Transform - pos: 65.5,-30.5 + rot: -1.5707963267948966 rad + pos: -102.5,-7.5 parent: 2 - - uid: 26714 + - uid: 27302 components: - type: Transform - pos: 58.5,-39.5 + rot: -1.5707963267948966 rad + pos: -102.5,-8.5 parent: 2 -- proto: SpawnPointChaplain - entities: - - uid: 26715 + - uid: 27303 components: - type: Transform - pos: 29.5,6.5 + rot: 1.5707963267948966 rad + pos: -31.5,14.5 parent: 2 -- proto: SpawnPointChef - entities: - - uid: 26716 + - uid: 27304 components: - type: Transform - pos: 25.5,39.5 + rot: 1.5707963267948966 rad + pos: -31.5,15.5 parent: 2 - - uid: 26717 + - uid: 27305 components: - type: Transform - pos: 29.5,37.5 + pos: -22.5,17.5 parent: 2 -- proto: SpawnPointChemist - entities: - - uid: 26718 + - uid: 43207 components: - type: Transform - pos: -9.5,43.5 - parent: 2 - - uid: 26719 + rot: -1.5707963267948966 rad + pos: 58.5,72.5 + parent: 40599 + - uid: 43208 components: - type: Transform - pos: -9.5,40.5 - parent: 2 -- proto: SpawnPointChiefEngineer - entities: - - uid: 26720 + rot: -1.5707963267948966 rad + pos: 58.5,71.5 + parent: 40599 + - uid: 43209 components: - type: Transform - pos: 6.5,-48.5 - parent: 2 - - uid: 26721 + rot: -1.5707963267948966 rad + pos: 58.5,69.5 + parent: 40599 + - uid: 43210 components: - type: Transform - pos: 3.5,-50.5 - parent: 2 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 26722 + rot: -1.5707963267948966 rad + pos: 58.5,68.5 + parent: 40599 + - uid: 43211 components: - type: Transform - pos: -14.5,58.5 - parent: 2 - - uid: 26723 + rot: -1.5707963267948966 rad + pos: 58.5,70.5 + parent: 40599 + - uid: 43212 components: - type: Transform - pos: -15.5,62.5 - parent: 2 - - uid: 26724 + rot: 1.5707963267948966 rad + pos: 62.5,72.5 + parent: 40599 + - uid: 43213 components: - type: Transform - pos: -8.5,57.5 - parent: 2 -- proto: SpawnPointClown - entities: - - uid: 26725 + rot: 1.5707963267948966 rad + pos: 62.5,70.5 + parent: 40599 + - uid: 43214 components: - type: Transform - pos: 49.5,11.5 - parent: 2 -- proto: SpawnPointDetective - entities: - - uid: 26726 + rot: 1.5707963267948966 rad + pos: 62.5,69.5 + parent: 40599 + - uid: 43215 components: - type: Transform - pos: -20.5,4.5 - parent: 2 - - uid: 26727 + rot: 1.5707963267948966 rad + pos: 62.5,68.5 + parent: 40599 + - uid: 43216 components: - type: Transform - pos: -25.5,7.5 - parent: 2 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 26728 + rot: 1.5707963267948966 rad + pos: 62.5,71.5 + parent: 40599 + - uid: 46252 components: - type: Transform - pos: -13.5,-12.5 - parent: 2 - - uid: 26729 + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 45355 + - uid: 46253 components: - type: Transform - pos: -4.5,-12.5 - parent: 2 - - uid: 26730 + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 45355 + - uid: 46254 components: - type: Transform - pos: -7.5,-7.5 - parent: 2 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 26731 + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 45355 + - uid: 46255 components: - type: Transform - pos: -40.5,7.5 - parent: 2 - - uid: 26732 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 45355 + - uid: 46256 components: - type: Transform - pos: -42.5,2.5 - parent: 2 -- proto: SpawnPointJanitor - entities: - - uid: 26733 + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 45355 + - uid: 46257 components: - type: Transform - pos: 2.5,32.5 - parent: 2 - - uid: 26734 + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 45355 +- proto: Stairs + entities: + - uid: 27306 components: - type: Transform - pos: 5.5,31.5 + pos: 28.5,26.5 parent: 2 -- proto: SpawnPointLawyer - entities: - - uid: 26735 + - uid: 27307 components: - type: Transform - pos: -24.5,25.5 + pos: 30.5,26.5 parent: 2 - - uid: 26736 + - uid: 27308 components: - type: Transform - pos: -21.5,25.5 + pos: 8.5,1.5 parent: 2 -- proto: SpawnPointLibrarian - entities: - - uid: 26737 + - uid: 27309 components: - type: Transform - pos: 6.5,18.5 + pos: 7.5,1.5 parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 26738 + - uid: 27310 components: - type: Transform - pos: 25.5,57.5 + pos: -2.5,1.5 parent: 2 - - uid: 26739 + - uid: 27311 components: - type: Transform - pos: -27.5,55.5 + pos: -3.5,1.5 parent: 2 - - uid: 26740 + - uid: 27312 components: - type: Transform - pos: -14.5,43.5 + pos: 29.5,26.5 parent: 2 - - uid: 26741 + - uid: 27313 components: - type: Transform - pos: -21.5,56.5 + pos: 27.5,26.5 parent: 2 - - uid: 26742 + - uid: 27314 components: - type: Transform - pos: -17.5,51.5 + pos: 26.5,26.5 parent: 2 - - uid: 26743 + - uid: 43217 components: - type: Transform - pos: 3.5,44.5 - parent: 2 - - uid: 26744 + rot: 1.5707963267948966 rad + pos: 58.5,75.5 + parent: 40599 + - uid: 43218 components: - type: Transform - pos: 1.5,43.5 - parent: 2 -- proto: SpawnPointMedicalIntern - entities: - - uid: 26745 + rot: 1.5707963267948966 rad + pos: 58.5,74.5 + parent: 40599 + - uid: 43219 components: - type: Transform - pos: -13.5,49.5 - parent: 2 - - uid: 26746 + pos: 50.5,75.5 + parent: 40599 + - uid: 43220 components: - type: Transform - pos: -5.5,69.5 - parent: 2 - - uid: 26747 + pos: 51.5,75.5 + parent: 40599 + - uid: 43221 components: - type: Transform - pos: -25.5,44.5 - parent: 2 - - uid: 26748 + pos: 52.5,75.5 + parent: 40599 + - uid: 43222 components: - type: Transform - pos: 3.5,42.5 - parent: 2 -- proto: SpawnPointMime - entities: - - uid: 26749 + pos: 68.5,68.5 + parent: 40599 + - uid: 43223 components: - type: Transform - pos: 64.5,12.5 - parent: 2 -- proto: SpawnPointMusician - entities: - - uid: 26750 + pos: 69.5,68.5 + parent: 40599 + - uid: 43224 components: - type: Transform - pos: 55.5,13.5 - parent: 2 - - uid: 26751 + pos: 69.5,67.5 + parent: 40599 + - uid: 43225 components: - type: Transform - pos: 55.5,-4.5 - parent: 2 -- proto: SpawnPointObserver + pos: 68.5,67.5 + parent: 40599 +- proto: StairStage entities: - - uid: 26752 + - uid: 27315 components: - type: Transform - pos: 2.5,-16.5 + pos: 46.5,-9.5 parent: 2 -- proto: SpawnPointParamedic - entities: - - uid: 26753 + - uid: 27316 components: - type: Transform - pos: 4.5,52.5 + pos: 50.5,-9.5 parent: 2 -- proto: SpawnPointPassenger - entities: - - uid: 26754 + - uid: 27317 components: - type: Transform - pos: 30.5,23.5 + rot: -1.5707963267948966 rad + pos: 49.5,4.5 parent: 2 - - uid: 26755 + - uid: 27318 components: - type: Transform - pos: 16.5,28.5 + rot: -1.5707963267948966 rad + pos: 49.5,-2.5 parent: 2 - - uid: 26756 +- proto: StairStageDark + entities: + - uid: 43226 components: - type: Transform - pos: 38.5,17.5 - parent: 2 - - uid: 26757 + rot: -1.5707963267948966 rad + pos: 66.5,35.5 + parent: 40599 + - uid: 43227 components: - type: Transform - pos: 31.5,19.5 - parent: 2 - - uid: 26758 + rot: -1.5707963267948966 rad + pos: 67.5,34.5 + parent: 40599 + - uid: 43228 components: - type: Transform - pos: 42.5,10.5 - parent: 2 - - uid: 26759 + rot: -1.5707963267948966 rad + pos: 67.5,36.5 + parent: 40599 + - uid: 43229 components: - type: Transform - pos: 39.5,10.5 - parent: 2 - - uid: 26760 + rot: 1.5707963267948966 rad + pos: 74.5,35.5 + parent: 40599 + - uid: 43230 components: - type: Transform - pos: 43.5,1.5 - parent: 2 - - uid: 26761 + rot: 1.5707963267948966 rad + pos: 73.5,36.5 + parent: 40599 + - uid: 43231 components: - type: Transform - pos: 45.5,2.5 - parent: 2 - - uid: 26762 + rot: 1.5707963267948966 rad + pos: 73.5,34.5 + parent: 40599 +- proto: StairStageWhite + entities: + - uid: 27319 components: + - type: MetaData + name: стойка для обуви - type: Transform - pos: 37.5,-4.5 + pos: 5.5,40.5 parent: 2 - - uid: 26763 +- proto: StairStageWood + entities: + - uid: 27320 components: - type: Transform - pos: 37.5,-1.5 + rot: 1.5707963267948966 rad + pos: -71.5,18.5 parent: 2 - - uid: 26764 + - uid: 27321 components: - type: Transform - pos: 34.5,-12.5 + rot: 1.5707963267948966 rad + pos: 54.5,33.5 parent: 2 - - uid: 26765 + - uid: 27322 components: - type: Transform - pos: 34.5,-9.5 + rot: 1.5707963267948966 rad + pos: 54.5,31.5 parent: 2 -- proto: SpawnPointPsychologist - entities: - - uid: 26766 + - uid: 27323 components: + - type: MetaData + desc: Удобная деревянная стойка для вашей обуви. + name: обувная стойка - type: Transform - pos: 4.5,60.5 + rot: -1.5707963267948966 rad + pos: 62.5,4.5 parent: 2 - - uid: 26767 + - uid: 27324 components: - type: Transform - pos: 3.5,64.5 + rot: 1.5707963267948966 rad + pos: -3.5,21.5 parent: 2 -- proto: SpawnPointQuartermaster - entities: - - uid: 26768 + - uid: 27325 components: + - type: MetaData + name: стойка для обуви - type: Transform - pos: 81.5,-39.5 + rot: 1.5707963267948966 rad + pos: -25.5,22.5 parent: 2 - - uid: 26769 + - uid: 27326 components: - type: Transform - pos: 81.5,-33.5 + rot: 1.5707963267948966 rad + pos: -22.5,-19.5 parent: 2 - - uid: 26770 + - uid: 27327 components: - type: Transform - pos: 75.5,-39.5 + rot: -1.5707963267948966 rad + pos: -30.5,-19.5 parent: 2 -- proto: SpawnPointReporter +- proto: StairWood entities: - - uid: 26771 + - uid: 27328 components: - type: Transform - pos: 10.5,18.5 + rot: -1.5707963267948966 rad + pos: 29.5,17.5 parent: 2 - - uid: 26772 + - uid: 27329 components: - type: Transform - pos: 12.5,21.5 + pos: 95.5,-19.5 parent: 2 -- proto: SpawnPointResearchAssistant - entities: - - uid: 26773 + - uid: 27330 components: - type: Transform - pos: 51.5,-58.5 + pos: 94.5,-19.5 parent: 2 - - uid: 26774 + - uid: 27331 components: - type: Transform - pos: 44.5,-37.5 + rot: 3.141592653589793 rad + pos: 5.5,-23.5 parent: 2 - - uid: 26775 + - uid: 27332 components: - type: Transform - pos: 17.5,-49.5 + rot: 1.5707963267948966 rad + pos: -23.5,8.5 parent: 2 - - uid: 26776 + - uid: 27333 components: - type: Transform - pos: 18.5,-49.5 + rot: -1.5707963267948966 rad + pos: 29.5,18.5 parent: 2 -- proto: SpawnPointResearchDirector - entities: - - uid: 26777 + - uid: 27334 components: - type: Transform - pos: 31.5,-56.5 + pos: 27.5,20.5 parent: 2 - - uid: 26778 + - uid: 27335 components: - type: Transform - pos: 28.5,-55.5 + pos: 26.5,20.5 parent: 2 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 26779 + - uid: 27336 components: - type: Transform - pos: 73.5,-44.5 + rot: 1.5707963267948966 rad + pos: 24.5,25.5 parent: 2 - - uid: 26780 + - uid: 27337 components: - type: Transform - pos: 78.5,-47.5 + rot: 1.5707963267948966 rad + pos: 24.5,24.5 parent: 2 - - uid: 26781 + - uid: 27338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,7.5 + parent: 2 + - uid: 27339 components: - type: Transform - pos: 79.5,-47.5 + rot: 3.141592653589793 rad + pos: 4.5,-23.5 parent: 2 -- proto: SpawnPointScientist - entities: - - uid: 26782 + - uid: 27340 components: - type: Transform - pos: 18.5,-44.5 + pos: 5.5,-19.5 parent: 2 - - uid: 26783 + - uid: 27341 components: - type: Transform - pos: 17.5,-44.5 + pos: 4.5,-19.5 parent: 2 - - uid: 26784 + - uid: 27342 components: - type: Transform - pos: 17.5,-45.5 + rot: 1.5707963267948966 rad + pos: 96.5,-18.5 parent: 2 - - uid: 26785 + - uid: 27343 components: - type: Transform - pos: 18.5,-45.5 + rot: 1.5707963267948966 rad + pos: 96.5,-17.5 parent: 2 - - uid: 26786 + - uid: 27344 components: - type: Transform - pos: 18.5,-46.5 + rot: 1.5707963267948966 rad + pos: -42.5,25.5 parent: 2 - - uid: 26787 + - uid: 27345 components: - type: Transform - pos: 17.5,-46.5 + rot: 1.5707963267948966 rad + pos: -42.5,24.5 parent: 2 -- proto: SpawnPointSecurityCadet - entities: - - uid: 26788 + - uid: 47109 components: - type: Transform - pos: -53.5,-3.5 - parent: 2 - - uid: 26789 + rot: -1.5707963267948966 rad + pos: -0.5,2.5 + parent: 46943 + - uid: 47110 components: - type: Transform - pos: -25.5,-8.5 - parent: 2 - - uid: 26790 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 46943 + - uid: 47111 components: - type: Transform - pos: -27.5,-14.5 - parent: 2 - - uid: 26791 + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 46943 + - uid: 47112 components: - type: Transform - pos: -41.5,17.5 - parent: 2 - - uid: 26792 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 46943 + - uid: 47113 components: - type: Transform - pos: -29.5,-9.5 - parent: 2 - - uid: 26793 + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 46943 + - uid: 47114 components: - type: Transform - pos: 98.5,-3.5 - parent: 2 - - uid: 26794 + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 46943 + - uid: 47115 components: - type: Transform - pos: 96.5,-3.5 - parent: 2 -- proto: SpawnPointSecurityOfficer + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 46943 +- proto: StasisBed entities: - - uid: 26795 + - uid: 27346 components: - type: Transform - pos: -25.5,-9.5 + pos: 21.5,60.5 parent: 2 - - uid: 26796 + - uid: 27347 components: - type: Transform - pos: -24.5,-16.5 + pos: -52.5,12.5 parent: 2 - - uid: 26797 + - uid: 27348 components: - type: Transform - pos: -50.5,4.5 + pos: -16.5,55.5 parent: 2 - - uid: 26798 + - uid: 27349 components: - type: Transform - pos: -49.5,6.5 + pos: -15.5,55.5 parent: 2 - - uid: 26799 + - uid: 27350 components: - type: Transform - pos: -31.5,-15.5 + pos: -14.5,55.5 parent: 2 - - uid: 26800 + - uid: 27351 components: - type: Transform - pos: -28.5,-9.5 + pos: -105.5,1.5 parent: 2 - - uid: 26801 +- proto: StationAiUploadComputer + entities: + - uid: 27352 components: - type: Transform - pos: -28.5,-7.5 + rot: -1.5707963267948966 rad + pos: 4.5,14.5 parent: 2 - - uid: 26802 +- proto: StationMap + entities: + - uid: 27353 components: - type: Transform - pos: -28.5,-8.5 + pos: 59.5,-21.5 parent: 2 - - uid: 26803 + - uid: 27354 components: - type: Transform - pos: -29.5,-7.5 + pos: 18.5,-14.5 parent: 2 - - uid: 26804 + - uid: 27355 components: - type: Transform - pos: -29.5,-8.5 + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 parent: 2 -- proto: SpawnPointServiceWorker - entities: - - uid: 26805 + - uid: 27356 components: - type: Transform - pos: 13.5,28.5 + rot: 3.141592653589793 rad + pos: 21.5,23.5 parent: 2 - - uid: 26806 + - uid: 27357 components: - type: Transform - pos: 29.5,33.5 + pos: 20.5,15.5 parent: 2 - - uid: 26807 + - uid: 27358 components: - type: Transform - pos: 42.5,19.5 + rot: -1.5707963267948966 rad + pos: -7.5,-29.5 parent: 2 -- proto: SpawnPointStationEngineer - entities: - - uid: 26808 + - uid: 27359 components: - type: Transform - pos: 4.5,-43.5 + pos: -21.5,-12.5 parent: 2 - - uid: 26809 + - uid: 27360 components: - type: Transform - pos: -4.5,-48.5 + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 parent: 2 - - uid: 26810 + - uid: 27361 components: - type: Transform - pos: -5.5,-44.5 + pos: 3.5,50.5 parent: 2 - - uid: 26811 +- proto: StationMapBroken + entities: + - uid: 46258 components: - type: Transform - pos: 6.5,-41.5 - parent: 2 - - uid: 26812 + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 45355 + - uid: 46808 components: - type: Transform - pos: -4.5,-37.5 - parent: 2 - - uid: 26813 + pos: 2.5,8.5 + parent: 46584 +- proto: StatueVenusBlue + entities: + - uid: 27362 components: - type: Transform - pos: 2.5,-41.5 + pos: 6.5,-14.5 parent: 2 -- proto: SpawnPointTechnicalAssistant +- proto: StatueVenusRed entities: - - uid: 26814 + - uid: 27363 components: - type: Transform - pos: -21.5,-36.5 + pos: -1.5,-14.5 parent: 2 - - uid: 26815 +- proto: SteelBench + entities: + - uid: 27364 components: - type: Transform - pos: -24.5,-41.5 + pos: -3.5,52.5 parent: 2 - - uid: 26816 + - uid: 27365 components: - type: Transform - pos: -14.5,-37.5 + pos: -4.5,52.5 parent: 2 - - uid: 26817 + - uid: 27366 components: - type: Transform - pos: -25.5,-51.5 + rot: 3.141592653589793 rad + pos: 70.5,-24.5 parent: 2 - - uid: 26818 + - uid: 27367 components: - type: Transform - pos: -3.5,-48.5 + rot: 1.5707963267948966 rad + pos: -110.5,-5.5 parent: 2 -- proto: SpawnPointWarden - entities: - - uid: 26819 + - uid: 27368 components: - type: Transform - pos: -30.5,-21.5 + rot: 1.5707963267948966 rad + pos: -110.5,-4.5 parent: 2 - - uid: 26820 + - uid: 27369 components: - type: Transform - pos: -36.5,-13.5 + rot: 1.5707963267948966 rad + pos: -24.5,-41.5 parent: 2 - - uid: 26821 + - uid: 27370 components: - type: Transform - pos: -44.5,-17.5 + rot: 3.141592653589793 rad + pos: 23.5,-43.5 parent: 2 - - uid: 26822 + - uid: 27371 components: - type: Transform - pos: -41.5,-19.5 + pos: 25.5,-14.5 parent: 2 - - uid: 26823 + - uid: 27372 components: - type: Transform - pos: -42.5,-11.5 + rot: -1.5707963267948966 rad + pos: -9.5,19.5 parent: 2 -- proto: SpawnPointZookeeper - entities: - - uid: 26824 + - uid: 27373 components: - type: Transform - pos: 23.5,18.5 + rot: -1.5707963267948966 rad + pos: -9.5,18.5 parent: 2 - - uid: 26825 + - uid: 27374 components: - type: Transform - pos: 20.5,21.5 + rot: 3.141592653589793 rad + pos: 24.5,-1.5 parent: 2 -- proto: Spear - entities: - - uid: 26826 + - uid: 27375 components: - type: Transform - pos: 95.74255,5.663926 + pos: 24.5,-14.5 parent: 2 - - uid: 26827 + - uid: 27376 components: - - type: MetaData - name: копьё культа - type: Transform - pos: 22.426067,15.599396 + rot: 3.141592653589793 rad + pos: 25.5,-1.5 parent: 2 - - type: PointLight - energy: 2 - color: '#DC143CFF' - radius: 3 - - uid: 26828 + - uid: 27377 components: - type: Transform - pos: -76.846344,-9.944233 + pos: 17.5,-43.5 parent: 2 - - type: Physics - canCollide: False - missingComponents: - - Item - - Pullable -- proto: SpearReinforced - entities: - - uid: 26829 + - uid: 27378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.55505,-0.25794888 + rot: 1.5707963267948966 rad + pos: 16.5,-47.5 parent: 2 -- proto: SpeedLoaderMagnum - entities: - - uid: 23060 + - uid: 27379 components: - type: Transform - parent: 23059 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SpeedLoaderMagnumAP - entities: - - uid: 23061 + rot: 1.5707963267948966 rad + pos: 21.5,-53.5 + parent: 2 + - uid: 27380 components: - type: Transform - parent: 23059 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 42785 + rot: 1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 27381 components: - type: Transform - pos: 71.4009,79.45519 - parent: 40203 -- proto: SpiderWeb - entities: - - uid: 26830 + rot: 1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 27382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,56.5 + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 parent: 2 - - uid: 26831 + - uid: 27383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,57.5 + pos: 7.5,-22.5 parent: 2 - - uid: 26832 + - uid: 27384 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,56.5 + pos: 22.5,-43.5 parent: 2 - - uid: 26833 + - uid: 27385 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,54.5 + pos: -29.5,-7.5 parent: 2 - - uid: 26834 + - uid: 27386 components: - type: Transform - pos: 22.5,53.5 + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 parent: 2 - - uid: 26835 + - uid: 27387 components: - type: Transform - pos: 22.5,54.5 + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 parent: 2 - - uid: 26836 + - uid: 27388 components: - type: Transform - pos: 5.5,58.5 + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 parent: 2 - - uid: 26837 + - uid: 27389 components: - type: Transform rot: -1.5707963267948966 rad - pos: 81.5,7.5 + pos: -29.5,-9.5 parent: 2 - - uid: 26838 + - uid: 27390 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,5.5 + pos: -0.5,50.5 parent: 2 - - uid: 26839 + - uid: 27391 components: - type: Transform - pos: 10.5,53.5 + rot: -1.5707963267948966 rad + pos: -0.5,52.5 parent: 2 - - uid: 26840 + - uid: 27392 components: - type: Transform - pos: 2.5,56.5 + rot: -1.5707963267948966 rad + pos: -0.5,51.5 parent: 2 - - uid: 26841 + - uid: 27393 components: - type: Transform - pos: 17.5,64.5 + rot: 3.141592653589793 rad + pos: 18.5,-43.5 parent: 2 - - uid: 26842 + - uid: 27394 components: - type: Transform - pos: 17.5,62.5 + pos: -49.5,13.5 parent: 2 - - uid: 26843 + - uid: 27395 components: - type: Transform - pos: 17.5,63.5 + pos: -45.5,13.5 parent: 2 - - uid: 26844 + - uid: 27396 components: - type: Transform - pos: 16.5,63.5 + pos: -41.5,13.5 parent: 2 - - uid: 26845 + - uid: 27397 components: - type: Transform - pos: 16.5,64.5 + pos: -41.5,15.5 parent: 2 - - uid: 26846 + - uid: 27398 components: - type: Transform - pos: 16.5,62.5 + pos: -45.5,15.5 parent: 2 - - uid: 26847 + - uid: 27399 components: - type: Transform - pos: 15.5,63.5 + pos: -49.5,15.5 parent: 2 - - uid: 26848 + - uid: 27400 components: - type: Transform - pos: 14.5,63.5 + rot: 1.5707963267948966 rad + pos: 16.5,-46.5 parent: 2 - - uid: 26849 + - uid: 27401 components: - type: Transform - pos: 24.5,51.5 + pos: 71.5,-7.5 parent: 2 - - uid: 26850 + - uid: 27402 components: - type: Transform - pos: 11.5,53.5 + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 parent: 2 - - uid: 26851 + - uid: 27403 components: - type: Transform - pos: 11.5,54.5 + rot: 1.5707963267948966 rad + pos: -10.5,-35.5 parent: 2 - - uid: 26852 + - uid: 27404 components: - type: Transform - pos: 10.5,54.5 + pos: -7.5,48.5 parent: 2 - - uid: 26853 + - uid: 27405 components: - type: Transform - pos: 7.5,57.5 + pos: -6.5,48.5 parent: 2 - - uid: 26854 + - uid: 27406 components: - type: Transform - pos: 6.5,56.5 + rot: 3.141592653589793 rad + pos: -96.5,-8.5 parent: 2 - - uid: 26855 + - uid: 27407 components: - type: Transform - pos: 6.5,58.5 + rot: -1.5707963267948966 rad + pos: -99.5,6.5 parent: 2 - - uid: 26856 + - uid: 27408 components: - type: Transform - pos: 6.5,57.5 + rot: -1.5707963267948966 rad + pos: -99.5,7.5 parent: 2 - - uid: 26857 + - uid: 27409 components: - type: Transform - pos: 14.5,56.5 + rot: 3.141592653589793 rad + pos: -97.5,-8.5 parent: 2 - - uid: 26858 + - uid: 27410 components: - type: Transform - pos: 13.5,56.5 + rot: 1.5707963267948966 rad + pos: 96.5,-5.5 parent: 2 - - uid: 26859 + - uid: 27411 components: - type: Transform - pos: 14.5,57.5 + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 parent: 2 - - uid: 26860 + - uid: 27412 components: - type: Transform - pos: 14.5,58.5 + rot: 3.141592653589793 rad + pos: 82.5,-26.5 parent: 2 - - uid: 26861 + - uid: 43232 components: - type: Transform - pos: 1.5,56.5 - parent: 2 - - uid: 26862 + rot: 3.141592653589793 rad + pos: 57.5,54.5 + parent: 40599 + - uid: 43233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,60.5 - parent: 2 - - uid: 26863 + rot: 3.141592653589793 rad + pos: 55.5,54.5 + parent: 40599 + - uid: 43234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,8.5 - parent: 2 - - uid: 26864 + rot: 3.141592653589793 rad + pos: 56.5,54.5 + parent: 40599 +- proto: SteelOre1 + entities: + - uid: 43235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,8.5 - parent: 2 - - uid: 26865 + rot: 0.20943951023931956 rad + pos: 29.32,72.758575 + parent: 40599 + - uid: 43236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,4.5 - parent: 2 - - uid: 26866 + rot: -0.5934119456780721 rad + pos: 28.570065,71.3367 + parent: 40599 + - uid: 43237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,4.5 + rot: -1.413716694115407 rad + pos: 31.17944,71.539825 + parent: 40599 +- proto: StimkitFilled + entities: + - uid: 27413 + components: + - type: Transform + pos: -4.287232,58.293137 parent: 2 - - uid: 26867 +- proto: Stool + entities: + - uid: 27414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,7.5 + rot: 1.5707963267948966 rad + pos: 32.66885,24.128778 parent: 2 - - uid: 26868 +- proto: StoolBar + entities: + - uid: 27415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,5.5 + rot: 1.5707963267948966 rad + pos: 27.5,5.5 parent: 2 - - uid: 26869 + - uid: 27416 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,33.5 + pos: 25.5,7.5 parent: 2 - - uid: 26870 + - uid: 27417 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,32.5 + pos: 25.5,5.5 parent: 2 - - uid: 26871 + - uid: 27418 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,33.5 + pos: 25.5,6.5 parent: 2 - - uid: 26872 + - uid: 27419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,31.5 + rot: 1.5707963267948966 rad + pos: 27.5,7.5 parent: 2 - - uid: 26873 + - uid: 27420 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,33.5 + pos: 25.5,4.5 parent: 2 - - uid: 26874 + - uid: 27421 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,31.5 + pos: -106.5,11.5 parent: 2 - - uid: 26875 + - uid: 27422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,51.5 + rot: 1.5707963267948966 rad + pos: 39.5,21.5 parent: 2 - - uid: 26876 + - uid: 27423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,54.5 + rot: 1.5707963267948966 rad + pos: 39.5,19.5 parent: 2 - - uid: 26877 + - uid: 27424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,52.5 + pos: 39.5,20.5 parent: 2 - - uid: 26878 + - uid: 27425 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,53.5 + pos: 39.5,18.5 parent: 2 - - uid: 26879 + - uid: 27426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,51.5 + rot: 1.5707963267948966 rad + pos: 39.5,22.5 parent: 2 - - uid: 26880 + - uid: 27427 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,51.5 + pos: 27.5,29.5 parent: 2 - - uid: 26881 + - uid: 27428 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,52.5 + pos: 28.5,29.5 parent: 2 - - uid: 26882 + - uid: 27429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,60.5 + rot: 3.141592653589793 rad + pos: 30.5,29.5 parent: 2 - - uid: 26883 + - uid: 27430 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,60.5 + pos: 29.5,29.5 parent: 2 - - uid: 26884 + - uid: 27431 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,61.5 + pos: 32.5,29.5 parent: 2 - - uid: 26885 + - uid: 27432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,61.5 + rot: 3.141592653589793 rad + pos: 31.5,29.5 parent: 2 - - uid: 26886 + - uid: 27433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,60.5 + rot: -1.5707963267948966 rad + pos: -106.5,10.5 parent: 2 - - uid: 26887 + - uid: 27434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,60.5 + rot: -1.5707963267948966 rad + pos: -106.5,9.5 parent: 2 - - uid: 26888 + - uid: 27435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,60.5 + rot: 3.141592653589793 rad + pos: -109.5,7.5 parent: 2 - - uid: 26889 + - uid: 27436 components: - type: Transform - pos: 11.5,60.5 + rot: 3.141592653589793 rad + pos: -108.5,7.5 parent: 2 - - uid: 42786 + - uid: 27437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,74.5 - parent: 40203 - - uid: 42787 + pos: -38.5,24.5 + parent: 2 + - uid: 27438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,73.5 - parent: 40203 - - uid: 42788 + pos: -36.5,24.5 + parent: 2 + - uid: 27439 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,74.5 - parent: 40203 - - uid: 42789 + pos: -35.5,24.5 + parent: 2 + - uid: 27440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,74.5 - parent: 40203 - - uid: 42790 + pos: -37.5,24.5 + parent: 2 + - uid: 27441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,73.5 - parent: 40203 - - uid: 42791 + pos: 27.5,6.5 + parent: 2 + - uid: 27442 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,74.5 - parent: 40203 - - uid: 42792 - components: - - type: Transform - pos: 40.5,72.5 - parent: 40203 - - uid: 42793 - components: - - type: Transform - pos: 40.5,73.5 - parent: 40203 - - uid: 42794 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,73.5 - parent: 40203 - - uid: 42795 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,72.5 - parent: 40203 - - uid: 42796 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,74.5 - parent: 40203 - - uid: 42797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,74.5 - parent: 40203 - - uid: 42798 + pos: 27.5,4.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 27443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,73.5 - parent: 40203 - - uid: 42799 + pos: 48.5,-49.5 + parent: 2 + - uid: 27444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,72.5 - parent: 40203 - - uid: 42800 + pos: -2.5,-68.5 + parent: 2 + - type: GasCanister + releaseValve: True + releasePressure: 100 + - uid: 27445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,56.5 - parent: 40203 - - uid: 42801 + pos: -20.5,52.5 + parent: 2 + - uid: 27446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,56.5 - parent: 40203 - - uid: 42802 + pos: -6.5,-56.5 + parent: 2 + - uid: 27447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,54.5 - parent: 40203 - - uid: 42803 + pos: -6.5,-55.5 + parent: 2 + - uid: 27448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,56.5 - parent: 40203 - - uid: 42804 + pos: -23.5,-50.5 + parent: 2 + - uid: 27449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,55.5 - parent: 40203 - - uid: 42805 + pos: -23.5,-51.5 + parent: 2 + - uid: 43238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,55.5 - parent: 40203 - - uid: 42806 + pos: 66.5,61.5 + parent: 40599 +- proto: StrangePill + entities: + - uid: 27450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,53.5 - parent: 40203 - - uid: 42807 + pos: 59.629734,32.771423 + parent: 2 +- proto: Stunbaton + entities: + - uid: 27451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,54.5 - parent: 40203 - - uid: 42808 + pos: -28.769108,-8.513697 + parent: 2 + - uid: 27452 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,54.5 - parent: 40203 - - uid: 42809 + pos: -24.554844,-15.329269 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 27453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,54.5 - parent: 40203 - - uid: 42810 + pos: -20.5,60.5 + parent: 2 + - uid: 27454 components: + - type: MetaData + name: подстанция "ИИ, Серверная" - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,55.5 - parent: 40203 - - uid: 42811 + pos: 1.5,15.5 + parent: 2 + - uid: 27455 components: + - type: MetaData + name: подстанция "эРуНДэ" - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,56.5 - parent: 40203 - - uid: 42812 + pos: 10.5,-46.5 + parent: 2 + - uid: 27456 components: + - type: MetaData + name: подстанция "Снабжение" - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,55.5 - parent: 40203 - - uid: 42813 + pos: 52.5,-39.5 + parent: 2 + - uid: 27457 components: + - type: MetaData + name: подстанция "Сцена" - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,56.5 - parent: 40203 - - uid: 42814 + pos: 59.5,-4.5 + parent: 2 + - uid: 27458 components: + - type: MetaData + name: подстанция "Сервис" - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,56.5 - parent: 40203 - - uid: 45825 + pos: 44.5,27.5 + parent: 2 + - uid: 27459 components: + - type: MetaData + name: подстанция "Хранилище" - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,4.5 - parent: 44970 - - uid: 45826 + pos: 4.5,-11.5 + parent: 2 + - uid: 27460 components: + - type: MetaData + name: подстанция "Мостик, офис ГП" - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 - parent: 44970 - - uid: 45827 + pos: -11.5,-6.5 + parent: 2 + - uid: 27461 components: + - type: MetaData + name: подстанция "Мостик, Капитан" - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,16.5 - parent: 44970 - - uid: 45828 + pos: 14.5,-13.5 + parent: 2 + - uid: 27462 components: + - type: MetaData + name: подстанция "Двигатель Антиматерии" - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,15.5 - parent: 44970 - - uid: 45829 + pos: -26.5,-41.5 + parent: 2 + - uid: 27463 components: + - type: MetaData + name: подстанция "ТЭГ" - type: Transform - pos: 10.5,7.5 - parent: 44970 - - uid: 45830 + pos: -12.5,-48.5 + parent: 2 + - uid: 27464 components: + - type: MetaData + name: подстанция "Атмосферный" - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 44970 - - uid: 45831 + pos: -8.5,-52.5 + parent: 2 + - uid: 27465 components: + - type: MetaData + name: подстанция "Инженерный, массив СМЭС" - type: Transform - pos: -5.5,13.5 - parent: 44970 - - uid: 45832 + pos: -13.5,-36.5 + parent: 2 + - uid: 27466 components: + - type: MetaData + name: подстанция "Бриг" - type: Transform - pos: 2.5,5.5 - parent: 44970 - - uid: 45833 + pos: -19.5,-4.5 + parent: 2 + - uid: 27467 components: + - type: MetaData + name: подстанция "Прибытие - Отбытие" - type: Transform - pos: -5.5,4.5 - parent: 44970 - - uid: 45834 + pos: 75.5,-27.5 + parent: 2 + - uid: 27468 components: + - type: MetaData + name: подстанция "Коридор - Снабжение, прибытие" - type: Transform - pos: -4.5,3.5 - parent: 44970 - - uid: 45835 + pos: 54.5,-27.5 + parent: 2 + - uid: 27469 components: + - type: MetaData + name: подстанция "Каторга" - type: Transform - pos: -4.5,4.5 - parent: 44970 - - uid: 45836 + pos: -134.5,11.5 + parent: 2 + - uid: 43239 components: - type: Transform - pos: -5.5,1.5 - parent: 44970 - - uid: 45837 + pos: 68.5,58.5 + parent: 40599 + - uid: 46259 components: - type: Transform - pos: -5.5,0.5 - parent: 44970 - - uid: 45838 + pos: 10.5,9.5 + parent: 45355 +- proto: SubstationBasicEmpty + entities: + - uid: 27470 components: - type: Transform - pos: -4.5,0.5 - parent: 44970 - - uid: 45839 + pos: 18.5,53.5 + parent: 2 + - uid: 27471 components: + - type: MetaData + name: подстанция "Солнечные панели" - type: Transform - pos: -5.5,-0.5 - parent: 44970 - - uid: 45840 + pos: -56.5,63.5 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 27472 components: - type: Transform - pos: -4.5,-0.5 - parent: 44970 - - uid: 45841 + pos: -106.5,45.5 + parent: 2 + - uid: 46809 components: - type: Transform - pos: -4.5,-1.5 - parent: 44970 - - uid: 45842 + pos: 5.5,8.5 + parent: 46584 + - uid: 47321 components: - type: Transform - pos: -2.5,-2.5 - parent: 44970 - - uid: 45843 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 47245 +- proto: SuitStorageAtmos + entities: + - uid: 27473 components: - type: Transform - pos: -1.5,-2.5 - parent: 44970 - - uid: 45844 + pos: -6.5,-52.5 + parent: 2 + - uid: 27474 components: - type: Transform - pos: -1.5,-1.5 - parent: 44970 - - uid: 45845 + pos: -5.5,-52.5 + parent: 2 + - uid: 27475 components: - type: Transform - pos: -0.5,-2.5 - parent: 44970 - - uid: 45846 + pos: -7.5,-52.5 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 12 components: - type: Transform - pos: -1.5,1.5 - parent: 44970 - - uid: 45847 + pos: -54.5,17.5 + parent: 2 + - type: AccessReader + access: + - - Medical + - 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: + - 16 + - 13 + - 15 + - uid: 41615 components: - type: Transform - pos: -2.5,1.5 - parent: 44970 - - uid: 45848 + pos: 41.5,72.5 + parent: 40599 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 41618 + - 41616 + - 41617 + - uid: 43240 components: - type: Transform - pos: -1.5,2.5 - parent: 44970 - - uid: 45849 + pos: 41.5,74.5 + parent: 40599 + - type: Lock + locked: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.48 + - 0.25,-0.48 + - 0.25,0.48 + - -0.25,0.48 + mask: + - Impassable + - TableLayer + - LowImpassable + layer: + - BulletImpassable + - Opaque + density: 350 + hard: True + restitution: 0 + friction: 0.4 + - type: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True +- proto: SuitStorageCaptain + entities: + - uid: 27476 components: - type: Transform - pos: -0.5,1.5 - parent: 44970 - - uid: 45850 + pos: 15.5,-9.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 27477 components: - type: Transform - pos: -1.5,0.5 - parent: 44970 - - uid: 45851 + pos: 6.5,-51.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 15311 components: - type: Transform - pos: 5.5,4.5 - parent: 44970 - - uid: 45852 + pos: -12.5,57.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15312 + - 15313 +- proto: SuitStorageEngi + entities: + - uid: 27478 components: - type: Transform - pos: 5.5,3.5 - parent: 44970 - - uid: 45853 + pos: 1.5,-44.5 + parent: 2 + - uid: 27479 components: - type: Transform - pos: 6.5,4.5 - parent: 44970 - - uid: 45854 + pos: 2.5,-44.5 + parent: 2 + - uid: 27480 components: - type: Transform - pos: 7.5,8.5 - parent: 44970 - - uid: 45855 + pos: 3.5,-44.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 27481 components: - type: Transform - pos: 7.5,9.5 - parent: 44970 - - uid: 45856 + pos: -12.5,4.5 + parent: 2 + - uid: 27482 components: - type: Transform - pos: 6.5,8.5 - parent: 44970 - - uid: 45857 + pos: -11.5,5.5 + parent: 2 + - uid: 27483 components: - type: Transform - pos: 7.5,7.5 - parent: 44970 - - uid: 45858 + pos: -12.5,7.5 + parent: 2 + - uid: 27484 components: - type: Transform - pos: 1.5,7.5 - parent: 44970 - - uid: 45859 + pos: -11.5,4.5 + parent: 2 + - uid: 27485 components: - type: Transform - pos: 1.5,8.5 - parent: 44970 - - uid: 45860 + pos: -12.5,5.5 + parent: 2 + - uid: 27486 components: - type: Transform - pos: 0.5,7.5 - parent: 44970 - - uid: 45861 + pos: -11.5,6.5 + parent: 2 + - uid: 27487 components: - type: Transform - pos: -2.5,9.5 - parent: 44970 - - uid: 45862 + pos: -11.5,7.5 + parent: 2 + - uid: 27488 components: - type: Transform - pos: -2.5,10.5 - parent: 44970 - - uid: 45863 + pos: -12.5,6.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 27489 components: - type: Transform - pos: -2.5,11.5 - parent: 44970 - - uid: 45864 + pos: -42.5,8.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 27490 components: - type: Transform - pos: -3.5,9.5 - parent: 44970 - - uid: 45865 + pos: 27.5,-51.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 27491 components: - type: Transform - pos: -1.5,9.5 - parent: 44970 - - uid: 45866 + pos: 81.5,-46.5 + parent: 2 + - uid: 27492 components: - type: Transform - pos: -2.5,8.5 - parent: 44970 - - uid: 45867 + pos: 82.5,-46.5 + parent: 2 + - uid: 27493 components: - type: Transform - pos: 1.5,1.5 - parent: 44970 - - uid: 45868 + pos: 83.5,-46.5 + parent: 2 + - uid: 27494 components: - type: Transform - pos: 1.5,2.5 - parent: 44970 - - uid: 45869 + pos: 84.5,-46.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 27495 components: - type: Transform - pos: 2.5,2.5 - parent: 44970 - - uid: 45870 + pos: -48.5,-13.5 + parent: 2 + - uid: 27496 components: - type: Transform - pos: 2.5,3.5 - parent: 44970 - - uid: 45871 + pos: -48.5,-11.5 + parent: 2 + - uid: 27497 components: - type: Transform - pos: 3.5,2.5 - parent: 44970 - - uid: 45872 + pos: -48.5,-12.5 + parent: 2 + - uid: 27498 components: - type: Transform - pos: 2.5,1.5 - parent: 44970 - - uid: 45873 + pos: -48.5,-14.5 + parent: 2 + - uid: 27499 components: - type: Transform - pos: 0.5,3.5 - parent: 44970 - - uid: 45874 + pos: -99.5,12.5 + parent: 2 + - uid: 27500 components: - type: Transform - pos: 0.5,5.5 - parent: 44970 - - uid: 45875 + pos: -99.5,11.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 27501 components: - type: Transform - pos: 3.5,5.5 - parent: 44970 - - uid: 45876 + pos: -44.5,-18.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 27502 components: - type: Transform - pos: 3.5,5.5 - parent: 44970 - - uid: 45877 + pos: 74.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис Квартирмейстера + - uid: 27503 components: - type: Transform - pos: 3.5,4.5 - parent: 44970 - - uid: 45878 + pos: -5.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис Главы Персонала + - uid: 27504 components: - type: Transform - pos: 2.5,12.5 - parent: 44970 - - uid: 45879 + pos: -11.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Левое крыло мостика + - uid: 27505 components: - type: Transform - pos: 1.5,13.5 - parent: 44970 - - uid: 45880 + pos: 16.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Правое крыло мостика + - uid: 27506 components: - type: Transform - pos: 2.5,13.5 - parent: 44970 - - uid: 45881 + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик левая часть + - uid: 27507 components: - type: Transform - pos: 2.5,14.5 - parent: 44970 - - uid: 45882 + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик правая часть + - uid: 27508 components: - type: Transform - pos: 3.5,13.5 - parent: 44970 - - uid: 45883 + pos: 0.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Хранилище + - uid: 27509 components: - type: Transform - pos: -4.5,13.5 - parent: 44970 - - uid: 45884 + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мастерская капитана + - uid: 27510 components: - type: Transform - pos: -4.5,14.5 - parent: 44970 - - uid: 45885 + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис Капитана + - uid: 27511 components: - type: Transform - pos: -5.5,14.5 - parent: 44970 - - uid: 45886 + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ИИ + - uid: 27512 components: - type: Transform - pos: -5.5,15.5 - parent: 44970 - - uid: 45887 + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Маршрутизаторы камер + - uid: 27513 components: - type: Transform - pos: -5.5,12.5 - parent: 44970 - - uid: 45888 + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Телекоммуникационный сервер + - uid: 27514 components: - type: Transform - pos: -1.5,11.5 - parent: 44970 - - uid: 45889 + pos: -6.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Приёмная Главы Персонала + - uid: 27515 components: - type: Transform - pos: -1.5,12.5 - parent: 44970 - - uid: 45890 + rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис Старшего инженера + - uid: 27516 components: - type: Transform - pos: 5.5,5.5 - parent: 44970 - - uid: 45891 + rot: 1.5707963267948966 rad + pos: 18.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Каюта Капитана + - uid: 27517 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,5.5 - parent: 44970 - - uid: 45892 - components: - - type: Transform - pos: 10.5,8.5 - parent: 44970 - - uid: 45893 + pos: -5.5,59.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис Главврача + - uid: 27518 components: - type: Transform - pos: 9.5,8.5 - parent: 44970 - - uid: 45894 + rot: 1.5707963267948966 rad + pos: 33.5,-53.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис Научрука + - uid: 27519 components: - type: Transform - pos: 10.5,9.5 - parent: 44970 - - uid: 45895 + rot: 1.5707963267948966 rad + pos: -40.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Офис Главы СБ + - uid: 27520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,9.5 - parent: 44970 - - uid: 45896 + rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Восточный вход в ИИ + - uid: 27521 components: - type: Transform - pos: 6.5,9.5 - parent: 44970 -- proto: Spoon + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Западный вход в ИИ +- proto: SurveillanceCameraEngineering entities: - - uid: 26890 + - uid: 27522 components: - type: Transform - pos: -46.58729,2.7295692 + rot: 3.141592653589793 rad + pos: 7.5,-53.5 parent: 2 - - uid: 26891 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Комната отдыха Атмосферного + - uid: 27523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.955378,30.529366 + pos: -6.5,-33.5 parent: 2 - - uid: 42815 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: КПП Инж + - uid: 27524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.459976,79.54522 - parent: 40203 - - uid: 42816 + rot: 3.141592653589793 rad + pos: -6.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Стойка Инж + - uid: 27525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.4756,79.45147 - parent: 40203 - - uid: 42817 + rot: 1.5707963267948966 rad + pos: -1.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Комната для брифинга + - uid: 27526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.522476,79.373344 - parent: 40203 - - uid: 45897 + rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Массив СМЭС + - uid: 27527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.524347,4.472701 - parent: 44970 - - uid: 45898 + pos: -19.5,-42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Генераторная + - uid: 27528 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.602472,4.441451 - parent: 44970 -- proto: SpoonPlastic - entities: - - uid: 26892 + pos: -30.5,-40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Двигатель Антиматерии + - uid: 27529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -114.42557,5.6168714 + pos: -32.5,-46.5 parent: 2 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 26893 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Вход Тесла + - uid: 27530 components: - type: Transform - pos: -20.519583,55.56885 + rot: 1.5707963267948966 rad + pos: -12.5,-52.5 parent: 2 - - uid: 26894 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: ТЭГ + - uid: 27531 components: - type: Transform - pos: 4.2268305,32.820644 + rot: 3.141592653589793 rad + pos: -11.5,-58.5 parent: 2 - - uid: 26895 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Атмосферика + - uid: 27532 components: - type: Transform - pos: 4.0705805,32.820644 + rot: 3.141592653589793 rad + pos: -0.5,-58.5 parent: 2 - - uid: 26896 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Атмосферика + - uid: 27533 components: - type: Transform - pos: -12.270467,43.241665 + rot: -1.5707963267948966 rad + pos: 15.5,7.5 parent: 2 -- proto: SprayBottleWater - entities: - - uid: 26897 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Хранилище плат + - uid: 27534 components: - type: Transform - pos: -9.377184,34.545 + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 parent: 2 - - uid: 26898 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Раздевалка + - uid: 27535 components: - type: Transform - pos: -9.098298,34.532166 + rot: 1.5707963267948966 rad + pos: -37.5,-42.5 parent: 2 - - uid: 26899 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Генератор Теслы + - uid: 27536 components: - type: Transform - pos: -99.59231,22.679768 + rot: 3.141592653589793 rad + pos: -5.5,-52.5 parent: 2 - - uid: 26900 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Гардероб Атмос-техников + - uid: 27537 components: - type: Transform - pos: -99.27981,22.679768 + pos: -25.5,-51.5 parent: 2 -- proto: SprayPainter + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Склад оборудования +- proto: SurveillanceCameraGeneral entities: - - uid: 26901 + - uid: 27538 components: - type: Transform - pos: 27.569883,-8.005627 + pos: 13.5,24.5 parent: 2 -- proto: StairDark - entities: - - uid: 26902 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Выход у Гидропоники + - uid: 27539 components: - type: Transform - pos: -21.5,17.5 + rot: 3.141592653589793 rad + pos: -25.5,-1.5 parent: 2 - - uid: 26903 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход в Бриг + - uid: 27540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,16.5 + pos: -14.5,-17.5 parent: 2 - - uid: 26904 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Стойка ГП + - uid: 27541 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,-7.5 + pos: 32.5,-11.5 parent: 2 - - uid: 26905 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Дормы 1 + - uid: 27542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-8.5 + pos: 36.5,-4.5 parent: 2 - - uid: 26906 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Дормы 3 + - uid: 27543 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,14.5 + pos: 42.5,10.5 parent: 2 - - uid: 26907 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Дормы 2 + - uid: 27544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,15.5 + pos: 76.5,-25.5 parent: 2 - - uid: 26908 + - uid: 27545 components: - type: Transform - pos: -22.5,17.5 + rot: -1.5707963267948966 rad + pos: 69.5,-30.5 parent: 2 - - uid: 42818 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Мусоросброс + - uid: 27546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,72.5 - parent: 40203 - - uid: 42819 + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: ЕВА + - uid: 27547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,71.5 - parent: 40203 - - uid: 42820 + rot: 1.5707963267948966 rad + pos: 5.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Каток + - uid: 27548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,69.5 - parent: 40203 - - uid: 42821 + rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Каток + - uid: 27549 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,68.5 - parent: 40203 - - uid: 42822 + pos: -17.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Общий коридор: Мостик левое' + - uid: 27550 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,70.5 - parent: 40203 - - uid: 42823 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,72.5 - parent: 40203 - - uid: 42824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,70.5 - parent: 40203 - - uid: 42825 + pos: -16.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Общий коридор: Мостик левое' + - uid: 27551 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,69.5 - parent: 40203 - - uid: 42826 + pos: 21.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Общий коридор: Мостик правое' + - uid: 27552 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,68.5 - parent: 40203 - - uid: 42827 + pos: 94.5,-23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Отбытие + - uid: 27553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,71.5 - parent: 40203 - - uid: 45899 + pos: 18.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Лавка + - uid: 27554 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 44970 - - uid: 45900 + pos: 16.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Стена творчества + - uid: 27555 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,0.5 - parent: 44970 - - uid: 45901 + pos: 75.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Прибытие 1' + - uid: 27556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,1.5 - parent: 44970 - - uid: 45902 + rot: 1.5707963267948966 rad + pos: -0.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Медблок' + - uid: 27557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 44970 - - uid: 45903 + rot: -1.5707963267948966 rad + pos: 30.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Столовая' + - uid: 27558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,0.5 - parent: 44970 - - uid: 45904 + pos: 27.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Северный тамбур' + - uid: 27559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 - parent: 44970 -- proto: Stairs - entities: - - uid: 26909 + rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Южный тамбур' + - uid: 27560 components: - type: Transform - pos: 28.5,26.5 + rot: 1.5707963267948966 rad + pos: 102.5,-30.5 parent: 2 - - uid: 26910 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Отбытие' + - uid: 27561 components: - type: Transform - pos: 30.5,26.5 + pos: 7.5,-36.5 parent: 2 - - uid: 26911 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Криокапсулы + - uid: 27562 components: - type: Transform - pos: 8.5,1.5 + rot: -1.5707963267948966 rad + pos: -10.5,-19.5 parent: 2 - - uid: 26912 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Общий коридор: Террариум' + - uid: 27563 components: - type: Transform - pos: 7.5,1.5 + rot: 1.5707963267948966 rad + pos: -9.5,22.5 parent: 2 - - uid: 26913 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Северо-западный тамбур' + - uid: 27564 components: - type: Transform - pos: -2.5,1.5 + rot: 3.141592653589793 rad + pos: 57.5,-22.5 parent: 2 - - uid: 26914 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Общий коридор: Прибытие, Снабжение' + - uid: 27565 components: - type: Transform - pos: -3.5,1.5 + pos: 40.5,-23.5 parent: 2 - - uid: 26915 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Южная' + - uid: 27566 components: - type: Transform - pos: 29.5,26.5 + rot: 1.5707963267948966 rad + pos: 43.5,-8.5 parent: 2 - - uid: 26916 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: 'Улица: Храм' + - uid: 27567 components: - type: Transform - pos: 27.5,26.5 + rot: 1.5707963267948966 rad + pos: 28.5,10.5 parent: 2 - - uid: 26917 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Игровой зал + - uid: 27568 components: - type: Transform - pos: 26.5,26.5 + rot: 1.5707963267948966 rad + pos: 27.5,-4.5 parent: 2 - - uid: 42828 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Склад инструментов + - uid: 27569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,75.5 - parent: 40203 - - uid: 42829 + pos: 0.5,-17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Вход в Хранилище + - uid: 27570 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,74.5 - parent: 40203 - - uid: 42830 + pos: -16.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Выход в шахты +- proto: SurveillanceCameraMedical + entities: + - uid: 27571 components: - type: Transform - pos: 50.5,75.5 - parent: 40203 - - uid: 42831 + pos: -5.5,61.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Коридор медицинский 2 + - uid: 27572 components: - type: Transform - pos: 51.5,75.5 - parent: 40203 - - uid: 42832 + rot: 1.5707963267948966 rad + pos: -0.5,50.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Коридор медицинский + - uid: 27573 components: - type: Transform - pos: 52.5,75.5 - parent: 40203 - - uid: 42833 + pos: -21.5,54.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Хранилище медикаментов + - uid: 27574 components: - type: Transform - pos: 68.5,68.5 - parent: 40203 - - uid: 42834 + rot: 1.5707963267948966 rad + pos: -20.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Операционая + - uid: 27575 components: - type: Transform - pos: 69.5,68.5 - parent: 40203 - - uid: 42835 + rot: -1.5707963267948966 rad + pos: -13.5,68.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Психдиспансер 1 + - uid: 27576 components: - type: Transform - pos: 69.5,67.5 - parent: 40203 - - uid: 42836 + rot: 3.141592653589793 rad + pos: -9.5,74.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Психдиспансер 2 + - uid: 27577 components: - type: Transform - pos: 68.5,67.5 - parent: 40203 -- proto: StairStage - entities: - - uid: 26918 + rot: -1.5707963267948966 rad + pos: -10.5,44.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Химическая лаборатория + - uid: 27578 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,4.5 + pos: -18.5,52.5 parent: 2 - - uid: 26919 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Палаты + - uid: 27579 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-2.5 + pos: -29.5,51.5 parent: 2 -- proto: StairStageDark - entities: - - uid: 42837 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Клонерка + - uid: 27580 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,35.5 - parent: 40203 - - uid: 42838 + pos: -22.5,49.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Криогенетика + - uid: 27581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,34.5 - parent: 40203 - - uid: 42839 + pos: 3.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Комната отдыха + - uid: 27582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,36.5 - parent: 40203 - - uid: 42840 + pos: 1.5,36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Стойка медицинский + - uid: 27583 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,35.5 - parent: 40203 - - uid: 42841 + pos: -7.5,52.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: КПП Мед + - uid: 27584 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,36.5 - parent: 40203 - - uid: 42842 + pos: -12.5,42.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Морг + - uid: 27585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,34.5 - parent: 40203 -- proto: StairStageWhite - entities: - - uid: 26920 + rot: 3.141592653589793 rad + pos: -5.5,70.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Офис Психдиспансера + - uid: 27586 components: - - type: MetaData - name: стойка для обуви - type: Transform - pos: 5.5,40.5 + pos: 3.5,60.5 parent: 2 -- proto: StairStageWood + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Офис Психолога +- proto: SurveillanceCameraMonitorCircuitboard entities: - - uid: 26921 + - uid: 27587 components: - type: Transform - pos: -98.5,43.5 + pos: 14.384924,12.720999 parent: 2 - - uid: 26922 +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 27588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,33.5 + pos: 6.5,15.5 parent: 2 - - uid: 26923 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 27589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,31.5 + pos: 9.5,10.5 parent: 2 - - uid: 26924 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 27590 components: - - type: MetaData - desc: Удобная деревянная стойка для вашей обуви. - name: обувная стойка - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 + pos: 8.5,14.5 parent: 2 - - uid: 26925 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 27591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,21.5 + pos: 8.5,10.5 parent: 2 - - uid: 26926 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 27592 components: - - type: MetaData - name: стойка для обуви - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,22.5 + pos: 7.5,11.5 parent: 2 - - uid: 26927 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 27593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-19.5 + pos: 9.5,12.5 parent: 2 - - uid: 26928 +- proto: SurveillanceCameraRouterService + entities: + - uid: 27594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-19.5 + pos: 6.5,12.5 parent: 2 -- proto: StairWood +- proto: SurveillanceCameraRouterSupply entities: - - uid: 26929 + - uid: 27595 components: - type: Transform - pos: 95.5,-19.5 + pos: 9.5,13.5 parent: 2 - - uid: 26930 +- proto: SurveillanceCameraScience + entities: + - uid: 27596 components: - type: Transform - pos: 94.5,-19.5 + rot: 1.5707963267948966 rad + pos: 39.5,-52.5 parent: 2 - - uid: 26931 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Сервер РНД + - uid: 27597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-23.5 + pos: 20.5,-35.5 parent: 2 - - uid: 26932 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Роботехника + - uid: 27598 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,8.5 + pos: 24.5,-27.5 parent: 2 - - uid: 26933 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: КПП НИО + - uid: 27599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,18.5 + rot: 3.141592653589793 rad + pos: 49.5,-52.5 parent: 2 - - uid: 26934 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Ксеноархеология + - uid: 27600 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,17.5 + pos: 47.5,-50.5 parent: 2 - - uid: 26935 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Токсиная + - uid: 27601 components: - type: Transform - pos: 27.5,20.5 + pos: 16.5,-41.5 parent: 2 - - uid: 26936 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Аномалистика + - uid: 27602 components: - type: Transform - pos: 26.5,20.5 + rot: 3.141592653589793 rad + pos: 27.5,-45.5 parent: 2 - - uid: 26937 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Внутрений двор + - uid: 27603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,25.5 + rot: 3.141592653589793 rad + pos: 41.5,-47.5 parent: 2 - - uid: 26938 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Зал разработок + - uid: 27604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,24.5 + rot: -1.5707963267948966 rad + pos: 35.5,-35.5 parent: 2 - - uid: 26939 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Камера ксенобиологии + - uid: 27605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,7.5 + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 parent: 2 - - uid: 26940 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Стойка + - uid: 27606 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-23.5 + rot: 1.5707963267948966 rad + pos: 28.5,-32.5 parent: 2 - - uid: 26941 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Коридор НИО + - uid: 27607 components: - type: Transform - pos: 5.5,-19.5 + rot: -1.5707963267948966 rad + pos: 16.5,-47.5 parent: 2 - - uid: 26942 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Раздевалка + - uid: 27608 components: - type: Transform - pos: 4.5,-19.5 + pos: 21.5,-54.5 parent: 2 - - uid: 26943 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Комната отдыха +- proto: SurveillanceCameraSecurity + entities: + - uid: 27609 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-18.5 + pos: -42.5,-15.5 parent: 2 - - uid: 26944 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната Смотрителя + - uid: 27610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-17.5 + pos: -23.5,10.5 parent: 2 - - uid: 26945 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Склад улик + - uid: 27611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,25.5 + pos: -47.5,-4.5 parent: 2 - - uid: 26946 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор брига 3 + - uid: 27612 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,24.5 + pos: -36.5,6.5 parent: 2 -- proto: StasisBed - entities: - - uid: 26947 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор брига 2 + - uid: 27613 components: - type: Transform - pos: 21.5,60.5 + rot: 1.5707963267948966 rad + pos: -32.5,-7.5 parent: 2 - - uid: 26948 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Коридор брига 1 + - uid: 27614 components: - type: Transform - pos: -52.5,12.5 + rot: -1.5707963267948966 rad + pos: -22.5,6.5 parent: 2 - - uid: 26949 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Детектив + - uid: 27615 components: - type: Transform - pos: -16.5,55.5 + rot: 1.5707963267948966 rad + pos: -27.5,0.5 parent: 2 - - uid: 26950 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Стойка брига + - uid: 27616 components: - type: Transform - pos: -15.5,55.5 + rot: 3.141592653589793 rad + pos: -30.5,8.5 parent: 2 - - uid: 26951 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Допросная + - uid: 27617 components: - type: Transform - pos: -14.5,55.5 + rot: 1.5707963267948966 rad + pos: -40.5,15.5 parent: 2 - - uid: 26952 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Первая камера + - uid: 27618 components: - type: Transform - pos: -105.5,1.5 + rot: 1.5707963267948966 rad + pos: -44.5,15.5 parent: 2 -- proto: StationAiUploadComputer - entities: - - uid: 26953 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Вторая камера + - uid: 27619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,14.5 + rot: 3.141592653589793 rad + pos: -54.5,13.5 parent: 2 -- proto: StationMap - entities: - - uid: 26954 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Мед отсек брига + - uid: 27620 components: - type: Transform - pos: 59.5,-21.5 + rot: 1.5707963267948966 rad + pos: -46.5,3.5 parent: 2 - - uid: 26955 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Столовая + - uid: 27621 components: - type: Transform - pos: 18.5,-14.5 + rot: 3.141592653589793 rad + pos: -42.5,-6.5 parent: 2 - - uid: 26956 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Оружейная + - uid: 27622 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-3.5 + pos: -40.5,-15.5 parent: 2 - - uid: 26957 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Офис Смотрителя + - uid: 27623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,23.5 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 - - uid: 26958 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Стрельбище + - uid: 27624 components: - type: Transform - pos: 20.5,15.5 + pos: -26.5,-21.5 parent: 2 - - uid: 26959 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната для брифинга + - uid: 27625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-29.5 + rot: 1.5707963267948966 rad + pos: -21.5,17.5 parent: 2 - - uid: 26960 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната казни + - uid: 27626 components: - type: Transform - pos: -21.5,-12.5 + pos: -30.5,14.5 parent: 2 - - uid: 26961 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Вход перма + - uid: 27627 components: - type: Transform - pos: 1.5,50.5 + rot: 1.5707963267948966 rad + pos: -119.5,11.5 parent: 2 - - uid: 26962 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Двор' + - uid: 27628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 + rot: 1.5707963267948966 rad + pos: -112.5,4.5 parent: 2 - - uid: 26963 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Столовая' + - uid: 27629 components: - type: Transform - pos: 64.5,-35.5 + pos: -103.5,1.5 parent: 2 -- proto: StationMapBroken - entities: - - uid: 45905 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 44970 -- proto: StatueVenusBlue - entities: - - uid: 26964 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Мед отсек' + - uid: 27630 components: - type: Transform - pos: 6.5,-14.5 + pos: -97.5,1.5 parent: 2 - - uid: 26965 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Комната отдыха СБ' + - uid: 27631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,52.5 + pos: -99.5,7.5 parent: 2 -- proto: StatueVenusRed - entities: - - uid: 26966 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Оружейная' + - uid: 27632 components: - type: Transform - pos: -1.5,-14.5 + rot: 3.141592653589793 rad + pos: -102.5,-7.5 parent: 2 -- proto: SteelBench - entities: - - uid: 26967 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Прибытие' + - uid: 27633 components: - type: Transform - pos: -3.5,52.5 + pos: -104.5,6.5 parent: 2 - - uid: 26968 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Зона отдыха' + - uid: 27634 components: - type: Transform - pos: -4.5,52.5 + rot: 1.5707963267948966 rad + pos: -99.5,17.5 parent: 2 - - uid: 26969 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Гидропоника' + - uid: 27635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-24.5 + rot: -1.5707963267948966 rad + pos: -117.5,15.5 parent: 2 - - uid: 26970 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Камера 1' + - uid: 27636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-5.5 + rot: -1.5707963267948966 rad + pos: -117.5,19.5 parent: 2 - - uid: 26971 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Камера 2' + - uid: 27637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-4.5 + rot: -1.5707963267948966 rad + pos: -117.5,23.5 parent: 2 - - uid: 26972 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Камера 3' + - uid: 27638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-41.5 + rot: -1.5707963267948966 rad + pos: -110.5,18.5 parent: 2 - - uid: 26973 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Пост СБ' + - uid: 27639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-43.5 + rot: 1.5707963267948966 rad + pos: -17.5,22.5 parent: 2 - - uid: 26974 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Офис АВД + - uid: 27640 components: - type: Transform - pos: 25.5,-14.5 + rot: 1.5707963267948966 rad + pos: 99.5,-11.5 parent: 2 - - uid: 26975 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: КПП Отбытие + - uid: 27641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,19.5 + rot: 1.5707963267948966 rad + pos: -48.5,15.5 parent: 2 - - uid: 26976 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Третья камера + - uid: 27642 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,18.5 + pos: -28.5,10.5 parent: 2 - - uid: 26977 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Зимняя одежда + - uid: 27643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-1.5 + pos: -28.5,-11.5 parent: 2 - - uid: 26978 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Раздевалка + - uid: 27644 components: - type: Transform - pos: 24.5,-14.5 + pos: -101.5,22.5 parent: 2 - - uid: 26979 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Уборочный инвентарь' + - uid: 27645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-1.5 + pos: -132.5,8.5 parent: 2 - - uid: 26980 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: 'Перма: Генераторная' +- proto: SurveillanceCameraService + entities: + - uid: 27646 components: - type: Transform - pos: 17.5,-43.5 + pos: 22.5,24.5 parent: 2 - - uid: 26981 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Столовая 2 + - uid: 27647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-47.5 + rot: -1.5707963267948966 rad + pos: 15.5,40.5 parent: 2 - - uid: 26982 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Ботаническая + - uid: 27648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-53.5 + rot: -1.5707963267948966 rad + pos: 24.5,38.5 parent: 2 - - uid: 26983 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Поварская + - uid: 27649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-42.5 + pos: 7.5,18.5 parent: 2 - - uid: 26984 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Комната Библиотекаря + - uid: 27650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 + rot: -1.5707963267948966 rad + pos: 60.5,10.5 parent: 2 - - uid: 26985 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Комната Мима + - uid: 27651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-24.5 + rot: 3.141592653589793 rad + pos: 52.5,12.5 parent: 2 - - uid: 26986 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Комната Клоуна + - uid: 27652 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-22.5 - parent: 2 - - uid: 26987 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-43.5 + pos: 58.5,12.5 parent: 2 - - uid: 26988 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Комната Музыканта + - uid: 27653 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-7.5 - parent: 2 - - uid: 26989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-7.5 + pos: 20.5,36.5 parent: 2 - - uid: 26990 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Гидропоника-Кухня + - uid: 27654 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-8.5 + pos: 48.5,20.5 parent: 2 - - uid: 26991 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Барменская + - uid: 27655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-9.5 + pos: 23.5,17.5 parent: 2 - - uid: 26992 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Офис Зоотехника + - uid: 27656 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-9.5 + pos: 7.5,36.5 parent: 2 - - uid: 26993 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Гидропоника + - uid: 27657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,50.5 + rot: 1.5707963267948966 rad + pos: 32.5,30.5 parent: 2 - - uid: 26994 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Кухня + - uid: 27658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,52.5 + rot: 3.141592653589793 rad + pos: 40.5,22.5 parent: 2 - - uid: 26995 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Бар + - uid: 27659 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,51.5 + pos: 26.5,20.5 parent: 2 - - uid: 26996 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Столовая + - uid: 27660 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-43.5 + pos: 49.5,4.5 parent: 2 - - uid: 26997 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Сцена Театра + - uid: 27661 components: - type: Transform - pos: -49.5,13.5 + rot: 1.5707963267948966 rad + pos: 57.5,2.5 parent: 2 - - uid: 26998 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Закулисье театра + - uid: 27662 components: - type: Transform - pos: -45.5,13.5 + rot: 1.5707963267948966 rad + pos: 5.5,30.5 parent: 2 - - uid: 26999 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Каморка уборщиков + - uid: 27663 components: - type: Transform - pos: -41.5,13.5 + rot: 3.141592653589793 rad + pos: 7.5,41.5 parent: 2 - - uid: 27000 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Гидропоника + - uid: 27664 components: - type: Transform - pos: -41.5,15.5 + pos: 14.5,31.5 parent: 2 - - uid: 27001 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Гидропоника + - uid: 27665 components: - type: Transform - pos: -45.5,15.5 + pos: 31.5,36.5 parent: 2 - - uid: 27002 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Холодильник + - uid: 27666 components: - type: Transform - pos: -49.5,15.5 + pos: 13.5,18.5 parent: 2 - - uid: 27003 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Репортерская + - uid: 27667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-46.5 + pos: -8.5,34.5 parent: 2 - - uid: 27004 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Барбершоп + - uid: 27668 components: - type: Transform - pos: 71.5,-7.5 + rot: 3.141592653589793 rad + pos: 57.5,7.5 parent: 2 - - uid: 27005 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Коридор театра + - uid: 27669 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-36.5 + pos: 62.5,2.5 parent: 2 - - uid: 27006 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Гримёрка театра + - uid: 27670 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-35.5 - parent: 2 - - uid: 27007 - components: - - type: Transform - pos: -7.5,48.5 + pos: 51.5,-12.5 parent: 2 - - uid: 27008 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: 'Храм: Общий зал' + - uid: 27671 components: - type: Transform - pos: -6.5,48.5 + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 parent: 2 - - uid: 27009 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: 'Храм: Комната священника' + - uid: 27672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-8.5 + pos: -2.5,18.5 parent: 2 - - uid: 27010 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Библиотека +- proto: SurveillanceCameraSupply + entities: + - uid: 27673 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,6.5 + pos: 92.5,-40.5 parent: 2 - - uid: 27011 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Утилизаторские врата + - uid: 27674 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,7.5 + pos: 66.5,-53.5 parent: 2 - - uid: 27012 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Гермозатворы + - uid: 27675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-8.5 + rot: -1.5707963267948966 rad + pos: 65.5,-26.5 parent: 2 - - uid: 27013 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: КПП Снабжение + - uid: 27676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 96.5,-5.5 + pos: 84.5,-46.5 parent: 2 - - uid: 27014 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Коморка утилизаторов + - uid: 27677 components: - type: Transform rot: 3.141592653589793 rad - pos: 77.5,-26.5 + pos: 75.5,-44.5 parent: 2 - - uid: 27015 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Утилизаторская + - uid: 27678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-8.5 + pos: 60.5,-44.5 parent: 2 - - uid: 27016 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Зал Отгрузки + - uid: 27679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 66.5,-53.5 + pos: 67.5,-31.5 parent: 2 - - uid: 42843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,54.5 - parent: 40203 - - uid: 42844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,54.5 - parent: 40203 - - uid: 42845 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Стойка снабжения + - uid: 27680 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,54.5 - parent: 40203 -- proto: SteelOre1 + pos: 56.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Зона отгрузки +- proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 42846 - components: - - type: Transform - rot: 0.20943951023931956 rad - pos: 29.32,72.758575 - parent: 40203 - - uid: 42847 - components: - - type: Transform - rot: -0.5934119456780721 rad - pos: 28.570065,71.3367 - parent: 40203 - - uid: 42848 + - uid: 27681 components: - type: Transform - rot: -1.413716694115407 rad - pos: 31.17944,71.539825 - parent: 40203 -- proto: StimkitFilled + pos: 7.5,14.5 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 27017 + - uid: 27682 components: - type: Transform - pos: -4.287232,58.293137 + pos: 10.5,22.5 parent: 2 -- proto: Stool +- proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 27018 + - uid: 27683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.66885,24.128778 + pos: 13.5,22.5 parent: 2 - - uid: 27019 + - uid: 27684 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.499241,28.837984 + rot: -1.5707963267948966 rad + pos: 12.5,17.5 parent: 2 - - uid: 27020 +- proto: SurvivalKnife + entities: + - uid: 27685 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.514866,28.88486 + pos: -38.57441,36.52522 parent: 2 - - uid: 27021 + - uid: 43241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.49924,28.82236 - parent: 2 - - uid: 27022 + rot: -1.5707963267948966 rad + pos: 61.042816,62.238213 + parent: 40599 +- proto: SyndicateBusinessCard + entities: + - uid: 27686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.43674,28.94736 + pos: -57.922,52.82637 parent: 2 -- proto: StoolBar + - type: Paper + content: >- + [color=#0A0A0A] ███[color=#B50F1D]█[/color]██████[color=#B50F1D]█[/color]███[/color] + + [color=#0A0A0A] █[color=#B50F1D]███[/color]██[color=#B50F1D]███████[/color]█[/color] [head=3]Бланк документа[/head] + + [color=#0A0A0A] █[color=#B50F1D]████[/color]████[color=#B50F1D]████[/color]█[/color] [color=#B50F1D][head=3]Syndicate[/head][/color] + + [color=#0A0A0A] █[color=#B50F1D]███████[/color]██[color=#B50F1D]███[/color]█[/color] [bold]Station XX-000 SIN[/bold] + + [color=#0A0A0A] ███[color=#B50F1D]█[/color]██████[color=#B50F1D]█[/color]███[/color] + + [color=#0A0A0A] + + ========================================== + ОТЧЁТ О ЛИКВИДАЦИИ + ========================================== + + Позывной агента: Мусор + + + Я, Мусор, успешно ликвидировал цель Синдиката. + + Отчёт: + + Цель укрывалась южнее перевалочного пункта, в старом деревянном доме возле плазменого озера. + + Заметка для "падальщиков": В доме есть нычка за книжными шкафами, там находяться хорошая одежда синдиката. И ПОЖАЛУЙТА, НЕ ОТКРЫВАЙТЕ ШКАФ НЕ ПРИ КАКОМ СЛУЧАЕ. + + ========================================== + [italic]Место для печатей[/italic] +- proto: SyndicateJawsOfLife entities: - - uid: 27023 + - uid: 43242 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,11.5 - parent: 2 - - uid: 27024 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,21.5 - parent: 2 - - uid: 27025 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,19.5 - parent: 2 - - uid: 27026 + pos: 62.819294,78.487686 + parent: 40599 +- proto: SyndicatePersonalAI + entities: + - uid: 27687 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,20.5 + pos: 28.506802,53.201153 parent: 2 - - uid: 27027 +- proto: SyndieFlag + entities: + - uid: 27688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,18.5 + pos: -78.5,12.5 parent: 2 - - uid: 27028 + - uid: 47322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,22.5 - parent: 2 - - uid: 27029 + pos: -1.521351,-1.5897217 + parent: 47245 +- proto: Syringe + entities: + - uid: 27689 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,29.5 + pos: -16.497894,51.551525 parent: 2 - - uid: 27030 + - uid: 27690 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,29.5 + pos: 22.526949,22.893698 parent: 2 - - uid: 27031 + - uid: 27691 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,29.5 + pos: -3.6558876,70.13093 parent: 2 - - uid: 27032 + - uid: 27692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,29.5 + rot: -1.5707963267948966 rad + pos: 81.444214,5.525534 parent: 2 - - uid: 27033 + - uid: 27693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,29.5 + rot: -1.5707963267948966 rad + pos: 102.46256,-43.119713 parent: 2 - - uid: 27034 + - uid: 43243 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 2 - - uid: 27035 + pos: 31.046791,32.494987 + parent: 40599 +- proto: SyringeDermaline + entities: + - uid: 27694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,10.5 + pos: 3.574373,36.488266 parent: 2 - - uid: 27036 + - uid: 43244 components: + - type: MetaData + name: шприц - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,9.5 - parent: 2 - - uid: 27037 + pos: 60.426476,60.502113 + parent: 40599 +- proto: SyringeEphedrine + entities: + - uid: 43245 components: + - type: MetaData + name: шприц - type: Transform rot: 3.141592653589793 rad - pos: -109.5,7.5 - parent: 2 - - uid: 27038 + pos: 58.832726,59.70524 + parent: 40599 +- proto: SyringeEthylredoxrazine + entities: + - uid: 17888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,7.5 - parent: 2 - - uid: 27039 + parent: 17881 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SyringePhalanximine + entities: + - uid: 27695 components: - type: Transform - pos: -38.5,24.5 + pos: 13.689747,37.560402 parent: 2 - - uid: 27040 +- proto: SyringeSigynate + entities: + - uid: 27696 components: - type: Transform - pos: -36.5,24.5 + pos: -56.365078,11.482246 parent: 2 - - uid: 27041 +- proto: SyringeTranexamicAcid + entities: + - uid: 27697 components: - type: Transform - pos: -35.5,24.5 + pos: 3.293123,36.69139 parent: 2 - - uid: 27042 +- proto: Table + entities: + - uid: 27698 components: - type: Transform - pos: -37.5,24.5 + rot: -1.5707963267948966 rad + pos: 58.5,-17.5 parent: 2 -- proto: StorageCanister - entities: - - uid: 27043 + - uid: 27699 components: - type: Transform - pos: 48.5,-49.5 + rot: -1.5707963267948966 rad + pos: 57.5,-17.5 parent: 2 - - uid: 27044 + - uid: 27700 components: - type: Transform - pos: -2.5,-68.5 + rot: -1.5707963267948966 rad + pos: -108.5,43.5 parent: 2 - - type: GasCanister - releaseValve: True - releasePressure: 100 - - uid: 27045 + - uid: 27701 components: - type: Transform - pos: -20.5,52.5 + pos: 61.5,-32.5 parent: 2 - - uid: 27046 + - uid: 27702 components: - type: Transform - pos: -6.5,-56.5 + pos: 18.5,29.5 parent: 2 - - uid: 27047 + - uid: 27703 components: - type: Transform - pos: -6.5,-55.5 + rot: 1.5707963267948966 rad + pos: 63.5,-32.5 parent: 2 - - uid: 27048 + - uid: 27704 components: - type: Transform - pos: -23.5,-50.5 + rot: 1.5707963267948966 rad + pos: 61.5,-35.5 parent: 2 - - uid: 27049 + - uid: 27705 components: - type: Transform - pos: -23.5,-51.5 + rot: 1.5707963267948966 rad + pos: 61.5,-34.5 parent: 2 - - uid: 42849 + - uid: 27706 components: - type: Transform - pos: 66.5,61.5 - parent: 40203 -- proto: StrangePill - entities: - - uid: 27050 + rot: 1.5707963267948966 rad + pos: 62.5,-32.5 + parent: 2 + - uid: 27707 components: - type: Transform - pos: -87.73763,55.747917 + pos: -12.5,51.5 parent: 2 - - uid: 27051 + - uid: 27708 components: - type: Transform - pos: 59.629734,32.771423 + pos: -12.5,52.5 parent: 2 -- proto: Stunbaton - entities: - - uid: 27052 + - uid: 27709 components: - type: Transform - pos: -28.769108,-8.513697 + pos: -12.5,53.5 parent: 2 - - uid: 27053 + - uid: 27710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.554844,-15.329269 + rot: 3.141592653589793 rad + pos: -59.5,-5.5 parent: 2 -- proto: SubstationBasic - entities: - - uid: 27054 + - uid: 27711 components: - - type: MetaData - name: подстанция "ИИ, Серверная" - type: Transform - pos: 1.5,15.5 + rot: 3.141592653589793 rad + pos: 97.5,-3.5 parent: 2 - - uid: 27055 + - uid: 27712 components: - - type: MetaData - name: подстанция "эРуНДэ" - type: Transform - pos: 10.5,-46.5 + pos: -114.5,12.5 parent: 2 - - uid: 27056 + - uid: 27713 components: - - type: MetaData - name: подстанция "Снабжение" - type: Transform - pos: 52.5,-39.5 + pos: -115.5,12.5 parent: 2 - - uid: 27057 + - uid: 27714 components: - - type: MetaData - name: подстанция "Сцена" - type: Transform - pos: 59.5,-4.5 + pos: 70.5,-44.5 parent: 2 - - uid: 27058 + - uid: 27715 components: - - type: MetaData - name: подстанция "Сервис" - type: Transform - pos: 44.5,27.5 + pos: 70.5,-43.5 parent: 2 - - uid: 27059 + - uid: 27716 components: - - type: MetaData - name: подстанция "Хранилище" - type: Transform - pos: 4.5,-11.5 + pos: 70.5,-42.5 parent: 2 - - uid: 27060 + - uid: 27717 components: - - type: MetaData - name: подстанция "Мостик, офис ГП" - type: Transform - pos: -11.5,-6.5 + pos: -12.5,-14.5 parent: 2 - - uid: 27061 + - uid: 27718 components: - - type: MetaData - name: подстанция "Мостик, Капитан" - type: Transform - pos: 14.5,-13.5 + pos: -32.5,12.5 parent: 2 - - uid: 27062 + - uid: 27719 components: - - type: MetaData - name: подстанция "Двигатель Антиматерии" - type: Transform - pos: -26.5,-41.5 + rot: 1.5707963267948966 rad + pos: -22.5,42.5 parent: 2 - - uid: 27063 + - uid: 27720 components: - - type: MetaData - name: подстанция "ТЭГ" - type: Transform - pos: -12.5,-48.5 + pos: -26.5,54.5 parent: 2 - - uid: 27064 + - uid: 27721 components: - - type: MetaData - name: подстанция "Атмосферный" - type: Transform - pos: -8.5,-52.5 + pos: 18.5,7.5 parent: 2 - - uid: 27065 + - uid: 27722 components: - - type: MetaData - name: подстанция "Инженерный, массив СМЭС" - type: Transform - pos: -13.5,-36.5 + pos: -33.5,12.5 parent: 2 - - uid: 27066 + - uid: 27723 components: - - type: MetaData - name: подстанция "Бриг" - type: Transform - pos: -19.5,-4.5 + rot: 1.5707963267948966 rad + pos: -22.5,45.5 parent: 2 - - uid: 27067 + - uid: 27724 components: - - type: MetaData - name: подстанция "Прибытие - Отбытие" - type: Transform - pos: 75.5,-27.5 + rot: 3.141592653589793 rad + pos: -43.5,10.5 parent: 2 - - uid: 27068 + - uid: 27725 components: - - type: MetaData - name: подстанция "Коридор - Снабжение, прибытие" - type: Transform - pos: 54.5,-27.5 + pos: 18.5,5.5 parent: 2 - - uid: 27069 + - uid: 27726 components: - - type: MetaData - name: подстанция "Медицинский" - type: Transform - pos: -17.5,57.5 + pos: 18.5,6.5 parent: 2 - - uid: 27070 + - uid: 27727 components: - - type: MetaData - name: подстанция "Каторга" - type: Transform - pos: -134.5,11.5 + rot: 1.5707963267948966 rad + pos: -22.5,44.5 parent: 2 - - uid: 42850 + - uid: 27728 components: - type: Transform - pos: 68.5,58.5 - parent: 40203 - - uid: 45906 + rot: 1.5707963267948966 rad + pos: -22.5,43.5 + parent: 2 + - uid: 27729 components: - type: Transform - pos: 10.5,9.5 - parent: 44970 -- proto: SubstationBasicEmpty - entities: - - uid: 27071 + rot: 3.141592653589793 rad + pos: -26.5,51.5 + parent: 2 + - uid: 27730 components: - type: Transform - pos: 18.5,53.5 + rot: 3.141592653589793 rad + pos: -26.5,52.5 parent: 2 - - uid: 27072 + - uid: 27731 components: - - type: MetaData - name: подстанция "Солнечные панели" - type: Transform - pos: -56.5,63.5 + pos: -50.5,5.5 parent: 2 -- proto: SuitStorageAtmos - entities: - - uid: 27073 + - uid: 27732 components: - type: Transform - pos: -6.5,-52.5 + rot: -1.5707963267948966 rad + pos: 42.5,-45.5 parent: 2 - - uid: 27074 + - uid: 27733 components: - type: Transform - pos: -5.5,-52.5 + pos: 40.5,-43.5 parent: 2 - - uid: 27075 + - uid: 27734 components: - type: Transform - pos: -7.5,-52.5 + pos: 52.5,-53.5 parent: 2 -- proto: SuitStorageBase - entities: - - uid: 12 + - uid: 27735 components: - type: Transform - pos: -54.5,17.5 + pos: 52.5,-52.5 parent: 2 - - type: AccessReader - access: - - - Medical - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15 - - 13 - - 16 - - uid: 41219 + - uid: 27736 components: - type: Transform - pos: 41.5,72.5 - parent: 40203 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 41222 - - 41220 - - 41221 - - uid: 42851 + pos: 22.5,31.5 + parent: 2 + - uid: 27737 components: - type: Transform - pos: 41.5,74.5 - parent: 40203 - - type: Lock - locked: False - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.25,-0.48 - - 0.25,-0.48 - - 0.25,0.48 - - -0.25,0.48 - mask: - - Impassable - - TableLayer - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 350 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True -- proto: SuitStorageCaptain - entities: - - uid: 27076 + rot: 3.141592653589793 rad + pos: 23.5,35.5 + parent: 2 + - uid: 27738 components: - type: Transform - pos: 15.5,-9.5 + rot: 3.141592653589793 rad + pos: 19.5,35.5 parent: 2 -- proto: SuitStorageCE - entities: - - uid: 27077 + - uid: 27739 components: - type: Transform - pos: 6.5,-51.5 + pos: 30.5,30.5 parent: 2 -- proto: SuitStorageCMO - entities: - - uid: 14983 + - uid: 27740 components: - type: Transform - pos: -12.5,57.5 + pos: 30.5,-36.5 parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14984 - - 14985 -- proto: SuitStorageEngi - entities: - - uid: 27078 + - uid: 27741 components: - type: Transform - pos: 1.5,-44.5 + pos: -7.5,45.5 parent: 2 - - uid: 27079 + - uid: 27742 components: - type: Transform - pos: 2.5,-44.5 + pos: -8.5,45.5 parent: 2 - - uid: 27080 + - uid: 27743 components: - type: Transform - pos: 3.5,-44.5 + pos: 32.5,-36.5 parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 27081 + - uid: 27744 components: - type: Transform - pos: -12.5,4.5 + pos: 31.5,-36.5 parent: 2 - - uid: 27082 + - uid: 27745 components: - type: Transform - pos: -11.5,5.5 + pos: 28.5,30.5 parent: 2 - - uid: 27083 + - uid: 27746 components: - type: Transform - pos: -12.5,7.5 + pos: 32.5,30.5 parent: 2 - - uid: 27084 + - uid: 27747 components: - type: Transform - pos: -11.5,4.5 + pos: 29.5,30.5 parent: 2 - - uid: 27085 + - uid: 27748 components: - type: Transform - pos: -12.5,5.5 + pos: 31.5,30.5 parent: 2 - - uid: 27086 + - uid: 27749 components: - type: Transform - pos: -11.5,6.5 + pos: 27.5,30.5 parent: 2 - - uid: 27087 + - uid: 27750 components: - type: Transform - pos: -11.5,7.5 + pos: 10.5,30.5 parent: 2 - - uid: 27088 + - uid: 27751 components: - type: Transform - pos: -12.5,6.5 + pos: 12.5,30.5 parent: 2 -- proto: SuitStorageHOS - entities: - - uid: 27089 + - uid: 27752 components: - type: Transform - pos: -42.5,8.5 + rot: -1.5707963267948966 rad + pos: 60.5,12.5 parent: 2 -- proto: SuitStorageRD - entities: - - uid: 27090 + - uid: 27753 components: - type: Transform - pos: 27.5,-51.5 + rot: -1.5707963267948966 rad + pos: 60.5,11.5 parent: 2 -- proto: SuitStorageSalv - entities: - - uid: 27091 + - uid: 27754 components: - type: Transform - pos: 81.5,-46.5 + rot: -1.5707963267948966 rad + pos: 57.5,-5.5 parent: 2 - - uid: 27092 + - uid: 27755 components: - type: Transform - pos: 82.5,-46.5 + pos: 26.5,36.5 parent: 2 - - uid: 27093 + - uid: 27756 components: - type: Transform - pos: 83.5,-46.5 + pos: 26.5,35.5 parent: 2 -- proto: SuitStorageSec - entities: - - uid: 27094 + - uid: 27757 components: - type: Transform - pos: -48.5,-13.5 + pos: 26.5,34.5 parent: 2 - - uid: 27095 + - uid: 27758 components: - type: Transform - pos: -48.5,-11.5 + pos: 33.5,34.5 parent: 2 - - uid: 27096 + - uid: 27759 components: - type: Transform - pos: -48.5,-12.5 + pos: 31.5,34.5 parent: 2 - - uid: 27097 + - uid: 27760 components: - type: Transform - pos: -48.5,-14.5 + pos: 32.5,34.5 parent: 2 - - uid: 27098 + - uid: 27761 components: - type: Transform - pos: -99.5,12.5 + rot: 3.141592653589793 rad + pos: 7.5,40.5 parent: 2 - - uid: 27099 + - uid: 27762 components: - type: Transform - pos: -99.5,11.5 + rot: 3.141592653589793 rad + pos: 7.5,41.5 parent: 2 -- proto: SuitStorageWarden - entities: - - uid: 27100 + - uid: 27763 components: - type: Transform - pos: -44.5,-18.5 + rot: 3.141592653589793 rad + pos: 8.5,41.5 parent: 2 -- proto: SurveillanceCameraCommand - entities: - - uid: 27101 + - uid: 27764 components: - type: Transform - pos: -5.5,-12.5 + rot: 3.141592653589793 rad + pos: 7.5,39.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Офис ГП - - uid: 27102 + - uid: 27765 components: - type: Transform - pos: -11.5,-0.5 + pos: 26.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Левое крыло мостика - - uid: 27103 + - uid: 27766 components: - type: Transform - pos: 16.5,-0.5 + pos: 32.5,33.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Правое крыло мостика - - uid: 27104 + - uid: 27767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,2.5 + pos: 27.5,34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик левая часть - - uid: 27105 + - uid: 27768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 + pos: 30.5,34.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик правая часть - - uid: 27106 + - uid: 27769 components: - type: Transform - pos: 0.5,-11.5 + pos: 11.5,30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Хранилище - - uid: 27107 + - uid: 27770 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-13.5 + pos: 24.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мастерская капитана - - uid: 27108 + - uid: 27771 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-4.5 + pos: 32.5,27.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Офис Капитана - - uid: 27109 + - uid: 27772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,15.5 + rot: -1.5707963267948966 rad + pos: 0.5,37.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ИИ - - uid: 27110 + - uid: 27773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,14.5 + pos: -20.5,8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Маршрутизаторы камер - - uid: 27111 + - uid: 27774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,14.5 + pos: 27.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Телекоммуникационный сервер - - uid: 27112 + - uid: 27775 components: - type: Transform - pos: -6.5,-7.5 + rot: -1.5707963267948966 rad + pos: 27.5,-5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Приёмная ГП -- proto: SurveillanceCameraEngineering - entities: - - uid: 27113 + - uid: 27776 components: - type: Transform - pos: -6.5,-33.5 + rot: -1.5707963267948966 rad + pos: 27.5,-4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: КПП Инж - - uid: 27114 + - uid: 27777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-35.5 + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Стойка Инж - - uid: 27115 + - uid: 27778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-42.5 + pos: 27.5,-7.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Комната для брифинга - - uid: 27116 + - uid: 27779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-51.5 + pos: 4.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Офис СИ - - uid: 27117 + - uid: 27780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 + pos: 3.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Массив СМЭС - - uid: 27118 + - uid: 27781 components: - type: Transform - pos: -19.5,-42.5 + pos: 29.5,-51.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Генераторная - - uid: 27119 + - uid: 27782 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-40.5 + pos: 19.5,-50.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Двигатель Антиматерии - - uid: 27120 + - uid: 27783 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-46.5 + pos: 16.5,-48.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Вход Тесла - - uid: 27121 + - uid: 27784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-52.5 + pos: 39.5,-52.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: ТЭГ - - uid: 27122 + - uid: 27785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-58.5 + pos: 30.5,-43.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Атмосферика - - uid: 27123 + - uid: 27786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-58.5 + pos: 29.5,-37.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Атмосферика - - uid: 27124 + - uid: 27787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,7.5 + pos: 22.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Хранилище плат - - uid: 27125 + - uid: 27788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-42.5 + rot: 3.141592653589793 rad + pos: 44.5,-55.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Раздевалка - - uid: 27126 + - uid: 27789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-42.5 + pos: 23.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Генератор Теслы -- proto: SurveillanceCameraGeneral - entities: - - uid: 27127 + - uid: 27790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,9.5 + pos: 24.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: ЕВА - - uid: 27128 + - uid: 27791 components: - type: Transform - pos: 24.5,-12.5 + pos: 22.5,18.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Склад инструментов - - uid: 27129 + - uid: 27792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-19.5 + pos: 22.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Каток - - uid: 27130 + - uid: 27793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-19.5 + pos: 19.5,-31.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Каток - - uid: 27131 + - uid: 27794 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-7.5 + pos: 43.5,-45.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Общий коридор: Мостик левое' - - uid: 27132 + - uid: 27795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,13.5 + pos: 25.5,-49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Общий коридор: Мостик левое' - - uid: 27133 + - uid: 27796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,13.5 + pos: 26.5,-49.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Общий коридор: Мостик правое' - - uid: 27134 + - uid: 27797 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-22.5 + pos: 23.5,-40.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Общий коридор: Прибытие Снабж' - - uid: 27135 + - uid: 27798 components: - type: Transform - pos: 94.5,-23.5 + pos: -46.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Отбытие - - uid: 27136 + - uid: 27799 components: - type: Transform - pos: 18.5,27.5 + pos: -12.5,44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Аркады - - uid: 27137 + - uid: 27800 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-27.5 + pos: -12.5,43.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Стена творчества - - uid: 27138 + - uid: 27801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,-7.5 + pos: -12.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Прибытие 1' - - uid: 27139 + - uid: 27802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,30.5 + pos: -15.5,44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Медблок' - - uid: 27140 + - uid: 27803 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,12.5 + pos: 16.5,63.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Столовая' - - uid: 27141 + - uid: 27804 components: - type: Transform - pos: 27.5,-1.5 + rot: 3.141592653589793 rad + pos: 1.5,38.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Северный тамбур' - - uid: 27142 + - uid: 27805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-19.5 + pos: -46.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Южный тамбур' - - uid: 27143 + - uid: 27806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 + pos: -46.5,3.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Коридор снабжения' - - uid: 27144 + - uid: 27807 components: - type: Transform - pos: 76.5,-25.5 + pos: -49.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Прибытие 2' - - uid: 27145 + - uid: 27808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-30.5 + pos: -49.5,5.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Отбытие' - - uid: 27146 + - uid: 27809 components: - type: Transform - pos: 7.5,-36.5 + pos: 10.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Криокапсулы - - uid: 27147 + - uid: 27810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-19.5 + pos: 16.5,50.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Общий коридор: Террариум' - - uid: 27148 + - uid: 27811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,22.5 + pos: -40.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: 'Улица: Северо-западный тамбур' -- proto: SurveillanceCameraMedical - entities: - - uid: 27149 + - uid: 27812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,50.5 + pos: -48.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Коридор медицинский - - uid: 27150 + - uid: 27813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,59.5 + pos: -44.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Офис ГВ - - uid: 27151 + - uid: 27814 components: - type: Transform - pos: -21.5,54.5 + rot: 3.141592653589793 rad + pos: -21.5,57.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Хранилище медикаментов - - uid: 27152 + - uid: 27815 components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,42.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Операционая - - uid: 27153 + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,55.5 + parent: 2 + - uid: 27816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,68.5 + rot: 3.141592653589793 rad + pos: -20.5,57.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Психдиспансер 1 - - uid: 27154 + - uid: 27817 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,74.5 + pos: -21.5,55.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Психдиспансер 2 - - uid: 27155 + - uid: 27818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,44.5 + rot: 3.141592653589793 rad + pos: -20.5,56.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Химическая лаборатория - - uid: 27156 + - uid: 27819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,52.5 + pos: 35.5,-45.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Палаты - - uid: 27157 + - uid: 27820 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,51.5 + pos: 28.5,-35.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Клонерка - - uid: 27158 + - uid: 27821 components: - type: Transform - pos: -22.5,49.5 + pos: -15.5,46.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Криогенетика - - uid: 27159 + - uid: 27822 components: - type: Transform - pos: 3.5,42.5 + rot: 1.5707963267948966 rad + pos: 26.5,-30.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Комната отдыха - - uid: 27160 + - uid: 27823 components: - type: Transform - pos: 1.5,36.5 + rot: -1.5707963267948966 rad + pos: 28.5,-32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Стойка медицинский - - uid: 27161 + - uid: 27824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,52.5 + pos: -8.5,62.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: КПП Мед - - uid: 27162 + - uid: 27825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,42.5 + pos: -3.5,69.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Морг - - uid: 27163 + - uid: 27826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,70.5 + pos: -4.5,70.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Офис Психдиспансера - - uid: 27164 + - uid: 27827 components: - type: Transform - pos: 3.5,60.5 + pos: -3.5,70.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Офис Психолога -- proto: SurveillanceCameraMonitorCircuitboard - entities: - - uid: 27165 + - uid: 27828 components: - type: Transform - pos: 14.384924,12.720999 + pos: -5.5,70.5 parent: 2 -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 27166 + - uid: 27829 components: - type: Transform - pos: 6.5,15.5 + rot: -1.5707963267948966 rad + pos: -34.5,2.5 parent: 2 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 27167 + - uid: 27830 components: - type: Transform - pos: 9.5,10.5 + rot: -1.5707963267948966 rad + pos: -34.5,1.5 parent: 2 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 27168 + - uid: 27831 components: - type: Transform - pos: 8.5,14.5 + rot: -1.5707963267948966 rad + pos: -34.5,0.5 parent: 2 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 27169 + - uid: 27832 components: - type: Transform - pos: 8.5,10.5 + rot: -1.5707963267948966 rad + pos: -33.5,2.5 parent: 2 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 27170 + - uid: 27833 components: - type: Transform - pos: 7.5,11.5 + rot: 1.5707963267948966 rad + pos: 66.5,17.5 parent: 2 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 27171 + - uid: 27834 components: - type: Transform - pos: 9.5,12.5 + rot: 3.141592653589793 rad + pos: -42.5,10.5 parent: 2 -- proto: SurveillanceCameraRouterService - entities: - - uid: 27172 + - uid: 27835 components: - type: Transform - pos: 6.5,12.5 + rot: 1.5707963267948966 rad + pos: -50.5,2.5 parent: 2 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 27173 + - uid: 27836 components: - type: Transform - pos: 9.5,13.5 + pos: 23.5,29.5 parent: 2 -- proto: SurveillanceCameraScience - entities: - - uid: 27174 + - uid: 27837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-52.5 + pos: -27.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Сервер РНД - - uid: 27175 + - uid: 27838 components: - type: Transform - pos: 20.5,-35.5 + pos: 18.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Роботехника - - uid: 27176 + - uid: 27839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-27.5 + pos: -41.5,10.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: КПП НИО - - uid: 27177 + - uid: 27840 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-52.5 + pos: 2.5,38.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Ксеноархеология - - uid: 27178 + - uid: 27841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-50.5 + rot: 1.5707963267948966 rad + pos: 1.5,53.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Токсиная - - uid: 27179 + - uid: 27842 components: - type: Transform - pos: 16.5,-41.5 + rot: 1.5707963267948966 rad + pos: 1.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Аномалистика - - uid: 27180 + - uid: 27843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-45.5 + rot: 1.5707963267948966 rad + pos: 2.5,54.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Внутрений двор - - uid: 27181 + - uid: 27844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-47.5 + pos: -17.5,38.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Зал разработок - - uid: 27182 + - uid: 27845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-35.5 + pos: 29.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Камера ксенобиологии - - uid: 27183 + - uid: 27846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-40.5 + pos: 28.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Стойка - - uid: 27184 + - uid: 27847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-32.5 + pos: 30.5,32.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Коридор НИО - - uid: 27185 + - uid: 27848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-53.5 + pos: -113.5,12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Офис НР - - uid: 27186 + - uid: 27849 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-47.5 + pos: 51.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Раздевалка - - uid: 27187 + - uid: 27850 components: - type: Transform - pos: 21.5,-54.5 + rot: -1.5707963267948966 rad + pos: 52.5,-22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Комната отдыха -- proto: SurveillanceCameraSecurity - entities: - - uid: 27188 + - uid: 27851 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,6.5 + pos: -104.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Детектив - - uid: 27189 + - uid: 27852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,0.5 + rot: -1.5707963267948966 rad + pos: -103.5,4.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Стойка брига - - uid: 27190 + - uid: 27853 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,8.5 + pos: 8.5,65.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Допросная - - uid: 27191 + - uid: 27854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,15.5 + pos: 24.5,17.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Первая камера - - uid: 27192 + - uid: 27855 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,15.5 + pos: 67.5,-51.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Вторая камера - - uid: 27193 + - uid: 27856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,13.5 + pos: 18.5,28.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Мед отсек брига - - uid: 27194 + - uid: 27857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,3.5 + pos: -41.5,67.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Столовая - - uid: 27195 + - uid: 27858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,4.5 + rot: -1.5707963267948966 rad + pos: -51.5,-8.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Офис ГСБ - - uid: 27196 + - uid: 27859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-6.5 + rot: -1.5707963267948966 rad + pos: -51.5,-9.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Оружейная - - uid: 27197 + - uid: 27860 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-15.5 + pos: -108.5,42.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Офис Смотрителя - - uid: 27198 + - uid: 27861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-8.5 + pos: -41.5,66.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Стрельбище - - uid: 27199 + - uid: 27862 components: - type: Transform - pos: -26.5,-21.5 + pos: -104.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната для брифинга - - uid: 27200 + - uid: 27863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,17.5 + pos: -105.5,41.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната казни - - uid: 27201 + - uid: 43246 components: - type: Transform - pos: -30.5,14.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Вход перма - - uid: 27202 + rot: -1.5707963267948966 rad + pos: 56.5,63.5 + parent: 40599 + - uid: 43247 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,11.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Двор' - - uid: 27203 + pos: 38.5,59.5 + parent: 40599 + - uid: 43248 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,4.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Столовая' - - uid: 27204 + pos: 38.5,60.5 + parent: 40599 + - uid: 43249 components: - type: Transform - pos: -103.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Мед отсек' - - uid: 27205 + rot: -1.5707963267948966 rad + pos: 57.5,59.5 + parent: 40599 + - uid: 43250 components: - type: Transform - pos: -97.5,1.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Комната отдыха СБ' - - uid: 27206 + rot: -1.5707963267948966 rad + pos: 56.5,59.5 + parent: 40599 + - uid: 43251 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Оружейная' - - uid: 27207 + pos: 37.5,59.5 + parent: 40599 + - uid: 43252 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.5,-7.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Прибытие' - - uid: 27208 + pos: 29.5,72.5 + parent: 40599 + - uid: 43253 components: - type: Transform - pos: -104.5,6.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Зона отдыха' - - uid: 27209 + rot: -1.5707963267948966 rad + pos: 37.5,70.5 + parent: 40599 + - uid: 43254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,17.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Гидропоника' - - uid: 27210 + pos: 52.5,78.5 + parent: 40599 + - uid: 43255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Камера 1' - - uid: 27211 + pos: 52.5,79.5 + parent: 40599 + - uid: 43256 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,19.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Камера 2' - - uid: 27212 + pos: 56.5,83.5 + parent: 40599 + - uid: 43257 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,23.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Камера 3' - - uid: 27213 + pos: 57.5,83.5 + parent: 40599 + - uid: 43258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,18.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Пост СБ' - - uid: 27214 + pos: 68.5,63.5 + parent: 40599 + - uid: 43259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,22.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Офис АВД - - uid: 27215 + pos: 68.5,62.5 + parent: 40599 + - uid: 43260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 99.5,-11.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: КПП Отбытие - - uid: 27216 + pos: 41.5,37.5 + parent: 40599 + - uid: 43261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,15.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Третья камера - - uid: 27217 + pos: 42.5,37.5 + parent: 40599 + - uid: 46810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,10.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Зимняя одежда - - uid: 27218 + pos: 3.5,2.5 + parent: 46584 + - uid: 46811 components: - type: Transform - pos: -28.5,-11.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Раздевалка - - uid: 27219 + pos: 4.5,2.5 + parent: 46584 +- proto: TableCarpet + entities: + - uid: 27864 components: - type: Transform - pos: -101.5,22.5 + pos: -80.5,12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: 'Перма: Уборочный инвентарь' -- proto: SurveillanceCameraService - entities: - - uid: 27220 + - uid: 27865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,36.5 + pos: -80.5,11.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Гидропоника - - uid: 27221 + - uid: 27866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,30.5 + pos: 0.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Кухня - - uid: 27222 + - uid: 27867 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,22.5 + pos: 1.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Бар - - uid: 27223 + - uid: 27868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,20.5 + pos: -0.5,-21.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Столовая - - uid: 27224 + - uid: 27869 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,4.5 + pos: 3.5,43.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Сцена Театра - - uid: 27225 + - uid: 27870 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,2.5 + pos: 2.5,43.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Закулисье театра - - uid: 27226 + - uid: 27871 components: - type: Transform - pos: 3.5,18.5 + pos: 3.5,65.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Библиотека - - uid: 27227 + - uid: 27872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,30.5 + pos: 45.5,22.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Каморка уборщиков - - uid: 27228 + - uid: 27873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,41.5 + rot: 1.5707963267948966 rad + pos: 2.5,44.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Гидропоника - - uid: 27229 + - uid: 27874 components: - type: Transform - pos: 14.5,31.5 + pos: 0.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Гидропоника - - uid: 27230 + - uid: 27875 components: - type: Transform - pos: 31.5,36.5 + rot: -1.5707963267948966 rad + pos: -20.5,25.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Холодильник - - uid: 27231 + - uid: 27876 components: - type: Transform - pos: 13.5,18.5 + pos: -0.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Репортерская - - uid: 27232 + - uid: 27877 components: - type: Transform - pos: 27.5,8.5 + pos: 1.5,20.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Церковь - - uid: 27233 + - uid: 27878 components: - type: Transform - pos: -8.5,34.5 + pos: -0.5,19.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Барбершоп - - uid: 27234 + - uid: 27879 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,7.5 + pos: 18.5,-12.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Коридор театра - - uid: 27235 + - uid: 27880 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,2.5 + pos: -110.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Гримёрка театра -- proto: SurveillanceCameraSupply - entities: - - uid: 27236 + - uid: 27881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-26.5 + rot: 1.5707963267948966 rad + pos: -110.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: КПП Снабжение - - uid: 27237 + - uid: 27882 components: - type: Transform - pos: 84.5,-46.5 + pos: -109.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Коморка утилизаторов - - uid: 27238 + - uid: 27883 components: - type: Transform rot: 1.5707963267948966 rad - pos: 79.5,-46.5 + pos: -98.5,1.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Утилизаторская - - uid: 27239 + - uid: 27884 components: - type: Transform rot: 3.141592653589793 rad - pos: 74.5,-37.5 + pos: -98.5,2.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Офис КМ - - uid: 27240 + - uid: 27885 components: - type: Transform - pos: 60.5,-44.5 + rot: -1.5707963267948966 rad + pos: 28.5,52.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Зал Отгрузки - - uid: 27241 + - uid: 27886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-31.5 + pos: -32.5,29.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Стойка снабжения - - uid: 27242 + - uid: 27887 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-29.5 + pos: -35.5,26.5 parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Зона отгрузки -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 27243 + - uid: 27888 components: - type: Transform - pos: 7.5,14.5 + rot: 3.141592653589793 rad + pos: -38.5,26.5 parent: 2 -- proto: SurveillanceWirelessCameraAnchoredEntertainment - entities: - - uid: 27244 + - uid: 27889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -74.5,12.5 + pos: -30.5,29.5 parent: 2 - - uid: 27245 + - uid: 27890 components: - type: Transform - pos: 10.5,22.5 + pos: -31.5,29.5 parent: 2 -- proto: SurveillanceWirelessCameraMovableEntertainment +- proto: TableCounterMetal entities: - - uid: 27246 + - uid: 27891 components: - type: Transform - pos: 13.5,22.5 + pos: 12.5,-13.5 parent: 2 - - uid: 27247 + - uid: 27892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,17.5 + pos: 12.5,-12.5 parent: 2 -- proto: SurvivalKnife - entities: - - uid: 27248 + - uid: 27893 components: - type: Transform - pos: -38.57441,36.52522 + pos: -2.5,22.5 parent: 2 - - uid: 42852 + - uid: 27894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.042816,62.238213 - parent: 40203 -- proto: SyndicateJawsOfLife - entities: - - uid: 42853 + pos: -18.5,26.5 + parent: 2 + - uid: 27895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.819294,78.487686 - parent: 40203 -- proto: SyndicateMicrowave - entities: - - uid: 27249 + pos: 3.5,22.5 + parent: 2 + - uid: 27896 components: - type: Transform - pos: -75.5,16.5 + rot: 3.141592653589793 rad + pos: -103.5,-4.5 parent: 2 -- proto: SyndicatePersonalAI - entities: - - uid: 27250 + - uid: 27897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.506802,53.201153 + rot: 3.141592653589793 rad + pos: -103.5,-5.5 parent: 2 -- proto: Syringe - entities: - - uid: 27251 + - uid: 27898 components: - type: Transform - pos: 43.53624,54.2526 + rot: 3.141592653589793 rad + pos: -103.5,-6.5 parent: 2 - - uid: 27252 + - uid: 27899 components: - type: Transform - pos: -16.497894,51.551525 + rot: -1.5707963267948966 rad + pos: -13.5,-4.5 parent: 2 - - uid: 27253 + - uid: 27900 components: - type: Transform - pos: 22.526949,22.893698 + pos: 51.5,9.5 parent: 2 - - uid: 27254 + - uid: 27901 components: - type: Transform - pos: -3.6558876,70.13093 + pos: -110.5,20.5 parent: 2 - - uid: 27255 + - uid: 27902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.444214,5.525534 + pos: -110.5,19.5 parent: 2 - - uid: 27256 + - uid: 43262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.46256,-43.119713 - parent: 2 - - uid: 42854 + pos: 48.5,78.5 + parent: 40599 + - uid: 43263 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.046791,32.494987 - parent: 40203 -- proto: SyringeDermaline - entities: - - uid: 27257 + pos: 48.5,79.5 + parent: 40599 + - uid: 43264 components: - type: Transform - pos: 3.574373,36.488266 - parent: 2 - - uid: 42855 + pos: 49.5,79.5 + parent: 40599 + - uid: 43265 components: - - type: MetaData - name: шприц - type: Transform rot: -1.5707963267948966 rad - pos: 60.426476,60.502113 - parent: 40203 -- proto: SyringeEphedrine - entities: - - uid: 42856 + pos: 32.5,68.5 + parent: 40599 + - uid: 43266 components: - - type: MetaData - name: шприц - type: Transform - rot: 3.141592653589793 rad - pos: 58.832726,59.70524 - parent: 40203 -- proto: SyringeEthylredoxrazine - entities: - - uid: 17574 + rot: -1.5707963267948966 rad + pos: 33.5,68.5 + parent: 40599 + - uid: 43267 components: - type: Transform - parent: 17567 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: SyringePhalanximine - entities: - - uid: 27258 + rot: -1.5707963267948966 rad + pos: 34.5,68.5 + parent: 40599 + - uid: 43268 components: - type: Transform - pos: 13.689747,37.560402 - parent: 2 -- proto: SyringeSigynate - entities: - - uid: 27259 + rot: 1.5707963267948966 rad + pos: 36.5,80.5 + parent: 40599 + - uid: 43269 components: - type: Transform - pos: -56.365078,11.482246 - parent: 2 -- proto: SyringeTranexamicAcid - entities: - - uid: 27260 + rot: 1.5707963267948966 rad + pos: 38.5,80.5 + parent: 40599 + - uid: 43270 components: - type: Transform - pos: 3.293123,36.69139 - parent: 2 -- proto: Table + rot: 1.5707963267948966 rad + pos: 37.5,80.5 + parent: 40599 +- proto: TableCounterWood entities: - - uid: 27261 + - uid: 27903 components: - type: Transform - pos: -12.5,51.5 + pos: 6.5,61.5 parent: 2 - - uid: 27262 + - uid: 27904 components: - type: Transform - pos: -12.5,52.5 + pos: 5.5,20.5 parent: 2 - - uid: 27263 + - uid: 27905 components: - type: Transform - pos: -12.5,53.5 + rot: 3.141592653589793 rad + pos: -109.5,8.5 parent: 2 - - uid: 27264 + - uid: 27906 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-5.5 + pos: -108.5,8.5 parent: 2 - - uid: 27265 + - uid: 27907 components: - type: Transform rot: 3.141592653589793 rad - pos: 97.5,-3.5 + pos: -107.5,8.5 parent: 2 - - uid: 27266 + - uid: 27908 components: - type: Transform - pos: -114.5,12.5 + rot: 3.141592653589793 rad + pos: -107.5,9.5 parent: 2 - - uid: 27267 + - uid: 27909 components: - type: Transform - pos: -115.5,12.5 + rot: 3.141592653589793 rad + pos: -107.5,10.5 parent: 2 - - uid: 27268 + - uid: 27910 components: - type: Transform - pos: 70.5,-44.5 + rot: 3.141592653589793 rad + pos: -107.5,11.5 parent: 2 - - uid: 27269 + - uid: 27911 components: - type: Transform - pos: 70.5,-43.5 + rot: 3.141592653589793 rad + pos: -107.5,12.5 parent: 2 - - uid: 27270 + - uid: 27912 components: - type: Transform - pos: 70.5,-42.5 + rot: -1.5707963267948966 rad + pos: -3.5,19.5 parent: 2 - - uid: 27271 + - uid: 27913 components: - type: Transform - pos: -12.5,-14.5 + rot: -1.5707963267948966 rad + pos: -3.5,20.5 parent: 2 - - uid: 27272 + - uid: 27914 components: - type: Transform - pos: -32.5,12.5 + rot: 1.5707963267948966 rad + pos: -36.5,23.5 parent: 2 - - uid: 27273 + - uid: 27915 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,42.5 + pos: -37.5,23.5 parent: 2 - - uid: 27274 + - uid: 27916 components: - type: Transform - pos: -26.5,54.5 + rot: 1.5707963267948966 rad + pos: -38.5,23.5 parent: 2 - - uid: 27275 + - uid: 27917 components: - type: Transform - pos: 18.5,7.5 + rot: 1.5707963267948966 rad + pos: -35.5,23.5 parent: 2 - - uid: 27276 + - uid: 27918 components: - type: Transform - pos: -33.5,12.5 + pos: -113.5,1.5 parent: 2 - - uid: 27277 + - uid: 43271 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,45.5 + pos: 52.5,73.5 + parent: 40599 +- proto: TableFancyBlack + entities: + - uid: 27919 + components: + - type: Transform + pos: -42.5,1.5 parent: 2 - - uid: 27278 + - uid: 27920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,10.5 + pos: -43.5,1.5 parent: 2 - - uid: 27279 + - uid: 27921 components: - type: Transform - pos: 18.5,5.5 + pos: -41.5,1.5 parent: 2 - - uid: 27280 + - uid: 43272 components: - type: Transform - pos: 18.5,6.5 + pos: 73.5,74.5 + parent: 40599 + - uid: 43273 + components: + - type: Transform + pos: 73.5,73.5 + parent: 40599 + - uid: 43274 + components: + - type: Transform + pos: 73.5,72.5 + parent: 40599 + - uid: 43275 + components: + - type: Transform + pos: 74.5,72.5 + parent: 40599 + - uid: 43276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,79.5 + parent: 40599 + - uid: 43277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 73.5,78.5 + parent: 40599 + - uid: 43278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,36.5 + parent: 40599 + - uid: 43279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 79.5,35.5 + parent: 40599 + - uid: 46260 + components: + - type: Transform + pos: 4.5,2.5 + parent: 45355 + - uid: 46261 + components: + - type: Transform + pos: 4.5,4.5 + parent: 45355 + - uid: 46262 + components: + - type: Transform + pos: 4.5,3.5 + parent: 45355 +- proto: TableFancyBlue + entities: + - uid: 27922 + components: + - type: Transform + pos: 1.5,-2.5 parent: 2 - - uid: 27281 + - uid: 27923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,44.5 + pos: 2.5,-1.5 parent: 2 - - uid: 27282 + - uid: 27924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,43.5 + pos: 3.5,1.5 parent: 2 - - uid: 27283 + - uid: 27925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,51.5 + pos: 2.5,1.5 parent: 2 - - uid: 27284 + - uid: 27926 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,52.5 + pos: 3.5,-2.5 parent: 2 - - uid: 27285 + - uid: 27927 components: - type: Transform - pos: -50.5,5.5 + pos: 2.5,-0.5 parent: 2 - - uid: 27286 + - uid: 27928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-45.5 + pos: 2.5,0.5 parent: 2 - - uid: 27287 + - uid: 27929 components: - type: Transform - pos: 40.5,-43.5 + pos: 1.5,1.5 parent: 2 - - uid: 27288 + - uid: 27930 components: - type: Transform - pos: 52.5,-53.5 + pos: 2.5,-2.5 parent: 2 - - uid: 27289 + - uid: 27931 components: - type: Transform - pos: 52.5,-52.5 + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 parent: 2 - - uid: 27290 + - uid: 27932 components: - type: Transform - pos: 22.5,31.5 + rot: 1.5707963267948966 rad + pos: 9.5,-6.5 parent: 2 - - uid: 27291 + - uid: 27933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,35.5 + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 parent: 2 - - uid: 27292 + - uid: 27934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,35.5 + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 parent: 2 - - uid: 27293 + - uid: 27935 components: - type: Transform - pos: 30.5,30.5 + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 parent: 2 - - uid: 27294 +- proto: TableFancyCyan + entities: + - uid: 27936 components: - type: Transform - pos: 30.5,-36.5 + pos: 9.5,19.5 parent: 2 - - uid: 27295 + - uid: 27937 components: - type: Transform - pos: -7.5,45.5 + pos: 10.5,19.5 parent: 2 - - uid: 27296 + - uid: 27938 components: - type: Transform - pos: -8.5,45.5 + pos: 11.5,19.5 parent: 2 - - uid: 27297 + - uid: 27939 components: - type: Transform - pos: 32.5,-36.5 + pos: -8.5,58.5 parent: 2 - - uid: 27298 + - uid: 27940 components: - type: Transform - pos: 31.5,-36.5 + pos: -7.5,58.5 parent: 2 - - uid: 27299 + - uid: 27941 components: - type: Transform - pos: 28.5,30.5 + pos: -7.5,57.5 parent: 2 - - uid: 27300 + - uid: 27942 components: - type: Transform - pos: 64.5,-30.5 + pos: -7.5,56.5 parent: 2 - - uid: 27301 +- proto: TableFancyOrange + entities: + - uid: 27943 components: - type: Transform - pos: 64.5,-31.5 + pos: 2.5,-50.5 parent: 2 - - uid: 27302 + - uid: 27944 components: - type: Transform - pos: 32.5,30.5 + pos: 2.5,-49.5 parent: 2 - - uid: 27303 + - uid: 27945 components: - type: Transform - pos: 29.5,30.5 + pos: 75.5,-38.5 parent: 2 - - uid: 27304 + - uid: 27946 components: - type: Transform - pos: 31.5,30.5 + pos: 74.5,-39.5 parent: 2 - - uid: 27305 + - uid: 27947 components: - type: Transform - pos: 27.5,30.5 + pos: 74.5,-40.5 parent: 2 - - uid: 27306 + - uid: 27948 components: - type: Transform - pos: 10.5,30.5 + pos: 74.5,-38.5 parent: 2 - - uid: 27307 + - uid: 27949 components: - type: Transform - pos: 12.5,30.5 + pos: 74.5,-41.5 parent: 2 - - uid: 27308 + - uid: 27950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,12.5 + pos: 2.5,-51.5 parent: 2 - - uid: 27309 + - uid: 27951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,11.5 + pos: 3.5,-49.5 parent: 2 - - uid: 27310 +- proto: TableFancyPurple + entities: + - uid: 46263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-5.5 - parent: 2 - - uid: 27311 + pos: -1.5,4.5 + parent: 45355 + - uid: 46264 components: - type: Transform - pos: 26.5,36.5 - parent: 2 - - uid: 27312 + pos: 1.5,4.5 + parent: 45355 + - uid: 46265 components: - type: Transform - pos: 26.5,35.5 - parent: 2 - - uid: 27313 + pos: -2.5,4.5 + parent: 45355 + - uid: 46266 components: - type: Transform - pos: 26.5,34.5 - parent: 2 - - uid: 27314 + pos: 2.5,4.5 + parent: 45355 +- proto: TableFancyRed + entities: + - uid: 27952 components: - type: Transform - pos: 33.5,34.5 + rot: 3.141592653589793 rad + pos: 29.5,22.5 parent: 2 - - uid: 27315 + - uid: 27953 components: - type: Transform - pos: 31.5,34.5 + rot: 3.141592653589793 rad + pos: 33.5,20.5 parent: 2 - - uid: 27316 + - uid: 27954 components: - type: Transform - pos: 32.5,34.5 + rot: 3.141592653589793 rad + pos: 31.5,20.5 parent: 2 - - uid: 27317 + - uid: 27955 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,40.5 + pos: 29.5,23.5 parent: 2 - - uid: 27318 + - uid: 27956 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,41.5 + pos: 29.5,24.5 parent: 2 - - uid: 27319 + - uid: 27957 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,41.5 + pos: 32.5,20.5 parent: 2 - - uid: 27320 +- proto: TableFrame + entities: + - uid: 27958 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,39.5 + pos: -59.5,-6.5 parent: 2 - - uid: 27321 + - uid: 27959 components: - type: Transform - pos: 26.5,33.5 + pos: 39.5,-43.5 parent: 2 - - uid: 27322 + - uid: 27960 components: - type: Transform - pos: 32.5,33.5 + pos: 42.5,-44.5 parent: 2 - - uid: 27323 + - uid: 27961 components: - type: Transform - pos: 27.5,34.5 + pos: 16.5,61.5 parent: 2 - - uid: 27324 + - uid: 27962 components: - type: Transform - pos: 30.5,34.5 + pos: -54.5,65.5 parent: 2 - - uid: 27325 + - uid: 27963 components: - type: Transform - pos: 11.5,30.5 + rot: 1.5707963267948966 rad + pos: 12.5,63.5 parent: 2 - - uid: 27326 + - uid: 27964 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,27.5 + pos: -30.5,27.5 parent: 2 - - uid: 27327 + - uid: 27965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,27.5 + pos: 101.5,-40.5 parent: 2 - - uid: 27328 + - uid: 43280 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,37.5 - parent: 2 - - uid: 27329 + pos: 55.5,59.5 + parent: 40599 + - uid: 43281 components: - type: Transform - pos: -20.5,8.5 - parent: 2 - - uid: 27330 + pos: 60.5,59.5 + parent: 40599 + - uid: 43282 components: - type: Transform - pos: 27.5,-8.5 + rot: 3.141592653589793 rad + pos: 30.5,72.5 + parent: 40599 + - uid: 43283 + components: + - type: Transform + pos: 54.5,69.5 + parent: 40599 + - uid: 46812 + components: + - type: Transform + pos: 5.5,2.5 + parent: 46584 +- proto: TableGlass + entities: + - uid: 27966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,42.5 parent: 2 - - uid: 27331 + - uid: 27967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-5.5 + pos: 29.5,56.5 parent: 2 - - uid: 27332 + - uid: 27968 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-4.5 + pos: 21.5,-49.5 parent: 2 - - uid: 27333 + - uid: 27969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 + rot: 3.141592653589793 rad + pos: 7.5,35.5 parent: 2 - - uid: 27334 + - uid: 27970 components: - type: Transform - pos: 27.5,-7.5 + rot: 3.141592653589793 rad + pos: 7.5,33.5 parent: 2 - - uid: 27335 + - uid: 27971 components: - type: Transform - pos: 4.5,32.5 + rot: 3.141592653589793 rad + pos: 7.5,32.5 parent: 2 - - uid: 27336 + - uid: 27972 components: - type: Transform - pos: 3.5,32.5 + rot: 3.141592653589793 rad + pos: 7.5,34.5 parent: 2 - - uid: 27337 + - uid: 27973 components: - type: Transform - pos: 29.5,-51.5 + rot: 1.5707963267948966 rad + pos: 6.5,-35.5 parent: 2 - - uid: 27338 + - uid: 27974 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-50.5 + pos: 26.5,-41.5 parent: 2 - - uid: 27339 + - uid: 27975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-48.5 + rot: -1.5707963267948966 rad + pos: 25.5,53.5 parent: 2 - - uid: 27340 + - uid: 27976 components: - type: Transform - pos: 39.5,-52.5 + rot: -1.5707963267948966 rad + pos: 25.5,54.5 parent: 2 - - uid: 27341 + - uid: 27977 components: - type: Transform - pos: 30.5,-43.5 + pos: 16.5,54.5 parent: 2 - - uid: 27342 + - uid: 27978 components: - type: Transform - pos: 29.5,-37.5 + pos: 16.5,53.5 parent: 2 - - uid: 27343 + - uid: 27979 components: - type: Transform - pos: 22.5,32.5 + pos: 14.5,60.5 parent: 2 - - uid: 27344 + - uid: 27980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-55.5 + pos: 8.5,60.5 parent: 2 - - uid: 27345 + - uid: 27981 components: - type: Transform - pos: 23.5,19.5 + pos: 29.5,61.5 parent: 2 - - uid: 27346 + - uid: 27982 components: - type: Transform - pos: 24.5,19.5 + pos: 29.5,60.5 parent: 2 - - uid: 27347 + - uid: 27983 components: - type: Transform - pos: 22.5,18.5 + pos: 29.5,59.5 parent: 2 - - uid: 27348 + - uid: 27984 components: - type: Transform - pos: 22.5,19.5 + pos: 29.5,57.5 parent: 2 - - uid: 27349 + - uid: 27985 components: - type: Transform - pos: 19.5,-31.5 + pos: 28.5,56.5 parent: 2 - - uid: 27350 + - uid: 27986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-45.5 + rot: 3.141592653589793 rad + pos: -56.5,11.5 parent: 2 - - uid: 27351 + - uid: 27987 components: - type: Transform - pos: 25.5,-49.5 + rot: 3.141592653589793 rad + pos: -56.5,12.5 parent: 2 - - uid: 27352 + - uid: 27988 components: - type: Transform - pos: 26.5,-49.5 + rot: 1.5707963267948966 rad + pos: -56.5,17.5 parent: 2 - - uid: 27353 + - uid: 27989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-40.5 + pos: -52.5,15.5 parent: 2 - - uid: 27354 + - uid: 27990 components: - type: Transform - pos: -46.5,2.5 + rot: -1.5707963267948966 rad + pos: 30.5,-33.5 parent: 2 - - uid: 27355 + - uid: 27991 components: - type: Transform - pos: -12.5,44.5 + rot: 1.5707963267948966 rad + pos: -56.5,8.5 parent: 2 - - uid: 27356 + - uid: 27992 components: - type: Transform - pos: -12.5,43.5 + pos: -54.5,15.5 parent: 2 - - uid: 27357 + - uid: 27993 components: - type: Transform - pos: -12.5,42.5 + rot: 1.5707963267948966 rad + pos: -10.5,40.5 parent: 2 - - uid: 27358 + - uid: 27994 components: - type: Transform - pos: -15.5,44.5 + pos: 5.5,39.5 parent: 2 - - uid: 27359 + - uid: 27995 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,63.5 + pos: -8.5,38.5 parent: 2 - - uid: 27360 + - uid: 27996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,38.5 + pos: -43.5,-11.5 parent: 2 - - uid: 27361 + - uid: 27997 components: - type: Transform - pos: -46.5,4.5 + pos: -44.5,-11.5 parent: 2 - - uid: 27362 + - uid: 27998 components: - type: Transform - pos: -46.5,3.5 + pos: 19.5,22.5 parent: 2 - - uid: 27363 + - uid: 27999 components: - type: Transform - pos: -49.5,2.5 + pos: -100.5,22.5 parent: 2 - - uid: 27364 +- proto: TablePlasmaGlass + entities: + - uid: 46267 components: - type: Transform - pos: -49.5,5.5 + pos: 7.5,4.5 + parent: 45355 + - uid: 46268 + components: + - type: Transform + pos: 7.5,2.5 + parent: 45355 + - uid: 46269 + components: + - type: Transform + pos: 7.5,3.5 + parent: 45355 +- proto: TableReinforced + entities: + - uid: 28000 + components: + - type: Transform + pos: 85.5,-44.5 parent: 2 - - uid: 27365 + - uid: 28001 components: - type: Transform - pos: 10.5,54.5 + pos: 97.5,-40.5 parent: 2 - - uid: 27366 + - uid: 28002 components: - type: Transform - pos: 16.5,50.5 + pos: 5.5,-44.5 parent: 2 - - uid: 27367 + - uid: 28003 components: - type: Transform - pos: -40.5,17.5 + pos: 6.5,-44.5 parent: 2 - - uid: 27368 + - uid: 28004 components: - type: Transform - pos: -48.5,17.5 + pos: -27.5,16.5 parent: 2 - - uid: 27369 + - uid: 28005 components: - type: Transform - pos: -44.5,17.5 + pos: -25.5,16.5 parent: 2 - - uid: 27370 + - uid: 28006 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,57.5 + pos: 69.5,-31.5 parent: 2 - - uid: 27371 + - uid: 28007 components: - type: Transform - pos: -17.5,60.5 + rot: 3.141592653589793 rad + pos: 69.5,-32.5 parent: 2 - - uid: 27372 + - uid: 28008 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,55.5 + pos: 98.5,-8.5 parent: 2 - - uid: 27373 + - uid: 28009 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - uid: 28010 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,57.5 + pos: -31.5,-20.5 parent: 2 - - uid: 27374 + - uid: 28011 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,55.5 + pos: -22.5,-20.5 parent: 2 - - uid: 27375 + - uid: 28012 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,56.5 + pos: -24.5,-15.5 parent: 2 - - uid: 27376 + - uid: 28013 components: - type: Transform - pos: 35.5,-45.5 + rot: 3.141592653589793 rad + pos: -25.5,-17.5 parent: 2 - - uid: 27377 + - uid: 28014 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-35.5 + pos: -23.5,-20.5 parent: 2 - - uid: 27378 + - uid: 28015 components: - type: Transform - pos: -15.5,46.5 + pos: -30.5,-16.5 parent: 2 - - uid: 27379 + - uid: 28016 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-30.5 + pos: -31.5,-16.5 parent: 2 - - uid: 27380 + - uid: 28017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-32.5 + rot: 3.141592653589793 rad + pos: -27.5,-20.5 parent: 2 - - uid: 27381 + - uid: 28018 components: - type: Transform - pos: -8.5,62.5 + rot: 3.141592653589793 rad + pos: -25.5,-20.5 parent: 2 - - uid: 27382 + - uid: 28019 components: - type: Transform - pos: -3.5,69.5 + rot: 3.141592653589793 rad + pos: -25.5,-15.5 parent: 2 - - uid: 27383 + - uid: 28020 components: - type: Transform - pos: -4.5,70.5 + rot: 3.141592653589793 rad + pos: -25.5,-19.5 parent: 2 - - uid: 27384 + - uid: 28021 components: - type: Transform - pos: -3.5,70.5 + rot: -1.5707963267948966 rad + pos: -29.5,-20.5 parent: 2 - - uid: 27385 + - uid: 28022 components: - type: Transform - pos: -5.5,70.5 + rot: 3.141592653589793 rad + pos: -27.5,-19.5 parent: 2 - - uid: 27386 + - uid: 28023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,2.5 + rot: 3.141592653589793 rad + pos: -26.5,-19.5 parent: 2 - - uid: 27387 + - uid: 28024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,1.5 + rot: 3.141592653589793 rad + pos: -21.5,-21.5 parent: 2 - - uid: 27388 + - uid: 28025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,0.5 + rot: 3.141592653589793 rad + pos: -28.5,-17.5 parent: 2 - - uid: 27389 + - uid: 28026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,2.5 + rot: 3.141592653589793 rad + pos: -21.5,-20.5 parent: 2 - - uid: 27390 + - uid: 28027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,17.5 + rot: 3.141592653589793 rad + pos: -28.5,-15.5 parent: 2 - - uid: 27391 + - uid: 28028 components: - type: Transform rot: 3.141592653589793 rad - pos: -42.5,10.5 + pos: -27.5,-15.5 parent: 2 - - uid: 27392 + - uid: 28029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,2.5 + rot: 3.141592653589793 rad + pos: -27.5,-17.5 parent: 2 - - uid: 27393 + - uid: 28030 components: - type: Transform - pos: 23.5,29.5 + rot: 3.141592653589793 rad + pos: -24.5,-17.5 parent: 2 - - uid: 27394 + - uid: 28031 components: - type: Transform - pos: -27.5,54.5 + rot: 3.141592653589793 rad + pos: -110.5,17.5 parent: 2 - - uid: 27395 + - uid: 28032 components: - type: Transform - pos: 18.5,4.5 + pos: 8.5,-4.5 parent: 2 - - uid: 27396 + - uid: 28033 components: - type: Transform - pos: -41.5,10.5 + pos: 8.5,-3.5 parent: 2 - - uid: 27397 + - uid: 28034 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,38.5 + pos: -27.5,-11.5 parent: 2 - - uid: 27398 + - uid: 28035 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,53.5 + pos: -25.5,42.5 parent: 2 - - uid: 27399 + - uid: 28036 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,54.5 + pos: -24.5,42.5 parent: 2 - - uid: 27400 + - uid: 28037 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,54.5 - parent: 2 - - uid: 27401 - components: - - type: Transform - pos: -17.5,38.5 + pos: -26.5,42.5 parent: 2 - - uid: 27402 + - uid: 28038 components: - type: Transform - pos: 53.5,-16.5 + pos: -8.5,49.5 parent: 2 - - uid: 27403 + - uid: 28039 components: - type: Transform - pos: 67.5,-32.5 + pos: -9.5,49.5 parent: 2 - - uid: 27404 + - uid: 28040 components: - type: Transform - pos: 67.5,-31.5 + rot: -1.5707963267948966 rad + pos: 73.5,-48.5 parent: 2 - - uid: 27405 + - uid: 28041 components: - type: Transform - pos: 29.5,32.5 + pos: 76.5,-48.5 parent: 2 - - uid: 27406 + - uid: 28042 components: - type: Transform - pos: 28.5,32.5 + pos: 0.5,-42.5 parent: 2 - - uid: 27407 + - uid: 28043 components: - type: Transform - pos: 30.5,32.5 + pos: 0.5,-43.5 parent: 2 - - uid: 27408 + - uid: 28044 components: - type: Transform - pos: -113.5,12.5 + pos: 0.5,-44.5 parent: 2 - - uid: 27409 + - uid: 28045 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-22.5 + pos: -7.5,-36.5 parent: 2 - - uid: 27410 + - uid: 28046 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-22.5 + pos: -7.5,-35.5 parent: 2 - - uid: 27411 + - uid: 28047 components: - type: Transform rot: -1.5707963267948966 rad - pos: -104.5,4.5 + pos: -7.5,-37.5 parent: 2 - - uid: 27412 + - uid: 28048 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,4.5 + pos: -7.5,-38.5 parent: 2 - - uid: 27413 + - uid: 28049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,65.5 + pos: -1.5,-1.5 parent: 2 - - uid: 27414 + - uid: 28050 components: - type: Transform - pos: 24.5,17.5 + pos: -0.5,-1.5 parent: 2 - - uid: 27415 + - uid: 28051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-51.5 + pos: 5.5,-1.5 parent: 2 - - uid: 42857 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,63.5 - parent: 40203 - - uid: 42858 + - uid: 28052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,59.5 - parent: 40203 - - uid: 42859 + pos: 6.5,-1.5 + parent: 2 + - uid: 28053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,60.5 - parent: 40203 - - uid: 42860 + pos: -29.5,-1.5 + parent: 2 + - uid: 28054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,59.5 - parent: 40203 - - uid: 42861 + pos: -28.5,-1.5 + parent: 2 + - uid: 28055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,59.5 - parent: 40203 - - uid: 42862 + pos: -4.5,-13.5 + parent: 2 + - uid: 28056 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,59.5 - parent: 40203 - - uid: 42863 + pos: 9.5,-11.5 + parent: 2 + - uid: 28057 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,72.5 - parent: 40203 - - uid: 42864 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,70.5 - parent: 40203 - - uid: 42865 - components: - - type: Transform - pos: 52.5,78.5 - parent: 40203 - - uid: 42866 + pos: -19.5,3.5 + parent: 2 + - uid: 28058 components: - type: Transform - pos: 52.5,79.5 - parent: 40203 - - uid: 42867 + rot: 3.141592653589793 rad + pos: -19.5,4.5 + parent: 2 + - uid: 28059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,83.5 - parent: 40203 - - uid: 42868 + rot: 3.141592653589793 rad + pos: -19.5,5.5 + parent: 2 + - uid: 28060 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,83.5 - parent: 40203 - - uid: 42869 - components: - - type: Transform - pos: 68.5,63.5 - parent: 40203 - - uid: 42870 - components: - - type: Transform - pos: 68.5,62.5 - parent: 40203 - - uid: 42871 - components: - - type: Transform - pos: 41.5,37.5 - parent: 40203 - - uid: 42872 + pos: -20.5,3.5 + parent: 2 + - uid: 28061 components: - type: Transform - pos: 42.5,37.5 - parent: 40203 -- proto: TableCarpet - entities: - - uid: 27416 + pos: -2.5,-38.5 + parent: 2 + - uid: 28062 components: - type: Transform - pos: 0.5,19.5 + pos: -1.5,-38.5 parent: 2 - - uid: 27417 + - uid: 28063 components: - type: Transform - pos: 1.5,19.5 + pos: -1.5,-37.5 parent: 2 - - uid: 27418 + - uid: 28064 components: - type: Transform - pos: -0.5,-21.5 + pos: -1.5,-36.5 parent: 2 - - uid: 27419 + - uid: 28065 components: - type: Transform - pos: 3.5,43.5 + pos: -1.5,-35.5 parent: 2 - - uid: 27420 + - uid: 28066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,43.5 + rot: -1.5707963267948966 rad + pos: -2.5,-35.5 parent: 2 - - uid: 27421 + - uid: 28067 components: - type: Transform - pos: 3.5,65.5 + rot: -1.5707963267948966 rad + pos: -13.5,-48.5 parent: 2 - - uid: 27422 + - uid: 28068 components: - type: Transform - pos: 45.5,22.5 + rot: -1.5707963267948966 rad + pos: -15.5,-48.5 parent: 2 - - uid: 27423 + - uid: 28069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,44.5 + pos: 16.5,-34.5 parent: 2 - - uid: 27424 + - uid: 28070 components: - type: Transform - pos: 0.5,20.5 + pos: 16.5,-35.5 parent: 2 - - uid: 27425 + - uid: 28071 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,25.5 + pos: 72.5,-48.5 parent: 2 - - uid: 27426 + - uid: 28072 components: - type: Transform - pos: -0.5,20.5 + pos: 79.5,-48.5 parent: 2 - - uid: 27427 + - uid: 28073 components: - type: Transform - pos: 1.5,20.5 + pos: 78.5,-48.5 parent: 2 - - uid: 27428 + - uid: 28074 components: - type: Transform - pos: -0.5,19.5 + rot: -1.5707963267948966 rad + pos: 68.5,-25.5 parent: 2 - - uid: 27429 + - uid: 28075 components: - type: Transform - pos: 18.5,-12.5 + rot: 3.141592653589793 rad + pos: 8.5,-55.5 parent: 2 - - uid: 27430 + - uid: 28076 components: - type: Transform - pos: -51.5,24.5 + rot: 3.141592653589793 rad + pos: 8.5,-54.5 parent: 2 - - uid: 27431 + - uid: 28077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,2.5 + rot: 3.141592653589793 rad + pos: 4.5,-56.5 parent: 2 - - uid: 27432 + - uid: 28078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,1.5 + rot: 3.141592653589793 rad + pos: 5.5,-56.5 parent: 2 - - uid: 27433 + - uid: 28079 components: - type: Transform - pos: -109.5,1.5 + rot: 3.141592653589793 rad + pos: 6.5,-56.5 parent: 2 - - uid: 27434 + - uid: 28080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,1.5 + pos: 77.5,-48.5 parent: 2 - - uid: 27435 + - uid: 28081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,2.5 + rot: -1.5707963267948966 rad + pos: -24.5,-7.5 parent: 2 - - uid: 27436 + - uid: 28082 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,52.5 + pos: -24.5,-9.5 parent: 2 - - uid: 27437 + - uid: 28083 components: - type: Transform - pos: -32.5,29.5 + rot: -1.5707963267948966 rad + pos: -24.5,-10.5 parent: 2 - - uid: 27438 + - uid: 28084 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,26.5 + pos: -29.5,7.5 parent: 2 - - uid: 27439 + - uid: 28085 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,26.5 + pos: -29.5,6.5 parent: 2 - - uid: 27440 + - uid: 28086 components: - type: Transform - pos: -30.5,29.5 + rot: -1.5707963267948966 rad + pos: -32.5,7.5 parent: 2 - - uid: 27441 + - uid: 28087 components: - type: Transform - pos: -31.5,29.5 + rot: -1.5707963267948966 rad + pos: -32.5,6.5 parent: 2 -- proto: TableCounterMetal - entities: - - uid: 27442 + - uid: 28088 components: - type: Transform - pos: 12.5,-13.5 + rot: 1.5707963267948966 rad + pos: -32.5,8.5 parent: 2 - - uid: 27443 + - uid: 28089 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-8.5 + parent: 2 + - uid: 28090 components: - type: Transform - pos: 12.5,-12.5 + pos: -44.5,4.5 parent: 2 - - uid: 27444 + - uid: 28091 components: - type: Transform - pos: -2.5,22.5 + rot: -1.5707963267948966 rad + pos: -30.5,-0.5 parent: 2 - - uid: 27445 + - uid: 28092 components: - type: Transform - pos: -18.5,26.5 + pos: 45.5,-47.5 parent: 2 - - uid: 27446 + - uid: 28093 components: - type: Transform - pos: 3.5,22.5 + pos: 44.5,-47.5 parent: 2 - - uid: 27447 + - uid: 28094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-4.5 + pos: 45.5,-49.5 parent: 2 - - uid: 27448 + - uid: 28095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-5.5 + pos: 45.5,-48.5 parent: 2 - - uid: 27449 + - uid: 28096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-6.5 + pos: 38.5,-48.5 parent: 2 - - uid: 27450 + - uid: 28097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-4.5 + pos: -47.5,34.5 parent: 2 - - uid: 27451 + - uid: 28098 components: - type: Transform - pos: 51.5,9.5 + pos: -46.5,34.5 parent: 2 - - uid: 27452 + - uid: 28099 components: - type: Transform - pos: -110.5,20.5 + pos: 80.5,5.5 parent: 2 - - uid: 27453 + - uid: 28100 components: - type: Transform - pos: -110.5,19.5 + pos: 80.5,6.5 parent: 2 - - uid: 42873 + - uid: 28101 components: - type: Transform - pos: 48.5,78.5 - parent: 40203 - - uid: 42874 + pos: 79.5,5.5 + parent: 2 + - uid: 28102 components: - type: Transform - pos: 48.5,79.5 - parent: 40203 - - uid: 42875 + pos: 81.5,3.5 + parent: 2 + - uid: 28103 components: - type: Transform - pos: 49.5,79.5 - parent: 40203 - - uid: 42876 + pos: 80.5,3.5 + parent: 2 + - uid: 28104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,68.5 - parent: 40203 - - uid: 42877 + pos: 77.5,3.5 + parent: 2 + - uid: 28105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,68.5 - parent: 40203 - - uid: 42878 + pos: 78.5,3.5 + parent: 2 + - uid: 28106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,68.5 - parent: 40203 - - uid: 42879 + pos: 79.5,3.5 + parent: 2 + - uid: 28107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,80.5 - parent: 40203 - - uid: 42880 + pos: 40.5,-45.5 + parent: 2 + - uid: 28108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,80.5 - parent: 40203 - - uid: 42881 + pos: 38.5,-49.5 + parent: 2 + - uid: 28109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,80.5 - parent: 40203 -- proto: TableCounterWood - entities: - - uid: 27454 + pos: 38.5,-45.5 + parent: 2 + - uid: 28110 components: - type: Transform - pos: -101.5,43.5 + pos: 39.5,-49.5 parent: 2 - - uid: 27455 + - uid: 28111 components: - type: Transform - pos: 6.5,61.5 + rot: 3.141592653589793 rad + pos: -26.5,2.5 parent: 2 - - uid: 27456 + - uid: 28112 components: - type: Transform - pos: 5.5,20.5 + rot: 3.141592653589793 rad + pos: -26.5,1.5 parent: 2 - - uid: 27457 + - uid: 28113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,8.5 + pos: -35.5,-13.5 parent: 2 - - uid: 27458 + - uid: 28114 components: - type: Transform rot: 3.141592653589793 rad - pos: -108.5,8.5 + pos: -10.5,36.5 parent: 2 - - uid: 27459 + - uid: 28115 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,8.5 + pos: -9.5,36.5 parent: 2 - - uid: 27460 + - uid: 28116 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,9.5 + pos: -7.5,36.5 parent: 2 - - uid: 27461 + - uid: 28117 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,10.5 + pos: -6.5,36.5 parent: 2 - - uid: 27462 + - uid: 28118 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,11.5 + pos: -10.5,34.5 parent: 2 - - uid: 27463 + - uid: 28119 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,12.5 + pos: -9.5,34.5 parent: 2 - - uid: 27464 + - uid: 28120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,19.5 + rot: 3.141592653589793 rad + pos: -8.5,34.5 parent: 2 - - uid: 27465 + - uid: 28121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,20.5 + pos: -4.5,34.5 parent: 2 - - uid: 27466 + - uid: 28122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,23.5 + pos: -4.5,36.5 parent: 2 - - uid: 27467 + - uid: 28123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,23.5 + pos: -10.5,53.5 parent: 2 - - uid: 27468 + - uid: 28124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,23.5 + pos: 25.5,-28.5 parent: 2 - - uid: 27469 + - uid: 28125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,23.5 + pos: -1.5,-33.5 parent: 2 - - uid: 27470 + - uid: 28126 components: - type: Transform - pos: -113.5,1.5 + pos: -1.5,-32.5 parent: 2 - - uid: 42882 + - uid: 28127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,73.5 - parent: 40203 -- proto: TableFancyBlack - entities: - - uid: 27471 + pos: -1.5,-31.5 + parent: 2 + - uid: 28128 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,15.5 + pos: 23.5,-29.5 parent: 2 - - uid: 27472 + - uid: 28129 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,15.5 + pos: 22.5,-29.5 parent: 2 - - uid: 27473 + - uid: 28130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 + pos: -10.5,54.5 parent: 2 - - uid: 27474 + - uid: 28131 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,15.5 + pos: -36.5,-14.5 parent: 2 - - uid: 27475 + - uid: 28132 components: - type: Transform - pos: -42.5,1.5 + pos: -36.5,-12.5 parent: 2 - - uid: 27476 + - uid: 28133 components: - type: Transform - pos: -43.5,1.5 + rot: 3.141592653589793 rad + pos: -40.5,-11.5 parent: 2 - - uid: 27477 + - uid: 28134 components: - type: Transform - pos: -41.5,1.5 + rot: 3.141592653589793 rad + pos: -39.5,-11.5 parent: 2 - - uid: 42883 + - uid: 28135 components: - type: Transform - pos: 73.5,74.5 - parent: 40203 - - uid: 42884 + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - uid: 28136 components: - type: Transform - pos: 73.5,73.5 - parent: 40203 - - uid: 42885 + rot: 3.141592653589793 rad + pos: -110.5,22.5 + parent: 2 + - uid: 28137 components: - type: Transform - pos: 73.5,72.5 - parent: 40203 - - uid: 42886 + rot: 3.141592653589793 rad + pos: -109.5,22.5 + parent: 2 + - uid: 28138 components: - type: Transform - pos: 74.5,72.5 - parent: 40203 - - uid: 42887 + rot: 3.141592653589793 rad + pos: -108.5,22.5 + parent: 2 + - uid: 28139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,79.5 - parent: 40203 - - uid: 42888 + rot: 3.141592653589793 rad + pos: -107.5,22.5 + parent: 2 + - uid: 28140 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,78.5 - parent: 40203 - - uid: 42889 + pos: 65.5,-43.5 + parent: 2 + - uid: 28141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,36.5 - parent: 40203 - - uid: 42890 + pos: 65.5,-42.5 + parent: 2 + - uid: 28142 components: - type: Transform rot: -1.5707963267948966 rad - pos: 79.5,35.5 - parent: 40203 - - uid: 45907 - components: - - type: Transform - pos: 4.5,2.5 - parent: 44970 - - uid: 45908 - components: - - type: Transform - pos: 4.5,4.5 - parent: 44970 - - uid: 45909 - components: - - type: Transform - pos: 4.5,3.5 - parent: 44970 -- proto: TableFancyBlue - entities: - - uid: 27478 - components: - - type: Transform - pos: 1.5,-2.5 + pos: 66.5,-43.5 parent: 2 - - uid: 27479 + - uid: 28143 components: - type: Transform - pos: 2.5,-1.5 + rot: -1.5707963267948966 rad + pos: 67.5,-43.5 parent: 2 - - uid: 27480 + - uid: 28144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,1.5 + pos: 65.5,-38.5 parent: 2 - - uid: 27481 + - uid: 28145 components: - type: Transform - pos: 2.5,1.5 + pos: 65.5,-39.5 parent: 2 - - uid: 27482 + - uid: 28146 components: - type: Transform - pos: 3.5,-2.5 + pos: -37.5,10.5 parent: 2 - - uid: 27483 + - uid: 28147 components: - type: Transform - pos: 2.5,-0.5 + rot: 3.141592653589793 rad + pos: -31.5,-21.5 parent: 2 - - uid: 27484 + - uid: 28148 components: - type: Transform - pos: 2.5,0.5 + pos: -5.5,16.5 parent: 2 - - uid: 27485 + - uid: 28149 components: - type: Transform - pos: 1.5,1.5 + rot: 3.141592653589793 rad + pos: -30.5,-20.5 parent: 2 - - uid: 27486 + - uid: 28150 components: - type: Transform - pos: 2.5,-2.5 + rot: 1.5707963267948966 rad + pos: -21.5,-16.5 parent: 2 - - uid: 27487 + - uid: 28151 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-6.5 + pos: -109.5,17.5 parent: 2 - - uid: 27488 + - uid: 28152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-6.5 + pos: -33.5,-19.5 parent: 2 - - uid: 27489 + - uid: 28153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-6.5 + pos: -33.5,-18.5 parent: 2 - - uid: 27490 + - uid: 28154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-4.5 + pos: -33.5,-17.5 parent: 2 - - uid: 27491 + - uid: 28155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-3.5 + pos: -26.5,16.5 parent: 2 -- proto: TableFancyCyan - entities: - - uid: 27492 + - uid: 28156 components: - type: Transform - pos: 9.5,19.5 + rot: -1.5707963267948966 rad + pos: -20.5,15.5 parent: 2 - - uid: 27493 + - uid: 28157 components: - type: Transform - pos: 10.5,19.5 + rot: -1.5707963267948966 rad + pos: -20.5,14.5 parent: 2 - - uid: 27494 + - uid: 28158 components: - type: Transform - pos: 11.5,19.5 + pos: -37.5,-14.5 parent: 2 - - uid: 27495 + - uid: 28159 components: - type: Transform - pos: -8.5,58.5 + rot: -1.5707963267948966 rad + pos: -28.5,-11.5 parent: 2 - - uid: 27496 + - uid: 28160 components: - type: Transform - pos: -7.5,58.5 + rot: -1.5707963267948966 rad + pos: -95.5,35.5 parent: 2 - - uid: 27497 + - uid: 28161 components: - type: Transform - pos: -7.5,57.5 + rot: -1.5707963267948966 rad + pos: -97.5,35.5 parent: 2 - - uid: 27498 + - uid: 28162 components: - type: Transform - pos: -7.5,56.5 + rot: -1.5707963267948966 rad + pos: -96.5,35.5 parent: 2 -- proto: TableFancyOrange - entities: - - uid: 27499 + - uid: 43284 components: - type: Transform - pos: 2.5,-50.5 - parent: 2 - - uid: 27500 + pos: 54.5,70.5 + parent: 40599 + - uid: 43285 components: - type: Transform - pos: 2.5,-49.5 - parent: 2 - - uid: 27501 + pos: 54.5,68.5 + parent: 40599 + - uid: 43286 components: - type: Transform - pos: 75.5,-38.5 - parent: 2 - - uid: 27502 + rot: 3.141592653589793 rad + pos: 53.5,54.5 + parent: 40599 + - uid: 43287 components: - type: Transform - pos: 74.5,-39.5 - parent: 2 - - uid: 27503 + rot: 3.141592653589793 rad + pos: 53.5,57.5 + parent: 40599 + - uid: 43288 components: - type: Transform - pos: 74.5,-40.5 - parent: 2 - - uid: 27504 + rot: 3.141592653589793 rad + pos: 53.5,55.5 + parent: 40599 + - uid: 43289 components: - type: Transform - pos: 74.5,-38.5 - parent: 2 - - uid: 27505 + rot: -1.5707963267948966 rad + pos: 53.5,56.5 + parent: 40599 + - uid: 43290 components: - type: Transform - pos: 74.5,-41.5 - parent: 2 - - uid: 27506 + rot: 3.141592653589793 rad + pos: 55.5,56.5 + parent: 40599 + - uid: 43291 components: - type: Transform - pos: 2.5,-51.5 - parent: 2 - - uid: 27507 + rot: 3.141592653589793 rad + pos: 56.5,57.5 + parent: 40599 + - uid: 43292 components: - type: Transform - pos: 3.5,-49.5 - parent: 2 -- proto: TableFancyPink - entities: - - uid: 27508 + rot: 3.141592653589793 rad + pos: 55.5,57.5 + parent: 40599 + - uid: 43293 components: - type: Transform - pos: -75.5,12.5 - parent: 2 -- proto: TableFancyPurple - entities: - - uid: 45910 + rot: 3.141592653589793 rad + pos: 41.5,80.5 + parent: 40599 + - uid: 43294 components: - type: Transform - pos: -1.5,4.5 - parent: 44970 - - uid: 45911 + rot: 3.141592653589793 rad + pos: 43.5,80.5 + parent: 40599 + - uid: 43295 components: - type: Transform - pos: 1.5,4.5 - parent: 44970 - - uid: 45912 + rot: 3.141592653589793 rad + pos: 44.5,80.5 + parent: 40599 + - uid: 43296 components: - type: Transform - pos: -2.5,4.5 - parent: 44970 - - uid: 45913 + rot: 3.141592653589793 rad + pos: 42.5,80.5 + parent: 40599 + - uid: 43297 components: - type: Transform - pos: 2.5,4.5 - parent: 44970 -- proto: TableFancyRed - entities: - - uid: 27509 + pos: 52.5,34.5 + parent: 40599 + - uid: 47323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,22.5 - parent: 2 - - uid: 27510 + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 47245 + - uid: 47324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 47245 +- proto: TableReinforcedGlass + entities: + - uid: 28163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,51.5 parent: 2 - - uid: 27511 + - uid: 28164 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,20.5 + pos: -6.5,42.5 parent: 2 - - uid: 27512 + - uid: 28165 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,23.5 + pos: -8.5,42.5 parent: 2 - - uid: 27513 + - uid: 28166 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,24.5 + pos: -8.5,41.5 parent: 2 - - uid: 27514 + - uid: 28167 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,20.5 + pos: -6.5,41.5 parent: 2 -- proto: TableFrame - entities: - - uid: 27515 + - uid: 28168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-6.5 + pos: -14.5,51.5 parent: 2 - - uid: 27516 + - uid: 28169 components: - type: Transform - pos: 39.5,-43.5 + pos: -16.5,51.5 parent: 2 - - uid: 27517 + - uid: 28170 components: - type: Transform - pos: 42.5,-44.5 + rot: 1.5707963267948966 rad + pos: -4.5,41.5 parent: 2 - - uid: 27518 + - uid: 28171 components: - type: Transform - pos: 16.5,61.5 + rot: 1.5707963267948966 rad + pos: -4.5,42.5 parent: 2 - - uid: 27519 + - uid: 28172 components: - type: Transform - pos: -54.5,65.5 + rot: 1.5707963267948966 rad + pos: -4.5,40.5 parent: 2 - - uid: 27520 + - uid: 28173 components: - type: Transform - pos: -64.5,-4.5 + rot: -1.5707963267948966 rad + pos: -20.5,50.5 parent: 2 - - uid: 27521 + - uid: 28174 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,63.5 + pos: -4.5,-43.5 parent: 2 - - uid: 27522 + - uid: 28175 components: - type: Transform - pos: -30.5,27.5 + rot: 1.5707963267948966 rad + pos: -4.5,-46.5 parent: 2 - - uid: 27523 + - uid: 28176 components: - type: Transform - pos: 101.5,-40.5 + rot: 1.5707963267948966 rad + pos: -3.5,-46.5 parent: 2 - - uid: 42891 + - uid: 28177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,59.5 - parent: 40203 - - uid: 42892 + rot: 1.5707963267948966 rad + pos: -4.5,-44.5 + parent: 2 + - uid: 28178 components: - type: Transform - pos: 60.5,59.5 - parent: 40203 - - uid: 42893 + rot: 1.5707963267948966 rad + pos: -4.5,-45.5 + parent: 2 + - uid: 28179 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,72.5 - parent: 40203 - - uid: 42894 + rot: 1.5707963267948966 rad + pos: -3.5,-47.5 + parent: 2 + - uid: 28180 components: - type: Transform - pos: 54.5,69.5 - parent: 40203 -- proto: TableGlass - entities: - - uid: 27524 + rot: 1.5707963267948966 rad + pos: -4.5,-47.5 + parent: 2 + - uid: 28181 components: - type: Transform - pos: 43.5,54.5 + rot: 1.5707963267948966 rad + pos: -3.5,-45.5 parent: 2 - - uid: 27525 + - uid: 28182 components: - type: Transform - pos: 43.5,53.5 + rot: 1.5707963267948966 rad + pos: -3.5,-44.5 parent: 2 - - uid: 27526 + - uid: 28183 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,42.5 + pos: -3.5,-43.5 parent: 2 - - uid: 27527 + - uid: 28184 components: - type: Transform - pos: 29.5,56.5 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 parent: 2 - - uid: 27528 + - uid: 28185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-49.5 + pos: 0.5,-9.5 parent: 2 - - uid: 27529 + - uid: 28186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,35.5 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 parent: 2 - - uid: 27530 + - uid: 28187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,33.5 + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 parent: 2 - - uid: 27531 + - uid: 28188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,32.5 + pos: 35.5,-53.5 parent: 2 - - uid: 27532 + - uid: 28189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,34.5 + pos: -24.5,50.5 parent: 2 - - uid: 27533 + - uid: 28190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,27.5 + pos: -23.5,50.5 parent: 2 - - uid: 27534 + - uid: 28191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-35.5 + pos: 81.5,-21.5 parent: 2 - - uid: 27535 + - uid: 28192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 + pos: 78.5,-21.5 parent: 2 - - uid: 27536 + - uid: 28193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,53.5 + pos: 78.5,-9.5 parent: 2 - - uid: 27537 + - uid: 28194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,54.5 + pos: 81.5,-9.5 parent: 2 - - uid: 27538 + - uid: 28195 components: - type: Transform - pos: 16.5,54.5 + pos: 69.5,-10.5 parent: 2 - - uid: 27539 + - uid: 28196 components: - type: Transform - pos: 16.5,53.5 + pos: 69.5,-20.5 parent: 2 - - uid: 27540 + - uid: 28197 components: - type: Transform - pos: 14.5,60.5 + rot: 3.141592653589793 rad + pos: -7.5,42.5 parent: 2 - - uid: 27541 + - uid: 28198 components: - type: Transform - pos: 8.5,60.5 + pos: 3.5,36.5 parent: 2 - - uid: 27542 + - uid: 28199 components: - type: Transform - pos: 29.5,61.5 + pos: -4.5,58.5 parent: 2 - - uid: 27543 + - uid: 28200 components: - type: Transform - pos: 29.5,60.5 + pos: -4.5,57.5 parent: 2 - - uid: 27544 + - uid: 28201 components: - type: Transform - pos: 29.5,59.5 + pos: -4.5,56.5 parent: 2 - - uid: 27545 + - uid: 28202 components: - type: Transform - pos: 29.5,57.5 + pos: 13.5,37.5 parent: 2 - - uid: 27546 + - uid: 43298 components: - type: Transform - pos: 28.5,56.5 - parent: 2 - - uid: 27547 + pos: 51.5,34.5 + parent: 40599 + - uid: 43299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,11.5 - parent: 2 - - uid: 27548 + pos: 53.5,34.5 + parent: 40599 +- proto: TableStone + entities: + - uid: 28203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,12.5 + rot: 1.5707963267948966 rad + pos: 26.5,11.5 parent: 2 - - uid: 27549 + - uid: 28204 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,17.5 + pos: 28.5,11.5 parent: 2 - - uid: 27550 + - uid: 28205 components: - type: Transform - pos: -52.5,15.5 + rot: 1.5707963267948966 rad + pos: 27.5,11.5 parent: 2 - - uid: 27551 + - uid: 28206 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-33.5 + pos: -110.5,32.5 parent: 2 - - uid: 27552 + - uid: 28207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,8.5 + rot: -1.5707963267948966 rad + pos: -107.5,32.5 parent: 2 - - uid: 27553 + - uid: 28208 components: - type: Transform - pos: -54.5,15.5 + pos: -60.5,48.5 parent: 2 - - uid: 27554 + - uid: 28209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,40.5 + pos: -59.5,48.5 parent: 2 - - uid: 27555 + - uid: 28210 components: - type: Transform - pos: 5.5,39.5 + pos: 22.5,21.5 parent: 2 - - uid: 27556 + - uid: 28211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,38.5 + pos: -4.5,-50.5 parent: 2 - - uid: 27557 + - uid: 28212 components: - type: Transform - pos: 43.5,48.5 + pos: -5.5,-50.5 parent: 2 - - uid: 27558 + - uid: 28213 components: - type: Transform - pos: 43.5,51.5 + pos: -3.5,-50.5 parent: 2 - - uid: 27559 + - uid: 28214 components: - type: Transform - pos: 39.5,51.5 + rot: -1.5707963267948966 rad + pos: 43.5,21.5 parent: 2 - - uid: 27560 + - uid: 28215 components: - type: Transform - pos: -43.5,-11.5 + rot: -1.5707963267948966 rad + pos: 43.5,22.5 parent: 2 - - uid: 27561 + - uid: 28216 components: - type: Transform - pos: 43.5,49.5 + rot: -1.5707963267948966 rad + pos: 43.5,20.5 parent: 2 - - uid: 27562 + - uid: 28217 components: - type: Transform - pos: -44.5,-11.5 + rot: -1.5707963267948966 rad + pos: 0.5,11.5 parent: 2 - - uid: 27563 + - uid: 28218 components: - type: Transform - pos: 19.5,22.5 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 parent: 2 - - uid: 27564 + - uid: 28219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-4.5 + pos: 24.5,-3.5 parent: 2 - - uid: 27565 + - uid: 28220 components: - type: Transform - pos: -100.5,22.5 + pos: 26.5,-3.5 parent: 2 - - uid: 27566 + - uid: 28221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,62.5 + pos: 22.5,22.5 parent: 2 - - uid: 27567 + - uid: 28222 components: - type: Transform - pos: -87.5,55.5 + pos: 79.5,-36.5 parent: 2 - - uid: 27568 + - uid: 28223 components: - type: Transform - pos: -88.5,55.5 + rot: 3.141592653589793 rad + pos: -54.5,-2.5 parent: 2 -- proto: TablePlasmaGlass - entities: - - uid: 45914 - components: - - type: Transform - pos: 7.5,4.5 - parent: 44970 - - uid: 45915 - components: - - type: Transform - pos: 7.5,2.5 - parent: 44970 - - uid: 45916 - components: - - type: Transform - pos: 7.5,3.5 - parent: 44970 -- proto: TableReinforced - entities: - - uid: 27569 + - uid: 28224 components: - type: Transform - pos: 97.5,-40.5 + rot: 3.141592653589793 rad + pos: -53.5,-2.5 parent: 2 - - uid: 27570 + - uid: 28225 components: - type: Transform - pos: 5.5,-44.5 + rot: 3.141592653589793 rad + pos: -52.5,-2.5 parent: 2 - - uid: 27571 + - uid: 28226 components: - type: Transform - pos: 6.5,-44.5 + rot: 3.141592653589793 rad + pos: -51.5,-2.5 parent: 2 - - uid: 27572 + - uid: 28227 components: - type: Transform - pos: -27.5,16.5 + pos: -101.5,9.5 parent: 2 - - uid: 27573 + - uid: 28228 components: - type: Transform - pos: -25.5,16.5 + pos: -101.5,10.5 parent: 2 - - uid: 27574 + - uid: 28229 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-31.5 + pos: -101.5,11.5 parent: 2 - - uid: 27575 + - uid: 28230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 69.5,-32.5 + pos: -101.5,12.5 parent: 2 - - uid: 27576 + - uid: 28231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-8.5 + rot: 1.5707963267948966 rad + pos: -115.5,9.5 parent: 2 - - uid: 27577 + - uid: 28232 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-16.5 + pos: -114.5,9.5 parent: 2 - - uid: 27578 + - uid: 28233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-20.5 + rot: 1.5707963267948966 rad + pos: -112.5,9.5 parent: 2 - - uid: 27579 + - uid: 28234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-20.5 + rot: 1.5707963267948966 rad + pos: -113.5,9.5 parent: 2 - - uid: 27580 + - uid: 28235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-15.5 + rot: 1.5707963267948966 rad + pos: 25.5,11.5 parent: 2 - - uid: 27581 + - uid: 28236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-17.5 + pos: -57.5,52.5 parent: 2 - - uid: 27582 + - uid: 43300 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-20.5 - parent: 2 - - uid: 27583 + pos: 60.5,82.5 + parent: 40599 + - uid: 43301 components: - type: Transform - pos: -30.5,-16.5 - parent: 2 - - uid: 27584 + rot: 3.141592653589793 rad + pos: 36.5,72.5 + parent: 40599 + - uid: 43302 components: - type: Transform - pos: -31.5,-16.5 - parent: 2 - - uid: 27585 + rot: 3.141592653589793 rad + pos: 39.5,72.5 + parent: 40599 + - uid: 43303 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-20.5 - parent: 2 - - uid: 27586 + pos: 37.5,72.5 + parent: 40599 + - uid: 43304 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-20.5 - parent: 2 - - uid: 27587 + pos: 38.5,72.5 + parent: 40599 +- proto: TableWood + entities: + - uid: 28237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-15.5 + pos: -77.5,18.5 parent: 2 - - uid: 27588 + - uid: 28238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-19.5 + pos: -75.5,18.5 parent: 2 - - uid: 27589 + - uid: 28239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-20.5 + pos: 51.5,-9.5 parent: 2 - - uid: 27590 + - uid: 28240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-19.5 + rot: 1.5707963267948966 rad + pos: 53.5,-12.5 parent: 2 - - uid: 27591 + - uid: 28241 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-19.5 + rot: 1.5707963267948966 rad + pos: 54.5,-12.5 parent: 2 - - uid: 27592 + - uid: 28242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-21.5 + pos: 45.5,-9.5 parent: 2 - - uid: 27593 + - uid: 28243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-17.5 + rot: 1.5707963267948966 rad + pos: -31.5,23.5 parent: 2 - - uid: 27594 + - uid: 28244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-20.5 + rot: -1.5707963267948966 rad + pos: 28.5,53.5 parent: 2 - - uid: 27595 + - uid: 28245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-15.5 + pos: -6.5,22.5 parent: 2 - - uid: 27596 + - uid: 28246 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-15.5 + pos: 4.5,61.5 parent: 2 - - uid: 27597 + - uid: 28247 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-17.5 + pos: 3.5,60.5 parent: 2 - - uid: 27598 + - uid: 28248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-17.5 + pos: -13.5,57.5 parent: 2 - - uid: 27599 + - uid: 28249 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,17.5 + pos: 3.5,61.5 parent: 2 - - uid: 27600 + - uid: 28250 components: - type: Transform - pos: 8.5,-4.5 + pos: -15.5,57.5 parent: 2 - - uid: 27601 + - uid: 28251 components: - type: Transform - pos: 8.5,-3.5 + pos: -14.5,57.5 parent: 2 - - uid: 27602 + - uid: 28252 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-11.5 - parent: 2 - - uid: 27603 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,42.5 + pos: 1.5,-46.5 parent: 2 - - uid: 27604 + - uid: 28253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,42.5 + rot: -1.5707963267948966 rad + pos: 82.5,-39.5 parent: 2 - - uid: 27605 + - uid: 28254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,42.5 + rot: -1.5707963267948966 rad + pos: 81.5,-40.5 parent: 2 - - uid: 27606 + - uid: 28255 components: - type: Transform - pos: -8.5,49.5 + rot: -1.5707963267948966 rad + pos: 82.5,-38.5 parent: 2 - - uid: 27607 + - uid: 28256 components: - type: Transform - pos: -9.5,49.5 + rot: -1.5707963267948966 rad + pos: 82.5,-40.5 parent: 2 - - uid: 27608 + - uid: 28257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,-48.5 + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 parent: 2 - - uid: 27609 + - uid: 28258 components: - type: Transform - pos: 76.5,-48.5 + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 parent: 2 - - uid: 27610 + - uid: 28259 components: - type: Transform - pos: 0.5,-42.5 + pos: 15.5,-7.5 parent: 2 - - uid: 27611 + - uid: 28260 components: - type: Transform - pos: 0.5,-43.5 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 parent: 2 - - uid: 27612 + - uid: 28261 components: - type: Transform - pos: 0.5,-44.5 + rot: -1.5707963267948966 rad + pos: 8.5,-9.5 parent: 2 - - uid: 27613 + - uid: 28262 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-36.5 + rot: 1.5707963267948966 rad + pos: 13.5,-9.5 parent: 2 - - uid: 27614 + - uid: 28263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-35.5 + pos: 25.5,-51.5 parent: 2 - - uid: 27615 + - uid: 28264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 + rot: 1.5707963267948966 rad + pos: 37.5,23.5 parent: 2 - - uid: 27616 + - uid: 28265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 + rot: 1.5707963267948966 rad + pos: 37.5,17.5 parent: 2 - - uid: 27617 + - uid: 28266 components: - type: Transform - pos: -1.5,-1.5 + pos: 58.5,13.5 parent: 2 - - uid: 27618 + - uid: 28267 components: - type: Transform - pos: -0.5,-1.5 + pos: 57.5,13.5 parent: 2 - - uid: 27619 + - uid: 28268 components: - type: Transform - pos: 5.5,-1.5 + pos: 59.5,3.5 parent: 2 - - uid: 27620 + - uid: 28269 components: - type: Transform - pos: 6.5,-1.5 + pos: 59.5,3.5 parent: 2 - - uid: 27621 + - uid: 28270 components: - type: Transform - pos: -29.5,-1.5 + pos: 59.5,4.5 parent: 2 - - uid: 27622 + - uid: 28271 components: - type: Transform - pos: -28.5,-1.5 + pos: 59.5,2.5 parent: 2 - - uid: 27623 + - uid: 28272 components: - type: Transform - pos: -4.5,-13.5 + pos: 59.5,-0.5 parent: 2 - - uid: 27624 + - uid: 28273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-11.5 + pos: 59.5,-1.5 parent: 2 - - uid: 27625 + - uid: 28274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,3.5 + pos: 59.5,-2.5 parent: 2 - - uid: 27626 + - uid: 28275 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,4.5 + pos: 54.5,-4.5 parent: 2 - - uid: 27627 + - uid: 28276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,5.5 + pos: 53.5,-7.5 parent: 2 - - uid: 27628 + - uid: 28277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 + pos: 53.5,-6.5 parent: 2 - - uid: 27629 + - uid: 28278 components: - type: Transform - pos: -2.5,-38.5 + pos: 53.5,12.5 parent: 2 - - uid: 27630 + - uid: 28279 components: - type: Transform - pos: -1.5,-38.5 + pos: 53.5,11.5 parent: 2 - - uid: 27631 + - uid: 28280 components: - type: Transform - pos: -1.5,-37.5 + pos: 52.5,12.5 parent: 2 - - uid: 27632 + - uid: 28281 components: - type: Transform - pos: -1.5,-36.5 + pos: 51.5,12.5 parent: 2 - - uid: 27633 + - uid: 28282 components: - type: Transform - pos: -1.5,-35.5 + pos: 45.5,21.5 parent: 2 - - uid: 27634 + - uid: 28283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-35.5 + pos: 26.5,39.5 parent: 2 - - uid: 27635 + - uid: 28284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-48.5 + pos: 45.5,23.5 parent: 2 - - uid: 27636 + - uid: 28285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-48.5 + pos: 46.5,21.5 parent: 2 - - uid: 27637 + - uid: 28286 components: - type: Transform - pos: 16.5,-34.5 + rot: 1.5707963267948966 rad + pos: 37.5,20.5 parent: 2 - - uid: 27638 + - uid: 28287 components: - type: Transform - pos: 16.5,-35.5 + pos: 40.5,20.5 parent: 2 - - uid: 27639 + - uid: 28288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,-48.5 + pos: 40.5,19.5 parent: 2 - - uid: 27640 + - uid: 28289 components: - type: Transform - pos: 79.5,-48.5 + pos: 40.5,18.5 parent: 2 - - uid: 27641 + - uid: 28290 components: - type: Transform - pos: 78.5,-48.5 + pos: 40.5,21.5 parent: 2 - - uid: 27642 + - uid: 28291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,-25.5 + pos: 40.5,22.5 parent: 2 - - uid: 27643 + - uid: 28292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-55.5 + pos: -3.5,-3.5 parent: 2 - - uid: 27644 + - uid: 28293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-54.5 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 parent: 2 - - uid: 27645 + - uid: 28294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-56.5 + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 parent: 2 - - uid: 27646 + - uid: 28295 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-56.5 + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 parent: 2 - - uid: 27647 + - uid: 28296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-56.5 + pos: -3.5,-12.5 parent: 2 - - uid: 27648 + - uid: 28297 components: - type: Transform - pos: 77.5,-48.5 + pos: -3.5,-11.5 parent: 2 - - uid: 27649 + - uid: 28298 components: - type: Transform - pos: 84.5,-46.5 + pos: -10.5,-11.5 parent: 2 - - uid: 27650 + - uid: 28299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-7.5 + rot: 3.141592653589793 rad + pos: -9.5,-12.5 parent: 2 - - uid: 27651 + - uid: 28300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-9.5 + rot: 3.141592653589793 rad + pos: -10.5,-12.5 parent: 2 - - uid: 27652 + - uid: 28301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-10.5 + pos: -26.5,7.5 parent: 2 - - uid: 27653 + - uid: 28302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,7.5 + pos: -25.5,8.5 parent: 2 - - uid: 27654 + - uid: 28303 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,6.5 + rot: -1.5707963267948966 rad + pos: -26.5,8.5 parent: 2 - - uid: 27655 + - uid: 28304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,7.5 + pos: 32.5,-53.5 parent: 2 - - uid: 27656 + - uid: 28305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,6.5 + pos: 33.5,-53.5 parent: 2 - - uid: 27657 + - uid: 28306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,8.5 + rot: 3.141592653589793 rad + pos: 27.5,-53.5 parent: 2 - - uid: 27658 + - uid: 28307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 + pos: 24.5,-51.5 parent: 2 - - uid: 27659 + - uid: 28308 components: - type: Transform - pos: -44.5,4.5 + pos: 25.5,-52.5 parent: 2 - - uid: 27660 + - uid: 28309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-0.5 + pos: 25.5,-53.5 parent: 2 - - uid: 27661 + - uid: 28310 components: - type: Transform - pos: 45.5,-47.5 + pos: 3.5,-36.5 parent: 2 - - uid: 27662 + - uid: 28311 components: - type: Transform - pos: 44.5,-47.5 + pos: 9.5,-36.5 parent: 2 - - uid: 27663 + - uid: 28312 components: - type: Transform - pos: 45.5,-49.5 + rot: 1.5707963267948966 rad + pos: -9.5,-7.5 parent: 2 - - uid: 27664 + - uid: 28313 components: - type: Transform - pos: 45.5,-48.5 + rot: 1.5707963267948966 rad + pos: -9.5,-6.5 parent: 2 - - uid: 27665 + - uid: 28314 components: - type: Transform - pos: 38.5,-48.5 + pos: -8.5,-7.5 parent: 2 - - uid: 27666 + - uid: 28315 components: - type: Transform - pos: -47.5,34.5 + pos: 38.5,-3.5 parent: 2 - - uid: 27667 + - uid: 28316 components: - type: Transform - pos: -46.5,34.5 + pos: 38.5,-2.5 parent: 2 - - uid: 27668 + - uid: 28317 components: - type: Transform - pos: 80.5,5.5 + rot: 1.5707963267948966 rad + pos: 33.5,-9.5 parent: 2 - - uid: 27669 + - uid: 28318 components: - type: Transform - pos: 80.5,6.5 + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 parent: 2 - - uid: 27670 + - uid: 28319 components: - type: Transform - pos: 79.5,5.5 + pos: 39.5,13.5 parent: 2 - - uid: 27671 + - uid: 28320 components: - type: Transform - pos: 81.5,3.5 + pos: 40.5,13.5 parent: 2 - - uid: 27672 + - uid: 28321 components: - type: Transform - pos: 80.5,3.5 + pos: 18.5,-11.5 parent: 2 - - uid: 27673 + - uid: 28322 components: - type: Transform - pos: 77.5,3.5 + pos: 18.5,-13.5 parent: 2 - - uid: 27674 + - uid: 28323 components: - type: Transform - pos: 78.5,3.5 + pos: 17.5,-13.5 parent: 2 - - uid: 27675 + - uid: 28324 components: - type: Transform - pos: 79.5,3.5 + pos: 13.5,19.5 parent: 2 - - uid: 27676 + - uid: 28325 components: - type: Transform - pos: 40.5,-45.5 + pos: 13.5,18.5 parent: 2 - - uid: 27677 + - uid: 28326 components: - type: Transform - pos: 38.5,-49.5 + pos: 6.5,-49.5 parent: 2 - - uid: 27678 + - uid: 28327 components: - type: Transform - pos: 38.5,-45.5 + pos: 7.5,-49.5 parent: 2 - - uid: 27679 + - uid: 28328 components: - type: Transform - pos: 39.5,-49.5 + rot: -1.5707963267948966 rad + pos: 25.5,60.5 parent: 2 - - uid: 27680 + - uid: 28329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,2.5 + rot: -1.5707963267948966 rad + pos: 25.5,61.5 parent: 2 - - uid: 27681 + - uid: 28330 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 + pos: 7.5,44.5 parent: 2 - - uid: 27682 + - uid: 28331 components: - type: Transform - pos: -35.5,-13.5 + pos: 7.5,43.5 parent: 2 - - uid: 27683 + - uid: 28332 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,36.5 + pos: -40.5,8.5 parent: 2 - - uid: 27684 + - uid: 28333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,36.5 + pos: -40.5,4.5 parent: 2 - - uid: 27685 + - uid: 28334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,36.5 + pos: -40.5,3.5 parent: 2 - - uid: 27686 + - uid: 28335 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,36.5 + pos: 92.5,-25.5 parent: 2 - - uid: 27687 + - uid: 28336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,34.5 + pos: -60.5,51.5 parent: 2 - - uid: 27688 + - uid: 28337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,34.5 + pos: -60.5,52.5 parent: 2 - - uid: 27689 + - uid: 28338 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,34.5 + pos: 2.5,-46.5 parent: 2 - - uid: 27690 + - uid: 28339 components: - type: Transform - pos: -4.5,34.5 + pos: -15.5,58.5 parent: 2 - - uid: 27691 + - uid: 28340 components: - type: Transform - pos: -4.5,36.5 + pos: -24.5,26.5 parent: 2 - - uid: 27692 + - uid: 28341 components: - type: Transform - pos: -10.5,53.5 + pos: -23.5,26.5 parent: 2 - - uid: 27693 + - uid: 28342 components: - type: Transform - pos: 25.5,-28.5 + pos: -7.5,18.5 parent: 2 - - uid: 27694 + - uid: 28343 components: - type: Transform - pos: -1.5,-33.5 + pos: -7.5,19.5 parent: 2 - - uid: 27695 + - uid: 28344 components: - type: Transform - pos: -1.5,-32.5 + rot: -1.5707963267948966 rad + pos: -20.5,26.5 parent: 2 - - uid: 27696 + - uid: 28345 components: - type: Transform - pos: -1.5,-31.5 + pos: -43.5,-16.5 parent: 2 - - uid: 27697 + - uid: 28346 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-29.5 + pos: -23.5,25.5 parent: 2 - - uid: 27698 + - uid: 28347 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-29.5 + pos: -44.5,-16.5 parent: 2 - - uid: 27699 + - uid: 28348 components: - type: Transform - pos: -10.5,54.5 + pos: 7.5,20.5 parent: 2 - - uid: 27700 + - uid: 28349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-14.5 + pos: -21.5,22.5 parent: 2 - - uid: 27701 + - uid: 28350 components: - type: Transform - pos: -36.5,-12.5 + pos: -20.5,22.5 parent: 2 - - uid: 27702 + - uid: 28351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-11.5 + pos: -18.5,22.5 parent: 2 - - uid: 27703 + - uid: 28352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-11.5 + pos: -18.5,23.5 parent: 2 - - uid: 27704 + - uid: 28353 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-12.5 + pos: -115.5,3.5 parent: 2 - - uid: 27705 + - uid: 28354 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,22.5 + pos: -114.5,5.5 parent: 2 - - uid: 27706 + - uid: 28355 components: - type: Transform rot: 3.141592653589793 rad - pos: -109.5,22.5 + pos: -115.5,4.5 parent: 2 - - uid: 27707 + - uid: 28356 components: - type: Transform rot: 3.141592653589793 rad - pos: -108.5,22.5 + pos: -115.5,5.5 parent: 2 - - uid: 27708 + - uid: 28357 components: - type: Transform rot: 3.141592653589793 rad - pos: -107.5,22.5 + pos: -114.5,3.5 parent: 2 - - uid: 27709 + - uid: 28358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-43.5 + rot: 3.141592653589793 rad + pos: -114.5,4.5 parent: 2 - - uid: 27710 + - uid: 28359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-42.5 + pos: 97.5,-25.5 parent: 2 - - uid: 27711 + - uid: 28360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-43.5 + pos: -110.5,10.5 parent: 2 - - uid: 27712 + - uid: 28361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-43.5 + pos: -110.5,11.5 parent: 2 - - uid: 27713 + - uid: 28362 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,-38.5 + pos: 9.5,-9.5 parent: 2 - - uid: 27714 + - uid: 28363 components: - type: Transform - pos: 65.5,-39.5 + pos: 42.5,25.5 parent: 2 - - uid: 27715 + - uid: 28364 components: - type: Transform - pos: -37.5,10.5 + pos: 43.5,25.5 parent: 2 - - uid: 27716 + - uid: 28365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-21.5 + rot: 1.5707963267948966 rad + pos: -103.5,7.5 parent: 2 - - uid: 27717 + - uid: 28366 components: - type: Transform - pos: -80.5,12.5 + rot: 1.5707963267948966 rad + pos: -103.5,11.5 parent: 2 - - uid: 27718 + - uid: 28367 components: - type: Transform - pos: -79.5,12.5 + pos: -50.5,68.5 parent: 2 - - uid: 27719 + - uid: 28368 components: - type: Transform - pos: -5.5,16.5 + rot: 1.5707963267948966 rad + pos: -117.5,20.5 parent: 2 - - uid: 27720 + - uid: 28369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-20.5 + pos: -117.5,24.5 parent: 2 - - uid: 27721 + - uid: 28370 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-16.5 + pos: -117.5,15.5 parent: 2 - - uid: 27722 + - uid: 28371 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,17.5 + pos: -117.5,16.5 parent: 2 - - uid: 27723 + - uid: 28372 components: - type: Transform - pos: -33.5,-19.5 + rot: 1.5707963267948966 rad + pos: 102.5,-20.5 parent: 2 - - uid: 27724 + - uid: 28373 components: - type: Transform - pos: -33.5,-18.5 + rot: 3.141592653589793 rad + pos: 92.5,-15.5 parent: 2 - - uid: 27725 + - uid: 28374 components: - type: Transform - pos: -33.5,-17.5 + rot: 3.141592653589793 rad + pos: 93.5,-15.5 parent: 2 - - uid: 27726 + - uid: 28375 components: - type: Transform - pos: -54.5,-32.5 + rot: 3.141592653589793 rad + pos: 92.5,-16.5 parent: 2 - - uid: 27727 + - uid: 28376 components: - type: Transform - pos: -26.5,16.5 + rot: 3.141592653589793 rad + pos: 94.5,-15.5 parent: 2 - - uid: 27728 + - uid: 28377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 + rot: 3.141592653589793 rad + pos: 93.5,-16.5 parent: 2 - - uid: 27729 + - uid: 28378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,14.5 + rot: 3.141592653589793 rad + pos: 94.5,-16.5 parent: 2 - - uid: 27730 + - uid: 28379 components: - type: Transform - pos: -37.5,-14.5 + pos: -25.5,26.5 parent: 2 - - uid: 27731 + - uid: 28380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-11.5 + rot: 1.5707963267948966 rad + pos: -36.5,21.5 parent: 2 - - uid: 42895 + - uid: 28381 components: - type: Transform - pos: 54.5,70.5 - parent: 40203 - - uid: 42896 + rot: 1.5707963267948966 rad + pos: -35.5,21.5 + parent: 2 + - uid: 28382 components: - type: Transform - pos: 54.5,68.5 - parent: 40203 - - uid: 42897 + rot: 1.5707963267948966 rad + pos: -34.5,21.5 + parent: 2 + - uid: 28383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,54.5 - parent: 40203 - - uid: 42898 + rot: 1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + - uid: 28384 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,57.5 - parent: 40203 - - uid: 42899 + pos: -43.5,27.5 + parent: 2 + - uid: 28385 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,55.5 - parent: 40203 - - uid: 42900 + pos: -43.5,26.5 + parent: 2 + - uid: 28386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,56.5 - parent: 40203 - - uid: 42901 + pos: -29.5,27.5 + parent: 2 + - uid: 43305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,56.5 - parent: 40203 - - uid: 42902 + pos: 68.5,77.5 + parent: 40599 + - uid: 43306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,57.5 - parent: 40203 - - uid: 42903 + pos: 65.5,77.5 + parent: 40599 + - uid: 43307 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,57.5 - parent: 40203 - - uid: 42904 + pos: 62.5,77.5 + parent: 40599 + - uid: 43308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,80.5 - parent: 40203 - - uid: 42905 + pos: 59.5,77.5 + parent: 40599 + - uid: 43309 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,80.5 - parent: 40203 - - uid: 42906 + pos: 45.5,25.5 + parent: 40599 + - uid: 43310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,80.5 - parent: 40203 - - uid: 42907 + pos: 45.5,26.5 + parent: 40599 + - uid: 43311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,80.5 - parent: 40203 - - uid: 42908 + pos: 68.5,41.5 + parent: 40599 + - uid: 43312 components: - type: Transform - pos: 52.5,34.5 - parent: 40203 -- proto: TableReinforcedGlass - entities: - - uid: 27732 + pos: 71.5,74.5 + parent: 40599 + - uid: 43313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,51.5 - parent: 2 - - uid: 27733 + rot: 1.5707963267948966 rad + pos: 31.5,29.5 + parent: 40599 + - uid: 43314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,42.5 - parent: 2 - - uid: 27734 + pos: 41.5,34.5 + parent: 40599 + - uid: 43315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,42.5 - parent: 2 - - uid: 27735 + pos: 71.5,75.5 + parent: 40599 + - uid: 43316 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,41.5 - parent: 2 - - uid: 27736 + pos: 75.5,27.5 + parent: 40599 + - uid: 43317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,41.5 - parent: 2 - - uid: 27737 + pos: 56.5,26.5 + parent: 40599 + - uid: 43318 components: - type: Transform - pos: -14.5,51.5 - parent: 2 - - uid: 27738 + pos: 55.5,26.5 + parent: 40599 + - uid: 43319 components: - type: Transform - pos: -16.5,51.5 - parent: 2 - - uid: 27739 + pos: 57.5,26.5 + parent: 40599 + - uid: 46270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,41.5 - parent: 2 - - uid: 27740 + pos: -0.5,-2.5 + parent: 45355 + - uid: 46271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,42.5 - parent: 2 - - uid: 27741 + pos: -1.5,-2.5 + parent: 45355 + - uid: 46272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,40.5 - parent: 2 - - uid: 27742 + pos: -2.5,-2.5 + parent: 45355 + - uid: 46273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,50.5 - parent: 2 - - uid: 27743 + pos: -3.5,-2.5 + parent: 45355 + - uid: 46813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-43.5 - parent: 2 - - uid: 27744 + pos: 3.5,4.5 + parent: 46584 + - uid: 47116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-46.5 - parent: 2 - - uid: 27745 + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 46943 + - uid: 47117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-46.5 - parent: 2 - - uid: 27746 + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 46943 + - uid: 47118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-44.5 - parent: 2 - - uid: 27747 + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 46943 + - uid: 47119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-45.5 - parent: 2 - - uid: 27748 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 46943 + - uid: 47120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-47.5 - parent: 2 - - uid: 27749 + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 46943 + - uid: 47121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-47.5 - parent: 2 - - uid: 27750 + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 46943 + - uid: 47122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 2 - - uid: 27751 + pos: -3.5,6.5 + parent: 46943 +- proto: TargetClown + entities: + - uid: 28387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-44.5 + pos: 53.5,10.5 parent: 2 - - uid: 27752 + - uid: 28388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-43.5 + rot: -1.5707963267948966 rad + pos: -20.5,-6.5 parent: 2 - - uid: 27753 + - uid: 28389 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-8.5 + pos: 27.049711,13.982457 parent: 2 - - uid: 27754 +- proto: TargetDarts + entities: + - uid: 28390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-9.5 + pos: 96.5,-26.5 parent: 2 - - uid: 27755 + - uid: 28391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 + pos: -30.49345,25.878252 parent: 2 - - uid: 27756 + - uid: 28392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 + pos: -20.5,-11.5 parent: 2 - - uid: 27757 +- proto: TargetHuman + entities: + - uid: 28393 components: - type: Transform - pos: 35.5,-53.5 + pos: -19.5,-9.5 parent: 2 - - uid: 27758 + - uid: 28394 components: - type: Transform - pos: -24.5,50.5 + rot: -1.5707963267948966 rad + pos: 28.377836,14.951207 parent: 2 - - uid: 27759 + - uid: 43320 components: - type: Transform - pos: -23.5,50.5 - parent: 2 - - uid: 27760 + pos: 42.00654,84.61649 + parent: 40599 + - uid: 43321 components: - type: Transform - pos: 81.5,-21.5 - parent: 2 - - uid: 27761 + pos: 44.549435,83.63212 + parent: 40599 +- proto: TargetStrange + entities: + - uid: 28395 components: - type: Transform - pos: 78.5,-21.5 + pos: -19.5,-10.5 parent: 2 - - uid: 27762 + - uid: 28396 components: - type: Transform - pos: 78.5,-9.5 + rot: -1.5707963267948966 rad + pos: 25.846586,15.310582 parent: 2 - - uid: 27763 + - uid: 43322 components: - type: Transform - pos: 81.5,-9.5 - parent: 2 - - uid: 27764 + pos: 41.647163,81.58524 + parent: 40599 +- proto: TargetSyndicate + entities: + - uid: 28397 components: - type: Transform - pos: 69.5,-10.5 + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 parent: 2 - - uid: 27765 + - uid: 28398 components: + - type: MetaData + desc: Мишень для стрельбы. На ней изображён офицер СБ. + name: мишень-офицер - type: Transform - pos: 69.5,-20.5 + pos: 27.5,14.5 parent: 2 - - uid: 27766 + - uid: 43323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,42.5 - parent: 2 - - uid: 27767 + pos: 42.522163,82.74149 + parent: 40599 +- proto: TegCenter + entities: + - uid: 28399 components: - type: Transform - pos: 3.5,36.5 + rot: 3.141592653589793 rad + pos: -18.5,-55.5 parent: 2 - - uid: 27768 + - type: ApcPowerReceiver + powerDisabled: True +- proto: TegCirculator + entities: + - uid: 28400 components: - type: Transform - pos: -4.5,58.5 + rot: -1.5707963267948966 rad + pos: -14.5,-53.5 parent: 2 - - uid: 27769 + - type: PointLight + color: '#FF3300FF' + - uid: 28401 components: - type: Transform - pos: -4.5,57.5 + rot: 1.5707963267948966 rad + pos: -14.5,-52.5 parent: 2 - - uid: 27770 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerFilledCargo + entities: + - uid: 28402 components: - type: Transform - pos: -4.5,56.5 + pos: -4.5,13.5 parent: 2 - - uid: 27771 +- proto: TelecomServerFilledCommand + entities: + - uid: 28403 components: - type: Transform - pos: 13.5,37.5 + pos: -1.5,15.5 parent: 2 - - uid: 42909 +- proto: TelecomServerFilledCommon + entities: + - uid: 28404 components: - type: Transform - pos: 51.5,34.5 - parent: 40203 - - uid: 42910 + pos: -3.5,14.5 + parent: 2 +- proto: TelecomServerFilledEngineering + entities: + - uid: 28405 components: - type: Transform - pos: 53.5,34.5 - parent: 40203 -- proto: TableStone + pos: -4.5,10.5 + parent: 2 +- proto: TelecomServerFilledMedical entities: - - uid: 27772 + - uid: 28406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,32.5 + pos: -3.5,10.5 parent: 2 - - uid: 27773 +- proto: TelecomServerFilledScience + entities: + - uid: 28407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,32.5 + pos: -2.5,11.5 parent: 2 - - uid: 27774 +- proto: TelecomServerFilledSecurity + entities: + - uid: 28408 components: - type: Transform - pos: -60.5,48.5 + pos: -4.5,12.5 parent: 2 - - uid: 27775 +- proto: TelecomServerFilledService + entities: + - uid: 28409 components: - type: Transform - pos: -59.5,48.5 + pos: -1.5,12.5 parent: 2 - - uid: 27776 +- proto: Telecrystal1 + entities: + - uid: 28410 components: - type: Transform - pos: 22.5,21.5 + pos: 4.546875,11.555578 parent: 2 - - uid: 27777 +- proto: TeslaCoil + entities: + - uid: 28411 components: - type: Transform - pos: -4.5,-50.5 + pos: -19.5,-50.5 parent: 2 - - uid: 27778 + - uid: 28412 components: - type: Transform - pos: -5.5,-50.5 + pos: -19.5,-51.5 parent: 2 - - uid: 27779 + - uid: 28413 components: - type: Transform - pos: -3.5,-50.5 + pos: -18.5,-50.5 parent: 2 - - uid: 27780 + - uid: 28414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,21.5 + pos: -18.5,-51.5 parent: 2 - - uid: 27781 + - uid: 28415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,22.5 + rot: 1.5707963267948966 rad + pos: -44.5,-37.5 parent: 2 - - uid: 27782 + - uid: 43324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,20.5 - parent: 2 - - uid: 27783 + rot: 1.5707963267948966 rad + pos: 47.5,37.5 + parent: 40599 + - type: LightningTarget + priority: 1 + - uid: 43325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 2 - - uid: 27784 + rot: 1.5707963267948966 rad + pos: 56.5,44.5 + parent: 40599 + - type: LightningTarget + priority: 1 + - uid: 43326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 2 - - uid: 27785 + pos: 40.5,21.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43327 components: - type: Transform - pos: 24.5,-3.5 - parent: 2 - - uid: 27786 + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43328 components: - type: Transform - pos: 26.5,-3.5 - parent: 2 - - uid: 27787 + rot: 3.141592653589793 rad + pos: 32.5,24.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43329 components: - type: Transform - pos: 22.5,22.5 - parent: 2 - - uid: 27788 + pos: 80.5,42.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43330 components: - type: Transform - pos: 79.5,-36.5 - parent: 2 - - uid: 27789 + pos: 83.5,31.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43331 components: - type: Transform - pos: -57.5,50.5 - parent: 2 - - uid: 27790 + rot: 3.141592653589793 rad + pos: 79.5,27.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-2.5 - parent: 2 - - uid: 27791 + pos: 84.5,37.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43333 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,-2.5 - parent: 2 - - uid: 27792 + pos: 62.5,35.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43334 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-2.5 - parent: 2 - - uid: 27793 + pos: 45.5,31.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43335 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-2.5 - parent: 2 - - uid: 27794 + pos: 40.5,42.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43336 components: - type: Transform - pos: -101.5,9.5 - parent: 2 - - uid: 27795 + pos: 59.5,19.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 + - uid: 43337 components: - type: Transform - pos: -101.5,10.5 - parent: 2 - - uid: 27796 + pos: 67.5,20.5 + parent: 40599 + - type: LightningTarget + damageFromLightning: 0 + lightningResistance: 20 + - type: Anchorable + flags: None + - type: LightningArcShooter + shootRange: 6 + shootMaxInterval: 4 + maxLightningArc: 2 +- proto: TeslaEnergyBall + entities: + - uid: 43338 components: - type: Transform - pos: -101.5,11.5 - parent: 2 - - uid: 27797 + pos: 52.520374,40.47589 + parent: 40599 + - type: Fixtures + fixtures: + EventHorizonCollider: + shape: !type:PhysShapeCircle + radius: 0.5 + position: 0,0 + mask: + - Opaque + layer: + - Impassable + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + density: 99999 + hard: True + restitution: 0.8 + friction: 0.4 + EventHorizonConsumer: + shape: !type:PhysShapeCircle + radius: 0.5 + position: 0,0 + mask: + - Opaque + layer: + - Impassable + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: PointLight + energy: 4 + - type: LightningArcShooter + shootRange: 5 + missingComponents: + - WarpPoint +- proto: TeslaGenerator + entities: + - uid: 28416 components: - type: Transform - pos: -101.5,12.5 + pos: -20.5,-51.5 parent: 2 - - uid: 27798 + - uid: 43339 components: + - type: MetaData + desc: Странное устройство, которое при запуске создаёт импульс Теслы. - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,9.5 - parent: 2 - - uid: 27799 + pos: 60.5,68.5 + parent: 40599 +- proto: TeslaGroundingRod + entities: + - uid: 28417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,9.5 + pos: -22.5,-50.5 parent: 2 - - uid: 27800 + - uid: 28418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,9.5 + pos: -22.5,-51.5 parent: 2 - - uid: 27801 + - uid: 28419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,9.5 + rot: -1.5707963267948966 rad + pos: -22.5,-48.5 parent: 2 - - uid: 27802 + - uid: 28420 components: - type: Transform - pos: -88.5,58.5 + pos: -47.5,-44.5 parent: 2 - - uid: 42911 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,82.5 - parent: 40203 - - uid: 42912 + - uid: 43340 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,72.5 - parent: 40203 - - uid: 42913 + pos: 61.5,57.5 + parent: 40599 +- proto: Thruster + entities: + - uid: 47325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,72.5 - parent: 40203 - - uid: 42914 + pos: -2.5,1.5 + parent: 47245 + - uid: 47326 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,72.5 - parent: 40203 - - uid: 42915 + pos: 3.5,-2.5 + parent: 47245 + - uid: 47327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,72.5 - parent: 40203 -- proto: TableWeb + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 47245 +- proto: TimerTrigger entities: - - uid: 27803 - components: - - type: MetaData - name: снежный стол - - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,63.5 - parent: 2 - - uid: 27804 + - uid: 28421 components: - - type: MetaData - name: снежный стол - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,63.5 + pos: -6.4998283,41.639626 parent: 2 -- proto: TableWood - entities: - - uid: 27805 + - uid: 28422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,23.5 + pos: -6.5062714,41.64871 parent: 2 - - uid: 27806 + - uid: 28423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,53.5 + pos: 38.745815,-48.786057 parent: 2 - - uid: 27807 +- proto: TintedWindow + entities: + - uid: 28424 components: - type: Transform - pos: -77.5,18.5 + pos: 53.5,-15.5 parent: 2 - - uid: 27808 + - uid: 28425 components: - type: Transform - pos: -6.5,22.5 + rot: -1.5707963267948966 rad + pos: -31.5,8.5 parent: 2 - - uid: 27809 + missingComponents: + - Occluder + - uid: 28426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,61.5 + rot: -1.5707963267948966 rad + pos: -31.5,7.5 parent: 2 - - uid: 27810 + missingComponents: + - Occluder + - uid: 28427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,60.5 + rot: -1.5707963267948966 rad + pos: -31.5,6.5 parent: 2 - - uid: 27811 + missingComponents: + - Occluder +- proto: ToiletDirtyWater + entities: + - uid: 28428 components: - type: Transform - pos: -13.5,57.5 + pos: 81.5,-33.5 parent: 2 - - uid: 27812 + - uid: 28429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,61.5 + pos: -36.5,16.5 parent: 2 - - uid: 27813 + - uid: 28430 components: - type: Transform - pos: -15.5,57.5 + pos: -38.5,16.5 parent: 2 - - uid: 27814 + - uid: 28431 components: - type: Transform - pos: -14.5,57.5 + rot: 3.141592653589793 rad + pos: 98.5,-6.5 parent: 2 - - uid: 27815 + - uid: 28432 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-46.5 + pos: -41.5,21.5 parent: 2 - - uid: 27816 + - uid: 43341 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,-39.5 - parent: 2 - - uid: 27817 + pos: 60.5,83.5 + parent: 40599 +- proto: ToiletEmpty + entities: + - uid: 26458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,-40.5 + rot: 1.5707963267948966 rad + pos: -113.5,30.5 parent: 2 - - uid: 27818 + - type: ContainerContainer + containers: + stash: !type:ContainerSlot + showEnts: False + occludes: True + ent: 26459 + disposals: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 28433 components: - type: Transform rot: -1.5707963267948966 rad - pos: 82.5,-38.5 + pos: 12.5,-51.5 parent: 2 - - uid: 27819 + - uid: 28434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 82.5,-40.5 + rot: 1.5707963267948966 rad + pos: -113.5,28.5 parent: 2 - - uid: 27820 + - uid: 28435 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-4.5 + pos: -113.5,32.5 parent: 2 - - uid: 27821 + - uid: 28436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-3.5 + pos: -42.5,-11.5 parent: 2 - - uid: 27822 + - uid: 28437 components: - type: Transform - pos: 15.5,-7.5 + rot: 1.5707963267948966 rad + pos: 30.5,-57.5 parent: 2 - - uid: 27823 + - uid: 28438 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-7.5 + pos: 42.5,27.5 parent: 2 - - uid: 27824 + - uid: 28439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-9.5 + pos: 42.5,29.5 parent: 2 - - uid: 27825 + - uid: 28440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-9.5 + pos: 67.5,7.5 parent: 2 - - uid: 27826 + - uid: 28441 components: - type: Transform - pos: 27.5,4.5 + pos: 46.5,27.5 parent: 2 - - uid: 27827 + - uid: 28442 components: - type: Transform - pos: 25.5,-51.5 + pos: 26.5,43.5 parent: 2 - - uid: 27828 + - uid: 28443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,23.5 + pos: 18.5,43.5 parent: 2 - - uid: 27829 + - uid: 28444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,17.5 + pos: -12.5,-3.5 parent: 2 - - uid: 27830 + - uid: 28445 components: - type: Transform - pos: 58.5,13.5 + pos: -42.5,17.5 parent: 2 - - uid: 27831 + - uid: 28446 components: - type: Transform - pos: 57.5,13.5 + pos: -50.5,17.5 parent: 2 - - uid: 27832 + - uid: 28447 components: - type: Transform - pos: 59.5,3.5 + pos: -46.5,17.5 parent: 2 - - uid: 27833 + - uid: 28448 components: - type: Transform - pos: 59.5,3.5 + rot: -1.5707963267948966 rad + pos: -8.5,61.5 parent: 2 - - uid: 27834 + - uid: 28449 components: - type: Transform - pos: 59.5,4.5 + rot: 3.141592653589793 rad + pos: 9.5,43.5 parent: 2 - - uid: 27835 + - uid: 28450 components: - type: Transform - pos: 59.5,2.5 + rot: 3.141592653589793 rad + pos: -55.5,-6.5 parent: 2 - - uid: 27836 + - uid: 28451 components: - type: Transform - pos: 59.5,-0.5 + rot: 3.141592653589793 rad + pos: -53.5,-6.5 parent: 2 - - uid: 27837 + - uid: 28452 components: - type: Transform - pos: 59.5,-1.5 + rot: 3.141592653589793 rad + pos: -51.5,-6.5 parent: 2 - - uid: 27838 + - uid: 28453 components: - type: Transform - pos: 59.5,-2.5 + rot: 3.141592653589793 rad + pos: 11.5,43.5 parent: 2 - - uid: 27839 +- proto: ToiletGoldenDirtyWater + entities: + - uid: 28454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-4.5 + rot: -1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 - - uid: 27840 +- proto: ToolboxArtisticFilled + entities: + - uid: 28455 components: - type: Transform - pos: 53.5,-7.5 + pos: 51.502857,9.609375 parent: 2 - - uid: 27841 +- proto: ToolboxElectricalFilled + entities: + - uid: 28456 components: - type: Transform - pos: 53.5,-6.5 + pos: -39.50682,-18.280804 parent: 2 - - uid: 27842 + - uid: 28457 components: - type: Transform - pos: 53.5,12.5 + pos: 0.44083977,-42.818436 parent: 2 - - uid: 27843 + - uid: 28458 components: - type: Transform - pos: 53.5,11.5 + pos: 12.48456,-12.386871 parent: 2 - - uid: 27844 + - uid: 28459 components: - type: Transform - pos: 52.5,12.5 + pos: -1.5544748,-36.291485 parent: 2 - - uid: 27845 + - uid: 28460 components: - type: Transform - pos: 51.5,12.5 + pos: 27.565733,-4.857082 parent: 2 - - uid: 27846 + - uid: 28461 components: - type: Transform - pos: 45.5,21.5 + pos: 38.501785,-51.494102 parent: 2 - - uid: 27847 + - uid: 28462 components: - type: Transform - pos: 26.5,39.5 + pos: 33.526527,-39.54986 parent: 2 - - uid: 27848 + - uid: 28463 components: - type: Transform - pos: 45.5,23.5 + pos: 3.497224,-46.493435 parent: 2 - - uid: 27849 + - uid: 28464 components: - type: Transform - pos: 46.5,21.5 + pos: -15.543264,-48.19861 parent: 2 - - uid: 27850 + - uid: 28465 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,20.5 + pos: 35.456463,-49.563187 parent: 2 - - uid: 27851 + - uid: 28466 components: - type: Transform - pos: 40.5,20.5 + pos: 18.514523,5.3799553 parent: 2 - - uid: 27852 + - uid: 28467 components: - type: Transform - pos: 40.5,19.5 + pos: 36.42236,39.43709 parent: 2 - - uid: 27853 + - uid: 28468 components: - type: Transform - pos: 40.5,18.5 + pos: -41.46334,67.65224 parent: 2 - - uid: 27854 + - uid: 43342 components: - type: Transform - pos: 40.5,21.5 - parent: 2 - - uid: 27855 + pos: 68.50333,63.407738 + parent: 40599 + - uid: 43343 components: - type: Transform - pos: 40.5,22.5 - parent: 2 - - uid: 27856 + pos: 68.50333,63.407738 + parent: 40599 +- proto: ToolboxEmergency + entities: + - uid: 28469 components: - type: Transform - pos: -3.5,-3.5 + pos: 74.41879,-31.91401 parent: 2 - - uid: 27857 +- proto: ToolboxEmergencyFilled + entities: + - uid: 28470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 + pos: 18.497179,27.551683 parent: 2 - - uid: 27858 + - uid: 28471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 + pos: -34.415714,42.66817 parent: 2 - - uid: 27859 + - uid: 28472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 + pos: 44.411743,-18.279934 parent: 2 - - uid: 27860 + - uid: 28473 components: - type: Transform - pos: -3.5,-12.5 + pos: 44.61487,-18.514309 parent: 2 - - uid: 27861 + - uid: 28474 components: - type: Transform - pos: -3.5,-11.5 + pos: 27.456358,-4.450832 parent: 2 - - uid: 27862 + - uid: 28475 components: - type: Transform - pos: -10.5,-11.5 + pos: 73.58111,-48.336777 parent: 2 - - uid: 27863 + - uid: 28476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-12.5 + pos: -25.185804,60.753143 parent: 2 - - uid: 27864 + - uid: 28477 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-12.5 + pos: -28.507282,-31.497547 parent: 2 - - uid: 27865 + - uid: 28478 components: - type: Transform - pos: -26.5,7.5 + pos: 30.42564,47.448265 parent: 2 - - uid: 27866 + - uid: 28479 components: - type: Transform - pos: -25.5,8.5 + pos: 56.33184,-16.058338 parent: 2 - - uid: 27867 + - uid: 28480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,8.5 + pos: 65.49677,-38.33129 parent: 2 - - uid: 27868 + - uid: 28481 components: - type: Transform - pos: 32.5,-53.5 + pos: 49.510033,26.60184 parent: 2 - - uid: 27869 + - uid: 28482 components: - type: Transform - pos: 33.5,-53.5 + pos: 60.505882,-14.367741 parent: 2 - - uid: 27870 + - uid: 46814 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-53.5 - parent: 2 - - uid: 27871 + pos: 4.736068,7.645486 + parent: 46584 +- proto: ToolboxGoldFilled + entities: + - uid: 28483 components: - type: Transform - pos: 24.5,-51.5 + pos: 53.488155,32.70133 parent: 2 - - uid: 27872 +- proto: ToolboxMechanicalFilled + entities: + - uid: 28484 components: - type: Transform - pos: 25.5,-52.5 + pos: 0.50333977,-42.443436 parent: 2 - - uid: 27873 + - uid: 28485 components: - type: Transform - pos: 25.5,-53.5 + pos: -1.5075998,-36.635235 parent: 2 - - uid: 27874 + - uid: 28486 components: - type: Transform - pos: 28.5,4.5 + pos: 27.534483,-7.232082 parent: 2 - - uid: 27875 + - uid: 28487 components: - type: Transform - pos: 3.5,-36.5 + pos: 38.470535,-51.228477 parent: 2 - - uid: 27876 + - uid: 28488 components: - type: Transform - pos: 9.5,-36.5 + pos: 33.510902,-39.315483 parent: 2 - - uid: 27877 + - uid: 28489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-7.5 + pos: -15.485029,-48.477337 parent: 2 - - uid: 27878 + - uid: 28490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 + pos: 35.503338,-49.36006 parent: 2 - - uid: 27879 + - uid: 28491 components: - type: Transform - pos: -8.5,-7.5 + pos: 10.453941,-45.260803 parent: 2 - - uid: 27880 + - uid: 28492 components: - type: Transform - pos: 38.5,-3.5 + pos: -47.485455,-22.434092 parent: 2 - - uid: 27881 + - uid: 28493 components: - type: Transform - pos: 38.5,-2.5 + pos: 36.632717,39.614815 parent: 2 - - uid: 27882 + - uid: 28494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-9.5 + pos: -39.522446,-18.499554 parent: 2 - - uid: 27883 + - uid: 43344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 2 - - uid: 27884 + pos: 68.6752,63.657738 + parent: 40599 +- proto: ToolboxSyndicateFilled + entities: + - uid: 28495 components: - type: Transform - pos: 39.5,13.5 + pos: -51.534374,-9.0857 parent: 2 - - uid: 27885 + - uid: 47250 components: - type: Transform - pos: 40.5,13.5 - parent: 2 - - uid: 27886 + parent: 47246 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Torch + entities: + - uid: 28496 components: - type: Transform - pos: 18.5,-11.5 + pos: 8.858051,-53.507282 parent: 2 - - uid: 27887 + - uid: 28497 components: - type: Transform - pos: 18.5,-13.5 + pos: -47.5023,34.732357 parent: 2 - - uid: 27888 + - uid: 28498 components: - type: Transform - pos: 17.5,-13.5 + pos: -47.17022,34.732357 parent: 2 - - uid: 27889 + - uid: 28499 components: - type: Transform - pos: 13.5,19.5 + pos: -47.365562,34.61517 parent: 2 - - uid: 27890 + - uid: 28500 components: - type: Transform - pos: 13.5,18.5 + pos: -63.183594,28.042547 parent: 2 - - uid: 27891 + - uid: 28501 components: - type: Transform - pos: 6.5,-49.5 + pos: 97.63609,0.22600174 parent: 2 - - uid: 27892 + - uid: 28502 components: - type: Transform - pos: 7.5,-49.5 + rot: 1.5707963267948966 rad + pos: 100.49547,6.1478767 parent: 2 - - uid: 27893 + - uid: 28503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,60.5 + pos: 95.54234,4.9135017 parent: 2 - - uid: 27894 +- proto: TorsoBorg + entities: + - uid: 28504 components: + - type: MetaData + name: топливный бак - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,61.5 + pos: 11.526532,-13.436012 parent: 2 - - uid: 27895 +- proto: TorsoBorgEngineer + entities: + - uid: 28505 components: + - type: MetaData + name: карбюратор - type: Transform - pos: 7.5,44.5 + rot: 3.141592653589793 rad + pos: 10.964032,-13.186012 parent: 2 - - uid: 27896 +- proto: ToyAmongPequeno + entities: + - uid: 28506 components: + - type: MetaData + name: маленький мота - type: Transform - pos: 7.5,43.5 + pos: 64.496,4.601742 parent: 2 - - uid: 27897 +- proto: ToyFigurineAtmosTech + entities: + - uid: 28507 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,8.5 + pos: -2.069769,-56.291653 parent: 2 - - uid: 27898 +- proto: ToyFigurineBartender + entities: + - uid: 28508 components: - type: Transform - pos: -40.5,4.5 + pos: 46.5085,27.467482 parent: 2 - - uid: 27899 +- proto: ToyFigurineBotanist + entities: + - uid: 28509 components: - type: Transform - pos: -40.5,3.5 + pos: 7.4806385,39.882698 parent: 2 - - uid: 27900 +- proto: ToyFigurineChemist + entities: + - uid: 28510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-25.5 + pos: 79.857,4.328513 parent: 2 - - uid: 27901 +- proto: ToyFigurineChiefEngineer + entities: + - uid: 28511 components: - type: Transform - pos: -60.5,51.5 + pos: -3.3560624,-45.491558 parent: 2 - - uid: 27902 +- proto: ToyFigurineClown + entities: + - uid: 28512 components: - type: Transform - pos: -60.5,52.5 + pos: -42.16116,1.7156641 parent: 2 - - uid: 27903 + - uid: 28513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-46.5 + pos: 59.976055,-37.0707 parent: 2 - - uid: 27904 +- proto: ToyFigurineDetective + entities: + - uid: 28514 components: - type: Transform - pos: -15.5,58.5 + pos: -19.846651,3.703557 parent: 2 - - uid: 27905 +- proto: ToyFigurineFootsoldier + entities: + - uid: 28515 components: - type: Transform - pos: -24.5,26.5 + pos: -20.54741,12.475927 parent: 2 - - uid: 27906 +- proto: ToyFigurineGreytider + entities: + - uid: 28516 components: - type: Transform - pos: -23.5,26.5 + pos: 59.580082,31.991037 parent: 2 - - uid: 27907 + - uid: 28517 components: - type: Transform - pos: -7.5,18.5 + pos: 59.314457,31.662912 parent: 2 - - uid: 27908 + - uid: 28518 components: - type: Transform - pos: -7.5,19.5 + pos: 0.08273792,20.542154 parent: 2 - - uid: 27909 +- proto: ToyFigurineHeadOfSecurity + entities: + - uid: 28519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,26.5 + pos: 53.28767,11.640625 parent: 2 - - uid: 27910 +- proto: ToyFigurineLibrarian + entities: + - uid: 28520 components: - type: Transform - pos: -43.5,-16.5 + pos: 1.2389879,20.198404 parent: 2 - - uid: 27911 +- proto: ToyFigurineMedicalDoctor + entities: + - uid: 28521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,25.5 + pos: -22.683216,43.365177 parent: 2 - - uid: 27912 +- proto: ToyFigurineMime + entities: + - uid: 28522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-16.5 + pos: 50.72813,-5.774392 parent: 2 - - uid: 27913 + - uid: 28523 components: - type: Transform - pos: 7.5,20.5 + pos: 60.708042,11.655405 parent: 2 - - uid: 27914 +- proto: ToyFigurineMusician + entities: + - uid: 28524 components: - type: Transform - pos: -21.5,22.5 + rot: -1.5707963267948966 rad + pos: 55.56302,13.478708 parent: 2 - - uid: 27915 +- proto: ToyFigurineNukie + entities: + - uid: 28525 components: - type: Transform - pos: -20.5,22.5 + pos: 94.42555,-5.875171 parent: 2 - - uid: 27916 +- proto: ToyFigurineParamedic + entities: + - uid: 28526 components: + - type: MetaData + desc: Фигурка, изображающая парамедика в пустотном скафандре. Он бежит. - type: Transform - pos: -18.5,22.5 + pos: 1.5194652,51.671997 parent: 2 - - uid: 27917 +- proto: ToyFigurineSalvage + entities: + - uid: 28527 components: - type: Transform - pos: -18.5,23.5 + pos: 79.785255,-48.2958 parent: 2 - - uid: 27918 + - uid: 28528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,3.5 + pos: 78.70713,-48.26455 parent: 2 - - uid: 27919 +- proto: ToyFigurineSpaceDragon + entities: + - uid: 28529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,5.5 + pos: 79.097755,-48.4833 parent: 2 - - uid: 27920 +- proto: ToyFigurineThief + entities: + - uid: 28530 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,4.5 + pos: -0.49538708,20.198404 parent: 2 - - uid: 27921 +- proto: ToyFigurineWizardFake + entities: + - uid: 28531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,5.5 + pos: 0.65471196,20.15153 parent: 2 - - uid: 27922 +- proto: ToyGriffin + entities: + - uid: 28532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,3.5 + pos: 5.598859,20.729654 parent: 2 - - uid: 27923 +- proto: ToyIan + entities: + - uid: 28533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,4.5 + pos: 50.07188,-5.743142 parent: 2 - - uid: 27924 + - uid: 28534 components: - type: Transform - pos: 97.5,-25.5 + pos: -3.2732525,-10.732463 parent: 2 - - uid: 27925 + - uid: 28535 components: - type: Transform - pos: -110.5,10.5 + pos: -3.741818,-10.702011 parent: 2 - - uid: 27926 + - uid: 28536 components: - type: Transform - pos: -110.5,11.5 + pos: -3.849533,-10.537165 parent: 2 - - uid: 27927 +- proto: ToyMouse + entities: + - uid: 28537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-9.5 + pos: -29.421806,-49.10284 parent: 2 - - uid: 27928 +- proto: ToyOwlman + entities: + - uid: 28538 components: - type: Transform - pos: 42.5,25.5 + pos: 5.317609,20.80778 parent: 2 - - uid: 27929 +- proto: ToyRubberDuck + entities: + - uid: 28539 components: - type: Transform - pos: 43.5,25.5 + pos: 18.532337,-2.4409986 parent: 2 - - uid: 27930 +- proto: ToySpawner + entities: + - uid: 28540 components: - type: Transform - pos: -75.5,16.5 + pos: 3.5,60.5 parent: 2 - - uid: 27931 + - uid: 28541 components: - type: Transform - pos: -76.5,18.5 + pos: 33.5,-9.5 parent: 2 - - uid: 27932 +- proto: TrackingImplanter + entities: + - uid: 8569 components: + - type: MetaData + name: Трекер - type: Transform - pos: -68.5,-2.5 - parent: 2 - - uid: 27933 + parent: 8558 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 28542 components: + - type: MetaData + name: имплантер - type: Transform - pos: -70.5,-4.5 + pos: 0.51899076,-11.491364 parent: 2 - - uid: 27934 +- proto: TrainingBomb + entities: + - uid: 28543 components: - type: Transform - pos: -66.5,-2.5 + rot: -1.5707963267948966 rad + pos: 94.5,-6.5 parent: 2 - - uid: 27935 +- proto: TrashBakedBananaPeel + entities: + - uid: 28544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,7.5 + pos: -35.7621,-54.576927 parent: 2 - - uid: 27936 +- proto: TrashBananaPeel + entities: + - uid: 28545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,11.5 + pos: 49.595833,11.261242 parent: 2 - - uid: 27937 + - uid: 28546 components: - type: Transform - pos: -50.5,68.5 + pos: 52.78325,-37.58314 parent: 2 - - uid: 27938 + - uid: 28547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,20.5 + pos: 10.546017,18.422005 parent: 2 - - uid: 27939 + - uid: 28548 components: - type: Transform - pos: -117.5,24.5 + pos: 52.521782,8.503786 parent: 2 - - uid: 27940 + - uid: 28549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,15.5 + pos: -41.4396,5.4598646 parent: 2 - - uid: 27941 + - uid: 47042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,16.5 - parent: 2 - - uid: 27942 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47043 components: - type: Transform - pos: -99.5,51.5 - parent: 2 - - uid: 27943 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TrashMimanaPeel + entities: + - uid: 28550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 102.5,-20.5 + pos: 61.504917,8.530405 parent: 2 - - uid: 27944 +- proto: trayScanner + entities: + - uid: 28551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-15.5 + pos: -13.657919,-48.391827 parent: 2 - - uid: 27945 +- proto: TreasureCoinAdamantine + entities: + - uid: 47044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-15.5 - parent: 2 - - uid: 27946 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 92.5,-16.5 - parent: 2 - - uid: 27947 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-15.5 - parent: 2 - - uid: 27948 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCoinDiamond + entities: + - uid: 47047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 93.5,-16.5 - parent: 2 - - uid: 27949 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 94.5,-16.5 - parent: 2 - - uid: 27950 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCoinGold + entities: + - uid: 47049 components: - type: Transform - pos: -25.5,26.5 - parent: 2 - - uid: 27951 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47050 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47051 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCoinIron + entities: + - uid: 47052 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47053 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47054 + components: + - type: Transform + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,21.5 - parent: 2 - - uid: 27952 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 47056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,21.5 - parent: 2 - - uid: 27953 + parent: 47031 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureHardDiskDrive + entities: + - uid: 43345 components: + - type: MetaData + desc: 'Носитель данных с этикеткой на нём. На ней написано: "Анапа 3007".' - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,21.5 - parent: 2 - - uid: 27954 + pos: 54.682728,70.30053 + parent: 40599 + - uid: 43346 components: + - type: MetaData + desc: 'Носитель данных с этикеткой на нём. На ней написано: "Уч. затрат на исслед. врат".' - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,21.5 - parent: 2 - - uid: 27956 + pos: 54.370228,70.35391 + parent: 40599 + - uid: 43347 components: + - type: MetaData + desc: 'Носитель данных с этикеткой на нём. На ней написано: "Импульсы анализ".' - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,27.5 - parent: 2 - - uid: 27957 + pos: 54.370228,70.24454 + parent: 40599 +- proto: Truncheon + entities: + - uid: 28552 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,26.5 + pos: -44.532578,-7.4675403 parent: 2 - - uid: 27958 + - uid: 28553 components: - type: Transform - pos: -29.5,27.5 + pos: -44.673203,-7.3894153 parent: 2 - - uid: 42916 + - uid: 28554 components: - type: Transform - pos: 68.5,77.5 - parent: 40203 - - uid: 42917 + pos: -44.360703,-7.5456653 + parent: 2 + - uid: 28555 components: - type: Transform - pos: 65.5,77.5 - parent: 40203 - - uid: 42918 + pos: -101.5657,10.440189 + parent: 2 + - uid: 28556 components: - type: Transform - pos: 62.5,77.5 - parent: 40203 - - uid: 42919 + pos: -101.65945,10.553135 + parent: 2 + - uid: 43348 components: - type: Transform - pos: 59.5,77.5 - parent: 40203 - - uid: 42920 + rot: 2.7401669256310974 rad + pos: 30.76935,68.9 + parent: 40599 +- proto: TubaInstrument + entities: + - uid: 28557 components: - type: Transform - pos: 45.5,25.5 - parent: 40203 - - uid: 42921 + pos: 55.5,-7.5 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 28558 components: + - type: MetaData + desc: Рычаг от конвеерных лент тира. - type: Transform - pos: 45.5,26.5 - parent: 40203 - - uid: 42922 + pos: -25.033798,-10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15852: + - Left: Forward + - Right: Forward + - Middle: Off + 15850: + - Middle: Off + - Right: Forward + - Left: Forward + 15833: + - Middle: Off + - Right: Forward + - Left: Forward + 15832: + - Middle: Off + - Right: Forward + - Left: Forward + 15835: + - Left: Forward + - Right: Forward + - Middle: Off + 15849: + - Middle: Off + - Right: Forward + - Left: Forward + 15851: + - Middle: Off + - Right: Forward + - Left: Forward + 15831: + - Left: Forward + - Right: Forward + - Middle: Off + 15834: + - Left: Forward + - Right: Forward + - Middle: Off + 15848: + - Middle: Off + - Right: Forward + - Left: Forward + 15847: + - Left: Forward + - Right: Forward + - Middle: Off + 15846: + - Middle: Off + - Right: Forward + - Left: Forward + - uid: 28559 components: - type: Transform - pos: 68.5,41.5 - parent: 40203 - - uid: 42923 + pos: 21.5,-32.5 + parent: 2 + - uid: 28560 components: - type: Transform - pos: 71.5,74.5 - parent: 40203 - - uid: 42924 + pos: 5.4437823,31.649122 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26587: + - Left: Open + - Right: Open + - Middle: Close + 26586: + - Left: Open + - Right: Open + - Middle: Close + - uid: 28561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,29.5 - parent: 40203 - - uid: 42925 + pos: 72.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15826: + - Left: Forward + - Right: Reverse + - Middle: Off + 15829: + - Left: Forward + - Right: Reverse + - Middle: Off + 15828: + - Left: Forward + - Right: Reverse + - Middle: Off + 15827: + - Left: Forward + - Right: Reverse + - Middle: Off + 15839: + - Left: Forward + - Right: Reverse + - Middle: Off + 15825: + - Left: Forward + - Right: Reverse + - Middle: Off + 15838: + - Left: Forward + - Right: Reverse + - Middle: Off + 15837: + - Left: Forward + - Right: Reverse + - Middle: Off + 15845: + - Left: Forward + - Right: Reverse + - Middle: Off + 15841: + - Left: Forward + - Right: Reverse + - Middle: Off + 15836: + - Left: Forward + - Right: Reverse + - Middle: Off + 15844: + - Left: Forward + - Right: Reverse + - Middle: Off + 15840: + - Left: Forward + - Right: Reverse + - Middle: Off + 15843: + - Left: Forward + - Right: Reverse + - Middle: Off + 15842: + - Left: Forward + - Right: Reverse + - Middle: Off + 15853: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 28562 components: - type: Transform - pos: 41.5,34.5 - parent: 40203 - - uid: 42926 + pos: 24.5,-34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 26594: + - Left: Open + - Right: Open + - Middle: Close + 26593: + - Left: Open + - Right: Open + - Middle: Close + 26592: + - Left: Open + - Right: Open + - Middle: Close + - uid: 43349 components: - type: Transform - pos: 71.5,75.5 - parent: 40203 - - uid: 42927 + pos: 65.5,59.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40739: + - Left: Open + - Right: Close + 40738: + - Left: Open + - Right: Close + - uid: 43350 components: - type: Transform - rot: 3.141592653589793 rad - pos: 75.5,27.5 - parent: 40203 - - uid: 42928 + pos: 51.5,48.5 + parent: 40599 + - type: DeviceLinkSource + linkedPorts: + 40719: + - Left: Open + - Right: Open + - Middle: Close + 40716: + - Left: Open + - Right: Open + - Middle: Close + 40715: + - Left: Open + - Right: Open + - Middle: Close +- proto: UnfinishedMachineFrame + entities: + - uid: 28563 components: - type: Transform - pos: 56.5,26.5 - parent: 40203 - - uid: 42929 + pos: -39.5,-40.5 + parent: 2 + - uid: 28564 components: - type: Transform - pos: 55.5,26.5 - parent: 40203 - - uid: 42930 + pos: 97.5,-42.5 + parent: 2 + - uid: 43351 components: - type: Transform - pos: 57.5,26.5 - parent: 40203 - - uid: 45917 + rot: 3.141592653589793 rad + pos: 66.5,68.5 + parent: 40599 +- proto: UniformPrinter + entities: + - uid: 28565 components: - type: Transform - pos: -0.5,-2.5 - parent: 44970 - - uid: 45918 + pos: -7.5,-9.5 + parent: 2 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 15141 components: - type: Transform - pos: -1.5,-2.5 - parent: 44970 - - uid: 45919 + parent: 15138 + - type: Physics + canCollide: False + - uid: 28566 components: - type: Transform - pos: -2.5,-2.5 - parent: 44970 - - uid: 45920 + pos: 13.365817,37.607277 + parent: 2 +- proto: UprightPianoInstrument + entities: + - uid: 28567 components: - type: Transform - pos: -3.5,-2.5 - parent: 44970 -- proto: TargetClown + pos: 57.5,-7.5 + parent: 2 +- proto: UraniumReinforcedWindowDirectional entities: - - uid: 27959 + - uid: 28568 components: - type: Transform - pos: 53.5,10.5 + rot: 1.5707963267948966 rad + pos: -7.5,-38.5 parent: 2 - - uid: 27960 + - uid: 28569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-6.5 + rot: 1.5707963267948966 rad + pos: -7.5,-35.5 parent: 2 -- proto: TargetDarts +- proto: UraniumWindoorSecureEngineeringLocked entities: - - uid: 27961 + - uid: 28570 components: - type: Transform - pos: 96.5,-26.5 + rot: 1.5707963267948966 rad + pos: -7.5,-36.5 parent: 2 - - uid: 27962 + - uid: 28571 components: - type: Transform - pos: -30.49345,25.878252 + rot: 1.5707963267948966 rad + pos: -7.5,-37.5 parent: 2 - - uid: 27963 +- proto: Vaccinator + entities: + - uid: 28572 components: - type: Transform - pos: -20.5,-11.5 + pos: 28.5,61.5 parent: 2 -- proto: TargetHuman +- proto: VariantCubeBox entities: - - uid: 27964 + - uid: 28573 components: - type: Transform - pos: -19.5,-9.5 + pos: 10.400322,65.23348 parent: 2 - - uid: 42931 - components: - - type: Transform - pos: 42.00654,84.61649 - parent: 40203 - - uid: 42932 + - uid: 28574 components: - type: Transform - pos: 44.549435,83.63212 - parent: 40203 -- proto: TargetStrange + pos: 45.512924,-52.455536 + parent: 2 +- proto: VendingBarDrobe entities: - - uid: 27965 + - uid: 28575 components: - type: Transform - pos: -19.5,-10.5 + pos: 45.5,16.5 parent: 2 - - uid: 42933 - components: - - type: Transform - pos: 41.647163,81.58524 - parent: 40203 -- proto: TargetSyndicate +- proto: VendingMachineAtmosDrobe entities: - - uid: 27966 + - uid: 28576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-9.5 + pos: -4.5,-52.5 parent: 2 - - uid: 42934 +- proto: VendingMachineBooze + entities: + - uid: 28577 components: - type: Transform - pos: 42.522163,82.74149 - parent: 40203 -- proto: TegCenter - entities: - - uid: 27967 + pos: 15.5,-2.5 + parent: 2 + - uid: 28578 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-55.5 + pos: 43.5,19.5 parent: 2 - - type: ApcPowerReceiver - powerDisabled: True -- proto: TegCirculator - entities: - - uid: 27968 + - uid: 28579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-53.5 + pos: -110.5,12.5 parent: 2 - - type: PointLight - color: '#FF3300FF' - - uid: 27969 + missingComponents: + - AccessReader + - uid: 28580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-52.5 + pos: -38.5,21.5 parent: 2 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServerFilledCargo + missingComponents: + - AccessReader +- proto: VendingMachineCargoDrobe entities: - - uid: 27970 + - uid: 28581 components: - type: Transform - pos: -4.5,13.5 + pos: 65.5,-49.5 parent: 2 -- proto: TelecomServerFilledCommand +- proto: VendingMachineCart entities: - - uid: 27971 + - uid: 28582 components: - type: Transform - pos: -1.5,15.5 + pos: -6.5,-9.5 parent: 2 -- proto: TelecomServerFilledCommon +- proto: VendingMachineChapel entities: - - uid: 27972 + - uid: 28583 components: - type: Transform - pos: -3.5,14.5 + pos: 53.5,-11.5 parent: 2 -- proto: TelecomServerFilledEngineering +- proto: VendingMachineChefDrobe entities: - - uid: 27973 + - uid: 28584 components: - type: Transform - pos: -4.5,10.5 + pos: 24.5,39.5 parent: 2 -- proto: TelecomServerFilledMedical +- proto: VendingMachineChefvend entities: - - uid: 27974 + - uid: 28585 components: - type: Transform - pos: -3.5,10.5 + pos: -116.5,12.5 parent: 2 -- proto: TelecomServerFilledScience - entities: - - uid: 27975 + missingComponents: + - AccessReader + - uid: 28586 components: - type: Transform - pos: -2.5,11.5 + pos: 28.5,39.5 parent: 2 -- proto: TelecomServerFilledSecurity +- proto: VendingMachineChemDrobe entities: - - uid: 27976 + - uid: 28587 components: - type: Transform - pos: -4.5,12.5 + pos: -4.5,38.5 parent: 2 -- proto: TelecomServerFilledService +- proto: VendingMachineChemicals entities: - - uid: 27977 + - uid: 28588 components: - type: Transform - pos: -1.5,12.5 + pos: -7.5,41.5 parent: 2 -- proto: Telecrystal1 +- proto: VendingMachineCigs entities: - - uid: 27978 + - uid: 28589 components: - type: Transform - pos: 4.546875,11.555578 + pos: 5.5,42.5 parent: 2 -- proto: TeslaCoil - entities: - - uid: 27979 + - uid: 28590 components: - type: Transform - pos: -19.5,-50.5 + pos: 78.5,7.5 parent: 2 - - uid: 27980 + - uid: 28591 components: - type: Transform - pos: -19.5,-51.5 + pos: 16.5,2.5 parent: 2 - - uid: 27981 + - uid: 28592 components: - type: Transform - pos: -18.5,-50.5 + pos: 15.5,-5.5 parent: 2 - - uid: 27982 + - uid: 28593 components: - type: Transform - pos: -18.5,-51.5 + pos: 7.5,24.5 parent: 2 - - uid: 27983 + - uid: 28594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-37.5 + pos: -23.5,16.5 parent: 2 - - uid: 42935 + - uid: 43352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,37.5 - parent: 40203 - - type: LightningTarget - priority: 1 - - uid: 42936 + pos: 57.5,78.5 + parent: 40599 +- proto: VendingMachineClothing + entities: + - uid: 28595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,44.5 - parent: 40203 - - type: LightningTarget - priority: 1 - - uid: 42937 + pos: 50.5,6.5 + parent: 2 + - uid: 28596 components: - type: Transform - pos: 40.5,21.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42938 + pos: 68.5,-8.5 + parent: 2 + - uid: 28597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,28.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42939 + pos: -107.5,24.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 28598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,24.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42940 + pos: -4.5,59.5 + parent: 2 + - uid: 28599 components: - type: Transform - pos: 80.5,42.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42941 + pos: 3.5,-19.5 + parent: 2 + - uid: 28600 components: - type: Transform - pos: 83.5,31.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42942 + pos: -11.5,2.5 + parent: 2 + - uid: 28601 components: - type: Transform - rot: 3.141592653589793 rad - pos: 79.5,27.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42943 + pos: 30.5,-51.5 + parent: 2 + - uid: 28602 components: - type: Transform - pos: 84.5,37.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42944 + pos: 24.5,-40.5 + parent: 2 + - uid: 28603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,35.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42945 + pos: 9.5,22.5 + parent: 2 + - uid: 28604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,31.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42946 + pos: 5.5,45.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 28605 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,42.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42947 + pos: 27.5,34.5 + parent: 2 + - uid: 28606 components: - type: Transform - pos: 59.5,19.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 - - uid: 42948 + pos: -46.5,4.5 + parent: 2 + - uid: 28607 components: - type: Transform - pos: 67.5,20.5 - parent: 40203 - - type: LightningTarget - damageFromLightning: 0 - lightningResistance: 20 - - type: Anchorable - flags: None - - type: LightningArcShooter - shootRange: 6 - shootMaxInterval: 4 - maxLightningArc: 2 -- proto: TeslaEnergyBall + pos: -113.5,1.5 + parent: 2 +- proto: VendingMachineCuraDrobe entities: - - uid: 42949 + - uid: 28608 components: - type: Transform - pos: 52.520374,40.47589 - parent: 40203 - - type: Fixtures - fixtures: - EventHorizonCollider: - shape: !type:PhysShapeCircle - radius: 0.5 - position: 0,0 - mask: - - Opaque - layer: - - Impassable - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - density: 99999 - hard: True - restitution: 0.8 - friction: 0.4 - EventHorizonConsumer: - shape: !type:PhysShapeCircle - radius: 0.5 - position: 0,0 - mask: - - Opaque - layer: - - Impassable - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - density: 1 - hard: False - restitution: 0 - friction: 0.4 - - type: PointLight - energy: 4 - - type: LightningArcShooter - shootRange: 5 - missingComponents: - - WarpPoint -- proto: TeslaGenerator + pos: 5.5,22.5 + parent: 2 +- proto: VendingMachineDetDrobe entities: - - uid: 27984 + - uid: 28609 components: - type: Transform - pos: -20.5,-51.5 + pos: -24.5,4.5 parent: 2 - - uid: 42950 +- proto: VendingMachineDinnerware + entities: + - uid: 28610 components: - - type: MetaData - desc: Странное устройство, которое при запуске создаёт импульс Теслы.. - type: Transform - pos: 60.5,68.5 - parent: 40203 -- proto: TeslaGroundingRod + pos: 28.5,34.5 + parent: 2 + - uid: 46274 + components: + - type: Transform + pos: 5.5,5.5 + parent: 45355 +- proto: VendingMachineDonut entities: - - uid: 27985 + - uid: 28611 components: - type: Transform - pos: -22.5,-50.5 + pos: -46.5,7.5 parent: 2 - - uid: 27986 + - uid: 28612 components: - type: Transform - pos: -22.5,-51.5 + pos: 96.5,-8.5 parent: 2 - - uid: 27987 +- proto: VendingMachineEngiDrobe + entities: + - uid: 28613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-48.5 + pos: 8.5,-43.5 parent: 2 - - uid: 27988 +- proto: VendingMachineEngivend + entities: + - uid: 28614 components: - type: Transform - pos: -47.5,-44.5 + pos: 8.5,-41.5 parent: 2 - - uid: 42951 + - uid: 28615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,57.5 - parent: 40203 -- proto: TimerTrigger + pos: 10.5,-11.5 + parent: 2 +- proto: VendingMachineGames entities: - - uid: 27989 + - uid: 28616 components: - type: Transform - pos: -6.4998283,41.639626 + pos: 3.5,18.5 parent: 2 - - uid: 27990 + - uid: 28617 components: - type: Transform - pos: -6.5062714,41.64871 + pos: -105.5,6.5 parent: 2 - - uid: 27991 +- proto: VendingMachineGeneDrobe + entities: + - uid: 28618 components: - type: Transform - pos: 38.745815,-48.786057 + pos: -28.5,49.5 parent: 2 -- proto: TintedWindow +- proto: VendingMachineHappyHonk entities: - - uid: 27992 + - uid: 28619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,8.5 + pos: 55.5,7.5 parent: 2 - missingComponents: - - Occluder - - uid: 27993 +- proto: VendingMachineHydrobe + entities: + - uid: 28620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,7.5 + pos: 18.5,38.5 parent: 2 - missingComponents: - - Occluder - - uid: 27994 +- proto: VendingMachineJaniDrobe + entities: + - uid: 28621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,6.5 + pos: 1.5,34.5 parent: 2 - missingComponents: - - Occluder - - uid: 27995 +- proto: VendingMachineLawDrobe + entities: + - uid: 28622 components: - type: Transform - pos: 24.5,5.5 + pos: -21.5,23.5 parent: 2 - - uid: 27996 +- proto: VendingMachineMedical + entities: + - uid: 28623 components: - type: Transform - pos: 23.5,9.5 + pos: -56.5,13.5 parent: 2 - - uid: 27997 + - uid: 28624 components: - type: Transform - pos: 23.5,11.5 + pos: -23.5,57.5 parent: 2 - - uid: 27998 + - uid: 28625 components: - type: Transform - pos: 29.5,9.5 + pos: -13.5,46.5 parent: 2 - - uid: 27999 +- proto: VendingMachineMediDrobe + entities: + - uid: 28626 components: - type: Transform - pos: 29.5,11.5 + pos: -28.5,54.5 parent: 2 -- proto: ToiletDirtyWater +- proto: VendingMachineNutri entities: - - uid: 28000 + - uid: 28627 components: - type: Transform - pos: 81.5,-33.5 + pos: 7.5,37.5 parent: 2 - - uid: 28001 +- proto: VendingMachineRestockBooze + entities: + - uid: 28628 components: - type: Transform - pos: -36.5,16.5 + pos: 46.5914,21.633677 parent: 2 - - uid: 28002 +- proto: VendingMachineRoboDrobe + entities: + - uid: 28629 components: - type: Transform - pos: -38.5,16.5 + pos: 20.5,-35.5 parent: 2 - - uid: 28003 +- proto: VendingMachineRobotics + entities: + - uid: 28630 components: - type: Transform - pos: -66.5,-7.5 + pos: 16.5,-33.5 parent: 2 - - uid: 28004 +- proto: VendingMachineSalvage + entities: + - uid: 28631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-6.5 + pos: 85.5,-42.5 parent: 2 - - uid: 28005 +- proto: VendingMachineSciDrobe + entities: + - uid: 28632 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,21.5 + pos: 18.5,-50.5 parent: 2 - - uid: 42952 + - uid: 28633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,83.5 - parent: 40203 -- proto: ToiletEmpty + pos: 33.5,-45.5 + parent: 2 +- proto: VendingMachineSec entities: - - uid: 26061 + - uid: 28634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,30.5 + pos: -36.5,-9.5 parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 26062 - disposals: !type:Container - showEnts: False - occludes: True - ents: [] - - uid: 28006 + - uid: 28635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-51.5 + pos: -30.5,-11.5 parent: 2 - - uid: 28007 + - uid: 28636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,28.5 + pos: -101.5,8.5 parent: 2 - - uid: 28008 +- proto: VendingMachineSecDrobe + entities: + - uid: 28637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,32.5 + pos: -7.5,54.5 parent: 2 - - uid: 28009 + - uid: 28638 components: - type: Transform - pos: -42.5,-11.5 + pos: -30.5,-10.5 parent: 2 - - uid: 28010 + - uid: 28639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-57.5 + pos: -3.5,-31.5 parent: 2 - - uid: 28011 + - uid: 28640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,27.5 + pos: -101.5,4.5 parent: 2 - - uid: 28012 +- proto: VendingMachineSeeds + entities: + - uid: 28641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,29.5 + pos: 7.5,38.5 parent: 2 - - uid: 28013 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 28642 components: - type: Transform - pos: 67.5,7.5 + pos: -100.5,14.5 parent: 2 - - uid: 28014 +- proto: VendingMachineSovietSoda + entities: + - uid: 28643 components: - type: Transform - pos: 46.5,27.5 + pos: 55.5,-15.5 parent: 2 - - uid: 28015 + - uid: 43353 components: - type: Transform - pos: 26.5,43.5 + pos: 57.5,79.5 + parent: 40599 +- proto: VendingMachineSustenance + entities: + - uid: 28644 + components: + - type: Transform + pos: 96.5,-6.5 parent: 2 - - uid: 28016 + - uid: 28645 components: - type: Transform - pos: 18.5,43.5 + pos: -34.5,12.5 parent: 2 - - uid: 28017 + - uid: 28646 components: - type: Transform - pos: -12.5,-3.5 + pos: -116.5,8.5 parent: 2 - - uid: 28018 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 28647 components: - type: Transform - pos: -42.5,17.5 + pos: -21.5,-40.5 parent: 2 - - uid: 28019 + - uid: 28648 components: - type: Transform - pos: -50.5,17.5 + pos: -26.5,-50.5 parent: 2 - - uid: 28020 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 28649 components: - type: Transform - pos: -46.5,17.5 + pos: 4.5,-44.5 parent: 2 - - uid: 28021 + - uid: 28650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,61.5 + pos: 51.5,-50.5 parent: 2 - - uid: 28022 + - uid: 28651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,43.5 + pos: 45.5,-37.5 parent: 2 - - uid: 28023 + - uid: 28652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-6.5 + pos: -11.5,11.5 parent: 2 - - uid: 28024 + - uid: 28653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-6.5 + pos: -10.5,-52.5 parent: 2 - - uid: 28025 + - uid: 28654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-6.5 + pos: 78.5,-43.5 parent: 2 - - uid: 28026 + - uid: 28655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,43.5 + pos: -26.5,-49.5 parent: 2 -- proto: ToiletGoldenDirtyWater + - uid: 28656 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 +- proto: VendingMachineTheater entities: - - uid: 28027 + - uid: 28657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 + pos: 50.5,7.5 parent: 2 -- proto: ToolboxArtisticFilled +- proto: VendingMachineVendomat entities: - - uid: 28028 + - uid: 28658 components: - type: Transform - pos: 51.502857,9.609375 + pos: 18.5,8.5 parent: 2 -- proto: ToolboxElectricalFilled +- proto: VendingMachineViroDrobe entities: - - uid: 28029 + - uid: 28659 components: - type: Transform - pos: -39.50682,-18.280804 + pos: 25.5,51.5 parent: 2 - - uid: 28030 +- proto: VendingMachineWallMedical + entities: + - uid: 28660 components: - type: Transform - pos: 0.44083977,-42.818436 + pos: -15.5,49.5 parent: 2 - - uid: 28031 + - uid: 28661 components: - type: Transform - pos: 12.48456,-12.386871 + rot: -1.5707963267948966 rad + pos: -102.5,3.5 parent: 2 - - uid: 28032 +- proto: VendingMachineWinter + entities: + - uid: 28662 components: - type: Transform - pos: -1.5544748,-36.291485 + pos: 25.5,-43.5 parent: 2 - - uid: 28033 + - uid: 28663 components: - type: Transform - pos: 27.565733,-4.857082 + pos: 62.5,7.5 parent: 2 - - uid: 28034 + - uid: 28664 components: - type: Transform - pos: 38.501785,-51.494102 + pos: 72.5,-7.5 parent: 2 - - uid: 28035 + - uid: 28665 components: - type: Transform - pos: 33.526527,-39.54986 + pos: -28.5,10.5 parent: 2 - - uid: 28036 + - uid: 28666 components: - type: Transform - pos: 3.497224,-46.493435 + pos: 45.5,-25.5 parent: 2 - - uid: 28037 + - uid: 28667 components: - type: Transform - pos: -15.543264,-48.19861 + pos: -97.5,-6.5 parent: 2 - - uid: 28038 + - uid: 28668 components: - type: Transform - pos: 35.456463,-49.563187 + pos: -0.5,36.5 parent: 2 - - uid: 28039 + - uid: 28669 components: - type: Transform - pos: 18.514523,5.3799553 + pos: 64.5,-49.5 parent: 2 - - uid: 28040 +- proto: VendingMachineYouTool + entities: + - uid: 28670 components: - type: Transform - pos: 36.42236,39.43709 + pos: 26.5,-12.5 parent: 2 - - uid: 42953 + - uid: 28671 components: - type: Transform - pos: 68.50333,63.407738 - parent: 40203 - - uid: 42954 + pos: 85.5,-46.5 + parent: 2 + - uid: 28672 components: - type: Transform - pos: 68.50333,63.407738 - parent: 40203 -- proto: ToolboxEmergency + pos: 8.5,-42.5 + parent: 2 +- proto: VoiceTrigger entities: - - uid: 28041 + - uid: 28673 components: - type: Transform - pos: 74.41879,-31.91401 + pos: 38.44894,-48.80168 parent: 2 -- proto: ToolboxEmergencyFilled +- proto: WallAndesiteCobblebrick entities: - - uid: 28042 + - uid: 28674 components: + - type: MetaData + desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. + name: белая кирпичная стена - type: Transform - pos: -34.415714,42.66817 + pos: 15.5,-29.5 parent: 2 - - uid: 28043 + - uid: 28675 components: + - type: MetaData + desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. + name: белая кирпичная стена - type: Transform - pos: 44.411743,-18.279934 + pos: 16.5,-29.5 parent: 2 - - uid: 28044 + - uid: 28676 components: + - type: MetaData + desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. + name: белая кирпичная стена - type: Transform - pos: 44.61487,-18.514309 + pos: 14.5,-29.5 parent: 2 - - uid: 28045 + - uid: 28677 components: + - type: MetaData + desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. + name: белая кирпичная стена - type: Transform - pos: 27.456358,-4.450832 + pos: 13.5,-29.5 parent: 2 - - uid: 28046 +- proto: WallForce + entities: + - uid: 43354 components: - type: Transform - pos: 73.58111,-48.336777 - parent: 2 - - uid: 28047 + pos: 54.5,42.5 + parent: 40599 + - type: ContainmentField + missingComponents: + - TimedDespawn + - uid: 43355 components: - type: Transform - pos: -20.352703,60.4431 - parent: 2 - - uid: 28048 + pos: 54.5,38.5 + parent: 40599 + - type: ContainmentField + missingComponents: + - TimedDespawn + - uid: 43356 components: - type: Transform - pos: -28.507282,-31.497547 - parent: 2 - - uid: 28049 + pos: 50.5,38.5 + parent: 40599 + - type: ContainmentField + missingComponents: + - TimedDespawn + - uid: 43357 components: - type: Transform - pos: 30.42564,47.448265 - parent: 2 - - uid: 28050 + pos: 50.5,42.5 + parent: 40599 + - type: ContainmentField + missingComponents: + - TimedDespawn +- proto: WallIce + entities: + - uid: 28678 components: - type: Transform - pos: 54.716187,-17.273918 + pos: -71.5,-22.5 parent: 2 - - uid: 28051 + - uid: 28679 components: - type: Transform - pos: 65.49677,-38.33129 + rot: 1.5707963267948966 rad + pos: -70.5,13.5 parent: 2 - - uid: 28052 + - uid: 28680 components: - type: Transform - pos: 49.510033,26.60184 + rot: 3.141592653589793 rad + pos: -39.5,48.5 parent: 2 - - uid: 28053 + - uid: 28681 components: - type: Transform - pos: 60.505882,-14.367741 + rot: 1.5707963267948966 rad + pos: -85.5,10.5 parent: 2 -- proto: ToolboxGoldFilled - entities: - - uid: 28054 + - uid: 28682 components: - type: Transform - pos: 53.488155,32.70133 + rot: 1.5707963267948966 rad + pos: -70.5,14.5 parent: 2 -- proto: ToolboxMechanicalFilled - entities: - - uid: 28055 + - uid: 28683 components: - type: Transform - pos: 0.50333977,-42.443436 + rot: 3.141592653589793 rad + pos: -132.5,-12.5 parent: 2 - - uid: 28056 + - uid: 28684 components: - type: Transform - pos: -1.5075998,-36.635235 + rot: 1.5707963267948966 rad + pos: -93.5,32.5 parent: 2 - - uid: 28057 + - uid: 28685 components: - type: Transform - pos: 27.534483,-7.232082 + rot: 1.5707963267948966 rad + pos: -92.5,32.5 parent: 2 - - uid: 28058 + - uid: 28686 components: - type: Transform - pos: 38.470535,-51.228477 + rot: 1.5707963267948966 rad + pos: -86.5,46.5 parent: 2 - - uid: 28059 + - uid: 28687 components: - type: Transform - pos: 33.510902,-39.315483 + rot: 1.5707963267948966 rad + pos: -87.5,45.5 parent: 2 - - uid: 28060 + - uid: 28688 components: - type: Transform - pos: -15.485029,-48.477337 + rot: 1.5707963267948966 rad + pos: -87.5,46.5 parent: 2 - - uid: 28061 + - uid: 28689 components: - type: Transform - pos: 35.503338,-49.36006 + rot: 1.5707963267948966 rad + pos: -88.5,17.5 parent: 2 - - uid: 28062 + - uid: 28690 components: - type: Transform - pos: 10.453941,-45.260803 + rot: 1.5707963267948966 rad + pos: -87.5,17.5 parent: 2 - - uid: 28063 + - uid: 28691 components: - type: Transform - pos: -47.485455,-22.434092 + rot: 1.5707963267948966 rad + pos: -82.5,18.5 parent: 2 - - uid: 28064 + - uid: 28692 components: - type: Transform - pos: 36.632717,39.614815 + rot: 1.5707963267948966 rad + pos: -85.5,11.5 parent: 2 - - uid: 28065 + - uid: 28693 components: - type: Transform - pos: -39.522446,-18.499554 + rot: 1.5707963267948966 rad + pos: -85.5,9.5 parent: 2 - - uid: 42955 + - uid: 28694 components: - type: Transform - pos: 68.6752,63.657738 - parent: 40203 -- proto: Torch - entities: - - uid: 28066 + rot: 1.5707963267948966 rad + pos: -82.5,6.5 + parent: 2 + - uid: 28695 components: - type: Transform - pos: 8.858051,-53.507282 + rot: 1.5707963267948966 rad + pos: -70.5,12.5 parent: 2 - - uid: 28067 + - uid: 28696 components: - type: Transform - pos: -47.5023,34.732357 + rot: 1.5707963267948966 rad + pos: 36.5,56.5 parent: 2 - - uid: 28068 + - uid: 28697 components: - type: Transform - pos: -47.17022,34.732357 + rot: 1.5707963267948966 rad + pos: 36.5,57.5 parent: 2 - - uid: 28069 + - uid: 28698 components: - type: Transform - pos: -47.365562,34.61517 + rot: 1.5707963267948966 rad + pos: 29.5,64.5 parent: 2 - - uid: 28070 + - uid: 28699 components: - type: Transform - pos: -63.183594,28.042547 + rot: 1.5707963267948966 rad + pos: 80.5,-2.5 parent: 2 - - uid: 28071 + - uid: 28700 components: - type: Transform - pos: 97.63609,0.22600174 + rot: 1.5707963267948966 rad + pos: 81.5,-2.5 parent: 2 - - uid: 28072 + - uid: 28701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 100.49547,6.1478767 + pos: 90.5,-2.5 parent: 2 - - uid: 28073 + - uid: 28702 components: - type: Transform - pos: 95.54234,4.9135017 + rot: 3.141592653589793 rad + pos: -140.5,-1.5 parent: 2 -- proto: TorsoBorg - entities: - - uid: 28074 + - uid: 28703 components: - - type: MetaData - name: топливный бак - type: Transform - rot: -1.5707963267948966 rad - pos: 11.526532,-13.436012 + rot: 3.141592653589793 rad + pos: -137.5,-4.5 parent: 2 -- proto: TorsoBorgEngineer - entities: - - uid: 28075 + - uid: 28704 components: - - type: MetaData - name: карбюратор - type: Transform rot: 3.141592653589793 rad - pos: 10.964032,-13.186012 + pos: -137.5,-5.5 parent: 2 -- proto: ToyAmongPequeno - entities: - - uid: 28076 + - uid: 28705 components: - type: Transform - pos: 64.496,4.601742 + rot: 3.141592653589793 rad + pos: -132.5,-13.5 parent: 2 -- proto: ToyFigurineAtmosTech - entities: - - uid: 28077 + - uid: 28706 components: - type: Transform - pos: -2.069769,-56.291653 + pos: -26.5,31.5 parent: 2 -- proto: ToyFigurineBartender - entities: - - uid: 28078 + - uid: 28707 components: - type: Transform - pos: 46.5085,27.467482 + pos: -26.5,62.5 parent: 2 -- proto: ToyFigurineBotanist - entities: - - uid: 28079 + - uid: 28708 components: - type: Transform - pos: 7.4806385,39.882698 + pos: -25.5,62.5 parent: 2 -- proto: ToyFigurineChaplain - entities: - - uid: 28080 + - uid: 28709 components: - type: Transform - pos: 28.470985,4.514778 + pos: -72.5,-22.5 parent: 2 -- proto: ToyFigurineChemist - entities: - - uid: 28081 + - uid: 28710 components: - type: Transform - pos: 79.857,4.328513 + pos: -70.5,-22.5 parent: 2 -- proto: ToyFigurineChiefEngineer - entities: - - uid: 28082 + - uid: 28711 components: - type: Transform - pos: -3.3560624,-45.491558 + pos: -23.5,68.5 parent: 2 -- proto: ToyFigurineClown - entities: - - uid: 28083 + - uid: 28712 components: - type: Transform - pos: -42.16116,1.7156641 + pos: -25.5,63.5 parent: 2 - - uid: 28084 + - uid: 28713 components: - type: Transform - pos: 59.976055,-37.0707 + pos: -73.5,-21.5 parent: 2 -- proto: ToyFigurineDetective - entities: - - uid: 28085 + - uid: 28714 components: - type: Transform - pos: -19.846651,3.703557 + pos: -72.5,-21.5 parent: 2 -- proto: ToyFigurineFootsoldier - entities: - - uid: 28086 + - uid: 28715 components: - type: Transform - pos: -20.54741,12.475927 + pos: -78.5,-11.5 parent: 2 -- proto: ToyFigurineGreytider - entities: - - uid: 28087 + missingComponents: + - Destructible + - Occluder + - uid: 28716 components: - type: Transform - pos: 59.580082,31.991037 + pos: -76.5,-11.5 parent: 2 - - uid: 28088 + missingComponents: + - Destructible + - Occluder + - uid: 28717 components: - type: Transform - pos: 59.314457,31.662912 + pos: -77.5,-11.5 parent: 2 - - uid: 28089 + missingComponents: + - Destructible + - Occluder + - uid: 28718 components: - type: Transform - pos: 0.08273792,20.542154 + pos: -75.5,-11.5 parent: 2 - - uid: 28090 + missingComponents: + - Destructible + - Occluder + - uid: 28719 components: - type: Transform - pos: 100.46838,-27.551863 + pos: -78.5,-9.5 parent: 2 -- proto: ToyFigurineHeadOfSecurity - entities: - - uid: 28091 + missingComponents: + - Destructible + - Occluder + - uid: 28720 components: - type: Transform - pos: 53.28767,11.640625 + pos: -78.5,-10.5 parent: 2 -- proto: ToyFigurineLibrarian - entities: - - uid: 28092 + missingComponents: + - Destructible + - Occluder + - uid: 28721 components: - type: Transform - pos: 1.2389879,20.198404 + pos: -86.5,29.5 parent: 2 -- proto: ToyFigurineMedicalDoctor - entities: - - uid: 28093 + - uid: 28722 components: - type: Transform - pos: -22.683216,43.365177 + pos: -86.5,28.5 parent: 2 -- proto: ToyFigurineMime - entities: - - uid: 28094 + - uid: 28723 components: - type: Transform - pos: 60.708042,11.655405 + pos: -86.5,27.5 parent: 2 -- proto: ToyFigurineMusician - entities: - - uid: 28095 + - uid: 28724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.56302,13.478708 + pos: -86.5,26.5 parent: 2 -- proto: ToyFigurineNukie - entities: - - uid: 28096 + - uid: 28725 components: - type: Transform - pos: 94.42555,-5.875171 + pos: -137.5,-3.5 parent: 2 -- proto: ToyFigurineParamedic - entities: - - uid: 28097 + - uid: 28726 components: - - type: MetaData - desc: Фигурка, изображающая парамедика в пустотном скафандре. Он бежикт. - type: Transform - pos: 1.5194652,51.671997 + pos: -34.5,-60.5 parent: 2 -- proto: ToyFigurineSalvage - entities: - - uid: 28098 + - uid: 28727 components: - type: Transform - pos: 79.785255,-48.2958 + pos: -33.5,-60.5 parent: 2 - - uid: 28099 + - uid: 28728 components: - type: Transform - pos: 78.70713,-48.26455 + pos: -32.5,-61.5 parent: 2 -- proto: ToyFigurineSlime - entities: - - uid: 28100 + - uid: 28729 components: - type: Transform - pos: -56.2843,3.5335655 + pos: -32.5,-60.5 parent: 2 -- proto: ToyFigurineSpaceDragon - entities: - - uid: 28101 + - uid: 28730 components: - type: Transform - pos: 79.097755,-48.4833 + rot: 1.5707963267948966 rad + pos: -33.5,61.5 parent: 2 -- proto: ToyFigurineThief - entities: - - uid: 28102 + - uid: 28731 components: - type: Transform - pos: -0.49538708,20.198404 + rot: 1.5707963267948966 rad + pos: -33.5,62.5 parent: 2 -- proto: ToyFigurineWizard - entities: - - uid: 28103 + - uid: 28732 components: - type: Transform - pos: -52.70577,23.943653 + rot: 1.5707963267948966 rad + pos: -32.5,62.5 parent: 2 -- proto: ToyFigurineWizardFake - entities: - - uid: 28104 + - uid: 43358 components: - type: Transform - pos: 0.65471196,20.15153 - parent: 2 -- proto: ToyGriffin - entities: - - uid: 28105 + rot: 1.5707963267948966 rad + pos: 73.5,48.5 + parent: 40599 + - uid: 43359 components: - type: Transform - pos: 5.598859,20.729654 - parent: 2 -- proto: ToyIan - entities: - - uid: 28106 + rot: 1.5707963267948966 rad + pos: 72.5,47.5 + parent: 40599 + - uid: 43360 components: - type: Transform - pos: -3.2732525,-10.732463 - parent: 2 - - uid: 28107 + rot: 1.5707963267948966 rad + pos: 72.5,48.5 + parent: 40599 + - uid: 43361 components: - type: Transform - pos: -3.741818,-10.702011 - parent: 2 - - uid: 28108 + pos: 77.5,48.5 + parent: 40599 + - uid: 43362 components: - type: Transform - pos: -3.849533,-10.537165 - parent: 2 -- proto: ToyMouse - entities: - - uid: 28109 + rot: 1.5707963267948966 rad + pos: 74.5,49.5 + parent: 40599 + - uid: 43363 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.421806,-49.10284 - parent: 2 -- proto: ToyOwlman - entities: - - uid: 28110 + pos: 71.5,47.5 + parent: 40599 + - uid: 43364 components: - type: Transform - pos: 5.317609,20.80778 - parent: 2 - - uid: 28111 + pos: 77.5,45.5 + parent: 40599 + - uid: 43365 components: - - type: MetaData - desc: Я тебя не приглашал! - name: Расмус - type: Transform - pos: -64.568794,-3.4809465 - parent: 2 -- proto: ToyRubberDuck - entities: - - uid: 28112 + rot: 1.5707963267948966 rad + pos: 74.5,50.5 + parent: 40599 + - uid: 43366 components: - type: Transform - pos: 18.532337,-2.4409986 - parent: 2 -- proto: ToySpawner - entities: - - uid: 28113 + pos: 78.5,49.5 + parent: 40599 + - uid: 43367 components: - type: Transform - pos: 3.5,60.5 - parent: 2 - - uid: 28114 + pos: 78.5,48.5 + parent: 40599 + - uid: 43368 components: - type: Transform - pos: 33.5,-9.5 - parent: 2 -- proto: TrackingImplanter - entities: - - uid: 8329 + pos: 78.5,45.5 + parent: 40599 + - uid: 43369 components: - - type: MetaData - name: Трекер - type: Transform - parent: 8318 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 28115 + pos: 77.5,47.5 + parent: 40599 + - uid: 43370 components: - - type: MetaData - name: имплантер - type: Transform - pos: 0.51899076,-11.491364 - parent: 2 -- proto: TrainingBomb - entities: - - uid: 28116 + pos: 77.5,46.5 + parent: 40599 + - uid: 43371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-6.5 - parent: 2 -- proto: TrashBakedBananaPeel - entities: - - uid: 28117 + pos: 73.5,47.5 + parent: 40599 + - uid: 43372 components: - type: Transform - pos: -35.7621,-54.576927 - parent: 2 -- proto: TrashBananaPeel + pos: 76.5,46.5 + parent: 40599 + - uid: 43373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 74.5,48.5 + parent: 40599 +- proto: WallMining entities: - - uid: 28118 + - uid: 28733 components: - type: Transform - pos: 49.595833,11.261242 + rot: 3.141592653589793 rad + pos: 103.5,-44.5 parent: 2 - - uid: 28119 + - uid: 28734 components: - type: Transform - pos: 52.78325,-37.58314 + rot: -1.5707963267948966 rad + pos: 95.5,-42.5 parent: 2 - - uid: 28120 + - uid: 28735 components: - type: Transform - pos: 10.546017,18.422005 + rot: -1.5707963267948966 rad + pos: 95.5,-43.5 parent: 2 - - uid: 28121 + - uid: 28736 components: - type: Transform - pos: 52.521782,8.503786 + rot: -1.5707963267948966 rad + pos: 96.5,-41.5 parent: 2 - - uid: 28122 + - uid: 28737 components: - type: Transform - pos: -41.4396,5.4598646 + rot: 3.141592653589793 rad + pos: 100.5,-44.5 parent: 2 -- proto: TrashMimanaPeel - entities: - - uid: 28123 + - uid: 28738 components: - type: Transform - pos: 61.504917,8.530405 + rot: -1.5707963267948966 rad + pos: 102.5,-41.5 parent: 2 -- proto: trayScanner - entities: - - uid: 28124 + - uid: 28739 components: - type: Transform - pos: -13.657919,-48.391827 + rot: -1.5707963267948966 rad + pos: 97.5,-41.5 parent: 2 -- proto: TreasureHardDiskDrive - entities: - - uid: 42956 + - uid: 28740 components: - - type: MetaData - desc: 'Носитель данных с этикеткой на нём. На ней написано: "Анапа 3007".' - type: Transform rot: 1.5707963267948966 rad - pos: 54.682728,70.30053 - parent: 40203 - - uid: 42957 + pos: 101.5,-39.5 + parent: 2 + - uid: 28741 components: - - type: MetaData - desc: 'Носитель данных с этикеткой на нём. На ней написано: "Уч. затрат на исслед. врат".' - type: Transform - pos: 54.370228,70.35391 - parent: 40203 - - uid: 42958 + rot: 3.141592653589793 rad + pos: 102.5,-44.5 + parent: 2 + - uid: 28742 components: - - type: MetaData - desc: 'Носитель данных с этикеткой на нём. На ней написано: "Импульсы анализ".' - type: Transform - pos: 54.370228,70.24454 - parent: 40203 -- proto: Truncheon - entities: - - uid: 28125 + rot: -1.5707963267948966 rad + pos: 98.5,-41.5 + parent: 2 + - uid: 28743 components: - type: Transform - pos: -44.532578,-7.4675403 + rot: 3.141592653589793 rad + pos: 98.5,-44.5 parent: 2 - - uid: 28126 + - uid: 28744 components: - type: Transform - pos: -44.673203,-7.3894153 + rot: -1.5707963267948966 rad + pos: 100.5,-42.5 parent: 2 - - uid: 28127 + - uid: 28745 components: - type: Transform - pos: -44.360703,-7.5456653 + rot: 1.5707963267948966 rad + pos: 97.5,-39.5 parent: 2 - - uid: 28128 + - uid: 28746 components: - type: Transform - pos: -101.5657,10.440189 + rot: 1.5707963267948966 rad + pos: 96.5,-40.5 parent: 2 - - uid: 28129 + - uid: 28747 components: - type: Transform - pos: -101.65945,10.553135 + rot: -1.5707963267948966 rad + pos: 101.5,-41.5 parent: 2 - - uid: 42959 + - uid: 28748 components: - type: Transform - rot: 2.7401669256310974 rad - pos: 30.76935,68.9 - parent: 40203 -- proto: TubaInstrument - entities: - - uid: 28130 + rot: 1.5707963267948966 rad + pos: 103.5,-43.5 + parent: 2 + - uid: 28749 components: - type: Transform - pos: 55.5,-7.5 + rot: -1.5707963267948966 rad + pos: 103.5,-42.5 parent: 2 -- proto: TwoWayLever - entities: - - uid: 28131 + - uid: 28750 components: - - type: MetaData - desc: Рычаг от конвеерных лент тира. - type: Transform - pos: -25.033798,-10.5 + rot: -1.5707963267948966 rad + pos: 98.5,-43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15538: - - Left: Forward - - Right: Forward - - Middle: Off - 15536: - - Middle: Off - - Right: Forward - - Left: Forward - 15519: - - Middle: Off - - Right: Forward - - Left: Forward - 15518: - - Middle: Off - - Right: Forward - - Left: Forward - 15521: - - Left: Forward - - Right: Forward - - Middle: Off - 15535: - - Middle: Off - - Right: Forward - - Left: Forward - 15537: - - Middle: Off - - Right: Forward - - Left: Forward - 15517: - - Left: Forward - - Right: Forward - - Middle: Off - 15520: - - Left: Forward - - Right: Forward - - Middle: Off - 15534: - - Middle: Off - - Right: Forward - - Left: Forward - 15533: - - Left: Forward - - Right: Forward - - Middle: Off - 15532: - - Middle: Off - - Right: Forward - - Left: Forward - - uid: 28132 + - uid: 28751 components: - type: Transform - pos: 21.5,-32.5 + rot: -1.5707963267948966 rad + pos: 100.5,-41.5 parent: 2 - - uid: 28133 + - uid: 28752 components: - type: Transform - pos: 5.4437823,31.649122 + rot: -1.5707963267948966 rad + pos: 94.5,-43.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26179: - - Left: Open - - Right: Open - - Middle: Close - 26178: - - Left: Open - - Right: Open - - Middle: Close - - uid: 28134 + - uid: 28753 components: - type: Transform - pos: 72.5,-32.5 + pos: -40.5,33.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 15512: - - Left: Forward - - Right: Reverse - - Middle: Off - 15515: - - Left: Forward - - Right: Reverse - - Middle: Off - 15514: - - Left: Forward - - Right: Reverse - - Middle: Off - 15513: - - Left: Forward - - Right: Reverse - - Middle: Off - 15525: - - Left: Forward - - Right: Reverse - - Middle: Off - 15511: - - Left: Forward - - Right: Reverse - - Middle: Off - 15524: - - Left: Forward - - Right: Reverse - - Middle: Off - 15523: - - Left: Forward - - Right: Reverse - - Middle: Off - 15531: - - Left: Forward - - Right: Reverse - - Middle: Off - 15527: - - Left: Forward - - Right: Reverse - - Middle: Off - 15522: - - Left: Forward - - Right: Reverse - - Middle: Off - 15530: - - Left: Forward - - Right: Reverse - - Middle: Off - 15526: - - Left: Forward - - Right: Reverse - - Middle: Off - 15529: - - Left: Forward - - Right: Reverse - - Middle: Off - 15528: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 28135 + - uid: 28754 components: - type: Transform - pos: 24.5,-34.5 + rot: 3.141592653589793 rad + pos: -35.5,34.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 26186: - - Left: Open - - Right: Open - - Middle: Close - 26185: - - Left: Open - - Right: Open - - Middle: Close - 26184: - - Left: Open - - Right: Open - - Middle: Close - - uid: 42960 + - uid: 28755 components: - type: Transform - pos: 65.5,59.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40343: - - Left: Open - - Right: Close - 40342: - - Left: Open - - Right: Close - - uid: 42961 + rot: 3.141592653589793 rad + pos: -36.5,34.5 + parent: 2 + - uid: 28756 components: - type: Transform - pos: 51.5,48.5 - parent: 40203 - - type: DeviceLinkSource - linkedPorts: - 40323: - - Left: Open - - Right: Open - - Middle: Close - 40320: - - Left: Open - - Right: Open - - Middle: Close - 40319: - - Left: Open - - Right: Open - - Middle: Close -- proto: UnfinishedMachineFrame - entities: - - uid: 28136 + rot: 3.141592653589793 rad + pos: -34.5,34.5 + parent: 2 + - uid: 28757 components: - type: Transform - pos: -39.5,-40.5 + pos: -40.5,32.5 parent: 2 - - uid: 28137 + - uid: 28758 components: - type: Transform - pos: -57.5,-28.5 + rot: 3.141592653589793 rad + pos: -32.5,35.5 parent: 2 - - uid: 28138 + - uid: 28759 components: - type: Transform - pos: 97.5,-42.5 + rot: 3.141592653589793 rad + pos: -32.5,36.5 parent: 2 - - uid: 42962 + - uid: 28760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,68.5 - parent: 40203 -- proto: UniformPrinter - entities: - - uid: 28139 + pos: -34.5,36.5 + parent: 2 + - uid: 28761 components: - type: Transform - pos: -7.5,-9.5 + pos: -37.5,37.5 parent: 2 -- proto: UnstableMutagenChemistryBottle - entities: - - uid: 14829 + - uid: 28762 components: - type: Transform - parent: 14826 - - type: Physics - canCollide: False - - uid: 28140 + pos: -38.5,37.5 + parent: 2 + - uid: 28763 components: - type: Transform - pos: 13.365817,37.607277 + pos: -39.5,36.5 parent: 2 -- proto: UprightPianoInstrument - entities: - - uid: 28141 + - uid: 28764 components: - type: Transform - pos: 57.5,-7.5 + pos: -40.5,35.5 parent: 2 -- proto: UraniumReinforcedWindowDirectional - entities: - - uid: 28142 + - uid: 28765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-38.5 + pos: -40.5,34.5 parent: 2 - - uid: 28143 + - uid: 28766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-35.5 + rot: 3.141592653589793 rad + pos: -66.5,23.5 parent: 2 -- proto: UraniumWindoorSecureEngineeringLocked - entities: - - uid: 28144 + - uid: 28767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-36.5 + rot: 3.141592653589793 rad + pos: -67.5,23.5 parent: 2 - - uid: 28145 + - uid: 28768 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-37.5 + pos: -65.5,23.5 parent: 2 -- proto: Vaccinator - entities: - - uid: 28146 + - uid: 28769 components: - type: Transform - pos: 28.5,61.5 + rot: -1.5707963267948966 rad + pos: 100.5,-43.5 parent: 2 -- proto: VariantCubeBox - entities: - - uid: 28147 + - uid: 28770 components: - type: Transform - pos: 10.400322,65.23348 + rot: 1.5707963267948966 rad + pos: 95.5,-44.5 parent: 2 - - uid: 28148 + - uid: 28771 components: - type: Transform - pos: 45.512924,-52.455536 + rot: 3.141592653589793 rad + pos: 96.5,-44.5 parent: 2 -- proto: VendingBarDrobe +- proto: WallMiningDiagonal entities: - - uid: 28149 + - uid: 28772 components: - type: Transform - pos: 45.5,16.5 + pos: 96.5,-39.5 parent: 2 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 28150 + - uid: 28773 components: - type: Transform - pos: -4.5,-52.5 + rot: -1.5707963267948966 rad + pos: 102.5,-39.5 parent: 2 -- proto: VendingMachineBooze - entities: - - uid: 28151 + - uid: 28774 components: - type: Transform - pos: 15.5,-2.5 + pos: -37.5,34.5 parent: 2 - - uid: 28152 + - uid: 28775 components: - type: Transform - pos: 43.5,19.5 + pos: -40.5,36.5 parent: 2 - - uid: 28153 + - uid: 28776 components: - type: Transform - pos: -110.5,12.5 + pos: -39.5,37.5 parent: 2 - missingComponents: - - AccessReader - - uid: 28154 + - uid: 28777 components: - type: Transform - pos: -38.5,21.5 + rot: 1.5707963267948966 rad + pos: 94.5,-44.5 parent: 2 - missingComponents: - - AccessReader -- proto: VendingMachineCargoDrobe - entities: - - uid: 28155 + - uid: 28778 components: - type: Transform - pos: 65.5,-49.5 + rot: 3.141592653589793 rad + pos: 104.5,-44.5 parent: 2 -- proto: VendingMachineCart - entities: - - uid: 28156 + - uid: 28779 components: - type: Transform - pos: -6.5,-9.5 + pos: 95.5,-41.5 parent: 2 -- proto: VendingMachineChapel - entities: - - uid: 28157 + - uid: 28780 components: - type: Transform - pos: 26.5,6.5 + rot: -1.5707963267948966 rad + pos: 103.5,-41.5 parent: 2 -- proto: VendingMachineChefDrobe +- proto: WallmountTelescreen entities: - - uid: 28158 + - uid: 28781 components: - type: Transform - pos: 24.5,39.5 + rot: -1.5707963267948966 rad + pos: -19.5,4.5 parent: 2 -- proto: VendingMachineChefvend +- proto: WallmountTelevision entities: - - uid: 28159 + - uid: 28782 components: - type: Transform - pos: -116.5,12.5 + rot: 1.5707963267948966 rad + pos: -39.5,5.5 parent: 2 - missingComponents: - - AccessReader - - uid: 28160 +- proto: WallNecropolis + entities: + - uid: 43374 components: - type: Transform - pos: 28.5,39.5 - parent: 2 -- proto: VendingMachineChemDrobe - entities: - - uid: 28161 + pos: 53.5,22.5 + parent: 40599 + - uid: 43375 components: - type: Transform - pos: -4.5,38.5 - parent: 2 -- proto: VendingMachineChemicals - entities: - - uid: 28162 + rot: 1.5707963267948966 rad + pos: 53.5,20.5 + parent: 40599 + - uid: 43376 components: - type: Transform - pos: -7.5,41.5 - parent: 2 -- proto: VendingMachineChemicalsSyndicate - entities: - - uid: 28163 + pos: 55.5,20.5 + parent: 40599 + - uid: 43377 components: - type: Transform - pos: -89.5,55.5 - parent: 2 -- proto: VendingMachineCigs - entities: - - uid: 28164 + rot: 1.5707963267948966 rad + pos: 55.5,22.5 + parent: 40599 + - uid: 46275 + components: + - type: Transform + pos: -3.5,6.5 + parent: 45355 + - uid: 46276 components: - type: Transform - pos: 5.5,42.5 - parent: 2 - - uid: 28165 + pos: -2.5,6.5 + parent: 45355 + - uid: 46277 components: - type: Transform - pos: 78.5,7.5 - parent: 2 - - uid: 28166 + pos: -1.5,6.5 + parent: 45355 + - uid: 46278 components: - type: Transform - pos: 16.5,2.5 - parent: 2 - - uid: 28167 + pos: 2.5,6.5 + parent: 45355 + - uid: 46279 components: - type: Transform - pos: 15.5,-5.5 - parent: 2 - - uid: 28168 + pos: -0.5,6.5 + parent: 45355 + - uid: 46280 components: - type: Transform - pos: 7.5,24.5 - parent: 2 - - uid: 28169 + pos: 3.5,6.5 + parent: 45355 + - uid: 46281 components: - type: Transform - pos: -23.5,16.5 - parent: 2 - - uid: 42963 + pos: 1.5,6.5 + parent: 45355 + - uid: 46282 components: - type: Transform - pos: 57.5,78.5 - parent: 40203 -- proto: VendingMachineClothing - entities: - - uid: 28170 + pos: 4.5,6.5 + parent: 45355 + - uid: 46283 components: - type: Transform - pos: 50.5,6.5 - parent: 2 - - uid: 28171 + pos: -3.5,5.5 + parent: 45355 + - uid: 46284 components: - type: Transform - pos: 50.5,6.5 - parent: 2 - - uid: 28172 + pos: 4.5,5.5 + parent: 45355 + - uid: 46285 components: - type: Transform - pos: 68.5,-8.5 - parent: 2 - - uid: 28173 + pos: -3.5,4.5 + parent: 45355 + - uid: 46286 components: - type: Transform - pos: -107.5,24.5 - parent: 2 -- proto: VendingMachineCoffee - entities: - - uid: 28174 + pos: -3.5,1.5 + parent: 45355 + - uid: 46287 components: - type: Transform - pos: -4.5,59.5 - parent: 2 - - uid: 28175 + pos: -3.5,3.5 + parent: 45355 + - uid: 46288 components: - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 28176 + pos: -3.5,2.5 + parent: 45355 + - uid: 46289 components: - type: Transform - pos: -11.5,2.5 - parent: 2 - - uid: 28177 + pos: -3.5,0.5 + parent: 45355 + - uid: 46290 components: - type: Transform - pos: 30.5,-51.5 - parent: 2 - - uid: 28178 + pos: 0.5,6.5 + parent: 45355 + - uid: 46291 components: - type: Transform - pos: 24.5,-40.5 - parent: 2 - - uid: 28179 + pos: 6.5,10.5 + parent: 45355 + - uid: 46292 components: - type: Transform - pos: 9.5,22.5 - parent: 2 - - uid: 28180 + pos: -2.5,0.5 + parent: 45355 + - uid: 46293 components: - type: Transform - pos: 5.5,45.5 - parent: 2 -- proto: VendingMachineCondiments - entities: - - uid: 28181 + pos: 0.5,0.5 + parent: 45355 + - uid: 46294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,34.5 - parent: 2 - - uid: 28182 + pos: -0.5,0.5 + parent: 45355 + - uid: 46295 components: - type: Transform - pos: -46.5,4.5 - parent: 2 - - uid: 28183 + pos: 0.5,-0.5 + parent: 45355 + - uid: 46296 components: - type: Transform - pos: -113.5,1.5 - parent: 2 -- proto: VendingMachineCuraDrobe - entities: - - uid: 28184 + pos: 0.5,-1.5 + parent: 45355 + - uid: 46297 components: - type: Transform - pos: 5.5,22.5 - parent: 2 -- proto: VendingMachineDetDrobe - entities: - - uid: 28185 + pos: 0.5,-3.5 + parent: 45355 + - uid: 46298 components: - type: Transform - pos: -24.5,4.5 - parent: 2 -- proto: VendingMachineDinnerware - entities: - - uid: 28186 + pos: 0.5,-2.5 + parent: 45355 + - uid: 46299 components: - type: Transform - pos: 28.5,34.5 - parent: 2 - - uid: 45921 + pos: -1.5,-3.5 + parent: 45355 + - uid: 46300 components: - type: Transform - pos: 5.5,5.5 - parent: 44970 -- proto: VendingMachineDonut - entities: - - uid: 28187 + pos: 1.5,0.5 + parent: 45355 + - uid: 46301 components: - type: Transform - pos: -46.5,7.5 - parent: 2 - - uid: 28188 + pos: 4.5,0.5 + parent: 45355 + - uid: 46302 components: - type: Transform - pos: 96.5,-8.5 - parent: 2 -- proto: VendingMachineEngiDrobe - entities: - - uid: 28189 + pos: 3.5,0.5 + parent: 45355 + - uid: 46303 components: - type: Transform - pos: 8.5,-43.5 - parent: 2 -- proto: VendingMachineEngivend - entities: - - uid: 28190 + pos: 4.5,1.5 + parent: 45355 + - uid: 46304 components: - type: Transform - pos: 8.5,-41.5 - parent: 2 - - uid: 28191 + pos: -0.5,-3.5 + parent: 45355 + - uid: 46305 components: - type: Transform - pos: 10.5,-11.5 - parent: 2 -- proto: VendingMachineGames - entities: - - uid: 28192 + pos: -3.5,-3.5 + parent: 45355 + - uid: 46306 components: - type: Transform - pos: 3.5,18.5 - parent: 2 - - uid: 28193 + pos: -2.5,-3.5 + parent: 45355 + - uid: 46307 components: - type: Transform - pos: -105.5,6.5 - parent: 2 -- proto: VendingMachineGeneDrobe - entities: - - uid: 28194 + pos: -4.5,-3.5 + parent: 45355 + - uid: 46308 components: - type: Transform - pos: -28.5,49.5 - parent: 2 -- proto: VendingMachineHappyHonk - entities: - - uid: 28195 + pos: -5.5,-3.5 + parent: 45355 + - uid: 46309 components: - type: Transform - pos: 55.5,7.5 - parent: 2 -- proto: VendingMachineHydrobe - entities: - - uid: 28196 + pos: -6.5,-3.5 + parent: 45355 + - uid: 46310 components: - type: Transform - pos: 18.5,38.5 - parent: 2 -- proto: VendingMachineJaniDrobe - entities: - - uid: 28197 + pos: -6.5,-2.5 + parent: 45355 + - uid: 46311 components: - type: Transform - pos: 1.5,34.5 - parent: 2 -- proto: VendingMachineLawDrobe - entities: - - uid: 28198 + pos: -6.5,-1.5 + parent: 45355 + - uid: 46312 components: - type: Transform - pos: -21.5,23.5 - parent: 2 -- proto: VendingMachineMagivend - entities: - - uid: 28199 + pos: -6.5,-0.5 + parent: 45355 + - uid: 46313 components: - type: Transform - pos: -53.5,25.5 - parent: 2 -- proto: VendingMachineMedical - entities: - - uid: 28200 + pos: -6.5,0.5 + parent: 45355 + - uid: 46314 components: - type: Transform - pos: -56.5,13.5 - parent: 2 - - uid: 28201 + pos: -6.5,1.5 + parent: 45355 + - uid: 46315 components: - type: Transform - pos: -23.5,57.5 - parent: 2 - - uid: 28202 + pos: -6.5,2.5 + parent: 45355 + - uid: 46316 components: - type: Transform - pos: -13.5,46.5 - parent: 2 -- proto: VendingMachineMediDrobe - entities: - - uid: 28203 + pos: -6.5,3.5 + parent: 45355 + - uid: 46317 components: - type: Transform - pos: -28.5,54.5 - parent: 2 -- proto: VendingMachineNutri - entities: - - uid: 28204 + pos: -6.5,4.5 + parent: 45355 + - uid: 46318 components: - type: Transform - pos: 7.5,37.5 - parent: 2 -- proto: VendingMachineRestockBooze - entities: - - uid: 28205 + pos: -6.5,5.5 + parent: 45355 + - uid: 46319 components: - type: Transform - pos: 46.5914,21.633677 - parent: 2 -- proto: VendingMachineRoboDrobe - entities: - - uid: 28206 + pos: -6.5,6.5 + parent: 45355 + - uid: 46320 components: - type: Transform - pos: 20.5,-35.5 - parent: 2 -- proto: VendingMachineRobotics - entities: - - uid: 28207 + pos: 7.5,10.5 + parent: 45355 + - uid: 46321 components: - type: Transform - pos: 16.5,-33.5 - parent: 2 -- proto: VendingMachineSalvage - entities: - - uid: 28208 + pos: -5.5,6.5 + parent: 45355 + - uid: 46322 components: - type: Transform - pos: 85.5,-42.5 - parent: 2 -- proto: VendingMachineSciDrobe - entities: - - uid: 28209 + pos: -6.5,7.5 + parent: 45355 + - uid: 46323 components: - type: Transform - pos: 18.5,-50.5 - parent: 2 - - uid: 28210 + pos: -6.5,8.5 + parent: 45355 + - uid: 46324 components: - type: Transform - pos: 33.5,-45.5 - parent: 2 -- proto: VendingMachineSec - entities: - - uid: 28211 + pos: -6.5,9.5 + parent: 45355 + - uid: 46325 components: - type: Transform - pos: -36.5,-9.5 - parent: 2 - - uid: 28212 + pos: -6.5,10.5 + parent: 45355 + - uid: 46326 components: - type: Transform - pos: -30.5,-11.5 - parent: 2 - - uid: 28213 + pos: 2.5,10.5 + parent: 45355 + - uid: 46327 components: - type: Transform - pos: -101.5,8.5 - parent: 2 -- proto: VendingMachineSecDrobe - entities: - - uid: 28214 + pos: 3.5,10.5 + parent: 45355 + - uid: 46328 components: - type: Transform - pos: -7.5,54.5 - parent: 2 - - uid: 28215 + pos: 4.5,10.5 + parent: 45355 + - uid: 46329 components: - type: Transform - pos: -30.5,-10.5 - parent: 2 - - uid: 28216 + pos: 8.5,9.5 + parent: 45355 + - uid: 46330 components: - type: Transform - pos: -3.5,-31.5 - parent: 2 - - uid: 28217 + pos: 0.5,10.5 + parent: 45355 + - uid: 46331 components: - type: Transform - pos: -101.5,4.5 - parent: 2 -- proto: VendingMachineSeeds - entities: - - uid: 28218 + pos: -0.5,10.5 + parent: 45355 + - uid: 46332 components: - type: Transform - pos: 7.5,38.5 - parent: 2 -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 28219 + pos: -1.5,10.5 + parent: 45355 + - uid: 46333 components: - type: Transform - pos: -100.5,14.5 - parent: 2 -- proto: VendingMachineSovietSoda - entities: - - uid: 28220 + pos: 8.5,10.5 + parent: 45355 + - uid: 46334 components: - type: Transform - pos: 55.5,-15.5 - parent: 2 - - uid: 42964 + pos: -3.5,10.5 + parent: 45355 + - uid: 46335 components: - type: Transform - pos: 57.5,79.5 - parent: 40203 -- proto: VendingMachineSustenance - entities: - - uid: 28221 + pos: -4.5,10.5 + parent: 45355 + - uid: 46336 components: - type: Transform - pos: 96.5,-6.5 - parent: 2 - - uid: 28222 + pos: -5.5,10.5 + parent: 45355 + - uid: 46337 components: - type: Transform - pos: -34.5,12.5 - parent: 2 - - uid: 28223 + pos: 8.5,8.5 + parent: 45355 + - uid: 46338 components: - type: Transform - pos: -116.5,8.5 - parent: 2 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 28224 + pos: 8.5,5.5 + parent: 45355 + - uid: 46339 components: - type: Transform - pos: -21.5,-40.5 - parent: 2 - - uid: 28225 + pos: 8.5,4.5 + parent: 45355 + - uid: 46340 components: - type: Transform - pos: -26.5,-50.5 - parent: 2 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 28226 + pos: 8.5,3.5 + parent: 45355 + - uid: 46341 components: - type: Transform - pos: 4.5,-44.5 - parent: 2 - - uid: 28227 + pos: 8.5,2.5 + parent: 45355 + - uid: 46342 components: - type: Transform - pos: 51.5,-50.5 - parent: 2 - - uid: 28228 + pos: 8.5,1.5 + parent: 45355 + - uid: 46343 components: - type: Transform - pos: 45.5,-37.5 - parent: 2 - - uid: 28229 + pos: 8.5,0.5 + parent: 45355 + - uid: 46344 components: - type: Transform - pos: -11.5,11.5 - parent: 2 - - uid: 28230 + pos: 7.5,0.5 + parent: 45355 + - uid: 46345 components: - type: Transform - pos: -10.5,-52.5 - parent: 2 - - uid: 28231 + pos: 6.5,0.5 + parent: 45355 + - uid: 46346 components: - type: Transform - pos: 78.5,-43.5 - parent: 2 - - uid: 28232 + pos: 5.5,0.5 + parent: 45355 + - uid: 46347 components: - type: Transform - pos: -26.5,-49.5 - parent: 2 - - uid: 28233 + pos: -6.5,11.5 + parent: 45355 + - uid: 46348 components: - type: Transform - pos: -46.5,-14.5 - parent: 2 -- proto: VendingMachineTheater - entities: - - uid: 28234 + pos: -6.5,12.5 + parent: 45355 + - uid: 46349 components: - type: Transform - pos: 50.5,7.5 - parent: 2 - - uid: 28235 + pos: -6.5,13.5 + parent: 45355 + - uid: 46350 components: - type: Transform - pos: 50.5,7.5 - parent: 2 -- proto: VendingMachineVendomat - entities: - - uid: 28236 + pos: -6.5,14.5 + parent: 45355 + - uid: 46351 components: - type: Transform - pos: 18.5,8.5 - parent: 2 -- proto: VendingMachineViroDrobe - entities: - - uid: 28237 + pos: -6.5,15.5 + parent: 45355 + - uid: 46352 components: - type: Transform - pos: 25.5,51.5 - parent: 2 -- proto: VendingMachineWallMedical - entities: - - uid: 28238 + pos: -6.5,16.5 + parent: 45355 + - uid: 46353 components: - type: Transform - pos: -15.5,49.5 - parent: 2 - - uid: 28239 + pos: -6.5,17.5 + parent: 45355 + - uid: 46354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,3.5 - parent: 2 -- proto: VendingMachineWinter - entities: - - uid: 28240 + pos: -5.5,17.5 + parent: 45355 + - uid: 46355 components: - type: Transform - pos: 25.5,-43.5 - parent: 2 - - uid: 28241 + pos: -4.5,17.5 + parent: 45355 + - uid: 46356 components: - type: Transform - pos: 62.5,7.5 - parent: 2 - - uid: 28242 + pos: -3.5,17.5 + parent: 45355 + - uid: 46357 components: - type: Transform - pos: 66.5,-52.5 - parent: 2 - - uid: 28243 + pos: -2.5,17.5 + parent: 45355 + - uid: 46358 components: - type: Transform - pos: 72.5,-7.5 - parent: 2 - - uid: 28244 + pos: -1.5,17.5 + parent: 45355 + - uid: 46359 components: - type: Transform - pos: -28.5,10.5 - parent: 2 - - uid: 28245 + pos: -0.5,17.5 + parent: 45355 + - uid: 46360 components: - type: Transform - pos: 45.5,-25.5 - parent: 2 - - uid: 28246 + pos: 0.5,17.5 + parent: 45355 + - uid: 46361 components: - type: Transform - pos: -97.5,-6.5 - parent: 2 - - uid: 28247 + pos: 1.5,17.5 + parent: 45355 + - uid: 46362 components: - type: Transform - pos: -0.5,36.5 - parent: 2 -- proto: VendingMachineYouTool - entities: - - uid: 28248 + pos: 2.5,17.5 + parent: 45355 + - uid: 46363 components: - type: Transform - pos: 26.5,-12.5 - parent: 2 - - uid: 28249 + pos: 3.5,17.5 + parent: 45355 + - uid: 46364 components: - type: Transform - pos: 85.5,-46.5 - parent: 2 - - uid: 28250 + pos: 4.5,17.5 + parent: 45355 + - uid: 46365 components: - type: Transform - pos: 8.5,-42.5 - parent: 2 -- proto: VoiceTrigger - entities: - - uid: 28251 + pos: -0.5,12.5 + parent: 45355 + - uid: 46366 components: - type: Transform - pos: 38.44894,-48.80168 - parent: 2 -- proto: WallAndesiteCobblebrick - entities: - - uid: 28252 + pos: -0.5,11.5 + parent: 45355 + - uid: 46367 components: - - type: MetaData - desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. - name: белая кирпичная стена - type: Transform - pos: 15.5,-29.5 - parent: 2 - - uid: 28253 + pos: -0.5,14.5 + parent: 45355 + - uid: 46368 components: - - type: MetaData - desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. - name: белая кирпичная стена - type: Transform - pos: 16.5,-29.5 - parent: 2 - - uid: 28254 + pos: -0.5,13.5 + parent: 45355 + - uid: 46369 components: - - type: MetaData - desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. - name: белая кирпичная стена - type: Transform - pos: 14.5,-29.5 - parent: 2 - - uid: 28255 + pos: -0.5,16.5 + parent: 45355 + - uid: 46370 components: - - type: MetaData - desc: Стена из белого кирпича, усеянная разными рисунками. Вы ощущаете непреодолимое желание прикоснуться к ней.. - name: белая кирпичная стена - type: Transform - pos: 13.5,-29.5 - parent: 2 -- proto: WallForce - entities: - - uid: 42965 + pos: -0.5,15.5 + parent: 45355 + - uid: 46371 components: - type: Transform - pos: 54.5,42.5 - parent: 40203 - - type: ContainmentField - missingComponents: - - TimedDespawn - - uid: 42966 + pos: 5.5,6.5 + parent: 45355 + - uid: 46372 components: - type: Transform - pos: 54.5,38.5 - parent: 40203 - - type: ContainmentField - missingComponents: - - TimedDespawn - - uid: 42967 + pos: 5.5,7.5 + parent: 45355 + - uid: 46373 components: - type: Transform - pos: 50.5,38.5 - parent: 40203 - - type: ContainmentField - missingComponents: - - TimedDespawn - - uid: 42968 + pos: 5.5,9.5 + parent: 45355 + - uid: 46374 components: - type: Transform - pos: 50.5,42.5 - parent: 40203 - - type: ContainmentField - missingComponents: - - TimedDespawn -- proto: WallIce - entities: - - uid: 28256 + pos: 5.5,10.5 + parent: 45355 + - uid: 46375 components: - type: Transform - pos: -71.5,-22.5 - parent: 2 - - uid: 28257 + pos: 5.5,11.5 + parent: 45355 + - uid: 46376 components: - type: Transform - pos: 40.5,50.5 - parent: 2 - - uid: 28258 + pos: 5.5,12.5 + parent: 45355 + - uid: 46377 components: - type: Transform - pos: 42.5,50.5 - parent: 2 - - uid: 28259 + pos: 5.5,13.5 + parent: 45355 + - uid: 46378 components: - type: Transform - pos: 43.5,50.5 - parent: 2 - - uid: 28260 + pos: 5.5,14.5 + parent: 45355 + - uid: 46379 components: - type: Transform - pos: 38.5,54.5 - parent: 2 - - uid: 28261 + pos: 5.5,15.5 + parent: 45355 + - uid: 46380 components: - type: Transform - pos: 44.5,54.5 - parent: 2 - - uid: 28262 + pos: 5.5,16.5 + parent: 45355 + - uid: 46381 components: - type: Transform - pos: 38.5,51.5 - parent: 2 - - uid: 28263 + pos: 5.5,17.5 + parent: 45355 + - uid: 46382 components: - type: Transform - pos: 42.5,47.5 - parent: 2 - - uid: 28264 + pos: 11.5,6.5 + parent: 45355 + - uid: 46383 components: - type: Transform - pos: 40.5,47.5 - parent: 2 - - uid: 28265 + pos: 9.5,10.5 + parent: 45355 + - uid: 46384 components: - type: Transform - pos: 39.5,47.5 - parent: 2 - - uid: 28266 + pos: 9.5,6.5 + parent: 45355 + - uid: 46385 components: - type: Transform - pos: 41.5,55.5 - parent: 2 - - uid: 28267 + pos: 10.5,6.5 + parent: 45355 + - uid: 46386 components: - type: Transform - pos: 42.5,55.5 - parent: 2 - - uid: 28268 + pos: 8.5,6.5 + parent: 45355 + - uid: 46387 components: - type: Transform - pos: 38.5,53.5 - parent: 2 - - uid: 28269 + pos: 11.5,7.5 + parent: 45355 + - uid: 46388 components: - type: Transform - pos: 39.5,55.5 - parent: 2 - - uid: 28270 + pos: 11.5,8.5 + parent: 45355 + - uid: 46389 components: - type: Transform - pos: 44.5,55.5 - parent: 2 - - uid: 28271 + pos: 11.5,9.5 + parent: 45355 + - uid: 46390 components: - type: Transform - pos: 38.5,49.5 - parent: 2 - - uid: 28272 + pos: 11.5,10.5 + parent: 45355 + - uid: 46391 components: - type: Transform - pos: 44.5,51.5 - parent: 2 - - uid: 28273 + pos: 10.5,10.5 + parent: 45355 +- proto: WallPlastitanium + entities: + - uid: 43378 components: - type: Transform - pos: 44.5,52.5 - parent: 2 - - uid: 28274 + rot: 3.141592653589793 rad + pos: 72.5,50.5 + parent: 40599 + - uid: 43379 components: - type: Transform - pos: 44.5,50.5 - parent: 2 - - uid: 28275 + rot: -1.5707963267948966 rad + pos: 53.5,82.5 + parent: 40599 + - uid: 43380 components: - type: Transform - pos: 43.5,47.5 - parent: 2 - - uid: 28276 + rot: -1.5707963267948966 rad + pos: 54.5,82.5 + parent: 40599 + - uid: 43381 components: - type: Transform - pos: 44.5,53.5 - parent: 2 - - uid: 28277 + rot: -1.5707963267948966 rad + pos: 53.5,81.5 + parent: 40599 + - uid: 43382 components: - type: Transform - pos: 39.5,50.5 - parent: 2 - - uid: 28278 + pos: 49.5,67.5 + parent: 40599 + - uid: 43383 components: - type: Transform - pos: 38.5,52.5 - parent: 2 - - uid: 28279 + pos: 31.5,67.5 + parent: 40599 + - uid: 43384 components: - type: Transform - pos: 38.5,50.5 - parent: 2 - - uid: 28280 + rot: 1.5707963267948966 rad + pos: 33.5,64.5 + parent: 40599 + - uid: 43385 components: - type: Transform - pos: 40.5,55.5 - parent: 2 - - uid: 28281 + rot: 1.5707963267948966 rad + pos: 33.5,63.5 + parent: 40599 + - uid: 43386 components: - type: Transform - pos: 38.5,55.5 - parent: 2 - - uid: 28282 + rot: 1.5707963267948966 rad + pos: 33.5,62.5 + parent: 40599 + - uid: 43387 components: - type: Transform - pos: 43.5,55.5 - parent: 2 - - uid: 28283 + rot: 3.141592653589793 rad + pos: 33.5,55.5 + parent: 40599 + - uid: 43388 components: - type: Transform - pos: 38.5,48.5 - parent: 2 - - uid: 28284 + rot: 3.141592653589793 rad + pos: 33.5,54.5 + parent: 40599 + - uid: 43389 components: - type: Transform - pos: 38.5,47.5 - parent: 2 - - uid: 28285 + pos: 32.5,67.5 + parent: 40599 + - uid: 43390 components: - type: Transform - pos: 44.5,48.5 - parent: 2 - - uid: 28286 + pos: 28.5,67.5 + parent: 40599 + - uid: 43391 components: - type: Transform - pos: 44.5,47.5 - parent: 2 - - uid: 28287 + rot: 1.5707963267948966 rad + pos: 34.5,64.5 + parent: 40599 + - uid: 43392 components: - type: Transform - pos: 44.5,49.5 - parent: 2 - - uid: 28288 + rot: 1.5707963267948966 rad + pos: 34.5,63.5 + parent: 40599 + - uid: 43393 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,13.5 - parent: 2 - - uid: 28289 + pos: 34.5,62.5 + parent: 40599 + - uid: 43394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,48.5 - parent: 2 - - uid: 28290 + pos: 34.5,54.5 + parent: 40599 + - uid: 43395 + components: + - type: Transform + pos: 35.5,81.5 + parent: 40599 + - uid: 43396 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,10.5 - parent: 2 - - uid: 28291 + pos: 35.5,80.5 + parent: 40599 + - uid: 43397 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,14.5 - parent: 2 - - uid: 28292 + pos: 57.5,73.5 + parent: 40599 + - uid: 43398 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,19.5 - parent: 2 - - uid: 28293 + pos: 65.5,73.5 + parent: 40599 + - uid: 43399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-12.5 - parent: 2 - - uid: 28294 + pos: 38.5,71.5 + parent: 40599 + - uid: 43400 components: - type: Transform rot: 1.5707963267948966 rad - pos: -93.5,32.5 - parent: 2 - - uid: 28295 + pos: 35.5,64.5 + parent: 40599 + - uid: 43401 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,32.5 - parent: 2 - - uid: 28296 + pos: 35.5,63.5 + parent: 40599 + - uid: 43402 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,46.5 - parent: 2 - - uid: 28297 + pos: 35.5,62.5 + parent: 40599 + - uid: 43403 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,45.5 - parent: 2 - - uid: 28298 + pos: 35.5,61.5 + parent: 40599 + - uid: 43404 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,46.5 - parent: 2 - - uid: 28299 + pos: 35.5,60.5 + parent: 40599 + - uid: 43405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,17.5 - parent: 2 - - uid: 28300 + pos: 35.5,59.5 + parent: 40599 + - uid: 43406 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,17.5 - parent: 2 - - uid: 28301 + pos: 35.5,58.5 + parent: 40599 + - uid: 43407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,18.5 - parent: 2 - - uid: 28302 + pos: 35.5,54.5 + parent: 40599 + - uid: 43408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,11.5 - parent: 2 - - uid: 28303 + pos: 36.5,81.5 + parent: 40599 + - uid: 43409 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,9.5 - parent: 2 - - uid: 28304 + pos: 62.5,53.5 + parent: 40599 + - uid: 43410 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,6.5 - parent: 2 - - uid: 28305 + pos: 63.5,67.5 + parent: 40599 + - uid: 43411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,12.5 - parent: 2 - - uid: 28306 + pos: 39.5,77.5 + parent: 40599 + - uid: 43412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,56.5 - parent: 2 - - uid: 28307 + pos: 46.5,76.5 + parent: 40599 + - uid: 43413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,57.5 - parent: 2 - - uid: 28308 + pos: 33.5,67.5 + parent: 40599 + - uid: 43414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,64.5 - parent: 2 - - uid: 28309 + pos: 50.5,67.5 + parent: 40599 + - uid: 43415 + components: + - type: Transform + pos: 36.5,54.5 + parent: 40599 + - uid: 43416 + components: + - type: Transform + pos: 37.5,81.5 + parent: 40599 + - uid: 43417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 80.5,-2.5 - parent: 2 - - uid: 28310 + pos: 55.5,73.5 + parent: 40599 + - uid: 43418 + components: + - type: Transform + pos: 46.5,73.5 + parent: 40599 + - uid: 43419 components: - type: Transform rot: 1.5707963267948966 rad - pos: 81.5,-2.5 - parent: 2 - - uid: 28311 + pos: 37.5,64.5 + parent: 40599 + - uid: 43420 + components: + - type: Transform + pos: 35.5,68.5 + parent: 40599 + - uid: 43421 components: - type: Transform rot: 1.5707963267948966 rad - pos: 90.5,-2.5 - parent: 2 - - uid: 28312 + pos: 35.5,67.5 + parent: 40599 + - uid: 43422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -140.5,-1.5 - parent: 2 - - uid: 28313 + pos: 37.5,54.5 + parent: 40599 + - uid: 43423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -137.5,-4.5 - parent: 2 - - uid: 28314 + pos: 38.5,81.5 + parent: 40599 + - uid: 43424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -137.5,-5.5 - parent: 2 - - uid: 28315 + pos: 38.5,54.5 + parent: 40599 + - uid: 43425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-13.5 - parent: 2 - - uid: 28316 + pos: 39.5,85.5 + parent: 40599 + - uid: 43426 components: - type: Transform - pos: -36.5,66.5 - parent: 2 - - uid: 28317 + pos: 39.5,84.5 + parent: 40599 + - uid: 43427 components: - type: Transform - pos: -36.5,67.5 - parent: 2 - - uid: 28318 + pos: 39.5,83.5 + parent: 40599 + - uid: 43428 components: - type: Transform - pos: -35.5,65.5 - parent: 2 - - uid: 28319 + pos: 39.5,82.5 + parent: 40599 + - uid: 43429 components: - type: Transform - pos: -35.5,68.5 - parent: 2 - - uid: 28320 + pos: 39.5,81.5 + parent: 40599 + - uid: 43430 components: - type: Transform - pos: -35.5,67.5 - parent: 2 - - uid: 28321 + pos: 39.5,54.5 + parent: 40599 + - uid: 43431 components: - type: Transform - pos: -36.5,65.5 - parent: 2 - - uid: 28322 + pos: 40.5,85.5 + parent: 40599 + - uid: 43432 components: - type: Transform - pos: -26.5,31.5 - parent: 2 - - uid: 28323 + pos: 48.5,75.5 + parent: 40599 + - uid: 43433 components: - type: Transform - pos: -26.5,62.5 - parent: 2 - - uid: 28324 + pos: 40.5,54.5 + parent: 40599 + - uid: 43434 components: - type: Transform - pos: -25.5,62.5 - parent: 2 - - uid: 28325 + pos: 44.5,58.5 + parent: 40599 + - uid: 43435 components: - type: Transform - pos: -72.5,-22.5 - parent: 2 - - uid: 28326 + pos: 40.5,58.5 + parent: 40599 + - uid: 43436 components: - type: Transform - pos: -70.5,-22.5 - parent: 2 - - uid: 28327 + pos: 41.5,85.5 + parent: 40599 + - uid: 43437 components: - type: Transform - pos: -23.5,68.5 - parent: 2 - - uid: 28328 + pos: 44.5,54.5 + parent: 40599 + - uid: 43438 components: - type: Transform - pos: -25.5,63.5 - parent: 2 - - uid: 28329 + pos: 46.5,58.5 + parent: 40599 + - uid: 43439 components: - type: Transform - pos: -28.5,67.5 - parent: 2 - - uid: 28330 + pos: 46.5,57.5 + parent: 40599 + - uid: 43440 components: - type: Transform - pos: -28.5,68.5 - parent: 2 - - uid: 28331 + pos: 42.5,85.5 + parent: 40599 + - uid: 43441 components: - type: Transform - pos: -73.5,-21.5 - parent: 2 - - uid: 28332 + pos: 38.5,55.5 + parent: 40599 + - uid: 43442 components: - type: Transform - pos: -72.5,-21.5 - parent: 2 - - uid: 28333 + pos: 45.5,58.5 + parent: 40599 + - uid: 43443 components: - type: Transform - pos: -78.5,-11.5 - parent: 2 - missingComponents: - - Destructible - - Occluder - - uid: 28334 + pos: 43.5,85.5 + parent: 40599 + - uid: 43444 components: - type: Transform - pos: -76.5,-11.5 - parent: 2 - missingComponents: - - Destructible - - Occluder - - uid: 28335 + pos: 38.5,57.5 + parent: 40599 + - uid: 43445 components: - type: Transform - pos: -77.5,-11.5 - parent: 2 - missingComponents: - - Destructible - - Occluder - - uid: 28336 + pos: 38.5,58.5 + parent: 40599 + - uid: 43446 components: - type: Transform - pos: -75.5,-11.5 - parent: 2 - missingComponents: - - Destructible - - Occluder - - uid: 28337 + rot: 1.5707963267948966 rad + pos: 48.5,52.5 + parent: 40599 + - uid: 43447 components: - type: Transform - pos: -78.5,-9.5 - parent: 2 - missingComponents: - - Destructible - - Occluder - - uid: 28338 + pos: 38.5,56.5 + parent: 40599 + - uid: 43448 components: - type: Transform - pos: -78.5,-10.5 - parent: 2 - missingComponents: - - Destructible - - Occluder - - uid: 28339 + pos: 39.5,58.5 + parent: 40599 + - uid: 43449 components: - type: Transform - pos: -33.5,61.5 - parent: 2 - - uid: 28340 + pos: 67.5,77.5 + parent: 40599 + - uid: 43450 components: - type: Transform - pos: -33.5,60.5 - parent: 2 - - uid: 28341 + pos: 45.5,54.5 + parent: 40599 + - uid: 43451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,72.5 - parent: 2 - - uid: 28342 + pos: 46.5,55.5 + parent: 40599 + - uid: 43452 components: - type: Transform - pos: -32.5,60.5 - parent: 2 - - uid: 28343 + pos: 46.5,54.5 + parent: 40599 + - uid: 43453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,72.5 - parent: 2 - - uid: 28344 + pos: 47.5,55.5 + parent: 40599 + - uid: 43454 components: - type: Transform - pos: -86.5,29.5 - parent: 2 - - uid: 28345 + pos: 47.5,54.5 + parent: 40599 + - uid: 43455 components: - type: Transform - pos: -86.5,28.5 - parent: 2 - - uid: 28346 + rot: 3.141592653589793 rad + pos: 34.5,58.5 + parent: 40599 + - uid: 43456 components: - type: Transform - pos: -86.5,27.5 - parent: 2 - - uid: 28347 + pos: 61.5,77.5 + parent: 40599 + - uid: 43457 components: - type: Transform - pos: -86.5,26.5 - parent: 2 - - uid: 28348 + rot: 1.5707963267948966 rad + pos: 34.5,60.5 + parent: 40599 + - uid: 43458 components: - type: Transform - pos: -137.5,-3.5 - parent: 2 - - uid: 28349 + rot: 1.5707963267948966 rad + pos: 68.5,80.5 + parent: 40599 + - uid: 43459 components: - type: Transform - pos: -90.5,63.5 - parent: 2 - missingComponents: - - Occluder - - uid: 28350 + rot: 1.5707963267948966 rad + pos: 48.5,55.5 + parent: 40599 + - uid: 43460 components: - type: Transform - pos: -34.5,-60.5 - parent: 2 - - uid: 28351 + rot: 1.5707963267948966 rad + pos: 48.5,54.5 + parent: 40599 + - uid: 43461 components: - type: Transform - pos: -33.5,-60.5 - parent: 2 - - uid: 28352 + pos: 67.5,78.5 + parent: 40599 + - uid: 43462 components: - type: Transform - pos: -32.5,-61.5 - parent: 2 - - uid: 28353 + rot: -1.5707963267948966 rad + pos: 61.5,51.5 + parent: 40599 + - uid: 43463 components: - type: Transform - pos: -32.5,-60.5 - parent: 2 - - uid: 42969 + pos: 46.5,69.5 + parent: 40599 + - uid: 43464 components: - type: Transform rot: 1.5707963267948966 rad - pos: 73.5,48.5 - parent: 40203 - - uid: 42970 + pos: 54.5,63.5 + parent: 40599 + - uid: 43465 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,47.5 - parent: 40203 - - uid: 42971 + pos: 66.5,67.5 + parent: 40599 + - uid: 43466 + components: + - type: Transform + pos: 53.5,75.5 + parent: 40599 + - uid: 43467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 72.5,48.5 - parent: 40203 - - uid: 42972 + pos: 53.5,72.5 + parent: 40599 + - uid: 43468 components: - type: Transform - pos: 77.5,48.5 - parent: 40203 - - uid: 42973 + pos: 61.5,79.5 + parent: 40599 + - uid: 43469 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,49.5 - parent: 40203 - - uid: 42974 + pos: 49.5,64.5 + parent: 40599 + - uid: 43470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,47.5 - parent: 40203 - - uid: 42975 + pos: 61.5,76.5 + parent: 40599 + - uid: 43471 components: - type: Transform - pos: 77.5,45.5 - parent: 40203 - - uid: 42976 + pos: 64.5,79.5 + parent: 40599 + - uid: 43472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,50.5 - parent: 40203 - - uid: 42977 + pos: 55.5,84.5 + parent: 40599 + - uid: 43473 components: - type: Transform - pos: 78.5,49.5 - parent: 40203 - - uid: 42978 + pos: 56.5,84.5 + parent: 40599 + - uid: 43474 components: - type: Transform - pos: 78.5,48.5 - parent: 40203 - - uid: 42979 + pos: 57.5,84.5 + parent: 40599 + - uid: 43475 components: - type: Transform - pos: 78.5,45.5 - parent: 40203 - - uid: 42980 + pos: 58.5,83.5 + parent: 40599 + - uid: 43476 components: - type: Transform - pos: 77.5,47.5 - parent: 40203 - - uid: 42981 + rot: 1.5707963267948966 rad + pos: 35.5,77.5 + parent: 40599 + - uid: 43477 components: - type: Transform - pos: 77.5,46.5 - parent: 40203 - - uid: 42982 + pos: 58.5,84.5 + parent: 40599 + - uid: 43478 components: - type: Transform - pos: 73.5,47.5 - parent: 40203 - - uid: 42983 + rot: 1.5707963267948966 rad + pos: 62.5,61.5 + parent: 40599 + - uid: 43479 components: - type: Transform - pos: 76.5,46.5 - parent: 40203 - - uid: 42984 + rot: 1.5707963267948966 rad + pos: 60.5,67.5 + parent: 40599 + - uid: 43480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,48.5 - parent: 40203 -- proto: WallMining - entities: - - uid: 28354 + pos: 59.5,84.5 + parent: 40599 + - uid: 43481 components: - type: Transform - rot: 3.141592653589793 rad - pos: 103.5,-44.5 - parent: 2 - - uid: 28355 + rot: 1.5707963267948966 rad + pos: 62.5,59.5 + parent: 40599 + - uid: 43482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-42.5 - parent: 2 - - uid: 28356 + rot: 1.5707963267948966 rad + pos: 62.5,63.5 + parent: 40599 + - uid: 43483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-43.5 - parent: 2 - - uid: 28357 + pos: 48.5,64.5 + parent: 40599 + - uid: 43484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-41.5 - parent: 2 - - uid: 28358 + pos: 60.5,84.5 + parent: 40599 + - uid: 43485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 100.5,-44.5 - parent: 2 - - uid: 28359 + rot: 1.5707963267948966 rad + pos: 62.5,60.5 + parent: 40599 + - uid: 43486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-41.5 - parent: 2 - - uid: 28360 + rot: 1.5707963267948966 rad + pos: 62.5,62.5 + parent: 40599 + - uid: 43487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-41.5 - parent: 2 - - uid: 28361 + pos: 61.5,84.5 + parent: 40599 + - uid: 43488 + components: + - type: Transform + pos: 61.5,83.5 + parent: 40599 + - uid: 43489 + components: + - type: Transform + pos: 61.5,82.5 + parent: 40599 + - uid: 43490 components: - type: Transform rot: 1.5707963267948966 rad - pos: 101.5,-39.5 - parent: 2 - - uid: 28362 + pos: 54.5,64.5 + parent: 40599 + - uid: 43491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 102.5,-44.5 - parent: 2 - - uid: 28363 + pos: 49.5,75.5 + parent: 40599 + - uid: 43492 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-41.5 - parent: 2 - - uid: 28364 + rot: 1.5707963267948966 rad + pos: 57.5,67.5 + parent: 40599 + - uid: 43493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 98.5,-44.5 - parent: 2 - - uid: 28365 + rot: 1.5707963267948966 rad + pos: 53.5,73.5 + parent: 40599 + - uid: 43494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-42.5 - parent: 2 - - uid: 28366 + pos: 69.5,63.5 + parent: 40599 + - uid: 43495 components: - type: Transform rot: 1.5707963267948966 rad - pos: 97.5,-39.5 - parent: 2 - - uid: 28367 + pos: 54.5,73.5 + parent: 40599 + - uid: 43496 components: - type: Transform rot: 1.5707963267948966 rad - pos: 96.5,-40.5 - parent: 2 - - uid: 28368 + pos: 53.5,70.5 + parent: 40599 + - uid: 43497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 101.5,-41.5 - parent: 2 - - uid: 28369 + rot: 1.5707963267948966 rad + pos: 59.5,67.5 + parent: 40599 + - uid: 43498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 103.5,-43.5 - parent: 2 - - uid: 28370 + pos: 53.5,68.5 + parent: 40599 + - uid: 43499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-42.5 - parent: 2 - - uid: 28371 + rot: 1.5707963267948966 rad + pos: 56.5,73.5 + parent: 40599 + - uid: 43500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-43.5 - parent: 2 - - uid: 28372 + rot: 1.5707963267948966 rad + pos: 56.5,67.5 + parent: 40599 + - uid: 43501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-41.5 - parent: 2 - - uid: 28373 + rot: 1.5707963267948966 rad + pos: 35.5,72.5 + parent: 40599 + - uid: 43502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-43.5 - parent: 2 - - uid: 28374 + pos: 41.5,67.5 + parent: 40599 + - uid: 43503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,57.5 - parent: 2 - - uid: 28375 + rot: 1.5707963267948966 rad + pos: 67.5,49.5 + parent: 40599 + - uid: 43504 components: - type: Transform - pos: -53.5,-27.5 - parent: 2 - - uid: 28376 + rot: 1.5707963267948966 rad + pos: 63.5,73.5 + parent: 40599 + - uid: 43505 components: - type: Transform - pos: -56.5,-27.5 - parent: 2 - - uid: 28377 + rot: 1.5707963267948966 rad + pos: 48.5,80.5 + parent: 40599 + - uid: 43506 components: - type: Transform - pos: -55.5,-27.5 - parent: 2 - - uid: 28378 + rot: 1.5707963267948966 rad + pos: 35.5,71.5 + parent: 40599 + - uid: 43507 components: - type: Transform - pos: -58.5,-29.5 - parent: 2 - - uid: 28379 + rot: 1.5707963267948966 rad + pos: 68.5,49.5 + parent: 40599 + - uid: 43508 components: - type: Transform - pos: -58.5,-28.5 - parent: 2 - - uid: 28380 + rot: 1.5707963267948966 rad + pos: 67.5,67.5 + parent: 40599 + - uid: 43509 components: - type: Transform - pos: -40.5,33.5 - parent: 2 - - uid: 28381 + rot: 1.5707963267948966 rad + pos: 61.5,73.5 + parent: 40599 + - uid: 43510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,34.5 - parent: 2 - - uid: 28382 + rot: 1.5707963267948966 rad + pos: 35.5,73.5 + parent: 40599 + - uid: 43511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,34.5 - parent: 2 - - uid: 28383 + rot: 1.5707963267948966 rad + pos: 69.5,49.5 + parent: 40599 + - uid: 43512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,34.5 - parent: 2 - - uid: 28384 + rot: 1.5707963267948966 rad + pos: 42.5,64.5 + parent: 40599 + - uid: 43513 components: - type: Transform - pos: -40.5,32.5 - parent: 2 - - uid: 28385 + rot: 1.5707963267948966 rad + pos: 54.5,67.5 + parent: 40599 + - uid: 43514 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,35.5 - parent: 2 - - uid: 28386 + rot: 1.5707963267948966 rad + pos: 58.5,67.5 + parent: 40599 + - uid: 43515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 2 - - uid: 28387 + rot: 1.5707963267948966 rad + pos: 70.5,49.5 + parent: 40599 + - uid: 43516 components: - type: Transform - pos: -34.5,36.5 - parent: 2 - - uid: 28388 + rot: 1.5707963267948966 rad + pos: 71.5,80.5 + parent: 40599 + - uid: 43517 components: - type: Transform - pos: -37.5,37.5 - parent: 2 - - uid: 28389 + rot: 1.5707963267948966 rad + pos: 75.5,79.5 + parent: 40599 + - uid: 43518 components: - type: Transform - pos: -38.5,37.5 - parent: 2 - - uid: 28390 + rot: 1.5707963267948966 rad + pos: 64.5,67.5 + parent: 40599 + - uid: 43519 components: - type: Transform - pos: -39.5,36.5 - parent: 2 - - uid: 28391 + pos: 71.5,51.5 + parent: 40599 + - uid: 43520 components: - type: Transform - pos: -40.5,35.5 - parent: 2 - - uid: 28392 + pos: 71.5,50.5 + parent: 40599 + - uid: 43521 components: - type: Transform - pos: -40.5,34.5 - parent: 2 - - uid: 28393 + rot: 1.5707963267948966 rad + pos: 71.5,49.5 + parent: 40599 + - uid: 43522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,23.5 - parent: 2 - - uid: 28394 + rot: 1.5707963267948966 rad + pos: 72.5,80.5 + parent: 40599 + - uid: 43523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,23.5 - parent: 2 - - uid: 28395 + rot: 1.5707963267948966 rad + pos: 73.5,76.5 + parent: 40599 + - uid: 43524 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,23.5 - parent: 2 - - uid: 28396 + pos: 72.5,70.5 + parent: 40599 + - uid: 43525 components: - type: Transform - pos: -56.5,-33.5 - parent: 2 - - uid: 28397 + rot: 1.5707963267948966 rad + pos: 64.5,73.5 + parent: 40599 + - uid: 43526 components: - type: Transform - pos: -55.5,-33.5 - parent: 2 - - uid: 28398 + rot: 1.5707963267948966 rad + pos: 67.5,72.5 + parent: 40599 + - uid: 43527 components: - type: Transform - pos: -53.5,-30.5 - parent: 2 - - uid: 28399 + pos: 53.5,74.5 + parent: 40599 + - uid: 43528 components: - type: Transform - pos: -53.5,-28.5 - parent: 2 - - uid: 28400 + rot: 1.5707963267948966 rad + pos: 72.5,51.5 + parent: 40599 + - uid: 43529 components: - type: Transform - pos: -53.5,-29.5 - parent: 2 - - uid: 28401 + rot: -1.5707963267948966 rad + pos: 72.5,49.5 + parent: 40599 + - uid: 43530 components: - type: Transform - pos: -58.5,-31.5 - parent: 2 - - uid: 28402 + rot: 1.5707963267948966 rad + pos: 73.5,80.5 + parent: 40599 + - uid: 43531 components: - type: Transform - pos: -58.5,-27.5 - parent: 2 - - uid: 28403 + rot: 1.5707963267948966 rad + pos: 75.5,78.5 + parent: 40599 + - uid: 43532 components: - type: Transform - pos: -57.5,-27.5 - parent: 2 - - uid: 28404 + pos: 71.5,76.5 + parent: 40599 + - uid: 43533 components: - type: Transform - pos: -58.5,-30.5 - parent: 2 - - uid: 28405 + rot: 1.5707963267948966 rad + pos: 73.5,70.5 + parent: 40599 + - uid: 43534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,58.5 - parent: 2 - - uid: 28406 + pos: 73.5,56.5 + parent: 40599 + - uid: 43535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,59.5 - parent: 2 - - uid: 28407 + pos: 73.5,55.5 + parent: 40599 + - uid: 43536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,60.5 - parent: 2 - - uid: 28408 + pos: 73.5,54.5 + parent: 40599 + - uid: 43537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,59.5 - parent: 2 - - uid: 28409 + pos: 73.5,53.5 + parent: 40599 + - uid: 43538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,56.5 - parent: 2 - - uid: 28410 + pos: 73.5,52.5 + parent: 40599 + - uid: 43539 components: - type: Transform - pos: -90.5,54.5 - parent: 2 - - uid: 28411 + pos: 73.5,51.5 + parent: 40599 + - uid: 43540 components: - type: Transform - pos: -89.5,54.5 - parent: 2 - - uid: 28412 + rot: 1.5707963267948966 rad + pos: 74.5,80.5 + parent: 40599 + - uid: 43541 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,59.5 - parent: 2 - - uid: 28413 + pos: 73.5,49.5 + parent: 40599 + - uid: 43542 components: - type: Transform - pos: -88.5,54.5 - parent: 2 - - uid: 28414 + pos: 74.5,76.5 + parent: 40599 + - uid: 43543 components: - type: Transform - pos: -87.5,54.5 - parent: 2 - - uid: 28415 + rot: 1.5707963267948966 rad + pos: 74.5,70.5 + parent: 40599 + - uid: 43544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,58.5 - parent: 2 - - uid: 28416 + rot: 1.5707963267948966 rad + pos: 75.5,80.5 + parent: 40599 + - uid: 43545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,55.5 - parent: 2 - - uid: 28417 + pos: 75.5,76.5 + parent: 40599 + - uid: 43546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,55.5 - parent: 2 - - uid: 28418 + pos: 75.5,72.5 + parent: 40599 + - uid: 43547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,59.5 - parent: 2 - - uid: 28419 + rot: 1.5707963267948966 rad + pos: 75.5,71.5 + parent: 40599 + - uid: 43548 components: - type: Transform - pos: -86.5,54.5 - parent: 2 - - uid: 28420 + rot: 1.5707963267948966 rad + pos: 75.5,70.5 + parent: 40599 + - uid: 43549 components: - type: Transform - pos: -88.5,59.5 - parent: 2 - - uid: 28421 + rot: 1.5707963267948966 rad + pos: 76.5,78.5 + parent: 40599 + - uid: 43550 components: - type: Transform - pos: -86.5,59.5 - parent: 2 - - uid: 28422 + rot: 1.5707963267948966 rad + pos: 76.5,77.5 + parent: 40599 + - uid: 43551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,60.5 - parent: 2 - - uid: 28423 + rot: 1.5707963267948966 rad + pos: 76.5,76.5 + parent: 40599 + - uid: 43552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,57.5 - parent: 2 - - uid: 28424 + rot: 1.5707963267948966 rad + pos: 76.5,75.5 + parent: 40599 + - uid: 43553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,56.5 - parent: 2 - - uid: 28425 + rot: 1.5707963267948966 rad + pos: 76.5,74.5 + parent: 40599 + - uid: 43554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,55.5 - parent: 2 - - uid: 28426 + rot: 1.5707963267948966 rad + pos: 76.5,73.5 + parent: 40599 + - uid: 43555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,55.5 - parent: 2 - - uid: 28427 + pos: 76.5,72.5 + parent: 40599 + - uid: 43556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,57.5 - parent: 2 - - uid: 28428 + pos: 69.5,55.5 + parent: 40599 + - uid: 43557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,56.5 - parent: 2 - - uid: 28429 + pos: 67.5,79.5 + parent: 40599 + - uid: 43558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,59.5 - parent: 2 - - uid: 28430 + pos: 69.5,51.5 + parent: 40599 + - uid: 43559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,57.5 - parent: 2 - - uid: 28431 + pos: 69.5,52.5 + parent: 40599 + - uid: 43560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-43.5 - parent: 2 - - uid: 28432 + pos: 69.5,58.5 + parent: 40599 + - uid: 43561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 95.5,-44.5 - parent: 2 - - uid: 28433 + pos: 69.5,50.5 + parent: 40599 + - uid: 43562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.5,-44.5 - parent: 2 -- proto: WallMiningDiagonal - entities: - - uid: 28434 + pos: 69.5,54.5 + parent: 40599 + - uid: 43563 components: - type: Transform - pos: 96.5,-39.5 - parent: 2 - - uid: 28435 + pos: 69.5,53.5 + parent: 40599 + - uid: 43564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 102.5,-39.5 - parent: 2 - - uid: 28436 + pos: 71.5,58.5 + parent: 40599 + - uid: 43565 components: - type: Transform - pos: -37.5,34.5 - parent: 2 - - uid: 28437 + pos: 73.5,57.5 + parent: 40599 + - uid: 43566 components: - type: Transform - pos: -40.5,36.5 - parent: 2 - - uid: 28438 + pos: 71.5,57.5 + parent: 40599 + - uid: 43567 components: - type: Transform - pos: -39.5,37.5 - parent: 2 - - uid: 28439 + pos: 71.5,55.5 + parent: 40599 + - uid: 43568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 94.5,-44.5 - parent: 2 - - uid: 28440 + pos: 69.5,57.5 + parent: 40599 + - uid: 43569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 104.5,-44.5 - parent: 2 - - uid: 28441 + pos: 71.5,56.5 + parent: 40599 + - uid: 43570 components: - type: Transform - pos: 95.5,-41.5 - parent: 2 - - uid: 28442 + pos: 71.5,54.5 + parent: 40599 + - uid: 43571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 103.5,-41.5 - parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 28443 + pos: 71.5,53.5 + parent: 40599 + - uid: 43572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,4.5 - parent: 2 -- proto: WallmountTelescreenFrame - entities: - - uid: 28444 + rot: 1.5707963267948966 rad + pos: 33.5,59.5 + parent: 40599 + - uid: 43573 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,57.5 - parent: 2 -- proto: WallmountTelevision - entities: - - uid: 28445 + pos: 33.5,60.5 + parent: 40599 + - uid: 43574 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,5.5 - parent: 2 -- proto: WallNecropolis - entities: - - uid: 42985 + pos: 48.5,53.5 + parent: 40599 + - uid: 43575 components: - type: Transform - pos: 53.5,22.5 - parent: 40203 - - uid: 42986 + pos: 40.5,75.5 + parent: 40599 + - uid: 43576 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,20.5 - parent: 40203 - - uid: 42987 + pos: 67.5,71.5 + parent: 40599 + - uid: 43577 components: - type: Transform - pos: 55.5,20.5 - parent: 40203 - - uid: 42988 + pos: 46.5,68.5 + parent: 40599 + - uid: 43578 + components: + - type: Transform + pos: 39.5,75.5 + parent: 40599 + - uid: 43579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,22.5 - parent: 40203 - - uid: 45922 + pos: 35.5,74.5 + parent: 40599 + - uid: 43580 components: - type: Transform - pos: -3.5,6.5 - parent: 44970 - - uid: 45923 + pos: 55.5,83.5 + parent: 40599 + - uid: 43581 components: - type: Transform - pos: -2.5,6.5 - parent: 44970 - - uid: 45924 + pos: 55.5,82.5 + parent: 40599 + - uid: 43582 components: - type: Transform - pos: -1.5,6.5 - parent: 44970 - - uid: 45925 + pos: 34.5,67.5 + parent: 40599 + - uid: 43583 components: - type: Transform - pos: 2.5,6.5 - parent: 44970 - - uid: 45926 + rot: -1.5707963267948966 rad + pos: 51.5,49.5 + parent: 40599 + - uid: 43584 components: - type: Transform - pos: -0.5,6.5 - parent: 44970 - - uid: 45927 + pos: 58.5,82.5 + parent: 40599 + - uid: 43585 components: - type: Transform - pos: 3.5,6.5 - parent: 44970 - - uid: 45928 + pos: 39.5,76.5 + parent: 40599 + - uid: 43586 components: - type: Transform - pos: 1.5,6.5 - parent: 44970 - - uid: 45929 + pos: 41.5,71.5 + parent: 40599 + - uid: 43587 components: - type: Transform - pos: 4.5,6.5 - parent: 44970 - - uid: 45930 + pos: 53.5,67.5 + parent: 40599 + - uid: 43588 components: - type: Transform - pos: -3.5,5.5 - parent: 44970 - - uid: 45931 + rot: 1.5707963267948966 rad + pos: 71.5,70.5 + parent: 40599 + - uid: 43589 components: - type: Transform - pos: 4.5,5.5 - parent: 44970 - - uid: 45932 + rot: 1.5707963267948966 rad + pos: 70.5,69.5 + parent: 40599 + - uid: 43590 components: - type: Transform - pos: -3.5,4.5 - parent: 44970 - - uid: 45933 + rot: 1.5707963267948966 rad + pos: 33.5,58.5 + parent: 40599 + - uid: 43591 components: - type: Transform - pos: -3.5,1.5 - parent: 44970 - - uid: 45934 + rot: 1.5707963267948966 rad + pos: 35.5,79.5 + parent: 40599 + - uid: 43592 components: - type: Transform - pos: -3.5,3.5 - parent: 44970 - - uid: 45935 + pos: 39.5,79.5 + parent: 40599 + - uid: 43593 components: - type: Transform - pos: -3.5,2.5 - parent: 44970 - - uid: 45936 + rot: 1.5707963267948966 rad + pos: 67.5,68.5 + parent: 40599 + - uid: 43594 components: - type: Transform - pos: -3.5,0.5 - parent: 44970 - - uid: 45937 + rot: 1.5707963267948966 rad + pos: 67.5,70.5 + parent: 40599 + - uid: 43595 components: - type: Transform - pos: 0.5,6.5 - parent: 44970 - - uid: 45938 + rot: 1.5707963267948966 rad + pos: 54.5,59.5 + parent: 40599 + - uid: 43596 components: - type: Transform - pos: 6.5,10.5 - parent: 44970 - - uid: 45939 + rot: 1.5707963267948966 rad + pos: 67.5,69.5 + parent: 40599 + - uid: 43597 components: - type: Transform - pos: -2.5,0.5 - parent: 44970 - - uid: 45940 + pos: 42.5,54.5 + parent: 40599 + - uid: 43598 components: - type: Transform - pos: 0.5,0.5 - parent: 44970 - - uid: 45941 + rot: 1.5707963267948966 rad + pos: 33.5,57.5 + parent: 40599 + - uid: 43599 components: - type: Transform - pos: -0.5,0.5 - parent: 44970 - - uid: 45942 + rot: 1.5707963267948966 rad + pos: 64.5,62.5 + parent: 40599 + - uid: 43600 components: - type: Transform - pos: 0.5,-0.5 - parent: 44970 - - uid: 45943 + pos: 35.5,75.5 + parent: 40599 + - uid: 43601 components: - type: Transform - pos: 0.5,-1.5 - parent: 44970 - - uid: 45944 + rot: 1.5707963267948966 rad + pos: 62.5,54.5 + parent: 40599 + - uid: 43602 components: - type: Transform - pos: 0.5,-3.5 - parent: 44970 - - uid: 45945 + pos: 64.5,64.5 + parent: 40599 + - uid: 43603 components: - type: Transform - pos: 0.5,-2.5 - parent: 44970 - - uid: 45946 + rot: 1.5707963267948966 rad + pos: 65.5,80.5 + parent: 40599 + - uid: 43604 components: - type: Transform - pos: -1.5,-3.5 - parent: 44970 - - uid: 45947 + rot: 1.5707963267948966 rad + pos: 59.5,80.5 + parent: 40599 + - uid: 43605 components: - type: Transform - pos: 1.5,0.5 - parent: 44970 - - uid: 45948 + rot: 1.5707963267948966 rad + pos: 66.5,80.5 + parent: 40599 + - uid: 43606 components: - type: Transform - pos: 4.5,0.5 - parent: 44970 - - uid: 45949 + pos: 48.5,67.5 + parent: 40599 + - uid: 43607 components: - type: Transform - pos: 3.5,0.5 - parent: 44970 - - uid: 45950 + pos: 69.5,64.5 + parent: 40599 + - uid: 43608 components: - type: Transform - pos: 4.5,1.5 - parent: 44970 - - uid: 45951 + rot: 1.5707963267948966 rad + pos: 61.5,80.5 + parent: 40599 + - uid: 43609 components: - type: Transform - pos: -0.5,-3.5 - parent: 44970 - - uid: 45952 + rot: 1.5707963267948966 rad + pos: 58.5,80.5 + parent: 40599 + - uid: 43610 components: - type: Transform - pos: -3.5,-3.5 - parent: 44970 - - uid: 45953 + rot: 1.5707963267948966 rad + pos: 63.5,80.5 + parent: 40599 + - uid: 43611 components: - type: Transform - pos: -2.5,-3.5 - parent: 44970 - - uid: 45954 + rot: 1.5707963267948966 rad + pos: 57.5,58.5 + parent: 40599 + - uid: 43612 components: - type: Transform - pos: -4.5,-3.5 - parent: 44970 - - uid: 45955 + rot: 1.5707963267948966 rad + pos: 60.5,80.5 + parent: 40599 + - uid: 43613 components: - type: Transform - pos: -5.5,-3.5 - parent: 44970 - - uid: 45956 + rot: 1.5707963267948966 rad + pos: 62.5,80.5 + parent: 40599 + - uid: 43614 components: - type: Transform - pos: -6.5,-3.5 - parent: 44970 - - uid: 45957 + pos: 61.5,81.5 + parent: 40599 + - uid: 43615 components: - type: Transform - pos: -6.5,-2.5 - parent: 44970 - - uid: 45958 + pos: 42.5,71.5 + parent: 40599 + - uid: 43616 components: - type: Transform - pos: -6.5,-1.5 - parent: 44970 - - uid: 45959 + pos: 46.5,81.5 + parent: 40599 + - uid: 43617 components: - type: Transform - pos: -6.5,-0.5 - parent: 44970 - - uid: 45960 + rot: 1.5707963267948966 rad + pos: 48.5,51.5 + parent: 40599 + - uid: 43618 components: - type: Transform - pos: -6.5,0.5 - parent: 44970 - - uid: 45961 + rot: 1.5707963267948966 rad + pos: 53.5,58.5 + parent: 40599 + - uid: 43619 components: - type: Transform - pos: -6.5,1.5 - parent: 44970 - - uid: 45962 + pos: 58.5,64.5 + parent: 40599 + - uid: 43620 components: - type: Transform - pos: -6.5,2.5 - parent: 44970 - - uid: 45963 + rot: 1.5707963267948966 rad + pos: 62.5,57.5 + parent: 40599 + - uid: 43621 components: - type: Transform - pos: -6.5,3.5 - parent: 44970 - - uid: 45964 + rot: 1.5707963267948966 rad + pos: 55.5,53.5 + parent: 40599 + - uid: 43622 components: - type: Transform - pos: -6.5,4.5 - parent: 44970 - - uid: 45965 + rot: 1.5707963267948966 rad + pos: 55.5,58.5 + parent: 40599 + - uid: 43623 components: - type: Transform - pos: -6.5,5.5 - parent: 44970 - - uid: 45966 + rot: 1.5707963267948966 rad + pos: 49.5,58.5 + parent: 40599 + - uid: 43624 components: - type: Transform - pos: -6.5,6.5 - parent: 44970 - - uid: 45967 + pos: 65.5,64.5 + parent: 40599 + - uid: 43625 components: - type: Transform - pos: 7.5,10.5 - parent: 44970 - - uid: 45968 + rot: 1.5707963267948966 rad + pos: 56.5,58.5 + parent: 40599 + - uid: 43626 components: - type: Transform - pos: -5.5,6.5 - parent: 44970 - - uid: 45969 + rot: 1.5707963267948966 rad + pos: 70.5,65.5 + parent: 40599 + - uid: 43627 components: - type: Transform - pos: -6.5,7.5 - parent: 44970 - - uid: 45970 + rot: 1.5707963267948966 rad + pos: 60.5,73.5 + parent: 40599 + - uid: 43628 components: - type: Transform - pos: -6.5,8.5 - parent: 44970 - - uid: 45971 + pos: 61.5,64.5 + parent: 40599 + - uid: 43629 components: - type: Transform - pos: -6.5,9.5 - parent: 44970 - - uid: 45972 + pos: 66.5,64.5 + parent: 40599 + - uid: 43630 components: - type: Transform - pos: -6.5,10.5 - parent: 44970 - - uid: 45973 + pos: 63.5,64.5 + parent: 40599 + - uid: 43631 components: - type: Transform - pos: 2.5,10.5 - parent: 44970 - - uid: 45974 + rot: 1.5707963267948966 rad + pos: 64.5,60.5 + parent: 40599 + - uid: 43632 components: - type: Transform - pos: 3.5,10.5 - parent: 44970 - - uid: 45975 + rot: 1.5707963267948966 rad + pos: 49.5,80.5 + parent: 40599 + - uid: 43633 components: - type: Transform - pos: 4.5,10.5 - parent: 44970 - - uid: 45976 + rot: 1.5707963267948966 rad + pos: 55.5,80.5 + parent: 40599 + - uid: 43634 components: - type: Transform - pos: 8.5,9.5 - parent: 44970 - - uid: 45977 + rot: 1.5707963267948966 rad + pos: 53.5,80.5 + parent: 40599 + - uid: 43635 components: - type: Transform - pos: 0.5,10.5 - parent: 44970 - - uid: 45978 + rot: 1.5707963267948966 rad + pos: 70.5,64.5 + parent: 40599 + - uid: 43636 components: - type: Transform - pos: -0.5,10.5 - parent: 44970 - - uid: 45979 + rot: 1.5707963267948966 rad + pos: 53.5,64.5 + parent: 40599 + - uid: 43637 components: - type: Transform - pos: -1.5,10.5 - parent: 44970 - - uid: 45980 + rot: 1.5707963267948966 rad + pos: 61.5,67.5 + parent: 40599 + - uid: 43638 components: - type: Transform - pos: 8.5,10.5 - parent: 44970 - - uid: 45981 + pos: 64.5,76.5 + parent: 40599 + - uid: 43639 components: - type: Transform - pos: -3.5,10.5 - parent: 44970 - - uid: 45982 + pos: 58.5,79.5 + parent: 40599 + - uid: 43640 components: - type: Transform - pos: -4.5,10.5 - parent: 44970 - - uid: 45983 + pos: 61.5,78.5 + parent: 40599 + - uid: 43641 components: - type: Transform - pos: -5.5,10.5 - parent: 44970 - - uid: 45984 + pos: 64.5,78.5 + parent: 40599 + - uid: 43642 components: - type: Transform - pos: 8.5,8.5 - parent: 44970 - - uid: 45985 + rot: -1.5707963267948966 rad + pos: 61.5,52.5 + parent: 40599 + - uid: 43643 components: - type: Transform - pos: 8.5,5.5 - parent: 44970 - - uid: 45986 + pos: 68.5,64.5 + parent: 40599 + - uid: 43644 components: - type: Transform - pos: 8.5,4.5 - parent: 44970 - - uid: 45987 + rot: 1.5707963267948966 rad + pos: 54.5,57.5 + parent: 40599 + - uid: 43645 components: - type: Transform - pos: 8.5,3.5 - parent: 44970 - - uid: 45988 + rot: 1.5707963267948966 rad + pos: 64.5,80.5 + parent: 40599 + - uid: 43646 components: - type: Transform - pos: 8.5,2.5 - parent: 44970 - - uid: 45989 + rot: 1.5707963267948966 rad + pos: 70.5,66.5 + parent: 40599 + - uid: 43647 components: - type: Transform - pos: 8.5,1.5 - parent: 44970 - - uid: 45990 + rot: 1.5707963267948966 rad + pos: 70.5,67.5 + parent: 40599 + - uid: 43648 components: - type: Transform - pos: 8.5,0.5 - parent: 44970 - - uid: 45991 + rot: 1.5707963267948966 rad + pos: 70.5,68.5 + parent: 40599 + - uid: 43649 components: - type: Transform - pos: 7.5,0.5 - parent: 44970 - - uid: 45992 + pos: 42.5,74.5 + parent: 40599 + - uid: 43650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,76.5 + parent: 40599 + - uid: 43651 + components: + - type: Transform + pos: 57.5,64.5 + parent: 40599 + - uid: 43652 components: - type: Transform - pos: 6.5,0.5 - parent: 44970 - - uid: 45993 + rot: 1.5707963267948966 rad + pos: 54.5,80.5 + parent: 40599 + - uid: 43653 components: - type: Transform - pos: 5.5,0.5 - parent: 44970 - - uid: 45994 + rot: 1.5707963267948966 rad + pos: 70.5,73.5 + parent: 40599 + - uid: 43654 components: - type: Transform - pos: -6.5,11.5 - parent: 44970 - - uid: 45995 + rot: 1.5707963267948966 rad + pos: 70.5,76.5 + parent: 40599 + - uid: 43655 components: - type: Transform - pos: -6.5,12.5 - parent: 44970 - - uid: 45996 + rot: 1.5707963267948966 rad + pos: 70.5,63.5 + parent: 40599 + - uid: 43656 components: - type: Transform - pos: -6.5,13.5 - parent: 44970 - - uid: 45997 + rot: 1.5707963267948966 rad + pos: 54.5,54.5 + parent: 40599 + - uid: 43657 components: - type: Transform - pos: -6.5,14.5 - parent: 44970 - - uid: 45998 + rot: 1.5707963267948966 rad + pos: 51.5,80.5 + parent: 40599 + - uid: 43658 components: - type: Transform - pos: -6.5,15.5 - parent: 44970 - - uid: 45999 + pos: 58.5,77.5 + parent: 40599 + - uid: 43659 components: - type: Transform - pos: -6.5,16.5 - parent: 44970 - - uid: 46000 + pos: 42.5,75.5 + parent: 40599 + - uid: 43660 components: - type: Transform - pos: -6.5,17.5 - parent: 44970 - - uid: 46001 + pos: 42.5,73.5 + parent: 40599 + - uid: 43661 components: - type: Transform - pos: -5.5,17.5 - parent: 44970 - - uid: 46002 + pos: 36.5,75.5 + parent: 40599 + - uid: 43662 components: - type: Transform - pos: -4.5,17.5 - parent: 44970 - - uid: 46003 + rot: 1.5707963267948966 rad + pos: 70.5,77.5 + parent: 40599 + - uid: 43663 components: - type: Transform - pos: -3.5,17.5 - parent: 44970 - - uid: 46004 + pos: 56.5,64.5 + parent: 40599 + - uid: 43664 components: - type: Transform - pos: -2.5,17.5 - parent: 44970 - - uid: 46005 + pos: 55.5,64.5 + parent: 40599 + - uid: 43665 components: - type: Transform - pos: -1.5,17.5 - parent: 44970 - - uid: 46006 + rot: 1.5707963267948966 rad + pos: 54.5,55.5 + parent: 40599 + - uid: 43666 components: - type: Transform - pos: -0.5,17.5 - parent: 44970 - - uid: 46007 + rot: 1.5707963267948966 rad + pos: 54.5,53.5 + parent: 40599 + - uid: 43667 components: - type: Transform - pos: 0.5,17.5 - parent: 44970 - - uid: 46008 + rot: 1.5707963267948966 rad + pos: 54.5,56.5 + parent: 40599 + - uid: 43668 components: - type: Transform - pos: 1.5,17.5 - parent: 44970 - - uid: 46009 + rot: 1.5707963267948966 rad + pos: 52.5,80.5 + parent: 40599 + - uid: 43669 components: - type: Transform - pos: 2.5,17.5 - parent: 44970 - - uid: 46010 + rot: 1.5707963267948966 rad + pos: 50.5,80.5 + parent: 40599 + - uid: 43670 components: - type: Transform - pos: 3.5,17.5 - parent: 44970 - - uid: 46011 + pos: 58.5,78.5 + parent: 40599 + - uid: 43671 components: - type: Transform - pos: 4.5,17.5 - parent: 44970 - - uid: 46012 + rot: 1.5707963267948966 rad + pos: 57.5,53.5 + parent: 40599 + - uid: 43672 components: - type: Transform - pos: -0.5,12.5 - parent: 44970 - - uid: 46013 + pos: 42.5,68.5 + parent: 40599 + - uid: 43673 components: - type: Transform - pos: -0.5,11.5 - parent: 44970 - - uid: 46014 + pos: 42.5,72.5 + parent: 40599 + - uid: 43674 components: - type: Transform - pos: -0.5,14.5 - parent: 44970 - - uid: 46015 + pos: 42.5,67.5 + parent: 40599 + - uid: 43675 components: - type: Transform - pos: -0.5,13.5 - parent: 44970 - - uid: 46016 + rot: 1.5707963267948966 rad + pos: 65.5,49.5 + parent: 40599 + - uid: 43676 components: - type: Transform - pos: -0.5,16.5 - parent: 44970 - - uid: 46017 + rot: 1.5707963267948966 rad + pos: 56.5,53.5 + parent: 40599 + - uid: 43677 components: - type: Transform - pos: -0.5,15.5 - parent: 44970 - - uid: 46018 + rot: 1.5707963267948966 rad + pos: 62.5,58.5 + parent: 40599 + - uid: 43678 components: - type: Transform - pos: 5.5,6.5 - parent: 44970 - - uid: 46019 + pos: 67.5,76.5 + parent: 40599 + - uid: 43679 components: - type: Transform - pos: 5.5,7.5 - parent: 44970 - - uid: 46020 + pos: 44.5,85.5 + parent: 40599 + - uid: 43680 components: - type: Transform - pos: 5.5,9.5 - parent: 44970 - - uid: 46021 + pos: 46.5,82.5 + parent: 40599 + - uid: 43681 components: - type: Transform - pos: 5.5,10.5 - parent: 44970 - - uid: 46022 + rot: 1.5707963267948966 rad + pos: 54.5,58.5 + parent: 40599 + - uid: 43682 components: - type: Transform - pos: 5.5,11.5 - parent: 44970 - - uid: 46023 + rot: 1.5707963267948966 rad + pos: 66.5,49.5 + parent: 40599 + - uid: 43683 components: - type: Transform - pos: 5.5,12.5 - parent: 44970 - - uid: 46024 + rot: 1.5707963267948966 rad + pos: 58.5,58.5 + parent: 40599 + - uid: 43684 components: - type: Transform - pos: 5.5,13.5 - parent: 44970 - - uid: 46025 + rot: 1.5707963267948966 rad + pos: 61.5,53.5 + parent: 40599 + - uid: 43685 components: - type: Transform - pos: 5.5,14.5 - parent: 44970 - - uid: 46026 + pos: 58.5,76.5 + parent: 40599 + - uid: 43686 components: - type: Transform - pos: 5.5,15.5 - parent: 44970 - - uid: 46027 + pos: 45.5,85.5 + parent: 40599 + - uid: 43687 components: - type: Transform - pos: 5.5,16.5 - parent: 44970 - - uid: 46028 + pos: 46.5,72.5 + parent: 40599 + - uid: 43688 components: - type: Transform - pos: 5.5,17.5 - parent: 44970 - - uid: 46029 + pos: 59.5,64.5 + parent: 40599 + - uid: 43689 components: - type: Transform - pos: 11.5,6.5 - parent: 44970 - - uid: 46030 + pos: 62.5,64.5 + parent: 40599 + - uid: 43690 components: - type: Transform - pos: 9.5,10.5 - parent: 44970 - - uid: 46031 + pos: 60.5,64.5 + parent: 40599 + - uid: 43691 components: - type: Transform - pos: 9.5,6.5 - parent: 44970 - - uid: 46032 + rot: 1.5707963267948966 rad + pos: 61.5,58.5 + parent: 40599 + - uid: 43692 components: - type: Transform - pos: 10.5,6.5 - parent: 44970 - - uid: 46033 + rot: 1.5707963267948966 rad + pos: 59.5,58.5 + parent: 40599 + - uid: 43693 components: - type: Transform - pos: 8.5,6.5 - parent: 44970 - - uid: 46034 + rot: 1.5707963267948966 rad + pos: 60.5,58.5 + parent: 40599 + - uid: 43694 components: - type: Transform - pos: 11.5,7.5 - parent: 44970 - - uid: 46035 + pos: 41.5,75.5 + parent: 40599 + - uid: 43695 components: - type: Transform - pos: 11.5,8.5 - parent: 44970 - - uid: 46036 + rot: 1.5707963267948966 rad + pos: 69.5,80.5 + parent: 40599 + - uid: 43696 components: - type: Transform - pos: 11.5,9.5 - parent: 44970 - - uid: 46037 + rot: 1.5707963267948966 rad + pos: 67.5,80.5 + parent: 40599 + - uid: 43697 components: - type: Transform - pos: 11.5,10.5 - parent: 44970 - - uid: 46038 + rot: 1.5707963267948966 rad + pos: 70.5,80.5 + parent: 40599 + - uid: 43698 components: - type: Transform - pos: 10.5,10.5 - parent: 44970 -- proto: WallPlastitanium - entities: - - uid: 42989 + rot: 1.5707963267948966 rad + pos: 70.5,78.5 + parent: 40599 + - uid: 43699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 72.5,50.5 - parent: 40203 - - uid: 42990 + rot: 1.5707963267948966 rad + pos: 70.5,79.5 + parent: 40599 + - uid: 43700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,82.5 - parent: 40203 - - uid: 42991 + pos: 47.5,64.5 + parent: 40599 + - uid: 43701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,82.5 - parent: 40203 - - uid: 42992 + pos: 46.5,85.5 + parent: 40599 + - uid: 43702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,81.5 - parent: 40203 - - uid: 42993 + rot: 1.5707963267948966 rad + pos: 70.5,71.5 + parent: 40599 + - uid: 43703 components: - type: Transform - pos: 49.5,67.5 - parent: 40203 - - uid: 42994 + pos: 46.5,84.5 + parent: 40599 + - uid: 43704 components: - type: Transform - pos: 31.5,67.5 - parent: 40203 - - uid: 42995 + pos: 47.5,57.5 + parent: 40599 + - uid: 43705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,64.5 - parent: 40203 - - uid: 42996 + pos: 53.5,69.5 + parent: 40599 + - uid: 43706 + components: + - type: Transform + pos: 47.5,56.5 + parent: 40599 + - uid: 43707 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,63.5 - parent: 40203 - - uid: 42997 + pos: 48.5,56.5 + parent: 40599 + - uid: 43708 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,62.5 - parent: 40203 - - uid: 42998 + pos: 48.5,57.5 + parent: 40599 + - uid: 43709 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,55.5 - parent: 40203 - - uid: 42999 + pos: 37.5,58.5 + parent: 40599 + - uid: 43710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,54.5 - parent: 40203 - - uid: 43000 + pos: 47.5,58.5 + parent: 40599 + - uid: 43711 components: - type: Transform - pos: 32.5,67.5 - parent: 40203 - - uid: 43001 + rot: 1.5707963267948966 rad + pos: 40.5,64.5 + parent: 40599 + - uid: 43712 components: - type: Transform - pos: 28.5,67.5 - parent: 40203 - - uid: 43002 + pos: 46.5,78.5 + parent: 40599 + - uid: 43713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,64.5 - parent: 40203 - - uid: 43003 + pos: 46.5,56.5 + parent: 40599 + - uid: 43714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,63.5 - parent: 40203 - - uid: 43004 + pos: 47.5,63.5 + parent: 40599 + - uid: 43715 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,62.5 - parent: 40203 - - uid: 43005 + pos: 62.5,67.5 + parent: 40599 + - uid: 43716 components: - type: Transform - pos: 34.5,54.5 - parent: 40203 - - uid: 43006 + pos: 35.5,70.5 + parent: 40599 + - uid: 43717 components: - type: Transform - pos: 35.5,81.5 - parent: 40203 - - uid: 43007 + rot: 3.141592653589793 rad + pos: 33.5,56.5 + parent: 40599 + - uid: 43718 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,80.5 - parent: 40203 - - uid: 43008 + pos: 48.5,58.5 + parent: 40599 + - uid: 43719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,73.5 - parent: 40203 - - uid: 43009 + pos: 45.5,64.5 + parent: 40599 + - uid: 43720 components: - type: Transform rot: 1.5707963267948966 rad - pos: 65.5,73.5 - parent: 40203 - - uid: 43010 + pos: 67.5,73.5 + parent: 40599 + - uid: 43721 components: - type: Transform - pos: 38.5,71.5 - parent: 40203 - - uid: 43011 + pos: 36.5,58.5 + parent: 40599 + - uid: 43722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,64.5 - parent: 40203 - - uid: 43012 + pos: 39.5,59.5 + parent: 40599 + - uid: 43723 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,63.5 - parent: 40203 - - uid: 43013 + pos: 62.5,73.5 + parent: 40599 + - uid: 43724 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,62.5 - parent: 40203 - - uid: 43014 + pos: 70.5,70.5 + parent: 40599 + - uid: 43725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,61.5 - parent: 40203 - - uid: 43015 + pos: 46.5,64.5 + parent: 40599 + - uid: 43726 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,60.5 - parent: 40203 - - uid: 43016 + pos: 44.5,64.5 + parent: 40599 + - uid: 43727 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,59.5 - parent: 40203 - - uid: 43017 + pos: 59.5,73.5 + parent: 40599 + - uid: 43728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,58.5 - parent: 40203 - - uid: 43018 + rot: 3.141592653589793 rad + pos: 34.5,59.5 + parent: 40599 + - uid: 43729 components: - type: Transform - pos: 35.5,54.5 - parent: 40203 - - uid: 43019 + pos: 64.5,77.5 + parent: 40599 + - uid: 43730 components: - type: Transform - pos: 36.5,81.5 - parent: 40203 - - uid: 43020 + pos: 46.5,75.5 + parent: 40599 + - uid: 43731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,53.5 - parent: 40203 - - uid: 43021 + pos: 46.5,67.5 + parent: 40599 + - uid: 43732 components: - type: Transform rot: 1.5707963267948966 rad - pos: 63.5,67.5 - parent: 40203 - - uid: 43022 + pos: 66.5,73.5 + parent: 40599 + - uid: 43733 components: - type: Transform - pos: 39.5,77.5 - parent: 40203 - - uid: 43023 + pos: 46.5,70.5 + parent: 40599 + - uid: 43734 components: - type: Transform - pos: 46.5,76.5 - parent: 40203 - - uid: 43024 + pos: 38.5,75.5 + parent: 40599 + - uid: 43735 components: - type: Transform - pos: 33.5,67.5 - parent: 40203 - - uid: 43025 + rot: -1.5707963267948966 rad + pos: 73.5,50.5 + parent: 40599 + - uid: 43736 components: - type: Transform - pos: 50.5,67.5 - parent: 40203 - - uid: 43026 + pos: 39.5,64.5 + parent: 40599 + - uid: 43737 components: - type: Transform - pos: 36.5,54.5 - parent: 40203 - - uid: 43027 + pos: 47.5,59.5 + parent: 40599 + - uid: 43738 components: - type: Transform - pos: 37.5,81.5 - parent: 40203 - - uid: 43028 + rot: 1.5707963267948966 rad + pos: 53.5,71.5 + parent: 40599 + - uid: 43739 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,73.5 - parent: 40203 - - uid: 43029 + pos: 58.5,73.5 + parent: 40599 + - uid: 43740 components: - type: Transform - pos: 49.5,50.5 - parent: 40203 - - uid: 43030 + pos: 47.5,67.5 + parent: 40599 + - uid: 43741 components: - type: Transform - pos: 46.5,73.5 - parent: 40203 - - uid: 43031 + rot: 1.5707963267948966 rad + pos: 41.5,64.5 + parent: 40599 + - uid: 43742 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,64.5 - parent: 40203 - - uid: 43032 + pos: 43.5,64.5 + parent: 40599 + - uid: 43743 components: - type: Transform - pos: 35.5,68.5 - parent: 40203 - - uid: 43033 + pos: 39.5,63.5 + parent: 40599 + - uid: 43744 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,67.5 - parent: 40203 - - uid: 43034 + pos: 38.5,64.5 + parent: 40599 + - uid: 43745 components: - type: Transform - pos: 37.5,54.5 - parent: 40203 - - uid: 43035 + rot: 1.5707963267948966 rad + pos: 33.5,61.5 + parent: 40599 + - uid: 43746 components: - type: Transform - pos: 38.5,81.5 - parent: 40203 - - uid: 43036 + pos: 73.5,58.5 + parent: 40599 + - uid: 43747 components: - type: Transform - pos: 38.5,54.5 - parent: 40203 - - uid: 43037 + pos: 51.5,67.5 + parent: 40599 + - uid: 43748 components: - type: Transform - pos: 39.5,85.5 - parent: 40203 - - uid: 43038 + pos: 38.5,67.5 + parent: 40599 + - uid: 43749 components: - type: Transform - pos: 39.5,84.5 - parent: 40203 - - uid: 43039 + pos: 36.5,67.5 + parent: 40599 + - uid: 43750 components: - type: Transform - pos: 39.5,83.5 - parent: 40203 - - uid: 43040 + pos: 39.5,67.5 + parent: 40599 + - uid: 43751 components: - type: Transform - pos: 39.5,82.5 - parent: 40203 - - uid: 43041 + pos: 40.5,67.5 + parent: 40599 + - uid: 43752 components: - type: Transform - pos: 39.5,81.5 - parent: 40203 - - uid: 43042 + pos: 44.5,75.5 + parent: 40599 + - uid: 43753 components: - type: Transform - pos: 39.5,54.5 - parent: 40203 - - uid: 43043 + pos: 37.5,67.5 + parent: 40599 + - uid: 43754 components: - type: Transform - pos: 40.5,85.5 - parent: 40203 - - uid: 43044 + pos: 42.5,70.5 + parent: 40599 + - uid: 43755 components: - type: Transform - pos: 48.5,75.5 - parent: 40203 - - uid: 43045 + pos: 47.5,80.5 + parent: 40599 + - uid: 43756 components: - type: Transform - pos: 40.5,54.5 - parent: 40203 - - uid: 43046 + pos: 46.5,80.5 + parent: 40599 + - uid: 43757 components: - type: Transform - pos: 44.5,58.5 - parent: 40203 - - uid: 43047 + pos: 47.5,75.5 + parent: 40599 + - uid: 43758 components: - type: Transform - pos: 40.5,58.5 - parent: 40203 - - uid: 43048 + pos: 39.5,80.5 + parent: 40599 + - uid: 43759 components: - type: Transform - pos: 41.5,85.5 - parent: 40203 - - uid: 43049 + pos: 40.5,71.5 + parent: 40599 + - uid: 43760 components: - type: Transform - pos: 44.5,54.5 - parent: 40203 - - uid: 43050 + pos: 37.5,71.5 + parent: 40599 + - uid: 43761 components: - type: Transform - pos: 46.5,58.5 - parent: 40203 - - uid: 43051 + pos: 36.5,71.5 + parent: 40599 + - uid: 43762 components: - type: Transform - pos: 46.5,57.5 - parent: 40203 - - uid: 43052 + rot: 1.5707963267948966 rad + pos: 63.5,62.5 + parent: 40599 + - uid: 43763 components: - type: Transform - pos: 42.5,85.5 - parent: 40203 - - uid: 43053 + rot: 1.5707963267948966 rad + pos: 65.5,62.5 + parent: 40599 + - uid: 43764 components: - type: Transform - pos: 38.5,55.5 - parent: 40203 - - uid: 43054 + rot: 1.5707963267948966 rad + pos: 65.5,60.5 + parent: 40599 + - uid: 43765 components: - type: Transform - pos: 45.5,58.5 - parent: 40203 - - uid: 43055 + rot: 1.5707963267948966 rad + pos: 63.5,60.5 + parent: 40599 + - uid: 43766 components: - type: Transform - pos: 43.5,85.5 - parent: 40203 - - uid: 43056 + pos: 46.5,74.5 + parent: 40599 + - uid: 43767 components: - type: Transform - pos: 38.5,57.5 - parent: 40203 - - uid: 43057 + pos: 46.5,71.5 + parent: 40599 + - uid: 43768 components: - type: Transform - pos: 38.5,58.5 - parent: 40203 - - uid: 43058 + pos: 52.5,67.5 + parent: 40599 + - uid: 43769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,52.5 - parent: 40203 - - uid: 43059 + pos: 59.5,63.5 + parent: 40599 + - uid: 43770 components: - type: Transform - pos: 38.5,56.5 - parent: 40203 - - uid: 43060 + pos: 59.5,62.5 + parent: 40599 + - uid: 43771 components: - type: Transform - pos: 39.5,58.5 - parent: 40203 - - uid: 43061 + pos: 59.5,61.5 + parent: 40599 + - uid: 43772 components: - type: Transform - pos: 67.5,77.5 - parent: 40203 - - uid: 43062 + pos: 60.5,61.5 + parent: 40599 + - uid: 43773 components: - type: Transform - pos: 45.5,54.5 - parent: 40203 - - uid: 43063 + pos: 35.5,78.5 + parent: 40599 + - uid: 43774 components: - type: Transform - pos: 46.5,55.5 - parent: 40203 - - uid: 43064 + pos: 47.5,76.5 + parent: 40599 + - uid: 43775 components: - type: Transform - pos: 46.5,54.5 - parent: 40203 - - uid: 43065 + pos: 39.5,71.5 + parent: 40599 + - uid: 43776 components: - type: Transform - pos: 47.5,55.5 - parent: 40203 - - uid: 43066 + pos: 47.5,79.5 + parent: 40599 + - uid: 43777 components: - type: Transform - pos: 47.5,54.5 - parent: 40203 - - uid: 43067 + pos: 47.5,78.5 + parent: 40599 + - uid: 43778 + components: + - type: Transform + pos: 47.5,77.5 + parent: 40599 + - uid: 43779 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,58.5 - parent: 40203 - - uid: 43068 + pos: 63.5,57.5 + parent: 40599 + - uid: 43780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,50.5 - parent: 40203 - - uid: 43069 + rot: 3.141592653589793 rad + pos: 68.5,57.5 + parent: 40599 + - uid: 43781 components: - type: Transform - pos: 61.5,77.5 - parent: 40203 - - uid: 43070 + rot: 3.141592653589793 rad + pos: 30.5,67.5 + parent: 40599 + - uid: 43782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,60.5 - parent: 40203 - - uid: 43071 + pos: 27.5,69.5 + parent: 40599 + - uid: 43783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,80.5 - parent: 40203 - - uid: 43072 + pos: 27.5,68.5 + parent: 40599 + - uid: 43784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,55.5 - parent: 40203 - - uid: 43073 + pos: 27.5,67.5 + parent: 40599 + - uid: 43785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,54.5 - parent: 40203 - - uid: 43074 + pos: 27.5,66.5 + parent: 40599 + - uid: 43786 components: - type: Transform - pos: 67.5,78.5 - parent: 40203 - - uid: 43075 + pos: 29.5,73.5 + parent: 40599 + - uid: 43787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,50.5 - parent: 40203 - - uid: 43076 + pos: 31.5,73.5 + parent: 40599 + - uid: 43788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,51.5 - parent: 40203 - - uid: 43077 + pos: 29.5,64.5 + parent: 40599 + - uid: 43789 components: - type: Transform - pos: 46.5,69.5 - parent: 40203 - - uid: 43078 + pos: 28.5,73.5 + parent: 40599 + - uid: 43790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,63.5 - parent: 40203 - - uid: 43079 + pos: 30.5,73.5 + parent: 40599 + - uid: 43791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,50.5 - parent: 40203 - - uid: 43080 + pos: 27.5,73.5 + parent: 40599 + - uid: 43792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,67.5 - parent: 40203 - - uid: 43081 + pos: 55.5,81.5 + parent: 40599 + - uid: 43793 components: - type: Transform - pos: 53.5,75.5 - parent: 40203 - - uid: 43082 + pos: 32.5,64.5 + parent: 40599 + - uid: 43794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,72.5 - parent: 40203 - - uid: 43083 + pos: 42.5,69.5 + parent: 40599 + - uid: 43795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,49.5 - parent: 40203 - - uid: 43084 + pos: 52.5,68.5 + parent: 40599 + - uid: 43796 components: - type: Transform - pos: 61.5,79.5 - parent: 40203 - - uid: 43085 + pos: 47.5,68.5 + parent: 40599 + - uid: 43797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,50.5 - parent: 40203 - - uid: 43086 + pos: 47.5,74.5 + parent: 40599 + - uid: 43798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,64.5 - parent: 40203 - - uid: 43087 + pos: 57.5,80.5 + parent: 40599 + - uid: 43799 components: - type: Transform - pos: 61.5,76.5 - parent: 40203 - - uid: 43088 + pos: 28.5,64.5 + parent: 40599 + - uid: 43800 components: - type: Transform - pos: 64.5,79.5 - parent: 40203 - - uid: 43089 + pos: 27.5,71.5 + parent: 40599 + - uid: 43801 components: - type: Transform - pos: 55.5,84.5 - parent: 40203 - - uid: 43090 + pos: 27.5,72.5 + parent: 40599 + - uid: 43802 components: - type: Transform - pos: 56.5,84.5 - parent: 40203 - - uid: 43091 + pos: 27.5,65.5 + parent: 40599 + - uid: 43803 components: - type: Transform - pos: 57.5,84.5 - parent: 40203 - - uid: 43092 + pos: 27.5,64.5 + parent: 40599 + - uid: 43804 components: - type: Transform - pos: 58.5,83.5 - parent: 40203 - - uid: 43093 + pos: 31.5,64.5 + parent: 40599 + - uid: 43805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,77.5 - parent: 40203 - - uid: 43094 + pos: 27.5,70.5 + parent: 40599 + - uid: 43806 components: - type: Transform - pos: 58.5,84.5 - parent: 40203 - - uid: 43095 + pos: 30.5,64.5 + parent: 40599 + - uid: 43807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,61.5 - parent: 40203 - - uid: 43096 + pos: 35.5,84.5 + parent: 40599 + - uid: 43808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,67.5 - parent: 40203 - - uid: 43097 + pos: 35.5,83.5 + parent: 40599 + - uid: 43809 components: - type: Transform - pos: 59.5,84.5 - parent: 40203 - - uid: 43098 + pos: 35.5,82.5 + parent: 40599 + - uid: 43810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,59.5 - parent: 40203 - - uid: 43099 + pos: 36.5,84.5 + parent: 40599 + - uid: 43811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,63.5 - parent: 40203 - - uid: 43100 + pos: 37.5,84.5 + parent: 40599 + - uid: 43812 components: - type: Transform - pos: 48.5,64.5 - parent: 40203 - - uid: 43101 + pos: 37.5,83.5 + parent: 40599 + - uid: 43813 components: - type: Transform - pos: 60.5,84.5 - parent: 40203 - - uid: 43102 + pos: 37.5,82.5 + parent: 40599 + - uid: 43814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,60.5 - parent: 40203 - - uid: 43103 + pos: 38.5,84.5 + parent: 40599 + - uid: 43815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,62.5 - parent: 40203 - - uid: 43104 + pos: 47.5,81.5 + parent: 40599 + - uid: 43816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,46.5 - parent: 40203 - - uid: 43105 + pos: 47.5,84.5 + parent: 40599 + - uid: 43817 components: - type: Transform - pos: 61.5,84.5 - parent: 40203 - - uid: 43106 + pos: 47.5,82.5 + parent: 40599 + - uid: 43818 components: - type: Transform - pos: 61.5,83.5 - parent: 40203 - - uid: 43107 + pos: 47.5,83.5 + parent: 40599 + - uid: 43819 components: - type: Transform - pos: 61.5,82.5 - parent: 40203 - - uid: 43108 + pos: 47.5,85.5 + parent: 40599 + - uid: 43820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,64.5 - parent: 40203 - - uid: 43109 + rot: 3.141592653589793 rad + pos: 48.5,81.5 + parent: 40599 + - uid: 43821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,46.5 - parent: 40203 - - uid: 43110 + rot: 3.141592653589793 rad + pos: 48.5,82.5 + parent: 40599 + - uid: 47328 components: - type: Transform - pos: 49.5,75.5 - parent: 40203 - - uid: 43111 + pos: -2.5,0.5 + parent: 47245 + - uid: 47329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,67.5 - parent: 40203 - - uid: 43112 + pos: -3.5,0.5 + parent: 47245 + - uid: 47330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,73.5 - parent: 40203 - - uid: 43113 + pos: -2.5,-0.5 + parent: 47245 + - uid: 47331 components: - type: Transform - pos: 69.5,63.5 - parent: 40203 - - uid: 43114 + pos: -2.5,-1.5 + parent: 47245 + - uid: 47332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,73.5 - parent: 40203 - - uid: 43115 + pos: -1.5,-1.5 + parent: 47245 + - uid: 47333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,70.5 - parent: 40203 - - uid: 43116 + pos: -1.5,-2.5 + parent: 47245 + - uid: 47334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,67.5 - parent: 40203 - - uid: 43117 + pos: -0.5,-2.5 + parent: 47245 + - uid: 47335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,68.5 - parent: 40203 - - uid: 43118 + pos: 1.5,-2.5 + parent: 47245 + - uid: 47336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,73.5 - parent: 40203 - - uid: 43119 + pos: 2.5,-2.5 + parent: 47245 + - uid: 47337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,67.5 - parent: 40203 - - uid: 43120 + pos: 2.5,-1.5 + parent: 47245 + - uid: 47338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,72.5 - parent: 40203 - - uid: 43121 + pos: 3.5,-1.5 + parent: 47245 + - uid: 47339 components: - type: Transform - pos: 41.5,67.5 - parent: 40203 - - uid: 43122 + pos: 3.5,-0.5 + parent: 47245 + - uid: 47340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,49.5 - parent: 40203 - - uid: 43123 + pos: 4.5,-0.5 + parent: 47245 + - uid: 47341 components: - type: Transform - pos: 71.5,59.5 - parent: 40203 - - uid: 43124 + pos: 3.5,0.5 + parent: 47245 +- proto: WallPlastitaniumDiagonal + entities: + - uid: 47342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,73.5 - parent: 40203 - - uid: 43125 + pos: -4.5,0.5 + parent: 47245 + - uid: 47343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,80.5 - parent: 40203 - - uid: 43126 + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 47245 +- proto: WallPlastitaniumIndestructible + entities: + - uid: 43822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,71.5 - parent: 40203 - - uid: 43127 + pos: 49.5,50.5 + parent: 40599 + - uid: 43823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,49.5 - parent: 40203 - - uid: 43128 + pos: 52.5,50.5 + parent: 40599 + - uid: 43824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,67.5 - parent: 40203 - - uid: 43129 + pos: 61.5,50.5 + parent: 40599 + - uid: 43825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,73.5 - parent: 40203 - - uid: 43130 + pos: 56.5,50.5 + parent: 40599 + - uid: 43826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,73.5 - parent: 40203 - - uid: 43131 + pos: 61.5,49.5 + parent: 40599 + - uid: 43827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,49.5 - parent: 40203 - - uid: 43132 + pos: 57.5,50.5 + parent: 40599 + - uid: 43828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,64.5 - parent: 40203 - - uid: 43133 + pos: 59.5,46.5 + parent: 40599 + - uid: 43829 + components: + - type: Transform + pos: 57.5,46.5 + parent: 40599 + - uid: 43830 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,48.5 - parent: 40203 - - uid: 43134 + parent: 40599 + - uid: 43831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,67.5 - parent: 40203 - - uid: 43135 + pos: 48.5,49.5 + parent: 40599 + - uid: 43832 components: - type: Transform - pos: 69.5,59.5 - parent: 40203 - - uid: 43136 + pos: 58.5,46.5 + parent: 40599 + - uid: 43833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,67.5 - parent: 40203 - - uid: 43137 + pos: 60.5,46.5 + parent: 40599 + - uid: 43834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,49.5 - parent: 40203 - - uid: 43138 + pos: 48.5,48.5 + parent: 40599 + - uid: 43835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,80.5 - parent: 40203 - - uid: 43139 + pos: 48.5,47.5 + parent: 40599 + - uid: 43836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,79.5 - parent: 40203 - - uid: 43140 + pos: 48.5,50.5 + parent: 40599 + - uid: 43837 components: - type: Transform - pos: 71.5,62.5 - parent: 40203 - - uid: 43141 + pos: 49.5,47.5 + parent: 40599 + - uid: 43838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,67.5 - parent: 40203 - - uid: 43142 + pos: 50.5,49.5 + parent: 40599 + - uid: 43839 components: - type: Transform - pos: 71.5,51.5 - parent: 40203 - - uid: 43143 + pos: 49.5,49.5 + parent: 40599 + - uid: 43840 components: - type: Transform - pos: 71.5,50.5 - parent: 40203 - - uid: 43144 + pos: 61.5,48.5 + parent: 40599 + - uid: 43841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,49.5 - parent: 40203 - - uid: 43145 + pos: 61.5,47.5 + parent: 40599 + - uid: 43842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,80.5 - parent: 40203 - - uid: 43146 + pos: 64.5,49.5 + parent: 40599 + - uid: 43843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,76.5 - parent: 40203 - - uid: 43147 + pos: 62.5,49.5 + parent: 40599 + - uid: 43844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,70.5 - parent: 40203 - - uid: 43148 + pos: 51.5,50.5 + parent: 40599 + - uid: 43845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,49.5 - parent: 40203 - - uid: 43149 + pos: 63.5,49.5 + parent: 40599 + - uid: 43846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,73.5 - parent: 40203 - - uid: 43150 + pos: 55.5,50.5 + parent: 40599 + - uid: 43847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,72.5 - parent: 40203 - - uid: 43151 + pos: 53.5,50.5 + parent: 40599 + - uid: 43848 components: - type: Transform - pos: 53.5,74.5 - parent: 40203 - - uid: 43152 + pos: 54.5,50.5 + parent: 40599 + - uid: 43849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 72.5,51.5 - parent: 40203 - - uid: 43153 + pos: 60.5,47.5 + parent: 40599 + - uid: 43850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,49.5 - parent: 40203 - - uid: 43154 + pos: 50.5,50.5 + parent: 40599 + - uid: 43851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,80.5 - parent: 40203 - - uid: 43155 + pos: 50.5,47.5 + parent: 40599 + - uid: 43852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,78.5 - parent: 40203 - - uid: 43156 + pos: 50.5,48.5 + parent: 40599 + - uid: 43853 components: - type: Transform - pos: 71.5,76.5 - parent: 40203 - - uid: 43157 + pos: 64.5,48.5 + parent: 40599 + - uid: 43854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,70.5 - parent: 40203 - - uid: 43158 + pos: 64.5,47.5 + parent: 40599 + - uid: 43855 components: - type: Transform - pos: 73.5,56.5 - parent: 40203 - - uid: 43159 + pos: 63.5,47.5 + parent: 40599 + - uid: 43856 components: - type: Transform - pos: 73.5,55.5 - parent: 40203 - - uid: 43160 + pos: 62.5,48.5 + parent: 40599 + - uid: 43857 components: - type: Transform - pos: 73.5,54.5 - parent: 40203 - - uid: 43161 + pos: 62.5,47.5 + parent: 40599 + - uid: 43858 components: - type: Transform - pos: 73.5,53.5 - parent: 40203 - - uid: 43162 + pos: 71.5,59.5 + parent: 40599 + - uid: 43859 components: - type: Transform - pos: 73.5,52.5 - parent: 40203 - - uid: 43163 + pos: 69.5,59.5 + parent: 40599 + - uid: 43860 components: - type: Transform - pos: 73.5,51.5 - parent: 40203 - - uid: 43164 + pos: 71.5,62.5 + parent: 40599 + - uid: 43861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,80.5 - parent: 40203 - - uid: 43165 + pos: 70.5,62.5 + parent: 40599 + - uid: 43862 + components: + - type: Transform + pos: 69.5,62.5 + parent: 40599 + - uid: 43863 + components: + - type: Transform + pos: 69.5,60.5 + parent: 40599 + - uid: 43864 + components: + - type: Transform + pos: 71.5,61.5 + parent: 40599 + - uid: 43865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,49.5 - parent: 40203 - - uid: 43166 + pos: 69.5,61.5 + parent: 40599 + - uid: 43866 components: - type: Transform - pos: 74.5,76.5 - parent: 40203 - - uid: 43167 + pos: 71.5,60.5 + parent: 40599 + - uid: 43867 components: - type: Transform rot: 1.5707963267948966 rad - pos: 74.5,70.5 - parent: 40203 - - uid: 43168 + pos: 58.5,36.5 + parent: 40599 + - uid: 43868 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,80.5 - parent: 40203 - - uid: 43169 + pos: 46.5,36.5 + parent: 40599 + - uid: 43869 components: - type: Transform - pos: 75.5,76.5 - parent: 40203 - - uid: 43170 + rot: 1.5707963267948966 rad + pos: 47.5,35.5 + parent: 40599 + - uid: 43870 components: - type: Transform - pos: 75.5,72.5 - parent: 40203 - - uid: 43171 + rot: 1.5707963267948966 rad + pos: 45.5,38.5 + parent: 40599 + - uid: 43871 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,71.5 - parent: 40203 - - uid: 43172 + pos: 59.5,38.5 + parent: 40599 + - uid: 43872 components: - type: Transform rot: 1.5707963267948966 rad - pos: 75.5,70.5 - parent: 40203 - - uid: 43173 + pos: 50.5,33.5 + parent: 40599 + - uid: 43873 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,78.5 - parent: 40203 - - uid: 43174 + pos: 51.5,33.5 + parent: 40599 + - uid: 43874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,77.5 - parent: 40203 - - uid: 43175 + pos: 56.5,34.5 + parent: 40599 + - uid: 43875 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,76.5 - parent: 40203 - - uid: 43176 + pos: 53.5,33.5 + parent: 40599 + - uid: 43876 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,75.5 - parent: 40203 - - uid: 43177 + pos: 52.5,33.5 + parent: 40599 + - uid: 43877 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,74.5 - parent: 40203 - - uid: 43178 + pos: 54.5,46.5 + parent: 40599 + - uid: 43878 + components: + - type: Transform + pos: 50.5,46.5 + parent: 40599 + - uid: 43879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 76.5,73.5 - parent: 40203 - - uid: 43179 + pos: 57.5,44.5 + parent: 40599 + - uid: 43880 components: - type: Transform - pos: 76.5,72.5 - parent: 40203 - - uid: 43180 + rot: 1.5707963267948966 rad + pos: 46.5,43.5 + parent: 40599 + - uid: 43881 components: - type: Transform - pos: 69.5,55.5 - parent: 40203 - - uid: 43181 + rot: 1.5707963267948966 rad + pos: 45.5,42.5 + parent: 40599 + - uid: 43882 components: - type: Transform - pos: 67.5,79.5 - parent: 40203 - - uid: 43182 + rot: 1.5707963267948966 rad + pos: 57.5,35.5 + parent: 40599 + - uid: 43883 components: - type: Transform - pos: 70.5,62.5 - parent: 40203 - - uid: 43183 + pos: 55.5,46.5 + parent: 40599 + - uid: 43884 components: - type: Transform - pos: 69.5,51.5 - parent: 40203 - - uid: 43184 + pos: 56.5,46.5 + parent: 40599 + - uid: 43885 components: - type: Transform - pos: 69.5,52.5 - parent: 40203 - - uid: 43185 + rot: 1.5707963267948966 rad + pos: 48.5,45.5 + parent: 40599 + - uid: 43886 components: - type: Transform - pos: 69.5,58.5 - parent: 40203 - - uid: 43186 + rot: 1.5707963267948966 rad + pos: 57.5,45.5 + parent: 40599 + - uid: 43887 components: - type: Transform - pos: 69.5,50.5 - parent: 40203 - - uid: 43187 + rot: 1.5707963267948966 rad + pos: 46.5,42.5 + parent: 40599 + - uid: 43888 components: - type: Transform - pos: 69.5,54.5 - parent: 40203 - - uid: 43188 + rot: 1.5707963267948966 rad + pos: 59.5,42.5 + parent: 40599 + - uid: 43889 components: - type: Transform - pos: 69.5,53.5 - parent: 40203 - - uid: 43189 + rot: 1.5707963267948966 rad + pos: 45.5,40.5 + parent: 40599 + - uid: 43890 components: - type: Transform - pos: 71.5,58.5 - parent: 40203 - - uid: 43190 + rot: 1.5707963267948966 rad + pos: 59.5,41.5 + parent: 40599 + - uid: 43891 components: - type: Transform - pos: 73.5,57.5 - parent: 40203 - - uid: 43191 + rot: 1.5707963267948966 rad + pos: 58.5,43.5 + parent: 40599 + - uid: 43892 components: - type: Transform - pos: 71.5,57.5 - parent: 40203 - - uid: 43192 + rot: 1.5707963267948966 rad + pos: 56.5,45.5 + parent: 40599 + - uid: 43893 components: - type: Transform - pos: 71.5,55.5 - parent: 40203 - - uid: 43193 + rot: 1.5707963267948966 rad + pos: 59.5,39.5 + parent: 40599 + - uid: 43894 components: - type: Transform - pos: 69.5,57.5 - parent: 40203 - - uid: 43194 + rot: 1.5707963267948966 rad + pos: 58.5,37.5 + parent: 40599 + - uid: 43895 components: - type: Transform - pos: 71.5,56.5 - parent: 40203 - - uid: 43195 + rot: 1.5707963267948966 rad + pos: 58.5,42.5 + parent: 40599 + - uid: 43896 components: - type: Transform - pos: 71.5,54.5 - parent: 40203 - - uid: 43196 + rot: 1.5707963267948966 rad + pos: 45.5,39.5 + parent: 40599 + - uid: 43897 components: - type: Transform - pos: 71.5,53.5 - parent: 40203 - - uid: 43197 + rot: 1.5707963267948966 rad + pos: 54.5,34.5 + parent: 40599 + - uid: 43898 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,59.5 - parent: 40203 - - uid: 43198 + pos: 47.5,36.5 + parent: 40599 + - uid: 43899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,60.5 - parent: 40203 - - uid: 43199 + pos: 45.5,41.5 + parent: 40599 + - uid: 43900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,53.5 - parent: 40203 - - uid: 43200 + pos: 47.5,44.5 + parent: 40599 + - uid: 43901 components: - type: Transform - pos: 40.5,75.5 - parent: 40203 - - uid: 43201 + pos: 48.5,46.5 + parent: 40599 + - uid: 43902 components: - type: Transform rot: 1.5707963267948966 rad - pos: 67.5,71.5 - parent: 40203 - - uid: 43202 + pos: 58.5,38.5 + parent: 40599 + - uid: 43903 components: - type: Transform - pos: 69.5,62.5 - parent: 40203 - - uid: 43203 + rot: 1.5707963267948966 rad + pos: 48.5,35.5 + parent: 40599 + - uid: 43904 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,46.5 - parent: 40203 - - uid: 43204 + pos: 46.5,38.5 + parent: 40599 + - uid: 43905 components: - type: Transform - pos: 69.5,60.5 - parent: 40203 - - uid: 43205 + rot: 1.5707963267948966 rad + pos: 56.5,35.5 + parent: 40599 + - uid: 43906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,46.5 - parent: 40203 - - uid: 43206 + pos: 47.5,45.5 + parent: 40599 + - uid: 43907 components: - type: Transform - pos: 46.5,68.5 - parent: 40203 - - uid: 43207 + rot: 1.5707963267948966 rad + pos: 46.5,37.5 + parent: 40599 + - uid: 43908 components: - type: Transform - pos: 39.5,75.5 - parent: 40203 - - uid: 43208 + rot: 1.5707963267948966 rad + pos: 59.5,40.5 + parent: 40599 + - uid: 43909 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,74.5 - parent: 40203 - - uid: 43209 + pos: 55.5,34.5 + parent: 40599 + - uid: 43910 components: - type: Transform - pos: 55.5,83.5 - parent: 40203 - - uid: 43210 + rot: 1.5707963267948966 rad + pos: 50.5,34.5 + parent: 40599 + - uid: 43911 components: - type: Transform - pos: 71.5,61.5 - parent: 40203 - - uid: 43211 + rot: 1.5707963267948966 rad + pos: 58.5,44.5 + parent: 40599 + - uid: 43912 components: - type: Transform - pos: 55.5,82.5 - parent: 40203 - - uid: 43212 + pos: 49.5,46.5 + parent: 40599 + - uid: 43913 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,48.5 - parent: 40203 - - uid: 43213 + pos: 46.5,44.5 + parent: 40599 + - uid: 43914 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,47.5 - parent: 40203 - - uid: 43214 + pos: 54.5,33.5 + parent: 40599 + - uid: 43915 components: - type: Transform - pos: 34.5,67.5 - parent: 40203 - - uid: 43215 + rot: 1.5707963267948966 rad + pos: 48.5,34.5 + parent: 40599 + - uid: 43916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,49.5 - parent: 40203 - - uid: 43216 + rot: 1.5707963267948966 rad + pos: 57.5,36.5 + parent: 40599 + - uid: 43917 components: - type: Transform - pos: 58.5,82.5 - parent: 40203 - - uid: 43217 + rot: 1.5707963267948966 rad + pos: 49.5,34.5 + parent: 40599 +- proto: WallReinforced + entities: + - uid: 28783 components: - type: Transform - pos: 39.5,76.5 - parent: 40203 - - uid: 43218 + rot: 3.141592653589793 rad + pos: -19.5,59.5 + parent: 2 + - uid: 28784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,50.5 - parent: 40203 - - uid: 43219 + pos: -118.5,-0.5 + parent: 2 + - uid: 28785 components: - type: Transform - pos: 41.5,71.5 - parent: 40203 - - uid: 43220 + pos: -118.5,-1.5 + parent: 2 + - uid: 28786 components: - type: Transform - pos: 53.5,67.5 - parent: 40203 - - uid: 43221 + pos: -115.5,-2.5 + parent: 2 + - uid: 28787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,47.5 - parent: 40203 - - uid: 43222 + pos: -118.5,-2.5 + parent: 2 + - uid: 28788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 71.5,70.5 - parent: 40203 - - uid: 43223 + pos: -114.5,-0.5 + parent: 2 + - uid: 28789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,69.5 - parent: 40203 - - uid: 43224 + pos: -114.5,-2.5 + parent: 2 + - uid: 28790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,58.5 - parent: 40203 - - uid: 43225 + pos: -116.5,-2.5 + parent: 2 + - uid: 28791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,79.5 - parent: 40203 - - uid: 43226 + pos: -114.5,-1.5 + parent: 2 + - uid: 28792 components: - type: Transform - pos: 39.5,79.5 - parent: 40203 - - uid: 43227 + rot: 1.5707963267948966 rad + pos: -6.5,55.5 + parent: 2 + - uid: 28793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,68.5 - parent: 40203 - - uid: 43228 + rot: 3.141592653589793 rad + pos: -17.5,15.5 + parent: 2 + - uid: 28794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,49.5 - parent: 40203 - - uid: 43229 + pos: -26.5,17.5 + parent: 2 + - uid: 28795 components: - type: Transform - pos: 69.5,61.5 - parent: 40203 - - uid: 43230 + pos: -19.5,19.5 + parent: 2 + - uid: 28796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,70.5 - parent: 40203 - - uid: 43231 + pos: -28.5,18.5 + parent: 2 + - uid: 28797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,59.5 - parent: 40203 - - uid: 43232 + pos: -25.5,17.5 + parent: 2 + - uid: 28798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,69.5 - parent: 40203 - - uid: 43233 + pos: -24.5,17.5 + parent: 2 + - uid: 28799 components: - type: Transform - pos: 42.5,54.5 - parent: 40203 - - uid: 43234 + pos: -24.5,16.5 + parent: 2 + - uid: 28800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,57.5 - parent: 40203 - - uid: 43235 + rot: -1.5707963267948966 rad + pos: 100.5,-7.5 + parent: 2 + - uid: 28801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,62.5 - parent: 40203 - - uid: 43236 + rot: -1.5707963267948966 rad + pos: 92.5,-13.5 + parent: 2 + - uid: 28802 components: - type: Transform - pos: 71.5,60.5 - parent: 40203 - - uid: 43237 + rot: -1.5707963267948966 rad + pos: 93.5,-13.5 + parent: 2 + - uid: 28803 components: - type: Transform - pos: 49.5,49.5 - parent: 40203 - - uid: 43238 + rot: -1.5707963267948966 rad + pos: 94.5,-13.5 + parent: 2 + - uid: 28804 components: - type: Transform - pos: 35.5,75.5 - parent: 40203 - - uid: 43239 + rot: -1.5707963267948966 rad + pos: 95.5,-13.5 + parent: 2 + - uid: 28805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,54.5 - parent: 40203 - - uid: 43240 + rot: -1.5707963267948966 rad + pos: 100.5,-12.5 + parent: 2 + - uid: 28806 components: - type: Transform - pos: 64.5,64.5 - parent: 40203 - - uid: 43241 + rot: -1.5707963267948966 rad + pos: 91.5,-10.5 + parent: 2 + - uid: 28807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,80.5 - parent: 40203 - - uid: 43242 + rot: -1.5707963267948966 rad + pos: 91.5,-11.5 + parent: 2 + - uid: 28808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,80.5 - parent: 40203 - - uid: 43243 + rot: -1.5707963267948966 rad + pos: 91.5,-8.5 + parent: 2 + - uid: 28809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,80.5 - parent: 40203 - - uid: 43244 + rot: -1.5707963267948966 rad + pos: 95.5,-11.5 + parent: 2 + - uid: 28810 components: - type: Transform - pos: 48.5,67.5 - parent: 40203 - - uid: 43245 + rot: -1.5707963267948966 rad + pos: 91.5,-13.5 + parent: 2 + - uid: 28811 components: - type: Transform - pos: 69.5,64.5 - parent: 40203 - - uid: 43246 + rot: -1.5707963267948966 rad + pos: 95.5,-12.5 + parent: 2 + - uid: 28812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,80.5 - parent: 40203 - - uid: 43247 + rot: -1.5707963267948966 rad + pos: 91.5,-12.5 + parent: 2 + - uid: 28813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,80.5 - parent: 40203 - - uid: 43248 + rot: -1.5707963267948966 rad + pos: 100.5,-10.5 + parent: 2 + - uid: 28814 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,80.5 - parent: 40203 - - uid: 43249 + rot: -1.5707963267948966 rad + pos: 98.5,-12.5 + parent: 2 + - uid: 28815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,58.5 - parent: 40203 - - uid: 43250 + rot: -1.5707963267948966 rad + pos: 100.5,-9.5 + parent: 2 + - uid: 28816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,80.5 - parent: 40203 - - uid: 43251 + rot: -1.5707963267948966 rad + pos: 91.5,-9.5 + parent: 2 + - uid: 28817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,80.5 - parent: 40203 - - uid: 43252 + rot: -1.5707963267948966 rad + pos: 100.5,-11.5 + parent: 2 + - uid: 28818 components: - type: Transform - pos: 61.5,81.5 - parent: 40203 - - uid: 43253 + rot: -1.5707963267948966 rad + pos: 95.5,-9.5 + parent: 2 + - uid: 28819 components: - type: Transform - pos: 42.5,71.5 - parent: 40203 - - uid: 43254 + rot: -1.5707963267948966 rad + pos: 100.5,-8.5 + parent: 2 + - uid: 28820 components: - type: Transform - pos: 46.5,81.5 - parent: 40203 - - uid: 43255 + rot: 3.141592653589793 rad + pos: -28.5,-22.5 + parent: 2 + - uid: 28821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,51.5 - parent: 40203 - - uid: 43256 + rot: 3.141592653589793 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 28822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,58.5 - parent: 40203 - - uid: 43257 + rot: 3.141592653589793 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 28823 components: - type: Transform - pos: 58.5,64.5 - parent: 40203 - - uid: 43258 + rot: 3.141592653589793 rad + pos: 9.5,-42.5 + parent: 2 + - uid: 28824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,57.5 - parent: 40203 - - uid: 43259 + rot: 3.141592653589793 rad + pos: -24.5,-22.5 + parent: 2 + - uid: 28825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,53.5 - parent: 40203 - - uid: 43260 + rot: 3.141592653589793 rad + pos: -19.5,-22.5 + parent: 2 + - uid: 28826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,58.5 - parent: 40203 - - uid: 43261 + rot: 3.141592653589793 rad + pos: -94.5,1.5 + parent: 2 + - uid: 28827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,58.5 - parent: 40203 - - uid: 43262 + rot: 3.141592653589793 rad + pos: -95.5,6.5 + parent: 2 + - uid: 28828 components: - type: Transform - pos: 65.5,64.5 - parent: 40203 - - uid: 43263 + rot: 3.141592653589793 rad + pos: -96.5,0.5 + parent: 2 + - uid: 28829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,58.5 - parent: 40203 - - uid: 43264 + rot: 3.141592653589793 rad + pos: -95.5,0.5 + parent: 2 + - uid: 28830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,65.5 - parent: 40203 - - uid: 43265 + rot: 3.141592653589793 rad + pos: -97.5,0.5 + parent: 2 + - uid: 28831 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,48.5 - parent: 40203 - - uid: 43266 + pos: -102.5,3.5 + parent: 2 + - uid: 28832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,73.5 - parent: 40203 - - uid: 43267 + rot: -1.5707963267948966 rad + pos: -102.5,2.5 + parent: 2 + - uid: 28833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,47.5 - parent: 40203 - - uid: 43268 + rot: 3.141592653589793 rad + pos: -20.5,-22.5 + parent: 2 + - uid: 28834 components: - type: Transform - pos: 61.5,64.5 - parent: 40203 - - uid: 43269 + rot: 3.141592653589793 rad + pos: -108.5,0.5 + parent: 2 + - uid: 28835 components: - type: Transform - pos: 66.5,64.5 - parent: 40203 - - uid: 43270 + rot: 3.141592653589793 rad + pos: -109.5,0.5 + parent: 2 + - uid: 28836 components: - type: Transform - pos: 63.5,64.5 - parent: 40203 - - uid: 43271 + rot: 3.141592653589793 rad + pos: -109.5,-3.5 + parent: 2 + - uid: 28837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,60.5 - parent: 40203 - - uid: 43272 + rot: 3.141592653589793 rad + pos: -108.5,-3.5 + parent: 2 + - uid: 28838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,80.5 - parent: 40203 - - uid: 43273 + rot: -1.5707963267948966 rad + pos: 27.5,-44.5 + parent: 2 + - uid: 28839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,80.5 - parent: 40203 - - uid: 43274 + pos: -35.5,15.5 + parent: 2 + - uid: 28840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,80.5 - parent: 40203 - - uid: 43275 + rot: 3.141592653589793 rad + pos: -108.5,23.5 + parent: 2 + - uid: 28841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,64.5 - parent: 40203 - - uid: 43276 + rot: 3.141592653589793 rad + pos: -110.5,-9.5 + parent: 2 + - uid: 28842 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,64.5 - parent: 40203 - - uid: 43277 + pos: -41.5,-13.5 + parent: 2 + - uid: 28843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,67.5 - parent: 40203 - - uid: 43278 + pos: -35.5,-18.5 + parent: 2 + - uid: 28844 components: - type: Transform - pos: 64.5,76.5 - parent: 40203 - - uid: 43279 + pos: -35.5,-19.5 + parent: 2 + - uid: 28845 components: - type: Transform - pos: 58.5,79.5 - parent: 40203 - - uid: 43280 + pos: -35.5,-17.5 + parent: 2 + - uid: 28846 components: - type: Transform - pos: 61.5,78.5 - parent: 40203 - - uid: 43281 + pos: -35.5,-16.5 + parent: 2 + - uid: 28847 components: - type: Transform - pos: 64.5,78.5 - parent: 40203 - - uid: 43282 + pos: -28.5,17.5 + parent: 2 + - uid: 28848 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,52.5 - parent: 40203 - - uid: 43283 + pos: 51.5,-40.5 + parent: 2 + - uid: 28849 components: - type: Transform - pos: 68.5,64.5 - parent: 40203 - - uid: 43284 + rot: 1.5707963267948966 rad + pos: -43.5,-13.5 + parent: 2 + - uid: 28850 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,57.5 - parent: 40203 - - uid: 43285 + pos: -42.5,-13.5 + parent: 2 + - uid: 28851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,80.5 - parent: 40203 - - uid: 43286 + pos: 10.5,-44.5 + parent: 2 + - uid: 28852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,66.5 - parent: 40203 - - uid: 43287 + rot: -1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 + - uid: 28853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,67.5 - parent: 40203 - - uid: 43288 + pos: -9.5,55.5 + parent: 2 + - uid: 28854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,68.5 - parent: 40203 - - uid: 43289 + pos: -51.5,-1.5 + parent: 2 + - uid: 28855 components: - type: Transform - pos: 42.5,74.5 - parent: 40203 - - uid: 43290 + rot: 3.141592653589793 rad + pos: 21.5,-29.5 + parent: 2 + - uid: 28856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,76.5 - parent: 40203 - - uid: 43291 + pos: -10.5,55.5 + parent: 2 + - uid: 28857 components: - type: Transform - pos: 57.5,64.5 - parent: 40203 - - uid: 43292 + pos: -46.5,-1.5 + parent: 2 + - uid: 28858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,80.5 - parent: 40203 - - uid: 43293 + pos: -8.5,55.5 + parent: 2 + - uid: 28859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,49.5 + parent: 2 + - uid: 28860 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,73.5 - parent: 40203 - - uid: 43294 + pos: 17.5,10.5 + parent: 2 + - uid: 28861 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,76.5 - parent: 40203 - - uid: 43295 + pos: 14.5,10.5 + parent: 2 + - uid: 28862 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,63.5 - parent: 40203 - - uid: 43296 + pos: -43.5,-20.5 + parent: 2 + - uid: 28863 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,54.5 - parent: 40203 - - uid: 43297 + pos: -41.5,-20.5 + parent: 2 + - uid: 28864 components: - type: Transform rot: 1.5707963267948966 rad - pos: 51.5,80.5 - parent: 40203 - - uid: 43298 + pos: -40.5,-20.5 + parent: 2 + - uid: 28865 components: - type: Transform - pos: 58.5,77.5 - parent: 40203 - - uid: 43299 + rot: -1.5707963267948966 rad + pos: -6.5,52.5 + parent: 2 + - uid: 28866 components: - type: Transform - pos: 42.5,75.5 - parent: 40203 - - uid: 43300 + rot: -1.5707963267948966 rad + pos: -6.5,50.5 + parent: 2 + - uid: 28867 components: - type: Transform - pos: 42.5,73.5 - parent: 40203 - - uid: 43301 + rot: -1.5707963267948966 rad + pos: -6.5,49.5 + parent: 2 + - uid: 28868 components: - type: Transform - pos: 36.5,75.5 - parent: 40203 - - uid: 43302 + pos: -7.5,55.5 + parent: 2 + - uid: 28869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,77.5 - parent: 40203 - - uid: 43303 + pos: -31.5,-3.5 + parent: 2 + - uid: 28870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,49.5 - parent: 40203 - - uid: 43304 + rot: 3.141592653589793 rad + pos: -16.5,61.5 + parent: 2 + - uid: 28871 components: - type: Transform - pos: 56.5,64.5 - parent: 40203 - - uid: 43305 + pos: -31.5,-44.5 + parent: 2 + - uid: 28872 components: - type: Transform - pos: 55.5,64.5 - parent: 40203 - - uid: 43306 + rot: 3.141592653589793 rad + pos: -7.5,63.5 + parent: 2 + - uid: 28873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,55.5 - parent: 40203 - - uid: 43307 + rot: 3.141592653589793 rad + pos: -10.5,63.5 + parent: 2 + - uid: 28874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,53.5 - parent: 40203 - - uid: 43308 + rot: 3.141592653589793 rad + pos: -16.5,60.5 + parent: 2 + - uid: 28875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,56.5 - parent: 40203 - - uid: 43309 + rot: 3.141592653589793 rad + pos: -5.5,60.5 + parent: 2 + - uid: 28876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,80.5 - parent: 40203 - - uid: 43310 + rot: 3.141592653589793 rad + pos: -7.5,60.5 + parent: 2 + - uid: 28877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,80.5 - parent: 40203 - - uid: 43311 + rot: 3.141592653589793 rad + pos: -6.5,60.5 + parent: 2 + - uid: 28878 components: - type: Transform - pos: 58.5,78.5 - parent: 40203 - - uid: 43312 + rot: 3.141592653589793 rad + pos: -8.5,60.5 + parent: 2 + - uid: 28879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,49.5 - parent: 40203 - - uid: 43313 + rot: 3.141592653589793 rad + pos: -10.5,60.5 + parent: 2 + - uid: 28880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,53.5 - parent: 40203 - - uid: 43314 + rot: 3.141592653589793 rad + pos: -9.5,60.5 + parent: 2 + - uid: 28881 components: - type: Transform - pos: 42.5,68.5 - parent: 40203 - - uid: 43315 + rot: 3.141592653589793 rad + pos: -8.5,63.5 + parent: 2 + - uid: 28882 components: - type: Transform - pos: 42.5,72.5 - parent: 40203 - - uid: 43316 + rot: 3.141592653589793 rad + pos: -13.5,56.5 + parent: 2 + - uid: 28883 components: - type: Transform - pos: 42.5,67.5 - parent: 40203 - - uid: 43317 + rot: 1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 2 + - uid: 28884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,50.5 - parent: 40203 - - uid: 43318 + rot: 3.141592653589793 rad + pos: -16.5,63.5 + parent: 2 + - uid: 28885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,49.5 - parent: 40203 - - uid: 43319 + rot: 3.141592653589793 rad + pos: -16.5,62.5 + parent: 2 + - uid: 28886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,49.5 - parent: 40203 - - uid: 43320 + rot: 3.141592653589793 rad + pos: -12.5,63.5 + parent: 2 + - uid: 28887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,53.5 - parent: 40203 - - uid: 43321 + rot: 3.141592653589793 rad + pos: -16.5,58.5 + parent: 2 + - uid: 28888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,58.5 - parent: 40203 - - uid: 43322 + rot: 3.141592653589793 rad + pos: -16.5,59.5 + parent: 2 + - uid: 28889 components: - type: Transform - pos: 67.5,76.5 - parent: 40203 - - uid: 43323 + rot: 3.141592653589793 rad + pos: -9.5,63.5 + parent: 2 + - uid: 28890 components: - type: Transform - pos: 44.5,85.5 - parent: 40203 - - uid: 43324 + pos: -54.5,8.5 + parent: 2 + - uid: 28891 components: - type: Transform - pos: 46.5,82.5 - parent: 40203 - - uid: 43325 + rot: 3.141592653589793 rad + pos: -4.5,60.5 + parent: 2 + - uid: 28892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,58.5 - parent: 40203 - - uid: 43326 + rot: 3.141592653589793 rad + pos: -7.5,61.5 + parent: 2 + - uid: 28893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,49.5 - parent: 40203 - - uid: 43327 + rot: 3.141592653589793 rad + pos: -11.5,53.5 + parent: 2 + - uid: 28894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,58.5 - parent: 40203 - - uid: 43328 + rot: 3.141592653589793 rad + pos: -15.5,63.5 + parent: 2 + - uid: 28895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,53.5 - parent: 40203 - - uid: 43329 + rot: 3.141592653589793 rad + pos: -6.5,53.5 + parent: 2 + - uid: 28896 components: - type: Transform - pos: 58.5,76.5 - parent: 40203 - - uid: 43330 + rot: 3.141592653589793 rad + pos: -3.5,59.5 + parent: 2 + - uid: 28897 components: - type: Transform - pos: 45.5,85.5 - parent: 40203 - - uid: 43331 + rot: 3.141592653589793 rad + pos: -3.5,53.5 + parent: 2 + - uid: 28898 components: - type: Transform - pos: 46.5,72.5 - parent: 40203 - - uid: 43332 + rot: 3.141592653589793 rad + pos: -3.5,54.5 + parent: 2 + - uid: 28899 components: - type: Transform - pos: 59.5,64.5 - parent: 40203 - - uid: 43333 + rot: 3.141592653589793 rad + pos: -3.5,55.5 + parent: 2 + - uid: 28900 components: - type: Transform - pos: 62.5,64.5 - parent: 40203 - - uid: 43334 + rot: 3.141592653589793 rad + pos: -11.5,63.5 + parent: 2 + - uid: 28901 components: - type: Transform - pos: 60.5,64.5 - parent: 40203 - - uid: 43335 + rot: 3.141592653589793 rad + pos: -11.5,62.5 + parent: 2 + - uid: 28902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,58.5 - parent: 40203 - - uid: 43336 + rot: 3.141592653589793 rad + pos: -14.5,56.5 + parent: 2 + - uid: 28903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,58.5 - parent: 40203 - - uid: 43337 + rot: 3.141592653589793 rad + pos: -11.5,56.5 + parent: 2 + - uid: 28904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,58.5 - parent: 40203 - - uid: 43338 + rot: 3.141592653589793 rad + pos: -12.5,56.5 + parent: 2 + - uid: 28905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,50.5 - parent: 40203 - - uid: 43339 + rot: 3.141592653589793 rad + pos: -16.5,56.5 + parent: 2 + - uid: 28906 components: - type: Transform - pos: 41.5,75.5 - parent: 40203 - - uid: 43340 + rot: 3.141592653589793 rad + pos: -15.5,56.5 + parent: 2 + - uid: 28907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,80.5 - parent: 40203 - - uid: 43341 + rot: 3.141592653589793 rad + pos: -11.5,55.5 + parent: 2 + - uid: 28908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,80.5 - parent: 40203 - - uid: 43342 + rot: 3.141592653589793 rad + pos: -14.5,63.5 + parent: 2 + - uid: 28909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,80.5 - parent: 40203 - - uid: 43343 + rot: 3.141592653589793 rad + pos: -13.5,63.5 + parent: 2 + - uid: 28910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,78.5 - parent: 40203 - - uid: 43344 + rot: 3.141592653589793 rad + pos: -3.5,60.5 + parent: 2 + - uid: 28911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,79.5 - parent: 40203 - - uid: 43345 + rot: 3.141592653589793 rad + pos: -4.5,53.5 + parent: 2 + - uid: 28912 components: - type: Transform - pos: 47.5,64.5 - parent: 40203 - - uid: 43346 + pos: -26.5,-3.5 + parent: 2 + - uid: 28913 components: - type: Transform - pos: 46.5,85.5 - parent: 40203 - - uid: 43347 + pos: -39.5,-0.5 + parent: 2 + - uid: 28914 components: - type: Transform rot: 1.5707963267948966 rad - pos: 70.5,71.5 - parent: 40203 - - uid: 43348 + pos: -37.5,-10.5 + parent: 2 + - uid: 28915 components: - type: Transform - pos: 46.5,84.5 - parent: 40203 - - uid: 43349 + rot: 3.141592653589793 rad + pos: -35.5,7.5 + parent: 2 + - uid: 28916 components: - type: Transform - pos: 47.5,57.5 - parent: 40203 - - uid: 43350 + rot: 3.141592653589793 rad + pos: -35.5,6.5 + parent: 2 + - uid: 28917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,69.5 - parent: 40203 - - uid: 43351 + rot: 3.141592653589793 rad + pos: -35.5,8.5 + parent: 2 + - uid: 28918 components: - type: Transform - pos: 47.5,56.5 - parent: 40203 - - uid: 43352 + pos: -8.5,11.5 + parent: 2 + - uid: 28919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,56.5 - parent: 40203 - - uid: 43353 + pos: 13.5,11.5 + parent: 2 + - uid: 28920 + components: + - type: Transform + pos: -9.5,7.5 + parent: 2 + - uid: 28921 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,57.5 - parent: 40203 - - uid: 43354 + pos: -21.5,-43.5 + parent: 2 + - uid: 28922 components: - type: Transform - pos: 37.5,58.5 - parent: 40203 - - uid: 43355 + rot: -1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - uid: 28923 components: - type: Transform - pos: 47.5,58.5 - parent: 40203 - - uid: 43356 + rot: 1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 2 + - uid: 28924 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,64.5 - parent: 40203 - - uid: 43357 + pos: -19.5,-47.5 + parent: 2 + - uid: 28925 components: - type: Transform - pos: 46.5,78.5 - parent: 40203 - - uid: 43358 + rot: 1.5707963267948966 rad + pos: -20.5,-47.5 + parent: 2 + - uid: 28926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,50.5 - parent: 40203 - - uid: 43359 + rot: 1.5707963267948966 rad + pos: -26.5,-47.5 + parent: 2 + - uid: 28927 components: - type: Transform - pos: 46.5,56.5 - parent: 40203 - - uid: 43360 + pos: 8.5,-40.5 + parent: 2 + - uid: 28928 components: - type: Transform - pos: 47.5,63.5 - parent: 40203 - - uid: 43361 + pos: 8.5,-44.5 + parent: 2 + - uid: 28929 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,50.5 - parent: 40203 - - uid: 43362 + pos: -11.5,-37.5 + parent: 2 + - uid: 28930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,67.5 - parent: 40203 - - uid: 43363 + rot: -1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 + - uid: 28931 components: - type: Transform - pos: 35.5,70.5 - parent: 40203 - - uid: 43364 + rot: -1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - uid: 28932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,56.5 - parent: 40203 - - uid: 43365 + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 28933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,58.5 - parent: 40203 - - uid: 43366 + rot: -1.5707963267948966 rad + pos: -25.5,-36.5 + parent: 2 + - uid: 28934 components: - type: Transform - pos: 45.5,64.5 - parent: 40203 - - uid: 43367 + pos: -28.5,-36.5 + parent: 2 + - uid: 28935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,73.5 - parent: 40203 - - uid: 43368 + pos: -30.5,-36.5 + parent: 2 + - uid: 28936 components: - type: Transform - pos: 36.5,58.5 - parent: 40203 - - uid: 43369 + pos: -27.5,-36.5 + parent: 2 + - uid: 28937 components: - type: Transform - pos: 39.5,59.5 - parent: 40203 - - uid: 43370 + pos: -31.5,-39.5 + parent: 2 + - uid: 28938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,73.5 - parent: 40203 - - uid: 43371 + pos: -31.5,-36.5 + parent: 2 + - uid: 28939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 70.5,70.5 - parent: 40203 - - uid: 43372 + pos: -31.5,-37.5 + parent: 2 + - uid: 28940 components: - type: Transform - pos: 46.5,64.5 - parent: 40203 - - uid: 43373 + pos: -29.5,-36.5 + parent: 2 + - uid: 28941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,64.5 - parent: 40203 - - uid: 43374 + pos: -25.5,-40.5 + parent: 2 + - uid: 28942 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,73.5 - parent: 40203 - - uid: 43375 + rot: -1.5707963267948966 rad + pos: -25.5,-38.5 + parent: 2 + - uid: 28943 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,59.5 - parent: 40203 - - uid: 43376 - components: - - type: Transform - pos: 64.5,77.5 - parent: 40203 - - uid: 43377 + pos: 42.5,-55.5 + parent: 2 + - uid: 28944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,47.5 - parent: 40203 - - uid: 43378 + pos: -25.5,-41.5 + parent: 2 + - uid: 28945 components: - type: Transform - pos: 46.5,75.5 - parent: 40203 - - uid: 43379 + pos: -25.5,-42.5 + parent: 2 + - uid: 28946 components: - type: Transform - pos: 50.5,50.5 - parent: 40203 - - uid: 43380 + pos: -31.5,-41.5 + parent: 2 + - uid: 28947 components: - type: Transform - pos: 46.5,67.5 - parent: 40203 - - uid: 43381 + pos: -31.5,-40.5 + parent: 2 + - uid: 28948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,73.5 - parent: 40203 - - uid: 43382 + rot: -1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 2 + - uid: 28949 components: - type: Transform - pos: 50.5,47.5 - parent: 40203 - - uid: 43383 + rot: -1.5707963267948966 rad + pos: -18.5,-39.5 + parent: 2 + - uid: 28950 components: - type: Transform - pos: 46.5,70.5 - parent: 40203 - - uid: 43384 + rot: -1.5707963267948966 rad + pos: -25.5,-34.5 + parent: 2 + - uid: 28951 components: - type: Transform - pos: 38.5,75.5 - parent: 40203 - - uid: 43385 + rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 + - uid: 28952 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,50.5 - parent: 40203 - - uid: 43386 + pos: 16.5,3.5 + parent: 2 + - uid: 28953 components: - type: Transform - pos: 39.5,64.5 - parent: 40203 - - uid: 43387 + rot: 1.5707963267948966 rad + pos: -18.5,-43.5 + parent: 2 + - uid: 28954 components: - type: Transform - pos: 47.5,59.5 - parent: 40203 - - uid: 43388 + pos: -9.5,5.5 + parent: 2 + - uid: 28955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,71.5 - parent: 40203 - - uid: 43389 + pos: -9.5,6.5 + parent: 2 + - uid: 28956 components: - type: Transform rot: 1.5707963267948966 rad - pos: 58.5,73.5 - parent: 40203 - - uid: 43390 + pos: -21.5,-47.5 + parent: 2 + - uid: 28957 components: - type: Transform - pos: 50.5,48.5 - parent: 40203 - - uid: 43391 + pos: -13.5,3.5 + parent: 2 + - uid: 28958 components: - type: Transform - pos: 47.5,67.5 - parent: 40203 - - uid: 43392 + pos: 18.5,3.5 + parent: 2 + - uid: 28959 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,64.5 - parent: 40203 - - uid: 43393 + pos: -10.5,3.5 + parent: 2 + - uid: 28960 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,64.5 - parent: 40203 - - uid: 43394 - components: - - type: Transform - pos: 39.5,63.5 - parent: 40203 - - uid: 43395 + pos: -22.5,-47.5 + parent: 2 + - uid: 28961 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,64.5 - parent: 40203 - - uid: 43396 + pos: 15.5,-11.5 + parent: 2 + - uid: 28962 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,61.5 - parent: 40203 - - uid: 43397 + pos: -14.5,-71.5 + parent: 2 + - uid: 28963 components: - type: Transform - pos: 73.5,58.5 - parent: 40203 - - uid: 43398 + pos: -20.5,-53.5 + parent: 2 + - uid: 28964 components: - type: Transform - pos: 51.5,67.5 - parent: 40203 - - uid: 43399 + pos: -20.5,-54.5 + parent: 2 + - uid: 28965 components: - type: Transform - pos: 38.5,67.5 - parent: 40203 - - uid: 43400 + pos: -3.5,-71.5 + parent: 2 + - uid: 28966 components: - type: Transform - pos: 36.5,67.5 - parent: 40203 - - uid: 43401 + rot: -1.5707963267948966 rad + pos: 8.5,-57.5 + parent: 2 + - uid: 28967 components: - type: Transform - pos: 39.5,67.5 - parent: 40203 - - uid: 43402 + pos: -26.5,-56.5 + parent: 2 + - uid: 28968 components: - type: Transform - pos: 40.5,67.5 - parent: 40203 - - uid: 43403 + pos: -25.5,-56.5 + parent: 2 + - uid: 28969 components: - type: Transform - pos: 44.5,75.5 - parent: 40203 - - uid: 43404 + pos: -25.5,-64.5 + parent: 2 + - uid: 28970 components: - type: Transform - pos: 37.5,67.5 - parent: 40203 - - uid: 43405 + rot: -1.5707963267948966 rad + pos: 6.5,-57.5 + parent: 2 + - uid: 28971 components: - type: Transform - pos: 42.5,70.5 - parent: 40203 - - uid: 43406 + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 + parent: 2 + - uid: 28972 components: - type: Transform - pos: 47.5,80.5 - parent: 40203 - - uid: 43407 + pos: -1.5,-71.5 + parent: 2 + - uid: 28973 components: - type: Transform - pos: 46.5,80.5 - parent: 40203 - - uid: 43408 + pos: 45.5,-46.5 + parent: 2 + - uid: 28974 components: - type: Transform - pos: 47.5,75.5 - parent: 40203 - - uid: 43409 + pos: 29.5,-40.5 + parent: 2 + - uid: 28975 components: - type: Transform - pos: 39.5,80.5 - parent: 40203 - - uid: 43410 + pos: 38.5,-34.5 + parent: 2 + - uid: 28976 components: - type: Transform - pos: 40.5,71.5 - parent: 40203 - - uid: 43411 + pos: 36.5,-44.5 + parent: 2 + - uid: 28977 components: - type: Transform - pos: 37.5,71.5 - parent: 40203 - - uid: 43412 + pos: 38.5,-35.5 + parent: 2 + - uid: 28978 components: - type: Transform - pos: 36.5,71.5 - parent: 40203 - - uid: 43413 + pos: 30.5,-44.5 + parent: 2 + - uid: 28979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,62.5 - parent: 40203 - - uid: 43414 + pos: 38.5,-36.5 + parent: 2 + - uid: 28980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,62.5 - parent: 40203 - - uid: 43415 + pos: 28.5,-40.5 + parent: 2 + - uid: 28981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,60.5 - parent: 40203 - - uid: 43416 + pos: 45.5,-50.5 + parent: 2 + - uid: 28982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,60.5 - parent: 40203 - - uid: 43417 + pos: 26.5,-52.5 + parent: 2 + - uid: 28983 components: - type: Transform - pos: 46.5,74.5 - parent: 40203 - - uid: 43418 + pos: 42.5,-46.5 + parent: 2 + - uid: 28984 components: - type: Transform - pos: 46.5,71.5 - parent: 40203 - - uid: 43419 + pos: 41.5,-44.5 + parent: 2 + - uid: 28985 components: - type: Transform - pos: 52.5,67.5 - parent: 40203 - - uid: 43420 + pos: 41.5,-45.5 + parent: 2 + - uid: 28986 components: - type: Transform - pos: 59.5,63.5 - parent: 40203 - - uid: 43421 + pos: 29.5,-43.5 + parent: 2 + - uid: 28987 components: - type: Transform - pos: 59.5,62.5 - parent: 40203 - - uid: 43422 + pos: 24.5,-44.5 + parent: 2 + - uid: 28988 components: - type: Transform - pos: 59.5,61.5 - parent: 40203 - - uid: 43423 + pos: 25.5,-57.5 + parent: 2 + - uid: 28989 components: - type: Transform - pos: 60.5,61.5 - parent: 40203 - - uid: 43424 + pos: 26.5,-40.5 + parent: 2 + - uid: 28990 components: - type: Transform - pos: 35.5,78.5 - parent: 40203 - - uid: 43425 + pos: 29.5,-42.5 + parent: 2 + - uid: 28991 components: - type: Transform - pos: 47.5,76.5 - parent: 40203 - - uid: 43426 + pos: 25.5,-40.5 + parent: 2 + - uid: 28992 components: - type: Transform - pos: 39.5,71.5 - parent: 40203 - - uid: 43427 + pos: 35.5,-56.5 + parent: 2 + - uid: 28993 components: - type: Transform - pos: 47.5,79.5 - parent: 40203 - - uid: 43428 + pos: 39.5,-56.5 + parent: 2 + - uid: 28994 components: - type: Transform - pos: 47.5,78.5 - parent: 40203 - - uid: 43429 + pos: 41.5,-46.5 + parent: 2 + - uid: 28995 components: - type: Transform - pos: 47.5,77.5 - parent: 40203 - - uid: 43430 + pos: -12.5,-13.5 + parent: 2 + - uid: 28996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,57.5 - parent: 40203 - - uid: 43431 + pos: 13.5,16.5 + parent: 2 + - uid: 28997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,57.5 - parent: 40203 - - uid: 43432 + pos: 13.5,17.5 + parent: 2 + - uid: 28998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,67.5 - parent: 40203 - - uid: 43433 + pos: 13.5,14.5 + parent: 2 + - uid: 28999 components: - type: Transform - pos: 27.5,69.5 - parent: 40203 - - uid: 43434 + pos: 13.5,15.5 + parent: 2 + - uid: 29000 components: - type: Transform - pos: 27.5,68.5 - parent: 40203 - - uid: 43435 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 2 + - uid: 29001 components: - type: Transform - pos: 27.5,67.5 - parent: 40203 - - uid: 43436 + pos: 16.5,-2.5 + parent: 2 + - uid: 29002 components: - type: Transform - pos: 27.5,66.5 - parent: 40203 - - uid: 43437 + pos: 19.5,-3.5 + parent: 2 + - uid: 29003 components: - type: Transform - pos: 29.5,73.5 - parent: 40203 - - uid: 43438 + pos: 16.5,-3.5 + parent: 2 + - uid: 29004 components: - type: Transform - pos: 31.5,73.5 - parent: 40203 - - uid: 43439 + pos: 16.5,-5.5 + parent: 2 + - uid: 29005 components: - type: Transform - pos: 29.5,64.5 - parent: 40203 - - uid: 43440 + pos: 16.5,-6.5 + parent: 2 + - uid: 29006 components: - type: Transform - pos: 28.5,73.5 - parent: 40203 - - uid: 43441 + pos: 19.5,-11.5 + parent: 2 + - uid: 29007 components: - type: Transform - pos: 30.5,73.5 - parent: 40203 - - uid: 43442 + pos: 19.5,-10.5 + parent: 2 + - uid: 29008 components: - type: Transform - pos: 27.5,73.5 - parent: 40203 - - uid: 43443 + rot: -1.5707963267948966 rad + pos: 3.5,-57.5 + parent: 2 + - uid: 29009 components: - type: Transform - pos: 55.5,81.5 - parent: 40203 - - uid: 43444 + pos: 19.5,-4.5 + parent: 2 + - uid: 29010 components: - type: Transform - pos: 32.5,64.5 - parent: 40203 - - uid: 43445 + pos: 19.5,-2.5 + parent: 2 + - uid: 29011 components: - type: Transform - pos: 42.5,69.5 - parent: 40203 - - uid: 43446 + rot: -1.5707963267948966 rad + pos: -6.5,-51.5 + parent: 2 + - uid: 29012 components: - type: Transform - pos: 52.5,68.5 - parent: 40203 - - uid: 43447 + rot: -1.5707963267948966 rad + pos: -5.5,-51.5 + parent: 2 + - uid: 29013 components: - type: Transform - pos: 47.5,68.5 - parent: 40203 - - uid: 43448 + pos: -14.5,-10.5 + parent: 2 + - uid: 29014 components: - type: Transform - pos: 47.5,74.5 - parent: 40203 - - uid: 43449 + pos: 15.5,-14.5 + parent: 2 + - uid: 29015 components: - type: Transform - pos: 57.5,80.5 - parent: 40203 - - uid: 43450 + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 2 + - uid: 29016 components: - type: Transform - pos: 28.5,64.5 - parent: 40203 - - uid: 43451 + pos: 7.5,-14.5 + parent: 2 + - uid: 29017 components: - type: Transform - pos: 27.5,71.5 - parent: 40203 - - uid: 43452 + pos: 16.5,-14.5 + parent: 2 + - uid: 29018 components: - type: Transform - pos: 27.5,72.5 - parent: 40203 - - uid: 43453 + pos: -14.5,-9.5 + parent: 2 + - uid: 29019 components: - type: Transform - pos: 27.5,65.5 - parent: 40203 - - uid: 43454 + pos: -25.5,-33.5 + parent: 2 + - uid: 29020 components: - type: Transform - pos: 27.5,64.5 - parent: 40203 - - uid: 43455 + rot: -1.5707963267948966 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 29021 components: - type: Transform - pos: 31.5,64.5 - parent: 40203 - - uid: 43456 + pos: -27.5,3.5 + parent: 2 + - uid: 29022 components: - type: Transform - pos: 27.5,70.5 - parent: 40203 - - uid: 43457 + pos: -14.5,-1.5 + parent: 2 + - uid: 29023 components: - type: Transform - pos: 30.5,64.5 - parent: 40203 - - uid: 43458 + pos: -27.5,7.5 + parent: 2 + - uid: 29024 components: - type: Transform - pos: 64.5,48.5 - parent: 40203 - - uid: 43459 + rot: -1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 2 + - uid: 29025 components: - type: Transform - pos: 35.5,84.5 - parent: 40203 - - uid: 43460 + pos: -6.5,-1.5 + parent: 2 + - uid: 29026 components: - type: Transform - pos: 35.5,83.5 - parent: 40203 - - uid: 43461 + pos: -27.5,5.5 + parent: 2 + - uid: 29027 components: - type: Transform - pos: 35.5,82.5 - parent: 40203 - - uid: 43462 + pos: -24.5,9.5 + parent: 2 + - uid: 29028 components: - type: Transform - pos: 36.5,84.5 - parent: 40203 - - uid: 43463 + pos: -8.5,-1.5 + parent: 2 + - uid: 29029 components: - type: Transform - pos: 37.5,84.5 - parent: 40203 - - uid: 43464 + pos: -27.5,6.5 + parent: 2 + - uid: 29030 components: - type: Transform - pos: 37.5,83.5 - parent: 40203 - - uid: 43465 + pos: -39.5,17.5 + parent: 2 + - uid: 29031 components: - type: Transform - pos: 37.5,82.5 - parent: 40203 - - uid: 43466 + pos: -39.5,14.5 + parent: 2 + - uid: 29032 components: - type: Transform - pos: 38.5,84.5 - parent: 40203 - - uid: 43467 + pos: -39.5,15.5 + parent: 2 + - uid: 29033 components: - type: Transform - pos: 64.5,47.5 - parent: 40203 - - uid: 43468 + pos: -39.5,16.5 + parent: 2 + - uid: 29034 components: - type: Transform - pos: 63.5,47.5 - parent: 40203 - - uid: 43469 + pos: -43.5,13.5 + parent: 2 + - uid: 29035 components: - type: Transform - pos: 47.5,81.5 - parent: 40203 - - uid: 43470 + pos: -43.5,14.5 + parent: 2 + - uid: 29036 components: - type: Transform - pos: 62.5,48.5 - parent: 40203 - - uid: 43471 + pos: -27.5,8.5 + parent: 2 + - uid: 29037 components: - type: Transform - pos: 62.5,47.5 - parent: 40203 - - uid: 43472 + pos: -25.5,9.5 + parent: 2 + - uid: 29038 components: - type: Transform - pos: 47.5,84.5 - parent: 40203 - - uid: 43473 + pos: -27.5,9.5 + parent: 2 + - uid: 29039 components: - type: Transform - pos: 47.5,82.5 - parent: 40203 - - uid: 43474 + rot: -1.5707963267948966 rad + pos: -17.5,-48.5 + parent: 2 + - uid: 29040 components: - type: Transform - pos: 47.5,83.5 - parent: 40203 - - uid: 43475 + rot: -1.5707963267948966 rad + pos: -0.5,-56.5 + parent: 2 + - uid: 29041 components: - type: Transform - pos: 47.5,85.5 - parent: 40203 - - uid: 43476 + pos: 10.5,14.5 + parent: 2 + - uid: 29042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,81.5 - parent: 40203 - - uid: 43477 + pos: -2.5,-4.5 + parent: 2 + - uid: 29043 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,82.5 - parent: 40203 -- proto: WallPlastitaniumIndestructible - entities: - - uid: 43478 + pos: -24.5,10.5 + parent: 2 + - uid: 29044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,36.5 - parent: 40203 - - uid: 43479 + rot: -1.5707963267948966 rad + pos: -10.5,-51.5 + parent: 2 + - uid: 29045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,36.5 - parent: 40203 - - uid: 43480 + rot: -1.5707963267948966 rad + pos: -12.5,-47.5 + parent: 2 + - uid: 29046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,35.5 - parent: 40203 - - uid: 43481 + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 29047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,38.5 - parent: 40203 - - uid: 43482 + pos: -26.5,-57.5 + parent: 2 + - uid: 29048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,38.5 - parent: 40203 - - uid: 43483 + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 + parent: 2 + - uid: 29049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,33.5 - parent: 40203 - - uid: 43484 + rot: -1.5707963267948966 rad + pos: -17.5,-47.5 + parent: 2 + - uid: 29050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,33.5 - parent: 40203 - - uid: 43485 + rot: -1.5707963267948966 rad + pos: -16.5,-47.5 + parent: 2 + - uid: 29051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,34.5 - parent: 40203 - - uid: 43486 + rot: -1.5707963267948966 rad + pos: -0.5,-57.5 + parent: 2 + - uid: 29052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,33.5 - parent: 40203 - - uid: 43487 + pos: -57.5,14.5 + parent: 2 + - uid: 29053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,33.5 - parent: 40203 - - uid: 43488 + pos: -57.5,15.5 + parent: 2 + - uid: 29054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,46.5 - parent: 40203 - - uid: 43489 + pos: -56.5,18.5 + parent: 2 + - uid: 29055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,46.5 - parent: 40203 - - uid: 43490 + pos: -57.5,16.5 + parent: 2 + - uid: 29056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,44.5 - parent: 40203 - - uid: 43491 + pos: -57.5,18.5 + parent: 2 + - uid: 29057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,43.5 - parent: 40203 - - uid: 43492 + pos: -57.5,17.5 + parent: 2 + - uid: 29058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,42.5 - parent: 40203 - - uid: 43493 + pos: -55.5,18.5 + parent: 2 + - uid: 29059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,35.5 - parent: 40203 - - uid: 43494 + pos: -54.5,18.5 + parent: 2 + - uid: 29060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,46.5 - parent: 40203 - - uid: 43495 + pos: -48.5,-1.5 + parent: 2 + - uid: 29061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,46.5 - parent: 40203 - - uid: 43496 + pos: -56.5,14.5 + parent: 2 + - uid: 29062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,45.5 - parent: 40203 - - uid: 43497 + pos: -44.5,-1.5 + parent: 2 + - uid: 29063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,45.5 - parent: 40203 - - uid: 43498 + pos: -53.5,18.5 + parent: 2 + - uid: 29064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,42.5 - parent: 40203 - - uid: 43499 + pos: -51.5,16.5 + parent: 2 + - uid: 29065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,42.5 - parent: 40203 - - uid: 43500 + pos: -52.5,18.5 + parent: 2 + - uid: 29066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,40.5 - parent: 40203 - - uid: 43501 + pos: -51.5,18.5 + parent: 2 + - uid: 29067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,41.5 - parent: 40203 - - uid: 43502 + pos: -45.5,-1.5 + parent: 2 + - uid: 29068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,43.5 - parent: 40203 - - uid: 43503 + pos: -51.5,17.5 + parent: 2 + - uid: 29069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,45.5 - parent: 40203 - - uid: 43504 + pos: -51.5,15.5 + parent: 2 + - uid: 29070 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,39.5 - parent: 40203 - - uid: 43505 + pos: -51.5,14.5 + parent: 2 + - uid: 29071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,37.5 - parent: 40203 - - uid: 43506 + pos: -27.5,4.5 + parent: 2 + - uid: 29072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,42.5 - parent: 40203 - - uid: 43507 + pos: -2.5,-10.5 + parent: 2 + - uid: 29073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,39.5 - parent: 40203 - - uid: 43508 + pos: -26.5,9.5 + parent: 2 + - uid: 29074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,34.5 - parent: 40203 - - uid: 43509 + pos: -2.5,-11.5 + parent: 2 + - uid: 29075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,36.5 - parent: 40203 - - uid: 43510 + pos: -15.5,-71.5 + parent: 2 + - uid: 29076 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,41.5 - parent: 40203 - - uid: 43511 + pos: 0.5,-67.5 + parent: 2 + - uid: 29077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,44.5 - parent: 40203 - - uid: 43512 + rot: -1.5707963267948966 rad + pos: -16.5,-65.5 + parent: 2 + - uid: 29078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,46.5 - parent: 40203 - - uid: 43513 + rot: -1.5707963267948966 rad + pos: -16.5,-69.5 + parent: 2 + - uid: 29079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,38.5 - parent: 40203 - - uid: 43514 + rot: -1.5707963267948966 rad + pos: -16.5,-67.5 + parent: 2 + - uid: 29080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,35.5 - parent: 40203 - - uid: 43515 + pos: -53.5,14.5 + parent: 2 + - uid: 29081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,38.5 - parent: 40203 - - uid: 43516 + pos: -52.5,14.5 + parent: 2 + - uid: 29082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,35.5 - parent: 40203 - - uid: 43517 + pos: -54.5,14.5 + parent: 2 + - uid: 29083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,45.5 - parent: 40203 - - uid: 43518 + pos: -3.5,-1.5 + parent: 2 + - uid: 29084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,37.5 - parent: 40203 - - uid: 43519 + pos: -7.5,-8.5 + parent: 2 + - uid: 29085 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,40.5 - parent: 40203 - - uid: 43520 + rot: -1.5707963267948966 rad + pos: 6.5,-45.5 + parent: 2 + - uid: 29086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,34.5 - parent: 40203 - - uid: 43521 + pos: 18.5,-14.5 + parent: 2 + - uid: 29087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,34.5 - parent: 40203 - - uid: 43522 + rot: -1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 29088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,44.5 - parent: 40203 - - uid: 43523 + rot: -1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - uid: 29089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,46.5 - parent: 40203 - - uid: 43524 + pos: 17.5,-14.5 + parent: 2 + - uid: 29090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,44.5 - parent: 40203 - - uid: 43525 + pos: -35.5,-6.5 + parent: 2 + - uid: 29091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,33.5 - parent: 40203 - - uid: 43526 + rot: -1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 2 + - uid: 29092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,34.5 - parent: 40203 - - uid: 43527 + pos: -18.5,11.5 + parent: 2 + - uid: 29093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,36.5 - parent: 40203 - - uid: 43528 + pos: -18.5,10.5 + parent: 2 + - uid: 29094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,34.5 - parent: 40203 -- proto: WallReinforced - entities: - - uid: 28446 + pos: -18.5,12.5 + parent: 2 + - uid: 29095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,55.5 + pos: -43.5,16.5 parent: 2 - - uid: 28447 + - uid: 29096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,15.5 + pos: -43.5,15.5 parent: 2 - - uid: 28448 + - uid: 29097 components: - type: Transform - pos: -26.5,17.5 + pos: 12.5,-10.5 parent: 2 - - uid: 28449 + - uid: 29098 components: - type: Transform - pos: -19.5,19.5 + pos: -18.5,-10.5 parent: 2 - - uid: 28450 + - uid: 29099 components: - type: Transform - pos: -28.5,18.5 + pos: -15.5,-35.5 parent: 2 - - uid: 28451 + - uid: 29100 components: - type: Transform - pos: -25.5,17.5 + pos: 19.5,-14.5 parent: 2 - - uid: 28452 + - uid: 29101 components: - type: Transform - pos: -24.5,17.5 + pos: 10.5,-10.5 parent: 2 - - uid: 28453 + - uid: 29102 components: - type: Transform - pos: -24.5,16.5 + pos: -39.5,-10.5 parent: 2 - - uid: 28454 + - uid: 29103 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-7.5 + pos: 19.5,-13.5 parent: 2 - - uid: 28455 + - uid: 29104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-13.5 + pos: 19.5,-12.5 parent: 2 - - uid: 28456 + - uid: 29105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-13.5 + pos: 13.5,-6.5 parent: 2 - - uid: 28457 + - uid: 29106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-13.5 + pos: 19.5,-9.5 parent: 2 - - uid: 28458 + - uid: 29107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-13.5 + pos: 19.5,-7.5 parent: 2 - - uid: 28459 + - uid: 29108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-12.5 + pos: 19.5,-6.5 parent: 2 - - uid: 28460 + - uid: 29109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-10.5 + pos: 19.5,-5.5 parent: 2 - - uid: 28461 + - uid: 29110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-11.5 + pos: 18.5,-6.5 parent: 2 - - uid: 28462 + - uid: 29111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-8.5 + pos: -37.5,13.5 parent: 2 - - uid: 28463 + - uid: 29112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-11.5 + rot: 1.5707963267948966 rad + pos: -31.5,17.5 parent: 2 - - uid: 28464 + - uid: 29113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-13.5 + pos: -43.5,17.5 parent: 2 - - uid: 28465 + - uid: 29114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-12.5 + pos: -39.5,13.5 parent: 2 - - uid: 28466 + - uid: 29115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 91.5,-12.5 + pos: 9.5,-39.5 parent: 2 - - uid: 28467 + - uid: 29116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-10.5 + pos: -18.5,13.5 parent: 2 - - uid: 28468 + - uid: 29117 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-12.5 + pos: -27.5,13.5 parent: 2 - - uid: 28469 + - uid: 29118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-9.5 + pos: -20.5,13.5 parent: 2 - - uid: 28470 + - uid: 29119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-9.5 + pos: -1.5,10.5 parent: 2 - - uid: 28471 + - uid: 29120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-11.5 + pos: -2.5,10.5 parent: 2 - - uid: 28472 + - uid: 29121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-9.5 + pos: -18.5,-1.5 parent: 2 - - uid: 28473 + - uid: 29122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 100.5,-8.5 + pos: -1.5,11.5 parent: 2 - - uid: 28474 + - uid: 29123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-22.5 + pos: -0.5,11.5 parent: 2 - - uid: 28475 + - uid: 29124 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-22.5 + pos: -29.5,-22.5 parent: 2 - - uid: 28476 + - uid: 29125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-22.5 + pos: -5.5,9.5 parent: 2 - - uid: 28477 + - uid: 29126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-42.5 + pos: -2.5,9.5 parent: 2 - - uid: 28478 + - uid: 29127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-22.5 + pos: -3.5,9.5 parent: 2 - - uid: 28479 + - uid: 29128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-22.5 + pos: -4.5,9.5 parent: 2 - - uid: 28480 + - uid: 29129 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,1.5 + rot: -1.5707963267948966 rad + pos: -7.5,-30.5 parent: 2 - - uid: 28481 + - uid: 29130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,6.5 + pos: -5.5,10.5 parent: 2 - - uid: 28482 + - uid: 29131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,0.5 + pos: -18.5,-22.5 parent: 2 - - uid: 28483 + - uid: 29132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,0.5 + pos: -49.5,-1.5 parent: 2 - - uid: 28484 + - uid: 29133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,0.5 + pos: -5.5,13.5 parent: 2 - - uid: 28485 + - uid: 29134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,3.5 + pos: -35.5,-5.5 parent: 2 - - uid: 28486 + - uid: 29135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,2.5 + pos: 0.5,-52.5 parent: 2 - - uid: 28487 + - uid: 29136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-22.5 + rot: -1.5707963267948966 rad + pos: -11.5,-57.5 parent: 2 - - uid: 28488 + - uid: 29137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,0.5 + pos: 1.5,-5.5 parent: 2 - - uid: 28489 + - uid: 29138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,0.5 + rot: -1.5707963267948966 rad + pos: -11.5,-39.5 parent: 2 - - uid: 28490 + - uid: 29139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-3.5 + pos: -18.5,-17.5 parent: 2 - - uid: 28491 + - uid: 29140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-3.5 + pos: -10.5,-3.5 parent: 2 - - uid: 28492 + - uid: 29141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-44.5 + pos: -5.5,14.5 parent: 2 - - uid: 28493 + - uid: 29142 components: - type: Transform - pos: -35.5,15.5 + pos: -49.5,9.5 parent: 2 - - uid: 28494 + - uid: 29143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,23.5 + pos: -51.5,8.5 parent: 2 - - uid: 28495 + - uid: 29144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,-9.5 + pos: -54.5,7.5 parent: 2 - - uid: 28496 + - uid: 29145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-13.5 + pos: -57.5,7.5 parent: 2 - - uid: 28497 + - uid: 29146 components: - type: Transform - pos: -35.5,-18.5 + pos: -49.5,-7.5 parent: 2 - - uid: 28498 + - uid: 29147 components: - type: Transform - pos: -35.5,-19.5 + pos: -40.5,-1.5 parent: 2 - - uid: 28499 + - uid: 29148 components: - type: Transform - pos: -35.5,-17.5 + pos: -42.5,-10.5 parent: 2 - - uid: 28500 + - uid: 29149 components: - type: Transform - pos: -35.5,-16.5 + pos: -52.5,7.5 parent: 2 - - uid: 28501 + - uid: 29150 components: - type: Transform - pos: -28.5,17.5 + pos: -49.5,-6.5 parent: 2 - - uid: 28502 + - uid: 29151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-40.5 + pos: -43.5,-10.5 parent: 2 - - uid: 28503 + - uid: 29152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-13.5 + pos: -57.5,8.5 parent: 2 - - uid: 28504 + - uid: 29153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-13.5 + pos: -56.5,7.5 parent: 2 - - uid: 28505 + - uid: 29154 components: - type: Transform - pos: 10.5,-44.5 + pos: -57.5,13.5 parent: 2 - - uid: 28506 + - uid: 29155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,49.5 + pos: -36.5,-10.5 parent: 2 - - uid: 28507 + - uid: 29156 components: - type: Transform - pos: -9.5,55.5 + pos: -44.5,-10.5 parent: 2 - - uid: 28508 + - uid: 29157 components: - type: Transform - pos: -51.5,-1.5 + pos: -51.5,0.5 parent: 2 - - uid: 28509 + - uid: 29158 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-29.5 + pos: -55.5,7.5 parent: 2 - - uid: 28510 + - uid: 29159 components: - type: Transform - pos: -10.5,55.5 + pos: -0.5,-3.5 parent: 2 - - uid: 28511 + - uid: 29160 components: - type: Transform - pos: -46.5,-1.5 + rot: -1.5707963267948966 rad + pos: -4.5,-69.5 parent: 2 - - uid: 28512 + - uid: 29161 components: - type: Transform - pos: -8.5,55.5 + pos: -0.5,-2.5 parent: 2 - - uid: 28513 + - uid: 29162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,49.5 + pos: -10.5,-71.5 parent: 2 - - uid: 28514 + - uid: 29163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,10.5 + pos: -2.5,-8.5 parent: 2 - - uid: 28515 + - uid: 29164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,10.5 + pos: -49.5,-14.5 parent: 2 - - uid: 28516 + - uid: 29165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-20.5 + pos: -49.5,-8.5 parent: 2 - - uid: 28517 + - uid: 29166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-20.5 + pos: -49.5,-13.5 parent: 2 - - uid: 28518 + - uid: 29167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-20.5 + pos: -49.5,-12.5 parent: 2 - - uid: 28519 + - uid: 29168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-20.5 + pos: -35.5,0.5 parent: 2 - - uid: 28520 + - uid: 29169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,52.5 + pos: -34.5,3.5 parent: 2 - - uid: 28521 + - uid: 29170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,50.5 + pos: -33.5,3.5 parent: 2 - - uid: 28522 + - uid: 29171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,49.5 + pos: -49.5,-11.5 parent: 2 - - uid: 28523 + - uid: 29172 components: - type: Transform - pos: -7.5,55.5 + pos: -49.5,-9.5 parent: 2 - - uid: 28524 + - uid: 29173 components: - type: Transform - pos: -31.5,-3.5 + pos: -49.5,-10.5 parent: 2 - - uid: 28525 + - uid: 29174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,61.5 + rot: -1.5707963267948966 rad + pos: -11.5,-33.5 parent: 2 - - uid: 28526 + - uid: 29175 components: - type: Transform - pos: -31.5,-44.5 + pos: 0.5,-3.5 parent: 2 - - uid: 28527 + - uid: 29176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,63.5 + pos: -31.5,3.5 parent: 2 - - uid: 28528 + - uid: 29177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,63.5 + pos: -32.5,3.5 parent: 2 - - uid: 28529 + - uid: 29178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,60.5 + rot: -1.5707963267948966 rad + pos: -11.5,-34.5 parent: 2 - - uid: 28530 + - uid: 29179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,60.5 + rot: -1.5707963267948966 rad + pos: -11.5,-35.5 parent: 2 - - uid: 28531 + - uid: 29180 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,60.5 + pos: -29.5,3.5 parent: 2 - - uid: 28532 + - uid: 29181 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,60.5 + pos: -7.5,-43.5 parent: 2 - - uid: 28533 + - uid: 29182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,60.5 + pos: -49.5,-4.5 parent: 2 - - uid: 28534 + - uid: 29183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,60.5 + pos: -30.5,3.5 parent: 2 - - uid: 28535 + - uid: 29184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,60.5 + pos: -28.5,9.5 parent: 2 - - uid: 28536 + - uid: 29185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,63.5 + rot: -1.5707963267948966 rad + pos: -11.5,-38.5 parent: 2 - - uid: 28537 + - uid: 29186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,56.5 + pos: -2.5,-5.5 parent: 2 - - uid: 28538 + - uid: 29187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-46.5 + pos: -2.5,-2.5 parent: 2 - - uid: 28539 + - uid: 29188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,63.5 + pos: -2.5,-6.5 parent: 2 - - uid: 28540 + - uid: 29189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,62.5 + pos: -2.5,-7.5 parent: 2 - - uid: 28541 + - uid: 29190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,63.5 + rot: -1.5707963267948966 rad + pos: -11.5,-42.5 parent: 2 - - uid: 28542 + - uid: 29191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,58.5 + pos: -2.5,-13.5 parent: 2 - - uid: 28543 + - uid: 29192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,59.5 + pos: -2.5,-3.5 parent: 2 - - uid: 28544 + - uid: 29193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,63.5 + pos: -49.5,-2.5 parent: 2 - - uid: 28545 + - uid: 29194 components: - type: Transform - pos: -54.5,8.5 + pos: -50.5,-1.5 parent: 2 - - uid: 28546 + - uid: 29195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,60.5 + pos: -50.5,-0.5 parent: 2 - - uid: 28547 + - uid: 29196 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,61.5 + pos: -50.5,8.5 parent: 2 - - uid: 28548 + - uid: 29197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,53.5 + pos: -51.5,9.5 parent: 2 - - uid: 28549 + - uid: 29198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,63.5 + pos: -51.5,7.5 parent: 2 - - uid: 28550 + - uid: 29199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,53.5 + pos: 2.5,-5.5 parent: 2 - - uid: 28551 + - uid: 29200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,59.5 + pos: -7.5,-1.5 parent: 2 - - uid: 28552 + - uid: 29201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,53.5 + pos: -10.5,-2.5 parent: 2 - - uid: 28553 + - uid: 29202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,54.5 + pos: -51.5,-0.5 parent: 2 - - uid: 28554 + - uid: 29203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,55.5 + pos: -29.5,9.5 parent: 2 - - uid: 28555 + - uid: 29204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,63.5 + rot: -1.5707963267948966 rad + pos: -7.5,-47.5 parent: 2 - - uid: 28556 + - uid: 29205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,62.5 + pos: -33.5,9.5 parent: 2 - - uid: 28557 + - uid: 29206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,56.5 + rot: -1.5707963267948966 rad + pos: -7.5,-49.5 parent: 2 - - uid: 28558 + - uid: 29207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,56.5 + rot: -1.5707963267948966 rad + pos: -7.5,-48.5 parent: 2 - - uid: 28559 + - uid: 29208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,56.5 + rot: -1.5707963267948966 rad + pos: -22.5,-64.5 parent: 2 - - uid: 28560 + - uid: 29209 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,56.5 + pos: -35.5,-7.5 parent: 2 - - uid: 28561 + - uid: 29210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,56.5 + pos: -31.5,9.5 parent: 2 - - uid: 28562 + - uid: 29211 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,55.5 + pos: -28.5,3.5 parent: 2 - - uid: 28563 + - uid: 29212 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,63.5 + pos: -34.5,9.5 parent: 2 - - uid: 28564 + - uid: 29213 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,63.5 + rot: -1.5707963267948966 rad + pos: -7.5,-51.5 parent: 2 - - uid: 28565 + - uid: 29214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,60.5 + rot: -1.5707963267948966 rad + pos: -8.5,-69.5 parent: 2 - - uid: 28566 + - uid: 29215 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,53.5 + pos: -30.5,9.5 parent: 2 - - uid: 28567 + - uid: 29216 components: - type: Transform - pos: -26.5,-3.5 + rot: -1.5707963267948966 rad + pos: -7.5,-41.5 parent: 2 - - uid: 28568 + - uid: 29217 components: - type: Transform - pos: -39.5,-0.5 + pos: -8.5,2.5 parent: 2 - - uid: 28569 + - uid: 29218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-10.5 + pos: -8.5,-0.5 parent: 2 - - uid: 28570 + - uid: 29219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,7.5 + rot: -1.5707963267948966 rad + pos: -7.5,-50.5 parent: 2 - - uid: 28571 + - uid: 29220 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,6.5 + pos: -26.5,3.5 parent: 2 - - uid: 28572 + - uid: 29221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,8.5 + pos: -25.5,3.5 parent: 2 - - uid: 28573 + - uid: 29222 components: - type: Transform - pos: -8.5,11.5 + pos: -24.5,3.5 parent: 2 - - uid: 28574 + - uid: 29223 components: - type: Transform - pos: 13.5,11.5 + pos: -32.5,9.5 parent: 2 - - uid: 28575 + - uid: 29224 components: - type: Transform - pos: -9.5,7.5 + rot: -1.5707963267948966 rad + pos: -7.5,-40.5 parent: 2 - - uid: 28576 + - uid: 29225 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-43.5 + pos: -26.5,-8.5 parent: 2 - - uid: 28577 + - uid: 29226 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,3.5 + pos: -20.5,-56.5 parent: 2 - - uid: 28578 + - uid: 29227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-47.5 + pos: -20.5,9.5 parent: 2 - - uid: 28579 + - uid: 29228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 + pos: -31.5,-8.5 parent: 2 - - uid: 28580 + - uid: 29229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-47.5 + pos: -25.5,-60.5 parent: 2 - - uid: 28581 + - uid: 29230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-47.5 + pos: -31.5,-7.5 parent: 2 - - uid: 28582 + - uid: 29231 components: - type: Transform - pos: 8.5,-40.5 + rot: -1.5707963267948966 rad + pos: -24.5,-33.5 parent: 2 - - uid: 28583 + - uid: 29232 components: - type: Transform - pos: 8.5,-44.5 + rot: -1.5707963267948966 rad + pos: -0.5,-53.5 parent: 2 - - uid: 28584 + - uid: 29233 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-37.5 + pos: -19.5,-33.5 parent: 2 - - uid: 28585 + - uid: 29234 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-39.5 + pos: -17.5,-56.5 parent: 2 - - uid: 28586 + - uid: 29235 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-39.5 + pos: -8.5,-67.5 parent: 2 - - uid: 28587 + - uid: 29236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,3.5 + pos: -31.5,-6.5 parent: 2 - - uid: 28588 + - uid: 29237 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-36.5 + pos: -8.5,-68.5 parent: 2 - - uid: 28589 + - uid: 29238 components: - type: Transform - pos: -28.5,-36.5 + pos: 17.5,11.5 parent: 2 - - uid: 28590 + - uid: 29239 components: - type: Transform - pos: -30.5,-36.5 + pos: 18.5,11.5 parent: 2 - - uid: 28591 + - uid: 29240 components: - type: Transform - pos: -27.5,-36.5 + pos: -23.5,2.5 parent: 2 - - uid: 28592 + - uid: 29241 components: - type: Transform - pos: -31.5,-39.5 + pos: -35.5,-1.5 parent: 2 - - uid: 28593 + - uid: 29242 components: - type: Transform - pos: -31.5,-36.5 + pos: -25.5,-5.5 parent: 2 - - uid: 28594 + - uid: 29243 components: - type: Transform - pos: -31.5,-37.5 + pos: -31.5,-1.5 parent: 2 - - uid: 28595 + - uid: 29244 components: - type: Transform - pos: -29.5,-36.5 + pos: -28.5,-5.5 parent: 2 - - uid: 28596 + - uid: 29245 components: - type: Transform - pos: -25.5,-40.5 + pos: -25.5,-0.5 parent: 2 - - uid: 28597 + - uid: 29246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-38.5 + rot: 3.141592653589793 rad + pos: -31.5,-22.5 parent: 2 - - uid: 28598 + - uid: 29247 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,-55.5 + pos: -22.5,-22.5 parent: 2 - - uid: 28599 + - uid: 29248 components: - type: Transform - pos: -25.5,-41.5 + pos: -27.5,-5.5 parent: 2 - - uid: 28600 + - uid: 29249 components: - type: Transform - pos: -25.5,-42.5 + rot: -1.5707963267948966 rad + pos: -9.5,-57.5 parent: 2 - - uid: 28601 + - uid: 29250 components: - type: Transform - pos: -31.5,-41.5 + pos: -26.5,-0.5 parent: 2 - - uid: 28602 + - uid: 29251 components: - type: Transform - pos: -31.5,-40.5 + pos: -31.5,-5.5 parent: 2 - - uid: 28603 + - uid: 29252 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-36.5 + pos: -24.5,-64.5 parent: 2 - - uid: 28604 + - uid: 29253 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-39.5 + pos: -20.5,-60.5 parent: 2 - - uid: 28605 + - uid: 29254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-34.5 + pos: -29.5,-5.5 parent: 2 - - uid: 28606 + - uid: 29255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,3.5 + pos: -26.5,-1.5 parent: 2 - - uid: 28607 + - uid: 29256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,3.5 + pos: -36.5,-5.5 parent: 2 - - uid: 28608 + - uid: 29257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-43.5 + rot: -1.5707963267948966 rad + pos: 3.5,-67.5 parent: 2 - - uid: 28609 + - uid: 29258 components: - type: Transform - pos: -9.5,5.5 + pos: -30.5,-5.5 parent: 2 - - uid: 28610 + - uid: 29259 components: - type: Transform - pos: -9.5,6.5 + pos: -24.5,0.5 parent: 2 - - uid: 28611 + - uid: 29260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -25.5,0.5 parent: 2 - - uid: 28612 + - uid: 29261 components: - type: Transform - pos: -13.5,3.5 + rot: -1.5707963267948966 rad + pos: -23.5,-64.5 parent: 2 - - uid: 28613 + - uid: 29262 components: - type: Transform - pos: 18.5,3.5 + rot: -1.5707963267948966 rad + pos: 3.5,-65.5 parent: 2 - - uid: 28614 + - uid: 29263 components: - type: Transform - pos: -10.5,3.5 + rot: -1.5707963267948966 rad + pos: -20.5,-68.5 parent: 2 - - uid: 28615 + - uid: 29264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-47.5 + pos: -23.5,9.5 parent: 2 - - uid: 28616 + - uid: 29265 components: - type: Transform - pos: 15.5,-11.5 + pos: 16.5,13.5 parent: 2 - - uid: 28617 + - uid: 29266 components: - type: Transform - pos: -14.5,-71.5 + rot: -1.5707963267948966 rad + pos: 9.5,-52.5 parent: 2 - - uid: 28618 + - uid: 29267 components: - type: Transform - pos: -20.5,-53.5 + pos: -2.5,-12.5 parent: 2 - - uid: 28619 + - uid: 29268 components: - type: Transform - pos: -20.5,-54.5 + pos: -19.5,9.5 parent: 2 - - uid: 28620 + - uid: 29269 components: - type: Transform - pos: -3.5,-71.5 + rot: -1.5707963267948966 rad + pos: -20.5,-69.5 parent: 2 - - uid: 28621 + - uid: 29270 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-57.5 + pos: -0.5,-65.5 parent: 2 - - uid: 28622 + - uid: 29271 components: - type: Transform - pos: -26.5,-56.5 + pos: -35.5,-8.5 parent: 2 - - uid: 28623 + - uid: 29272 components: - type: Transform - pos: -25.5,-56.5 + pos: -21.5,9.5 parent: 2 - - uid: 28624 + - uid: 29273 components: - type: Transform - pos: -25.5,-64.5 + pos: -29.5,12.5 parent: 2 - - uid: 28625 + - uid: 29274 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-57.5 + pos: 9.5,-53.5 parent: 2 - - uid: 28626 + - uid: 29275 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-57.5 + pos: -17.5,-38.5 parent: 2 - - uid: 28627 + - uid: 29276 components: - type: Transform - pos: -1.5,-71.5 + pos: 13.5,12.5 parent: 2 - - uid: 28628 + - uid: 29277 components: - type: Transform - pos: 45.5,-46.5 + pos: -31.5,-38.5 parent: 2 - - uid: 28629 + - uid: 29278 components: - type: Transform - pos: 29.5,-40.5 + pos: 16.5,12.5 parent: 2 - - uid: 28630 + - uid: 29279 components: - type: Transform - pos: 38.5,-34.5 + pos: -26.5,-5.5 parent: 2 - - uid: 28631 + - uid: 29280 components: - type: Transform - pos: 36.5,-44.5 + pos: 17.5,12.5 parent: 2 - - uid: 28632 + - uid: 29281 components: - type: Transform - pos: 38.5,-35.5 + rot: 3.141592653589793 rad + pos: -26.5,-22.5 parent: 2 - - uid: 28633 + - uid: 29282 components: - type: Transform - pos: 30.5,-44.5 + pos: 18.5,10.5 parent: 2 - - uid: 28634 + - uid: 29283 components: - type: Transform - pos: 38.5,-36.5 + pos: -23.5,1.5 parent: 2 - - uid: 28635 + - uid: 29284 components: - type: Transform - pos: 28.5,-40.5 + pos: -11.5,-71.5 parent: 2 - - uid: 28636 + - uid: 29285 components: - type: Transform - pos: 45.5,-50.5 + pos: -0.5,-13.5 parent: 2 - - uid: 28637 + - uid: 29286 components: - type: Transform - pos: 26.5,-52.5 + rot: -1.5707963267948966 rad + pos: -20.5,-67.5 parent: 2 - - uid: 28638 + - uid: 29287 components: - type: Transform - pos: 42.5,-46.5 + pos: -35.5,-10.5 parent: 2 - - uid: 28639 + - uid: 29288 components: - type: Transform - pos: 41.5,-44.5 + pos: -35.5,-9.5 parent: 2 - - uid: 28640 + - uid: 29289 components: - type: Transform - pos: 41.5,-45.5 + rot: -1.5707963267948966 rad + pos: -0.5,-67.5 parent: 2 - - uid: 28641 + - uid: 29290 components: - type: Transform - pos: 29.5,-43.5 + rot: -1.5707963267948966 rad + pos: -0.5,-68.5 parent: 2 - - uid: 28642 + - uid: 29291 components: - type: Transform - pos: 24.5,-44.5 + pos: -45.5,-11.5 parent: 2 - - uid: 28643 + - uid: 29292 components: - type: Transform - pos: 25.5,-57.5 + pos: -48.5,-10.5 parent: 2 - - uid: 28644 + - uid: 29293 components: - type: Transform - pos: 26.5,-40.5 + pos: -39.5,-1.5 parent: 2 - - uid: 28645 + - uid: 29294 components: - type: Transform - pos: 29.5,-42.5 + pos: -45.5,-13.5 parent: 2 - - uid: 28646 + - uid: 29295 components: - type: Transform - pos: 25.5,-40.5 + pos: -40.5,-10.5 parent: 2 - - uid: 28647 + - uid: 29296 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 29297 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 29298 + components: + - type: Transform + pos: -41.5,-10.5 + parent: 2 + - uid: 29299 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 29300 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 29301 components: - type: Transform - pos: 35.5,-56.5 + pos: -45.5,-10.5 parent: 2 - - uid: 28648 + - uid: 29302 components: - type: Transform - pos: 39.5,-56.5 + pos: -47.5,-10.5 parent: 2 - - uid: 28649 + - uid: 29303 components: - type: Transform - pos: 41.5,-46.5 + pos: -53.5,7.5 parent: 2 - - uid: 28650 + - uid: 29304 components: - type: Transform - pos: -12.5,-13.5 + pos: -48.5,9.5 parent: 2 - - uid: 28651 + - uid: 29305 components: - type: Transform - pos: 13.5,16.5 + pos: -50.5,9.5 parent: 2 - - uid: 28652 + - uid: 29306 components: - type: Transform - pos: 13.5,17.5 + pos: -46.5,9.5 parent: 2 - - uid: 28653 + - uid: 29307 components: - type: Transform - pos: 13.5,14.5 + pos: -45.5,9.5 parent: 2 - - uid: 28654 + - uid: 29308 components: - type: Transform - pos: 13.5,15.5 + rot: -1.5707963267948966 rad + pos: -4.5,-65.5 parent: 2 - - uid: 28655 + - uid: 29309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 + pos: -31.5,-9.5 parent: 2 - - uid: 28656 + - uid: 29310 components: - type: Transform - pos: 16.5,-2.5 + pos: -31.5,-10.5 parent: 2 - - uid: 28657 + - uid: 29311 components: - type: Transform - pos: 19.5,-3.5 + rot: -1.5707963267948966 rad + pos: -24.5,-56.5 parent: 2 - - uid: 28658 + - uid: 29312 components: - type: Transform - pos: 16.5,-3.5 + pos: -31.5,-11.5 parent: 2 - - uid: 28659 + - uid: 29313 components: - type: Transform - pos: 16.5,-5.5 + rot: -1.5707963267948966 rad + pos: 7.5,-52.5 parent: 2 - - uid: 28660 + - uid: 29314 components: - type: Transform - pos: 16.5,-6.5 + rot: 1.5707963267948966 rad + pos: 2.5,-67.5 parent: 2 - - uid: 28661 + - uid: 29315 components: - type: Transform - pos: 19.5,-11.5 + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 parent: 2 - - uid: 28662 + - uid: 29316 components: - type: Transform - pos: 19.5,-10.5 + pos: 5.5,10.5 parent: 2 - - uid: 28663 + - uid: 29317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-57.5 + pos: -24.5,-60.5 parent: 2 - - uid: 28664 + - uid: 29318 components: - type: Transform - pos: 19.5,-4.5 + rot: -1.5707963267948966 rad + pos: -4.5,-67.5 parent: 2 - - uid: 28665 + - uid: 29319 components: - type: Transform - pos: 19.5,-2.5 + pos: -0.5,-12.5 parent: 2 - - uid: 28666 + - uid: 29320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-51.5 + pos: 0.5,-12.5 parent: 2 - - uid: 28667 + - uid: 29321 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-51.5 + pos: -0.5,-69.5 parent: 2 - - uid: 28668 + - uid: 29322 components: - type: Transform - pos: -14.5,-10.5 + pos: -18.5,-71.5 parent: 2 - - uid: 28669 + - uid: 29323 components: - type: Transform - pos: 15.5,-14.5 + pos: -30.5,-12.5 parent: 2 - - uid: 28670 + - uid: 29324 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-45.5 + pos: 9.5,-55.5 parent: 2 - - uid: 28671 + - uid: 29325 components: - type: Transform - pos: 7.5,-14.5 + pos: -0.5,10.5 parent: 2 - - uid: 28672 + - uid: 29326 components: - type: Transform - pos: 16.5,-14.5 + rot: -1.5707963267948966 rad + pos: 9.5,-54.5 parent: 2 - - uid: 28673 + - uid: 29327 components: - type: Transform - pos: -14.5,-9.5 + rot: 3.141592653589793 rad + pos: -17.5,-55.5 parent: 2 - - uid: 28674 + - uid: 29328 components: - type: Transform - pos: -25.5,-33.5 + pos: 1.5,-12.5 parent: 2 - - uid: 28675 + - uid: 29329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 + pos: -31.5,-12.5 parent: 2 - - uid: 28676 + - uid: 29330 components: - type: Transform - pos: -27.5,3.5 + pos: -18.5,7.5 parent: 2 - - uid: 28677 + - uid: 29331 components: - type: Transform - pos: -14.5,-1.5 + rot: -1.5707963267948966 rad + pos: -11.5,-41.5 parent: 2 - - uid: 28678 + - uid: 29332 components: - type: Transform - pos: -27.5,7.5 + pos: -57.5,9.5 parent: 2 - - uid: 28679 + - uid: 29333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-31.5 + pos: -39.5,9.5 parent: 2 - - uid: 28680 + - uid: 29334 components: - type: Transform - pos: -6.5,-1.5 + pos: -57.5,10.5 parent: 2 - - uid: 28681 + - uid: 29335 components: - type: Transform - pos: -27.5,5.5 + pos: -57.5,11.5 parent: 2 - - uid: 28682 + - uid: 29336 components: - type: Transform - pos: -24.5,9.5 + pos: -57.5,12.5 parent: 2 - - uid: 28683 + - uid: 29337 components: - type: Transform - pos: -8.5,-1.5 + pos: -40.5,9.5 parent: 2 - - uid: 28684 + - uid: 29338 components: - type: Transform - pos: -27.5,6.5 + pos: 7.5,9.5 parent: 2 - - uid: 28685 + - uid: 29339 components: - type: Transform - pos: -39.5,17.5 + pos: 2.5,10.5 parent: 2 - - uid: 28686 + - uid: 29340 components: - type: Transform - pos: -39.5,14.5 + pos: 6.5,10.5 parent: 2 - - uid: 28687 + - uid: 29341 components: - type: Transform - pos: -39.5,15.5 + pos: 7.5,10.5 parent: 2 - - uid: 28688 + - uid: 29342 components: - type: Transform - pos: -39.5,16.5 + pos: 9.5,9.5 parent: 2 - - uid: 28689 + - uid: 29343 components: - type: Transform - pos: -43.5,13.5 + pos: 8.5,9.5 parent: 2 - - uid: 28690 + - uid: 29344 components: - type: Transform - pos: -43.5,14.5 + pos: 13.5,9.5 parent: 2 - - uid: 28691 + - uid: 29345 components: - type: Transform - pos: -27.5,8.5 + pos: 10.5,9.5 parent: 2 - - uid: 28692 + - uid: 29346 components: - type: Transform - pos: -25.5,9.5 + pos: 10.5,10.5 parent: 2 - - uid: 28693 + - uid: 29347 components: - type: Transform - pos: -27.5,9.5 + rot: -1.5707963267948966 rad + pos: -11.5,-52.5 parent: 2 - - uid: 28694 + - uid: 29348 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-48.5 + pos: -11.5,-54.5 parent: 2 - - uid: 28695 + - uid: 29349 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-56.5 + pos: -11.5,-55.5 parent: 2 - - uid: 28696 + - uid: 29350 components: - type: Transform - pos: 10.5,14.5 + pos: 4.5,10.5 parent: 2 - - uid: 28697 + - uid: 29351 components: - type: Transform - pos: -2.5,-4.5 + rot: -1.5707963267948966 rad + pos: -11.5,-51.5 parent: 2 - - uid: 28698 + - uid: 29352 components: - type: Transform - pos: -24.5,10.5 + rot: -1.5707963267948966 rad + pos: -11.5,-40.5 parent: 2 - - uid: 28699 + - uid: 29353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-51.5 + pos: -26.5,-12.5 parent: 2 - - uid: 28700 + - uid: 29354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-47.5 + pos: -14.5,-14.5 parent: 2 - - uid: 28701 + - uid: 29355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-30.5 + pos: -14.5,-13.5 parent: 2 - - uid: 28702 + - uid: 29356 components: - type: Transform - pos: -26.5,-57.5 + pos: -3.5,-13.5 parent: 2 - - uid: 28703 + - uid: 29357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-47.5 + pos: 3.5,10.5 parent: 2 - - uid: 28704 + - uid: 29358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-47.5 + pos: 5.5,11.5 parent: 2 - - uid: 28705 + - uid: 29359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 + pos: 6.5,11.5 parent: 2 - - uid: 28706 + - uid: 29360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-57.5 + pos: -2.5,-14.5 parent: 2 - - uid: 28707 + - uid: 29361 components: - type: Transform - pos: -57.5,14.5 + pos: 10.5,12.5 parent: 2 - - uid: 28708 + - uid: 29362 components: - type: Transform - pos: -57.5,15.5 + pos: 10.5,13.5 parent: 2 - - uid: 28709 + - uid: 29363 components: - type: Transform - pos: -56.5,18.5 + pos: 13.5,13.5 parent: 2 - - uid: 28710 + - uid: 29364 components: - type: Transform - pos: -57.5,16.5 + rot: -1.5707963267948966 rad + pos: -26.5,-43.5 parent: 2 - - uid: 28711 + - uid: 29365 components: - type: Transform - pos: -57.5,18.5 + pos: -13.5,-13.5 parent: 2 - - uid: 28712 + - uid: 29366 components: - type: Transform - pos: -57.5,17.5 + rot: -1.5707963267948966 rad + pos: -25.5,-43.5 parent: 2 - - uid: 28713 + - uid: 29367 components: - type: Transform - pos: -55.5,18.5 + rot: -1.5707963267948966 rad + pos: -23.5,-60.5 parent: 2 - - uid: 28714 + - uid: 29368 components: - type: Transform - pos: -54.5,18.5 + rot: -1.5707963267948966 rad + pos: -7.5,-57.5 parent: 2 - - uid: 28715 + - uid: 29369 components: - type: Transform - pos: -48.5,-1.5 + pos: -0.5,-5.5 parent: 2 - - uid: 28716 + - uid: 29370 components: - type: Transform - pos: -56.5,14.5 + pos: -18.5,-6.5 parent: 2 - - uid: 28717 + - uid: 29371 components: - type: Transform - pos: -44.5,-1.5 + rot: -1.5707963267948966 rad + pos: -11.5,-44.5 parent: 2 - - uid: 28718 + - uid: 29372 components: - type: Transform - pos: -53.5,18.5 + pos: -18.5,-9.5 parent: 2 - - uid: 28719 + - uid: 29373 components: - type: Transform - pos: -51.5,16.5 + rot: -1.5707963267948966 rad + pos: -8.5,-51.5 parent: 2 - - uid: 28720 + - uid: 29374 components: - type: Transform - pos: -52.5,18.5 + rot: -1.5707963267948966 rad + pos: -11.5,-53.5 parent: 2 - - uid: 28721 + - uid: 29375 components: - type: Transform - pos: -51.5,18.5 + pos: -18.5,-7.5 parent: 2 - - uid: 28722 + - uid: 29376 components: - type: Transform - pos: -45.5,-1.5 + pos: -35.5,2.5 parent: 2 - - uid: 28723 + - uid: 29377 components: - type: Transform - pos: -51.5,17.5 + rot: -1.5707963267948966 rad + pos: -11.5,-56.5 parent: 2 - - uid: 28724 + - uid: 29378 components: - type: Transform - pos: -51.5,15.5 + pos: -16.5,-35.5 parent: 2 - - uid: 28725 + - uid: 29379 components: - type: Transform - pos: -51.5,14.5 + rot: -1.5707963267948966 rad + pos: -17.5,-42.5 parent: 2 - - uid: 28726 + - uid: 29380 components: - type: Transform - pos: -27.5,4.5 + pos: -18.5,-8.5 parent: 2 - - uid: 28727 + - uid: 29381 components: - type: Transform - pos: -2.5,-10.5 + pos: -26.5,-9.5 parent: 2 - - uid: 28728 + - uid: 29382 components: - type: Transform - pos: -26.5,9.5 + rot: -1.5707963267948966 rad + pos: -17.5,-39.5 parent: 2 - - uid: 28729 + - uid: 29383 components: - type: Transform - pos: -2.5,-11.5 + rot: -1.5707963267948966 rad + pos: -17.5,-37.5 parent: 2 - - uid: 28730 + - uid: 29384 components: - type: Transform - pos: -15.5,-71.5 + pos: -35.5,-0.5 parent: 2 - - uid: 28731 + - uid: 29385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-67.5 + pos: -35.5,3.5 parent: 2 - - uid: 28732 + - uid: 29386 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-65.5 + pos: -25.5,-35.5 parent: 2 - - uid: 28733 + - uid: 29387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-69.5 + pos: 5.5,-51.5 parent: 2 - - uid: 28734 + - uid: 29388 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-67.5 + pos: 13.5,-48.5 parent: 2 - - uid: 28735 + - uid: 29389 components: - type: Transform - pos: -53.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,-52.5 parent: 2 - - uid: 28736 + - uid: 29390 components: - type: Transform - pos: -52.5,14.5 + rot: -1.5707963267948966 rad + pos: 13.5,-52.5 parent: 2 - - uid: 28737 + - uid: 29391 components: - type: Transform - pos: -54.5,14.5 + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 parent: 2 - - uid: 28738 + - uid: 29392 components: - type: Transform - pos: -3.5,-1.5 + rot: -1.5707963267948966 rad + pos: 13.5,-49.5 parent: 2 - - uid: 28739 + - uid: 29393 components: - type: Transform - pos: -7.5,-8.5 + pos: -21.5,-2.5 parent: 2 - - uid: 28740 + - uid: 29394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-45.5 + pos: -18.5,2.5 parent: 2 - - uid: 28741 + - uid: 29395 components: - type: Transform - pos: 18.5,-14.5 + pos: -34.5,-20.5 parent: 2 - - uid: 28742 + - uid: 29396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-45.5 + pos: -34.5,-19.5 parent: 2 - - uid: 28743 + - uid: 29397 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-46.5 + pos: -17.5,-49.5 parent: 2 - - uid: 28744 + - uid: 29398 components: - type: Transform - pos: 17.5,-14.5 + rot: -1.5707963267948966 rad + pos: -17.5,-50.5 parent: 2 - - uid: 28745 + - uid: 29399 components: - type: Transform - pos: -35.5,-6.5 + rot: -1.5707963267948966 rad + pos: -17.5,-51.5 parent: 2 - - uid: 28746 + - uid: 29400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-43.5 + pos: -17.5,-52.5 parent: 2 - - uid: 28747 + - uid: 29401 components: - type: Transform - pos: -18.5,11.5 + rot: -1.5707963267948966 rad + pos: -13.5,-47.5 parent: 2 - - uid: 28748 + - uid: 29402 components: - type: Transform - pos: -18.5,10.5 + pos: -1.5,-5.5 parent: 2 - - uid: 28749 + - uid: 29403 components: - type: Transform - pos: -18.5,12.5 + pos: -26.5,-60.5 parent: 2 - - uid: 28750 + - uid: 29404 components: - type: Transform - pos: -43.5,16.5 + pos: -26.5,-58.5 parent: 2 - - uid: 28751 + - uid: 29405 components: - type: Transform - pos: -43.5,15.5 + pos: 4.5,-12.5 parent: 2 - - uid: 28752 + - uid: 29406 components: - type: Transform - pos: 12.5,-10.5 + pos: -13.5,-1.5 parent: 2 - - uid: 28753 + - uid: 29407 components: - type: Transform - pos: -18.5,-10.5 + pos: -47.5,13.5 parent: 2 - - uid: 28754 + - uid: 29408 components: - type: Transform - pos: -15.5,-35.5 + pos: -47.5,14.5 parent: 2 - - uid: 28755 + - uid: 29409 components: - type: Transform - pos: 19.5,-14.5 + pos: -46.5,18.5 parent: 2 - - uid: 28756 + - uid: 29410 components: - type: Transform - pos: 10.5,-10.5 + pos: -45.5,18.5 parent: 2 - - uid: 28757 + - uid: 29411 components: - type: Transform - pos: -39.5,-10.5 + pos: -37.5,17.5 parent: 2 - - uid: 28758 + - uid: 29412 components: - type: Transform - pos: 19.5,-13.5 + pos: -37.5,14.5 parent: 2 - - uid: 28759 + - uid: 29413 components: - type: Transform - pos: 19.5,-12.5 + pos: -37.5,15.5 parent: 2 - - uid: 28760 + - uid: 29414 components: - type: Transform - pos: 13.5,-6.5 + pos: -37.5,16.5 parent: 2 - - uid: 28761 + - uid: 29415 components: - type: Transform - pos: 19.5,-9.5 + rot: -1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 - - uid: 28762 + - uid: 29416 components: - type: Transform - pos: 19.5,-7.5 + pos: -47.5,16.5 parent: 2 - - uid: 28763 + - uid: 29417 components: - type: Transform - pos: 19.5,-6.5 + pos: -29.5,10.5 parent: 2 - - uid: 28764 + - uid: 29418 components: - type: Transform - pos: 19.5,-5.5 + pos: -16.5,15.5 parent: 2 - - uid: 28765 + - uid: 29419 components: - type: Transform - pos: 18.5,-6.5 + pos: -47.5,17.5 parent: 2 - - uid: 28766 + - uid: 29420 components: - type: Transform - pos: -37.5,13.5 + pos: -14.5,16.5 parent: 2 - - uid: 28767 + - uid: 29421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,17.5 + pos: -15.5,15.5 parent: 2 - - uid: 28768 + - uid: 29422 components: - type: Transform - pos: -43.5,17.5 + pos: -14.5,10.5 parent: 2 - - uid: 28769 + - uid: 29423 components: - type: Transform - pos: -39.5,13.5 + pos: -16.5,14.5 parent: 2 - - uid: 28770 + - uid: 29424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-39.5 + pos: -27.5,17.5 parent: 2 - - uid: 28771 + - uid: 29425 components: - type: Transform - pos: -18.5,13.5 + pos: -17.5,13.5 parent: 2 - - uid: 28772 + - uid: 29426 components: - type: Transform - pos: -27.5,13.5 + pos: -17.5,14.5 parent: 2 - - uid: 28773 + - uid: 29427 components: - type: Transform - pos: -20.5,13.5 + pos: -47.5,15.5 parent: 2 - - uid: 28774 + - uid: 29428 components: - type: Transform - pos: -1.5,10.5 + rot: -1.5707963267948966 rad + pos: -31.5,-48.5 parent: 2 - - uid: 28775 + - uid: 29429 components: - type: Transform - pos: -2.5,10.5 + rot: -1.5707963267948966 rad + pos: -31.5,-43.5 parent: 2 - - uid: 28776 + - uid: 29430 components: - type: Transform - pos: -18.5,-1.5 + rot: -1.5707963267948966 rad + pos: -35.5,-47.5 parent: 2 - - uid: 28777 + - uid: 29431 components: - type: Transform - pos: -1.5,11.5 + rot: -1.5707963267948966 rad + pos: -35.5,-42.5 parent: 2 - - uid: 28778 + - uid: 29432 components: - type: Transform - pos: -0.5,11.5 + rot: -1.5707963267948966 rad + pos: -35.5,-43.5 parent: 2 - - uid: 28779 + - uid: 29433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-22.5 + rot: -1.5707963267948966 rad + pos: -34.5,-42.5 parent: 2 - - uid: 28780 + - uid: 29434 components: - type: Transform - pos: -5.5,9.5 + rot: -1.5707963267948966 rad + pos: 1.5,-45.5 parent: 2 - - uid: 28781 + - uid: 29435 components: - type: Transform - pos: -2.5,9.5 + rot: -1.5707963267948966 rad + pos: -34.5,-48.5 parent: 2 - - uid: 28782 + - uid: 29436 components: - type: Transform - pos: -3.5,9.5 + rot: -1.5707963267948966 rad + pos: -35.5,-48.5 parent: 2 - - uid: 28783 + - uid: 29437 components: - type: Transform - pos: -4.5,9.5 + rot: -1.5707963267948966 rad + pos: -27.5,-47.5 parent: 2 - - uid: 28784 + - uid: 29438 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-30.5 + pos: -28.5,-47.5 parent: 2 - - uid: 28785 + - uid: 29439 components: - type: Transform - pos: -5.5,10.5 + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 parent: 2 - - uid: 28786 + - uid: 29440 components: - type: Transform - pos: -18.5,-22.5 + rot: -1.5707963267948966 rad + pos: -21.5,-52.5 parent: 2 - - uid: 28787 + - uid: 29441 components: - type: Transform - pos: -49.5,-1.5 + rot: -1.5707963267948966 rad + pos: -24.5,-52.5 parent: 2 - - uid: 28788 + - uid: 29442 components: - type: Transform - pos: -5.5,13.5 + rot: -1.5707963267948966 rad + pos: -23.5,-52.5 parent: 2 - - uid: 28789 + - uid: 29443 components: - type: Transform - pos: -35.5,-5.5 + rot: -1.5707963267948966 rad + pos: -27.5,-43.5 parent: 2 - - uid: 28790 + - uid: 29444 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-52.5 + pos: -27.5,-51.5 parent: 2 - - uid: 28791 + - uid: 29445 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-57.5 + pos: -31.5,-42.5 parent: 2 - - uid: 28792 + - uid: 29446 components: - type: Transform - pos: 1.5,-5.5 + rot: -1.5707963267948966 rad + pos: -19.5,-52.5 parent: 2 - - uid: 28793 + - uid: 29447 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-39.5 + pos: -22.5,-52.5 parent: 2 - - uid: 28794 + - uid: 29448 components: - type: Transform - pos: -18.5,-17.5 + rot: -1.5707963267948966 rad + pos: -20.5,-52.5 parent: 2 - - uid: 28795 + - uid: 29449 components: - type: Transform - pos: -10.5,-3.5 + rot: -1.5707963267948966 rad + pos: -25.5,-52.5 parent: 2 - - uid: 28796 + - uid: 29450 components: - type: Transform - pos: -5.5,14.5 + rot: -1.5707963267948966 rad + pos: -27.5,-50.5 parent: 2 - - uid: 28797 + - uid: 29451 components: - type: Transform - pos: -49.5,9.5 + rot: -1.5707963267948966 rad + pos: -30.5,-47.5 parent: 2 - - uid: 28798 + - uid: 29452 components: - type: Transform - pos: -51.5,8.5 + rot: -1.5707963267948966 rad + pos: -32.5,-42.5 parent: 2 - - uid: 28799 + - uid: 29453 components: - type: Transform - pos: -54.5,7.5 + rot: -1.5707963267948966 rad + pos: -32.5,-48.5 parent: 2 - - uid: 28800 + - uid: 29454 components: - type: Transform - pos: -57.5,7.5 + rot: -1.5707963267948966 rad + pos: -27.5,-52.5 parent: 2 - - uid: 28801 + - uid: 29455 components: - type: Transform - pos: -49.5,-7.5 + rot: -1.5707963267948966 rad + pos: -33.5,-42.5 parent: 2 - - uid: 28802 + - uid: 29456 components: - type: Transform - pos: -40.5,-1.5 + rot: -1.5707963267948966 rad + pos: -33.5,-48.5 parent: 2 - - uid: 28803 + - uid: 29457 components: - type: Transform - pos: -42.5,-10.5 + rot: -1.5707963267948966 rad + pos: -18.5,-52.5 parent: 2 - - uid: 28804 + - uid: 29458 components: - type: Transform - pos: -52.5,7.5 + rot: -1.5707963267948966 rad + pos: -27.5,-48.5 parent: 2 - - uid: 28805 + - uid: 29459 components: - type: Transform - pos: -49.5,-6.5 + rot: -1.5707963267948966 rad + pos: -27.5,-49.5 parent: 2 - - uid: 28806 + - uid: 29460 components: - type: Transform - pos: -43.5,-10.5 + rot: -1.5707963267948966 rad + pos: -30.5,-43.5 parent: 2 - - uid: 28807 + - uid: 29461 components: - type: Transform - pos: -57.5,8.5 + rot: -1.5707963267948966 rad + pos: -4.5,-34.5 parent: 2 - - uid: 28808 + - uid: 29462 components: - type: Transform - pos: -56.5,7.5 + rot: -1.5707963267948966 rad + pos: -3.5,-34.5 parent: 2 - - uid: 28809 + - uid: 29463 components: - type: Transform - pos: -57.5,13.5 + rot: -1.5707963267948966 rad + pos: -6.5,-34.5 parent: 2 - - uid: 28810 + - uid: 29464 components: - type: Transform - pos: -36.5,-10.5 + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 parent: 2 - - uid: 28811 + - uid: 29465 components: - type: Transform - pos: -44.5,-10.5 + rot: -1.5707963267948966 rad + pos: -15.5,-43.5 parent: 2 - - uid: 28812 + - uid: 29466 components: - type: Transform - pos: -51.5,0.5 + rot: -1.5707963267948966 rad + pos: -0.5,-44.5 parent: 2 - - uid: 28813 + - uid: 29467 components: - type: Transform - pos: -55.5,7.5 + rot: -1.5707963267948966 rad + pos: -0.5,-45.5 parent: 2 - - uid: 28814 + - uid: 29468 components: - type: Transform - pos: -0.5,-3.5 + pos: -10.5,-5.5 parent: 2 - - uid: 28815 + - uid: 29469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-69.5 + pos: -11.5,-5.5 parent: 2 - - uid: 28816 + - uid: 29470 components: - type: Transform - pos: -0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -0.5,-43.5 parent: 2 - - uid: 28817 + - uid: 29471 components: - type: Transform - pos: -10.5,-71.5 + rot: -1.5707963267948966 rad + pos: -0.5,-42.5 parent: 2 - - uid: 28818 + - uid: 29472 components: - type: Transform - pos: -2.5,-8.5 + pos: -6.5,-8.5 parent: 2 - - uid: 28819 + - uid: 29473 components: - type: Transform - pos: -49.5,-14.5 + rot: -1.5707963267948966 rad + pos: -17.5,-43.5 parent: 2 - - uid: 28820 + - uid: 29474 components: - type: Transform - pos: -49.5,-8.5 + pos: -23.5,-5.5 parent: 2 - - uid: 28821 + - uid: 29475 components: - type: Transform - pos: -49.5,-13.5 + rot: -1.5707963267948966 rad + pos: -4.5,-57.5 parent: 2 - - uid: 28822 + - uid: 29476 components: - type: Transform - pos: -49.5,-12.5 + pos: -24.5,2.5 parent: 2 - - uid: 28823 + - uid: 29477 components: - type: Transform - pos: -35.5,0.5 + rot: -1.5707963267948966 rad + pos: -2.5,-34.5 parent: 2 - - uid: 28824 + - uid: 29478 components: - type: Transform - pos: -34.5,3.5 + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 parent: 2 - - uid: 28825 + - uid: 29479 components: - type: Transform - pos: -33.5,3.5 + rot: -1.5707963267948966 rad + pos: -5.5,-57.5 parent: 2 - - uid: 28826 + - uid: 29480 components: - type: Transform - pos: -49.5,-11.5 + rot: -1.5707963267948966 rad + pos: -13.5,-43.5 parent: 2 - - uid: 28827 + - uid: 29481 components: - type: Transform - pos: -49.5,-9.5 + rot: -1.5707963267948966 rad + pos: -2.5,-57.5 parent: 2 - - uid: 28828 + - uid: 29482 components: - type: Transform - pos: -49.5,-10.5 + rot: -1.5707963267948966 rad + pos: -1.5,-57.5 parent: 2 - - uid: 28829 + - uid: 29483 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-33.5 + pos: -1.5,-34.5 parent: 2 - - uid: 28830 + - uid: 29484 components: - type: Transform - pos: 0.5,-3.5 + pos: -35.5,-15.5 parent: 2 - - uid: 28831 + - uid: 29485 components: - type: Transform - pos: -31.5,3.5 + pos: -18.5,-4.5 parent: 2 - - uid: 28832 + - uid: 29486 components: - type: Transform - pos: -32.5,3.5 + pos: -18.5,-14.5 parent: 2 - - uid: 28833 + - uid: 29487 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-34.5 + pos: -22.5,-56.5 parent: 2 - - uid: 28834 + - uid: 29488 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-35.5 + pos: -23.5,-56.5 parent: 2 - - uid: 28835 + - uid: 29489 components: - type: Transform - pos: -29.5,3.5 + pos: -18.5,-13.5 parent: 2 - - uid: 28836 + - uid: 29490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 + rot: -1.5707963267948966 rad + pos: -0.5,-34.5 parent: 2 - - uid: 28837 + - uid: 29491 components: - type: Transform - pos: -49.5,-4.5 + pos: -22.5,-3.5 parent: 2 - - uid: 28838 + - uid: 29492 components: - type: Transform - pos: -30.5,3.5 + pos: -34.5,-15.5 parent: 2 - - uid: 28839 + - uid: 29493 components: - type: Transform - pos: -28.5,9.5 + pos: -18.5,-11.5 parent: 2 - - uid: 28840 + - uid: 29494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-38.5 + pos: -34.5,-16.5 parent: 2 - - uid: 28841 + - uid: 29495 components: - type: Transform - pos: -2.5,-5.5 + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 parent: 2 - - uid: 28842 + - uid: 29496 components: - type: Transform - pos: -2.5,-2.5 + pos: -18.5,-2.5 parent: 2 - - uid: 28843 + - uid: 29497 components: - type: Transform - pos: -2.5,-6.5 + pos: -21.5,-3.5 parent: 2 - - uid: 28844 + - uid: 29498 components: - type: Transform - pos: -2.5,-7.5 + pos: -22.5,-4.5 parent: 2 - - uid: 28845 + - uid: 29499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-42.5 + pos: -18.5,-12.5 parent: 2 - - uid: 28846 + - uid: 29500 components: - type: Transform - pos: -2.5,-13.5 + pos: -34.5,-17.5 parent: 2 - - uid: 28847 + - uid: 29501 components: - type: Transform - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: -0.5,-36.5 parent: 2 - - uid: 28848 + - uid: 29502 components: - type: Transform - pos: -49.5,-2.5 + pos: -20.5,-5.5 parent: 2 - - uid: 28849 + - uid: 29503 components: - type: Transform - pos: -50.5,-1.5 + pos: -22.5,-5.5 parent: 2 - - uid: 28850 + - uid: 29504 components: - type: Transform - pos: -50.5,-0.5 + rot: -1.5707963267948966 rad + pos: -3.5,-39.5 parent: 2 - - uid: 28851 + - uid: 29505 components: - type: Transform - pos: -50.5,8.5 + pos: -22.5,-12.5 parent: 2 - - uid: 28852 + - uid: 29506 components: - type: Transform - pos: -51.5,9.5 + pos: -21.5,-12.5 parent: 2 - - uid: 28853 + - uid: 29507 components: - type: Transform - pos: -51.5,7.5 + rot: -1.5707963267948966 rad + pos: 3.5,-52.5 parent: 2 - - uid: 28854 + - uid: 29508 components: - type: Transform - pos: 2.5,-5.5 + pos: -19.5,-12.5 parent: 2 - - uid: 28855 + - uid: 29509 components: - type: Transform - pos: -7.5,-1.5 + pos: -18.5,-5.5 parent: 2 - - uid: 28856 + - uid: 29510 components: - type: Transform - pos: -10.5,-2.5 + pos: -18.5,-3.5 parent: 2 - - uid: 28857 + - uid: 29511 components: - type: Transform - pos: -51.5,-0.5 + pos: -23.5,-4.5 parent: 2 - - uid: 28858 + - uid: 29512 components: - type: Transform - pos: -29.5,9.5 + pos: -20.5,-12.5 parent: 2 - - uid: 28859 + - uid: 29513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-47.5 + pos: -35.5,9.5 parent: 2 - - uid: 28860 + - uid: 29514 components: - type: Transform - pos: -33.5,9.5 + rot: -1.5707963267948966 rad + pos: -29.5,-47.5 parent: 2 - - uid: 28861 + - uid: 29515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-49.5 + pos: -20.5,-2.5 parent: 2 - - uid: 28862 + - uid: 29516 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-48.5 + pos: -24.5,-43.5 parent: 2 - - uid: 28863 + - uid: 29517 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-64.5 + pos: 3.5,-56.5 parent: 2 - - uid: 28864 + - uid: 29518 components: - type: Transform - pos: -35.5,-7.5 + rot: -1.5707963267948966 rad + pos: 5.5,-39.5 parent: 2 - - uid: 28865 + - uid: 29519 components: - type: Transform - pos: -31.5,9.5 + rot: -1.5707963267948966 rad + pos: -26.5,-52.5 parent: 2 - - uid: 28866 + - uid: 29520 components: - type: Transform - pos: -28.5,3.5 + pos: -20.5,-1.5 parent: 2 - - uid: 28867 + - uid: 29521 components: - type: Transform - pos: -34.5,9.5 + pos: 8.5,-10.5 parent: 2 - - uid: 28868 + - uid: 29522 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-51.5 + pos: -17.5,-34.5 parent: 2 - - uid: 28869 + - uid: 29523 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-69.5 + pos: 4.5,-39.5 parent: 2 - - uid: 28870 + - uid: 29524 components: - type: Transform - pos: -30.5,9.5 + pos: 11.5,-10.5 parent: 2 - - uid: 28871 + - uid: 29525 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-41.5 + pos: -17.5,-41.5 parent: 2 - - uid: 28872 + - uid: 29526 components: - type: Transform - pos: -8.5,2.5 + pos: -18.5,-20.5 parent: 2 - - uid: 28873 + - uid: 29527 components: - type: Transform - pos: -8.5,-0.5 + pos: -35.5,1.5 parent: 2 - - uid: 28874 + - uid: 29528 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-50.5 + pos: 3.5,-39.5 parent: 2 - - uid: 28875 + - uid: 29529 components: - type: Transform - pos: -26.5,3.5 + rot: -1.5707963267948966 rad + pos: 3.5,-64.5 parent: 2 - - uid: 28876 + - uid: 29530 components: - type: Transform - pos: -25.5,3.5 + rot: -1.5707963267948966 rad + pos: -17.5,-40.5 parent: 2 - - uid: 28877 + - uid: 29531 components: - type: Transform - pos: -24.5,3.5 + pos: 13.5,10.5 parent: 2 - - uid: 28878 + - uid: 29532 components: - type: Transform - pos: -32.5,9.5 + pos: 9.5,-10.5 parent: 2 - - uid: 28879 + - uid: 29533 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-40.5 + pos: -23.5,-43.5 parent: 2 - - uid: 28880 + - uid: 29534 components: - type: Transform - pos: -26.5,-8.5 + rot: -1.5707963267948966 rad + pos: 2.5,-39.5 parent: 2 - - uid: 28881 + - uid: 29535 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-56.5 + pos: -29.5,-43.5 parent: 2 - - uid: 28882 + - uid: 29536 components: - type: Transform - pos: -20.5,9.5 + pos: -18.5,-19.5 parent: 2 - - uid: 28883 + - uid: 29537 components: - type: Transform - pos: -31.5,-8.5 + pos: -24.5,-5.5 parent: 2 - - uid: 28884 + - uid: 29538 components: - type: Transform - pos: -25.5,-60.5 + pos: 14.5,13.5 parent: 2 - - uid: 28885 + - uid: 29539 components: - type: Transform - pos: -31.5,-7.5 + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 parent: 2 - - uid: 28886 + - uid: 29540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-33.5 + pos: -0.5,14.5 parent: 2 - - uid: 28887 + - uid: 29541 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-53.5 + pos: 8.5,-52.5 parent: 2 - - uid: 28888 + - uid: 29542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-33.5 + pos: -2.5,16.5 parent: 2 - - uid: 28889 + - uid: 29543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-56.5 + pos: 5.5,16.5 parent: 2 - - uid: 28890 + - uid: 29544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-67.5 + pos: -14.5,-7.5 parent: 2 - - uid: 28891 + - uid: 29545 components: - type: Transform - pos: -31.5,-6.5 + pos: -14.5,-2.5 parent: 2 - - uid: 28892 + - uid: 29546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-68.5 + pos: -14.5,-3.5 parent: 2 - - uid: 28893 + - uid: 29547 components: - type: Transform - pos: 17.5,11.5 + pos: -14.5,-4.5 parent: 2 - - uid: 28894 + - uid: 29548 components: - type: Transform - pos: 18.5,11.5 + pos: -14.5,-5.5 parent: 2 - - uid: 28895 + - uid: 29549 components: - type: Transform - pos: -23.5,2.5 + rot: -1.5707963267948966 rad + pos: -1.5,-39.5 parent: 2 - - uid: 28896 + - uid: 29550 components: - type: Transform - pos: -35.5,-1.5 + rot: -1.5707963267948966 rad + pos: -4.5,-68.5 parent: 2 - - uid: 28897 + - uid: 29551 components: - type: Transform - pos: -25.5,-5.5 + pos: -1.5,16.5 parent: 2 - - uid: 28898 + - uid: 29552 components: - type: Transform - pos: -31.5,-1.5 + pos: 3.5,16.5 parent: 2 - - uid: 28899 + - uid: 29553 components: - type: Transform - pos: -28.5,-5.5 + pos: -26.5,-62.5 parent: 2 - - uid: 28900 + - uid: 29554 components: - type: Transform - pos: -25.5,-0.5 + pos: -14.5,-8.5 parent: 2 - - uid: 28901 + - uid: 29555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-22.5 + pos: -0.5,15.5 parent: 2 - - uid: 28902 + - uid: 29556 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-22.5 + pos: -0.5,16.5 parent: 2 - - uid: 28903 + - uid: 29557 components: - type: Transform - pos: -27.5,-5.5 + pos: 4.5,16.5 parent: 2 - - uid: 28904 + - uid: 29558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-57.5 + pos: 6.5,16.5 parent: 2 - - uid: 28905 + - uid: 29559 components: - type: Transform - pos: -26.5,-0.5 + pos: -13.5,-8.5 parent: 2 - - uid: 28906 + - uid: 29560 components: - type: Transform - pos: -31.5,-5.5 + pos: -4.5,15.5 parent: 2 - - uid: 28907 + - uid: 29561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-64.5 + pos: -3.5,15.5 parent: 2 - - uid: 28908 + - uid: 29562 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-60.5 + pos: -0.5,-39.5 parent: 2 - - uid: 28909 + - uid: 29563 components: - type: Transform - pos: -29.5,-5.5 + pos: 7.5,16.5 parent: 2 - - uid: 28910 + - uid: 29564 components: - type: Transform - pos: -26.5,-1.5 + pos: 1.5,16.5 parent: 2 - - uid: 28911 + - uid: 29565 components: - type: Transform - pos: -36.5,-5.5 + pos: 5.5,15.5 parent: 2 - - uid: 28912 + - uid: 29566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-67.5 + pos: 5.5,12.5 parent: 2 - - uid: 28913 + - uid: 29567 components: - type: Transform - pos: -30.5,-5.5 + pos: 9.5,14.5 parent: 2 - - uid: 28914 + - uid: 29568 components: - type: Transform - pos: -24.5,0.5 + pos: -26.5,-59.5 parent: 2 - - uid: 28915 + - uid: 29569 components: - type: Transform - pos: -25.5,0.5 + pos: -5.5,-8.5 parent: 2 - - uid: 28916 + - uid: 29570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-64.5 + pos: -26.5,-61.5 parent: 2 - - uid: 28917 + - uid: 29571 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-65.5 + pos: 0.5,-39.5 parent: 2 - - uid: 28918 + - uid: 29572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-68.5 + pos: 7.5,15.5 parent: 2 - - uid: 28919 + - uid: 29573 components: - type: Transform - pos: -23.5,9.5 + rot: -1.5707963267948966 rad + pos: -20.5,-64.5 parent: 2 - - uid: 28920 + - uid: 29574 components: - type: Transform - pos: 16.5,13.5 + pos: 0.5,16.5 parent: 2 - - uid: 28921 + - uid: 29575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-52.5 + pos: 5.5,14.5 parent: 2 - - uid: 28922 + - uid: 29576 components: - type: Transform - pos: -2.5,-12.5 + rot: -1.5707963267948966 rad + pos: 9.5,-48.5 parent: 2 - - uid: 28923 + - uid: 29577 components: - type: Transform - pos: -19.5,9.5 + pos: 8.5,15.5 parent: 2 - - uid: 28924 + - uid: 29578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-69.5 + pos: -42.5,-5.5 parent: 2 - - uid: 28925 + - uid: 29579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-65.5 + pos: -40.5,-5.5 parent: 2 - - uid: 28926 + - uid: 29580 components: - type: Transform - pos: -35.5,-8.5 + pos: -9.5,-8.5 parent: 2 - - uid: 28927 + - uid: 29581 components: - type: Transform - pos: -21.5,9.5 + pos: -0.5,12.5 parent: 2 - - uid: 28928 + - uid: 29582 components: - type: Transform - pos: -29.5,12.5 + pos: 2.5,16.5 parent: 2 - - uid: 28929 + - uid: 29583 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-53.5 + pos: -8.5,-65.5 parent: 2 - - uid: 28930 + - uid: 29584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-38.5 + pos: -12.5,-8.5 parent: 2 - - uid: 28931 + - uid: 29585 components: - type: Transform - pos: 13.5,12.5 + pos: -41.5,-5.5 parent: 2 - - uid: 28932 + - uid: 29586 components: - type: Transform - pos: -31.5,-38.5 + pos: -11.5,-8.5 parent: 2 - - uid: 28933 + - uid: 29587 components: - type: Transform - pos: 16.5,12.5 + pos: 9.5,15.5 parent: 2 - - uid: 28934 + - uid: 29588 components: - type: Transform - pos: -26.5,-5.5 + pos: -47.5,-5.5 parent: 2 - - uid: 28935 + - uid: 29589 components: - type: Transform - pos: 17.5,12.5 + rot: -1.5707963267948966 rad + pos: 6.5,-52.5 parent: 2 - - uid: 28936 + - uid: 29590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-22.5 + pos: -19.5,-5.5 parent: 2 - - uid: 28937 + - uid: 29591 components: - type: Transform - pos: 18.5,10.5 + rot: -1.5707963267948966 rad + pos: 5.5,-52.5 parent: 2 - - uid: 28938 + - uid: 29592 components: - type: Transform - pos: -23.5,1.5 + rot: -1.5707963267948966 rad + pos: -6.5,-39.5 parent: 2 - - uid: 28939 + - uid: 29593 components: - type: Transform - pos: -11.5,-71.5 + pos: -8.5,-8.5 parent: 2 - - uid: 28940 + - uid: 29594 components: - type: Transform - pos: -0.5,-13.5 + rot: 3.141592653589793 rad + pos: -7.5,-42.5 parent: 2 - - uid: 28941 + - uid: 29595 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-67.5 + pos: -11.5,-47.5 parent: 2 - - uid: 28942 + - uid: 29596 components: - type: Transform - pos: -35.5,-10.5 + pos: 0.5,-5.5 parent: 2 - - uid: 28943 + - uid: 29597 components: - type: Transform - pos: -35.5,-9.5 + rot: -1.5707963267948966 rad + pos: -11.5,-50.5 parent: 2 - - uid: 28944 + - uid: 29598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-67.5 + pos: -11.5,-49.5 parent: 2 - - uid: 28945 + - uid: 29599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-68.5 + pos: -11.5,-48.5 parent: 2 - - uid: 28946 + - uid: 29600 components: - type: Transform - pos: -45.5,-11.5 + pos: -26.5,-7.5 parent: 2 - - uid: 28947 + - uid: 29601 components: - type: Transform - pos: -48.5,-10.5 + rot: -1.5707963267948966 rad + pos: 3.5,-53.5 parent: 2 - - uid: 28948 + - uid: 29602 components: - type: Transform - pos: -39.5,-1.5 + rot: -1.5707963267948966 rad + pos: 2.5,-52.5 parent: 2 - - uid: 28949 + - uid: 29603 components: - type: Transform - pos: -45.5,-13.5 + rot: -1.5707963267948966 rad + pos: 1.5,-52.5 parent: 2 - - uid: 28950 + - uid: 29604 components: - type: Transform - pos: -40.5,-10.5 + rot: -1.5707963267948966 rad + pos: -7.5,-34.5 parent: 2 - - uid: 28951 + - uid: 29605 components: - type: Transform - pos: -45.5,-12.5 + pos: -28.5,-12.5 parent: 2 - - uid: 28952 + - uid: 29606 components: - type: Transform - pos: -45.5,-14.5 + pos: -4.5,14.5 parent: 2 - - uid: 28953 + - uid: 29607 components: - type: Transform - pos: -41.5,-10.5 + rot: -1.5707963267948966 rad + pos: -0.5,-52.5 parent: 2 - - uid: 28954 + - uid: 29608 components: - type: Transform - pos: -41.5,-12.5 + rot: -1.5707963267948966 rad + pos: -7.5,-39.5 parent: 2 - - uid: 28955 + - uid: 29609 components: - type: Transform - pos: -41.5,-11.5 + pos: 1.5,10.5 parent: 2 - - uid: 28956 + - uid: 29610 components: - type: Transform - pos: -45.5,-10.5 + rot: -1.5707963267948966 rad + pos: -22.5,-60.5 parent: 2 - - uid: 28957 + - uid: 29611 components: - type: Transform - pos: -47.5,-10.5 + pos: 0.5,10.5 parent: 2 - - uid: 28958 + - uid: 29612 components: - type: Transform - pos: -53.5,7.5 + pos: -5.5,12.5 parent: 2 - - uid: 28959 + - uid: 29613 components: - type: Transform - pos: -48.5,9.5 + pos: -26.5,-64.5 parent: 2 - - uid: 28960 + - uid: 29614 components: - type: Transform - pos: -50.5,9.5 + pos: -19.5,13.5 parent: 2 - - uid: 28961 + - uid: 29615 components: - type: Transform - pos: -46.5,9.5 + pos: -24.5,12.5 parent: 2 - - uid: 28962 + - uid: 29616 components: - type: Transform - pos: -45.5,9.5 + rot: -1.5707963267948966 rad + pos: 11.5,-48.5 parent: 2 - - uid: 28963 + - uid: 29617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-65.5 + pos: -50.5,18.5 parent: 2 - - uid: 28964 + - uid: 29618 components: - type: Transform - pos: -31.5,-9.5 + pos: -48.5,18.5 parent: 2 - - uid: 28965 + - uid: 29619 components: - type: Transform - pos: -31.5,-10.5 + pos: -49.5,18.5 parent: 2 - - uid: 28966 + - uid: 29620 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-56.5 + pos: 9.5,-45.5 parent: 2 - - uid: 28967 + - uid: 29621 components: - type: Transform - pos: -31.5,-11.5 + pos: -39.5,18.5 parent: 2 - - uid: 28968 + - uid: 29622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-52.5 + pos: -51.5,13.5 parent: 2 - - uid: 28969 + - uid: 29623 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-67.5 + pos: -41.5,18.5 parent: 2 - - uid: 28970 + - uid: 29624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-56.5 + pos: -42.5,18.5 parent: 2 - - uid: 28971 + - uid: 29625 components: - type: Transform - pos: 5.5,10.5 + pos: -40.5,18.5 parent: 2 - - uid: 28972 + - uid: 29626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-60.5 + pos: 15.5,-1.5 parent: 2 - - uid: 28973 + - uid: 29627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-67.5 + pos: -5.5,3.5 parent: 2 - - uid: 28974 + - uid: 29628 components: - type: Transform - pos: -0.5,-12.5 + rot: -1.5707963267948966 rad + pos: -4.5,4.5 parent: 2 - - uid: 28975 + - uid: 29629 components: - type: Transform - pos: 0.5,-12.5 + pos: -4.5,3.5 parent: 2 - - uid: 28976 + - uid: 29630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-69.5 + pos: 12.5,-1.5 parent: 2 - - uid: 28977 + - uid: 29631 components: - type: Transform - pos: -18.5,-71.5 + pos: 11.5,-1.5 parent: 2 - - uid: 28978 + - uid: 29632 components: - type: Transform - pos: -30.5,-12.5 + pos: 9.5,-1.5 parent: 2 - - uid: 28979 + - uid: 29633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-55.5 + pos: 8.5,-1.5 parent: 2 - - uid: 28980 + - uid: 29634 components: - type: Transform - pos: -0.5,10.5 + pos: 7.5,-1.5 parent: 2 - - uid: 28981 + - uid: 29635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-54.5 + pos: 7.5,-2.5 parent: 2 - - uid: 28982 + - uid: 29636 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-55.5 + pos: 5.5,-2.5 parent: 2 - - uid: 28983 + - uid: 29637 components: - type: Transform - pos: 1.5,-12.5 + pos: 5.5,-5.5 parent: 2 - - uid: 28984 + - uid: 29638 components: - type: Transform - pos: -31.5,-12.5 + rot: -1.5707963267948966 rad + pos: 0.5,-45.5 parent: 2 - - uid: 28985 + - uid: 29639 components: - type: Transform - pos: -18.5,7.5 + pos: -49.5,-5.5 parent: 2 - - uid: 28986 + - uid: 29640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-41.5 + pos: -45.5,-15.5 parent: 2 - - uid: 28987 + - uid: 29641 components: - type: Transform - pos: -57.5,9.5 + rot: -1.5707963267948966 rad + pos: -0.5,-38.5 parent: 2 - - uid: 28988 + - uid: 29642 components: - type: Transform - pos: -39.5,9.5 + rot: -1.5707963267948966 rad + pos: 9.5,-44.5 parent: 2 - - uid: 28989 + - uid: 29643 components: - type: Transform - pos: -57.5,10.5 + rot: -1.5707963267948966 rad + pos: -0.5,-51.5 parent: 2 - - uid: 28990 + - uid: 29644 components: - type: Transform - pos: -57.5,11.5 + pos: 14.5,3.5 parent: 2 - - uid: 28991 + - uid: 29645 components: - type: Transform - pos: -57.5,12.5 + pos: -8.5,3.5 parent: 2 - - uid: 28992 + - uid: 29646 components: - type: Transform - pos: -40.5,9.5 + pos: 13.5,-0.5 parent: 2 - - uid: 28993 + - uid: 29647 components: - type: Transform - pos: 7.5,9.5 + pos: 13.5,-1.5 parent: 2 - - uid: 28994 + - uid: 29648 components: - type: Transform - pos: 2.5,10.5 + pos: -10.5,-7.5 parent: 2 - - uid: 28995 + - uid: 29649 components: - type: Transform - pos: 6.5,10.5 + pos: -13.5,-5.5 parent: 2 - - uid: 28996 + - uid: 29650 components: - type: Transform - pos: 7.5,10.5 + pos: 14.5,-1.5 parent: 2 - - uid: 28997 + - uid: 29651 components: - type: Transform - pos: 9.5,9.5 + pos: -7.5,3.5 parent: 2 - - uid: 28998 + - uid: 29652 components: - type: Transform - pos: 8.5,9.5 + pos: 14.5,7.5 parent: 2 - - uid: 28999 + - uid: 29653 components: - type: Transform - pos: 13.5,9.5 + rot: -1.5707963267948966 rad + pos: 9.5,4.5 parent: 2 - - uid: 29000 + - uid: 29654 components: - type: Transform - pos: 10.5,9.5 + pos: 9.5,3.5 parent: 2 - - uid: 29001 + - uid: 29655 components: - type: Transform - pos: 10.5,10.5 + pos: 10.5,3.5 parent: 2 - - uid: 29002 + - uid: 29656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-52.5 + pos: 15.5,3.5 parent: 2 - - uid: 29003 + - uid: 29657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-54.5 + pos: 12.5,3.5 parent: 2 - - uid: 29004 + - uid: 29658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-55.5 + pos: 13.5,3.5 parent: 2 - - uid: 29005 + - uid: 29659 components: - type: Transform - pos: 4.5,10.5 + pos: 13.5,2.5 parent: 2 - - uid: 29006 + - uid: 29660 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-51.5 + pos: -1.5,-51.5 parent: 2 - - uid: 29007 + - uid: 29661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-40.5 + pos: -12.5,-5.5 parent: 2 - - uid: 29008 + - uid: 29662 components: - type: Transform - pos: -26.5,-12.5 + pos: 4.5,-5.5 parent: 2 - - uid: 29009 + - uid: 29663 components: - type: Transform - pos: -14.5,-14.5 + pos: 3.5,-5.5 parent: 2 - - uid: 29010 + - uid: 29664 components: - type: Transform - pos: -14.5,-13.5 + pos: 14.5,4.5 parent: 2 - - uid: 29011 + - uid: 29665 components: - type: Transform - pos: -3.5,-13.5 + pos: -46.5,-15.5 parent: 2 - - uid: 29012 + - uid: 29666 components: - type: Transform - pos: 3.5,10.5 + rot: 1.5707963267948966 rad + pos: -40.5,-17.5 parent: 2 - - uid: 29013 + - uid: 29667 components: - type: Transform - pos: 5.5,11.5 + pos: 4.5,-3.5 parent: 2 - - uid: 29014 + - uid: 29668 components: - type: Transform - pos: 6.5,11.5 + rot: 1.5707963267948966 rad + pos: -40.5,-16.5 parent: 2 - - uid: 29015 + - uid: 29669 components: - type: Transform - pos: -2.5,-14.5 + pos: -47.5,-15.5 parent: 2 - - uid: 29016 + - uid: 29670 components: - type: Transform - pos: 10.5,12.5 + pos: 6.5,-5.5 parent: 2 - - uid: 29017 + - uid: 29671 components: - type: Transform - pos: 10.5,13.5 + pos: 5.5,-3.5 parent: 2 - - uid: 29018 + - uid: 29672 components: - type: Transform - pos: 13.5,13.5 + pos: 5.5,-7.5 parent: 2 - - uid: 29019 + - uid: 29673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-43.5 + pos: 5.5,-8.5 parent: 2 - - uid: 29020 + - uid: 29674 components: - type: Transform - pos: -13.5,-13.5 + pos: 5.5,-9.5 parent: 2 - - uid: 29021 + - uid: 29675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-43.5 + pos: -41.5,-15.5 parent: 2 - - uid: 29022 + - uid: 29676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-60.5 + pos: -48.5,-15.5 parent: 2 - - uid: 29023 + - uid: 29677 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-57.5 + pos: -49.5,-15.5 parent: 2 - - uid: 29024 + - uid: 29678 components: - type: Transform - pos: -0.5,-5.5 + pos: -14.5,-12.5 parent: 2 - - uid: 29025 + - uid: 29679 components: - type: Transform - pos: -18.5,-6.5 + pos: -26.5,-6.5 parent: 2 - - uid: 29026 + - uid: 29680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-44.5 + pos: -24.5,-12.5 parent: 2 - - uid: 29027 + - uid: 29681 components: - type: Transform - pos: -18.5,-9.5 + pos: -25.5,-12.5 parent: 2 - - uid: 29028 + - uid: 29682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-51.5 + pos: -0.5,-37.5 parent: 2 - - uid: 29029 + - uid: 29683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-53.5 + pos: 7.5,-3.5 parent: 2 - - uid: 29030 + - uid: 29684 components: - type: Transform - pos: -18.5,-7.5 + pos: 7.5,-4.5 parent: 2 - - uid: 29031 + - uid: 29685 components: - type: Transform - pos: -35.5,2.5 + pos: 7.5,-5.5 parent: 2 - - uid: 29032 + - uid: 29686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-56.5 + pos: 7.5,-6.5 parent: 2 - - uid: 29033 + - uid: 29687 components: - type: Transform - pos: -16.5,-35.5 + pos: 7.5,-7.5 parent: 2 - - uid: 29034 + - uid: 29688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-42.5 + pos: 7.5,-8.5 parent: 2 - - uid: 29035 + - uid: 29689 components: - type: Transform - pos: -18.5,-8.5 + pos: 7.5,-9.5 parent: 2 - - uid: 29036 + - uid: 29690 components: - type: Transform - pos: -26.5,-9.5 + pos: 7.5,-10.5 parent: 2 - - uid: 29037 + - uid: 29691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-39.5 + pos: 7.5,-11.5 parent: 2 - - uid: 29038 + - uid: 29692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-37.5 + pos: 5.5,-12.5 parent: 2 - - uid: 29039 + - uid: 29693 components: - type: Transform - pos: -35.5,-0.5 + rot: -1.5707963267948966 rad + pos: 5.5,-45.5 parent: 2 - - uid: 29040 + - uid: 29694 components: - type: Transform - pos: -35.5,3.5 + pos: 4.5,-7.5 parent: 2 - - uid: 29041 + - uid: 29695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-35.5 + pos: 5.5,-10.5 parent: 2 - - uid: 29042 + - uid: 29696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-51.5 + pos: 5.5,-11.5 parent: 2 - - uid: 29043 + - uid: 29697 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-48.5 + pos: -4.5,-39.5 parent: 2 - - uid: 29044 + - uid: 29698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 + pos: -10.5,-1.5 parent: 2 - - uid: 29045 + - uid: 29699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-52.5 + pos: -2.5,-1.5 parent: 2 - - uid: 29046 + - uid: 29700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-52.5 + pos: -26.5,-63.5 parent: 2 - - uid: 29047 + - uid: 29701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-49.5 + pos: -23.5,-12.5 parent: 2 - - uid: 29048 + - uid: 29702 components: - type: Transform - pos: -21.5,-2.5 + pos: -14.5,-11.5 parent: 2 - - uid: 29049 + - uid: 29703 components: - type: Transform - pos: -18.5,2.5 + pos: -3.5,-8.5 parent: 2 - - uid: 29050 + - uid: 29704 components: - type: Transform - pos: -34.5,-20.5 + rot: -1.5707963267948966 rad + pos: -2.5,-39.5 parent: 2 - - uid: 29051 + - uid: 29705 components: - type: Transform - pos: -34.5,-19.5 + pos: 7.5,-12.5 parent: 2 - - uid: 29052 + - uid: 29706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-49.5 + pos: 7.5,-13.5 parent: 2 - - uid: 29053 + - uid: 29707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-50.5 + pos: 15.5,-6.5 parent: 2 - - uid: 29054 + - uid: 29708 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-51.5 + pos: 14.5,-7.5 parent: 2 - - uid: 29055 + - uid: 29709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-52.5 + pos: 14.5,-10.5 parent: 2 - - uid: 29056 + - uid: 29710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-47.5 + pos: 13.5,-13.5 parent: 2 - - uid: 29057 + - uid: 29711 components: - type: Transform - pos: -1.5,-5.5 + rot: -1.5707963267948966 rad + pos: -0.5,-40.5 parent: 2 - - uid: 29058 + - uid: 29712 components: - type: Transform - pos: -26.5,-60.5 + pos: 9.5,-14.5 parent: 2 - - uid: 29059 + - uid: 29713 components: - type: Transform - pos: -26.5,-58.5 + pos: 14.5,-14.5 parent: 2 - - uid: 29060 + - uid: 29714 components: - type: Transform - pos: 4.5,-12.5 + pos: 13.5,-14.5 parent: 2 - - uid: 29061 + - uid: 29715 components: - type: Transform - pos: -13.5,-1.5 + pos: 15.5,-10.5 parent: 2 - - uid: 29062 + - uid: 29716 components: - type: Transform - pos: -47.5,13.5 + pos: 6.5,-13.5 parent: 2 - - uid: 29063 + - uid: 29717 components: - type: Transform - pos: -47.5,14.5 + pos: 5.5,-13.5 parent: 2 - - uid: 29064 + - uid: 29718 components: - type: Transform - pos: -46.5,18.5 + pos: 3.5,-12.5 parent: 2 - - uid: 29065 + - uid: 29719 components: - type: Transform - pos: -45.5,18.5 + rot: -1.5707963267948966 rad + pos: 9.5,-47.5 parent: 2 - - uid: 29066 + - uid: 29720 components: - type: Transform - pos: -37.5,17.5 + rot: -1.5707963267948966 rad + pos: 4.5,-45.5 parent: 2 - - uid: 29067 + - uid: 29721 components: - type: Transform - pos: -37.5,14.5 + pos: -10.5,-8.5 parent: 2 - - uid: 29068 + - uid: 29722 components: - type: Transform - pos: -37.5,15.5 + pos: 14.5,-6.5 parent: 2 - - uid: 29069 + - uid: 29723 components: - type: Transform - pos: -37.5,16.5 + pos: 14.5,-9.5 parent: 2 - - uid: 29070 + - uid: 29724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-48.5 + pos: 13.5,-10.5 parent: 2 - - uid: 29071 + - uid: 29725 components: - type: Transform - pos: -47.5,16.5 + pos: 13.5,-12.5 parent: 2 - - uid: 29072 + - uid: 29726 components: - type: Transform - pos: -29.5,10.5 + pos: 16.5,-4.5 parent: 2 - - uid: 29073 + - uid: 29727 components: - type: Transform - pos: -16.5,15.5 + pos: -10.5,-6.5 parent: 2 - - uid: 29074 + - uid: 29728 components: - type: Transform - pos: -47.5,17.5 + rot: -1.5707963267948966 rad + pos: -2.5,-51.5 parent: 2 - - uid: 29075 + - uid: 29729 components: - type: Transform - pos: -14.5,16.5 + rot: -1.5707963267948966 rad + pos: -4.5,-51.5 parent: 2 - - uid: 29076 + - uid: 29730 components: - type: Transform - pos: -15.5,15.5 + pos: 14.5,8.5 parent: 2 - - uid: 29077 + - uid: 29731 components: - type: Transform - pos: -14.5,10.5 + pos: -9.5,3.5 parent: 2 - - uid: 29078 + - uid: 29732 components: - type: Transform - pos: -16.5,14.5 + pos: -9.5,4.5 parent: 2 - - uid: 29079 + - uid: 29733 components: - type: Transform - pos: -27.5,17.5 + pos: -9.5,8.5 parent: 2 - - uid: 29080 + - uid: 29734 components: - type: Transform - pos: -17.5,13.5 + pos: -14.5,2.5 parent: 2 - - uid: 29081 + - uid: 29735 components: - type: Transform - pos: -17.5,14.5 + pos: 14.5,9.5 parent: 2 - - uid: 29082 + - uid: 29736 components: - type: Transform - pos: -47.5,15.5 + pos: -9.5,-1.5 parent: 2 - - uid: 29083 + - uid: 29737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-48.5 + pos: -11.5,-1.5 parent: 2 - - uid: 29084 + - uid: 29738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-43.5 + pos: -4.5,-1.5 parent: 2 - - uid: 29085 + - uid: 29739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-47.5 + pos: 16.5,-1.5 parent: 2 - - uid: 29086 + - uid: 29740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-42.5 + pos: 17.5,-1.5 parent: 2 - - uid: 29087 + - uid: 29741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-43.5 + pos: 18.5,-1.5 parent: 2 - - uid: 29088 + - uid: 29742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-42.5 + pos: 19.5,-1.5 parent: 2 - - uid: 29089 + - uid: 29743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-45.5 + pos: 19.5,3.5 parent: 2 - - uid: 29090 + - uid: 29744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-48.5 + pos: 19.5,8.5 parent: 2 - - uid: 29091 + - uid: 29745 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-48.5 + pos: -20.5,-33.5 parent: 2 - - uid: 29092 + - uid: 29746 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-47.5 + pos: -21.5,-33.5 parent: 2 - - uid: 29093 + - uid: 29747 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-47.5 + pos: -17.5,-33.5 parent: 2 - - uid: 29094 + - uid: 29748 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-47.5 + pos: -18.5,-33.5 parent: 2 - - uid: 29095 + - uid: 29749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-52.5 + pos: -24.5,1.5 parent: 2 - - uid: 29096 + - uid: 29750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-52.5 + pos: -26.5,-36.5 parent: 2 - - uid: 29097 + - uid: 29751 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-52.5 + pos: -23.5,-33.5 parent: 2 - - uid: 29098 + - uid: 29752 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-43.5 + pos: -12.5,-68.5 parent: 2 - - uid: 29099 + - uid: 29753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-51.5 + pos: -12.5,-67.5 parent: 2 - - uid: 29100 + - uid: 29754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-42.5 + pos: -8.5,12.5 parent: 2 - - uid: 29101 + - uid: 29755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-52.5 + pos: -8.5,13.5 parent: 2 - - uid: 29102 + - uid: 29756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-52.5 + pos: -8.5,10.5 parent: 2 - - uid: 29103 + - uid: 29757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-52.5 + pos: -9.5,13.5 parent: 2 - - uid: 29104 + - uid: 29758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-52.5 + pos: -8.5,9.5 parent: 2 - - uid: 29105 + - uid: 29759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-50.5 + pos: -9.5,9.5 parent: 2 - - uid: 29106 + - uid: 29760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-47.5 + pos: -0.5,-11.5 parent: 2 - - uid: 29107 + - uid: 29761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-42.5 + pos: -17.5,-71.5 parent: 2 - - uid: 29108 + - uid: 29762 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-48.5 + pos: -12.5,-65.5 parent: 2 - - uid: 29109 + - uid: 29763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-52.5 + pos: -10.5,13.5 parent: 2 - - uid: 29110 + - uid: 29764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-42.5 + pos: -11.5,13.5 parent: 2 - - uid: 29111 + - uid: 29765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-48.5 + pos: -11.5,12.5 parent: 2 - - uid: 29112 + - uid: 29766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-52.5 + pos: -12.5,12.5 parent: 2 - - uid: 29113 + - uid: 29767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-48.5 + pos: -39.5,-5.5 parent: 2 - - uid: 29114 + - uid: 29768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-49.5 + pos: -14.5,8.5 parent: 2 - - uid: 29115 + - uid: 29769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-43.5 + pos: -14.5,3.5 parent: 2 - - uid: 29116 + - uid: 29770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-34.5 + pos: -12.5,-1.5 parent: 2 - - uid: 29117 + - uid: 29771 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-34.5 + pos: -3.5,-51.5 parent: 2 - - uid: 29118 + - uid: 29772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-34.5 + pos: -18.5,-18.5 parent: 2 - - uid: 29119 + - uid: 29773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-43.5 + pos: -48.5,-5.5 parent: 2 - - uid: 29120 + - uid: 29774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-43.5 + pos: -15.5,17.5 parent: 2 - - uid: 29121 + - uid: 29775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-44.5 + pos: -1.5,-13.5 parent: 2 - - uid: 29122 + - uid: 29776 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-45.5 + pos: -12.5,-69.5 parent: 2 - - uid: 29123 + - uid: 29777 components: - type: Transform - pos: -10.5,-5.5 + pos: 0.5,-7.5 parent: 2 - - uid: 29124 + - uid: 29778 components: - type: Transform - pos: -11.5,-5.5 + rot: -1.5707963267948966 rad + pos: -22.5,-33.5 parent: 2 - - uid: 29125 + - uid: 29779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-43.5 + pos: -35.5,13.5 parent: 2 - - uid: 29126 + - uid: 29780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-42.5 + pos: -32.5,13.5 parent: 2 - - uid: 29127 + - uid: 29781 components: - type: Transform - pos: -6.5,-8.5 + pos: -18.5,3.5 parent: 2 - - uid: 29128 + - uid: 29782 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-43.5 + pos: -20.5,-65.5 parent: 2 - - uid: 29129 + - uid: 29783 components: - type: Transform - pos: -23.5,-5.5 + pos: -0.5,-10.5 parent: 2 - - uid: 29130 + - uid: 29784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-57.5 + pos: -18.5,4.5 parent: 2 - - uid: 29131 + - uid: 29785 components: - type: Transform - pos: -24.5,2.5 + rot: -1.5707963267948966 rad + pos: -16.5,-68.5 parent: 2 - - uid: 29132 + - uid: 29786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-34.5 + pos: -2.5,-9.5 parent: 2 - - uid: 29133 + - uid: 29787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-52.5 + pos: -13.5,-71.5 parent: 2 - - uid: 29134 + - uid: 29788 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-57.5 + pos: -18.5,9.5 parent: 2 - - uid: 29135 + - uid: 29789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-43.5 + pos: -18.5,8.5 parent: 2 - - uid: 29136 + - uid: 29790 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-57.5 + pos: -18.5,5.5 parent: 2 - - uid: 29137 + - uid: 29791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-57.5 + pos: -18.5,6.5 parent: 2 - - uid: 29138 + - uid: 29792 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 + pos: -0.5,-7.5 parent: 2 - - uid: 29139 + - uid: 29793 components: - type: Transform - pos: -35.5,-15.5 + pos: -0.5,-9.5 parent: 2 - - uid: 29140 + - uid: 29794 components: - type: Transform - pos: -18.5,-4.5 + pos: -0.5,-8.5 parent: 2 - - uid: 29141 + - uid: 29795 components: - type: Transform - pos: -18.5,-14.5 + pos: -33.5,13.5 parent: 2 - - uid: 29142 + - uid: 29796 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-56.5 + pos: -43.5,18.5 parent: 2 - - uid: 29143 + - uid: 29797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-56.5 + pos: -29.5,13.5 parent: 2 - - uid: 29144 + - uid: 29798 components: - type: Transform - pos: -18.5,-13.5 + pos: -22.5,13.5 parent: 2 - - uid: 29145 + - uid: 29799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 + pos: -21.5,13.5 parent: 2 - - uid: 29146 + - uid: 29800 components: - type: Transform - pos: -22.5,-3.5 + pos: -31.5,13.5 parent: 2 - - uid: 29147 + - uid: 29801 components: - type: Transform - pos: -34.5,-15.5 + pos: -35.5,17.5 parent: 2 - - uid: 29148 + - uid: 29802 components: - type: Transform - pos: -18.5,-11.5 + pos: -35.5,16.5 parent: 2 - - uid: 29149 + - uid: 29803 components: - type: Transform - pos: -34.5,-16.5 + pos: -38.5,17.5 parent: 2 - - uid: 29150 + - uid: 29804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 + pos: -36.5,17.5 parent: 2 - - uid: 29151 + - uid: 29805 components: - type: Transform - pos: -18.5,-2.5 + pos: -44.5,18.5 parent: 2 - - uid: 29152 + - uid: 29806 components: - type: Transform - pos: -21.5,-3.5 + pos: -30.5,13.5 parent: 2 - - uid: 29153 + - uid: 29807 components: - type: Transform - pos: -22.5,-4.5 + pos: -24.5,13.5 parent: 2 - - uid: 29154 + - uid: 29808 components: - type: Transform - pos: -18.5,-12.5 + pos: -28.5,13.5 parent: 2 - - uid: 29155 + - uid: 29809 components: - type: Transform - pos: -34.5,-17.5 + pos: -23.5,13.5 parent: 2 - - uid: 29156 + - uid: 29810 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-36.5 + pos: 12.5,-48.5 parent: 2 - - uid: 29157 + - uid: 29811 components: - type: Transform - pos: -20.5,-5.5 + pos: -35.5,14.5 parent: 2 - - uid: 29158 + - uid: 29812 components: - type: Transform - pos: -22.5,-5.5 + pos: -34.5,13.5 parent: 2 - - uid: 29159 + - uid: 29813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-39.5 + pos: -47.5,18.5 parent: 2 - - uid: 29160 + - uid: 29814 components: - type: Transform - pos: -22.5,-12.5 + rot: -1.5707963267948966 rad + pos: 10.5,-52.5 parent: 2 - - uid: 29161 + - uid: 29815 components: - type: Transform - pos: -21.5,-12.5 + rot: -1.5707963267948966 rad + pos: 7.5,-45.5 parent: 2 - - uid: 29162 + - uid: 29816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-52.5 + pos: 9.5,-43.5 parent: 2 - - uid: 29163 + - uid: 29817 components: - type: Transform - pos: -19.5,-12.5 + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 parent: 2 - - uid: 29164 + - uid: 29818 components: - type: Transform - pos: -18.5,-5.5 + rot: -1.5707963267948966 rad + pos: 8.5,-45.5 parent: 2 - - uid: 29165 + - uid: 29819 components: - type: Transform - pos: -18.5,-3.5 + rot: -1.5707963267948966 rad + pos: 5.5,-46.5 parent: 2 - - uid: 29166 + - uid: 29820 components: - type: Transform - pos: -23.5,-4.5 + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 2 - - uid: 29167 + - uid: 29821 components: - type: Transform - pos: -20.5,-12.5 + rot: -1.5707963267948966 rad + pos: 5.5,-47.5 parent: 2 - - uid: 29168 + - uid: 29822 components: - type: Transform - pos: -35.5,9.5 + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 parent: 2 - - uid: 29169 + - uid: 29823 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-47.5 + pos: 7.5,-39.5 parent: 2 - - uid: 29170 + - uid: 29824 components: - type: Transform - pos: -20.5,-2.5 + rot: -1.5707963267948966 rad + pos: 6.5,-39.5 parent: 2 - - uid: 29171 + - uid: 29825 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-43.5 + pos: 9.5,-40.5 parent: 2 - - uid: 29172 + - uid: 29826 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-56.5 + pos: 9.5,-41.5 parent: 2 - - uid: 29173 + - uid: 29827 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-39.5 + pos: 13.5,-50.5 parent: 2 - - uid: 29174 + - uid: 29828 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-52.5 + pos: 13.5,-51.5 parent: 2 - - uid: 29175 + - uid: 29829 components: - type: Transform - pos: -20.5,-1.5 + rot: -1.5707963267948966 rad + pos: 10.5,-48.5 parent: 2 - - uid: 29176 + - uid: 29830 components: - type: Transform - pos: 8.5,-10.5 + pos: 53.5,-56.5 parent: 2 - - uid: 29177 + - uid: 29831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-34.5 + pos: 20.5,-36.5 parent: 2 - - uid: 29178 + - uid: 29832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-39.5 + pos: 34.5,-50.5 parent: 2 - - uid: 29179 + - uid: 29833 components: - type: Transform - pos: 11.5,-10.5 + pos: 15.5,-48.5 parent: 2 - - uid: 29180 + - uid: 29834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-41.5 + pos: 15.5,-47.5 parent: 2 - - uid: 29181 + - uid: 29835 components: - type: Transform - pos: -18.5,-20.5 + pos: 20.5,55.5 parent: 2 - - uid: 29182 + - uid: 29836 components: - type: Transform - pos: -35.5,1.5 + pos: 14.5,59.5 parent: 2 - - uid: 29183 + - uid: 29837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-39.5 + pos: 15.5,-46.5 parent: 2 - - uid: 29184 + - uid: 29838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-64.5 + pos: 18.5,50.5 parent: 2 - - uid: 29185 + - uid: 29839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-40.5 + pos: 19.5,50.5 parent: 2 - - uid: 29186 + - uid: 29840 components: - type: Transform - pos: 13.5,10.5 + pos: 4.5,55.5 parent: 2 - - uid: 29187 + - uid: 29841 components: - type: Transform - pos: 9.5,-10.5 + pos: 16.5,59.5 parent: 2 - - uid: 29188 + - uid: 29842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-43.5 + pos: 16.5,55.5 parent: 2 - - uid: 29189 + - uid: 29843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 + pos: 17.5,52.5 parent: 2 - - uid: 29190 + - uid: 29844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-43.5 + pos: 17.5,51.5 parent: 2 - - uid: 29191 + - uid: 29845 components: - type: Transform - pos: -18.5,-19.5 + pos: 17.5,53.5 parent: 2 - - uid: 29192 + - uid: 29846 components: - type: Transform - pos: -24.5,-5.5 + pos: 30.5,57.5 parent: 2 - - uid: 29193 + - uid: 29847 components: - type: Transform - pos: 14.5,13.5 + pos: 30.5,55.5 parent: 2 - - uid: 29194 + - uid: 29848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-39.5 + pos: 30.5,54.5 parent: 2 - - uid: 29195 + - uid: 29849 components: - type: Transform - pos: -0.5,14.5 + pos: 30.5,60.5 parent: 2 - - uid: 29196 + - uid: 29850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-52.5 + pos: 30.5,56.5 parent: 2 - - uid: 29197 + - uid: 29851 components: - type: Transform - pos: -2.5,16.5 + pos: 30.5,59.5 parent: 2 - - uid: 29198 + - uid: 29852 components: - type: Transform - pos: 5.5,16.5 + pos: 30.5,58.5 parent: 2 - - uid: 29199 + - uid: 29853 components: - type: Transform - pos: -14.5,-7.5 + pos: 26.5,-36.5 parent: 2 - - uid: 29200 + - uid: 29854 components: - type: Transform - pos: -14.5,-2.5 + pos: 13.5,-40.5 parent: 2 - - uid: 29201 + - uid: 29855 components: - type: Transform - pos: -14.5,-3.5 + pos: 20.5,59.5 parent: 2 - - uid: 29202 + - uid: 29856 components: - type: Transform - pos: -14.5,-4.5 + pos: 17.5,50.5 parent: 2 - - uid: 29203 + - uid: 29857 components: - type: Transform - pos: -14.5,-5.5 + pos: 10.5,59.5 parent: 2 - - uid: 29204 + - uid: 29858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 + pos: 21.5,59.5 parent: 2 - - uid: 29205 + - uid: 29859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-68.5 + pos: 4.5,59.5 parent: 2 - - uid: 29206 + - uid: 29860 components: - type: Transform - pos: -1.5,16.5 + pos: 25.5,50.5 parent: 2 - - uid: 29207 + - uid: 29861 components: - type: Transform - pos: 3.5,16.5 + pos: 15.5,60.5 parent: 2 - - uid: 29208 + - uid: 29862 components: - type: Transform - pos: -26.5,-62.5 + pos: 15.5,59.5 parent: 2 - - uid: 29209 + - uid: 29863 components: - type: Transform - pos: -14.5,-8.5 + pos: 23.5,50.5 parent: 2 - - uid: 29210 + - uid: 29864 components: - type: Transform - pos: -0.5,15.5 + pos: 34.5,-53.5 parent: 2 - - uid: 29211 + - uid: 29865 components: - type: Transform - pos: -0.5,16.5 + pos: 18.5,55.5 parent: 2 - - uid: 29212 + - uid: 29866 components: - type: Transform - pos: 4.5,16.5 + pos: 22.5,-55.5 parent: 2 - - uid: 29213 + - uid: 29867 components: - type: Transform - pos: 6.5,16.5 + pos: 35.5,-50.5 parent: 2 - - uid: 29214 + - uid: 29868 components: - type: Transform - pos: -13.5,-8.5 + pos: 27.5,-58.5 parent: 2 - - uid: 29215 + - uid: 29869 components: - type: Transform - pos: -4.5,15.5 + pos: 36.5,-50.5 parent: 2 - - uid: 29216 + - uid: 29870 components: - type: Transform - pos: -3.5,15.5 + pos: 26.5,-58.5 parent: 2 - - uid: 29217 + - uid: 29871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-39.5 + pos: 29.5,50.5 parent: 2 - - uid: 29218 + - uid: 29872 components: - type: Transform - pos: 7.5,16.5 + pos: 38.5,-50.5 parent: 2 - - uid: 29219 + - uid: 29873 components: - type: Transform - pos: 1.5,16.5 + pos: 30.5,52.5 parent: 2 - - uid: 29220 + - uid: 29874 components: - type: Transform - pos: 5.5,15.5 + pos: 30.5,50.5 parent: 2 - - uid: 29221 + - uid: 29875 components: - type: Transform - pos: 5.5,12.5 + pos: 30.5,51.5 parent: 2 - - uid: 29222 + - uid: 29876 components: - type: Transform - pos: 9.5,14.5 + pos: 29.5,-58.5 parent: 2 - - uid: 29223 + - uid: 29877 components: - type: Transform - pos: -26.5,-59.5 + pos: 28.5,-58.5 parent: 2 - - uid: 29224 + - uid: 29878 components: - type: Transform - pos: -5.5,-8.5 + pos: 20.5,-37.5 parent: 2 - - uid: 29225 + - uid: 29879 components: - type: Transform - pos: -26.5,-61.5 + pos: 24.5,-55.5 parent: 2 - - uid: 29226 + - uid: 29880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-39.5 + pos: 23.5,-44.5 parent: 2 - - uid: 29227 + - uid: 29881 components: - type: Transform - pos: 7.5,15.5 + pos: 17.5,49.5 parent: 2 - - uid: 29228 + - uid: 29882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-64.5 + pos: 19.5,-30.5 parent: 2 - - uid: 29229 + - uid: 29883 components: - type: Transform - pos: 0.5,16.5 + pos: 20.5,-30.5 parent: 2 - - uid: 29230 + - uid: 29884 components: - type: Transform - pos: 5.5,14.5 + pos: 23.5,-30.5 parent: 2 - - uid: 29231 + - uid: 29885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-48.5 + pos: 22.5,-30.5 parent: 2 - - uid: 29232 + - uid: 29886 components: - type: Transform - pos: 8.5,15.5 + pos: 21.5,-30.5 parent: 2 - - uid: 29233 + - uid: 29887 components: - type: Transform - pos: -42.5,-5.5 + pos: 34.5,-33.5 parent: 2 - - uid: 29234 + - uid: 29888 components: - type: Transform - pos: -40.5,-5.5 + pos: 21.5,-50.5 parent: 2 - - uid: 29235 + - uid: 29889 components: - type: Transform - pos: -9.5,-8.5 + pos: 24.5,-50.5 parent: 2 - - uid: 29236 + - uid: 29890 components: - type: Transform - pos: -0.5,12.5 + pos: 25.5,-50.5 parent: 2 - - uid: 29237 + - uid: 29891 components: - type: Transform - pos: 2.5,16.5 + pos: 26.5,-50.5 parent: 2 - - uid: 29238 + - uid: 29892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-65.5 + pos: 22.5,-50.5 parent: 2 - - uid: 29239 + - uid: 29893 components: - type: Transform - pos: -12.5,-8.5 + pos: 19.5,-42.5 parent: 2 - - uid: 29240 + - uid: 29894 components: - type: Transform - pos: -41.5,-5.5 + rot: 3.141592653589793 rad + pos: 20.5,-46.5 parent: 2 - - uid: 29241 + - uid: 29895 components: - type: Transform - pos: -11.5,-8.5 + pos: 44.5,-57.5 parent: 2 - - uid: 29242 + - uid: 29896 components: - type: Transform - pos: 9.5,15.5 + pos: 42.5,-56.5 parent: 2 - - uid: 29243 + - uid: 29897 components: - type: Transform - pos: -47.5,-5.5 + pos: 49.5,-56.5 parent: 2 - - uid: 29244 + - uid: 29898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-52.5 + pos: 43.5,-56.5 parent: 2 - - uid: 29245 + - uid: 29899 components: - type: Transform - pos: -19.5,-5.5 + pos: 41.5,-56.5 parent: 2 - - uid: 29246 + - uid: 29900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-52.5 + pos: 44.5,-59.5 parent: 2 - - uid: 29247 + - uid: 29901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-39.5 + pos: 15.5,-50.5 parent: 2 - - uid: 29248 + - uid: 29902 components: - type: Transform - pos: -8.5,-8.5 + pos: 15.5,-49.5 parent: 2 - - uid: 29249 + - uid: 29903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-42.5 + pos: 19.5,-51.5 parent: 2 - - uid: 29250 + - uid: 29904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-47.5 + pos: 40.5,-50.5 parent: 2 - - uid: 29251 + - uid: 29905 components: - type: Transform - pos: 0.5,-5.5 + pos: 21.5,-55.5 parent: 2 - - uid: 29252 + - uid: 29906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-50.5 + pos: 34.5,-49.5 parent: 2 - - uid: 29253 + - uid: 29907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-49.5 + pos: 34.5,-54.5 parent: 2 - - uid: 29254 + - uid: 29908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-48.5 + pos: 31.5,-50.5 parent: 2 - - uid: 29255 + - uid: 29909 components: - type: Transform - pos: -26.5,-7.5 + pos: 15.5,-51.5 parent: 2 - - uid: 29256 + - uid: 29910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-53.5 + pos: 39.5,-50.5 parent: 2 - - uid: 29257 + - uid: 29911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 + pos: 34.5,-55.5 parent: 2 - - uid: 29258 + - uid: 29912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-52.5 + pos: 21.5,51.5 parent: 2 - - uid: 29259 + - uid: 29913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-34.5 + pos: 18.5,65.5 parent: 2 - - uid: 29260 + - uid: 29914 components: - type: Transform - pos: -28.5,-12.5 + pos: 21.5,52.5 parent: 2 - - uid: 29261 + - uid: 29915 components: - type: Transform - pos: -4.5,14.5 + pos: 15.5,61.5 parent: 2 - - uid: 29262 + - uid: 29916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-52.5 + pos: 15.5,62.5 parent: 2 - - uid: 29263 + - uid: 29917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-39.5 + pos: 22.5,61.5 parent: 2 - - uid: 29264 + - uid: 29918 components: - type: Transform - pos: 1.5,10.5 + pos: 22.5,62.5 parent: 2 - - uid: 29265 + - uid: 29919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-60.5 + pos: 6.5,59.5 parent: 2 - - uid: 29266 + - uid: 29920 components: - type: Transform - pos: 0.5,10.5 + pos: 7.5,59.5 parent: 2 - - uid: 29267 + - uid: 29921 components: - type: Transform - pos: -5.5,12.5 + pos: 7.5,61.5 parent: 2 - - uid: 29268 + - uid: 29922 components: - type: Transform - pos: -26.5,-64.5 + pos: 5.5,55.5 parent: 2 - - uid: 29269 + - uid: 29923 components: - type: Transform - pos: -19.5,13.5 + pos: 7.5,60.5 parent: 2 - - uid: 29270 + - uid: 29924 components: - type: Transform - pos: -24.5,12.5 + pos: 7.5,62.5 parent: 2 - - uid: 29271 + - uid: 29925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-48.5 + pos: 10.5,55.5 parent: 2 - - uid: 29272 + - uid: 29926 components: - type: Transform - pos: -50.5,18.5 + pos: 48.5,-59.5 parent: 2 - - uid: 29273 + - uid: 29927 components: - type: Transform - pos: -48.5,18.5 + pos: 49.5,-58.5 parent: 2 - - uid: 29274 + - uid: 29928 components: - type: Transform - pos: -49.5,18.5 + pos: 54.5,-58.5 parent: 2 - - uid: 29275 + - uid: 29929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-45.5 + pos: 22.5,55.5 parent: 2 - - uid: 29276 + - uid: 29930 components: - type: Transform - pos: -39.5,18.5 + pos: 25.5,-38.5 parent: 2 - - uid: 29277 + - uid: 29931 components: - type: Transform - pos: -51.5,13.5 + pos: 29.5,-30.5 parent: 2 - - uid: 29278 + - uid: 29932 components: - type: Transform - pos: -41.5,18.5 + pos: 29.5,-27.5 parent: 2 - - uid: 29279 + - uid: 29933 components: - type: Transform - pos: -42.5,18.5 + pos: 25.5,-39.5 parent: 2 - - uid: 29280 + - uid: 29934 components: - type: Transform - pos: -40.5,18.5 + pos: 25.5,-36.5 parent: 2 - - uid: 29281 + - uid: 29935 components: - type: Transform - pos: 15.5,-1.5 + pos: 25.5,-37.5 parent: 2 - - uid: 29282 + - uid: 29936 components: - type: Transform - pos: -5.5,3.5 + pos: 29.5,-31.5 parent: 2 - - uid: 29283 + - uid: 29937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,4.5 + pos: 25.5,-30.5 parent: 2 - - uid: 29284 + - uid: 29938 components: - type: Transform - pos: -4.5,3.5 + pos: 25.5,-27.5 parent: 2 - - uid: 29285 + - uid: 29939 components: - type: Transform - pos: 12.5,-1.5 + pos: 33.5,-44.5 parent: 2 - - uid: 29286 + - uid: 29940 components: - type: Transform - pos: 11.5,-1.5 + pos: 22.5,-44.5 parent: 2 - - uid: 29287 + - uid: 29941 components: - type: Transform - pos: 9.5,-1.5 + pos: 18.5,-42.5 parent: 2 - - uid: 29288 + - uid: 29942 components: - type: Transform - pos: 8.5,-1.5 + pos: 31.5,-44.5 parent: 2 - - uid: 29289 + - uid: 29943 components: - type: Transform - pos: 7.5,-1.5 + pos: 29.5,-44.5 parent: 2 - - uid: 29290 + - uid: 29944 components: - type: Transform - pos: 7.5,-2.5 + pos: 34.5,-47.5 parent: 2 - - uid: 29291 + - uid: 29945 components: - type: Transform - pos: 5.5,-2.5 + pos: 20.5,-39.5 parent: 2 - - uid: 29292 + - uid: 29946 components: - type: Transform - pos: 5.5,-5.5 + pos: 25.5,-44.5 parent: 2 - - uid: 29293 + - uid: 29947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-45.5 + pos: 34.5,-43.5 parent: 2 - - uid: 29294 + - uid: 29948 components: - type: Transform - pos: -49.5,-5.5 + pos: 34.5,-45.5 parent: 2 - - uid: 29295 + - uid: 29949 components: - type: Transform - pos: -45.5,-15.5 + pos: 21.5,-39.5 parent: 2 - - uid: 29296 + - uid: 29950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-38.5 + pos: 23.5,-39.5 parent: 2 - - uid: 29297 + - uid: 29951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-44.5 + pos: 26.5,-27.5 parent: 2 - - uid: 29298 + - uid: 29952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-51.5 + pos: 25.5,-58.5 parent: 2 - - uid: 29299 + - uid: 29953 components: - type: Transform - pos: 14.5,3.5 + pos: 32.5,-44.5 parent: 2 - - uid: 29300 + - uid: 29954 components: - type: Transform - pos: -8.5,3.5 + pos: 21.5,-44.5 parent: 2 - - uid: 29301 + - uid: 29955 components: - type: Transform - pos: 13.5,-0.5 + pos: 34.5,-44.5 parent: 2 - - uid: 29302 + - uid: 29956 components: - type: Transform - pos: 13.5,-1.5 + pos: 28.5,-27.5 parent: 2 - - uid: 29303 + - uid: 29957 components: - type: Transform - pos: -10.5,-7.5 + pos: 34.5,-32.5 parent: 2 - - uid: 29304 + - uid: 29958 components: - type: Transform - pos: -13.5,-5.5 + pos: 34.5,-34.5 parent: 2 - - uid: 29305 + - uid: 29959 components: - type: Transform - pos: 14.5,-1.5 + pos: 34.5,-35.5 parent: 2 - - uid: 29306 + - uid: 29960 components: - type: Transform - pos: -7.5,3.5 + pos: 34.5,-36.5 parent: 2 - - uid: 29307 + - uid: 29961 components: - type: Transform - pos: 14.5,7.5 + pos: 34.5,-37.5 parent: 2 - - uid: 29308 + - uid: 29962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,4.5 + pos: 28.5,-36.5 parent: 2 - - uid: 29309 + - uid: 29963 components: - type: Transform - pos: 9.5,3.5 + pos: 34.5,-42.5 parent: 2 - - uid: 29310 + - uid: 29964 components: - type: Transform - pos: 10.5,3.5 + pos: 20.5,-45.5 parent: 2 - - uid: 29311 + - uid: 29965 components: - type: Transform - pos: 15.5,3.5 + pos: 20.5,-42.5 parent: 2 - - uid: 29312 + - uid: 29966 components: - type: Transform - pos: 12.5,3.5 + pos: 40.5,-51.5 parent: 2 - - uid: 29313 + - uid: 29967 components: - type: Transform - pos: 13.5,3.5 + pos: 20.5,-44.5 parent: 2 - - uid: 29314 + - uid: 29968 components: - type: Transform - pos: 13.5,2.5 + pos: 40.5,-44.5 parent: 2 - - uid: 29315 + - uid: 29969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-51.5 + pos: 35.5,-44.5 parent: 2 - - uid: 29316 + - uid: 29970 components: - type: Transform - pos: -12.5,-5.5 + pos: 40.5,-55.5 parent: 2 - - uid: 29317 + - uid: 29971 components: - type: Transform - pos: 4.5,-5.5 + pos: 34.5,-41.5 parent: 2 - - uid: 29318 + - uid: 29972 components: - type: Transform - pos: 3.5,-5.5 + pos: 34.5,-39.5 parent: 2 - - uid: 29319 + - uid: 29973 components: - type: Transform - pos: 14.5,4.5 + pos: 34.5,-40.5 parent: 2 - - uid: 29320 + - uid: 29974 components: - type: Transform - pos: -46.5,-15.5 + pos: 40.5,-56.5 parent: 2 - - uid: 29321 + - uid: 29975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-17.5 + pos: 40.5,-54.5 parent: 2 - - uid: 29322 + - uid: 29976 components: - type: Transform - pos: 4.5,-3.5 + pos: 38.5,-33.5 parent: 2 - - uid: 29323 + - uid: 29977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-16.5 + pos: 42.5,-36.5 parent: 2 - - uid: 29324 + - uid: 29978 components: - type: Transform - pos: -47.5,-15.5 + pos: 40.5,-53.5 parent: 2 - - uid: 29325 + - uid: 29979 components: - type: Transform - pos: 6.5,-5.5 + pos: 39.5,-55.5 parent: 2 - - uid: 29326 + - uid: 29980 components: - type: Transform - pos: 5.5,-3.5 + pos: 40.5,-52.5 parent: 2 - - uid: 29327 + - uid: 29981 components: - type: Transform - pos: 5.5,-7.5 + pos: 35.5,-55.5 parent: 2 - - uid: 29328 + - uid: 29982 components: - type: Transform - pos: 5.5,-8.5 + pos: 34.5,-38.5 parent: 2 - - uid: 29329 + - uid: 29983 components: - type: Transform - pos: 5.5,-9.5 + pos: 29.5,-36.5 parent: 2 - - uid: 29330 + - uid: 29984 components: - type: Transform - pos: -41.5,-15.5 + pos: 24.5,-39.5 parent: 2 - - uid: 29331 + - uid: 29985 components: - type: Transform - pos: -48.5,-15.5 + pos: 19.5,-36.5 parent: 2 - - uid: 29332 + - uid: 29986 components: - type: Transform - pos: -49.5,-15.5 + pos: 16.5,-36.5 parent: 2 - - uid: 29333 + - uid: 29987 components: - type: Transform - pos: -14.5,-12.5 + pos: 46.5,-49.5 parent: 2 - - uid: 29334 + - uid: 29988 components: - type: Transform - pos: -26.5,-6.5 + pos: 46.5,-47.5 parent: 2 - - uid: 29335 + - uid: 29989 components: - type: Transform - pos: -24.5,-12.5 + pos: 46.5,-48.5 parent: 2 - - uid: 29336 + - uid: 29990 components: - type: Transform - pos: -25.5,-12.5 + pos: 15.5,-35.5 parent: 2 - - uid: 29337 + - uid: 29991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-37.5 + pos: 15.5,-34.5 parent: 2 - - uid: 29338 + - uid: 29992 components: - type: Transform - pos: 7.5,-3.5 + pos: 15.5,-33.5 parent: 2 - - uid: 29339 + - uid: 29993 components: - type: Transform - pos: 7.5,-4.5 + pos: 15.5,-32.5 parent: 2 - - uid: 29340 + - uid: 29994 components: - type: Transform - pos: 7.5,-5.5 + pos: 29.5,-55.5 parent: 2 - - uid: 29341 + - uid: 29995 components: - type: Transform - pos: 7.5,-6.5 + pos: 15.5,-36.5 parent: 2 - - uid: 29342 + - uid: 29996 components: - type: Transform - pos: 7.5,-7.5 + pos: 13.5,-38.5 parent: 2 - - uid: 29343 + - uid: 29997 components: - type: Transform - pos: 7.5,-8.5 + pos: 18.5,-36.5 parent: 2 - - uid: 29344 + - uid: 29998 components: - type: Transform - pos: 7.5,-9.5 + pos: 41.5,-55.5 parent: 2 - - uid: 29345 + - uid: 29999 components: - type: Transform - pos: 7.5,-10.5 + pos: 34.5,-51.5 parent: 2 - - uid: 29346 + - uid: 30000 components: - type: Transform - pos: 7.5,-11.5 + pos: 17.5,-42.5 parent: 2 - - uid: 29347 + - uid: 30001 components: - type: Transform - pos: 5.5,-12.5 + pos: 15.5,-43.5 parent: 2 - - uid: 29348 + - uid: 30002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 + pos: 16.5,-42.5 parent: 2 - - uid: 29349 + - uid: 30003 components: - type: Transform - pos: 4.5,-7.5 + pos: 14.5,66.5 parent: 2 - - uid: 29350 + - uid: 30004 components: - type: Transform - pos: 5.5,-10.5 + pos: 16.5,65.5 parent: 2 - - uid: 29351 + - uid: 30005 components: - type: Transform - pos: 5.5,-11.5 + pos: 24.5,50.5 parent: 2 - - uid: 29352 + - uid: 30006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-39.5 + pos: 23.5,62.5 parent: 2 - - uid: 29353 + - uid: 30007 components: - type: Transform - pos: -10.5,-1.5 + pos: 24.5,62.5 parent: 2 - - uid: 29354 + - uid: 30008 components: - type: Transform - pos: -2.5,-1.5 + pos: 25.5,62.5 parent: 2 - - uid: 29355 + - uid: 30009 components: - type: Transform - pos: -26.5,-63.5 + pos: 26.5,62.5 parent: 2 - - uid: 29356 + - uid: 30010 components: - type: Transform - pos: -23.5,-12.5 + pos: 27.5,62.5 parent: 2 - - uid: 29357 + - uid: 30011 components: - type: Transform - pos: -14.5,-11.5 + pos: 28.5,62.5 parent: 2 - - uid: 29358 + - uid: 30012 components: - type: Transform - pos: -3.5,-8.5 + pos: 29.5,62.5 parent: 2 - - uid: 29359 + - uid: 30013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 + pos: 12.5,49.5 parent: 2 - - uid: 29360 + - uid: 30014 components: - type: Transform - pos: 7.5,-12.5 + pos: 16.5,49.5 parent: 2 - - uid: 29361 + - uid: 30015 components: - type: Transform - pos: 7.5,-13.5 + pos: 30.5,62.5 parent: 2 - - uid: 29362 + - uid: 30016 components: - type: Transform - pos: 15.5,-6.5 + pos: 30.5,61.5 parent: 2 - - uid: 29363 + - uid: 30017 components: - type: Transform - pos: 14.5,-7.5 + pos: 15.5,49.5 parent: 2 - - uid: 29364 + - uid: 30018 components: - type: Transform - pos: 14.5,-10.5 + pos: 14.5,49.5 parent: 2 - - uid: 29365 + - uid: 30019 components: - type: Transform - pos: 13.5,-13.5 + pos: 13.5,49.5 parent: 2 - - uid: 29366 + - uid: 30020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 + pos: 17.5,65.5 parent: 2 - - uid: 29367 + - uid: 30021 components: - type: Transform - pos: 9.5,-14.5 + pos: 20.5,-49.5 parent: 2 - - uid: 29368 + - uid: 30022 components: - type: Transform - pos: 14.5,-14.5 + pos: 20.5,-50.5 parent: 2 - - uid: 29369 + - uid: 30023 components: - type: Transform - pos: 13.5,-14.5 + pos: 3.5,55.5 parent: 2 - - uid: 29370 + - uid: 30024 components: - type: Transform - pos: 15.5,-10.5 + pos: 3.5,59.5 parent: 2 - - uid: 29371 + - uid: 30025 components: - type: Transform - pos: 6.5,-13.5 + pos: 5.5,59.5 parent: 2 - - uid: 29372 + - uid: 30026 components: - type: Transform - pos: 5.5,-13.5 + pos: 29.5,-57.5 parent: 2 - - uid: 29373 + - uid: 30027 components: - type: Transform - pos: 3.5,-12.5 + pos: 30.5,-55.5 parent: 2 - - uid: 29374 + - uid: 30028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-47.5 + pos: 9.5,54.5 parent: 2 - - uid: 29375 + - uid: 30029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 + pos: 33.5,-50.5 parent: 2 - - uid: 29376 + - uid: 30030 components: - type: Transform - pos: -10.5,-8.5 + pos: 23.5,-55.5 parent: 2 - - uid: 29377 + - uid: 30031 components: - type: Transform - pos: 14.5,-6.5 + pos: 20.5,-38.5 parent: 2 - - uid: 29378 + - uid: 30032 components: - type: Transform - pos: 14.5,-9.5 + pos: 25.5,-55.5 parent: 2 - - uid: 29379 + - uid: 30033 components: - type: Transform - pos: 13.5,-10.5 + pos: 26.5,-55.5 parent: 2 - - uid: 29380 + - uid: 30034 components: - type: Transform - pos: 13.5,-12.5 + pos: 30.5,-50.5 parent: 2 - - uid: 29381 + - uid: 30035 components: - type: Transform - pos: 16.5,-4.5 + pos: 21.5,53.5 parent: 2 - - uid: 29382 + - uid: 30036 components: - type: Transform - pos: -10.5,-6.5 + pos: 21.5,54.5 parent: 2 - - uid: 29383 + - uid: 30037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-51.5 + pos: 21.5,50.5 parent: 2 - - uid: 29384 + - uid: 30038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-51.5 + pos: 22.5,59.5 parent: 2 - - uid: 29385 + - uid: 30039 components: - type: Transform - pos: 14.5,8.5 + pos: 22.5,60.5 parent: 2 - - uid: 29386 + - uid: 30040 components: - type: Transform - pos: -9.5,3.5 + pos: 22.5,50.5 parent: 2 - - uid: 29387 + - uid: 30041 components: - type: Transform - pos: -9.5,4.5 + pos: 9.5,53.5 parent: 2 - - uid: 29388 + - uid: 30042 components: - type: Transform - pos: -9.5,8.5 + pos: 8.5,55.5 parent: 2 - - uid: 29389 + - uid: 30043 components: - type: Transform - pos: -14.5,2.5 + pos: 17.5,54.5 parent: 2 - - uid: 29390 + - uid: 30044 components: - type: Transform - pos: 14.5,9.5 + pos: 11.5,66.5 parent: 2 - - uid: 29391 + - uid: 30045 components: - type: Transform - pos: -9.5,-1.5 + pos: 17.5,55.5 parent: 2 - - uid: 29392 + - uid: 30046 components: - type: Transform - pos: -11.5,-1.5 + pos: 15.5,66.5 parent: 2 - - uid: 29393 + - uid: 30047 components: - type: Transform - pos: -4.5,-1.5 + pos: 26.5,50.5 parent: 2 - - uid: 29394 + - uid: 30048 components: - type: Transform - pos: 16.5,-1.5 + pos: 15.5,65.5 parent: 2 - - uid: 29395 + - uid: 30049 components: - type: Transform - pos: 17.5,-1.5 + pos: 8.5,59.5 parent: 2 - - uid: 29396 + - uid: 30050 components: - type: Transform - pos: 18.5,-1.5 + pos: 9.5,55.5 parent: 2 - - uid: 29397 + - uid: 30051 components: - type: Transform - pos: 19.5,-1.5 + pos: 13.5,66.5 parent: 2 - - uid: 29398 + - uid: 30052 components: - type: Transform - pos: 19.5,3.5 + pos: 10.5,66.5 parent: 2 - - uid: 29399 + - uid: 30053 components: - type: Transform - pos: 19.5,8.5 + pos: 8.5,66.5 parent: 2 - - uid: 29400 + - uid: 30054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-33.5 + pos: 7.5,65.5 parent: 2 - - uid: 29401 + - uid: 30055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-33.5 + pos: 7.5,64.5 parent: 2 - - uid: 29402 + - uid: 30056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-33.5 + pos: 7.5,63.5 parent: 2 - - uid: 29403 + - uid: 30057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 + pos: 15.5,64.5 parent: 2 - - uid: 29404 + - uid: 30058 components: - type: Transform - pos: -24.5,1.5 + pos: 21.5,55.5 parent: 2 - - uid: 29405 + - uid: 30059 components: - type: Transform - pos: -26.5,-36.5 + pos: 13.5,-39.5 parent: 2 - - uid: 29406 + - uid: 30060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-33.5 + pos: 22.5,58.5 parent: 2 - - uid: 29407 + - uid: 30061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-68.5 + pos: 9.5,52.5 parent: 2 - - uid: 29408 + - uid: 30062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-67.5 + pos: 9.5,66.5 parent: 2 - - uid: 29409 + - uid: 30063 components: - type: Transform - pos: -8.5,12.5 + pos: 12.5,66.5 parent: 2 - - uid: 29410 + - uid: 30064 components: - type: Transform - pos: -8.5,13.5 + pos: 7.5,66.5 parent: 2 - - uid: 29411 + - uid: 30065 components: - type: Transform - pos: -8.5,10.5 + pos: 22.5,56.5 parent: 2 - - uid: 29412 + - uid: 30066 components: - type: Transform - pos: -9.5,13.5 + pos: 15.5,-45.5 parent: 2 - - uid: 29413 + - uid: 30067 components: - type: Transform - pos: -8.5,9.5 + pos: 9.5,50.5 parent: 2 - - uid: 29414 + - uid: 30068 components: - type: Transform - pos: -9.5,9.5 + pos: 20.5,-54.5 parent: 2 - - uid: 29415 + - uid: 30069 components: - type: Transform - pos: -0.5,-11.5 + pos: 20.5,-52.5 parent: 2 - - uid: 29416 + - uid: 30070 components: - type: Transform - pos: -17.5,-71.5 + pos: 20.5,-53.5 parent: 2 - - uid: 29417 + - uid: 30071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-65.5 + pos: 26.5,-51.5 parent: 2 - - uid: 29418 + - uid: 30072 components: - type: Transform - pos: -10.5,13.5 + pos: 20.5,-55.5 parent: 2 - - uid: 29419 + - uid: 30073 components: - type: Transform - pos: -11.5,13.5 + pos: 26.5,-53.5 parent: 2 - - uid: 29420 + - uid: 30074 components: - type: Transform - pos: -11.5,12.5 + pos: 25.5,-56.5 parent: 2 - - uid: 29421 + - uid: 30075 components: - type: Transform - pos: -12.5,12.5 + pos: 26.5,-54.5 parent: 2 - - uid: 29422 + - uid: 30076 components: - type: Transform - pos: -39.5,-5.5 + pos: 34.5,-52.5 parent: 2 - - uid: 29423 + - uid: 30077 components: - type: Transform - pos: -14.5,8.5 + pos: 46.5,-43.5 parent: 2 - - uid: 29424 + - uid: 30078 components: - type: Transform - pos: -14.5,3.5 + pos: 43.5,-46.5 parent: 2 - - uid: 29425 + - uid: 30079 components: - type: Transform - pos: -12.5,-1.5 + pos: 46.5,-46.5 parent: 2 - - uid: 29426 + - uid: 30080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-51.5 + pos: 38.5,-44.5 parent: 2 - - uid: 29427 + - uid: 30081 components: - type: Transform - pos: -18.5,-18.5 + pos: 43.5,-50.5 parent: 2 - - uid: 29428 + - uid: 30082 components: - type: Transform - pos: -48.5,-5.5 + pos: 46.5,-38.5 parent: 2 - - uid: 29429 + - uid: 30083 components: - type: Transform - pos: -15.5,17.5 + pos: 39.5,-44.5 parent: 2 - - uid: 29430 + - uid: 30084 components: - type: Transform - pos: -1.5,-13.5 + pos: 46.5,-37.5 parent: 2 - - uid: 29431 + - uid: 30085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-69.5 + pos: 46.5,-36.5 parent: 2 - - uid: 29432 + - uid: 30086 components: - type: Transform - pos: 0.5,-7.5 + pos: 46.5,-42.5 parent: 2 - - uid: 29433 + - uid: 30087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-33.5 + pos: 46.5,-39.5 parent: 2 - - uid: 29434 + - uid: 30088 components: - type: Transform - pos: -35.5,13.5 + pos: 46.5,-41.5 parent: 2 - - uid: 29435 + - uid: 30089 components: - type: Transform - pos: -32.5,13.5 + pos: 46.5,-40.5 parent: 2 - - uid: 29436 + - uid: 30090 components: - type: Transform - pos: -18.5,3.5 + pos: 46.5,-50.5 parent: 2 - - uid: 29437 + - uid: 30091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-65.5 + pos: 29.5,-41.5 parent: 2 - - uid: 29438 + - uid: 30092 components: - type: Transform - pos: -0.5,-10.5 + pos: 45.5,-36.5 parent: 2 - - uid: 29439 + - uid: 30093 components: - type: Transform - pos: -18.5,4.5 + pos: 43.5,-36.5 parent: 2 - - uid: 29440 + - uid: 30094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-68.5 + pos: 44.5,-36.5 parent: 2 - - uid: 29441 + - uid: 30095 components: - type: Transform - pos: -2.5,-9.5 + pos: 27.5,-54.5 parent: 2 - - uid: 29442 + - uid: 30096 components: - type: Transform - pos: -13.5,-71.5 + pos: 20.5,-51.5 parent: 2 - - uid: 29443 + - uid: 30097 components: - type: Transform - pos: -18.5,9.5 + pos: 17.5,-51.5 parent: 2 - - uid: 29444 + - uid: 30098 components: - type: Transform - pos: -18.5,8.5 + pos: 16.5,-51.5 parent: 2 - - uid: 29445 + - uid: 30099 components: - type: Transform - pos: -18.5,5.5 + pos: 15.5,-42.5 parent: 2 - - uid: 29446 + - uid: 30100 components: - type: Transform - pos: -18.5,6.5 + pos: 18.5,-51.5 parent: 2 - - uid: 29447 + - uid: 30101 components: - type: Transform - pos: -0.5,-7.5 + pos: 15.5,-44.5 parent: 2 - - uid: 29448 + - uid: 30102 components: - type: Transform - pos: -0.5,-9.5 + pos: 17.5,-36.5 parent: 2 - - uid: 29449 + - uid: 30103 components: - type: Transform - pos: -0.5,-8.5 + pos: 29.5,-54.5 parent: 2 - - uid: 29450 + - uid: 30104 components: - type: Transform - pos: -33.5,13.5 + pos: 35.5,-33.5 parent: 2 - - uid: 29451 + - uid: 30105 components: - type: Transform - pos: -43.5,18.5 + pos: 36.5,-33.5 parent: 2 - - uid: 29452 + - uid: 30106 components: - type: Transform - pos: -29.5,13.5 + pos: 37.5,-33.5 parent: 2 - - uid: 29453 + - uid: 30107 components: - type: Transform - pos: -22.5,13.5 + pos: 17.5,2.5 parent: 2 - - uid: 29454 + - uid: 30108 components: - type: Transform - pos: -21.5,13.5 + pos: 18.5,2.5 parent: 2 - - uid: 29455 + - uid: 30109 components: - type: Transform - pos: -31.5,13.5 + pos: -13.5,2.5 parent: 2 - - uid: 29456 + - uid: 30110 components: - type: Transform - pos: -35.5,17.5 + pos: -12.5,2.5 parent: 2 - - uid: 29457 + - uid: 30111 components: - type: Transform - pos: -35.5,16.5 + pos: 3.5,58.5 parent: 2 - - uid: 29458 + - uid: 30112 components: - type: Transform - pos: -38.5,17.5 + rot: -1.5707963267948966 rad + pos: 8.5,16.5 parent: 2 - - uid: 29459 + - uid: 30113 components: - type: Transform - pos: -36.5,17.5 + rot: -1.5707963267948966 rad + pos: -3.5,16.5 parent: 2 - - uid: 29460 + - uid: 30114 components: - type: Transform - pos: -44.5,18.5 + rot: -1.5707963267948966 rad + pos: 10.5,15.5 parent: 2 - - uid: 29461 + - uid: 30115 components: - type: Transform - pos: -30.5,13.5 + pos: 3.5,56.5 parent: 2 - - uid: 29462 + - uid: 30116 components: - type: Transform - pos: -24.5,13.5 + rot: -1.5707963267948966 rad + pos: -5.5,15.5 parent: 2 - - uid: 29463 + - uid: 30117 components: - type: Transform - pos: -28.5,13.5 + pos: 43.5,30.5 parent: 2 - - uid: 29464 + - uid: 30118 components: - type: Transform - pos: -23.5,13.5 + pos: 43.5,27.5 parent: 2 - - uid: 29465 + - uid: 30119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-48.5 + pos: 44.5,30.5 parent: 2 - - uid: 29466 + - uid: 30120 components: - type: Transform - pos: -35.5,14.5 + rot: -1.5707963267948966 rad + pos: 11.5,14.5 parent: 2 - - uid: 29467 + - uid: 30121 components: - type: Transform - pos: -34.5,13.5 + rot: -1.5707963267948966 rad + pos: 11.5,13.5 parent: 2 - - uid: 29468 + - uid: 30122 components: - type: Transform - pos: -47.5,18.5 + rot: -1.5707963267948966 rad + pos: 11.5,9.5 parent: 2 - - uid: 29469 + - uid: 30123 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-52.5 + pos: -2.5,17.5 parent: 2 - - uid: 29470 + - uid: 30124 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-45.5 + pos: -5.5,8.5 parent: 2 - - uid: 29471 + - uid: 30125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-43.5 + pos: 5.5,17.5 parent: 2 - - uid: 29472 + - uid: 30126 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-49.5 + pos: 4.5,17.5 parent: 2 - - uid: 29473 + - uid: 30127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-45.5 + pos: -6.5,12.5 parent: 2 - - uid: 29474 + - uid: 30128 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-46.5 + pos: 6.5,17.5 parent: 2 - - uid: 29475 + - uid: 30129 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: 7.5,17.5 parent: 2 - - uid: 29476 + - uid: 30130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-47.5 + pos: 45.5,30.5 parent: 2 - - uid: 29477 + - uid: 30131 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-39.5 + pos: 11.5,12.5 parent: 2 - - uid: 29478 + - uid: 30132 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-39.5 + pos: 3.5,17.5 parent: 2 - - uid: 29479 + - uid: 30133 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-39.5 + pos: -1.5,17.5 parent: 2 - - uid: 29480 + - uid: 30134 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-40.5 + pos: -0.5,17.5 parent: 2 - - uid: 29481 + - uid: 30135 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-41.5 + pos: -3.5,17.5 parent: 2 - - uid: 29482 + - uid: 30136 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-50.5 + pos: 0.5,9.5 parent: 2 - - uid: 29483 + - uid: 30137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-51.5 + pos: 0.5,17.5 parent: 2 - - uid: 29484 + - uid: 30138 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-48.5 + pos: 9.5,16.5 parent: 2 - - uid: 29485 + - uid: 30139 components: - type: Transform - pos: 53.5,-56.5 + rot: -1.5707963267948966 rad + pos: -4.5,16.5 parent: 2 - - uid: 29486 + - uid: 30140 components: - type: Transform - pos: 20.5,-36.5 + rot: -1.5707963267948966 rad + pos: 1.5,17.5 parent: 2 - - uid: 29487 + - uid: 30141 components: - type: Transform - pos: 34.5,-50.5 + rot: -1.5707963267948966 rad + pos: 2.5,17.5 parent: 2 - - uid: 29488 + - uid: 30142 components: - type: Transform - pos: 15.5,-48.5 + rot: -1.5707963267948966 rad + pos: -6.5,9.5 parent: 2 - - uid: 29489 + - uid: 30143 components: - type: Transform - pos: 15.5,-47.5 + rot: -1.5707963267948966 rad + pos: -1.5,9.5 parent: 2 - - uid: 29490 + - uid: 30144 components: - type: Transform - pos: 20.5,55.5 + rot: -1.5707963267948966 rad + pos: 1.5,9.5 parent: 2 - - uid: 29491 + - uid: 30145 components: - type: Transform - pos: 14.5,59.5 + rot: -1.5707963267948966 rad + pos: -6.5,10.5 parent: 2 - - uid: 29492 + - uid: 30146 components: - type: Transform - pos: 15.5,-46.5 + rot: -1.5707963267948966 rad + pos: 4.5,9.5 parent: 2 - - uid: 29493 + - uid: 30147 components: - type: Transform - pos: 18.5,50.5 + rot: -1.5707963267948966 rad + pos: 7.5,8.5 parent: 2 - - uid: 29494 + - uid: 30148 components: - type: Transform - pos: 19.5,50.5 + rot: -1.5707963267948966 rad + pos: 8.5,8.5 parent: 2 - - uid: 29495 + - uid: 30149 components: - type: Transform - pos: 4.5,55.5 + rot: -1.5707963267948966 rad + pos: -4.5,8.5 parent: 2 - - uid: 29496 + - uid: 30150 components: - type: Transform - pos: 16.5,59.5 + rot: -1.5707963267948966 rad + pos: -2.5,8.5 parent: 2 - - uid: 29497 + - uid: 30151 components: - type: Transform - pos: 16.5,55.5 + rot: -1.5707963267948966 rad + pos: 6.5,9.5 parent: 2 - - uid: 29498 + - uid: 30152 components: - type: Transform - pos: 17.5,52.5 + rot: -1.5707963267948966 rad + pos: -6.5,13.5 parent: 2 - - uid: 29499 + - uid: 30153 components: - type: Transform - pos: 17.5,51.5 + rot: -1.5707963267948966 rad + pos: -6.5,14.5 parent: 2 - - uid: 29500 + - uid: 30154 components: - type: Transform - pos: 17.5,53.5 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 parent: 2 - - uid: 29501 + - uid: 30155 components: - type: Transform - pos: 30.5,57.5 + rot: -1.5707963267948966 rad + pos: 5.5,9.5 parent: 2 - - uid: 29502 + - uid: 30156 components: - type: Transform - pos: 30.5,55.5 + rot: -1.5707963267948966 rad + pos: 10.5,8.5 parent: 2 - - uid: 29503 + - uid: 30157 components: - type: Transform - pos: 30.5,54.5 + rot: -1.5707963267948966 rad + pos: -0.5,9.5 parent: 2 - - uid: 29504 + - uid: 30158 components: - type: Transform - pos: 30.5,60.5 + rot: -1.5707963267948966 rad + pos: 11.5,10.5 parent: 2 - - uid: 29505 + - uid: 30159 components: - type: Transform - pos: 30.5,56.5 + rot: -1.5707963267948966 rad + pos: 3.5,9.5 parent: 2 - - uid: 29506 + - uid: 30160 components: - type: Transform - pos: 30.5,59.5 + rot: -1.5707963267948966 rad + pos: 2.5,9.5 parent: 2 - - uid: 29507 + - uid: 30161 components: - type: Transform - pos: 30.5,58.5 + pos: 43.5,28.5 parent: 2 - - uid: 29508 + - uid: 30162 components: - type: Transform - pos: 26.5,-36.5 + pos: 43.5,29.5 parent: 2 - - uid: 29509 + - uid: 30163 components: - type: Transform - pos: 13.5,-40.5 + pos: 45.5,28.5 parent: 2 - - uid: 29510 + - uid: 30164 components: - type: Transform - pos: 20.5,59.5 + pos: 44.5,26.5 parent: 2 - - uid: 29511 + - uid: 30165 components: - type: Transform - pos: 17.5,50.5 + pos: 43.5,26.5 parent: 2 - - uid: 29512 + - uid: 30166 components: - type: Transform - pos: 10.5,59.5 + pos: 45.5,27.5 parent: 2 - - uid: 29513 + - uid: 30167 components: - type: Transform - pos: 21.5,59.5 + pos: 45.5,26.5 parent: 2 - - uid: 29514 + - uid: 30168 components: - type: Transform - pos: 4.5,59.5 + pos: 19.5,10.5 parent: 2 - - uid: 29515 + - uid: 30169 components: - type: Transform - pos: 25.5,50.5 + pos: 15.5,13.5 parent: 2 - - uid: 29516 + - uid: 30170 components: - type: Transform - pos: 15.5,60.5 + rot: 3.141592653589793 rad + pos: -12.5,-2.5 parent: 2 - - uid: 29517 + - uid: 30171 components: - type: Transform - pos: 15.5,59.5 + rot: 1.5707963267948966 rad + pos: -7.5,-5.5 parent: 2 - - uid: 29518 + - uid: 30172 components: - type: Transform - pos: 23.5,50.5 + pos: 60.5,-6.5 parent: 2 - - uid: 29519 + - uid: 30173 components: - type: Transform - pos: 34.5,-53.5 + pos: 60.5,-4.5 parent: 2 - - uid: 29520 + - uid: 30174 components: - type: Transform - pos: 18.5,55.5 + pos: 60.5,-5.5 parent: 2 - - uid: 29521 + - uid: 30175 components: - type: Transform - pos: 22.5,-55.5 + pos: 58.5,-4.5 parent: 2 - - uid: 29522 + - uid: 30176 components: - type: Transform - pos: 35.5,-50.5 + pos: 58.5,-6.5 parent: 2 - - uid: 29523 + - uid: 30177 components: - type: Transform - pos: 27.5,-58.5 + pos: 58.5,-5.5 parent: 2 - - uid: 29524 + - uid: 30178 components: - type: Transform - pos: 36.5,-50.5 + pos: 58.5,-3.5 parent: 2 - - uid: 29525 + - uid: 30179 components: - type: Transform - pos: 26.5,-58.5 + pos: 59.5,-3.5 parent: 2 - - uid: 29526 + - uid: 30180 components: - type: Transform - pos: 29.5,50.5 + pos: 60.5,-3.5 parent: 2 - - uid: 29527 + - uid: 30181 components: - type: Transform - pos: 38.5,-50.5 + rot: 3.141592653589793 rad + pos: -11.5,-2.5 parent: 2 - - uid: 29528 + - uid: 30182 components: - type: Transform - pos: 30.5,52.5 + rot: 1.5707963267948966 rad + pos: -7.5,-2.5 parent: 2 - - uid: 29529 + - uid: 30183 components: - type: Transform - pos: 30.5,50.5 + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 parent: 2 - - uid: 29530 + - uid: 30184 components: - type: Transform - pos: 30.5,51.5 + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 parent: 2 - - uid: 29531 + - uid: 30185 components: - type: Transform - pos: 29.5,-58.5 + pos: -11.5,-11.5 parent: 2 - - uid: 29532 + - uid: 30186 components: - type: Transform - pos: 28.5,-58.5 + pos: -11.5,-10.5 parent: 2 - - uid: 29533 + - uid: 30187 components: - type: Transform - pos: 20.5,-37.5 + pos: -11.5,-12.5 parent: 2 - - uid: 29534 + - uid: 30188 components: - type: Transform - pos: 24.5,-55.5 + pos: -11.5,-13.5 parent: 2 - - uid: 29535 + - uid: 30189 components: - type: Transform - pos: 23.5,-44.5 + pos: -8.5,-13.5 parent: 2 - - uid: 29536 + - uid: 30190 components: - type: Transform - pos: 17.5,49.5 + pos: -5.5,-9.5 parent: 2 - - uid: 29537 + - uid: 30191 components: - type: Transform - pos: 19.5,-30.5 + pos: -8.5,-9.5 parent: 2 - - uid: 29538 + - uid: 30192 components: - type: Transform - pos: 20.5,-30.5 + pos: -13.5,-14.5 parent: 2 - - uid: 29539 + - uid: 30193 components: - type: Transform - pos: 23.5,-30.5 + pos: -23.5,3.5 parent: 2 - - uid: 29540 + - uid: 30194 components: - type: Transform - pos: 22.5,-30.5 + pos: -23.5,4.5 parent: 2 - - uid: 29541 + - uid: 30195 components: - type: Transform - pos: 21.5,-30.5 + pos: -23.5,5.5 parent: 2 - - uid: 29542 + - uid: 30196 components: - type: Transform - pos: 34.5,-33.5 + rot: 1.5707963267948966 rad + pos: -23.5,6.5 parent: 2 - - uid: 29543 + - uid: 30197 components: - type: Transform - pos: 21.5,-50.5 + pos: -12.5,-35.5 parent: 2 - - uid: 29544 + - uid: 30198 components: - type: Transform - pos: 24.5,-50.5 + pos: -13.5,-35.5 parent: 2 - - uid: 29545 + - uid: 30199 components: - type: Transform - pos: 25.5,-50.5 + pos: 20.5,-43.5 parent: 2 - - uid: 29546 + - uid: 30200 components: - type: Transform - pos: 26.5,-50.5 + pos: 33.5,-32.5 parent: 2 - - uid: 29547 + - uid: 30201 components: - type: Transform - pos: 22.5,-50.5 + pos: 31.5,-32.5 parent: 2 - - uid: 29548 + - uid: 30202 components: - type: Transform - pos: 19.5,-42.5 + pos: 30.5,-32.5 parent: 2 - - uid: 29549 + - uid: 30203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-46.5 + pos: 29.5,-32.5 parent: 2 - - uid: 29550 + - uid: 30204 components: - type: Transform - pos: 44.5,-57.5 + pos: 48.5,-47.5 parent: 2 - - uid: 29551 + - uid: 30205 components: - type: Transform - pos: 42.5,-56.5 + pos: 54.5,-56.5 parent: 2 - - uid: 29552 + - uid: 30206 components: - type: Transform - pos: 49.5,-56.5 + pos: 54.5,-57.5 parent: 2 - - uid: 29553 + - uid: 30207 components: - type: Transform - pos: 43.5,-56.5 + pos: 54.5,-55.5 parent: 2 - - uid: 29554 + - uid: 30208 components: - type: Transform - pos: 41.5,-56.5 + pos: 44.5,-56.5 parent: 2 - - uid: 29555 + - uid: 30209 components: - type: Transform - pos: 44.5,-59.5 + pos: 43.5,-59.5 parent: 2 - - uid: 29556 + - uid: 30210 components: - type: Transform - pos: 15.5,-50.5 + rot: -1.5707963267948966 rad + pos: -25.5,-37.5 parent: 2 - - uid: 29557 + - uid: 30211 components: - type: Transform - pos: 15.5,-49.5 + pos: 43.5,-58.5 parent: 2 - - uid: 29558 + - uid: 30212 components: - type: Transform - pos: 19.5,-51.5 + pos: 48.5,-57.5 parent: 2 - - uid: 29559 + - uid: 30213 components: - type: Transform - pos: 40.5,-50.5 + pos: 53.5,-55.5 parent: 2 - - uid: 29560 + - uid: 30214 components: - type: Transform - pos: 21.5,-55.5 + pos: 42.5,-57.5 parent: 2 - - uid: 29561 + - uid: 30215 components: - type: Transform - pos: 34.5,-49.5 + pos: 49.5,-47.5 parent: 2 - - uid: 29562 + - uid: 30216 components: - type: Transform - pos: 34.5,-54.5 + pos: 43.5,-57.5 parent: 2 - - uid: 29563 + - uid: 30217 components: - type: Transform - pos: 31.5,-50.5 + pos: 47.5,-47.5 parent: 2 - - uid: 29564 + - uid: 30218 components: - type: Transform - pos: 15.5,-51.5 + pos: 34.5,-56.5 parent: 2 - - uid: 29565 + - uid: 30219 components: - type: Transform - pos: 39.5,-50.5 + pos: 54.5,-59.5 parent: 2 - - uid: 29566 + - uid: 30220 components: - type: Transform - pos: 34.5,-55.5 + pos: 41.5,-50.5 parent: 2 - - uid: 29567 + - uid: 30221 components: - type: Transform - pos: 21.5,51.5 + pos: 44.5,-46.5 parent: 2 - - uid: 29568 + - uid: 30222 components: - type: Transform - pos: 18.5,65.5 + pos: 42.5,-37.5 parent: 2 - - uid: 29569 + - uid: 30223 components: - type: Transform - pos: 21.5,52.5 + pos: 38.5,-37.5 parent: 2 - - uid: 29570 + - uid: 30224 components: - type: Transform - pos: 15.5,61.5 + pos: 48.5,-58.5 parent: 2 - - uid: 29571 + - uid: 30225 components: - type: Transform - pos: 15.5,62.5 + pos: 49.5,-57.5 parent: 2 - - uid: 29572 + - uid: 30226 components: - type: Transform - pos: 22.5,61.5 + pos: 44.5,-58.5 parent: 2 - - uid: 29573 + - uid: 30227 components: - type: Transform - pos: 22.5,62.5 + pos: 54.5,-54.5 parent: 2 - - uid: 29574 + - uid: 30228 components: - type: Transform - pos: 6.5,59.5 + pos: 48.5,-56.5 parent: 2 - - uid: 29575 + - uid: 30229 components: - type: Transform - pos: 7.5,59.5 + pos: 54.5,-52.5 parent: 2 - - uid: 29576 + - uid: 30230 components: - type: Transform - pos: 7.5,61.5 + pos: 54.5,-53.5 parent: 2 - - uid: 29577 + - uid: 30231 components: - type: Transform - pos: 5.5,55.5 + pos: 54.5,-51.5 parent: 2 - - uid: 29578 + - uid: 30232 components: - type: Transform - pos: 7.5,60.5 + pos: 53.5,-54.5 parent: 2 - - uid: 29579 + - uid: 30233 components: - type: Transform - pos: 7.5,62.5 + pos: 53.5,-52.5 parent: 2 - - uid: 29580 + - uid: 30234 components: - type: Transform - pos: 10.5,55.5 + pos: 53.5,-53.5 parent: 2 - - uid: 29581 + - uid: 30235 components: - type: Transform - pos: 48.5,-59.5 + pos: 53.5,-51.5 parent: 2 - - uid: 29582 + - uid: 30236 components: - type: Transform - pos: 49.5,-58.5 + pos: 53.5,-58.5 parent: 2 - - uid: 29583 + - uid: 30237 components: - type: Transform - pos: 54.5,-58.5 + pos: 49.5,-59.5 parent: 2 - - uid: 29584 + - uid: 30238 components: - type: Transform - pos: 22.5,55.5 + pos: 53.5,-59.5 parent: 2 - - uid: 29585 + - uid: 30239 components: - type: Transform - pos: 25.5,-38.5 + pos: 53.5,-57.5 parent: 2 - - uid: 29586 + - uid: 30240 components: - type: Transform - pos: 29.5,-30.5 + rot: -1.5707963267948966 rad + pos: 48.5,-60.5 parent: 2 - - uid: 29587 + - uid: 30241 components: - type: Transform - pos: 29.5,-27.5 + rot: -1.5707963267948966 rad + pos: 49.5,-60.5 parent: 2 - - uid: 29588 + - uid: 30242 components: - type: Transform - pos: 25.5,-39.5 + pos: 44.5,-60.5 parent: 2 - - uid: 29589 + - uid: 30243 components: - type: Transform - pos: 25.5,-36.5 + pos: 43.5,-60.5 parent: 2 - - uid: 29590 + - uid: 30244 components: - type: Transform - pos: 25.5,-37.5 + pos: 44.5,-61.5 parent: 2 - - uid: 29591 + - uid: 30245 components: - type: Transform - pos: 29.5,-31.5 + rot: -1.5707963267948966 rad + pos: 48.5,-61.5 parent: 2 - - uid: 29592 + - uid: 30246 components: - type: Transform - pos: 25.5,-30.5 + rot: -1.5707963267948966 rad + pos: 49.5,-61.5 parent: 2 - - uid: 29593 + - uid: 30247 components: - type: Transform - pos: 25.5,-27.5 + pos: 53.5,-61.5 parent: 2 - - uid: 29594 + - uid: 30248 components: - type: Transform - pos: 33.5,-44.5 + pos: 53.5,-60.5 parent: 2 - - uid: 29595 + - uid: 30249 components: - type: Transform - pos: 22.5,-44.5 + pos: 54.5,-60.5 parent: 2 - - uid: 29596 + - uid: 30250 components: - type: Transform - pos: 18.5,-42.5 + rot: -1.5707963267948966 rad + pos: 47.5,-61.5 parent: 2 - - uid: 29597 + - uid: 30251 components: - type: Transform - pos: 31.5,-44.5 + rot: -1.5707963267948966 rad + pos: 46.5,-61.5 parent: 2 - - uid: 29598 + - uid: 30252 components: - type: Transform - pos: 29.5,-44.5 + rot: -1.5707963267948966 rad + pos: 46.5,-60.5 parent: 2 - - uid: 29599 + - uid: 30253 components: - type: Transform - pos: 34.5,-47.5 + rot: -1.5707963267948966 rad + pos: 45.5,-61.5 parent: 2 - - uid: 29600 + - uid: 30254 components: - type: Transform - pos: 20.5,-39.5 + rot: -1.5707963267948966 rad + pos: 52.5,-60.5 parent: 2 - - uid: 29601 + - uid: 30255 components: - type: Transform - pos: 25.5,-44.5 + rot: -1.5707963267948966 rad + pos: 50.5,-61.5 parent: 2 - - uid: 29602 + - uid: 30256 components: - type: Transform - pos: 34.5,-43.5 + rot: -1.5707963267948966 rad + pos: 50.5,-60.5 parent: 2 - - uid: 29603 + - uid: 30257 components: - type: Transform - pos: 34.5,-45.5 + rot: -1.5707963267948966 rad + pos: 47.5,-60.5 parent: 2 - - uid: 29604 + - uid: 30258 components: - type: Transform - pos: 21.5,-39.5 + rot: -1.5707963267948966 rad + pos: 45.5,-60.5 parent: 2 - - uid: 29605 + - uid: 30259 components: - type: Transform - pos: 23.5,-39.5 + rot: -1.5707963267948966 rad + pos: 51.5,-61.5 parent: 2 - - uid: 29606 + - uid: 30260 components: - type: Transform - pos: 26.5,-27.5 + rot: -1.5707963267948966 rad + pos: 51.5,-60.5 parent: 2 - - uid: 29607 + - uid: 30261 components: - type: Transform - pos: 25.5,-58.5 + rot: 3.141592653589793 rad + pos: 46.5,-51.5 parent: 2 - - uid: 29608 + - uid: 30262 components: - type: Transform - pos: 32.5,-44.5 + rot: 3.141592653589793 rad + pos: 47.5,-51.5 parent: 2 - - uid: 29609 + - uid: 30263 components: - type: Transform - pos: 21.5,-44.5 + rot: 3.141592653589793 rad + pos: 52.5,-51.5 parent: 2 - - uid: 29610 + - uid: 30264 components: - type: Transform - pos: 34.5,-44.5 + rot: 3.141592653589793 rad + pos: 51.5,-51.5 parent: 2 - - uid: 29611 + - uid: 30265 components: - type: Transform - pos: 28.5,-27.5 + rot: 3.141592653589793 rad + pos: 49.5,-51.5 parent: 2 - - uid: 29612 + - uid: 30266 components: - type: Transform - pos: 34.5,-32.5 + rot: 3.141592653589793 rad + pos: 48.5,-51.5 parent: 2 - - uid: 29613 + - uid: 30267 components: - type: Transform - pos: 34.5,-34.5 + rot: -1.5707963267948966 rad + pos: 33.5,-55.5 parent: 2 - - uid: 29614 + - uid: 30268 components: - type: Transform - pos: 34.5,-35.5 + rot: -1.5707963267948966 rad + pos: 32.5,-55.5 parent: 2 - - uid: 29615 + - uid: 30269 components: - type: Transform - pos: 34.5,-36.5 + rot: 3.141592653589793 rad + pos: 20.5,-48.5 parent: 2 - - uid: 29616 + - uid: 30270 components: - type: Transform - pos: 34.5,-37.5 + rot: 1.5707963267948966 rad + pos: 35.5,-51.5 parent: 2 - - uid: 29617 + - uid: 30271 components: - type: Transform - pos: 28.5,-36.5 + rot: 1.5707963267948966 rad + pos: 39.5,-51.5 parent: 2 - - uid: 29618 + - uid: 30272 components: - type: Transform - pos: 34.5,-42.5 + pos: -9.5,-71.5 parent: 2 - - uid: 29619 + - uid: 30273 components: - type: Transform - pos: 20.5,-45.5 + pos: -2.5,-71.5 parent: 2 - - uid: 29620 + - uid: 30274 components: - type: Transform - pos: 20.5,-42.5 + pos: -4.5,-70.5 parent: 2 - - uid: 29621 + - uid: 30275 components: - type: Transform - pos: 40.5,-51.5 + pos: -4.5,-71.5 parent: 2 - - uid: 29622 + - uid: 30276 components: - type: Transform - pos: 20.5,-44.5 + pos: -0.5,-70.5 parent: 2 - - uid: 29623 + - uid: 30277 components: - type: Transform - pos: 40.5,-44.5 + pos: -0.5,-71.5 parent: 2 - - uid: 29624 + - uid: 30278 components: - type: Transform - pos: 35.5,-44.5 + rot: 1.5707963267948966 rad + pos: 1.5,-67.5 parent: 2 - - uid: 29625 + - uid: 30279 components: - type: Transform - pos: 40.5,-55.5 + pos: -20.5,-70.5 parent: 2 - - uid: 29626 + - uid: 30280 components: - type: Transform - pos: 34.5,-41.5 + pos: -20.5,-71.5 parent: 2 - - uid: 29627 + - uid: 30281 components: - type: Transform - pos: 34.5,-39.5 + pos: -16.5,-70.5 parent: 2 - - uid: 29628 + - uid: 30282 components: - type: Transform - pos: 34.5,-40.5 + pos: -16.5,-71.5 parent: 2 - - uid: 29629 + - uid: 30283 components: - type: Transform - pos: 40.5,-56.5 + pos: -12.5,-70.5 parent: 2 - - uid: 29630 + - uid: 30284 components: - type: Transform - pos: 40.5,-54.5 + pos: -12.5,-71.5 parent: 2 - - uid: 29631 + - uid: 30285 components: - type: Transform - pos: 38.5,-33.5 + pos: -8.5,-70.5 parent: 2 - - uid: 29632 + - uid: 30286 components: - type: Transform - pos: 42.5,-36.5 + pos: -8.5,-71.5 parent: 2 - - uid: 29633 + - uid: 30287 components: - type: Transform - pos: 40.5,-53.5 + pos: -5.5,-71.5 parent: 2 - - uid: 29634 + - uid: 30288 components: - type: Transform - pos: 39.5,-55.5 + pos: -6.5,-71.5 parent: 2 - - uid: 29635 + - uid: 30289 components: - type: Transform - pos: 40.5,-52.5 + pos: -7.5,-71.5 parent: 2 - - uid: 29636 + - uid: 30290 components: - type: Transform - pos: 35.5,-55.5 + pos: -19.5,-71.5 parent: 2 - - uid: 29637 + - uid: 30291 components: - type: Transform - pos: 34.5,-38.5 + pos: 8.5,-6.5 parent: 2 - - uid: 29638 + - uid: 30292 components: - type: Transform - pos: 29.5,-36.5 + rot: -1.5707963267948966 rad + pos: 19.5,-8.5 parent: 2 - - uid: 29639 + - uid: 30293 components: - type: Transform - pos: 24.5,-39.5 + rot: 1.5707963267948966 rad + pos: 2.5,-71.5 parent: 2 - - uid: 29640 + - uid: 30294 components: - type: Transform - pos: 19.5,-36.5 + rot: 1.5707963267948966 rad + pos: 19.5,2.5 parent: 2 - - uid: 29641 + - uid: 30295 components: - type: Transform - pos: 16.5,-36.5 + rot: 1.5707963267948966 rad + pos: 0.5,-71.5 parent: 2 - - uid: 29642 + - uid: 30296 components: - type: Transform - pos: 46.5,-49.5 + rot: 1.5707963267948966 rad + pos: 1.5,-71.5 parent: 2 - - uid: 29643 + - uid: 30297 components: - type: Transform - pos: 46.5,-47.5 + rot: 1.5707963267948966 rad + pos: 3.5,-71.5 parent: 2 - - uid: 29644 + - uid: 30298 components: - type: Transform - pos: 46.5,-48.5 + rot: 1.5707963267948966 rad + pos: 3.5,-70.5 parent: 2 - - uid: 29645 + - uid: 30299 components: - type: Transform - pos: 15.5,-35.5 + rot: 1.5707963267948966 rad + pos: 3.5,-69.5 parent: 2 - - uid: 29646 + - uid: 30300 components: - type: Transform - pos: 15.5,-34.5 + rot: 1.5707963267948966 rad + pos: 3.5,-68.5 parent: 2 - - uid: 29647 + - uid: 30301 components: - type: Transform - pos: 15.5,-33.5 + rot: -1.5707963267948966 rad + pos: -10.5,-57.5 parent: 2 - - uid: 29648 + - uid: 30302 components: - type: Transform - pos: 15.5,-32.5 + rot: -1.5707963267948966 rad + pos: 7.5,-57.5 parent: 2 - - uid: 29649 + - uid: 30303 components: - type: Transform - pos: 29.5,-55.5 + rot: -1.5707963267948966 rad + pos: 5.5,-57.5 parent: 2 - - uid: 29650 + - uid: 30304 components: - type: Transform - pos: 15.5,-36.5 + rot: -1.5707963267948966 rad + pos: 9.5,-57.5 parent: 2 - - uid: 29651 + - uid: 30305 components: - type: Transform - pos: 13.5,-38.5 + pos: 9.5,-51.5 parent: 2 - - uid: 29652 + - uid: 30306 components: - type: Transform - pos: 18.5,-36.5 + rot: 3.141592653589793 rad + pos: -14.5,-35.5 parent: 2 - - uid: 29653 + - uid: 30307 components: - type: Transform - pos: 41.5,-55.5 + pos: 15.5,-13.5 parent: 2 - - uid: 29654 + - uid: 30308 components: - type: Transform - pos: 34.5,-51.5 + pos: 31.5,-58.5 parent: 2 - - uid: 29655 + - uid: 30309 components: - type: Transform - pos: 17.5,-42.5 + pos: 32.5,-58.5 parent: 2 - - uid: 29656 + - uid: 30310 components: - type: Transform - pos: 15.5,-43.5 + rot: 1.5707963267948966 rad + pos: 30.5,-58.5 parent: 2 - - uid: 29657 + - uid: 30311 components: - type: Transform - pos: 16.5,-42.5 + rot: 1.5707963267948966 rad + pos: 8.5,17.5 parent: 2 - - uid: 29658 + - uid: 30312 components: - type: Transform - pos: 14.5,66.5 + pos: 31.5,-55.5 parent: 2 - - uid: 29659 + - uid: 30313 components: - type: Transform - pos: 16.5,65.5 + pos: -4.5,17.5 parent: 2 - - uid: 29660 + - uid: 30314 components: - type: Transform - pos: 24.5,50.5 + pos: 32.5,-56.5 parent: 2 - - uid: 29661 + - uid: 30315 components: - type: Transform - pos: 23.5,62.5 + pos: -8.5,16.5 parent: 2 - - uid: 29662 + - uid: 30316 components: - type: Transform - pos: 24.5,62.5 + pos: -8.5,15.5 parent: 2 - - uid: 29663 + - uid: 30317 components: - type: Transform - pos: 25.5,62.5 + pos: -8.5,14.5 parent: 2 - - uid: 29664 + - uid: 30318 components: - type: Transform - pos: 26.5,62.5 + pos: 32.5,-57.5 parent: 2 - - uid: 29665 + - uid: 30319 components: - type: Transform - pos: 27.5,62.5 + pos: -2.5,15.5 parent: 2 - - uid: 29666 + - uid: 30320 components: - type: Transform - pos: 28.5,62.5 + pos: 14.5,6.5 parent: 2 - - uid: 29667 + - uid: 30321 components: - type: Transform - pos: 29.5,62.5 + pos: 14.5,5.5 parent: 2 - - uid: 29668 + - uid: 30322 components: - type: Transform - pos: 12.5,49.5 + rot: 1.5707963267948966 rad + pos: -13.5,10.5 parent: 2 - - uid: 29669 + - uid: 30323 components: - type: Transform - pos: 16.5,49.5 + rot: 1.5707963267948966 rad + pos: -13.5,11.5 parent: 2 - - uid: 29670 + - uid: 30324 components: - type: Transform - pos: 30.5,62.5 + rot: 1.5707963267948966 rad + pos: -12.5,11.5 parent: 2 - - uid: 29671 + - uid: 30325 components: - type: Transform - pos: 30.5,61.5 + rot: 3.141592653589793 rad + pos: -35.5,5.5 parent: 2 - - uid: 29672 + - uid: 30326 components: - type: Transform - pos: 15.5,49.5 + pos: 13.5,59.5 parent: 2 - - uid: 29673 + - uid: 30327 components: - type: Transform - pos: 14.5,49.5 + pos: 14.5,55.5 parent: 2 - - uid: 29674 + - uid: 30328 components: - type: Transform - pos: 13.5,49.5 + pos: 11.5,55.5 parent: 2 - - uid: 29675 + - uid: 30329 components: - type: Transform - pos: 17.5,65.5 + pos: 12.5,59.5 parent: 2 - - uid: 29676 + - uid: 30330 components: - type: Transform - pos: 20.5,-49.5 + pos: 12.5,55.5 parent: 2 - - uid: 29677 + - uid: 30331 components: - type: Transform - pos: 20.5,-50.5 + pos: 14.5,52.5 parent: 2 - - uid: 29678 + - uid: 30332 components: - type: Transform - pos: 3.5,55.5 + pos: 11.5,62.5 parent: 2 - - uid: 29679 + - uid: 30333 components: - type: Transform - pos: 3.5,59.5 + pos: 11.5,52.5 parent: 2 - - uid: 29680 + - uid: 30334 components: - type: Transform - pos: 5.5,59.5 + pos: 16.5,52.5 parent: 2 - - uid: 29681 + - uid: 30335 components: - type: Transform - pos: 29.5,-57.5 + pos: 12.5,52.5 parent: 2 - - uid: 29682 + - uid: 30336 components: - type: Transform - pos: 30.5,-55.5 + pos: 10.5,52.5 parent: 2 - - uid: 29683 + - uid: 30337 components: - type: Transform - pos: 9.5,54.5 + pos: 11.5,63.5 parent: 2 - - uid: 29684 + - uid: 30338 components: - type: Transform - pos: 33.5,-50.5 + pos: 11.5,64.5 parent: 2 - - uid: 29685 + - uid: 30339 components: - type: Transform - pos: 23.5,-55.5 + pos: -45.5,8.5 parent: 2 - - uid: 29686 + - uid: 30340 components: - type: Transform - pos: 20.5,-38.5 + rot: 3.141592653589793 rad + pos: -31.5,5.5 parent: 2 - - uid: 29687 + - uid: 30341 components: - type: Transform - pos: 25.5,-55.5 + pos: -39.5,8.5 parent: 2 - - uid: 29688 + - uid: 30342 components: - type: Transform - pos: 26.5,-55.5 + pos: -39.5,4.5 parent: 2 - - uid: 29689 + - uid: 30343 components: - type: Transform - pos: 30.5,-50.5 + pos: -39.5,3.5 parent: 2 - - uid: 29690 + - uid: 30344 components: - type: Transform - pos: 21.5,53.5 + pos: -43.5,9.5 parent: 2 - - uid: 29691 + - uid: 30345 components: - type: Transform - pos: 21.5,54.5 + pos: -45.5,4.5 parent: 2 - - uid: 29692 + - uid: 30346 components: - type: Transform - pos: 21.5,50.5 + pos: -45.5,5.5 parent: 2 - - uid: 29693 + - uid: 30347 components: - type: Transform - pos: 22.5,59.5 + pos: -45.5,6.5 parent: 2 - - uid: 29694 + - uid: 30348 components: - type: Transform - pos: 22.5,60.5 + pos: -41.5,9.5 parent: 2 - - uid: 29695 + - uid: 30349 components: - type: Transform - pos: 22.5,50.5 + pos: -39.5,7.5 parent: 2 - - uid: 29696 + - uid: 30350 components: - type: Transform - pos: 9.5,53.5 + pos: -45.5,7.5 parent: 2 - - uid: 29697 + - uid: 30351 components: - type: Transform - pos: 8.5,55.5 + pos: -45.5,3.5 parent: 2 - - uid: 29698 + - uid: 30352 components: - type: Transform - pos: 17.5,54.5 + pos: -39.5,6.5 parent: 2 - - uid: 29699 + - uid: 30353 components: - type: Transform - pos: 11.5,66.5 + pos: -39.5,5.5 parent: 2 - - uid: 29700 + - uid: 30354 components: - type: Transform - pos: 17.5,55.5 + pos: -45.5,1.5 parent: 2 - - uid: 29701 + - uid: 30355 components: - type: Transform - pos: 15.5,66.5 + pos: -45.5,-0.5 parent: 2 - - uid: 29702 + - uid: 30356 components: - type: Transform - pos: 26.5,50.5 + pos: -45.5,0.5 parent: 2 - - uid: 29703 + - uid: 30357 components: - type: Transform - pos: 15.5,65.5 + pos: -45.5,2.5 parent: 2 - - uid: 29704 + - uid: 30358 components: - type: Transform - pos: 8.5,59.5 + pos: -44.5,9.5 parent: 2 - - uid: 29705 + - uid: 30359 components: - type: Transform - pos: 9.5,55.5 + pos: -42.5,9.5 parent: 2 - - uid: 29706 + - uid: 30360 components: - type: Transform - pos: 13.5,66.5 + pos: -40.5,5.5 parent: 2 - - uid: 29707 + - uid: 30361 components: - type: Transform - pos: 10.5,66.5 + pos: -44.5,5.5 parent: 2 - - uid: 29708 + - uid: 30362 components: - type: Transform - pos: 8.5,66.5 + pos: -43.5,5.5 parent: 2 - - uid: 29709 + - uid: 30363 components: - type: Transform - pos: 7.5,65.5 + pos: -42.5,5.5 parent: 2 - - uid: 29710 + - uid: 30364 components: - type: Transform - pos: 7.5,64.5 + pos: -37.5,-5.5 parent: 2 - - uid: 29711 + - uid: 30365 components: - type: Transform - pos: 7.5,63.5 + pos: -45.5,-5.5 parent: 2 - - uid: 29712 + - uid: 30366 components: - type: Transform - pos: 15.5,64.5 + rot: -1.5707963267948966 rad + pos: -44.5,-5.5 parent: 2 - - uid: 29713 + - uid: 30367 components: - type: Transform - pos: 21.5,55.5 + pos: -19.5,-43.5 parent: 2 - - uid: 29714 + - uid: 30368 components: - type: Transform - pos: 13.5,-39.5 + pos: -18.5,-16.5 parent: 2 - - uid: 29715 + - uid: 30369 components: - type: Transform - pos: 22.5,58.5 + pos: -18.5,-15.5 parent: 2 - - uid: 29716 + - uid: 30370 components: - type: Transform - pos: 9.5,52.5 + pos: -26.5,0.5 parent: 2 - - uid: 29717 + - uid: 30371 components: - type: Transform - pos: 9.5,66.5 + pos: -48.5,-16.5 parent: 2 - - uid: 29718 + - uid: 30372 components: - type: Transform - pos: 12.5,66.5 + rot: 3.141592653589793 rad + pos: -11.5,54.5 parent: 2 - - uid: 29719 + - uid: 30373 components: - type: Transform - pos: 7.5,66.5 + pos: -37.5,9.5 parent: 2 - - uid: 29720 + - uid: 30374 components: - type: Transform - pos: 22.5,56.5 + pos: -50.5,-11.5 parent: 2 - - uid: 29721 + - uid: 30375 components: - type: Transform - pos: 15.5,-45.5 + pos: -50.5,-7.5 parent: 2 - - uid: 29722 + - uid: 30376 components: - type: Transform - pos: 9.5,50.5 + pos: -50.5,-8.5 parent: 2 - - uid: 29723 + - uid: 30377 components: - type: Transform - pos: 20.5,-54.5 + pos: -50.5,-9.5 parent: 2 - - uid: 29724 + - uid: 30378 components: - type: Transform - pos: 20.5,-52.5 + pos: -50.5,-10.5 parent: 2 - - uid: 29725 + - uid: 30379 components: - type: Transform - pos: 20.5,-53.5 + pos: -50.5,-12.5 parent: 2 - - uid: 29726 + - uid: 30380 components: - type: Transform - pos: 26.5,-51.5 + pos: -50.5,-13.5 parent: 2 - - uid: 29727 + - uid: 30381 components: - type: Transform - pos: 20.5,-55.5 + pos: -50.5,-14.5 parent: 2 - - uid: 29728 + - uid: 30382 components: - type: Transform - pos: 26.5,-53.5 + pos: -50.5,-15.5 parent: 2 - - uid: 29729 + - uid: 30383 components: - type: Transform - pos: 25.5,-56.5 + pos: -50.5,-16.5 parent: 2 - - uid: 29730 + - uid: 30384 components: - type: Transform - pos: 26.5,-54.5 + pos: -50.5,-5.5 parent: 2 - - uid: 29731 + - uid: 30385 components: - type: Transform - pos: 34.5,-52.5 + pos: -49.5,-16.5 parent: 2 - - uid: 29732 + - uid: 30386 components: - type: Transform - pos: 46.5,-43.5 + pos: -50.5,-6.5 parent: 2 - - uid: 29733 + - uid: 30387 components: - type: Transform - pos: 43.5,-46.5 + rot: 3.141592653589793 rad + pos: -16.5,57.5 parent: 2 - - uid: 29734 + - uid: 30388 components: - type: Transform - pos: 46.5,-46.5 + rot: 3.141592653589793 rad + pos: -11.5,59.5 parent: 2 - - uid: 29735 + - uid: 30389 components: - type: Transform - pos: 38.5,-44.5 + rot: 3.141592653589793 rad + pos: -11.5,57.5 parent: 2 - - uid: 29736 + - uid: 30390 components: - type: Transform - pos: 43.5,-50.5 + rot: 3.141592653589793 rad + pos: -11.5,60.5 parent: 2 - - uid: 29737 + - uid: 30391 components: - type: Transform - pos: 46.5,-38.5 + pos: -54.5,9.5 parent: 2 - - uid: 29738 + - uid: 30392 components: - type: Transform - pos: 39.5,-44.5 + rot: -1.5707963267948966 rad + pos: 52.5,-61.5 parent: 2 - - uid: 29739 + - uid: 30393 components: - type: Transform - pos: 46.5,-37.5 + rot: 3.141592653589793 rad + pos: -7.5,62.5 parent: 2 - - uid: 29740 + - uid: 30394 components: - type: Transform - pos: 46.5,-36.5 + rot: 3.141592653589793 rad + pos: -25.5,1.5 parent: 2 - - uid: 29741 + - uid: 30395 components: - type: Transform - pos: 46.5,-42.5 + rot: 3.141592653589793 rad + pos: -25.5,2.5 parent: 2 - - uid: 29742 + - uid: 30396 components: - type: Transform - pos: 46.5,-39.5 + pos: -31.5,-46.5 parent: 2 - - uid: 29743 + - uid: 30397 components: - type: Transform - pos: 46.5,-41.5 + pos: -47.5,-16.5 parent: 2 - - uid: 29744 + - uid: 30398 components: - type: Transform - pos: 46.5,-40.5 + pos: -46.5,-16.5 parent: 2 - - uid: 29745 + - uid: 30399 components: - type: Transform - pos: 46.5,-50.5 + pos: -45.5,-16.5 parent: 2 - - uid: 29746 + - uid: 30400 components: - type: Transform - pos: 29.5,-41.5 + rot: 1.5707963267948966 rad + pos: -39.5,-20.5 parent: 2 - - uid: 29747 + - uid: 30401 components: - type: Transform - pos: 45.5,-36.5 + rot: 3.141592653589793 rad + pos: 29.5,-29.5 parent: 2 - - uid: 29748 + - uid: 30402 components: - type: Transform - pos: 43.5,-36.5 + rot: 1.5707963267948966 rad + pos: -0.5,-32.5 parent: 2 - - uid: 29749 + - uid: 30403 components: - type: Transform - pos: 44.5,-36.5 + rot: 1.5707963267948966 rad + pos: -2.5,-30.5 parent: 2 - - uid: 29750 + - uid: 30404 components: - type: Transform - pos: 27.5,-54.5 + rot: 1.5707963267948966 rad + pos: -0.5,-33.5 parent: 2 - - uid: 29751 + - uid: 30405 components: - type: Transform - pos: 20.5,-51.5 + rot: 3.141592653589793 rad + pos: 21.5,-25.5 parent: 2 - - uid: 29752 + - uid: 30406 components: - type: Transform - pos: 17.5,-51.5 + rot: 3.141592653589793 rad + pos: 29.5,-28.5 parent: 2 - - uid: 29753 + - uid: 30407 components: - type: Transform - pos: 16.5,-51.5 + rot: 1.5707963267948966 rad + pos: -0.5,-31.5 parent: 2 - - uid: 29754 + - uid: 30408 components: - type: Transform - pos: 15.5,-42.5 + rot: 3.141592653589793 rad + pos: 21.5,-28.5 parent: 2 - - uid: 29755 + - uid: 30409 components: - type: Transform - pos: 18.5,-51.5 + pos: 12.5,-47.5 parent: 2 - - uid: 29756 + - uid: 30410 components: - type: Transform - pos: 15.5,-44.5 + pos: 12.5,-46.5 parent: 2 - - uid: 29757 + - uid: 30411 components: - type: Transform - pos: 17.5,-36.5 + pos: 12.5,-45.5 parent: 2 - - uid: 29758 + - uid: 30412 components: - type: Transform - pos: 29.5,-54.5 + pos: 11.5,-47.5 parent: 2 - - uid: 29759 + - uid: 30413 components: - type: Transform - pos: 35.5,-33.5 + pos: 10.5,-47.5 parent: 2 - - uid: 29760 + - uid: 30414 components: - type: Transform - pos: 36.5,-33.5 + pos: 12.5,-44.5 parent: 2 - - uid: 29761 + - uid: 30415 components: - type: Transform - pos: 37.5,-33.5 + pos: 9.5,49.5 parent: 2 - - uid: 29762 + - uid: 30416 components: - type: Transform - pos: 17.5,2.5 + pos: 11.5,49.5 parent: 2 - - uid: 29763 + - uid: 30417 components: - type: Transform - pos: 18.5,2.5 + pos: 10.5,49.5 parent: 2 - - uid: 29764 + - uid: 30418 components: - type: Transform - pos: -13.5,2.5 + rot: 3.141592653589793 rad + pos: 21.5,-27.5 parent: 2 - - uid: 29765 + - uid: 30419 components: - type: Transform - pos: -12.5,2.5 + rot: 3.141592653589793 rad + pos: 21.5,-26.5 parent: 2 - - uid: 29766 + - uid: 30420 components: - type: Transform - pos: 3.5,58.5 + rot: 1.5707963267948966 rad + pos: -1.5,-30.5 parent: 2 - - uid: 29767 + - uid: 30421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,16.5 + rot: 1.5707963267948966 rad + pos: -0.5,-30.5 parent: 2 - - uid: 29768 + - uid: 30422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,16.5 + pos: -17.5,56.5 parent: 2 - - uid: 29769 + - uid: 30423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,15.5 + pos: -19.5,56.5 parent: 2 - - uid: 29770 + - uid: 30424 components: - type: Transform - pos: 3.5,56.5 + pos: -19.5,57.5 parent: 2 - - uid: 29771 + - uid: 30425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,15.5 + pos: -3.5,39.5 parent: 2 - - uid: 29772 + - uid: 30426 components: - type: Transform - pos: 43.5,30.5 + pos: -5.5,37.5 parent: 2 - - uid: 29773 + - uid: 30427 components: - type: Transform - pos: 43.5,27.5 + pos: -6.5,37.5 parent: 2 - - uid: 29774 + - uid: 30428 components: - type: Transform - pos: 44.5,30.5 + pos: -7.5,37.5 parent: 2 - - uid: 29775 + - uid: 30429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,14.5 + pos: -11.5,37.5 parent: 2 - - uid: 29776 + - uid: 30430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 + rot: 1.5707963267948966 rad + pos: -3.5,-30.5 parent: 2 - - uid: 29777 + - uid: 30431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,9.5 + rot: 1.5707963267948966 rad + pos: -5.5,-30.5 parent: 2 - - uid: 29778 + - uid: 30432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,17.5 + rot: 1.5707963267948966 rad + pos: -4.5,-30.5 parent: 2 - - uid: 29779 + - uid: 30433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,8.5 + rot: 1.5707963267948966 rad + pos: -6.5,-30.5 parent: 2 - - uid: 29780 + - uid: 30434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,17.5 + pos: -19.5,58.5 parent: 2 - - uid: 29781 + - uid: 30435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,17.5 + pos: -3.5,43.5 parent: 2 - - uid: 29782 + - uid: 30436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,12.5 + pos: -3.5,38.5 parent: 2 - - uid: 29783 + - uid: 30437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,17.5 + pos: -5.5,45.5 parent: 2 - - uid: 29784 + - uid: 30438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,17.5 + pos: -4.5,37.5 parent: 2 - - uid: 29785 + - uid: 30439 components: - type: Transform - pos: 45.5,30.5 + pos: -9.5,45.5 parent: 2 - - uid: 29786 + - uid: 30440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,12.5 + pos: -11.5,43.5 parent: 2 - - uid: 29787 + - uid: 30441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,17.5 + pos: -11.5,44.5 parent: 2 - - uid: 29788 + - uid: 30442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,17.5 + pos: -11.5,45.5 parent: 2 - - uid: 29789 + - uid: 30443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,17.5 + pos: -3.5,37.5 parent: 2 - - uid: 29790 + - uid: 30444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,17.5 + pos: -3.5,44.5 parent: 2 - - uid: 29791 + - uid: 30445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 + pos: -3.5,45.5 parent: 2 - - uid: 29792 + - uid: 30446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,17.5 + pos: -3.5,46.5 parent: 2 - - uid: 29793 + - uid: 30447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,16.5 + pos: -11.5,46.5 parent: 2 - - uid: 29794 + - uid: 30448 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,16.5 + pos: -11.5,49.5 parent: 2 - - uid: 29795 + - uid: 30449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,17.5 + pos: -11.5,38.5 parent: 2 - - uid: 29796 + - uid: 30450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,17.5 + pos: -11.5,41.5 parent: 2 - - uid: 29797 + - uid: 30451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 + pos: -11.5,40.5 parent: 2 - - uid: 29798 + - uid: 30452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,9.5 + pos: -11.5,39.5 parent: 2 - - uid: 29799 + - uid: 30453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 + pos: -9.5,37.5 parent: 2 - - uid: 29800 + - uid: 30454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 + pos: -8.5,37.5 parent: 2 - - uid: 29801 + - uid: 30455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 + pos: -10.5,45.5 parent: 2 - - uid: 29802 + - uid: 30456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 + pos: -11.5,42.5 parent: 2 - - uid: 29803 + - uid: 30457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 + rot: 3.141592653589793 rad + pos: 25.5,-25.5 parent: 2 - - uid: 29804 + - uid: 30458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 + rot: 3.141592653589793 rad + pos: 25.5,-26.5 parent: 2 - - uid: 29805 + - uid: 30459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 + pos: -10.5,37.5 parent: 2 - - uid: 29806 + - uid: 30460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,9.5 + pos: -17.5,61.5 parent: 2 - - uid: 29807 + - uid: 30461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,13.5 + pos: -18.5,61.5 parent: 2 - - uid: 29808 + - uid: 30462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,14.5 + rot: 3.141592653589793 rad + pos: -19.5,61.5 parent: 2 - - uid: 29809 + - uid: 30463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 + pos: -19.5,60.5 parent: 2 - - uid: 29810 + - uid: 30464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 + pos: -6.5,54.5 parent: 2 - - uid: 29811 + - uid: 30465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,8.5 + rot: 3.141592653589793 rad + pos: -26.5,-11.5 parent: 2 - - uid: 29812 + - uid: 30466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 + pos: 9.5,51.5 parent: 2 - - uid: 29813 + - uid: 30467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,10.5 + pos: -34.5,-18.5 parent: 2 - - uid: 29814 + - uid: 30468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,9.5 + pos: -7.5,17.5 parent: 2 - - uid: 29815 + - uid: 30469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,9.5 + pos: -6.5,17.5 parent: 2 - - uid: 29816 + - uid: 30470 components: - type: Transform - pos: 43.5,28.5 + pos: -5.5,17.5 parent: 2 - - uid: 29817 + - uid: 30471 components: - type: Transform - pos: 43.5,29.5 + pos: 10.5,16.5 parent: 2 - - uid: 29818 + - uid: 30472 components: - type: Transform - pos: 45.5,28.5 + rot: 1.5707963267948966 rad + pos: -45.5,-17.5 parent: 2 - - uid: 29819 + - uid: 30473 components: - type: Transform - pos: 44.5,26.5 + rot: 1.5707963267948966 rad + pos: -45.5,-18.5 parent: 2 - - uid: 29820 + - uid: 30474 components: - type: Transform - pos: 43.5,26.5 + rot: 1.5707963267948966 rad + pos: -45.5,-19.5 parent: 2 - - uid: 29821 + - uid: 30475 components: - type: Transform - pos: 45.5,27.5 + rot: 1.5707963267948966 rad + pos: -45.5,-20.5 parent: 2 - - uid: 29822 + - uid: 30476 components: - type: Transform - pos: 45.5,26.5 + rot: 1.5707963267948966 rad + pos: -44.5,-20.5 parent: 2 - - uid: 29823 + - uid: 30477 components: - type: Transform - pos: 19.5,10.5 + pos: -30.5,17.5 parent: 2 - - uid: 29824 + - uid: 30478 components: - type: Transform - pos: 15.5,13.5 + pos: 12.5,16.5 parent: 2 - - uid: 29825 + - uid: 30479 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-2.5 + pos: 11.5,16.5 parent: 2 - - uid: 29826 + - uid: 30480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 + pos: -56.5,-7.5 parent: 2 - - uid: 29827 + - uid: 30481 components: - type: Transform - pos: 60.5,-6.5 + pos: -54.5,-7.5 parent: 2 - - uid: 29828 + - uid: 30482 components: - type: Transform - pos: 60.5,-4.5 + pos: -53.5,-7.5 parent: 2 - - uid: 29829 + - uid: 30483 components: - type: Transform - pos: 60.5,-5.5 + pos: -54.5,-6.5 parent: 2 - - uid: 29830 + - uid: 30484 components: - type: Transform - pos: 58.5,-4.5 + pos: -54.5,-5.5 parent: 2 - - uid: 29831 + - uid: 30485 components: - type: Transform - pos: 58.5,-6.5 + pos: -55.5,-7.5 parent: 2 - - uid: 29832 + - uid: 30486 components: - type: Transform - pos: 58.5,-5.5 + pos: -56.5,-6.5 parent: 2 - - uid: 29833 + - uid: 30487 components: - type: Transform - pos: 58.5,-3.5 + pos: -56.5,-5.5 parent: 2 - - uid: 29834 + - uid: 30488 components: - type: Transform - pos: 59.5,-3.5 + pos: -56.5,-4.5 parent: 2 - - uid: 29835 + - uid: 30489 components: - type: Transform - pos: 60.5,-3.5 + pos: -52.5,-7.5 parent: 2 - - uid: 29836 + - uid: 30490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-2.5 + pos: -51.5,-7.5 parent: 2 - - uid: 29837 + - uid: 30491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-2.5 + pos: -52.5,-6.5 parent: 2 - - uid: 29838 + - uid: 30492 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-4.5 + pos: 74.5,-26.5 parent: 2 - - uid: 29839 + - uid: 30493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-5.5 + rot: -1.5707963267948966 rad + pos: 52.5,-40.5 parent: 2 - - uid: 29840 + - uid: 30494 components: - type: Transform - pos: -11.5,-11.5 + rot: -1.5707963267948966 rad + pos: 50.5,-40.5 parent: 2 - - uid: 29841 + - uid: 30495 components: - type: Transform - pos: -11.5,-10.5 + rot: -1.5707963267948966 rad + pos: 52.5,-38.5 parent: 2 - - uid: 29842 + - uid: 30496 components: - type: Transform - pos: -11.5,-12.5 + rot: 1.5707963267948966 rad + pos: 76.5,-27.5 parent: 2 - - uid: 29843 + - uid: 30497 components: - type: Transform - pos: -11.5,-13.5 + rot: 1.5707963267948966 rad + pos: 76.5,-28.5 parent: 2 - - uid: 29844 + - uid: 30498 components: - type: Transform - pos: -8.5,-13.5 + rot: 1.5707963267948966 rad + pos: 75.5,-28.5 parent: 2 - - uid: 29845 + - uid: 30499 components: - type: Transform - pos: -5.5,-9.5 + rot: 1.5707963267948966 rad + pos: 73.5,-27.5 parent: 2 - - uid: 29846 + - uid: 30500 components: - type: Transform - pos: -8.5,-9.5 + rot: 1.5707963267948966 rad + pos: 73.5,-28.5 parent: 2 - - uid: 29847 + - uid: 30501 components: - type: Transform - pos: -13.5,-14.5 + rot: 1.5707963267948966 rad + pos: 76.5,-26.5 parent: 2 - - uid: 29848 + - uid: 30502 components: - type: Transform - pos: -23.5,3.5 + rot: 1.5707963267948966 rad + pos: 73.5,-26.5 parent: 2 - - uid: 29849 + - uid: 30503 components: - type: Transform - pos: -23.5,4.5 + rot: -1.5707963267948966 rad + pos: 50.5,-39.5 parent: 2 - - uid: 29850 + - uid: 30504 components: - type: Transform - pos: -23.5,5.5 + rot: -1.5707963267948966 rad + pos: 50.5,-38.5 parent: 2 - - uid: 29851 + - uid: 30505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 + rot: -1.5707963267948966 rad + pos: 53.5,-40.5 parent: 2 - - uid: 29852 + - uid: 30506 components: - type: Transform - pos: -12.5,-35.5 + rot: -1.5707963267948966 rad + pos: 53.5,-38.5 parent: 2 - - uid: 29853 + - uid: 30507 components: - type: Transform - pos: -13.5,-35.5 + rot: -1.5707963267948966 rad + pos: 53.5,-39.5 parent: 2 - - uid: 29854 + - uid: 30508 components: - type: Transform - pos: 20.5,-43.5 + pos: -19.5,17.5 parent: 2 - - uid: 29855 + - uid: 30509 components: - type: Transform - pos: 33.5,-32.5 + pos: -29.5,17.5 parent: 2 - - uid: 29856 + - uid: 30510 components: - type: Transform - pos: 31.5,-32.5 + rot: 1.5707963267948966 rad + pos: -38.5,-20.5 parent: 2 - - uid: 29857 + - uid: 30511 components: - type: Transform - pos: 30.5,-32.5 + rot: 1.5707963267948966 rad + pos: -37.5,-20.5 parent: 2 - - uid: 29858 + - uid: 30512 components: - type: Transform - pos: 29.5,-32.5 + rot: 1.5707963267948966 rad + pos: -36.5,-20.5 parent: 2 - - uid: 29859 + - uid: 30513 components: - type: Transform - pos: 48.5,-47.5 + rot: 1.5707963267948966 rad + pos: -35.5,-20.5 parent: 2 - - uid: 29860 + - uid: 30514 components: - type: Transform - pos: 54.5,-56.5 + rot: 1.5707963267948966 rad + pos: -41.5,-16.5 parent: 2 - - uid: 29861 + - uid: 30515 components: - type: Transform - pos: 54.5,-57.5 + rot: 1.5707963267948966 rad + pos: -40.5,-18.5 parent: 2 - - uid: 29862 + - uid: 30516 components: - type: Transform - pos: 54.5,-55.5 + rot: 1.5707963267948966 rad + pos: -40.5,-19.5 parent: 2 - - uid: 29863 + - uid: 30517 components: - type: Transform - pos: 44.5,-56.5 + pos: -52.5,-1.5 parent: 2 - - uid: 29864 + - uid: 30518 components: - type: Transform - pos: 43.5,-59.5 + pos: -53.5,-1.5 parent: 2 - - uid: 29865 + - uid: 30519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-37.5 + pos: -54.5,-1.5 parent: 2 - - uid: 29866 + - uid: 30520 components: - type: Transform - pos: 43.5,-58.5 + pos: -55.5,-1.5 parent: 2 - - uid: 29867 + - uid: 30521 components: - type: Transform - pos: 48.5,-57.5 + pos: -56.5,-1.5 parent: 2 - - uid: 29868 + - uid: 30522 components: - type: Transform - pos: 53.5,-55.5 + pos: -56.5,-2.5 parent: 2 - - uid: 29869 + - uid: 30523 components: - type: Transform - pos: 41.5,-57.5 + pos: -56.5,-3.5 parent: 2 - - uid: 29870 + - uid: 30524 components: - type: Transform - pos: 42.5,-57.5 + pos: -52.5,-5.5 parent: 2 - - uid: 29871 + - uid: 30525 components: - type: Transform - pos: 49.5,-47.5 + rot: -1.5707963267948966 rad + pos: -112.5,31.5 parent: 2 - - uid: 29872 + - uid: 30526 components: - type: Transform - pos: 43.5,-57.5 + rot: -1.5707963267948966 rad + pos: -98.5,19.5 parent: 2 - - uid: 29873 + - uid: 30527 components: - type: Transform - pos: 47.5,-47.5 + rot: -1.5707963267948966 rad + pos: -118.5,9.5 parent: 2 - - uid: 29874 + - uid: 30528 components: - type: Transform - pos: 34.5,-56.5 + rot: -1.5707963267948966 rad + pos: -114.5,13.5 parent: 2 - - uid: 29875 + - uid: 30529 components: - type: Transform - pos: 54.5,-59.5 + rot: -1.5707963267948966 rad + pos: -115.5,13.5 parent: 2 - - uid: 29876 + - uid: 30530 components: - type: Transform - pos: 41.5,-50.5 + rot: -1.5707963267948966 rad + pos: -118.5,3.5 parent: 2 - - uid: 29877 + - uid: 30531 components: - type: Transform - pos: 44.5,-46.5 + rot: -1.5707963267948966 rad + pos: -117.5,13.5 parent: 2 - - uid: 29878 + - uid: 30532 components: - type: Transform - pos: 42.5,-37.5 + rot: -1.5707963267948966 rad + pos: -116.5,9.5 parent: 2 - - uid: 29879 + - uid: 30533 components: - type: Transform - pos: 38.5,-37.5 + rot: -1.5707963267948966 rad + pos: -111.5,1.5 parent: 2 - - uid: 29880 + - uid: 30534 components: - type: Transform - pos: 48.5,-58.5 + rot: -1.5707963267948966 rad + pos: -112.5,13.5 parent: 2 - - uid: 29881 + - uid: 30535 components: - type: Transform - pos: 49.5,-57.5 + rot: -1.5707963267948966 rad + pos: -113.5,13.5 parent: 2 - - uid: 29882 + - uid: 30536 components: - type: Transform - pos: 44.5,-58.5 + pos: 53.5,-27.5 parent: 2 - - uid: 29883 + - uid: 30537 components: - type: Transform - pos: 54.5,-54.5 + pos: 55.5,-26.5 parent: 2 - - uid: 29884 + - uid: 30538 components: - type: Transform - pos: 48.5,-56.5 + pos: 55.5,-27.5 parent: 2 - - uid: 29885 + - uid: 30539 components: - type: Transform - pos: 54.5,-52.5 + pos: 53.5,-28.5 parent: 2 - - uid: 29886 + - uid: 30540 components: - type: Transform - pos: 54.5,-53.5 + pos: 54.5,-25.5 parent: 2 - - uid: 29887 + - uid: 30541 components: - type: Transform - pos: 54.5,-51.5 + pos: 53.5,-25.5 parent: 2 - - uid: 29888 + - uid: 30542 components: - type: Transform - pos: 53.5,-54.5 + pos: 55.5,-25.5 parent: 2 - - uid: 29889 + - uid: 30543 components: - type: Transform - pos: 53.5,-52.5 + pos: 54.5,-28.5 parent: 2 - - uid: 29890 + - uid: 30544 components: - type: Transform - pos: 53.5,-53.5 + pos: 55.5,-28.5 parent: 2 - - uid: 29891 + - uid: 30545 components: - type: Transform - pos: 53.5,-51.5 + rot: 3.141592653589793 rad + pos: -99.5,-9.5 parent: 2 - - uid: 29892 + - uid: 30546 components: - type: Transform - pos: 53.5,-58.5 + rot: 3.141592653589793 rad + pos: -99.5,-3.5 parent: 2 - - uid: 29893 + - uid: 30547 components: - type: Transform - pos: 49.5,-59.5 + rot: 3.141592653589793 rad + pos: -104.5,-9.5 parent: 2 - - uid: 29894 + - uid: 30548 components: - type: Transform - pos: 53.5,-59.5 + rot: 3.141592653589793 rad + pos: -100.5,-3.5 parent: 2 - - uid: 29895 + - uid: 30549 components: - type: Transform - pos: 53.5,-57.5 + rot: 3.141592653589793 rad + pos: -98.5,-3.5 parent: 2 - - uid: 29896 + - uid: 30550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-60.5 + rot: 3.141592653589793 rad + pos: -102.5,-3.5 parent: 2 - - uid: 29897 + - uid: 30551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-60.5 + rot: 3.141592653589793 rad + pos: -100.5,-9.5 parent: 2 - - uid: 29898 + - uid: 30552 components: - type: Transform - pos: 44.5,-60.5 + rot: 3.141592653589793 rad + pos: -106.5,-9.5 parent: 2 - - uid: 29899 + - uid: 30553 components: - type: Transform - pos: 43.5,-60.5 + rot: 3.141592653589793 rad + pos: -107.5,-9.5 parent: 2 - - uid: 29900 + - uid: 30554 components: - type: Transform - pos: 44.5,-61.5 + rot: 3.141592653589793 rad + pos: -105.5,-9.5 parent: 2 - - uid: 29901 + - uid: 30555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-61.5 + rot: 3.141592653589793 rad + pos: -108.5,-9.5 parent: 2 - - uid: 29902 + - uid: 30556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-61.5 + rot: 3.141592653589793 rad + pos: -109.5,-9.5 parent: 2 - - uid: 29903 + - uid: 30557 components: - type: Transform - pos: 53.5,-61.5 + rot: 3.141592653589793 rad + pos: -103.5,-9.5 parent: 2 - - uid: 29904 + - uid: 30558 components: - type: Transform - pos: 53.5,-60.5 + rot: 3.141592653589793 rad + pos: -98.5,-5.5 parent: 2 - - uid: 29905 + - uid: 30559 components: - type: Transform - pos: 54.5,-60.5 + rot: 3.141592653589793 rad + pos: -111.5,-9.5 parent: 2 - - uid: 29906 + - uid: 30560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-61.5 + rot: 3.141592653589793 rad + pos: -98.5,-8.5 parent: 2 - - uid: 29907 + - uid: 30561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-61.5 + rot: 3.141592653589793 rad + pos: -98.5,-4.5 parent: 2 - - uid: 29908 + - uid: 30562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-60.5 + rot: 3.141592653589793 rad + pos: -98.5,-6.5 parent: 2 - - uid: 29909 + - uid: 30563 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-61.5 + pos: -95.5,-5.5 parent: 2 - - uid: 29910 + - uid: 30564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-60.5 + rot: 3.141592653589793 rad + pos: -98.5,-9.5 parent: 2 - - uid: 29911 + - uid: 30565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-61.5 + rot: 3.141592653589793 rad + pos: -102.5,-4.5 parent: 2 - - uid: 29912 + - uid: 30566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-60.5 + rot: 3.141592653589793 rad + pos: -102.5,-6.5 parent: 2 - - uid: 29913 + - uid: 30567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-60.5 + rot: 3.141592653589793 rad + pos: -102.5,-5.5 parent: 2 - - uid: 29914 + - uid: 30568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-60.5 + rot: 3.141592653589793 rad + pos: -103.5,-3.5 parent: 2 - - uid: 29915 + - uid: 30569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-61.5 + rot: 3.141592653589793 rad + pos: -104.5,-3.5 parent: 2 - - uid: 29916 + - uid: 30570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-60.5 + rot: 3.141592653589793 rad + pos: -105.5,-3.5 parent: 2 - - uid: 29917 + - uid: 30571 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,-51.5 + pos: -106.5,-3.5 parent: 2 - - uid: 29918 + - uid: 30572 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-51.5 + pos: -110.5,-3.5 parent: 2 - - uid: 29919 + - uid: 30573 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-51.5 + pos: -111.5,-3.5 parent: 2 - - uid: 29920 + - uid: 30574 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-51.5 + pos: -111.5,-4.5 parent: 2 - - uid: 29921 + - uid: 30575 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-51.5 + pos: -111.5,-5.5 parent: 2 - - uid: 29922 + - uid: 30576 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-51.5 + pos: -111.5,-6.5 parent: 2 - - uid: 29923 + - uid: 30577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-55.5 + rot: 3.141592653589793 rad + pos: -111.5,-7.5 parent: 2 - - uid: 29924 + - uid: 30578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-55.5 + rot: 3.141592653589793 rad + pos: -111.5,-8.5 parent: 2 - - uid: 29925 + - uid: 30579 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,-48.5 + pos: -103.5,0.5 parent: 2 - - uid: 29926 + - uid: 30580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-51.5 + rot: 3.141592653589793 rad + pos: -106.5,0.5 parent: 2 - - uid: 29927 + - uid: 30581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-51.5 + rot: 3.141592653589793 rad + pos: -104.5,0.5 parent: 2 - - uid: 29928 + - uid: 30582 components: - type: Transform - pos: -9.5,-71.5 + rot: 3.141592653589793 rad + pos: -111.5,0.5 parent: 2 - - uid: 29929 + - uid: 30583 components: - type: Transform - pos: -2.5,-71.5 + rot: 3.141592653589793 rad + pos: -110.5,0.5 parent: 2 - - uid: 29930 + - uid: 30584 components: - type: Transform - pos: -4.5,-70.5 + rot: 3.141592653589793 rad + pos: -105.5,0.5 parent: 2 - - uid: 29931 + - uid: 30585 components: - type: Transform - pos: -4.5,-71.5 + rot: 3.141592653589793 rad + pos: -101.5,-3.5 parent: 2 - - uid: 29932 + - uid: 30586 components: - type: Transform - pos: -0.5,-70.5 + rot: 3.141592653589793 rad + pos: -106.5,5.5 parent: 2 - - uid: 29933 + - uid: 30587 components: - type: Transform - pos: -0.5,-71.5 + rot: 3.141592653589793 rad + pos: -114.5,0.5 parent: 2 - - uid: 29934 + - uid: 30588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-67.5 + rot: 3.141592653589793 rad + pos: -101.5,-9.5 parent: 2 - - uid: 29935 + - uid: 30589 components: - type: Transform - pos: -20.5,-70.5 + rot: 3.141592653589793 rad + pos: -102.5,-9.5 parent: 2 - - uid: 29936 + - uid: 30590 components: - type: Transform - pos: -20.5,-71.5 + rot: 3.141592653589793 rad + pos: -100.5,21.5 parent: 2 - - uid: 29937 + - uid: 30591 components: - type: Transform - pos: -16.5,-70.5 + rot: -1.5707963267948966 rad + pos: -118.5,10.5 parent: 2 - - uid: 29938 + - uid: 30592 components: - type: Transform - pos: -16.5,-71.5 + rot: 3.141592653589793 rad + pos: -115.5,0.5 parent: 2 - - uid: 29939 + - uid: 30593 components: - type: Transform - pos: -12.5,-70.5 + rot: 3.141592653589793 rad + pos: -116.5,0.5 parent: 2 - - uid: 29940 + - uid: 30594 components: - type: Transform - pos: -12.5,-71.5 + rot: 3.141592653589793 rad + pos: -117.5,0.5 parent: 2 - - uid: 29941 + - uid: 30595 components: - type: Transform - pos: -8.5,-70.5 + rot: 3.141592653589793 rad + pos: -102.5,0.5 parent: 2 - - uid: 29942 + - uid: 30596 components: - type: Transform - pos: -8.5,-71.5 + rot: 3.141592653589793 rad + pos: -101.5,0.5 parent: 2 - - uid: 29943 + - uid: 30597 components: - type: Transform - pos: -5.5,-71.5 + rot: 3.141592653589793 rad + pos: -100.5,0.5 parent: 2 - - uid: 29944 + - uid: 30598 components: - type: Transform - pos: -6.5,-71.5 + rot: 3.141592653589793 rad + pos: -99.5,0.5 parent: 2 - - uid: 29945 + - uid: 30599 components: - type: Transform - pos: -7.5,-71.5 + rot: 3.141592653589793 rad + pos: -118.5,0.5 parent: 2 - - uid: 29946 + - uid: 30600 components: - type: Transform - pos: -19.5,-71.5 + rot: 3.141592653589793 rad + pos: -118.5,1.5 parent: 2 - - uid: 29947 + - uid: 30601 components: - type: Transform - pos: 8.5,-6.5 + rot: -1.5707963267948966 rad + pos: -98.5,16.5 parent: 2 - - uid: 29948 + - uid: 30602 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-8.5 + pos: -118.5,8.5 parent: 2 - - uid: 29949 + - uid: 30603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-71.5 + rot: 3.141592653589793 rad + pos: -118.5,11.5 parent: 2 - - uid: 29950 + - uid: 30604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,2.5 + rot: 3.141592653589793 rad + pos: -118.5,12.5 parent: 2 - - uid: 29951 + - uid: 30605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-71.5 + rot: 3.141592653589793 rad + pos: -118.5,13.5 parent: 2 - - uid: 29952 + - uid: 30606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-71.5 + rot: 3.141592653589793 rad + pos: -118.5,14.5 parent: 2 - - uid: 29953 + - uid: 30607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-71.5 + rot: -1.5707963267948966 rad + pos: -116.5,13.5 parent: 2 - - uid: 29954 + - uid: 30608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-70.5 + rot: -1.5707963267948966 rad + pos: -114.5,27.5 parent: 2 - - uid: 29955 + - uid: 30609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-69.5 + rot: -1.5707963267948966 rad + pos: -111.5,3.5 parent: 2 - - uid: 29956 + - uid: 30610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-68.5 + rot: -1.5707963267948966 rad + pos: -111.5,4.5 parent: 2 - - uid: 29957 + - uid: 30611 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-57.5 + pos: -111.5,2.5 parent: 2 - - uid: 29958 + - uid: 30612 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-57.5 + pos: -111.5,8.5 parent: 2 - - uid: 29959 + - uid: 30613 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-57.5 + pos: -111.5,9.5 parent: 2 - - uid: 29960 + - uid: 30614 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-57.5 + pos: -111.5,10.5 parent: 2 - - uid: 29961 + - uid: 30615 components: - type: Transform - pos: 9.5,-51.5 + rot: -1.5707963267948966 rad + pos: -111.5,11.5 parent: 2 - - uid: 29962 + - uid: 30616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-35.5 + rot: -1.5707963267948966 rad + pos: -111.5,12.5 parent: 2 - - uid: 29963 + - uid: 30617 components: - type: Transform - pos: 15.5,-13.5 + rot: -1.5707963267948966 rad + pos: -111.5,13.5 parent: 2 - - uid: 29964 + - uid: 30618 components: - type: Transform - pos: 31.5,-58.5 + rot: -1.5707963267948966 rad + pos: -114.5,22.5 parent: 2 - - uid: 29965 + - uid: 30619 components: - type: Transform - pos: 32.5,-58.5 + rot: 3.141592653589793 rad + pos: -107.5,13.5 parent: 2 - - uid: 29966 + - uid: 30620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-58.5 + rot: 3.141592653589793 rad + pos: -99.5,21.5 parent: 2 - - uid: 29967 + - uid: 30621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,17.5 + rot: 3.141592653589793 rad + pos: -101.5,21.5 parent: 2 - - uid: 29968 + - uid: 30622 components: - type: Transform - pos: 31.5,-55.5 + rot: -1.5707963267948966 rad + pos: -98.5,12.5 parent: 2 - - uid: 29969 + - uid: 30623 components: - type: Transform - pos: -4.5,17.5 + rot: -1.5707963267948966 rad + pos: -98.5,11.5 parent: 2 - - uid: 29970 + - uid: 30624 components: - type: Transform - pos: 32.5,-56.5 + rot: -1.5707963267948966 rad + pos: -98.5,10.5 parent: 2 - - uid: 29971 + - uid: 30625 components: - type: Transform - pos: -8.5,16.5 + rot: -1.5707963267948966 rad + pos: -98.5,9.5 parent: 2 - - uid: 29972 + - uid: 30626 components: - type: Transform - pos: -8.5,15.5 + rot: -1.5707963267948966 rad + pos: -98.5,8.5 parent: 2 - - uid: 29973 + - uid: 30627 components: - type: Transform - pos: -8.5,14.5 + rot: -1.5707963267948966 rad + pos: -98.5,7.5 parent: 2 - - uid: 29974 + - uid: 30628 components: - type: Transform - pos: 32.5,-57.5 + rot: -1.5707963267948966 rad + pos: -98.5,6.5 parent: 2 - - uid: 29975 + - uid: 30629 components: - type: Transform - pos: -2.5,15.5 + rot: -1.5707963267948966 rad + pos: -98.5,5.5 parent: 2 - - uid: 29976 + - uid: 30630 components: - type: Transform - pos: 14.5,6.5 + rot: -1.5707963267948966 rad + pos: -98.5,0.5 parent: 2 - - uid: 29977 + - uid: 30631 components: - type: Transform - pos: 14.5,5.5 + rot: -1.5707963267948966 rad + pos: -102.5,13.5 parent: 2 - - uid: 29978 + - uid: 30632 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,10.5 + rot: -1.5707963267948966 rad + pos: -101.5,13.5 parent: 2 - - uid: 29979 + - uid: 30633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,11.5 + rot: -1.5707963267948966 rad + pos: -99.5,13.5 parent: 2 - - uid: 29980 + - uid: 30634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 + rot: -1.5707963267948966 rad + pos: -98.5,13.5 parent: 2 - - uid: 29981 + - uid: 30635 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,5.5 + pos: -102.5,21.5 parent: 2 - - uid: 29982 + - uid: 30636 components: - type: Transform - pos: 13.5,59.5 + rot: -1.5707963267948966 rad + pos: -114.5,14.5 parent: 2 - - uid: 29983 + - uid: 30637 components: - type: Transform - pos: 14.5,55.5 + rot: -1.5707963267948966 rad + pos: -115.5,14.5 parent: 2 - - uid: 29984 + - uid: 30638 components: - type: Transform - pos: 11.5,55.5 + rot: -1.5707963267948966 rad + pos: -116.5,14.5 parent: 2 - - uid: 29985 + - uid: 30639 components: - type: Transform - pos: 12.5,59.5 + rot: -1.5707963267948966 rad + pos: -117.5,14.5 parent: 2 - - uid: 29986 + - uid: 30640 components: - type: Transform - pos: 12.5,55.5 + rot: -1.5707963267948966 rad + pos: -115.5,18.5 parent: 2 - - uid: 29987 + - uid: 30641 components: - type: Transform - pos: 14.5,52.5 + pos: -118.5,17.5 parent: 2 - - uid: 29988 + - uid: 30642 components: - type: Transform - pos: 11.5,62.5 + rot: -1.5707963267948966 rad + pos: -114.5,18.5 parent: 2 - - uid: 29989 + - uid: 30643 components: - type: Transform - pos: 11.5,52.5 + pos: -118.5,15.5 parent: 2 - - uid: 29990 + - uid: 30644 components: - type: Transform - pos: 16.5,52.5 + rot: -1.5707963267948966 rad + pos: -114.5,17.5 parent: 2 - - uid: 29991 + - uid: 30645 components: - type: Transform - pos: 12.5,52.5 + rot: -1.5707963267948966 rad + pos: -118.5,18.5 parent: 2 - - uid: 29992 + - uid: 30646 components: - type: Transform - pos: 10.5,52.5 + rot: -1.5707963267948966 rad + pos: -116.5,18.5 parent: 2 - - uid: 29993 + - uid: 30647 components: - type: Transform - pos: 11.5,63.5 + rot: -1.5707963267948966 rad + pos: -117.5,18.5 parent: 2 - - uid: 29994 + - uid: 30648 components: - type: Transform - pos: 11.5,64.5 + rot: -1.5707963267948966 rad + pos: -114.5,21.5 parent: 2 - - uid: 29995 + - uid: 30649 components: - type: Transform - pos: -45.5,8.5 + rot: -1.5707963267948966 rad + pos: -115.5,22.5 parent: 2 - - uid: 29996 + - uid: 30650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,5.5 + rot: -1.5707963267948966 rad + pos: -116.5,22.5 parent: 2 - - uid: 29997 + - uid: 30651 components: - type: Transform - pos: -39.5,8.5 + rot: -1.5707963267948966 rad + pos: -117.5,22.5 parent: 2 - - uid: 29998 + - uid: 30652 components: - type: Transform - pos: -39.5,4.5 + rot: -1.5707963267948966 rad + pos: -118.5,22.5 parent: 2 - - uid: 29999 + - uid: 30653 components: - type: Transform - pos: -39.5,3.5 + rot: -1.5707963267948966 rad + pos: -118.5,21.5 parent: 2 - - uid: 30000 + - uid: 30654 components: - type: Transform - pos: -43.5,9.5 + rot: -1.5707963267948966 rad + pos: -118.5,19.5 parent: 2 - - uid: 30001 + - uid: 30655 components: - type: Transform - pos: -45.5,4.5 + rot: -1.5707963267948966 rad + pos: -114.5,25.5 parent: 2 - - uid: 30002 + - uid: 30656 components: - type: Transform - pos: -45.5,5.5 + rot: -1.5707963267948966 rad + pos: -114.5,26.5 parent: 2 - - uid: 30003 + - uid: 30657 components: - type: Transform - pos: -45.5,6.5 + rot: -1.5707963267948966 rad + pos: -115.5,26.5 parent: 2 - - uid: 30004 + - uid: 30658 components: - type: Transform - pos: -41.5,9.5 + rot: -1.5707963267948966 rad + pos: -116.5,26.5 parent: 2 - - uid: 30005 + - uid: 30659 components: - type: Transform - pos: -39.5,7.5 + rot: -1.5707963267948966 rad + pos: -117.5,26.5 parent: 2 - - uid: 30006 + - uid: 30660 components: - type: Transform - pos: -45.5,7.5 + rot: -1.5707963267948966 rad + pos: -118.5,26.5 parent: 2 - - uid: 30007 + - uid: 30661 components: - type: Transform - pos: -45.5,3.5 + rot: -1.5707963267948966 rad + pos: -118.5,25.5 parent: 2 - - uid: 30008 + - uid: 30662 components: - type: Transform - pos: -39.5,6.5 + rot: -1.5707963267948966 rad + pos: -118.5,23.5 parent: 2 - - uid: 30009 + - uid: 30663 components: - type: Transform - pos: -39.5,5.5 + rot: -1.5707963267948966 rad + pos: -98.5,26.5 parent: 2 - - uid: 30010 + - uid: 30664 components: - type: Transform - pos: -45.5,1.5 + rot: -1.5707963267948966 rad + pos: -98.5,25.5 parent: 2 - - uid: 30011 + - uid: 30665 components: - type: Transform - pos: -45.5,-0.5 + rot: -1.5707963267948966 rad + pos: -98.5,24.5 parent: 2 - - uid: 30012 + - uid: 30666 components: - type: Transform - pos: -45.5,0.5 + rot: -1.5707963267948966 rad + pos: -98.5,23.5 parent: 2 - - uid: 30013 + - uid: 30667 components: - type: Transform - pos: -45.5,2.5 + rot: -1.5707963267948966 rad + pos: -98.5,22.5 parent: 2 - - uid: 30014 + - uid: 30668 components: - type: Transform - pos: -44.5,9.5 + rot: -1.5707963267948966 rad + pos: -98.5,21.5 parent: 2 - - uid: 30015 + - uid: 30669 components: - type: Transform - pos: -42.5,9.5 + rot: -1.5707963267948966 rad + pos: -99.5,26.5 parent: 2 - - uid: 30016 + - uid: 30670 components: - type: Transform - pos: -40.5,5.5 + rot: -1.5707963267948966 rad + pos: -100.5,26.5 parent: 2 - - uid: 30017 + - uid: 30671 components: - type: Transform - pos: -44.5,5.5 + rot: -1.5707963267948966 rad + pos: -101.5,26.5 parent: 2 - - uid: 30018 + - uid: 30672 components: - type: Transform - pos: -43.5,5.5 + rot: -1.5707963267948966 rad + pos: -103.5,26.5 parent: 2 - - uid: 30019 + - uid: 30673 components: - type: Transform - pos: -42.5,5.5 + rot: -1.5707963267948966 rad + pos: -103.5,19.5 parent: 2 - - uid: 30020 + - uid: 30674 components: - type: Transform - pos: -37.5,-5.5 + rot: -1.5707963267948966 rad + pos: -103.5,25.5 parent: 2 - - uid: 30021 + - uid: 30675 components: - type: Transform - pos: -45.5,-5.5 + rot: -1.5707963267948966 rad + pos: -103.5,24.5 parent: 2 - - uid: 30022 + - uid: 30676 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-5.5 + pos: -103.5,21.5 parent: 2 - - uid: 30023 + - uid: 30677 components: - type: Transform - pos: -19.5,-43.5 + rot: -1.5707963267948966 rad + pos: -113.5,27.5 parent: 2 - - uid: 30024 + - uid: 30678 components: - type: Transform - pos: -18.5,-16.5 + rot: -1.5707963267948966 rad + pos: -109.5,27.5 parent: 2 - - uid: 30025 + - uid: 30679 components: - type: Transform - pos: -18.5,-15.5 + rot: -1.5707963267948966 rad + pos: -113.5,29.5 parent: 2 - - uid: 30026 + - uid: 30680 components: - type: Transform - pos: -26.5,0.5 + rot: -1.5707963267948966 rad + pos: -109.5,31.5 parent: 2 - - uid: 30027 + - uid: 30681 components: - type: Transform - pos: -48.5,-16.5 + rot: -1.5707963267948966 rad + pos: -113.5,31.5 parent: 2 - - uid: 30028 + - uid: 30682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,54.5 + rot: -1.5707963267948966 rad + pos: -109.5,28.5 parent: 2 - - uid: 30029 + - uid: 30683 components: - type: Transform - pos: -37.5,9.5 + rot: -1.5707963267948966 rad + pos: -111.5,33.5 parent: 2 - - uid: 30030 + - uid: 30684 components: - type: Transform - pos: -50.5,-11.5 + rot: -1.5707963267948966 rad + pos: -112.5,33.5 parent: 2 - - uid: 30031 + - uid: 30685 components: - type: Transform - pos: -50.5,-7.5 + rot: -1.5707963267948966 rad + pos: -113.5,33.5 parent: 2 - - uid: 30032 + - uid: 30686 components: - type: Transform - pos: -50.5,-8.5 + rot: -1.5707963267948966 rad + pos: -109.5,30.5 parent: 2 - - uid: 30033 + - uid: 30687 components: - type: Transform - pos: -50.5,-9.5 + rot: -1.5707963267948966 rad + pos: -109.5,29.5 parent: 2 - - uid: 30034 + - uid: 30688 components: - type: Transform - pos: -50.5,-10.5 + rot: -1.5707963267948966 rad + pos: -112.5,29.5 parent: 2 - - uid: 30035 + - uid: 30689 components: - type: Transform - pos: -50.5,-12.5 + rot: -1.5707963267948966 rad + pos: -110.5,33.5 parent: 2 - - uid: 30036 + - uid: 30690 components: - type: Transform - pos: -50.5,-13.5 + rot: -1.5707963267948966 rad + pos: -109.5,33.5 parent: 2 - - uid: 30037 + - uid: 30691 components: - type: Transform - pos: -50.5,-14.5 + rot: -1.5707963267948966 rad + pos: -108.5,33.5 parent: 2 - - uid: 30038 + - uid: 30692 components: - type: Transform - pos: -50.5,-15.5 + rot: -1.5707963267948966 rad + pos: -108.5,32.5 parent: 2 - - uid: 30039 + - uid: 30693 components: - type: Transform - pos: -50.5,-16.5 + rot: -1.5707963267948966 rad + pos: -108.5,31.5 parent: 2 - - uid: 30040 + - uid: 30694 components: - type: Transform - pos: -50.5,-5.5 + rot: -1.5707963267948966 rad + pos: -108.5,30.5 parent: 2 - - uid: 30041 + - uid: 30695 components: - type: Transform - pos: -49.5,-16.5 + rot: -1.5707963267948966 rad + pos: -108.5,29.5 parent: 2 - - uid: 30042 + - uid: 30696 components: - type: Transform - pos: -50.5,-6.5 + rot: -1.5707963267948966 rad + pos: -108.5,28.5 parent: 2 - - uid: 30043 + - uid: 30697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,57.5 + rot: -1.5707963267948966 rad + pos: -108.5,27.5 parent: 2 - - uid: 30044 + - uid: 30698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,59.5 + rot: -1.5707963267948966 rad + pos: -112.5,27.5 parent: 2 - - uid: 30045 + - uid: 30699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,57.5 + rot: -1.5707963267948966 rad + pos: -106.5,27.5 parent: 2 - - uid: 30046 + - uid: 30700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,60.5 + rot: -1.5707963267948966 rad + pos: -105.5,27.5 parent: 2 - - uid: 30047 + - uid: 30701 components: - type: Transform - pos: -54.5,9.5 + rot: -1.5707963267948966 rad + pos: -104.5,27.5 parent: 2 - - uid: 30048 + - uid: 30702 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-61.5 + pos: -103.5,27.5 parent: 2 - - uid: 30049 + - uid: 30703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,62.5 + rot: -1.5707963267948966 rad + pos: -107.5,33.5 parent: 2 - - uid: 30050 + - uid: 30704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,1.5 + rot: -1.5707963267948966 rad + pos: -106.5,33.5 parent: 2 - - uid: 30051 + - uid: 30705 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,2.5 + rot: -1.5707963267948966 rad + pos: -105.5,33.5 parent: 2 - - uid: 30052 + - uid: 30706 components: - type: Transform - pos: -31.5,-46.5 + rot: -1.5707963267948966 rad + pos: -104.5,33.5 parent: 2 - - uid: 30053 + - uid: 30707 components: - type: Transform - pos: -47.5,-16.5 + rot: -1.5707963267948966 rad + pos: -103.5,33.5 parent: 2 - - uid: 30054 + - uid: 30708 components: - type: Transform - pos: -46.5,-16.5 + rot: -1.5707963267948966 rad + pos: -103.5,32.5 parent: 2 - - uid: 30055 + - uid: 30709 components: - type: Transform - pos: -45.5,-16.5 + rot: -1.5707963267948966 rad + pos: -103.5,31.5 parent: 2 - - uid: 30056 + - uid: 30710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-20.5 + rot: -1.5707963267948966 rad + pos: -103.5,30.5 parent: 2 - - uid: 30057 + - uid: 30711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-29.5 + rot: -1.5707963267948966 rad + pos: -103.5,29.5 parent: 2 - - uid: 30058 + - uid: 30712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-32.5 + rot: -1.5707963267948966 rad + pos: -103.5,28.5 parent: 2 - - uid: 30059 + - uid: 30713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-30.5 + rot: -1.5707963267948966 rad + pos: -104.5,31.5 parent: 2 - - uid: 30060 + - uid: 30714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-33.5 + rot: -1.5707963267948966 rad + pos: -105.5,31.5 parent: 2 - - uid: 30061 + - uid: 30715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-25.5 + rot: -1.5707963267948966 rad + pos: -104.5,29.5 parent: 2 - - uid: 30062 + - uid: 30716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-28.5 + rot: -1.5707963267948966 rad + pos: -105.5,29.5 parent: 2 - - uid: 30063 + - uid: 30717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-31.5 + rot: -1.5707963267948966 rad + pos: -114.5,28.5 parent: 2 - - uid: 30064 + - uid: 30718 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-28.5 + rot: -1.5707963267948966 rad + pos: -114.5,29.5 parent: 2 - - uid: 30065 + - uid: 30719 components: - type: Transform - pos: 12.5,-47.5 + rot: -1.5707963267948966 rad + pos: -114.5,30.5 parent: 2 - - uid: 30066 + - uid: 30720 components: - type: Transform - pos: 12.5,-46.5 + rot: -1.5707963267948966 rad + pos: -114.5,31.5 parent: 2 - - uid: 30067 + - uid: 30721 components: - type: Transform - pos: 12.5,-45.5 + rot: -1.5707963267948966 rad + pos: -114.5,32.5 parent: 2 - - uid: 30068 + - uid: 30722 components: - type: Transform - pos: 11.5,-47.5 + rot: -1.5707963267948966 rad + pos: -114.5,33.5 parent: 2 - - uid: 30069 + - uid: 30723 components: - type: Transform - pos: 10.5,-47.5 + rot: -1.5707963267948966 rad + pos: -109.5,32.5 parent: 2 - - uid: 30070 + - uid: 30724 components: - type: Transform - pos: 12.5,-44.5 + rot: -1.5707963267948966 rad + pos: -110.5,13.5 parent: 2 - - uid: 30071 + - uid: 30725 components: - type: Transform - pos: 9.5,49.5 + rot: -1.5707963267948966 rad + pos: -109.5,13.5 parent: 2 - - uid: 30072 + - uid: 30726 components: - type: Transform - pos: 11.5,49.5 + rot: -1.5707963267948966 rad + pos: -103.5,13.5 parent: 2 - - uid: 30073 + - uid: 30727 components: - type: Transform - pos: 10.5,49.5 + rot: -1.5707963267948966 rad + pos: -104.5,13.5 parent: 2 - - uid: 30074 + - uid: 30728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-27.5 + rot: -1.5707963267948966 rad + pos: -108.5,13.5 parent: 2 - - uid: 30075 + - uid: 30729 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-26.5 + pos: -109.5,23.5 parent: 2 - - uid: 30076 + - uid: 30730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-30.5 + rot: -1.5707963267948966 rad + pos: -102.5,29.5 parent: 2 - - uid: 30077 + - uid: 30731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-30.5 + rot: -1.5707963267948966 rad + pos: -101.5,29.5 parent: 2 - - uid: 30078 + - uid: 30732 components: - type: Transform - pos: -17.5,56.5 + rot: -1.5707963267948966 rad + pos: -100.5,29.5 parent: 2 - - uid: 30079 + - uid: 30733 components: - type: Transform - pos: -18.5,56.5 + rot: -1.5707963267948966 rad + pos: -100.5,27.5 parent: 2 - - uid: 30080 + - uid: 30734 components: - type: Transform - pos: -19.5,56.5 + rot: -1.5707963267948966 rad + pos: -100.5,28.5 parent: 2 - - uid: 30081 + - uid: 30735 components: - type: Transform - pos: -19.5,57.5 + rot: -1.5707963267948966 rad + pos: -134.5,12.5 parent: 2 - - uid: 30082 + - uid: 30736 components: - type: Transform - pos: -3.5,39.5 + rot: -1.5707963267948966 rad + pos: -133.5,12.5 parent: 2 - - uid: 30083 + - uid: 30737 components: - type: Transform - pos: -5.5,37.5 + rot: -1.5707963267948966 rad + pos: -132.5,12.5 parent: 2 - - uid: 30084 + - uid: 30738 components: - type: Transform - pos: -6.5,37.5 + rot: -1.5707963267948966 rad + pos: -131.5,12.5 parent: 2 - - uid: 30085 + - uid: 30739 components: - type: Transform - pos: -7.5,37.5 + rot: -1.5707963267948966 rad + pos: -135.5,12.5 parent: 2 - - uid: 30086 + - uid: 30740 components: - type: Transform - pos: -11.5,37.5 + rot: -1.5707963267948966 rad + pos: -135.5,11.5 parent: 2 - - uid: 30087 + - uid: 30741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-30.5 + rot: -1.5707963267948966 rad + pos: -135.5,10.5 parent: 2 - - uid: 30088 + - uid: 30742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-30.5 + rot: -1.5707963267948966 rad + pos: -135.5,9.5 parent: 2 - - uid: 30089 + - uid: 30743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-30.5 + rot: -1.5707963267948966 rad + pos: -135.5,8.5 parent: 2 - - uid: 30090 + - uid: 30744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-30.5 + rot: -1.5707963267948966 rad + pos: -135.5,7.5 parent: 2 - - uid: 30091 + - uid: 30745 components: - type: Transform - pos: -19.5,58.5 + rot: -1.5707963267948966 rad + pos: -134.5,7.5 parent: 2 - - uid: 30092 + - uid: 30746 components: - type: Transform - pos: -3.5,43.5 + rot: -1.5707963267948966 rad + pos: -132.5,7.5 parent: 2 - - uid: 30093 + - uid: 30747 components: - type: Transform - pos: -3.5,38.5 + rot: -1.5707963267948966 rad + pos: -131.5,7.5 parent: 2 - - uid: 30094 + - uid: 30748 components: - type: Transform - pos: -5.5,45.5 + rot: -1.5707963267948966 rad + pos: -130.5,7.5 parent: 2 - - uid: 30095 + - uid: 30749 components: - type: Transform - pos: -4.5,37.5 + rot: -1.5707963267948966 rad + pos: -130.5,8.5 parent: 2 - - uid: 30096 + - uid: 30750 components: - type: Transform - pos: -9.5,45.5 + rot: -1.5707963267948966 rad + pos: -130.5,9.5 parent: 2 - - uid: 30097 + - uid: 30751 components: - type: Transform - pos: -11.5,43.5 + rot: -1.5707963267948966 rad + pos: -130.5,10.5 parent: 2 - - uid: 30098 + - uid: 30752 components: - type: Transform - pos: -11.5,44.5 + rot: -1.5707963267948966 rad + pos: -130.5,11.5 parent: 2 - - uid: 30099 + - uid: 30753 components: - type: Transform - pos: -11.5,45.5 + rot: -1.5707963267948966 rad + pos: -130.5,12.5 parent: 2 - - uid: 30100 + - uid: 30754 components: - type: Transform - pos: -3.5,37.5 + rot: -1.5707963267948966 rad + pos: -98.5,15.5 parent: 2 - - uid: 30101 + - uid: 30755 components: - type: Transform - pos: -3.5,44.5 + rot: 3.141592653589793 rad + pos: -103.5,18.5 parent: 2 - - uid: 30102 + - uid: 30756 components: - type: Transform - pos: -3.5,45.5 + rot: 3.141592653589793 rad + pos: -103.5,17.5 parent: 2 - - uid: 30103 + - uid: 30757 components: - type: Transform - pos: -3.5,46.5 + rot: 3.141592653589793 rad + pos: -111.5,23.5 parent: 2 - - uid: 30104 + - uid: 30758 components: - type: Transform - pos: -11.5,46.5 + rot: 3.141592653589793 rad + pos: -111.5,22.5 parent: 2 - - uid: 30105 + - uid: 30759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,49.5 + rot: 3.141592653589793 rad + pos: -111.5,18.5 parent: 2 - - uid: 30106 + - uid: 30760 components: - type: Transform - pos: -11.5,38.5 + rot: 3.141592653589793 rad + pos: -111.5,17.5 parent: 2 - - uid: 30107 + - uid: 30761 components: - type: Transform - pos: -11.5,41.5 + rot: 3.141592653589793 rad + pos: -108.5,17.5 parent: 2 - - uid: 30108 + - uid: 30762 components: - type: Transform - pos: -11.5,40.5 + rot: 3.141592653589793 rad + pos: -106.5,17.5 parent: 2 - - uid: 30109 + - uid: 30763 components: - type: Transform - pos: -11.5,39.5 + rot: 3.141592653589793 rad + pos: -106.5,18.5 parent: 2 - - uid: 30110 + - uid: 30764 components: - type: Transform - pos: -9.5,37.5 + rot: 3.141592653589793 rad + pos: -106.5,22.5 parent: 2 - - uid: 30111 + - uid: 30765 components: - type: Transform - pos: -8.5,37.5 + rot: 3.141592653589793 rad + pos: -106.5,23.5 parent: 2 - - uid: 30112 + - uid: 30766 components: - type: Transform - pos: -10.5,45.5 + rot: 3.141592653589793 rad + pos: -107.5,23.5 parent: 2 - - uid: 30113 + - uid: 30767 components: - type: Transform - pos: -11.5,42.5 + rot: 3.141592653589793 rad + pos: -110.5,23.5 parent: 2 - - uid: 30114 + - uid: 30768 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-25.5 + pos: -105.5,5.5 parent: 2 - - uid: 30115 + - uid: 30769 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-26.5 + pos: -104.5,5.5 parent: 2 - - uid: 30116 + - uid: 30770 components: - type: Transform - pos: -10.5,37.5 + rot: 3.141592653589793 rad + pos: -103.5,5.5 parent: 2 - - uid: 30117 + - uid: 30771 components: - type: Transform - pos: -17.5,61.5 + rot: 3.141592653589793 rad + pos: -102.5,5.5 parent: 2 - - uid: 30118 + - uid: 30772 components: - type: Transform - pos: -18.5,61.5 + rot: 3.141592653589793 rad + pos: -102.5,6.5 parent: 2 - - uid: 30119 + - uid: 30773 components: - type: Transform - pos: -19.5,61.5 + rot: 3.141592653589793 rad + pos: -102.5,7.5 parent: 2 - - uid: 30120 + - uid: 30774 components: - type: Transform - pos: -19.5,60.5 + rot: 3.141592653589793 rad + pos: -102.5,8.5 parent: 2 - - uid: 30121 + - uid: 30775 components: - type: Transform - pos: -6.5,54.5 + rot: 3.141592653589793 rad + pos: -102.5,9.5 parent: 2 - - uid: 30122 + - uid: 30776 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-11.5 + pos: -102.5,10.5 parent: 2 - - uid: 30123 + - uid: 30777 components: - type: Transform - pos: 9.5,51.5 + rot: 3.141592653589793 rad + pos: -102.5,11.5 parent: 2 - - uid: 30124 + - uid: 30778 components: - type: Transform - pos: -34.5,-18.5 + rot: 3.141592653589793 rad + pos: -102.5,12.5 parent: 2 - - uid: 30125 + - uid: 30779 components: - type: Transform - pos: -7.5,17.5 + rot: -1.5707963267948966 rad + pos: -97.5,-5.5 parent: 2 - - uid: 30126 + - uid: 30780 components: - type: Transform - pos: -6.5,17.5 + rot: -1.5707963267948966 rad + pos: -96.5,-5.5 parent: 2 - - uid: 30127 + - uid: 30781 components: - type: Transform - pos: -5.5,17.5 + rot: -1.5707963267948966 rad + pos: -95.5,-6.5 parent: 2 - - uid: 30128 + - uid: 30782 components: - type: Transform - pos: 10.5,16.5 + rot: -1.5707963267948966 rad + pos: -96.5,-9.5 parent: 2 - - uid: 30129 + - uid: 30783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-17.5 + rot: -1.5707963267948966 rad + pos: -95.5,-9.5 parent: 2 - - uid: 30130 + - uid: 30784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-18.5 + rot: -1.5707963267948966 rad + pos: -95.5,-8.5 parent: 2 - - uid: 30131 + - uid: 30785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-19.5 + rot: 3.141592653589793 rad + pos: -111.5,5.5 parent: 2 - - uid: 30132 + - uid: 30786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-20.5 + rot: 3.141592653589793 rad + pos: -101.5,5.5 parent: 2 - - uid: 30133 + - uid: 30787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-20.5 + rot: 3.141592653589793 rad + pos: -99.5,5.5 parent: 2 - - uid: 30134 + - uid: 30788 components: - type: Transform - pos: -30.5,17.5 + pos: -97.5,-9.5 parent: 2 - - uid: 30135 + - uid: 30789 components: - type: Transform - pos: 12.5,16.5 + rot: 3.141592653589793 rad + pos: -25.5,-22.5 parent: 2 - - uid: 30136 + - uid: 30790 components: - type: Transform - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: -23.5,-22.5 parent: 2 - - uid: 30137 + - uid: 30791 components: - type: Transform - pos: -56.5,-7.5 + pos: -34.5,-21.5 parent: 2 - - uid: 30138 + - uid: 30792 components: - type: Transform - pos: -54.5,-7.5 + rot: 3.141592653589793 rad + pos: -21.5,-22.5 parent: 2 - - uid: 30139 + - uid: 30793 components: - type: Transform - pos: -53.5,-7.5 + rot: 3.141592653589793 rad + pos: -94.5,5.5 parent: 2 - - uid: 30140 + - uid: 30794 components: - type: Transform - pos: -54.5,-6.5 + rot: 3.141592653589793 rad + pos: -94.5,6.5 parent: 2 - - uid: 30141 + - uid: 30795 components: - type: Transform - pos: -54.5,-5.5 + rot: 3.141592653589793 rad + pos: -94.5,4.5 parent: 2 - - uid: 30142 + - uid: 30796 components: - type: Transform - pos: -55.5,-7.5 + rot: 3.141592653589793 rad + pos: -96.5,6.5 parent: 2 - - uid: 30143 + - uid: 30797 components: - type: Transform - pos: -56.5,-6.5 + rot: 3.141592653589793 rad + pos: -97.5,6.5 parent: 2 - - uid: 30144 + - uid: 30798 components: - type: Transform - pos: -56.5,-5.5 + rot: 3.141592653589793 rad + pos: -94.5,3.5 parent: 2 - - uid: 30145 + - uid: 30799 components: - type: Transform - pos: -56.5,-4.5 + rot: 3.141592653589793 rad + pos: -94.5,0.5 parent: 2 - - uid: 30146 + - uid: 30800 components: - type: Transform - pos: -52.5,-7.5 + pos: -7.5,14.5 parent: 2 - - uid: 30147 + - uid: 30801 components: - type: Transform - pos: -51.5,-7.5 + pos: -18.5,-21.5 parent: 2 - - uid: 30148 + - uid: 30802 components: - type: Transform - pos: -52.5,-6.5 + rot: -1.5707963267948966 rad + pos: -111.5,27.5 parent: 2 - - uid: 30149 + - uid: 30803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 74.5,-26.5 + rot: -1.5707963267948966 rad + pos: -102.5,4.5 parent: 2 - - uid: 30150 + - uid: 30804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-40.5 + rot: 3.141592653589793 rad + pos: -34.5,-22.5 parent: 2 - - uid: 30151 + - uid: 30805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-40.5 + rot: 3.141592653589793 rad + pos: -32.5,-22.5 parent: 2 - - uid: 30152 + - uid: 30806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-38.5 + rot: 3.141592653589793 rad + pos: -33.5,-22.5 parent: 2 - - uid: 30153 + - uid: 30807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-27.5 + rot: -1.5707963267948966 rad + pos: 96.5,-2.5 parent: 2 - - uid: 30154 + - uid: 30808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-28.5 + rot: -1.5707963267948966 rad + pos: 92.5,-7.5 parent: 2 - - uid: 30155 + - uid: 30809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 75.5,-28.5 + rot: -1.5707963267948966 rad + pos: 91.5,-7.5 parent: 2 - - uid: 30156 + - uid: 30810 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-27.5 + rot: -1.5707963267948966 rad + pos: 93.5,-7.5 parent: 2 - - uid: 30157 + - uid: 30811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-28.5 + rot: -1.5707963267948966 rad + pos: 95.5,-6.5 parent: 2 - - uid: 30158 + - uid: 30812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 76.5,-26.5 + rot: -1.5707963267948966 rad + pos: 97.5,-2.5 parent: 2 - - uid: 30159 + - uid: 30813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 73.5,-26.5 + rot: -1.5707963267948966 rad + pos: 99.5,-6.5 parent: 2 - - uid: 30160 + - uid: 30814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-39.5 + pos: 99.5,-3.5 parent: 2 - - uid: 30161 + - uid: 30815 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-38.5 + pos: 96.5,-7.5 parent: 2 - - uid: 30162 + - uid: 30816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-40.5 + pos: 94.5,-7.5 parent: 2 - - uid: 30163 + - uid: 30817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-38.5 + pos: 98.5,-7.5 parent: 2 - - uid: 30164 + - uid: 30818 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-39.5 + pos: 95.5,-8.5 parent: 2 - - uid: 30165 + - uid: 30819 components: - type: Transform - pos: -19.5,17.5 + rot: -1.5707963267948966 rad + pos: 95.5,-7.5 parent: 2 - - uid: 30166 + - uid: 30820 components: - type: Transform - pos: -29.5,17.5 + rot: -1.5707963267948966 rad + pos: 99.5,-7.5 parent: 2 - - uid: 30167 + - uid: 30821 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-20.5 + rot: -1.5707963267948966 rad + pos: 95.5,-3.5 parent: 2 - - uid: 30168 + - uid: 30822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-20.5 + rot: -1.5707963267948966 rad + pos: 95.5,-5.5 parent: 2 - - uid: 30169 + - uid: 30823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-20.5 + rot: -1.5707963267948966 rad + pos: 99.5,-2.5 parent: 2 - - uid: 30170 + - uid: 30824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-20.5 + rot: -1.5707963267948966 rad + pos: 95.5,-4.5 parent: 2 - - uid: 30171 + - uid: 30825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-16.5 + rot: -1.5707963267948966 rad + pos: 95.5,-2.5 parent: 2 - - uid: 30172 + - uid: 30826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-18.5 + rot: -1.5707963267948966 rad + pos: 99.5,-4.5 parent: 2 - - uid: 30173 + - uid: 30827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-19.5 + rot: -1.5707963267948966 rad + pos: 99.5,-5.5 parent: 2 - - uid: 30174 + - uid: 30828 components: - type: Transform - pos: -52.5,-1.5 + rot: -1.5707963267948966 rad + pos: 98.5,-2.5 parent: 2 - - uid: 30175 + - uid: 30829 components: - type: Transform - pos: -53.5,-1.5 + pos: -28.5,19.5 parent: 2 - - uid: 30176 + - uid: 30830 components: - type: Transform - pos: -54.5,-1.5 + rot: -1.5707963267948966 rad + pos: -24.5,21.5 parent: 2 - - uid: 30177 + - uid: 30831 components: - type: Transform - pos: -55.5,-1.5 + pos: -34.5,17.5 parent: 2 - - uid: 30178 + - uid: 30832 components: - type: Transform - pos: -56.5,-1.5 + pos: -27.5,21.5 parent: 2 - - uid: 30179 + - uid: 30833 components: - type: Transform - pos: -56.5,-2.5 + pos: -20.5,19.5 parent: 2 - - uid: 30180 + - uid: 30834 components: - type: Transform - pos: -56.5,-3.5 + pos: -17.5,20.5 parent: 2 - - uid: 30181 + - uid: 30835 components: - type: Transform - pos: -52.5,-5.5 + rot: 3.141592653589793 rad + pos: -18.5,15.5 parent: 2 - - uid: 30182 + - uid: 30836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,31.5 + pos: -32.5,17.5 parent: 2 - - uid: 30183 + - uid: 30837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,19.5 + pos: -18.5,20.5 parent: 2 - - uid: 30184 + - uid: 30838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,9.5 + pos: -20.5,20.5 parent: 2 - - uid: 30185 + - uid: 30839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,13.5 + pos: -16.5,20.5 parent: 2 - - uid: 30186 + - uid: 30840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,13.5 + rot: 1.5707963267948966 rad + pos: -20.5,16.5 parent: 2 - - uid: 30187 + - uid: 30841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,3.5 + pos: -18.5,16.5 parent: 2 - - uid: 30188 + - uid: 30842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,13.5 + pos: -15.5,18.5 parent: 2 - - uid: 30189 + - uid: 30843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,9.5 + rot: 3.141592653589793 rad + pos: -19.5,14.5 parent: 2 - - uid: 30190 + - uid: 30844 components: - type: Transform rot: -1.5707963267948966 rad - pos: -111.5,1.5 + pos: -25.5,21.5 parent: 2 - - uid: 30191 + - uid: 30845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,13.5 + rot: 1.5707963267948966 rad + pos: -23.5,17.5 parent: 2 - - uid: 30192 + - uid: 30846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,13.5 + rot: 3.141592653589793 rad + pos: -18.5,14.5 parent: 2 - - uid: 30193 + - uid: 30847 components: - type: Transform - pos: 53.5,-27.5 + pos: -17.5,16.5 parent: 2 - - uid: 30194 + - uid: 30848 components: - type: Transform - pos: 55.5,-26.5 + pos: -19.5,16.5 parent: 2 - - uid: 30195 + - uid: 30849 components: - type: Transform - pos: 55.5,-27.5 + pos: -16.5,16.5 parent: 2 - - uid: 30196 + - uid: 30850 components: - type: Transform - pos: 53.5,-28.5 + pos: -15.5,19.5 parent: 2 - - uid: 30197 + - uid: 30851 components: - type: Transform - pos: 54.5,-25.5 + pos: -33.5,17.5 parent: 2 - - uid: 30198 + - uid: 30852 components: - type: Transform - pos: 53.5,-25.5 + pos: -28.5,20.5 parent: 2 - - uid: 30199 + - uid: 30853 components: - type: Transform - pos: 55.5,-25.5 + pos: -28.5,21.5 parent: 2 - - uid: 30200 + - uid: 30854 components: - type: Transform - pos: 54.5,-28.5 + pos: -15.5,16.5 parent: 2 - - uid: 30201 + - uid: 30855 components: - type: Transform - pos: 55.5,-28.5 + rot: 1.5707963267948966 rad + pos: -20.5,18.5 parent: 2 - - uid: 30202 + - uid: 30856 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-9.5 + rot: 1.5707963267948966 rad + pos: -20.5,17.5 parent: 2 - - uid: 30203 + - uid: 30857 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-3.5 + rot: 1.5707963267948966 rad + pos: -26.5,21.5 parent: 2 - - uid: 30204 + - uid: 30858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,-9.5 + pos: -21.5,21.5 parent: 2 - - uid: 30205 + - uid: 30859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-3.5 + pos: -20.5,21.5 parent: 2 - - uid: 30206 + - uid: 30860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-3.5 + pos: -22.5,21.5 parent: 2 - - uid: 30207 + - uid: 30861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-3.5 + pos: -19.5,20.5 parent: 2 - - uid: 30208 + - uid: 30862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-9.5 + rot: -1.5707963267948966 rad + pos: -19.5,15.5 parent: 2 - - uid: 30209 + - uid: 30863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,-9.5 + rot: 1.5707963267948966 rad + pos: -23.5,21.5 parent: 2 - - uid: 30210 + - uid: 30864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-9.5 + pos: -128.5,-15.5 parent: 2 - - uid: 30211 + - uid: 30865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-9.5 + pos: -125.5,-13.5 parent: 2 - - uid: 30212 + - uid: 30866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-9.5 + pos: -126.5,-13.5 parent: 2 - - uid: 30213 + - uid: 30867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-9.5 + pos: -126.5,-16.5 parent: 2 - - uid: 30214 + - uid: 30868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-9.5 + pos: -98.5,17.5 parent: 2 - - uid: 30215 + - uid: 30869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-5.5 + pos: 33.5,-36.5 parent: 2 - - uid: 30216 + - uid: 30870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-9.5 + rot: -1.5707963267948966 rad + pos: -25.5,13.5 parent: 2 - - uid: 30217 + - uid: 30871 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-8.5 + pos: -127.5,-12.5 parent: 2 - - uid: 30218 + - uid: 30872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-4.5 + pos: -124.5,-16.5 parent: 2 - - uid: 30219 + - uid: 30873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-6.5 + rot: -1.5707963267948966 rad + pos: -36.5,-43.5 parent: 2 - - uid: 30220 + - uid: 30874 components: - type: Transform rot: -1.5707963267948966 rad - pos: -95.5,-5.5 + pos: -36.5,-42.5 parent: 2 - - uid: 30221 + - uid: 30875 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,-9.5 + pos: -21.5,58.5 parent: 2 - - uid: 30222 + - uid: 30876 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.5,-4.5 + pos: -20.5,58.5 parent: 2 - - uid: 30223 + - uid: 30877 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.5,-6.5 + pos: -22.5,58.5 parent: 2 - - uid: 30224 + - uid: 30878 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.5,-5.5 + pos: -23.5,58.5 parent: 2 - - uid: 30225 + - uid: 30879 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-3.5 + pos: -20.5,61.5 parent: 2 - - uid: 30226 + - uid: 30880 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,-3.5 + pos: -21.5,61.5 parent: 2 - - uid: 30227 + - uid: 30881 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,-3.5 + pos: -22.5,61.5 parent: 2 - - uid: 30228 + - uid: 30882 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,-3.5 + pos: -23.5,61.5 parent: 2 - - uid: 30229 + - uid: 30883 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,-3.5 + pos: -23.5,60.5 parent: 2 - - uid: 30230 + - uid: 30884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-3.5 + rot: -1.5707963267948966 rad + pos: -42.5,-20.5 parent: 2 - - uid: 30231 +- proto: WallReinforcedRust + entities: + - uid: 30885 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-4.5 + rot: 1.5707963267948966 rad + pos: -98.5,14.5 parent: 2 - - uid: 30232 + - uid: 30886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-5.5 + rot: 1.5707963267948966 rad + pos: -100.5,13.5 parent: 2 - - uid: 30233 + - uid: 30887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-6.5 + rot: 1.5707963267948966 rad + pos: -98.5,20.5 parent: 2 - - uid: 30234 + - uid: 30888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-7.5 + rot: 1.5707963267948966 rad + pos: -103.5,20.5 parent: 2 - - uid: 30235 + - uid: 30889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-8.5 + pos: -125.5,-14.5 parent: 2 - - uid: 30236 + - uid: 30890 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,0.5 + pos: -125.5,-15.5 parent: 2 - - uid: 30237 + - uid: 30891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,0.5 + pos: -125.5,-16.5 parent: 2 - - uid: 30238 + - uid: 30892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,0.5 + pos: -128.5,-14.5 parent: 2 - - uid: 30239 + - uid: 30893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,0.5 + pos: -127.5,-16.5 parent: 2 - - uid: 30240 + - uid: 30894 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,0.5 + pos: -126.5,-17.5 parent: 2 - - uid: 30241 +- proto: WallRiveted + entities: + - uid: 30895 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,0.5 + pos: -16.5,19.5 parent: 2 - - uid: 30242 + - uid: 30896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-3.5 + pos: -18.5,18.5 parent: 2 - - uid: 30243 + - uid: 30897 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,5.5 + pos: -17.5,19.5 parent: 2 - - uid: 30244 + - uid: 30898 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,0.5 + pos: -16.5,17.5 parent: 2 - - uid: 30245 + - uid: 30899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-9.5 + pos: -18.5,19.5 parent: 2 - - uid: 30246 + - uid: 30900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-9.5 + pos: -17.5,17.5 parent: 2 - - uid: 30247 + - uid: 30901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,21.5 + pos: -18.5,17.5 parent: 2 - - uid: 30248 + - uid: 30902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,10.5 + pos: -16.5,18.5 parent: 2 - - uid: 30249 + - uid: 43918 components: - type: Transform rot: 3.141592653589793 rad - pos: -115.5,0.5 - parent: 2 - - uid: 30250 + pos: 34.5,57.5 + parent: 40599 + - uid: 43919 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,0.5 - parent: 2 - - uid: 30251 + pos: 34.5,55.5 + parent: 40599 + - uid: 43920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,0.5 - parent: 2 - - uid: 30252 + pos: 37.5,57.5 + parent: 40599 + - uid: 43921 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,0.5 - parent: 2 - - uid: 30253 + pos: 36.5,57.5 + parent: 40599 + - uid: 43922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,0.5 - parent: 2 - - uid: 30254 + pos: 35.5,57.5 + parent: 40599 + - uid: 43923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,0.5 - parent: 2 - - uid: 30255 + pos: 37.5,56.5 + parent: 40599 + - uid: 43924 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,0.5 - parent: 2 - - uid: 30256 + pos: 37.5,55.5 + parent: 40599 + - uid: 43925 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,0.5 - parent: 2 - - uid: 30257 + pos: 35.5,55.5 + parent: 40599 + - uid: 43926 + components: + - type: Transform + pos: 36.5,55.5 + parent: 40599 + - uid: 43927 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,1.5 - parent: 2 - - uid: 30258 + pos: 34.5,56.5 + parent: 40599 +- proto: WallRock + entities: + - uid: 30903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,16.5 + pos: -46.5,49.5 parent: 2 - - uid: 30259 + - uid: 30904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,8.5 + pos: -46.5,51.5 parent: 2 - - uid: 30260 + - uid: 30905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,11.5 + pos: -47.5,49.5 parent: 2 - - uid: 30261 + - uid: 30906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,12.5 + pos: -48.5,50.5 parent: 2 - - uid: 30262 + - uid: 30907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,13.5 + pos: -48.5,49.5 parent: 2 - - uid: 30263 + - uid: 30908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,14.5 + pos: -45.5,51.5 parent: 2 - - uid: 30264 + - uid: 30909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,13.5 + pos: -46.5,52.5 parent: 2 - - uid: 30265 + - uid: 30910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,27.5 + pos: -39.5,53.5 parent: 2 - - uid: 30266 + - uid: 30911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,3.5 + pos: -47.5,45.5 parent: 2 - - uid: 30267 + - uid: 30912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,4.5 + pos: -47.5,46.5 parent: 2 - - uid: 30268 + - uid: 30913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,2.5 + pos: -52.5,51.5 parent: 2 - - uid: 30269 + - uid: 30914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,8.5 + pos: -39.5,49.5 parent: 2 - - uid: 30270 + - uid: 30915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,9.5 + pos: -45.5,50.5 parent: 2 - - uid: 30271 + - uid: 30916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,10.5 + pos: -1.5,67.5 parent: 2 - - uid: 30272 + - uid: 30917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,11.5 + pos: -0.5,68.5 parent: 2 - - uid: 30273 + - uid: 30918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,12.5 + pos: -13.5,-29.5 parent: 2 - - uid: 30274 + - uid: 30919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,13.5 + pos: -14.5,-29.5 parent: 2 - - uid: 30275 + - uid: 30920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,22.5 + pos: -14.5,-28.5 parent: 2 - - uid: 30276 + - uid: 30921 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,13.5 + pos: -5.5,-19.5 parent: 2 - - uid: 30277 + - uid: 30922 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,21.5 + pos: -14.5,-27.5 parent: 2 - - uid: 30278 + - uid: 30923 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,21.5 + pos: -13.5,-19.5 parent: 2 - - uid: 30279 + - uid: 30924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,12.5 + pos: -6.5,-19.5 parent: 2 - - uid: 30280 + - uid: 30925 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,11.5 + pos: -14.5,-26.5 parent: 2 - - uid: 30281 + - uid: 30926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,10.5 + pos: -12.5,-19.5 parent: 2 - - uid: 30282 + - uid: 30927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,9.5 + pos: -4.5,-19.5 parent: 2 - - uid: 30283 + - uid: 30928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,8.5 + pos: -14.5,-25.5 parent: 2 - - uid: 30284 + - uid: 30929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,7.5 + pos: -14.5,-20.5 parent: 2 - - uid: 30285 + - uid: 30930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,6.5 + pos: -14.5,-19.5 parent: 2 - - uid: 30286 + - uid: 30931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,5.5 + pos: -14.5,-21.5 parent: 2 - - uid: 30287 + - uid: 30932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,0.5 + pos: -14.5,-22.5 parent: 2 - - uid: 30288 + - uid: 30933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,13.5 + pos: -4.5,-26.5 parent: 2 - - uid: 30289 + - uid: 30934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,13.5 + pos: -4.5,-21.5 parent: 2 - - uid: 30290 + - uid: 30935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,13.5 + pos: -4.5,-23.5 parent: 2 - - uid: 30291 + - uid: 30936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,13.5 + pos: -4.5,-24.5 parent: 2 - - uid: 30292 + - uid: 30937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,21.5 + pos: -4.5,-27.5 parent: 2 - - uid: 30293 + - uid: 30938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,14.5 + pos: -6.5,-29.5 parent: 2 - - uid: 30294 + - uid: 30939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,14.5 + pos: -4.5,-28.5 parent: 2 - - uid: 30295 + - uid: 30940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,14.5 + pos: -4.5,-25.5 parent: 2 - - uid: 30296 + - uid: 30941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,14.5 + pos: -4.5,-22.5 parent: 2 - - uid: 30297 + - uid: 30942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,18.5 + pos: -4.5,-20.5 parent: 2 - - uid: 30298 + - uid: 30943 components: - type: Transform - pos: -118.5,17.5 + pos: -4.5,-29.5 parent: 2 - - uid: 30299 + - uid: 30944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,18.5 + pos: -14.5,-24.5 parent: 2 - - uid: 30300 + - uid: 30945 components: - type: Transform - pos: -118.5,15.5 + pos: -12.5,-29.5 parent: 2 - - uid: 30301 + - uid: 30946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,17.5 + pos: -14.5,-23.5 parent: 2 - - uid: 30302 + - uid: 30947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,18.5 + pos: -5.5,-29.5 parent: 2 - - uid: 30303 + - uid: 30948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,18.5 + pos: 1.5,68.5 parent: 2 - - uid: 30304 + - uid: 30949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,18.5 + pos: -1.5,68.5 parent: 2 - - uid: 30305 + - uid: 30950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,21.5 + pos: -1.5,64.5 parent: 2 - - uid: 30306 + - uid: 30951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,22.5 + pos: -1.5,65.5 parent: 2 - - uid: 30307 + - uid: 30952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,22.5 + pos: 4.5,68.5 parent: 2 - - uid: 30308 + - uid: 30953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,22.5 + pos: 3.5,68.5 parent: 2 - - uid: 30309 + - uid: 30954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,22.5 + pos: 4.5,67.5 parent: 2 - - uid: 30310 + - uid: 30955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,21.5 + pos: -44.5,51.5 parent: 2 - - uid: 30311 + - uid: 30956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,19.5 + pos: -44.5,49.5 parent: 2 - - uid: 30312 + - uid: 30957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,25.5 + pos: -46.5,48.5 parent: 2 - - uid: 30313 + - uid: 30958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,26.5 + pos: -45.5,48.5 parent: 2 - - uid: 30314 + - uid: 30959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,26.5 + pos: -48.5,48.5 parent: 2 - - uid: 30315 + - uid: 30960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,26.5 + pos: -46.5,55.5 parent: 2 - - uid: 30316 + - uid: 30961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,26.5 + pos: -45.5,49.5 parent: 2 - - uid: 30317 + - uid: 30962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,26.5 + pos: -47.5,52.5 parent: 2 - - uid: 30318 + - uid: 30963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,25.5 + pos: -49.5,51.5 parent: 2 - - uid: 30319 + - uid: 30964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,23.5 + pos: -46.5,53.5 parent: 2 - - uid: 30320 + - uid: 30965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,26.5 + pos: -45.5,52.5 parent: 2 - - uid: 30321 + - uid: 30966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,25.5 + pos: -43.5,50.5 parent: 2 - - uid: 30322 + - uid: 30967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,24.5 + pos: -41.5,57.5 parent: 2 - - uid: 30323 + - uid: 30968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,23.5 + pos: -36.5,56.5 parent: 2 - - uid: 30324 + - uid: 30969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,22.5 + pos: -41.5,58.5 parent: 2 - - uid: 30325 +- proto: WallRockBasalt + entities: + - uid: 46815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,21.5 - parent: 2 - - uid: 30326 + pos: -1.5,14.5 + parent: 46584 + - uid: 46816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,26.5 - parent: 2 - - uid: 30327 + pos: -0.5,14.5 + parent: 46584 + - uid: 46817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,26.5 - parent: 2 - - uid: 30328 + pos: -0.5,16.5 + parent: 46584 + - uid: 46818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,26.5 - parent: 2 - - uid: 30329 + pos: 3.5,14.5 + parent: 46584 + - uid: 46819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,26.5 - parent: 2 - - uid: 30330 + pos: 4.5,15.5 + parent: 46584 + - uid: 46820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,19.5 - parent: 2 - - uid: 30331 + pos: 5.5,16.5 + parent: 46584 + - uid: 46821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,25.5 - parent: 2 - - uid: 30332 + pos: 5.5,17.5 + parent: 46584 + - uid: 46822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,24.5 - parent: 2 - - uid: 30333 + pos: 5.5,18.5 + parent: 46584 + - uid: 46823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,21.5 - parent: 2 - - uid: 30334 + pos: 4.5,18.5 + parent: 46584 + - uid: 46824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,27.5 - parent: 2 - - uid: 30335 + pos: 3.5,18.5 + parent: 46584 + - uid: 46825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,27.5 - parent: 2 - - uid: 30336 + pos: 2.5,18.5 + parent: 46584 + - uid: 46826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,29.5 - parent: 2 - - uid: 30337 + pos: 1.5,18.5 + parent: 46584 + - uid: 46827 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,31.5 - parent: 2 - - uid: 30338 + pos: 0.5,17.5 + parent: 46584 + - uid: 46828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,31.5 - parent: 2 - - uid: 30339 + pos: 4.5,17.5 + parent: 46584 + - uid: 46829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,28.5 - parent: 2 - - uid: 30340 + pos: 1.5,17.5 + parent: 46584 + - uid: 46830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,33.5 - parent: 2 - - uid: 30341 + pos: 0.5,16.5 + parent: 46584 + - uid: 46831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,33.5 - parent: 2 - - uid: 30342 + pos: 2.5,17.5 + parent: 46584 + - uid: 46832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,33.5 - parent: 2 - - uid: 30343 + pos: 4.5,13.5 + parent: 46584 + - uid: 46833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,30.5 - parent: 2 - - uid: 30344 + pos: 3.5,11.5 + parent: 46584 + - uid: 46834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,29.5 - parent: 2 - - uid: 30345 + pos: 4.5,11.5 + parent: 46584 + - uid: 46835 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,29.5 - parent: 2 - - uid: 30346 + pos: -2.5,13.5 + parent: 46584 + - uid: 46836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,33.5 - parent: 2 - - uid: 30347 + pos: -3.5,12.5 + parent: 46584 + - uid: 46837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,33.5 - parent: 2 - - uid: 30348 + pos: -3.5,13.5 + parent: 46584 + - uid: 46838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,33.5 - parent: 2 - - uid: 30349 + pos: -4.5,12.5 + parent: 46584 + - uid: 46839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,32.5 - parent: 2 - - uid: 30350 + pos: -4.5,13.5 + parent: 46584 + - uid: 46840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,31.5 - parent: 2 - - uid: 30351 + pos: -5.5,13.5 + parent: 46584 + - uid: 46841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,30.5 - parent: 2 - - uid: 30352 + pos: -5.5,12.5 + parent: 46584 + - uid: 46842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,29.5 - parent: 2 - - uid: 30353 + pos: -6.5,12.5 + parent: 46584 + - uid: 46843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,28.5 - parent: 2 - - uid: 30354 + pos: -6.5,11.5 + parent: 46584 + - uid: 46844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,27.5 - parent: 2 - - uid: 30355 + pos: -6.5,10.5 + parent: 46584 + - uid: 46845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,27.5 - parent: 2 - - uid: 30356 + pos: -7.5,10.5 + parent: 46584 + - uid: 46846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,27.5 - parent: 2 - - uid: 30357 + pos: -6.5,9.5 + parent: 46584 + - uid: 46847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,27.5 - parent: 2 - - uid: 30358 + pos: 4.5,14.5 + parent: 46584 + - uid: 46848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,27.5 - parent: 2 - - uid: 30359 + pos: 5.5,15.5 + parent: 46584 + - uid: 46849 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,27.5 + pos: 5.5,14.5 + parent: 46584 +- proto: WallRockBasaltPlasma + entities: + - uid: 46850 + components: + - type: Transform + pos: -0.5,15.5 + parent: 46584 + - uid: 46851 + components: + - type: Transform + pos: 4.5,16.5 + parent: 46584 +- proto: WallRockCoal + entities: + - uid: 30970 + components: + - type: Transform + pos: -1.5,66.5 parent: 2 - - uid: 30360 + - uid: 30971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,33.5 + pos: -47.5,48.5 parent: 2 - - uid: 30361 + - uid: 30972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,33.5 + pos: -44.5,50.5 parent: 2 - - uid: 30362 +- proto: WallRockPlasma + entities: + - uid: 30973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,33.5 + pos: -44.5,52.5 parent: 2 - - uid: 30363 +- proto: WallRockQuartz + entities: + - uid: 30974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,33.5 + pos: 2.5,68.5 parent: 2 - - uid: 30364 +- proto: WallRockSalt + entities: + - uid: 30975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,33.5 + pos: 0.5,68.5 parent: 2 - - uid: 30365 +- proto: WallRockSnow + entities: + - uid: 30976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,32.5 + pos: -42.5,-21.5 parent: 2 - - uid: 30366 + - uid: 30977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,31.5 + pos: -97.5,51.5 parent: 2 - - uid: 30367 + - uid: 30978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,30.5 + pos: 80.5,-28.5 parent: 2 - - uid: 30368 + - uid: 30979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,29.5 + pos: 79.5,-31.5 parent: 2 - - uid: 30369 + - uid: 30980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,28.5 + pos: 79.5,-33.5 parent: 2 - - uid: 30370 + - uid: 30981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,31.5 + pos: 79.5,-34.5 parent: 2 - - uid: 30371 + - uid: 30982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,31.5 + pos: 80.5,-31.5 parent: 2 - - uid: 30372 + - uid: 30983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,29.5 + pos: 79.5,-32.5 parent: 2 - - uid: 30373 + - uid: 30984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,29.5 + pos: -26.5,68.5 parent: 2 - - uid: 30374 + - uid: 30985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,28.5 + pos: -34.5,72.5 parent: 2 - - uid: 30375 + - uid: 30986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,29.5 + pos: -37.5,73.5 parent: 2 - - uid: 30376 + - uid: 30987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,30.5 + pos: -33.5,72.5 parent: 2 - - uid: 30377 + - uid: 30988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,31.5 + pos: -97.5,53.5 parent: 2 - - uid: 30378 + - uid: 30989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,32.5 + pos: -99.5,52.5 parent: 2 - - uid: 30379 + - uid: 30990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,33.5 + pos: -95.5,46.5 parent: 2 - - uid: 30380 + - uid: 30991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,32.5 + pos: -104.5,46.5 parent: 2 - - uid: 30381 + - uid: 30992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,13.5 + pos: -97.5,52.5 parent: 2 - - uid: 30382 + - uid: 30993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,13.5 + pos: -100.5,51.5 parent: 2 - - uid: 30383 + - uid: 30994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,13.5 + pos: -99.5,53.5 parent: 2 - - uid: 30384 + - uid: 30995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,13.5 + pos: -95.5,47.5 parent: 2 - - uid: 30385 + - uid: 30996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,13.5 + pos: -103.5,46.5 parent: 2 - - uid: 30386 + - uid: 30997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,23.5 + pos: -95.5,45.5 parent: 2 - - uid: 30387 + - uid: 30998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,29.5 + pos: -38.5,72.5 parent: 2 - - uid: 30388 + - uid: 30999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,29.5 + pos: -39.5,73.5 parent: 2 - - uid: 30389 + - uid: 31000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,29.5 + pos: -99.5,50.5 parent: 2 - - uid: 30390 + - uid: 31001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,27.5 + pos: -31.5,71.5 parent: 2 - - uid: 30391 + - uid: 31002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,28.5 + pos: -29.5,72.5 parent: 2 - - uid: 30392 + - uid: 31003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -134.5,12.5 + pos: -28.5,71.5 parent: 2 - - uid: 30393 + - uid: 31004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -133.5,12.5 + pos: -35.5,73.5 parent: 2 - - uid: 30394 + - uid: 31005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -132.5,12.5 + pos: -29.5,71.5 parent: 2 - - uid: 30395 + - uid: 31006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,12.5 + pos: -28.5,70.5 parent: 2 - - uid: 30396 + - uid: 31007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,12.5 + pos: -87.5,63.5 parent: 2 - - uid: 30397 + - uid: 31008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,11.5 + pos: -106.5,53.5 parent: 2 - - uid: 30398 + - uid: 31009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,10.5 + pos: -85.5,62.5 parent: 2 - - uid: 30399 + - uid: 31010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,9.5 + pos: -90.5,63.5 parent: 2 - - uid: 30400 + - uid: 31011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,8.5 + pos: -89.5,62.5 parent: 2 - - uid: 30401 + - uid: 31012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,7.5 + pos: -30.5,69.5 parent: 2 - - uid: 30402 + - uid: 31013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -134.5,7.5 + pos: -96.5,44.5 parent: 2 - - uid: 30403 + - uid: 31014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -132.5,7.5 + pos: -112.5,50.5 parent: 2 - - uid: 30404 + - uid: 31015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,7.5 + pos: -113.5,51.5 parent: 2 - - uid: 30405 + - uid: 31016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,7.5 + pos: -89.5,64.5 parent: 2 - - uid: 30406 + - uid: 31017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,8.5 + pos: -87.5,55.5 parent: 2 - - uid: 30407 + - uid: 31018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,9.5 + pos: -114.5,40.5 parent: 2 - - uid: 30408 + - uid: 31019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,10.5 + pos: -110.5,41.5 parent: 2 - - uid: 30409 + - uid: 31020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,11.5 + pos: -112.5,40.5 parent: 2 - - uid: 30410 + - uid: 31021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -130.5,12.5 + pos: -87.5,59.5 parent: 2 - - uid: 30411 + - uid: 31022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,15.5 + pos: -104.5,52.5 parent: 2 - - uid: 30412 + - uid: 31023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,18.5 + pos: -104.5,51.5 parent: 2 - - uid: 30413 + - uid: 31024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,17.5 + pos: -105.5,52.5 parent: 2 - - uid: 30414 + - uid: 31025 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,23.5 + pos: -113.5,40.5 parent: 2 - - uid: 30415 + - uid: 31026 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,22.5 + pos: -104.5,50.5 parent: 2 - - uid: 30416 + - uid: 31027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,18.5 + pos: -87.5,57.5 parent: 2 - - uid: 30417 + - uid: 31028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,17.5 + pos: -92.5,56.5 parent: 2 - - uid: 30418 + - uid: 31029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,17.5 + pos: -86.5,54.5 parent: 2 - - uid: 30419 + - uid: 31030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,17.5 + pos: -88.5,57.5 parent: 2 - - uid: 30420 + - uid: 31031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,18.5 + pos: -88.5,56.5 parent: 2 - - uid: 30421 + - uid: 31032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,22.5 + pos: -100.5,50.5 parent: 2 - - uid: 30422 + - uid: 31033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,23.5 + pos: -100.5,46.5 parent: 2 - - uid: 30423 + - uid: 31034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,23.5 + pos: -115.5,49.5 parent: 2 - - uid: 30424 + - uid: 31035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,23.5 + pos: -112.5,49.5 parent: 2 - - uid: 30425 + - uid: 31036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,5.5 + pos: -101.5,46.5 parent: 2 - - uid: 30426 + - uid: 31037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,5.5 + pos: -88.5,64.5 parent: 2 - - uid: 30427 + - uid: 31038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,5.5 + pos: -96.5,53.5 parent: 2 - - uid: 30428 + - uid: 31039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,5.5 + pos: -97.5,50.5 parent: 2 - - uid: 30429 + - uid: 31040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,6.5 + pos: -106.5,54.5 parent: 2 - - uid: 30430 + - uid: 31041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,7.5 + pos: -95.5,48.5 parent: 2 - - uid: 30431 + - uid: 31042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,8.5 + pos: -100.5,49.5 parent: 2 - - uid: 30432 + - uid: 31043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,9.5 + pos: -89.5,54.5 parent: 2 - - uid: 30433 + - uid: 31044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,10.5 + pos: -32.5,72.5 parent: 2 - - uid: 30434 + - uid: 31045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,11.5 + pos: -30.5,73.5 parent: 2 - - uid: 30435 + - uid: 31046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,12.5 + pos: -37.5,74.5 parent: 2 - - uid: 30436 + - uid: 31047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-5.5 + pos: -63.5,56.5 parent: 2 - - uid: 30437 + - uid: 31048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-5.5 + pos: -31.5,73.5 parent: 2 - - uid: 30438 + - uid: 31049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-6.5 + pos: -102.5,51.5 parent: 2 - - uid: 30439 + - uid: 31050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-9.5 + pos: -104.5,54.5 parent: 2 - - uid: 30440 + - uid: 31051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-9.5 + pos: -89.5,65.5 parent: 2 - - uid: 30441 + - uid: 31052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-8.5 + pos: -102.5,46.5 parent: 2 - - uid: 30442 + - uid: 31053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,5.5 + pos: -97.5,41.5 parent: 2 - - uid: 30443 + - uid: 31054 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,5.5 + pos: -90.5,62.5 parent: 2 - - uid: 30444 + - uid: 31055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,5.5 + pos: -87.5,60.5 parent: 2 - - uid: 30445 + - uid: 31056 components: - type: Transform - pos: -97.5,-9.5 + pos: -31.5,66.5 parent: 2 - - uid: 30446 + - uid: 31057 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-22.5 + pos: -89.5,56.5 parent: 2 - - uid: 30447 + - uid: 31058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-22.5 + pos: -88.5,55.5 parent: 2 - - uid: 30448 + - uid: 31059 components: - type: Transform - pos: -34.5,-21.5 + pos: -37.5,72.5 parent: 2 - - uid: 30449 + - uid: 31060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-22.5 + pos: -32.5,67.5 parent: 2 - - uid: 30450 + - uid: 31061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,5.5 + pos: -85.5,61.5 parent: 2 - - uid: 30451 + - uid: 31062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,6.5 + pos: -100.5,52.5 parent: 2 - - uid: 30452 + - uid: 31063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,4.5 + pos: -92.5,59.5 parent: 2 - - uid: 30453 + - uid: 31064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,6.5 + pos: -34.5,60.5 parent: 2 - - uid: 30454 + - uid: 31065 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,6.5 + pos: 77.5,-34.5 parent: 2 - - uid: 30455 + - uid: 31066 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,3.5 + pos: -113.5,49.5 parent: 2 - - uid: 30456 + - uid: 31067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,0.5 + pos: -114.5,50.5 parent: 2 - - uid: 30457 + - uid: 31068 components: - type: Transform - pos: -7.5,14.5 + pos: -98.5,41.5 parent: 2 - - uid: 30458 + - uid: 31069 components: - type: Transform - pos: -18.5,-21.5 + pos: 78.5,-34.5 parent: 2 - - uid: 30459 + - uid: 31070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,27.5 + pos: -90.5,65.5 parent: 2 - - uid: 30460 + - uid: 31071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,4.5 + pos: -91.5,57.5 parent: 2 - - uid: 30461 + - uid: 31072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-22.5 + pos: -91.5,58.5 parent: 2 - - uid: 30462 + - uid: 31073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-22.5 + pos: -36.5,74.5 parent: 2 - - uid: 30463 + - uid: 31074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-22.5 + pos: -97.5,43.5 parent: 2 - - uid: 30464 + - uid: 31075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-2.5 + pos: -113.5,50.5 parent: 2 - - uid: 30465 + - uid: 31076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,-7.5 + pos: -85.5,59.5 parent: 2 - - uid: 30466 + - uid: 31077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,-7.5 + pos: -113.5,48.5 parent: 2 - - uid: 30467 + - uid: 31078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,-7.5 + pos: -114.5,48.5 parent: 2 - - uid: 30468 + - uid: 31079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-6.5 + pos: -86.5,58.5 parent: 2 - - uid: 30469 + - uid: 31080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,-2.5 + pos: -35.5,72.5 parent: 2 - - uid: 30470 + - uid: 31081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-6.5 + pos: -34.5,59.5 parent: 2 - - uid: 30471 + - uid: 31082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-3.5 + pos: -32.5,66.5 parent: 2 - - uid: 30472 + - uid: 31083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,-7.5 + pos: -34.5,71.5 parent: 2 - - uid: 30473 + - uid: 31084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,-7.5 + pos: -107.5,54.5 parent: 2 - - uid: 30474 + - uid: 31085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-7.5 + pos: -90.5,58.5 parent: 2 - - uid: 30475 + - uid: 31086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-8.5 + pos: -87.5,54.5 parent: 2 - - uid: 30476 + - uid: 31087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-7.5 + pos: -86.5,61.5 parent: 2 - - uid: 30477 + - uid: 31088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-7.5 + pos: -89.5,57.5 parent: 2 - - uid: 30478 + - uid: 31089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-3.5 + pos: -89.5,63.5 parent: 2 - - uid: 30479 + - uid: 31090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-5.5 + pos: -89.5,55.5 parent: 2 - - uid: 30480 + - uid: 31091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-2.5 + pos: -84.5,61.5 parent: 2 - - uid: 30481 + - uid: 31092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-4.5 + pos: -88.5,62.5 parent: 2 - - uid: 30482 + - uid: 31093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,-2.5 + pos: -90.5,55.5 parent: 2 - - uid: 30483 + - uid: 31094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-4.5 + pos: -86.5,60.5 parent: 2 - - uid: 30484 + - uid: 31095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 99.5,-5.5 + pos: -86.5,59.5 parent: 2 - - uid: 30485 + - uid: 31096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 98.5,-2.5 + pos: -88.5,61.5 parent: 2 - - uid: 30486 + - uid: 31097 components: - type: Transform - pos: -28.5,19.5 + pos: -87.5,61.5 parent: 2 - - uid: 30487 + - uid: 31098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,21.5 + pos: -86.5,62.5 parent: 2 - - uid: 30488 + - uid: 31099 components: - type: Transform - pos: -34.5,17.5 + pos: -87.5,62.5 parent: 2 - - uid: 30489 + - uid: 31100 components: - type: Transform - pos: -27.5,21.5 + pos: -90.5,56.5 parent: 2 - - uid: 30490 + - uid: 31101 components: - type: Transform - pos: -20.5,19.5 + pos: -88.5,63.5 parent: 2 - - uid: 30491 + - uid: 31102 components: - type: Transform - pos: -17.5,20.5 + pos: -90.5,57.5 parent: 2 - - uid: 30492 + - uid: 31103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,15.5 + pos: -88.5,54.5 parent: 2 - - uid: 30493 + - uid: 31104 components: - type: Transform - pos: -32.5,17.5 + pos: -90.5,54.5 parent: 2 - - uid: 30494 + - uid: 31105 components: - type: Transform - pos: -18.5,20.5 + pos: 38.5,51.5 parent: 2 - - uid: 30495 + - uid: 31106 components: - type: Transform - pos: -20.5,20.5 + pos: 40.5,52.5 parent: 2 - - uid: 30496 + - uid: 31107 components: - type: Transform - pos: -16.5,20.5 + pos: 38.5,50.5 parent: 2 - - uid: 30497 + - uid: 31108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,16.5 + pos: 38.5,47.5 parent: 2 - - uid: 30498 + - uid: 31109 components: - type: Transform - pos: -18.5,16.5 + pos: 40.5,50.5 parent: 2 - - uid: 30499 + - uid: 31110 components: - type: Transform - pos: -15.5,18.5 + pos: 38.5,52.5 parent: 2 - - uid: 30500 + - uid: 31111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,14.5 + pos: 38.5,53.5 parent: 2 - - uid: 30501 + - uid: 31112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,21.5 + pos: 38.5,48.5 parent: 2 - - uid: 30502 + - uid: 31113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,17.5 + pos: 40.5,51.5 parent: 2 - - uid: 30503 + - uid: 31114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,14.5 + pos: 40.5,48.5 parent: 2 - - uid: 30504 + - uid: 31115 components: - type: Transform - pos: -17.5,16.5 + pos: 39.5,47.5 parent: 2 - - uid: 30505 + - uid: 31116 components: - type: Transform - pos: -19.5,16.5 + pos: 40.5,49.5 parent: 2 - - uid: 30506 + - uid: 31117 components: - type: Transform - pos: -16.5,16.5 + pos: 40.5,53.5 parent: 2 - - uid: 30507 + - uid: 31118 components: - type: Transform - pos: -15.5,19.5 + pos: 40.5,54.5 parent: 2 - - uid: 30508 + - uid: 31119 components: - type: Transform - pos: -33.5,17.5 + pos: 39.5,48.5 parent: 2 - - uid: 30509 + - uid: 31120 components: - type: Transform - pos: -28.5,20.5 + pos: 39.5,49.5 parent: 2 - - uid: 30510 + - uid: 31121 components: - type: Transform - pos: -28.5,21.5 + pos: 40.5,55.5 parent: 2 - - uid: 30511 + - uid: 31122 components: - type: Transform - pos: -15.5,16.5 + pos: 41.5,49.5 parent: 2 - - uid: 30512 + - uid: 31123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,18.5 + pos: 39.5,50.5 parent: 2 - - uid: 30513 + - uid: 31124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,17.5 + pos: 41.5,50.5 parent: 2 - - uid: 30514 + - uid: 31125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,21.5 + pos: 39.5,51.5 parent: 2 - - uid: 30515 + - uid: 31126 components: - type: Transform - pos: -21.5,21.5 + pos: 41.5,47.5 parent: 2 - - uid: 30516 + - uid: 31127 components: - type: Transform - pos: -20.5,21.5 + pos: 39.5,55.5 parent: 2 - - uid: 30517 + - uid: 31128 components: - type: Transform - pos: -22.5,21.5 + pos: 41.5,48.5 parent: 2 - - uid: 30518 + - uid: 31129 components: - type: Transform - pos: -19.5,20.5 + pos: 40.5,47.5 parent: 2 - - uid: 30519 + - uid: 31130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,15.5 + pos: 39.5,52.5 parent: 2 - - uid: 30520 + - uid: 31131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,21.5 + pos: 39.5,53.5 parent: 2 - - uid: 30521 + - uid: 31132 components: - type: Transform - pos: -128.5,-15.5 + pos: 39.5,54.5 parent: 2 - - uid: 30522 + - uid: 31133 components: - type: Transform - pos: -125.5,-13.5 + pos: -56.5,-30.5 parent: 2 - - uid: 30523 + - uid: 31134 components: - type: Transform - pos: -126.5,-13.5 + pos: -58.5,-29.5 parent: 2 - - uid: 30524 + - uid: 31135 components: - type: Transform - pos: -128.5,-12.5 + pos: -58.5,-28.5 parent: 2 - - uid: 30525 + - uid: 31136 components: - type: Transform - pos: -126.5,-16.5 + pos: -53.5,-28.5 parent: 2 - - uid: 30526 + - uid: 31137 components: - type: Transform - pos: -98.5,17.5 + pos: -53.5,-29.5 parent: 2 - - uid: 30527 + - uid: 31138 components: - type: Transform - pos: 33.5,-36.5 + pos: -54.5,-27.5 parent: 2 - - uid: 30528 + - uid: 31139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 + pos: -55.5,-31.5 parent: 2 - - uid: 30529 + - uid: 31140 components: - type: Transform - pos: -127.5,-12.5 + pos: -53.5,-27.5 parent: 2 - - uid: 30530 + - uid: 31141 components: - type: Transform - pos: -124.5,-16.5 + pos: -56.5,-33.5 parent: 2 - - uid: 30531 + - uid: 31142 components: - type: Transform - pos: -125.5,-17.5 + pos: -55.5,-32.5 parent: 2 - - uid: 30532 + - uid: 31143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-43.5 + pos: -54.5,-32.5 parent: 2 - - uid: 30533 + - uid: 31144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: -55.5,-33.5 parent: 2 -- proto: WallReinforcedRust - entities: - - uid: 30534 + - uid: 31145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,14.5 + pos: -74.5,57.5 parent: 2 - - uid: 30535 + - uid: 31146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,13.5 + pos: -75.5,56.5 parent: 2 - - uid: 30536 + - uid: 31147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,20.5 + pos: -75.5,58.5 parent: 2 - - uid: 30537 + - uid: 31148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,20.5 + pos: -74.5,56.5 parent: 2 - - uid: 30538 + - uid: 31149 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,18.5 + pos: -54.5,45.5 parent: 2 - - uid: 30539 + - uid: 31150 components: - type: Transform - pos: -127.5,-13.5 + pos: -82.5,20.5 parent: 2 - - uid: 30540 + - uid: 31151 components: - type: Transform - pos: -128.5,-16.5 + pos: -56.5,46.5 parent: 2 - - uid: 30541 + - uid: 31152 components: - type: Transform - pos: -125.5,-14.5 + pos: -56.5,43.5 parent: 2 - - uid: 30542 + - uid: 31153 components: - type: Transform - pos: -125.5,-15.5 + pos: -76.5,57.5 parent: 2 - - uid: 30543 + - uid: 31154 components: - type: Transform - pos: -128.5,-13.5 + pos: -76.5,40.5 parent: 2 - - uid: 30544 + - uid: 31155 components: - type: Transform - pos: -125.5,-16.5 + pos: -76.5,41.5 parent: 2 - - uid: 30545 + - uid: 31156 components: - type: Transform - pos: -128.5,-14.5 + pos: -75.5,40.5 parent: 2 - - uid: 30546 + - uid: 31157 components: - type: Transform - pos: -127.5,-16.5 + pos: -72.5,37.5 parent: 2 - - uid: 30547 + - uid: 31158 components: - type: Transform - pos: -126.5,-17.5 + pos: -119.5,32.5 parent: 2 - - uid: 30548 + - uid: 31159 components: - type: Transform - pos: -124.5,-15.5 + pos: -75.5,57.5 parent: 2 -- proto: WallRiveted - entities: - - uid: 30549 + - uid: 31160 components: - type: Transform - pos: -16.5,19.5 + pos: 42.5,48.5 parent: 2 - - uid: 30550 + - uid: 31161 components: - type: Transform - pos: -18.5,18.5 + pos: -54.5,22.5 parent: 2 - - uid: 30551 + - uid: 31162 components: - type: Transform - pos: -17.5,19.5 + pos: -54.5,25.5 parent: 2 - - uid: 30552 + - uid: 31163 components: - type: Transform - pos: -16.5,17.5 + pos: -50.5,26.5 parent: 2 - - uid: 30553 + - uid: 31164 components: - type: Transform - pos: -18.5,19.5 + pos: -50.5,24.5 parent: 2 - - uid: 30554 + - uid: 31165 components: - type: Transform - pos: -17.5,17.5 + pos: 41.5,54.5 parent: 2 - - uid: 30555 + - uid: 31166 components: - type: Transform - pos: -18.5,17.5 + pos: 41.5,52.5 parent: 2 - - uid: 30556 + - uid: 31167 components: - type: Transform - pos: -16.5,18.5 + pos: 41.5,51.5 parent: 2 - - uid: 43529 + - uid: 31168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,57.5 - parent: 40203 - - uid: 43530 + pos: 42.5,47.5 + parent: 2 + - uid: 31169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,55.5 - parent: 40203 - - uid: 43531 + pos: 41.5,53.5 + parent: 2 + - uid: 31170 components: - type: Transform - pos: 37.5,57.5 - parent: 40203 - - uid: 43532 + pos: 42.5,49.5 + parent: 2 + - uid: 31171 components: - type: Transform - pos: 36.5,57.5 - parent: 40203 - - uid: 43533 + pos: 42.5,52.5 + parent: 2 + - uid: 31172 components: - type: Transform - pos: 35.5,57.5 - parent: 40203 - - uid: 43534 + pos: -52.5,21.5 + parent: 2 + - uid: 31173 components: - type: Transform - pos: 37.5,56.5 - parent: 40203 - - uid: 43535 + pos: -54.5,-29.5 + parent: 2 + - uid: 31174 components: - type: Transform - pos: 37.5,55.5 - parent: 40203 - - uid: 43536 + pos: 41.5,55.5 + parent: 2 + - uid: 31175 components: - type: Transform - pos: 35.5,55.5 - parent: 40203 - - uid: 43537 + pos: -67.5,49.5 + parent: 2 + - uid: 31176 components: - type: Transform - pos: 36.5,55.5 - parent: 40203 - - uid: 43538 + pos: -82.5,21.5 + parent: 2 + - uid: 31177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,56.5 - parent: 40203 -- proto: WallRock - entities: - - uid: 30557 + pos: -52.5,26.5 + parent: 2 + - uid: 31178 components: - type: Transform - pos: -39.5,53.5 + pos: -54.5,24.5 parent: 2 - - uid: 30558 + - uid: 31179 components: - type: Transform - pos: -48.5,50.5 + pos: -54.5,27.5 parent: 2 - - uid: 30559 + - uid: 31180 components: - type: Transform - pos: -47.5,45.5 + pos: -58.5,44.5 parent: 2 - - uid: 30560 + - uid: 31181 components: - type: Transform - pos: -47.5,46.5 + pos: -57.5,44.5 parent: 2 - - uid: 30561 + - uid: 31182 components: - type: Transform - pos: -52.5,51.5 + pos: -53.5,19.5 parent: 2 - - uid: 30562 + - uid: 31183 components: - type: Transform - pos: -39.5,49.5 + pos: 42.5,54.5 parent: 2 - - uid: 30563 + - uid: 31184 components: - type: Transform - pos: -45.5,50.5 + pos: 42.5,53.5 parent: 2 - - uid: 30564 + - uid: 31185 components: - type: Transform - pos: -1.5,67.5 + pos: 43.5,54.5 parent: 2 - - uid: 30565 + - uid: 31186 components: - type: Transform - pos: -0.5,68.5 + pos: 43.5,51.5 parent: 2 - - uid: 30566 + - uid: 31187 components: - type: Transform - pos: -13.5,-29.5 + pos: 43.5,53.5 parent: 2 - - uid: 30567 + - uid: 31188 components: - type: Transform - pos: -14.5,-29.5 + pos: -54.5,26.5 parent: 2 - - uid: 30568 + - uid: 31189 components: - type: Transform - pos: -14.5,-28.5 + pos: 43.5,55.5 parent: 2 - - uid: 30569 + - uid: 31190 components: - type: Transform - pos: -5.5,-19.5 + pos: 44.5,48.5 parent: 2 - - uid: 30570 + - uid: 31191 components: - type: Transform - pos: -14.5,-27.5 + pos: 44.5,47.5 parent: 2 - - uid: 30571 + - uid: 31192 components: - type: Transform - pos: -13.5,-19.5 + pos: 43.5,47.5 parent: 2 - - uid: 30572 + - uid: 31193 components: - type: Transform - pos: -6.5,-19.5 + pos: 43.5,48.5 parent: 2 - - uid: 30573 + - uid: 31194 components: - type: Transform - pos: -14.5,-26.5 + pos: 43.5,50.5 parent: 2 - - uid: 30574 + - uid: 31195 components: - type: Transform - pos: -12.5,-19.5 + pos: 43.5,52.5 parent: 2 - - uid: 30575 + - uid: 31196 components: - type: Transform - pos: -4.5,-19.5 + pos: 44.5,50.5 parent: 2 - - uid: 30576 + - uid: 31197 components: - type: Transform - pos: -14.5,-25.5 + pos: 43.5,49.5 parent: 2 - - uid: 30577 + - uid: 31198 components: - type: Transform - pos: -14.5,-20.5 + pos: 42.5,50.5 parent: 2 - - uid: 30578 + - uid: 31199 components: - type: Transform - pos: -14.5,-19.5 + pos: 42.5,51.5 parent: 2 - - uid: 30579 + - uid: 31200 components: - type: Transform - pos: -14.5,-21.5 + pos: 42.5,55.5 parent: 2 - - uid: 30580 + - uid: 31201 components: - type: Transform - pos: -14.5,-22.5 + pos: 44.5,55.5 parent: 2 - - uid: 30581 + - uid: 31202 components: - type: Transform - pos: -4.5,-26.5 + pos: 44.5,49.5 parent: 2 - - uid: 30582 + - uid: 31203 components: - type: Transform - pos: -4.5,-21.5 + pos: 44.5,52.5 parent: 2 - - uid: 30583 + - uid: 31204 components: - type: Transform - pos: -4.5,-23.5 + pos: -57.5,-30.5 parent: 2 - - uid: 30584 + - uid: 31205 components: - type: Transform - pos: -4.5,-24.5 + pos: -56.5,-31.5 parent: 2 - - uid: 30585 + - uid: 31206 components: - type: Transform - pos: -4.5,-27.5 + pos: -57.5,-28.5 parent: 2 - - uid: 30586 + - uid: 31207 components: - type: Transform - pos: -6.5,-29.5 + pos: -57.5,-29.5 parent: 2 - - uid: 30587 + - uid: 31208 components: - type: Transform - pos: -4.5,-28.5 + pos: -53.5,-30.5 parent: 2 - - uid: 30588 + - uid: 31209 components: - type: Transform - pos: -4.5,-25.5 + pos: 37.5,-60.5 parent: 2 - - uid: 30589 + - uid: 31210 components: - type: Transform - pos: -4.5,-22.5 + pos: 34.5,-60.5 parent: 2 - - uid: 30590 + - uid: 31211 components: - type: Transform - pos: -4.5,-20.5 + pos: 40.5,-61.5 parent: 2 - - uid: 30591 + - uid: 31212 components: - type: Transform - pos: -4.5,-29.5 + pos: 41.5,-57.5 parent: 2 - - uid: 30592 + - uid: 31213 components: - type: Transform - pos: -14.5,-24.5 + pos: 43.5,-15.5 parent: 2 - - uid: 30593 + - uid: 31214 components: - type: Transform - pos: -12.5,-29.5 + pos: -69.5,-2.5 parent: 2 - - uid: 30594 + - uid: 31215 components: - type: Transform - pos: -14.5,-23.5 + pos: -67.5,-6.5 parent: 2 - - uid: 30595 + - uid: 31216 components: - type: Transform - pos: -5.5,-29.5 + pos: -68.5,-1.5 parent: 2 - - uid: 30596 + - uid: 31217 components: - type: Transform - pos: 1.5,68.5 + pos: -65.5,-5.5 parent: 2 - - uid: 30597 + - uid: 31218 components: - type: Transform - pos: -1.5,68.5 + pos: -65.5,-6.5 parent: 2 - - uid: 30598 + - uid: 31219 components: - type: Transform - pos: -1.5,64.5 + pos: -65.5,-7.5 parent: 2 - - uid: 30599 + - uid: 31220 components: - type: Transform - pos: -1.5,65.5 + pos: 43.5,-13.5 parent: 2 - - uid: 30600 + - uid: 31221 components: - type: Transform - pos: 4.5,68.5 + pos: 43.5,-16.5 parent: 2 - - uid: 30601 + - uid: 31222 components: - type: Transform - pos: 3.5,68.5 + pos: -66.5,-5.5 parent: 2 - - uid: 30602 + - uid: 31223 components: - type: Transform - pos: 4.5,67.5 + pos: -65.5,-8.5 parent: 2 - - uid: 30603 + - uid: 31224 components: - type: Transform - pos: -46.5,52.5 + pos: -66.5,-2.5 parent: 2 - - uid: 30604 + - uid: 31225 components: - type: Transform - pos: -44.5,51.5 + pos: -66.5,-1.5 parent: 2 - - uid: 30605 + - uid: 31226 components: - type: Transform - pos: -44.5,49.5 + pos: -65.5,-4.5 parent: 2 - - uid: 30606 + - uid: 31227 components: - type: Transform - pos: -46.5,48.5 + pos: -69.5,-9.5 parent: 2 - - uid: 30607 + - uid: 31228 components: - type: Transform - pos: -45.5,48.5 + pos: -68.5,-0.5 parent: 2 - - uid: 30608 + - uid: 31229 components: - type: Transform - pos: -47.5,49.5 + pos: -68.5,-4.5 parent: 2 - - uid: 30609 + - uid: 31230 components: - type: Transform - pos: -48.5,48.5 + pos: 47.5,-18.5 parent: 2 - - uid: 30610 + - uid: 31231 components: - type: Transform - pos: -46.5,55.5 + pos: -66.5,-8.5 parent: 2 - - uid: 30611 + - uid: 31232 components: - type: Transform - pos: -45.5,49.5 + pos: -67.5,-0.5 parent: 2 - - uid: 30612 + - uid: 31233 components: - type: Transform - pos: -47.5,52.5 + pos: -69.5,-0.5 parent: 2 - - uid: 30613 + - uid: 31234 components: - type: Transform - pos: -49.5,51.5 + pos: 52.5,-19.5 parent: 2 - - uid: 30614 + - uid: 31235 components: - type: Transform - pos: -48.5,51.5 + pos: 51.5,-19.5 parent: 2 - - uid: 30615 + - uid: 31236 components: - type: Transform - pos: -48.5,49.5 + pos: 58.5,-20.5 parent: 2 - - uid: 30616 + - uid: 31237 components: - type: Transform - pos: -46.5,50.5 + pos: -67.5,-8.5 parent: 2 - - uid: 30617 + - uid: 31238 components: - type: Transform - pos: -46.5,49.5 + pos: -66.5,-7.5 parent: 2 - - uid: 30618 + - uid: 31239 components: - type: Transform - pos: -46.5,53.5 + pos: -65.5,-3.5 parent: 2 - - uid: 30619 + - uid: 31240 components: - type: Transform - pos: -45.5,52.5 + pos: 59.5,-46.5 parent: 2 - - uid: 30620 + - uid: 31241 components: - type: Transform - pos: -45.5,51.5 + pos: -67.5,-2.5 parent: 2 - - uid: 30621 + - uid: 31242 components: - type: Transform - pos: -43.5,50.5 + pos: -68.5,-8.5 parent: 2 - - uid: 30622 + - uid: 31243 components: - type: Transform - pos: -41.5,57.5 + pos: -68.5,-6.5 parent: 2 - - uid: 30623 + - uid: 31244 components: - type: Transform - pos: -36.5,56.5 + pos: -69.5,-5.5 parent: 2 - - uid: 30624 + - uid: 31245 components: - type: Transform - pos: -41.5,58.5 + pos: -68.5,-7.5 parent: 2 -- proto: WallRockCoal - entities: - - uid: 30625 + - uid: 31246 components: - type: Transform - pos: -1.5,66.5 + pos: 42.5,-18.5 parent: 2 - - uid: 30626 + - uid: 31247 components: - type: Transform - pos: -47.5,48.5 + pos: -67.5,-7.5 parent: 2 - - uid: 30627 + - uid: 31248 components: - type: Transform - pos: -44.5,50.5 + pos: -67.5,-5.5 parent: 2 -- proto: WallRockPlasma - entities: - - uid: 30628 + - uid: 31249 components: - type: Transform - pos: -44.5,52.5 + pos: -67.5,-1.5 parent: 2 -- proto: WallRockQuartz - entities: - - uid: 30629 + - uid: 31250 components: - type: Transform - pos: 2.5,68.5 + pos: -66.5,-6.5 parent: 2 -- proto: WallRockSalt - entities: - - uid: 30630 + - uid: 31251 components: - type: Transform - pos: 0.5,68.5 + pos: -69.5,-6.5 parent: 2 -- proto: WallRockSilver - entities: - - uid: 30631 + - uid: 31252 components: - type: Transform - pos: -47.5,51.5 + pos: -69.5,-8.5 parent: 2 - - uid: 30632 + - uid: 31253 components: - type: Transform - pos: -46.5,51.5 + pos: 59.5,-20.5 parent: 2 -- proto: WallRockSnow - entities: - - uid: 30633 + - uid: 31254 components: - type: Transform pos: -32.5,44.5 parent: 2 - - uid: 30634 + - uid: 31255 components: - type: Transform pos: 94.5,-48.5 parent: 2 - - uid: 30635 + - uid: 31256 components: - type: Transform pos: 96.5,-48.5 parent: 2 - - uid: 30636 + - uid: 31257 components: - type: Transform pos: 96.5,-47.5 parent: 2 - - uid: 30637 + - uid: 31258 components: - type: Transform pos: 97.5,-47.5 parent: 2 - - uid: 30638 + - uid: 31259 components: - type: Transform pos: 98.5,-48.5 parent: 2 - - uid: 30639 + - uid: 31260 components: - type: Transform pos: 95.5,-48.5 parent: 2 - - uid: 30640 + - uid: 31261 components: - type: Transform pos: 98.5,-37.5 parent: 2 - - uid: 30641 + - uid: 31262 components: - type: Transform pos: 101.5,-47.5 parent: 2 - - uid: 30642 + - uid: 31263 components: - type: Transform pos: 99.5,-47.5 parent: 2 - - uid: 30643 + - uid: 31264 components: - type: Transform pos: 102.5,-47.5 parent: 2 - - uid: 30644 + - uid: 31265 components: - type: Transform pos: 103.5,-47.5 parent: 2 - - uid: 30645 + - uid: 31266 components: - type: Transform pos: 99.5,-48.5 parent: 2 - - uid: 30646 + - uid: 31267 components: - type: Transform pos: 100.5,-36.5 parent: 2 - - uid: 30647 + - uid: 31268 components: - type: Transform pos: 97.5,-37.5 parent: 2 - - uid: 30648 - components: - - type: Transform - pos: -92.5,60.5 - parent: 2 - - uid: 30649 + - uid: 31269 components: - type: Transform pos: -72.5,51.5 parent: 2 - - uid: 30650 + - uid: 31270 components: - type: Transform pos: -72.5,50.5 parent: 2 - - uid: 30651 + - uid: 31271 components: - type: Transform pos: -138.5,-10.5 parent: 2 - - uid: 30652 - components: - - type: Transform - pos: -67.5,62.5 - parent: 2 - - uid: 30653 + - uid: 31272 components: - type: Transform pos: -67.5,60.5 parent: 2 - - uid: 30654 + - uid: 31273 components: - type: Transform pos: -67.5,64.5 parent: 2 - - uid: 30655 + - uid: 31274 components: - type: Transform pos: -68.5,59.5 parent: 2 - - uid: 30656 + - uid: 31275 components: - type: Transform pos: -121.5,-15.5 parent: 2 - - uid: 30657 + - uid: 31276 components: - type: Transform pos: -122.5,-15.5 parent: 2 - - uid: 30658 + - uid: 31277 components: - type: Transform pos: -68.5,60.5 parent: 2 - - uid: 30659 + - uid: 31278 components: - type: Transform pos: -75.5,53.5 parent: 2 - - uid: 30660 + - uid: 31279 components: - type: Transform pos: -67.5,65.5 parent: 2 - - uid: 30661 + - uid: 31280 components: - type: Transform pos: -66.5,62.5 parent: 2 - - uid: 30662 + - uid: 31281 components: - type: Transform pos: -31.5,18.5 parent: 2 - - uid: 30663 + - uid: 31282 components: - type: Transform pos: -31.5,19.5 parent: 2 - - uid: 30664 + - uid: 31283 components: - type: Transform pos: -30.5,19.5 parent: 2 - - uid: 30665 + - uid: 31284 components: - type: Transform pos: -29.5,19.5 parent: 2 - - uid: 30666 + - uid: 31285 components: - type: Transform pos: -29.5,18.5 parent: 2 - - uid: 30667 + - uid: 31286 components: - type: Transform pos: 10.5,51.5 parent: 2 - - uid: 30668 - components: - - type: Transform - pos: 48.5,-20.5 - parent: 2 - - uid: 30669 + - uid: 31287 components: - type: Transform pos: -72.5,26.5 parent: 2 - - uid: 30670 + - uid: 31288 components: - type: Transform pos: 41.5,-61.5 parent: 2 - - uid: 30671 + - uid: 31289 components: - type: Transform pos: 42.5,-61.5 parent: 2 - - uid: 30672 + - uid: 31290 components: - type: Transform pos: 43.5,-61.5 parent: 2 - - uid: 30673 + - uid: 31291 components: - type: Transform pos: 103.5,-19.5 parent: 2 - - uid: 30674 + - uid: 31292 components: - type: Transform pos: 100.5,-19.5 parent: 2 - - uid: 30675 + - uid: 31293 components: - type: Transform pos: 101.5,-16.5 parent: 2 - - uid: 30676 + - uid: 31294 components: - type: Transform pos: 101.5,-17.5 parent: 2 - - uid: 30677 + - uid: 31295 components: - type: Transform pos: 45.5,-62.5 parent: 2 - - uid: 30678 + - uid: 31296 components: - type: Transform pos: 45.5,-63.5 parent: 2 - - uid: 30679 + - uid: 31297 components: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 30680 + - uid: 31298 components: - type: Transform pos: 47.5,-63.5 parent: 2 - - uid: 30681 + - uid: 31299 components: - type: Transform pos: 48.5,-62.5 parent: 2 - - uid: 30682 + - uid: 31300 components: - type: Transform pos: 99.5,-19.5 parent: 2 - - uid: 30683 + - uid: 31301 components: - type: Transform pos: 51.5,-62.5 parent: 2 - - uid: 30684 + - uid: 31302 components: - type: Transform pos: 43.5,-62.5 parent: 2 - - uid: 30685 + - uid: 31303 components: - type: Transform pos: 46.5,-62.5 parent: 2 - - uid: 30686 + - uid: 31304 components: - type: Transform pos: 47.5,-62.5 parent: 2 - - uid: 30687 + - uid: 31305 components: - type: Transform pos: 44.5,-62.5 parent: 2 - - uid: 30688 + - uid: 31306 components: - type: Transform pos: 49.5,-62.5 parent: 2 - - uid: 30689 + - uid: 31307 components: - type: Transform pos: 50.5,-62.5 parent: 2 - - uid: 30690 + - uid: 31308 components: - type: Transform pos: 100.5,-18.5 parent: 2 - - uid: 30691 + - uid: 31309 components: - type: Transform pos: 103.5,-18.5 parent: 2 - - uid: 30692 + - uid: 31310 components: - type: Transform pos: -51.5,56.5 parent: 2 - - uid: 30693 + - uid: 31311 components: - type: Transform pos: -25.5,70.5 parent: 2 - - uid: 30694 - components: - - type: Transform - pos: -59.5,-26.5 - parent: 2 - - uid: 30695 + - uid: 31312 components: - type: Transform pos: -59.5,-36.5 parent: 2 - - uid: 30696 + - uid: 31313 components: - type: Transform pos: -61.5,-36.5 parent: 2 - - uid: 30697 + - uid: 31314 components: - type: Transform pos: -61.5,-35.5 parent: 2 - - uid: 30698 + - uid: 31315 components: - type: Transform pos: -61.5,-34.5 parent: 2 - - uid: 30699 + - uid: 31316 components: - type: Transform pos: -61.5,-32.5 parent: 2 - - uid: 30700 + - uid: 31317 components: - type: Transform pos: -60.5,-36.5 parent: 2 - - uid: 30701 + - uid: 31318 components: - type: Transform pos: -86.5,-16.5 parent: 2 - - uid: 30702 + - uid: 31319 components: - type: Transform pos: -84.5,-17.5 parent: 2 - - uid: 30703 + - uid: 31320 components: - type: Transform pos: -85.5,-17.5 parent: 2 - - uid: 30704 + - uid: 31321 components: - type: Transform pos: -86.5,-17.5 parent: 2 - - uid: 30705 + - uid: 31322 components: - type: Transform pos: -55.5,-26.5 parent: 2 - - uid: 30706 + - uid: 31323 components: - type: Transform pos: -53.5,-26.5 parent: 2 - - uid: 30707 + - uid: 31324 components: - type: Transform pos: -61.5,-33.5 parent: 2 - - uid: 30708 + - uid: 31325 components: - type: Transform pos: -48.5,44.5 parent: 2 - - uid: 30709 + - uid: 31326 components: - type: Transform pos: -47.5,43.5 parent: 2 - - uid: 30710 + - uid: 31327 components: - type: Transform pos: -31.5,-23.5 parent: 2 - - uid: 30711 + - uid: 31328 components: - type: Transform pos: -48.5,41.5 parent: 2 - - uid: 30712 + - uid: 31329 components: - type: Transform pos: -47.5,41.5 parent: 2 - - uid: 30713 + - uid: 31330 components: - type: Transform pos: -48.5,42.5 parent: 2 - - uid: 30714 + - uid: 31331 components: - type: Transform pos: -48.5,43.5 parent: 2 - - uid: 30715 + - uid: 31332 components: - type: Transform pos: -32.5,-23.5 parent: 2 - - uid: 30716 + - uid: 31333 components: - type: Transform pos: -32.5,-24.5 parent: 2 - - uid: 30717 + - uid: 31334 components: - type: Transform pos: -30.5,-23.5 parent: 2 - - uid: 30718 + - uid: 31335 components: - type: Transform pos: -31.5,-24.5 parent: 2 - - uid: 30719 + - uid: 31336 components: - type: Transform pos: -30.5,-24.5 parent: 2 - - uid: 30720 + - uid: 31337 components: - type: Transform pos: -34.5,-23.5 parent: 2 - - uid: 30721 + - uid: 31338 components: - type: Transform pos: -34.5,-24.5 parent: 2 - - uid: 30722 + - uid: 31339 components: - type: Transform pos: -44.5,70.5 parent: 2 - - uid: 30723 + - uid: 31340 components: - type: Transform pos: -39.5,46.5 parent: 2 - - uid: 30724 + - uid: 31341 components: - type: Transform pos: -38.5,46.5 parent: 2 - - uid: 30725 + - uid: 31342 components: - type: Transform pos: 19.5,65.5 parent: 2 - - uid: 30726 + - uid: 31343 components: - type: Transform pos: -73.5,64.5 parent: 2 - - uid: 30727 + - uid: 31344 components: - type: Transform pos: -72.5,64.5 parent: 2 - - uid: 30728 + - uid: 31345 components: - type: Transform pos: -7.5,66.5 parent: 2 - - uid: 30729 + - uid: 31346 components: - type: Transform pos: -7.5,65.5 parent: 2 - - uid: 30730 + - uid: 31347 components: - type: Transform pos: -8.5,66.5 parent: 2 - - uid: 30731 + - uid: 31348 components: - type: Transform pos: -10.5,65.5 parent: 2 - - uid: 30732 + - uid: 31349 components: - type: Transform pos: -14.5,65.5 parent: 2 - - uid: 30733 + - uid: 31350 components: - type: Transform pos: -12.5,65.5 parent: 2 - - uid: 30734 + - uid: 31351 components: - type: Transform pos: -7.5,64.5 parent: 2 - - uid: 30735 + - uid: 31352 components: - type: Transform pos: -11.5,65.5 parent: 2 - - uid: 30736 + - uid: 31353 components: - type: Transform pos: -8.5,64.5 parent: 2 - - uid: 30737 + - uid: 31354 components: - type: Transform pos: -15.5,64.5 parent: 2 - - uid: 30738 + - uid: 31355 components: - type: Transform pos: -12.5,64.5 parent: 2 - - uid: 30739 + - uid: 31356 components: - type: Transform pos: -9.5,64.5 parent: 2 - - uid: 30740 + - uid: 31357 components: - type: Transform pos: -13.5,65.5 parent: 2 - - uid: 30741 + - uid: 31358 components: - type: Transform pos: -13.5,64.5 parent: 2 - - uid: 30742 + - uid: 31359 components: - type: Transform pos: 58.5,42.5 parent: 2 - - uid: 30743 + - uid: 31360 components: - type: Transform pos: 53.5,44.5 parent: 2 - - uid: 30744 + - uid: 31361 components: - type: Transform pos: 108.5,6.5 parent: 2 - - uid: 30745 + - uid: 31362 components: - type: Transform pos: 108.5,-2.5 parent: 2 - - uid: 30746 + - uid: 31363 components: - type: Transform pos: 107.5,2.5 parent: 2 - - uid: 30747 + - uid: 31364 components: - type: Transform pos: 104.5,3.5 parent: 2 - - uid: 30748 + - uid: 31365 components: - type: Transform pos: 104.5,6.5 parent: 2 - - uid: 30749 + - uid: 31366 components: - type: Transform pos: 107.5,0.5 parent: 2 - - uid: 30750 + - uid: 31367 components: - type: Transform pos: 88.5,0.5 parent: 2 - - uid: 30751 + - uid: 31368 components: - type: Transform pos: 108.5,5.5 parent: 2 - - uid: 30752 + - uid: 31369 components: - type: Transform pos: 108.5,0.5 parent: 2 - - uid: 30753 + - uid: 31370 components: - type: Transform pos: 107.5,9.5 parent: 2 - - uid: 30754 + - uid: 31371 components: - type: Transform pos: 106.5,2.5 parent: 2 - - uid: 30755 + - uid: 31372 components: - type: Transform pos: 106.5,4.5 parent: 2 - - uid: 30756 + - uid: 31373 components: - type: Transform pos: 105.5,-1.5 parent: 2 - - uid: 30757 + - uid: 31374 components: - type: Transform pos: 106.5,0.5 parent: 2 - - uid: 30758 + - uid: 31375 components: - type: Transform pos: 106.5,3.5 parent: 2 - - uid: 30759 + - uid: 31376 components: - type: Transform pos: 102.5,0.5 parent: 2 - - uid: 30760 + - uid: 31377 components: - type: Transform pos: 106.5,1.5 parent: 2 - - uid: 30761 + - uid: 31378 components: - type: Transform pos: 102.5,-6.5 parent: 2 - - uid: 30762 + - uid: 31379 components: - type: Transform pos: 102.5,-5.5 parent: 2 - - uid: 30763 + - uid: 31380 components: - type: Transform pos: 102.5,-3.5 parent: 2 - - uid: 30764 + - uid: 31381 components: - type: Transform pos: 101.5,10.5 parent: 2 - - uid: 30765 + - uid: 31382 components: - type: Transform pos: 79.5,21.5 parent: 2 - - uid: 30766 + - uid: 31383 components: - type: Transform pos: 102.5,-1.5 parent: 2 - - uid: 30767 + - uid: 31384 components: - type: Transform pos: 102.5,-0.5 parent: 2 - - uid: 30768 + - uid: 31385 components: - type: Transform pos: 102.5,-4.5 parent: 2 - - uid: 30769 + - uid: 31386 components: - type: Transform pos: 103.5,0.5 parent: 2 - - uid: 30770 + - uid: 31387 components: - type: Transform pos: 103.5,-5.5 parent: 2 - - uid: 30771 + - uid: 31388 components: - type: Transform pos: 105.5,-3.5 parent: 2 - - uid: 30772 + - uid: 31389 components: - type: Transform pos: 103.5,-4.5 parent: 2 - - uid: 30773 + - uid: 31390 components: - type: Transform pos: 103.5,-0.5 parent: 2 - - uid: 30774 + - uid: 31391 components: - type: Transform pos: 106.5,-1.5 parent: 2 - - uid: 30775 + - uid: 31392 components: - type: Transform pos: 87.5,13.5 parent: 2 - - uid: 30776 + - uid: 31393 components: - type: Transform pos: 88.5,13.5 parent: 2 - - uid: 30777 + - uid: 31394 components: - type: Transform pos: 85.5,13.5 parent: 2 - - uid: 30778 + - uid: 31395 components: - type: Transform pos: 89.5,13.5 parent: 2 - - uid: 30779 + - uid: 31396 components: - type: Transform pos: 90.5,13.5 parent: 2 - - uid: 30780 + - uid: 31397 components: - type: Transform pos: 92.5,12.5 parent: 2 - - uid: 30781 + - uid: 31398 components: - type: Transform pos: 80.5,13.5 parent: 2 - - uid: 30782 + - uid: 31399 components: - type: Transform pos: 84.5,13.5 parent: 2 - - uid: 30783 + - uid: 31400 components: - type: Transform pos: 82.5,13.5 parent: 2 - - uid: 30784 + - uid: 31401 components: - type: Transform pos: 79.5,22.5 parent: 2 - - uid: 30785 + - uid: 31402 components: - type: Transform pos: 107.5,11.5 parent: 2 - - uid: 30786 + - uid: 31403 components: - type: Transform pos: 107.5,10.5 parent: 2 - - uid: 30787 + - uid: 31404 components: - type: Transform pos: 107.5,5.5 parent: 2 - - uid: 30788 + - uid: 31405 components: - type: Transform pos: 107.5,6.5 parent: 2 - - uid: 30789 + - uid: 31406 components: - type: Transform pos: 107.5,7.5 parent: 2 - - uid: 30790 + - uid: 31407 components: - type: Transform pos: 107.5,8.5 parent: 2 - - uid: 30791 + - uid: 31408 components: - type: Transform pos: 80.5,18.5 parent: 2 - - uid: 30792 + - uid: 31409 components: - type: Transform pos: 79.5,26.5 parent: 2 - - uid: 30793 + - uid: 31410 components: - type: Transform pos: 106.5,-2.5 parent: 2 - - uid: 30794 + - uid: 31411 components: - type: Transform pos: 106.5,-0.5 parent: 2 - - uid: 30795 + - uid: 31412 components: - type: Transform pos: 93.5,12.5 parent: 2 - - uid: 30796 + - uid: 31413 components: - type: Transform pos: 95.5,12.5 parent: 2 - - uid: 30797 + - uid: 31414 components: - type: Transform pos: 96.5,12.5 parent: 2 - - uid: 30798 + - uid: 31415 components: - type: Transform pos: -12.5,36.5 parent: 2 - - uid: 30799 + - uid: 31416 components: - type: Transform pos: 88.5,14.5 parent: 2 - - uid: 30800 + - uid: 31417 components: - type: Transform pos: 89.5,14.5 parent: 2 - - uid: 30801 + - uid: 31418 components: - type: Transform pos: 79.5,16.5 parent: 2 - - uid: 30802 + - uid: 31419 components: - type: Transform pos: 79.5,17.5 parent: 2 - - uid: 30803 + - uid: 31420 components: - type: Transform pos: 84.5,17.5 parent: 2 - - uid: 30804 + - uid: 31421 components: - type: Transform pos: 85.5,14.5 parent: 2 - - uid: 30805 + - uid: 31422 components: - type: Transform pos: 82.5,21.5 parent: 2 - - uid: 30806 + - uid: 31423 components: - type: Transform pos: 84.5,15.5 parent: 2 - - uid: 30807 + - uid: 31424 components: - type: Transform pos: 84.5,14.5 parent: 2 - - uid: 30808 + - uid: 31425 components: - type: Transform pos: 107.5,-1.5 parent: 2 - - uid: 30809 + - uid: 31426 components: - type: Transform pos: 77.5,26.5 parent: 2 - - uid: 30810 + - uid: 31427 components: - type: Transform pos: 88.5,11.5 parent: 2 - - uid: 30811 + - uid: 31428 components: - type: Transform pos: 89.5,12.5 parent: 2 - - uid: 30812 + - uid: 31429 components: - type: Transform pos: 80.5,22.5 parent: 2 - - uid: 30813 + - uid: 31430 components: - type: Transform pos: 82.5,22.5 parent: 2 - - uid: 30814 + - uid: 31431 components: - type: Transform pos: 81.5,15.5 parent: 2 - - uid: 30815 + - uid: 31432 components: - type: Transform pos: 105.5,11.5 parent: 2 - - uid: 30816 + - uid: 31433 components: - type: Transform pos: 104.5,5.5 parent: 2 - - uid: 30817 + - uid: 31434 components: - type: Transform pos: 87.5,11.5 parent: 2 - - uid: 30818 + - uid: 31435 components: - type: Transform pos: 84.5,16.5 parent: 2 - - uid: 30819 + - uid: 31436 components: - type: Transform pos: 83.5,19.5 parent: 2 - - uid: 30820 + - uid: 31437 components: - type: Transform pos: 81.5,17.5 parent: 2 - - uid: 30821 + - uid: 31438 components: - type: Transform pos: 81.5,16.5 parent: 2 - - uid: 30822 + - uid: 31439 components: - type: Transform pos: 87.5,12.5 parent: 2 - - uid: 30823 + - uid: 31440 components: - type: Transform pos: 90.5,12.5 parent: 2 - - uid: 30824 + - uid: 31441 components: - type: Transform pos: 81.5,23.5 parent: 2 - - uid: 30825 + - uid: 31442 components: - type: Transform pos: 88.5,12.5 parent: 2 - - uid: 30826 + - uid: 31443 components: - type: Transform pos: 81.5,11.5 parent: 2 - - uid: 30827 + - uid: 31444 components: - type: Transform pos: 110.5,10.5 parent: 2 - - uid: 30828 + - uid: 31445 components: - type: Transform pos: 110.5,9.5 parent: 2 - - uid: 30829 + - uid: 31446 components: - type: Transform pos: 110.5,0.5 parent: 2 - - uid: 30830 + - uid: 31447 components: - type: Transform pos: 110.5,-0.5 parent: 2 - - uid: 30831 + - uid: 31448 components: - type: Transform pos: 104.5,9.5 parent: 2 - - uid: 30832 + - uid: 31449 components: - type: Transform pos: -12.5,35.5 parent: 2 - - uid: 30833 + - uid: 31450 components: - type: Transform pos: 82.5,20.5 parent: 2 - - uid: 30834 + - uid: 31451 components: - type: Transform pos: 94.5,12.5 parent: 2 - - uid: 30835 + - uid: 31452 components: - type: Transform pos: 86.5,13.5 parent: 2 - - uid: 30836 + - uid: 31453 components: - type: Transform pos: 82.5,23.5 parent: 2 - - uid: 30837 + - uid: 31454 components: - type: Transform pos: 104.5,4.5 parent: 2 - - uid: 30838 + - uid: 31455 components: - type: Transform pos: 79.5,18.5 parent: 2 - - uid: 30839 + - uid: 31456 components: - type: Transform pos: 101.5,9.5 parent: 2 - - uid: 30840 + - uid: 31457 components: - type: Transform pos: 107.5,-0.5 parent: 2 - - uid: 30841 + - uid: 31458 components: - type: Transform pos: 104.5,10.5 parent: 2 - - uid: 30842 + - uid: 31459 components: - type: Transform pos: 107.5,3.5 parent: 2 - - uid: 30843 + - uid: 31460 components: - type: Transform pos: 106.5,-3.5 parent: 2 - - uid: 30844 + - uid: 31461 components: - type: Transform pos: 102.5,9.5 parent: 2 - - uid: 30845 + - uid: 31462 components: - type: Transform pos: 107.5,1.5 parent: 2 - - uid: 30846 + - uid: 31463 components: - type: Transform pos: 104.5,-2.5 parent: 2 - - uid: 30847 + - uid: 31464 components: - type: Transform pos: 104.5,-4.5 parent: 2 - - uid: 30848 + - uid: 31465 components: - type: Transform pos: 105.5,-0.5 parent: 2 - - uid: 30849 + - uid: 31466 components: - type: Transform pos: 105.5,2.5 parent: 2 - - uid: 30850 + - uid: 31467 components: - type: Transform pos: 105.5,4.5 parent: 2 - - uid: 30851 + - uid: 31468 components: - type: Transform pos: 105.5,9.5 parent: 2 - - uid: 30852 + - uid: 31469 components: - type: Transform pos: 105.5,10.5 parent: 2 - - uid: 30853 + - uid: 31470 components: - type: Transform pos: 105.5,5.5 parent: 2 - - uid: 30854 + - uid: 31471 components: - type: Transform pos: 103.5,8.5 parent: 2 - - uid: 30855 + - uid: 31472 components: - type: Transform pos: 103.5,10.5 parent: 2 - - uid: 30856 + - uid: 31473 components: - type: Transform pos: 103.5,9.5 parent: 2 - - uid: 30857 + - uid: 31474 components: - type: Transform pos: 103.5,11.5 parent: 2 - - uid: 30858 + - uid: 31475 components: - type: Transform pos: 103.5,5.5 parent: 2 - - uid: 30859 + - uid: 31476 components: - type: Transform pos: 103.5,6.5 parent: 2 - - uid: 30860 + - uid: 31477 components: - type: Transform pos: 105.5,3.5 parent: 2 - - uid: 30861 + - uid: 31478 components: - type: Transform pos: 102.5,6.5 parent: 2 - - uid: 30862 + - uid: 31479 components: - type: Transform pos: 103.5,7.5 parent: 2 - - uid: 30863 + - uid: 31480 components: - type: Transform pos: 102.5,7.5 parent: 2 - - uid: 30864 + - uid: 31481 components: - type: Transform pos: 104.5,-3.5 parent: 2 - - uid: 30865 + - uid: 31482 components: - type: Transform pos: 78.5,26.5 parent: 2 - - uid: 30866 + - uid: 31483 components: - type: Transform pos: 110.5,6.5 parent: 2 - - uid: 30867 + - uid: 31484 components: - type: Transform pos: 80.5,20.5 parent: 2 - - uid: 30868 + - uid: 31485 components: - type: Transform pos: 80.5,21.5 parent: 2 - - uid: 30869 + - uid: 31486 components: - type: Transform pos: 79.5,13.5 parent: 2 - - uid: 30870 + - uid: 31487 components: - type: Transform pos: 107.5,4.5 parent: 2 - - uid: 30871 + - uid: 31488 components: - type: Transform pos: 108.5,-3.5 parent: 2 - - uid: 30872 + - uid: 31489 components: - type: Transform pos: 102.5,8.5 parent: 2 - - uid: 30873 + - uid: 31490 components: - type: Transform pos: 104.5,11.5 parent: 2 - - uid: 30874 + - uid: 31491 components: - type: Transform pos: 78.5,12.5 parent: 2 - - uid: 30875 + - uid: 31492 components: - type: Transform pos: 78.5,11.5 parent: 2 - - uid: 30876 + - uid: 31493 components: - type: Transform pos: 106.5,8.5 parent: 2 - - uid: 30877 + - uid: 31494 components: - type: Transform pos: 108.5,2.5 parent: 2 - - uid: 30878 + - uid: 31495 components: - type: Transform pos: 108.5,-0.5 parent: 2 - - uid: 30879 + - uid: 31496 components: - type: Transform pos: 108.5,-1.5 parent: 2 - - uid: 30880 + - uid: 31497 components: - type: Transform pos: 108.5,3.5 parent: 2 - - uid: 30881 + - uid: 31498 components: - type: Transform pos: 82.5,19.5 parent: 2 - - uid: 30882 + - uid: 31499 components: - type: Transform pos: 108.5,4.5 parent: 2 - - uid: 30883 + - uid: 31500 components: - type: Transform pos: 108.5,1.5 parent: 2 - - uid: 30884 + - uid: 31501 components: - type: Transform pos: 104.5,8.5 parent: 2 - - uid: 30885 + - uid: 31502 components: - type: Transform pos: 108.5,-4.5 parent: 2 - - uid: 30886 + - uid: 31503 components: - type: Transform pos: 80.5,16.5 parent: 2 - - uid: 30887 + - uid: 31504 components: - type: Transform pos: 80.5,17.5 parent: 2 - - uid: 30888 + - uid: 31505 components: - type: Transform pos: 82.5,16.5 parent: 2 - - uid: 30889 + - uid: 31506 components: - type: Transform pos: 82.5,14.5 parent: 2 - - uid: 30890 + - uid: 31507 components: - type: Transform pos: 82.5,15.5 parent: 2 - - uid: 30891 + - uid: 31508 components: - type: Transform pos: 78.5,15.5 parent: 2 - - uid: 30892 + - uid: 31509 components: - type: Transform pos: 78.5,14.5 parent: 2 - - uid: 30893 + - uid: 31510 components: - type: Transform pos: 82.5,18.5 parent: 2 - - uid: 30894 + - uid: 31511 components: - type: Transform pos: 80.5,15.5 parent: 2 - - uid: 30895 + - uid: 31512 components: - type: Transform pos: 80.5,14.5 parent: 2 - - uid: 30896 + - uid: 31513 components: - type: Transform pos: 82.5,17.5 parent: 2 - - uid: 30897 + - uid: 31514 components: - type: Transform pos: 81.5,18.5 parent: 2 - - uid: 30898 + - uid: 31515 components: - type: Transform pos: 78.5,25.5 parent: 2 - - uid: 30899 + - uid: 31516 components: - type: Transform pos: 82.5,12.5 parent: 2 - - uid: 30900 + - uid: 31517 components: - type: Transform pos: 82.5,11.5 parent: 2 - - uid: 30901 + - uid: 31518 components: - type: Transform pos: 80.5,24.5 parent: 2 - - uid: 30902 + - uid: 31519 components: - type: Transform pos: 80.5,23.5 parent: 2 - - uid: 30903 + - uid: 31520 components: - type: Transform pos: 79.5,23.5 parent: 2 - - uid: 30904 + - uid: 31521 components: - type: Transform pos: 79.5,25.5 parent: 2 - - uid: 30905 + - uid: 31522 components: - type: Transform pos: 109.5,5.5 parent: 2 - - uid: 30906 + - uid: 31523 components: - type: Transform pos: 86.5,11.5 parent: 2 - - uid: 30907 + - uid: 31524 components: - type: Transform pos: 107.5,-2.5 parent: 2 - - uid: 30908 + - uid: 31525 components: - type: Transform pos: 107.5,-4.5 parent: 2 - - uid: 30909 + - uid: 31526 components: - type: Transform pos: 84.5,11.5 parent: 2 - - uid: 30910 + - uid: 31527 components: - type: Transform pos: 108.5,11.5 parent: 2 - - uid: 30911 + - uid: 31528 components: - type: Transform pos: 109.5,6.5 parent: 2 - - uid: 30912 + - uid: 31529 components: - type: Transform pos: 79.5,12.5 parent: 2 - - uid: 30913 + - uid: 31530 components: - type: Transform pos: 80.5,12.5 parent: 2 - - uid: 30914 + - uid: 31531 components: - type: Transform pos: 85.5,11.5 parent: 2 - - uid: 30915 + - uid: 31532 components: - type: Transform pos: 104.5,0.5 parent: 2 - - uid: 30916 + - uid: 31533 components: - type: Transform pos: 109.5,7.5 parent: 2 - - uid: 30917 + - uid: 31534 components: - type: Transform pos: 109.5,0.5 parent: 2 - - uid: 30918 + - uid: 31535 components: - type: Transform pos: 108.5,10.5 parent: 2 - - uid: 30919 + - uid: 31536 components: - type: Transform pos: 109.5,9.5 parent: 2 - - uid: 30920 + - uid: 31537 components: - type: Transform pos: 108.5,8.5 parent: 2 - - uid: 30921 + - uid: 31538 components: - type: Transform pos: 109.5,8.5 parent: 2 - - uid: 30922 + - uid: 31539 components: - type: Transform pos: 104.5,-0.5 parent: 2 - - uid: 30923 + - uid: 31540 components: - type: Transform pos: 79.5,11.5 parent: 2 - - uid: 30924 + - uid: 31541 components: - type: Transform pos: 81.5,20.5 parent: 2 - - uid: 30925 + - uid: 31542 components: - type: Transform pos: 108.5,9.5 parent: 2 - - uid: 30926 + - uid: 31543 components: - type: Transform pos: 81.5,19.5 parent: 2 - - uid: 30927 + - uid: 31544 components: - type: Transform pos: 109.5,10.5 parent: 2 - - uid: 30928 + - uid: 31545 components: - type: Transform pos: 106.5,9.5 parent: 2 - - uid: 30929 + - uid: 31546 components: - type: Transform pos: 108.5,7.5 parent: 2 - - uid: 30930 + - uid: 31547 components: - type: Transform pos: 107.5,-3.5 parent: 2 - - uid: 30931 + - uid: 31548 components: - type: Transform pos: 109.5,1.5 parent: 2 - - uid: 30932 + - uid: 31549 components: - type: Transform pos: 109.5,-0.5 parent: 2 - - uid: 30933 - components: - - type: Transform - pos: -109.5,42.5 - parent: 2 - - uid: 30934 - components: - - type: Transform - pos: -109.5,41.5 - parent: 2 - - uid: 30935 - components: - - type: Transform - pos: -108.5,39.5 - parent: 2 - - uid: 30936 - components: - - type: Transform - pos: -94.5,42.5 - parent: 2 - - uid: 30937 - components: - - type: Transform - pos: -109.5,39.5 - parent: 2 - - uid: 30938 - components: - - type: Transform - pos: -109.5,40.5 - parent: 2 - - uid: 30939 + - uid: 31550 components: - type: Transform - pos: -95.5,42.5 + pos: -35.5,61.5 parent: 2 - - uid: 30940 + - uid: 31551 components: - type: Transform - pos: -97.5,41.5 + pos: -96.5,41.5 parent: 2 - - uid: 30941 + - uid: 31552 components: - type: Transform pos: -97.5,40.5 parent: 2 - - uid: 30942 + - uid: 31553 components: - type: Transform pos: -79.5,63.5 parent: 2 - - uid: 30943 + - uid: 31554 components: - type: Transform - pos: -98.5,41.5 + pos: -96.5,43.5 parent: 2 - - uid: 30944 + - uid: 31555 components: - type: Transform pos: -94.5,50.5 parent: 2 - - uid: 30945 + - uid: 31556 components: - type: Transform pos: -98.5,40.5 parent: 2 - - uid: 30946 - components: - - type: Transform - pos: -95.5,35.5 - parent: 2 - - uid: 30947 + - uid: 31557 components: - type: Transform pos: -75.5,29.5 parent: 2 - - uid: 30948 + - uid: 31558 components: - type: Transform pos: 76.5,-0.5 parent: 2 - - uid: 30949 + - uid: 31559 components: - type: Transform pos: 78.5,-0.5 parent: 2 - - uid: 30950 + - uid: 31560 components: - type: Transform - pos: -96.5,41.5 + pos: -96.5,42.5 parent: 2 - - uid: 30951 + - uid: 31561 components: - type: Transform pos: 96.5,-1.5 parent: 2 - - uid: 30952 + - uid: 31562 components: - type: Transform pos: 92.5,-2.5 parent: 2 - - uid: 30953 + - uid: 31563 components: - type: Transform pos: 96.5,8.5 parent: 2 - - uid: 30954 + - uid: 31564 components: - type: Transform pos: -28.5,25.5 parent: 2 - - uid: 30955 + - uid: 31565 components: - type: Transform pos: 98.5,-34.5 parent: 2 - - uid: 30956 + - uid: 31566 components: - type: Transform pos: 46.5,34.5 parent: 2 - - uid: 30957 + - uid: 31567 components: - type: Transform pos: -35.5,32.5 parent: 2 - - uid: 30958 + - uid: 31568 components: - type: Transform pos: -35.5,31.5 parent: 2 - - uid: 30959 + - uid: 31569 components: - type: Transform pos: -35.5,33.5 parent: 2 - - uid: 30960 + - uid: 31570 components: - type: Transform pos: -35.5,30.5 parent: 2 - - uid: 30961 + - uid: 31571 components: - type: Transform pos: -34.5,32.5 parent: 2 - - uid: 30962 + - uid: 31572 components: - type: Transform pos: -35.5,29.5 parent: 2 - - uid: 30963 + - uid: 31573 components: - type: Transform pos: -34.5,33.5 parent: 2 - - uid: 30964 + - uid: 31574 components: - type: Transform pos: -33.5,33.5 parent: 2 - - uid: 30965 + - uid: 31575 components: - type: Transform pos: -33.5,32.5 parent: 2 - - uid: 30966 + - uid: 31576 components: - type: Transform pos: -59.5,-24.5 parent: 2 - - uid: 30967 + - uid: 31577 components: - type: Transform pos: -61.5,-25.5 parent: 2 - - uid: 30968 + - uid: 31578 components: - type: Transform pos: 78.5,23.5 parent: 2 - - uid: 30969 + - uid: 31579 components: - type: Transform pos: 77.5,23.5 parent: 2 - - uid: 30970 + - uid: 31580 components: - type: Transform pos: -47.5,69.5 parent: 2 - - uid: 30971 + - uid: 31581 components: - type: Transform pos: 78.5,22.5 parent: 2 - - uid: 30972 + - uid: 31582 components: - type: Transform pos: -59.5,-25.5 parent: 2 - - uid: 30973 + - uid: 31583 components: - type: Transform pos: -82.5,-17.5 parent: 2 - - uid: 30974 + - uid: 31584 components: - type: Transform pos: 90.5,10.5 parent: 2 - - uid: 30975 + - uid: 31585 components: - type: Transform pos: -31.5,32.5 parent: 2 - - uid: 30976 + - uid: 31586 components: - type: Transform pos: -32.5,21.5 parent: 2 - - uid: 30977 + - uid: 31587 components: - type: Transform pos: -31.5,33.5 parent: 2 - - uid: 30978 + - uid: 31588 components: - type: Transform pos: -21.5,30.5 parent: 2 - - uid: 30979 + - uid: 31589 components: - type: Transform pos: -21.5,29.5 parent: 2 - - uid: 30980 + - uid: 31590 components: - type: Transform pos: -59.5,-23.5 parent: 2 - - uid: 30981 + - uid: 31591 components: - type: Transform pos: -62.5,-22.5 parent: 2 - - uid: 30982 + - uid: 31592 components: - type: Transform pos: -122.5,-20.5 parent: 2 - - uid: 30983 + - uid: 31593 components: - type: Transform pos: 98.5,-32.5 parent: 2 - - uid: 30984 + - uid: 31594 components: - type: Transform pos: 77.5,27.5 parent: 2 - - uid: 30985 + - uid: 31595 components: - type: Transform pos: 78.5,27.5 parent: 2 - - uid: 30986 + - uid: 31596 components: - type: Transform pos: 98.5,-30.5 parent: 2 - - uid: 30987 + - uid: 31597 components: - type: Transform pos: 98.5,-33.5 parent: 2 - - uid: 30988 + - uid: 31598 components: - type: Transform pos: -122.5,-18.5 parent: 2 - - uid: 30989 + - uid: 31599 components: - type: Transform pos: 99.5,-30.5 parent: 2 - - uid: 30990 + - uid: 31600 components: - type: Transform pos: 98.5,-31.5 parent: 2 - - uid: 30991 + - uid: 31601 components: - type: Transform pos: -16.5,29.5 parent: 2 - - uid: 30992 + - uid: 31602 components: - type: Transform pos: -63.5,59.5 parent: 2 - - uid: 30993 + - uid: 31603 components: - type: Transform pos: -31.5,20.5 parent: 2 - - uid: 30994 + - uid: 31604 components: - type: Transform pos: -30.5,21.5 parent: 2 - - uid: 30995 + - uid: 31605 components: - type: Transform pos: -32.5,32.5 parent: 2 - - uid: 30996 + - uid: 31606 components: - type: Transform pos: -32.5,33.5 parent: 2 - - uid: 30997 + - uid: 31607 components: - type: Transform pos: -32.5,20.5 parent: 2 - - uid: 30998 + - uid: 31608 components: - type: Transform pos: -30.5,20.5 parent: 2 - - uid: 30999 + - uid: 31609 components: - type: Transform pos: -29.5,33.5 parent: 2 - - uid: 31000 + - uid: 31610 components: - type: Transform pos: -30.5,33.5 parent: 2 - - uid: 31001 + - uid: 31611 components: - type: Transform pos: -30.5,32.5 parent: 2 - - uid: 31002 + - uid: 31612 components: - type: Transform pos: -25.5,33.5 parent: 2 - - uid: 31003 + - uid: 31613 components: - type: Transform pos: -25.5,32.5 parent: 2 - - uid: 31004 + - uid: 31614 components: - type: Transform pos: -23.5,30.5 parent: 2 - - uid: 31005 + - uid: 31615 components: - type: Transform pos: -25.5,29.5 parent: 2 - - uid: 31006 + - uid: 31616 components: - type: Transform pos: -24.5,32.5 parent: 2 - - uid: 31007 + - uid: 31617 components: - type: Transform pos: -24.5,30.5 parent: 2 - - uid: 31008 + - uid: 31618 components: - type: Transform pos: -24.5,29.5 parent: 2 - - uid: 31009 + - uid: 31619 components: - type: Transform pos: -31.5,21.5 parent: 2 - - uid: 31010 + - uid: 31620 components: - type: Transform pos: -115.5,34.5 parent: 2 - - uid: 31011 + - uid: 31621 components: - type: Transform pos: -116.5,34.5 parent: 2 - - uid: 31012 + - uid: 31622 components: - type: Transform - pos: -33.5,62.5 + pos: -28.5,69.5 parent: 2 - - uid: 31013 + - uid: 31623 components: - type: Transform pos: -17.5,30.5 parent: 2 - - uid: 31014 + - uid: 31624 components: - type: Transform pos: -68.5,-22.5 parent: 2 - - uid: 31015 + - uid: 31625 components: - type: Transform pos: 47.5,39.5 parent: 2 - - uid: 31016 + - uid: 31626 components: - type: Transform pos: 48.5,39.5 parent: 2 - - uid: 31017 + - uid: 31627 components: - type: Transform pos: 46.5,39.5 parent: 2 - - uid: 31018 + - uid: 31628 components: - type: Transform pos: -26.5,28.5 parent: 2 - - uid: 31019 + - uid: 31629 components: - type: Transform pos: -60.5,-25.5 parent: 2 - - uid: 31020 + - uid: 31630 components: - type: Transform pos: -83.5,-18.5 parent: 2 - - uid: 31021 + - uid: 31631 components: - type: Transform pos: 78.5,24.5 parent: 2 - - uid: 31022 + - uid: 31632 components: - type: Transform pos: 74.5,13.5 parent: 2 - - uid: 31023 + - uid: 31633 components: - type: Transform pos: 48.5,38.5 parent: 2 - - uid: 31024 + - uid: 31634 components: - type: Transform pos: 47.5,34.5 parent: 2 - - uid: 31025 + - uid: 31635 components: - type: Transform pos: 50.5,36.5 parent: 2 - - uid: 31026 + - uid: 31636 components: - type: Transform pos: 48.5,36.5 parent: 2 - - uid: 31027 + - uid: 31637 components: - type: Transform pos: 45.5,35.5 parent: 2 - - uid: 31028 + - uid: 31638 components: - type: Transform pos: 44.5,35.5 parent: 2 - - uid: 31029 + - uid: 31639 components: - type: Transform pos: 49.5,36.5 parent: 2 - - uid: 31030 + - uid: 31640 components: - type: Transform pos: -27.5,33.5 parent: 2 - - uid: 31031 + - uid: 31641 components: - type: Transform pos: -29.5,23.5 parent: 2 - - uid: 31032 + - uid: 31642 components: - type: Transform pos: -27.5,28.5 parent: 2 - - uid: 31033 + - uid: 31643 components: - type: Transform pos: -27.5,27.5 parent: 2 - - uid: 31034 + - uid: 31644 components: - type: Transform pos: -29.5,22.5 parent: 2 - - uid: 31035 + - uid: 31645 components: - type: Transform pos: -28.5,23.5 parent: 2 - - uid: 31036 + - uid: 31646 components: - type: Transform pos: -28.5,24.5 parent: 2 - - uid: 31037 + - uid: 31647 components: - type: Transform pos: 44.5,36.5 parent: 2 - - uid: 31038 + - uid: 31648 components: - type: Transform pos: 46.5,35.5 parent: 2 - - uid: 31039 + - uid: 31649 components: - type: Transform pos: 48.5,34.5 parent: 2 - - uid: 31040 + - uid: 31650 components: - type: Transform pos: 44.5,39.5 parent: 2 - - uid: 31041 + - uid: 31651 components: - type: Transform pos: 45.5,36.5 parent: 2 - - uid: 31042 + - uid: 31652 components: - type: Transform pos: 47.5,35.5 parent: 2 - - uid: 31043 + - uid: 31653 components: - type: Transform pos: 49.5,35.5 parent: 2 - - uid: 31044 + - uid: 31654 components: - type: Transform pos: 48.5,35.5 parent: 2 - - uid: 31045 + - uid: 31655 components: - type: Transform pos: 45.5,39.5 parent: 2 - - uid: 31046 + - uid: 31656 components: - type: Transform pos: 49.5,39.5 parent: 2 - - uid: 31047 + - uid: 31657 components: - type: Transform pos: -27.5,24.5 parent: 2 - - uid: 31048 + - uid: 31658 components: - type: Transform pos: -59.5,60.5 parent: 2 - - uid: 31049 + - uid: 31659 components: - type: Transform pos: -59.5,61.5 parent: 2 - - uid: 31050 + - uid: 31660 components: - type: Transform pos: -118.5,37.5 parent: 2 - - uid: 31051 + - uid: 31661 components: - type: Transform pos: -117.5,37.5 parent: 2 - - uid: 31052 + - uid: 31662 components: - type: Transform pos: 50.5,-43.5 parent: 2 - - uid: 31053 + - uid: 31663 components: - type: Transform pos: 50.5,-42.5 parent: 2 - - uid: 31054 + - uid: 31664 components: - type: Transform pos: 51.5,-43.5 parent: 2 - - uid: 31055 + - uid: 31665 components: - type: Transform pos: 50.5,-44.5 parent: 2 - - uid: 31056 + - uid: 31666 components: - type: Transform pos: 49.5,-41.5 parent: 2 - - uid: 31057 + - uid: 31667 components: - type: Transform pos: 49.5,-40.5 parent: 2 - - uid: 31058 + - uid: 31668 components: - type: Transform pos: 51.5,-41.5 parent: 2 - - uid: 31059 + - uid: 31669 components: - type: Transform pos: 49.5,-42.5 parent: 2 - - uid: 31060 + - uid: 31670 components: - type: Transform pos: -24.5,62.5 parent: 2 - - uid: 31061 + - uid: 31671 components: - type: Transform pos: -23.5,62.5 parent: 2 - - uid: 31062 + - uid: 31672 components: - type: Transform pos: -22.5,62.5 parent: 2 - - uid: 31063 + - uid: 31673 components: - type: Transform pos: -65.5,43.5 parent: 2 - - uid: 31064 + - uid: 31674 components: - type: Transform pos: -72.5,15.5 parent: 2 - - uid: 31065 + - uid: 31675 components: - type: Transform pos: -37.5,-56.5 parent: 2 - - uid: 31066 + - uid: 31676 components: - type: Transform pos: 31.5,-31.5 parent: 2 - - uid: 31067 + - uid: 31677 components: - type: Transform pos: 33.5,-29.5 parent: 2 - - uid: 31068 + - uid: 31678 components: - type: Transform pos: 30.5,-31.5 parent: 2 - - uid: 31069 + - uid: 31679 components: - type: Transform pos: -71.5,15.5 parent: 2 - - uid: 31070 + - uid: 31680 components: - type: Transform pos: 30.5,-29.5 parent: 2 - - uid: 31071 + - uid: 31681 components: - type: Transform pos: 30.5,-30.5 parent: 2 - - uid: 31072 + - uid: 31682 components: - type: Transform pos: 32.5,-26.5 parent: 2 - - uid: 31073 + - uid: 31683 components: - type: Transform pos: 21.5,66.5 parent: 2 - - uid: 31074 + - uid: 31684 components: - type: Transform pos: 11.5,51.5 parent: 2 - - uid: 31075 + - uid: 31685 components: - type: Transform pos: 11.5,50.5 parent: 2 - - uid: 31076 + - uid: 31686 components: - type: Transform pos: 10.5,50.5 parent: 2 - - uid: 31077 + - uid: 31687 components: - type: Transform pos: 20.5,51.5 parent: 2 - - uid: 31078 + - uid: 31688 components: - type: Transform pos: -39.5,-48.5 parent: 2 - - uid: 31079 + - uid: 31689 components: - type: Transform pos: 21.5,63.5 parent: 2 - - uid: 31080 + - uid: 31690 components: - type: Transform pos: 5.5,-69.5 parent: 2 - - uid: 31081 + - uid: 31691 components: - type: Transform pos: 38.5,-40.5 parent: 2 - - uid: 31082 + - uid: 31692 components: - type: Transform pos: 44.5,-42.5 parent: 2 - - uid: 31083 + - uid: 31693 components: - type: Transform pos: 40.5,-40.5 parent: 2 - - uid: 31084 + - uid: 31694 components: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 31085 + - uid: 31695 components: - type: Transform pos: -1.5,-28.5 parent: 2 - - uid: 31086 + - uid: 31696 components: - type: Transform pos: 1.5,-27.5 parent: 2 - - uid: 31087 + - uid: 31697 components: - type: Transform pos: 1.5,-26.5 parent: 2 - - uid: 31088 + - uid: 31698 components: - type: Transform pos: 0.5,-26.5 parent: 2 - - uid: 31089 + - uid: 31699 components: - type: Transform pos: -0.5,-28.5 parent: 2 - - uid: 31090 + - uid: 31700 components: - type: Transform pos: -0.5,-29.5 parent: 2 - - uid: 31091 + - uid: 31701 components: - type: Transform pos: 0.5,-28.5 parent: 2 - - uid: 31092 + - uid: 31702 components: - type: Transform pos: 0.5,-25.5 parent: 2 - - uid: 31093 + - uid: 31703 components: - type: Transform pos: 0.5,-29.5 parent: 2 - - uid: 31094 + - uid: 31704 components: - type: Transform pos: -73.5,-20.5 parent: 2 - - uid: 31095 + - uid: 31705 components: - type: Transform pos: 11.5,15.5 parent: 2 - - uid: 31096 + - uid: 31706 components: - type: Transform pos: -71.5,-25.5 parent: 2 - - uid: 31097 + - uid: 31707 components: - type: Transform pos: 52.5,-48.5 parent: 2 - - uid: 31098 + - uid: 31708 components: - type: Transform pos: 49.5,-46.5 parent: 2 - - uid: 31099 + - uid: 31709 components: - type: Transform pos: 16.5,-31.5 parent: 2 - - uid: 31100 + - uid: 31710 components: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 31101 + - uid: 31711 components: - type: Transform pos: 48.5,-45.5 parent: 2 - - uid: 31102 + - uid: 31712 components: - type: Transform pos: 56.5,-52.5 parent: 2 - - uid: 31103 + - uid: 31713 components: - type: Transform pos: 56.5,-55.5 parent: 2 - - uid: 31104 + - uid: 31714 components: - type: Transform pos: 56.5,-53.5 parent: 2 - - uid: 31105 + - uid: 31715 components: - type: Transform pos: 39.5,-34.5 parent: 2 - - uid: 31106 + - uid: 31716 components: - type: Transform pos: 45.5,-45.5 parent: 2 - - uid: 31107 + - uid: 31717 components: - type: Transform pos: 56.5,-49.5 parent: 2 - - uid: 31108 + - uid: 31718 components: - type: Transform pos: 55.5,-51.5 parent: 2 - - uid: 31109 + - uid: 31719 components: - type: Transform pos: 54.5,-50.5 parent: 2 - - uid: 31110 + - uid: 31720 components: - type: Transform pos: 13.5,-36.5 parent: 2 - - uid: 31111 + - uid: 31721 components: - type: Transform pos: 14.5,-36.5 parent: 2 - - uid: 31112 + - uid: 31722 components: - type: Transform pos: 13.5,-37.5 parent: 2 - - uid: 31113 + - uid: 31723 components: - type: Transform pos: 15.5,-31.5 parent: 2 - - uid: 31114 + - uid: 31724 components: - type: Transform pos: 56.5,-48.5 parent: 2 - - uid: 31115 + - uid: 31725 components: - type: Transform pos: 16.5,-30.5 parent: 2 - - uid: 31116 + - uid: 31726 components: - type: Transform pos: 55.5,-52.5 parent: 2 - - uid: 31117 + - uid: 31727 components: - type: Transform pos: 55.5,-53.5 parent: 2 - - uid: 31118 + - uid: 31728 components: - type: Transform pos: 46.5,-45.5 parent: 2 - - uid: 31119 + - uid: 31729 components: - type: Transform pos: 46.5,-44.5 parent: 2 - - uid: 31120 + - uid: 31730 components: - type: Transform pos: -16.5,-34.5 parent: 2 - - uid: 31121 + - uid: 31731 components: - type: Transform pos: -15.5,-34.5 parent: 2 - - uid: 31122 + - uid: 31732 components: - type: Transform pos: 34.5,-28.5 parent: 2 - - uid: 31123 + - uid: 31733 components: - type: Transform pos: 50.5,21.5 parent: 2 - - uid: 31124 + - uid: 31734 components: - type: Transform pos: 47.5,13.5 parent: 2 - - uid: 31125 + - uid: 31735 components: - type: Transform pos: -40.5,44.5 parent: 2 - - uid: 31126 + - uid: 31736 components: - type: Transform pos: -41.5,60.5 parent: 2 - - uid: 31127 + - uid: 31737 components: - type: Transform pos: -40.5,45.5 parent: 2 - - uid: 31128 + - uid: 31738 components: - type: Transform pos: -40.5,46.5 parent: 2 - - uid: 31129 + - uid: 31739 components: - type: Transform pos: -41.5,59.5 parent: 2 - - uid: 31130 + - uid: 31740 components: - type: Transform pos: -70.5,15.5 parent: 2 - - uid: 31131 + - uid: 31741 components: - type: Transform pos: -40.5,43.5 parent: 2 - - uid: 31132 + - uid: 31742 components: - type: Transform pos: 69.5,-5.5 parent: 2 - - uid: 31133 + - uid: 31743 components: - type: Transform pos: -71.5,14.5 parent: 2 - - uid: 31134 + - uid: 31744 components: - type: Transform pos: -36.5,54.5 parent: 2 - - uid: 31135 + - uid: 31745 components: - type: Transform pos: -37.5,47.5 parent: 2 - - uid: 31136 + - uid: 31746 components: - type: Transform pos: -37.5,43.5 parent: 2 - - uid: 31137 + - uid: 31747 components: - type: Transform pos: -32.5,43.5 parent: 2 - - uid: 31138 + - uid: 31748 components: - type: Transform pos: -17.5,28.5 parent: 2 - - uid: 31139 - components: - - type: Transform - pos: -33.5,58.5 - parent: 2 - - uid: 31140 - components: - - type: Transform - pos: -33.5,59.5 - parent: 2 - - uid: 31141 + - uid: 31749 components: - type: Transform pos: -34.5,55.5 parent: 2 - - uid: 31142 + - uid: 31750 components: - type: Transform pos: -33.5,43.5 parent: 2 - - uid: 31143 + - uid: 31751 components: - type: Transform pos: -36.5,55.5 parent: 2 - - uid: 31144 + - uid: 31752 components: - type: Transform pos: -39.5,52.5 parent: 2 - - uid: 31145 + - uid: 31753 components: - type: Transform pos: 42.5,15.5 parent: 2 - - uid: 31146 + - uid: 31754 components: - type: Transform pos: 81.5,-29.5 parent: 2 - - uid: 31147 + - uid: 31755 components: - type: Transform pos: -58.5,61.5 parent: 2 - - uid: 31148 + - uid: 31756 components: - type: Transform pos: -58.5,60.5 parent: 2 - - uid: 31149 + - uid: 31757 components: - type: Transform pos: -71.5,-21.5 parent: 2 - - uid: 31150 + - uid: 31758 components: - type: Transform pos: 85.5,-31.5 parent: 2 - - uid: 31151 - components: - - type: Transform - pos: -34.5,65.5 - parent: 2 - - uid: 31152 + - uid: 31759 components: - type: Transform - pos: -34.5,63.5 + pos: -42.5,74.5 parent: 2 - - uid: 31153 + - uid: 31760 components: - type: Transform pos: 38.5,40.5 parent: 2 - - uid: 31154 + - uid: 31761 components: - type: Transform pos: 53.5,15.5 parent: 2 - - uid: 31155 - components: - - type: Transform - pos: 59.5,-18.5 - parent: 2 - - uid: 31156 + - uid: 31762 components: - type: Transform pos: 14.5,-49.5 parent: 2 - - uid: 31157 - components: - - type: Transform - pos: -38.5,70.5 - parent: 2 - - uid: 31158 - components: - - type: Transform - pos: -38.5,71.5 - parent: 2 - - uid: 31159 + - uid: 31763 components: - type: Transform pos: 55.5,15.5 parent: 2 - - uid: 31160 + - uid: 31764 components: - type: Transform pos: -36.5,53.5 parent: 2 - - uid: 31161 + - uid: 31765 components: - type: Transform pos: 46.5,59.5 parent: 2 - - uid: 31162 + - uid: 31766 components: - type: Transform pos: 32.5,53.5 parent: 2 - - uid: 31163 - components: - - type: Transform - pos: -36.5,68.5 - parent: 2 - - uid: 31164 - components: - - type: Transform - pos: -36.5,71.5 - parent: 2 - - uid: 31165 + - uid: 31767 components: - type: Transform pos: 40.5,63.5 parent: 2 - - uid: 31166 + - uid: 31768 components: - type: Transform pos: 44.5,60.5 parent: 2 - - uid: 31167 - components: - - type: Transform - pos: -36.5,69.5 - parent: 2 - - uid: 31168 + - uid: 31769 components: - type: Transform pos: -36.5,73.5 parent: 2 - - uid: 31169 + - uid: 31770 components: - type: Transform pos: 17.5,-28.5 parent: 2 - - uid: 31170 + - uid: 31771 components: - type: Transform pos: 87.5,-35.5 parent: 2 - - uid: 31171 + - uid: 31772 components: - type: Transform pos: 46.5,61.5 parent: 2 - - uid: 31172 + - uid: 31773 components: - type: Transform pos: 35.5,65.5 parent: 2 - - uid: 31173 + - uid: 31774 components: - type: Transform pos: 52.5,-35.5 parent: 2 - - uid: 31174 + - uid: 31775 components: - type: Transform pos: 86.5,-31.5 parent: 2 - - uid: 31175 + - uid: 31776 components: - type: Transform pos: 85.5,-28.5 parent: 2 - - uid: 31176 - components: - - type: Transform - pos: 45.5,10.5 - parent: 2 - - uid: 31177 - components: - - type: Transform - pos: 44.5,11.5 - parent: 2 - - uid: 31178 + - uid: 31777 components: - type: Transform pos: 12.5,14.5 parent: 2 - - uid: 31179 + - uid: 31778 components: - type: Transform pos: 45.5,61.5 parent: 2 - - uid: 31180 + - uid: 31779 components: - type: Transform pos: 29.5,49.5 parent: 2 - - uid: 31181 + - uid: 31780 components: - type: Transform pos: 46.5,57.5 parent: 2 - - uid: 31182 + - uid: 31781 components: - type: Transform pos: 45.5,59.5 parent: 2 - - uid: 31183 + - uid: 31782 components: - type: Transform pos: 47.5,51.5 parent: 2 - - uid: 31184 + - uid: 31783 components: - type: Transform pos: 47.5,56.5 parent: 2 - - uid: 31185 + - uid: 31784 components: - type: Transform pos: 19.5,-28.5 parent: 2 - - uid: 31186 + - uid: 31785 components: - type: Transform pos: -36.5,48.5 parent: 2 - - uid: 31187 + - uid: 31786 components: - type: Transform pos: 42.5,62.5 parent: 2 - - uid: 31188 + - uid: 31787 components: - type: Transform pos: 43.5,62.5 parent: 2 - - uid: 31189 + - uid: 31788 components: - type: Transform pos: 12.5,13.5 parent: 2 - - uid: 31190 + - uid: 31789 components: - type: Transform pos: 16.5,-52.5 parent: 2 - - uid: 31191 + - uid: 31790 components: - type: Transform pos: -17.5,-28.5 parent: 2 - - uid: 31192 + - uid: 31791 components: - type: Transform pos: -18.5,-28.5 parent: 2 - - uid: 31193 + - uid: 31792 components: - type: Transform pos: -18.5,-27.5 parent: 2 - - uid: 31194 + - uid: 31793 components: - type: Transform pos: -19.5,-26.5 parent: 2 - - uid: 31195 + - uid: 31794 components: - type: Transform pos: -23.5,-27.5 parent: 2 - - uid: 31196 + - uid: 31795 components: - type: Transform pos: 77.5,16.5 parent: 2 - - uid: 31197 + - uid: 31796 components: - type: Transform pos: 77.5,15.5 parent: 2 - - uid: 31198 + - uid: 31797 components: - type: Transform pos: 28.5,-59.5 parent: 2 - - uid: 31199 - components: - - type: Transform - pos: -36.5,70.5 - parent: 2 - - uid: 31200 + - uid: 31798 components: - type: Transform pos: 17.5,-29.5 parent: 2 - - uid: 31201 + - uid: 31799 components: - type: Transform pos: -34.5,48.5 parent: 2 - - uid: 31202 + - uid: 31800 components: - type: Transform pos: -34.5,51.5 parent: 2 - - uid: 31203 + - uid: 31801 components: - type: Transform pos: -34.5,50.5 parent: 2 - - uid: 31204 + - uid: 31802 components: - type: Transform pos: -37.5,53.5 parent: 2 - - uid: 31205 + - uid: 31803 components: - type: Transform pos: -36.5,43.5 parent: 2 - - uid: 31206 + - uid: 31804 components: - type: Transform pos: -37.5,54.5 parent: 2 - - uid: 31207 + - uid: 31805 components: - type: Transform pos: -48.5,19.5 parent: 2 - - uid: 31208 + - uid: 31806 components: - type: Transform pos: -48.5,20.5 parent: 2 - - uid: 31209 + - uid: 31807 components: - type: Transform pos: -32.5,59.5 parent: 2 - - uid: 31210 + - uid: 31808 components: - type: Transform pos: -27.5,72.5 parent: 2 - - uid: 31211 + - uid: 31809 components: - type: Transform pos: -18.5,29.5 parent: 2 - - uid: 31212 + - uid: 31810 components: - type: Transform pos: -36.5,52.5 parent: 2 - - uid: 31213 + - uid: 31811 components: - type: Transform pos: -38.5,53.5 parent: 2 - - uid: 31214 + - uid: 31812 components: - type: Transform pos: -33.5,44.5 parent: 2 - - uid: 31215 + - uid: 31813 components: - type: Transform pos: -34.5,49.5 parent: 2 - - uid: 31216 + - uid: 31814 components: - type: Transform pos: -34.5,46.5 parent: 2 - - uid: 31217 + - uid: 31815 components: - type: Transform pos: -34.5,47.5 parent: 2 - - uid: 31218 + - uid: 31816 components: - type: Transform pos: -34.5,45.5 parent: 2 - - uid: 31219 + - uid: 31817 components: - type: Transform - pos: -34.5,59.5 + pos: -30.5,66.5 parent: 2 - - uid: 31220 + - uid: 31818 components: - type: Transform - pos: -35.5,61.5 + pos: -32.5,65.5 parent: 2 - - uid: 31221 + - uid: 31819 components: - type: Transform - pos: -35.5,60.5 + pos: -31.5,65.5 parent: 2 - - uid: 31222 + - uid: 31820 components: - type: Transform pos: -35.5,54.5 parent: 2 - - uid: 31223 + - uid: 31821 components: - type: Transform pos: -35.5,55.5 parent: 2 - - uid: 31224 + - uid: 31822 components: - type: Transform pos: -35.5,52.5 parent: 2 - - uid: 31225 + - uid: 31823 components: - type: Transform pos: -35.5,53.5 parent: 2 - - uid: 31226 + - uid: 31824 components: - type: Transform pos: -35.5,46.5 parent: 2 - - uid: 31227 + - uid: 31825 components: - type: Transform pos: -35.5,49.5 parent: 2 - - uid: 31228 + - uid: 31826 components: - type: Transform pos: -35.5,48.5 parent: 2 - - uid: 31229 + - uid: 31827 components: - type: Transform pos: -35.5,47.5 parent: 2 - - uid: 31230 + - uid: 31828 components: - type: Transform pos: -35.5,45.5 parent: 2 - - uid: 31231 + - uid: 31829 components: - type: Transform pos: -35.5,43.5 parent: 2 - - uid: 31232 + - uid: 31830 components: - type: Transform pos: -35.5,44.5 parent: 2 - - uid: 31233 + - uid: 31831 components: - type: Transform pos: 12.5,15.5 parent: 2 - - uid: 31234 + - uid: 31832 components: - type: Transform pos: 55.5,38.5 parent: 2 - - uid: 31235 + - uid: 31833 components: - type: Transform pos: 53.5,16.5 parent: 2 - - uid: 31236 - components: - - type: Transform - pos: 46.5,-13.5 - parent: 2 - - uid: 31237 + - uid: 31834 components: - type: Transform pos: 36.5,-59.5 parent: 2 - - uid: 31238 + - uid: 31835 components: - type: Transform pos: 53.5,17.5 parent: 2 - - uid: 31239 + - uid: 31836 components: - type: Transform pos: 62.5,-20.5 parent: 2 - - uid: 31240 - components: - - type: Transform - pos: -33.5,71.5 - parent: 2 - - uid: 31241 + - uid: 31837 components: - type: Transform pos: 84.5,-48.5 parent: 2 - - uid: 31242 + - uid: 31838 components: - type: Transform pos: -70.5,-21.5 parent: 2 - - uid: 31243 - components: - - type: Transform - pos: -53.5,19.5 - parent: 2 - - uid: 31244 + - uid: 31839 components: - type: Transform pos: 53.5,24.5 parent: 2 - - uid: 31245 + - uid: 31840 components: - type: Transform pos: 13.5,-46.5 parent: 2 - - uid: 31246 + - uid: 31841 components: - type: Transform pos: 10.5,-55.5 parent: 2 - - uid: 31247 + - uid: 31842 components: - type: Transform pos: 53.5,23.5 parent: 2 - - uid: 31248 + - uid: 31843 components: - type: Transform pos: 11.5,-53.5 parent: 2 - - uid: 31249 - components: - - type: Transform - pos: -36.5,72.5 - parent: 2 - - uid: 31250 - components: - - type: Transform - pos: -33.5,67.5 - parent: 2 - - uid: 31251 - components: - - type: Transform - pos: -38.5,67.5 - parent: 2 - - uid: 31252 - components: - - type: Transform - pos: 80.5,-28.5 - parent: 2 - - uid: 31253 + - uid: 31844 components: - type: Transform pos: 62.5,-53.5 parent: 2 - - uid: 31254 + - uid: 31845 components: - type: Transform pos: 64.5,-53.5 parent: 2 - - uid: 31255 + - uid: 31846 components: - type: Transform pos: 64.5,-52.5 parent: 2 - - uid: 31256 + - uid: 31847 components: - type: Transform pos: 61.5,-53.5 parent: 2 - - uid: 31257 - components: - - type: Transform - pos: -38.5,69.5 - parent: 2 - - uid: 31258 - components: - - type: Transform - pos: -38.5,73.5 - parent: 2 - - uid: 31259 + - uid: 31848 components: - type: Transform pos: 84.5,-28.5 parent: 2 - - uid: 31260 + - uid: 31849 components: - type: Transform pos: 0.5,-33.5 parent: 2 - - uid: 31261 + - uid: 31850 components: - type: Transform pos: 12.5,-32.5 parent: 2 - - uid: 31262 + - uid: 31851 components: - type: Transform pos: -2.5,-19.5 parent: 2 - - uid: 31263 + - uid: 31852 components: - type: Transform pos: -2.5,-22.5 parent: 2 - - uid: 31264 + - uid: 31853 components: - type: Transform pos: 0.5,-38.5 parent: 2 - - uid: 31265 + - uid: 31854 components: - type: Transform pos: -17.5,-27.5 parent: 2 - - uid: 31266 + - uid: 31855 components: - type: Transform pos: -16.5,-27.5 parent: 2 - - uid: 31267 + - uid: 31856 components: - type: Transform pos: 31.5,50.5 parent: 2 - - uid: 31268 + - uid: 31857 components: - type: Transform pos: -16.5,-26.5 parent: 2 - - uid: 31269 + - uid: 31858 components: - type: Transform pos: 18.5,-29.5 parent: 2 - - uid: 31270 + - uid: 31859 components: - type: Transform pos: 31.5,52.5 parent: 2 - - uid: 31271 + - uid: 31860 components: - type: Transform pos: -39.5,45.5 parent: 2 - - uid: 31272 + - uid: 31861 components: - type: Transform pos: -36.5,44.5 parent: 2 - - uid: 31273 + - uid: 31862 components: - type: Transform pos: 31.5,51.5 parent: 2 - - uid: 31274 + - uid: 31863 components: - type: Transform pos: -39.5,47.5 parent: 2 - - uid: 31275 + - uid: 31864 components: - type: Transform pos: -39.5,44.5 parent: 2 - - uid: 31276 + - uid: 31865 components: - type: Transform pos: -37.5,55.5 parent: 2 - - uid: 31277 + - uid: 31866 components: - type: Transform pos: 32.5,58.5 parent: 2 - - uid: 31278 + - uid: 31867 components: - type: Transform pos: -34.5,43.5 parent: 2 - - uid: 31279 + - uid: 31868 components: - type: Transform pos: 32.5,54.5 parent: 2 - - uid: 31280 + - uid: 31869 components: - type: Transform pos: -16.5,-25.5 parent: 2 - - uid: 31281 + - uid: 31870 components: - type: Transform pos: -34.5,44.5 parent: 2 - - uid: 31282 + - uid: 31871 components: - type: Transform pos: 32.5,52.5 parent: 2 - - uid: 31283 + - uid: 31872 components: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 31284 + - uid: 31873 components: - type: Transform pos: -62.5,-3.5 parent: 2 - - uid: 31285 + - uid: 31874 components: - type: Transform pos: -70.5,67.5 parent: 2 - - uid: 31286 + - uid: 31875 components: - type: Transform pos: -67.5,59.5 parent: 2 - - uid: 31287 + - uid: 31876 components: - type: Transform pos: 29.5,48.5 parent: 2 - - uid: 31288 + - uid: 31877 components: - type: Transform pos: 30.5,49.5 parent: 2 - - uid: 31289 + - uid: 31878 components: - type: Transform pos: 30.5,48.5 parent: 2 - - uid: 31290 + - uid: 31879 components: - type: Transform pos: 31.5,49.5 parent: 2 - - uid: 31291 + - uid: 31880 components: - type: Transform pos: 36.5,64.5 parent: 2 - - uid: 31292 + - uid: 31881 components: - type: Transform pos: -27.5,-32.5 parent: 2 - - uid: 31293 + - uid: 31882 components: - type: Transform pos: -27.5,-31.5 parent: 2 - - uid: 31294 + - uid: 31883 components: - type: Transform pos: -21.5,-29.5 parent: 2 - - uid: 31295 + - uid: 31884 components: - type: Transform pos: -17.5,-29.5 parent: 2 - - uid: 31296 + - uid: 31885 components: - type: Transform pos: -63.5,-6.5 parent: 2 - - uid: 31297 + - uid: 31886 components: - type: Transform pos: -63.5,-7.5 parent: 2 - - uid: 31298 + - uid: 31887 components: - type: Transform pos: 40.5,60.5 parent: 2 - - uid: 31299 + - uid: 31888 components: - type: Transform pos: -22.5,-29.5 parent: 2 - - uid: 31300 + - uid: 31889 components: - type: Transform pos: 28.5,-60.5 parent: 2 - - uid: 31301 + - uid: 31890 components: - type: Transform pos: -61.5,-5.5 parent: 2 - - uid: 31302 + - uid: 31891 components: - type: Transform pos: -46.5,70.5 parent: 2 - - uid: 31303 + - uid: 31892 components: - type: Transform pos: -22.5,-31.5 parent: 2 - - uid: 31304 + - uid: 31893 components: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 31305 + - uid: 31894 components: - type: Transform pos: -24.5,-32.5 parent: 2 - - uid: 31306 + - uid: 31895 components: - type: Transform pos: -23.5,-32.5 parent: 2 - - uid: 31307 + - uid: 31896 components: - type: Transform pos: -24.5,-31.5 parent: 2 - - uid: 31308 + - uid: 31897 components: - type: Transform pos: -24.5,-30.5 parent: 2 - - uid: 31309 + - uid: 31898 components: - type: Transform pos: -23.5,-31.5 parent: 2 - - uid: 31310 + - uid: 31899 components: - type: Transform pos: -25.5,-32.5 parent: 2 - - uid: 31311 + - uid: 31900 components: - type: Transform pos: -25.5,-31.5 parent: 2 - - uid: 31312 + - uid: 31901 components: - type: Transform pos: 0.5,-37.5 parent: 2 - - uid: 31313 + - uid: 31902 components: - type: Transform pos: 0.5,-36.5 parent: 2 - - uid: 31314 + - uid: 31903 components: - type: Transform pos: -22.5,-30.5 parent: 2 - - uid: 31315 + - uid: 31904 components: - type: Transform pos: -21.5,-32.5 parent: 2 - - uid: 31316 + - uid: 31905 components: - type: Transform pos: -25.5,-30.5 parent: 2 - - uid: 31317 + - uid: 31906 components: - type: Transform pos: -26.5,-32.5 parent: 2 - - uid: 31318 + - uid: 31907 components: - type: Transform pos: -22.5,-32.5 parent: 2 - - uid: 31319 + - uid: 31908 components: - type: Transform pos: -21.5,-31.5 parent: 2 - - uid: 31320 + - uid: 31909 components: - type: Transform pos: -26.5,-31.5 parent: 2 - - uid: 31321 + - uid: 31910 components: - type: Transform pos: -26.5,-30.5 parent: 2 - - uid: 31322 + - uid: 31911 components: - type: Transform pos: -62.5,-7.5 parent: 2 - - uid: 31323 + - uid: 31912 components: - type: Transform pos: -62.5,-6.5 parent: 2 - - uid: 31324 + - uid: 31913 components: - type: Transform pos: -62.5,-5.5 parent: 2 - - uid: 31325 + - uid: 31914 components: - type: Transform pos: -62.5,-4.5 parent: 2 - - uid: 31326 + - uid: 31915 components: - type: Transform pos: -21.5,-30.5 parent: 2 - - uid: 31327 + - uid: 31916 components: - type: Transform pos: -20.5,-32.5 parent: 2 - - uid: 31328 + - uid: 31917 components: - type: Transform pos: 31.5,60.5 parent: 2 - - uid: 31329 + - uid: 31918 components: - type: Transform pos: 31.5,59.5 parent: 2 - - uid: 31330 + - uid: 31919 components: - type: Transform pos: 31.5,56.5 parent: 2 - - uid: 31331 + - uid: 31920 components: - type: Transform pos: 31.5,55.5 parent: 2 - - uid: 31332 + - uid: 31921 components: - type: Transform pos: 0.5,-34.5 parent: 2 - - uid: 31333 + - uid: 31922 components: - type: Transform pos: 0.5,-35.5 parent: 2 - - uid: 31334 + - uid: 31923 components: - type: Transform pos: 31.5,58.5 parent: 2 - - uid: 31335 + - uid: 31924 components: - type: Transform pos: 31.5,54.5 parent: 2 - - uid: 31336 + - uid: 31925 components: - type: Transform pos: 31.5,53.5 parent: 2 - - uid: 31337 + - uid: 31926 components: - type: Transform pos: -46.5,-17.5 parent: 2 - - uid: 31338 + - uid: 31927 components: - type: Transform pos: -46.5,-18.5 parent: 2 - - uid: 31339 + - uid: 31928 components: - type: Transform pos: -46.5,-19.5 parent: 2 - - uid: 31340 + - uid: 31929 components: - type: Transform pos: -47.5,-17.5 parent: 2 - - uid: 31341 + - uid: 31930 components: - type: Transform pos: -47.5,-18.5 parent: 2 - - uid: 31342 + - uid: 31931 components: - type: Transform pos: -47.5,-19.5 parent: 2 - - uid: 31343 + - uid: 31932 components: - type: Transform pos: -48.5,-17.5 parent: 2 - - uid: 31344 + - uid: 31933 components: - type: Transform pos: -48.5,-18.5 parent: 2 - - uid: 31345 + - uid: 31934 components: - type: Transform pos: -48.5,-19.5 parent: 2 - - uid: 31346 + - uid: 31935 components: - type: Transform pos: -49.5,-17.5 parent: 2 - - uid: 31347 + - uid: 31936 components: - type: Transform pos: -49.5,-18.5 parent: 2 - - uid: 31348 + - uid: 31937 components: - type: Transform pos: -49.5,-19.5 parent: 2 - - uid: 31349 + - uid: 31938 components: - type: Transform pos: -50.5,-17.5 parent: 2 - - uid: 31350 + - uid: 31939 components: - type: Transform pos: -50.5,-18.5 parent: 2 - - uid: 31351 + - uid: 31940 components: - type: Transform pos: -55.5,-17.5 parent: 2 - - uid: 31352 + - uid: 31941 components: - type: Transform pos: -55.5,-18.5 parent: 2 - - uid: 31353 + - uid: 31942 components: - type: Transform pos: -54.5,-17.5 parent: 2 - - uid: 31354 + - uid: 31943 components: - type: Transform pos: -54.5,-18.5 parent: 2 - - uid: 31355 + - uid: 31944 components: - type: Transform pos: -53.5,-17.5 parent: 2 - - uid: 31356 + - uid: 31945 components: - type: Transform pos: -53.5,-18.5 parent: 2 - - uid: 31357 + - uid: 31946 components: - type: Transform pos: -52.5,-17.5 parent: 2 - - uid: 31358 + - uid: 31947 components: - type: Transform pos: -51.5,-17.5 parent: 2 - - uid: 31359 + - uid: 31948 components: - type: Transform pos: -46.5,-20.5 parent: 2 - - uid: 31360 + - uid: 31949 components: - type: Transform pos: -46.5,-21.5 parent: 2 - - uid: 31361 + - uid: 31950 components: - type: Transform pos: -45.5,-21.5 parent: 2 - - uid: 31362 + - uid: 31951 components: - type: Transform pos: -40.5,-26.5 parent: 2 - - uid: 31363 + - uid: 31952 components: - type: Transform pos: -39.5,-25.5 parent: 2 - - uid: 31364 + - uid: 31953 components: - type: Transform pos: -39.5,-26.5 parent: 2 - - uid: 31365 + - uid: 31954 components: - type: Transform pos: -35.5,-29.5 parent: 2 - - uid: 31366 + - uid: 31955 components: - type: Transform pos: -42.5,-24.5 parent: 2 - - uid: 31367 + - uid: 31956 components: - type: Transform pos: -41.5,-24.5 parent: 2 - - uid: 31368 + - uid: 31957 components: - type: Transform pos: -43.5,-24.5 parent: 2 - - uid: 31369 + - uid: 31958 components: - type: Transform pos: -40.5,-24.5 parent: 2 - - uid: 31370 + - uid: 31959 components: - type: Transform pos: -39.5,-24.5 parent: 2 - - uid: 31371 + - uid: 31960 components: - type: Transform pos: -43.5,-25.5 parent: 2 - - uid: 31372 + - uid: 31961 components: - type: Transform pos: -44.5,-25.5 parent: 2 - - uid: 31373 + - uid: 31962 components: - type: Transform pos: -40.5,-25.5 parent: 2 - - uid: 31374 + - uid: 31963 components: - type: Transform pos: -42.5,-25.5 parent: 2 - - uid: 31375 + - uid: 31964 components: - type: Transform pos: -41.5,-25.5 parent: 2 - - uid: 31376 + - uid: 31965 components: - type: Transform pos: -35.5,-28.5 parent: 2 - - uid: 31377 + - uid: 31966 components: - type: Transform pos: -34.5,-28.5 parent: 2 - - uid: 31378 + - uid: 31967 components: - type: Transform pos: -61.5,-6.5 parent: 2 - - uid: 31379 + - uid: 31968 components: - type: Transform pos: -90.5,35.5 parent: 2 - - uid: 31380 + - uid: 31969 components: - type: Transform pos: -90.5,36.5 parent: 2 - - uid: 31381 + - uid: 31970 components: - type: Transform pos: -90.5,30.5 parent: 2 - - uid: 31382 + - uid: 31971 components: - type: Transform pos: -90.5,31.5 parent: 2 - - uid: 31383 + - uid: 31972 components: - type: Transform pos: -91.5,37.5 parent: 2 - - uid: 31384 + - uid: 31973 components: - type: Transform pos: -59.5,-3.5 parent: 2 - - uid: 31385 + - uid: 31974 components: - type: Transform pos: -59.5,-7.5 parent: 2 - - uid: 31386 + - uid: 31975 components: - type: Transform pos: -94.5,36.5 parent: 2 - - uid: 31387 + - uid: 31976 components: - type: Transform pos: -59.5,-13.5 parent: 2 - - uid: 31388 + - uid: 31977 components: - type: Transform pos: -59.5,-14.5 parent: 2 - - uid: 31389 - components: - - type: Transform - pos: -64.5,-9.5 - parent: 2 - - uid: 31390 + - uid: 31978 components: - type: Transform pos: -91.5,36.5 parent: 2 - - uid: 31391 + - uid: 31979 components: - type: Transform pos: -94.5,35.5 parent: 2 - - uid: 31392 + - uid: 31980 components: - type: Transform pos: -61.5,-12.5 parent: 2 - - uid: 31393 + - uid: 31981 components: - type: Transform pos: 41.5,57.5 parent: 2 - - uid: 31394 + - uid: 31982 components: - type: Transform pos: -62.5,-11.5 parent: 2 - - uid: 31395 + - uid: 31983 components: - type: Transform pos: -62.5,-12.5 parent: 2 - - uid: 31396 + - uid: 31984 components: - type: Transform pos: -63.5,-12.5 parent: 2 - - uid: 31397 + - uid: 31985 components: - type: Transform pos: -62.5,-13.5 parent: 2 - - uid: 31398 + - uid: 31986 components: - type: Transform pos: -60.5,-13.5 parent: 2 - - uid: 31399 + - uid: 31987 components: - type: Transform pos: -61.5,-13.5 parent: 2 - - uid: 31400 + - uid: 31988 components: - type: Transform pos: -60.5,-14.5 parent: 2 - - uid: 31401 - components: - - type: Transform - pos: -63.5,-9.5 - parent: 2 - - uid: 31402 + - uid: 31989 components: - type: Transform pos: 30.5,66.5 parent: 2 - - uid: 31403 + - uid: 31990 components: - type: Transform pos: -73.5,68.5 parent: 2 - - uid: 31404 + - uid: 31991 components: - type: Transform pos: -73.5,67.5 parent: 2 - - uid: 31405 + - uid: 31992 components: - type: Transform pos: 21.5,64.5 parent: 2 - - uid: 31406 + - uid: 31993 components: - type: Transform pos: 20.5,64.5 parent: 2 - - uid: 31407 + - uid: 31994 components: - type: Transform pos: -69.5,4.5 parent: 2 - - uid: 31408 + - uid: 31995 components: - type: Transform pos: -69.5,5.5 parent: 2 - - uid: 31409 + - uid: 31996 components: - type: Transform pos: -69.5,8.5 parent: 2 - - uid: 31410 + - uid: 31997 components: - type: Transform pos: -69.5,9.5 parent: 2 - - uid: 31411 + - uid: 31998 components: - type: Transform pos: -69.5,10.5 parent: 2 - - uid: 31412 + - uid: 31999 components: - type: Transform pos: -69.5,11.5 parent: 2 - - uid: 31413 + - uid: 32000 components: - type: Transform pos: -74.5,66.5 parent: 2 - - uid: 31414 + - uid: 32001 components: - type: Transform pos: -70.5,1.5 parent: 2 - - uid: 31415 + - uid: 32002 components: - type: Transform pos: -70.5,2.5 parent: 2 - - uid: 31416 + - uid: 32003 components: - type: Transform pos: 81.5,10.5 parent: 2 - - uid: 31417 + - uid: 32004 components: - type: Transform pos: -70.5,8.5 parent: 2 - - uid: 31418 + - uid: 32005 components: - type: Transform pos: -70.5,9.5 parent: 2 - - uid: 31419 + - uid: 32006 components: - type: Transform pos: -70.5,10.5 parent: 2 - - uid: 31420 + - uid: 32007 components: - type: Transform pos: -70.5,11.5 parent: 2 - - uid: 31421 + - uid: 32008 components: - type: Transform pos: -71.5,-6.5 parent: 2 - - uid: 31422 + - uid: 32009 components: - type: Transform pos: -71.5,-0.5 parent: 2 - - uid: 31423 + - uid: 32010 components: - type: Transform pos: -71.5,1.5 parent: 2 - - uid: 31424 + - uid: 32011 components: - type: Transform pos: -71.5,2.5 parent: 2 - - uid: 31425 + - uid: 32012 components: - type: Transform pos: -71.5,3.5 parent: 2 - - uid: 31426 + - uid: 32013 components: - type: Transform pos: 21.5,65.5 parent: 2 - - uid: 31427 + - uid: 32014 components: - type: Transform pos: -71.5,8.5 parent: 2 - - uid: 31428 + - uid: 32015 components: - type: Transform pos: 73.5,19.5 parent: 2 - - uid: 31429 + - uid: 32016 components: - type: Transform pos: -71.5,11.5 parent: 2 - - uid: 31430 + - uid: 32017 components: - type: Transform pos: 20.5,65.5 parent: 2 - - uid: 31431 + - uid: 32018 components: - type: Transform pos: -72.5,-6.5 parent: 2 - - uid: 31432 + - uid: 32019 components: - type: Transform pos: -72.5,-5.5 parent: 2 - - uid: 31433 - components: - - type: Transform - pos: -72.5,-4.5 - parent: 2 - - uid: 31434 + - uid: 32020 components: - type: Transform pos: -72.5,-2.5 parent: 2 - - uid: 31435 + - uid: 32021 components: - type: Transform pos: -72.5,-1.5 parent: 2 - - uid: 31436 + - uid: 32022 components: - type: Transform pos: -72.5,-0.5 parent: 2 - - uid: 31437 + - uid: 32023 components: - type: Transform pos: -72.5,1.5 parent: 2 - - uid: 31438 + - uid: 32024 components: - type: Transform pos: -72.5,2.5 parent: 2 - - uid: 31439 + - uid: 32025 components: - type: Transform pos: 22.5,65.5 parent: 2 - - uid: 31440 + - uid: 32026 components: - type: Transform pos: -115.5,35.5 parent: 2 - - uid: 31441 + - uid: 32027 components: - type: Transform pos: 73.5,18.5 parent: 2 - - uid: 31442 + - uid: 32028 components: - type: Transform pos: -72.5,11.5 parent: 2 - - uid: 31443 + - uid: 32029 components: - type: Transform pos: -72.5,12.5 parent: 2 - - uid: 31444 + - uid: 32030 components: - type: Transform pos: -66.5,14.5 parent: 2 - - uid: 31445 + - uid: 32031 components: - type: Transform pos: -66.5,15.5 parent: 2 - - uid: 31446 + - uid: 32032 components: - type: Transform pos: -66.5,16.5 parent: 2 - - uid: 31447 + - uid: 32033 components: - type: Transform pos: -66.5,17.5 parent: 2 - - uid: 31448 + - uid: 32034 components: - type: Transform pos: -66.5,18.5 parent: 2 - - uid: 31449 + - uid: 32035 components: - type: Transform pos: -67.5,14.5 parent: 2 - - uid: 31450 + - uid: 32036 components: - type: Transform pos: -67.5,15.5 parent: 2 - - uid: 31451 + - uid: 32037 components: - type: Transform pos: -67.5,16.5 parent: 2 - - uid: 31452 + - uid: 32038 components: - type: Transform pos: -67.5,17.5 parent: 2 - - uid: 31453 + - uid: 32039 components: - type: Transform pos: -113.5,35.5 parent: 2 - - uid: 31454 + - uid: 32040 components: - type: Transform pos: -119.5,36.5 parent: 2 - - uid: 31455 + - uid: 32041 components: - type: Transform pos: -70.5,16.5 parent: 2 - - uid: 31456 + - uid: 32042 components: - type: Transform pos: -70.5,19.5 parent: 2 - - uid: 31457 + - uid: 32043 components: - type: Transform pos: -68.5,15.5 parent: 2 - - uid: 31458 + - uid: 32044 components: - type: Transform pos: -68.5,17.5 parent: 2 - - uid: 31459 + - uid: 32045 components: - type: Transform pos: -66.5,61.5 parent: 2 - - uid: 31460 + - uid: 32046 components: - type: Transform pos: -71.5,16.5 parent: 2 - - uid: 31461 + - uid: 32047 components: - type: Transform pos: -65.5,16.5 parent: 2 - - uid: 31462 + - uid: 32048 components: - type: Transform pos: -65.5,17.5 parent: 2 - - uid: 31463 + - uid: 32049 components: - type: Transform pos: -65.5,18.5 parent: 2 - - uid: 31464 + - uid: 32050 components: - type: Transform pos: -107.5,38.5 parent: 2 - - uid: 31465 + - uid: 32051 components: - type: Transform pos: -64.5,16.5 parent: 2 - - uid: 31466 + - uid: 32052 components: - type: Transform pos: -64.5,17.5 parent: 2 - - uid: 31467 + - uid: 32053 components: - type: Transform pos: -64.5,18.5 parent: 2 - - uid: 31468 + - uid: 32054 components: - type: Transform pos: -63.5,17.5 parent: 2 - - uid: 31469 + - uid: 32055 components: - type: Transform pos: -63.5,18.5 parent: 2 - - uid: 31470 + - uid: 32056 components: - type: Transform pos: -114.5,35.5 parent: 2 - - uid: 31471 + - uid: 32057 components: - type: Transform pos: -62.5,16.5 parent: 2 - - uid: 31472 + - uid: 32058 components: - type: Transform pos: -62.5,17.5 parent: 2 - - uid: 31473 + - uid: 32059 components: - type: Transform pos: -62.5,18.5 parent: 2 - - uid: 31474 - components: - - type: Transform - pos: -116.5,32.5 - parent: 2 - - uid: 31475 + - uid: 32060 components: - type: Transform pos: -61.5,17.5 parent: 2 - - uid: 31476 + - uid: 32061 components: - type: Transform pos: -61.5,18.5 parent: 2 - - uid: 31477 + - uid: 32062 components: - type: Transform pos: -60.5,15.5 parent: 2 - - uid: 31478 + - uid: 32063 components: - type: Transform pos: -60.5,16.5 parent: 2 - - uid: 31479 + - uid: 32064 components: - type: Transform pos: -60.5,17.5 parent: 2 - - uid: 31480 + - uid: 32065 components: - type: Transform pos: -60.5,18.5 parent: 2 - - uid: 31481 + - uid: 32066 components: - type: Transform pos: -59.5,15.5 parent: 2 - - uid: 31482 + - uid: 32067 components: - type: Transform pos: -59.5,16.5 parent: 2 - - uid: 31483 + - uid: 32068 components: - type: Transform pos: -59.5,17.5 parent: 2 - - uid: 31484 + - uid: 32069 components: - type: Transform pos: -59.5,18.5 parent: 2 - - uid: 31485 + - uid: 32070 components: - type: Transform pos: 22.5,49.5 parent: 2 - - uid: 31486 + - uid: 32071 components: - type: Transform pos: 32.5,51.5 parent: 2 - - uid: 31487 + - uid: 32072 components: - type: Transform pos: 18.5,48.5 parent: 2 - - uid: 31488 + - uid: 32073 components: - type: Transform pos: 19.5,48.5 parent: 2 - - uid: 31489 + - uid: 32074 components: - type: Transform pos: 18.5,47.5 parent: 2 - - uid: 31490 + - uid: 32075 components: - type: Transform pos: 19.5,49.5 parent: 2 - - uid: 31491 + - uid: 32076 components: - type: Transform pos: 32.5,50.5 parent: 2 - - uid: 31492 + - uid: 32077 components: - type: Transform pos: 21.5,49.5 parent: 2 - - uid: 31493 + - uid: 32078 components: - type: Transform pos: 17.5,47.5 parent: 2 - - uid: 31494 + - uid: 32079 components: - type: Transform pos: 17.5,48.5 parent: 2 - - uid: 31495 + - uid: 32080 components: - type: Transform pos: 18.5,49.5 parent: 2 - - uid: 31496 + - uid: 32081 components: - type: Transform pos: 47.5,45.5 parent: 2 - - uid: 31497 + - uid: 32082 components: - type: Transform pos: 27.5,49.5 parent: 2 - - uid: 31498 + - uid: 32083 components: - type: Transform pos: -59.5,14.5 parent: 2 - - uid: 31499 + - uid: 32084 components: - type: Transform pos: -60.5,14.5 parent: 2 - - uid: 31500 + - uid: 32085 components: - type: Transform pos: -61.5,14.5 parent: 2 - - uid: 31501 + - uid: 32086 components: - type: Transform pos: -63.5,14.5 parent: 2 - - uid: 31502 + - uid: 32087 components: - type: Transform pos: -65.5,19.5 parent: 2 - - uid: 31503 + - uid: 32088 components: - type: Transform pos: -64.5,19.5 parent: 2 - - uid: 31504 + - uid: 32089 components: - type: Transform pos: -63.5,19.5 parent: 2 - - uid: 31505 + - uid: 32090 components: - type: Transform pos: -63.5,20.5 parent: 2 - - uid: 31506 + - uid: 32091 components: - type: Transform pos: -63.5,21.5 parent: 2 - - uid: 31507 + - uid: 32092 components: - type: Transform pos: -63.5,23.5 parent: 2 - - uid: 31508 + - uid: 32093 components: - type: Transform pos: -62.5,19.5 parent: 2 - - uid: 31509 + - uid: 32094 components: - type: Transform pos: -62.5,20.5 parent: 2 - - uid: 31510 + - uid: 32095 components: - type: Transform pos: -62.5,21.5 parent: 2 - - uid: 31511 + - uid: 32096 components: - type: Transform pos: -111.5,38.5 parent: 2 - - uid: 31512 + - uid: 32097 components: - type: Transform pos: -61.5,19.5 parent: 2 - - uid: 31513 + - uid: 32098 components: - type: Transform pos: -61.5,21.5 parent: 2 - - uid: 31514 + - uid: 32099 components: - type: Transform pos: -61.5,22.5 parent: 2 - - uid: 31515 + - uid: 32100 components: - type: Transform pos: -60.5,19.5 parent: 2 - - uid: 31516 + - uid: 32101 components: - type: Transform pos: -60.5,22.5 parent: 2 - - uid: 31517 + - uid: 32102 components: - type: Transform pos: -110.5,38.5 parent: 2 - - uid: 31518 + - uid: 32103 components: - type: Transform pos: -59.5,19.5 parent: 2 - - uid: 31519 + - uid: 32104 components: - type: Transform pos: -59.5,20.5 parent: 2 - - uid: 31520 + - uid: 32105 components: - type: Transform pos: -59.5,21.5 parent: 2 - - uid: 31521 + - uid: 32106 components: - type: Transform pos: -59.5,22.5 parent: 2 - - uid: 31522 + - uid: 32107 components: - type: Transform pos: 27.5,48.5 parent: 2 - - uid: 31523 + - uid: 32108 components: - type: Transform pos: 28.5,49.5 parent: 2 - - uid: 31524 + - uid: 32109 components: - type: Transform pos: 27.5,47.5 parent: 2 - - uid: 31525 + - uid: 32110 components: - type: Transform pos: 28.5,48.5 parent: 2 - - uid: 31526 + - uid: 32111 components: - type: Transform pos: 23.5,49.5 parent: 2 - - uid: 31527 + - uid: 32112 components: - type: Transform pos: 24.5,49.5 parent: 2 - - uid: 31528 + - uid: 32113 components: - type: Transform pos: 26.5,49.5 parent: 2 - - uid: 31529 + - uid: 32114 components: - type: Transform pos: 28.5,45.5 parent: 2 - - uid: 31530 + - uid: 32115 components: - type: Transform pos: 26.5,48.5 parent: 2 - - uid: 31531 + - uid: 32116 components: - type: Transform pos: 25.5,49.5 parent: 2 - - uid: 31532 + - uid: 32117 components: - type: Transform pos: 25.5,48.5 parent: 2 - - uid: 31533 + - uid: 32118 components: - type: Transform pos: -49.5,23.5 parent: 2 - - uid: 31534 + - uid: 32119 components: - type: Transform pos: -48.5,23.5 parent: 2 - - uid: 31535 + - uid: 32120 components: - type: Transform pos: -61.5,26.5 parent: 2 - - uid: 31536 + - uid: 32121 components: - type: Transform pos: -61.5,25.5 parent: 2 - - uid: 31537 + - uid: 32122 components: - type: Transform pos: -61.5,24.5 parent: 2 - - uid: 31538 + - uid: 32123 components: - type: Transform pos: -60.5,26.5 parent: 2 - - uid: 31539 + - uid: 32124 components: - type: Transform pos: -60.5,25.5 parent: 2 - - uid: 31540 + - uid: 32125 components: - type: Transform pos: -60.5,24.5 parent: 2 - - uid: 31541 + - uid: 32126 components: - type: Transform pos: -59.5,26.5 parent: 2 - - uid: 31542 + - uid: 32127 components: - type: Transform pos: -59.5,25.5 parent: 2 - - uid: 31543 + - uid: 32128 components: - type: Transform pos: -58.5,26.5 parent: 2 - - uid: 31544 + - uid: 32129 components: - type: Transform pos: -58.5,25.5 parent: 2 - - uid: 31545 + - uid: 32130 components: - type: Transform pos: -58.5,24.5 parent: 2 - - uid: 31546 + - uid: 32131 components: - type: Transform pos: -56.5,26.5 parent: 2 - - uid: 31547 + - uid: 32132 components: - type: Transform pos: -55.5,26.5 parent: 2 - - uid: 31548 + - uid: 32133 components: - type: Transform pos: -53.5,26.5 parent: 2 - - uid: 31549 - components: - - type: Transform - pos: -51.5,26.5 - parent: 2 - - uid: 31550 + - uid: 32134 components: - type: Transform pos: -49.5,26.5 parent: 2 - - uid: 31551 + - uid: 32135 components: - type: Transform pos: -49.5,25.5 parent: 2 - - uid: 31552 + - uid: 32136 components: - type: Transform pos: -49.5,24.5 parent: 2 - - uid: 31553 + - uid: 32137 components: - type: Transform pos: -48.5,26.5 parent: 2 - - uid: 31554 + - uid: 32138 components: - type: Transform pos: -48.5,25.5 parent: 2 - - uid: 31555 + - uid: 32139 components: - type: Transform pos: -48.5,24.5 parent: 2 - - uid: 31556 + - uid: 32140 components: - type: Transform pos: -63.5,25.5 parent: 2 - - uid: 31557 + - uid: 32141 components: - type: Transform pos: -64.5,24.5 parent: 2 - - uid: 31558 + - uid: 32142 components: - type: Transform pos: -63.5,24.5 parent: 2 - - uid: 31559 + - uid: 32143 components: - type: Transform pos: -62.5,25.5 parent: 2 - - uid: 31560 + - uid: 32144 components: - type: Transform pos: -62.5,24.5 parent: 2 - - uid: 31561 + - uid: 32145 components: - type: Transform pos: -73.5,2.5 parent: 2 - - uid: 31562 + - uid: 32146 components: - type: Transform pos: -73.5,1.5 parent: 2 - - uid: 31563 + - uid: 32147 components: - type: Transform pos: -73.5,-0.5 parent: 2 - - uid: 31564 + - uid: 32148 components: - type: Transform pos: -73.5,-1.5 parent: 2 - - uid: 31565 + - uid: 32149 components: - type: Transform pos: -74.5,-0.5 parent: 2 - - uid: 31566 + - uid: 32150 components: - type: Transform pos: -74.5,5.5 parent: 2 - - uid: 31567 + - uid: 32151 components: - type: Transform pos: -74.5,8.5 parent: 2 - - uid: 31568 + - uid: 32152 components: - type: Transform pos: -75.5,6.5 parent: 2 - - uid: 31569 + - uid: 32153 components: - type: Transform pos: -75.5,5.5 parent: 2 - - uid: 31570 + - uid: 32154 components: - type: Transform pos: -2.5,-27.5 parent: 2 - - uid: 31571 + - uid: 32155 components: - type: Transform pos: 12.5,-31.5 parent: 2 - - uid: 31572 + - uid: 32156 components: - type: Transform pos: -2.5,-25.5 parent: 2 - - uid: 31573 + - uid: 32157 components: - type: Transform pos: 11.5,-31.5 parent: 2 - - uid: 31574 + - uid: 32158 components: - type: Transform pos: -2.5,-20.5 parent: 2 - - uid: 31575 + - uid: 32159 components: - type: Transform pos: 11.5,-32.5 parent: 2 - - uid: 31576 + - uid: 32160 components: - type: Transform pos: 3.5,-26.5 parent: 2 - - uid: 31577 + - uid: 32161 components: - type: Transform pos: -2.5,-24.5 parent: 2 - - uid: 31578 + - uid: 32162 components: - type: Transform pos: 3.5,-28.5 parent: 2 - - uid: 31579 + - uid: 32163 components: - type: Transform pos: 2.5,-27.5 parent: 2 - - uid: 31580 + - uid: 32164 components: - type: Transform pos: -1.5,-25.5 parent: 2 - - uid: 31581 + - uid: 32165 components: - type: Transform pos: -2.5,-28.5 parent: 2 - - uid: 31582 + - uid: 32166 components: - type: Transform pos: -2.5,-29.5 parent: 2 - - uid: 31583 + - uid: 32167 components: - type: Transform pos: -2.5,-26.5 parent: 2 - - uid: 31584 + - uid: 32168 components: - type: Transform pos: 20.5,-28.5 parent: 2 - - uid: 31585 + - uid: 32169 components: - type: Transform pos: -38.5,-25.5 parent: 2 - - uid: 31586 + - uid: 32170 components: - type: Transform pos: -38.5,-26.5 parent: 2 - - uid: 31587 + - uid: 32171 components: - type: Transform pos: -38.5,-27.5 parent: 2 - - uid: 31588 + - uid: 32172 components: - type: Transform pos: -37.5,-25.5 parent: 2 - - uid: 31589 + - uid: 32173 components: - type: Transform pos: -37.5,-26.5 parent: 2 - - uid: 31590 + - uid: 32174 components: - type: Transform pos: -37.5,-27.5 parent: 2 - - uid: 31591 + - uid: 32175 components: - type: Transform pos: -36.5,-27.5 parent: 2 - - uid: 31592 + - uid: 32176 components: - type: Transform pos: -35.5,-25.5 parent: 2 - - uid: 31593 + - uid: 32177 components: - type: Transform pos: -35.5,-27.5 parent: 2 - - uid: 31594 + - uid: 32178 components: - type: Transform pos: -36.5,-25.5 parent: 2 - - uid: 31595 + - uid: 32179 components: - type: Transform pos: -34.5,-27.5 parent: 2 - - uid: 31596 + - uid: 32180 components: - type: Transform pos: -33.5,-27.5 parent: 2 - - uid: 31597 + - uid: 32181 components: - type: Transform pos: -32.5,-25.5 parent: 2 - - uid: 31598 + - uid: 32182 components: - type: Transform pos: -32.5,-26.5 parent: 2 - - uid: 31599 + - uid: 32183 components: - type: Transform pos: -34.5,-29.5 parent: 2 - - uid: 31600 + - uid: 32184 components: - type: Transform pos: -25.5,-27.5 parent: 2 - - uid: 31601 + - uid: 32185 components: - type: Transform pos: -24.5,-26.5 parent: 2 - - uid: 31602 + - uid: 32186 components: - type: Transform pos: -24.5,-27.5 parent: 2 - - uid: 31603 + - uid: 32187 components: - type: Transform pos: -32.5,-27.5 parent: 2 - - uid: 31604 + - uid: 32188 components: - type: Transform pos: -33.5,-28.5 parent: 2 - - uid: 31605 + - uid: 32189 components: - type: Transform pos: -32.5,-28.5 parent: 2 - - uid: 31606 + - uid: 32190 components: - type: Transform pos: -27.5,-28.5 parent: 2 - - uid: 31607 + - uid: 32191 components: - type: Transform pos: -27.5,-29.5 parent: 2 - - uid: 31608 + - uid: 32192 components: - type: Transform pos: -26.5,-28.5 parent: 2 - - uid: 31609 + - uid: 32193 components: - type: Transform pos: -26.5,-29.5 parent: 2 - - uid: 31610 + - uid: 32194 components: - type: Transform pos: 37.5,-31.5 parent: 2 - - uid: 31611 + - uid: 32195 components: - type: Transform pos: -24.5,-28.5 parent: 2 - - uid: 31612 + - uid: 32196 components: - type: Transform pos: -23.5,-28.5 parent: 2 - - uid: 31613 + - uid: 32197 components: - type: Transform pos: -23.5,-29.5 parent: 2 - - uid: 31614 + - uid: 32198 components: - type: Transform pos: -22.5,-28.5 parent: 2 - - uid: 31615 + - uid: 32199 components: - type: Transform pos: -16.5,-29.5 parent: 2 - - uid: 31616 + - uid: 32200 components: - type: Transform pos: -59.5,27.5 parent: 2 - - uid: 31617 + - uid: 32201 components: - type: Transform pos: -59.5,28.5 parent: 2 - - uid: 31618 + - uid: 32202 components: - type: Transform pos: -59.5,29.5 parent: 2 - - uid: 31619 + - uid: 32203 components: - type: Transform pos: -58.5,27.5 parent: 2 - - uid: 31620 + - uid: 32204 components: - type: Transform pos: -58.5,28.5 parent: 2 - - uid: 31621 + - uid: 32205 components: - type: Transform pos: -58.5,29.5 parent: 2 - - uid: 31622 + - uid: 32206 components: - type: Transform pos: -57.5,27.5 parent: 2 - - uid: 31623 + - uid: 32207 components: - type: Transform pos: -57.5,28.5 parent: 2 - - uid: 31624 + - uid: 32208 components: - type: Transform pos: -57.5,29.5 parent: 2 - - uid: 31625 + - uid: 32209 components: - type: Transform pos: -56.5,27.5 parent: 2 - - uid: 31626 + - uid: 32210 components: - type: Transform pos: -56.5,28.5 parent: 2 - - uid: 31627 - components: - - type: Transform - pos: -56.5,29.5 - parent: 2 - - uid: 31628 + - uid: 32211 components: - type: Transform pos: -55.5,27.5 parent: 2 - - uid: 31629 - components: - - type: Transform - pos: -55.5,28.5 - parent: 2 - - uid: 31630 - components: - - type: Transform - pos: -55.5,29.5 - parent: 2 - - uid: 31631 + - uid: 32212 components: - type: Transform pos: -54.5,28.5 parent: 2 - - uid: 31632 + - uid: 32213 components: - type: Transform pos: -54.5,29.5 parent: 2 - - uid: 31633 - components: - - type: Transform - pos: -53.5,27.5 - parent: 2 - - uid: 31634 - components: - - type: Transform - pos: -53.5,28.5 - parent: 2 - - uid: 31635 + - uid: 32214 components: - type: Transform pos: -52.5,27.5 parent: 2 - - uid: 31636 - components: - - type: Transform - pos: -52.5,28.5 - parent: 2 - - uid: 31637 + - uid: 32215 components: - type: Transform pos: -51.5,27.5 parent: 2 - - uid: 31638 - components: - - type: Transform - pos: -51.5,28.5 - parent: 2 - - uid: 31639 + - uid: 32216 components: - type: Transform pos: -50.5,27.5 parent: 2 - - uid: 31640 + - uid: 32217 components: - type: Transform pos: -50.5,28.5 parent: 2 - - uid: 31641 + - uid: 32218 components: - type: Transform pos: -49.5,27.5 parent: 2 - - uid: 31642 + - uid: 32219 components: - type: Transform pos: -49.5,28.5 parent: 2 - - uid: 31643 + - uid: 32220 components: - type: Transform pos: -48.5,27.5 parent: 2 - - uid: 31644 + - uid: 32221 components: - type: Transform pos: -48.5,28.5 parent: 2 - - uid: 31645 + - uid: 32222 components: - type: Transform pos: -48.5,29.5 parent: 2 - - uid: 31646 + - uid: 32223 components: - type: Transform pos: -44.5,29.5 parent: 2 - - uid: 31647 + - uid: 32224 components: - type: Transform pos: -40.5,29.5 parent: 2 - - uid: 31648 + - uid: 32225 components: - type: Transform pos: -39.5,29.5 parent: 2 - - uid: 31649 + - uid: 32226 components: - type: Transform pos: -38.5,29.5 parent: 2 - - uid: 31650 + - uid: 32227 components: - type: Transform pos: -37.5,29.5 parent: 2 - - uid: 31651 + - uid: 32228 components: - type: Transform pos: -46.5,20.5 parent: 2 - - uid: 31652 + - uid: 32229 components: - type: Transform pos: -60.5,27.5 parent: 2 - - uid: 31653 + - uid: 32230 components: - type: Transform pos: -60.5,28.5 parent: 2 - - uid: 31654 + - uid: 32231 components: - type: Transform pos: -54.5,30.5 parent: 2 - - uid: 31655 + - uid: 32232 components: - type: Transform pos: -54.5,31.5 parent: 2 - - uid: 31656 + - uid: 32233 components: - type: Transform pos: -53.5,30.5 parent: 2 - - uid: 31657 + - uid: 32234 components: - type: Transform pos: -53.5,31.5 parent: 2 - - uid: 31658 + - uid: 32235 components: - type: Transform pos: -66.5,64.5 parent: 2 - - uid: 31659 + - uid: 32236 components: - type: Transform pos: -49.5,31.5 parent: 2 - - uid: 31660 + - uid: 32237 components: - type: Transform pos: -48.5,30.5 parent: 2 - - uid: 31661 + - uid: 32238 components: - type: Transform pos: -48.5,31.5 parent: 2 - - uid: 31662 + - uid: 32239 components: - type: Transform pos: -47.5,30.5 parent: 2 - - uid: 31663 + - uid: 32240 components: - type: Transform pos: -47.5,31.5 parent: 2 - - uid: 31664 + - uid: 32241 components: - type: Transform pos: -46.5,31.5 parent: 2 - - uid: 31665 + - uid: 32242 components: - type: Transform pos: -43.5,30.5 parent: 2 - - uid: 31666 + - uid: 32243 components: - type: Transform pos: -43.5,31.5 parent: 2 - - uid: 31667 + - uid: 32244 components: - type: Transform pos: -41.5,31.5 parent: 2 - - uid: 31668 + - uid: 32245 components: - type: Transform pos: -40.5,30.5 parent: 2 - - uid: 31669 + - uid: 32246 components: - type: Transform pos: -40.5,31.5 parent: 2 - - uid: 31670 + - uid: 32247 components: - type: Transform pos: -39.5,30.5 parent: 2 - - uid: 31671 + - uid: 32248 components: - type: Transform pos: -39.5,31.5 parent: 2 - - uid: 31672 - components: - - type: Transform - pos: -56.5,30.5 - parent: 2 - - uid: 31673 - components: - - type: Transform - pos: -57.5,30.5 - parent: 2 - - uid: 31674 - components: - - type: Transform - pos: -55.5,30.5 - parent: 2 - - uid: 31675 + - uid: 32249 components: - type: Transform pos: -58.5,21.5 parent: 2 - - uid: 31676 + - uid: 32250 components: - type: Transform pos: -56.5,21.5 parent: 2 - - uid: 31677 + - uid: 32251 components: - type: Transform pos: -56.5,22.5 parent: 2 - - uid: 31678 + - uid: 32252 components: - type: Transform pos: -58.5,20.5 parent: 2 - - uid: 31679 + - uid: 32253 components: - type: Transform pos: -41.5,28.5 parent: 2 - - uid: 31680 + - uid: 32254 components: - type: Transform pos: -57.5,21.5 parent: 2 - - uid: 31681 + - uid: 32255 components: - type: Transform pos: -57.5,22.5 parent: 2 - - uid: 31682 + - uid: 32256 components: - type: Transform pos: 57.5,-48.5 parent: 2 - - uid: 31683 + - uid: 32257 components: - type: Transform pos: 60.5,-52.5 parent: 2 - - uid: 31684 - components: - - type: Transform - pos: -24.5,61.5 - parent: 2 - - uid: 31685 + - uid: 32258 components: - type: Transform pos: 63.5,-54.5 parent: 2 - - uid: 31686 + - uid: 32259 components: - type: Transform - pos: -31.5,68.5 + pos: -33.5,59.5 parent: 2 - - uid: 31687 + - uid: 32260 components: - type: Transform pos: -35.5,42.5 parent: 2 - - uid: 31688 + - uid: 32261 components: - type: Transform pos: -36.5,42.5 parent: 2 - - uid: 31689 + - uid: 32262 components: - type: Transform pos: -37.5,42.5 parent: 2 - - uid: 31690 + - uid: 32263 components: - type: Transform pos: -38.5,42.5 parent: 2 - - uid: 31691 + - uid: 32264 components: - type: Transform pos: -39.5,42.5 parent: 2 - - uid: 31692 + - uid: 32265 components: - type: Transform pos: -40.5,42.5 parent: 2 - - uid: 31693 + - uid: 32266 components: - type: Transform pos: -41.5,41.5 parent: 2 - - uid: 31694 + - uid: 32267 components: - type: Transform pos: -41.5,42.5 parent: 2 - - uid: 31695 + - uid: 32268 components: - type: Transform pos: -42.5,39.5 parent: 2 - - uid: 31696 + - uid: 32269 components: - type: Transform pos: -42.5,40.5 parent: 2 - - uid: 31697 + - uid: 32270 components: - type: Transform pos: -42.5,41.5 parent: 2 - - uid: 31698 + - uid: 32271 components: - type: Transform pos: -42.5,42.5 parent: 2 - - uid: 31699 + - uid: 32272 components: - type: Transform pos: -43.5,41.5 parent: 2 - - uid: 31700 + - uid: 32273 components: - type: Transform pos: -43.5,42.5 parent: 2 - - uid: 31701 + - uid: 32274 components: - type: Transform pos: -44.5,40.5 parent: 2 - - uid: 31702 + - uid: 32275 components: - type: Transform pos: -44.5,41.5 parent: 2 - - uid: 31703 + - uid: 32276 components: - type: Transform pos: -44.5,42.5 parent: 2 - - uid: 31704 + - uid: 32277 components: - type: Transform pos: -45.5,39.5 parent: 2 - - uid: 31705 + - uid: 32278 components: - type: Transform pos: -45.5,40.5 parent: 2 - - uid: 31706 + - uid: 32279 components: - type: Transform pos: -45.5,41.5 parent: 2 - - uid: 31707 + - uid: 32280 components: - type: Transform pos: -45.5,42.5 parent: 2 - - uid: 31708 + - uid: 32281 components: - type: Transform pos: -46.5,39.5 parent: 2 - - uid: 31709 + - uid: 32282 components: - type: Transform pos: -46.5,40.5 parent: 2 - - uid: 31710 + - uid: 32283 components: - type: Transform pos: -46.5,41.5 parent: 2 - - uid: 31711 + - uid: 32284 components: - type: Transform pos: -46.5,42.5 parent: 2 - - uid: 31712 + - uid: 32285 components: - type: Transform pos: -47.5,39.5 parent: 2 - - uid: 31713 + - uid: 32286 components: - type: Transform pos: -47.5,40.5 parent: 2 - - uid: 31714 + - uid: 32287 components: - type: Transform pos: -41.5,40.5 parent: 2 - - uid: 31715 + - uid: 32288 components: - type: Transform pos: -37.5,41.5 parent: 2 - - uid: 31716 + - uid: 32289 components: - type: Transform pos: -40.5,41.5 parent: 2 - - uid: 31717 + - uid: 32290 components: - type: Transform pos: -39.5,41.5 parent: 2 - - uid: 31718 + - uid: 32291 components: - type: Transform pos: -32.5,42.5 parent: 2 - - uid: 31719 + - uid: 32292 components: - type: Transform pos: -38.5,41.5 parent: 2 - - uid: 31720 - components: - - type: Transform - pos: -26.5,61.5 - parent: 2 - - uid: 31721 - components: - - type: Transform - pos: -25.5,61.5 - parent: 2 - - uid: 31722 + - uid: 32293 components: - type: Transform pos: 84.5,-30.5 parent: 2 - - uid: 31723 + - uid: 32294 components: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 31724 + - uid: 32295 components: - type: Transform pos: 62.5,-51.5 parent: 2 - - uid: 31725 + - uid: 32296 components: - type: Transform pos: -47.5,38.5 parent: 2 - - uid: 31726 + - uid: 32297 components: - type: Transform pos: -53.5,34.5 parent: 2 - - uid: 31727 + - uid: 32298 components: - type: Transform pos: -45.5,32.5 parent: 2 - - uid: 31728 + - uid: 32299 components: - type: Transform pos: -78.5,36.5 parent: 2 - - uid: 31729 + - uid: 32300 components: - type: Transform pos: -46.5,32.5 parent: 2 - - uid: 31730 + - uid: 32301 components: - type: Transform pos: -47.5,33.5 parent: 2 - - uid: 31731 + - uid: 32302 components: - type: Transform pos: -47.5,32.5 parent: 2 - - uid: 31732 + - uid: 32303 components: - type: Transform pos: -48.5,40.5 parent: 2 - - uid: 31733 + - uid: 32304 components: - type: Transform pos: -48.5,39.5 parent: 2 - - uid: 31734 + - uid: 32305 components: - type: Transform pos: -48.5,38.5 parent: 2 - - uid: 31735 + - uid: 32306 components: - type: Transform pos: -52.5,34.5 parent: 2 - - uid: 31736 + - uid: 32307 components: - type: Transform pos: -61.5,41.5 parent: 2 - - uid: 31737 + - uid: 32308 components: - type: Transform pos: -48.5,33.5 parent: 2 - - uid: 31738 + - uid: 32309 components: - type: Transform pos: -48.5,32.5 parent: 2 - - uid: 31739 + - uid: 32310 components: - type: Transform pos: -49.5,41.5 parent: 2 - - uid: 31740 + - uid: 32311 components: - type: Transform pos: -49.5,40.5 parent: 2 - - uid: 31741 + - uid: 32312 components: - type: Transform pos: -49.5,39.5 parent: 2 - - uid: 31742 + - uid: 32313 components: - type: Transform pos: -49.5,38.5 parent: 2 - - uid: 31743 + - uid: 32314 components: - type: Transform pos: -51.5,34.5 parent: 2 - - uid: 31744 - components: - - type: Transform - pos: -50.5,34.5 - parent: 2 - - uid: 31745 + - uid: 32315 components: - type: Transform pos: -62.5,40.5 parent: 2 - - uid: 31746 + - uid: 32316 components: - type: Transform pos: -49.5,34.5 parent: 2 - - uid: 31747 + - uid: 32317 components: - type: Transform pos: -49.5,33.5 parent: 2 - - uid: 31748 + - uid: 32318 components: - type: Transform pos: -49.5,32.5 parent: 2 - - uid: 31749 + - uid: 32319 components: - type: Transform pos: -50.5,41.5 parent: 2 - - uid: 31750 + - uid: 32320 components: - type: Transform pos: -50.5,40.5 parent: 2 - - uid: 31751 + - uid: 32321 components: - type: Transform pos: -53.5,37.5 parent: 2 - - uid: 31752 + - uid: 32322 components: - type: Transform pos: -49.5,37.5 parent: 2 - - uid: 31753 + - uid: 32323 components: - type: Transform pos: -50.5,37.5 parent: 2 - - uid: 31754 - components: - - type: Transform - pos: -50.5,33.5 - parent: 2 - - uid: 31755 - components: - - type: Transform - pos: -50.5,32.5 - parent: 2 - - uid: 31756 + - uid: 32324 components: - type: Transform pos: -51.5,41.5 parent: 2 - - uid: 31757 + - uid: 32325 components: - type: Transform pos: -51.5,40.5 parent: 2 - - uid: 31758 + - uid: 32326 components: - type: Transform pos: -51.5,39.5 parent: 2 - - uid: 31759 + - uid: 32327 components: - type: Transform pos: -73.5,41.5 parent: 2 - - uid: 31760 + - uid: 32328 components: - type: Transform pos: -62.5,41.5 parent: 2 - - uid: 31761 + - uid: 32329 components: - type: Transform pos: -48.5,37.5 parent: 2 - - uid: 31762 - components: - - type: Transform - pos: -51.5,33.5 - parent: 2 - - uid: 31763 - components: - - type: Transform - pos: -51.5,32.5 - parent: 2 - - uid: 31764 - components: - - type: Transform - pos: -52.5,41.5 - parent: 2 - - uid: 31765 + - uid: 32330 components: - type: Transform pos: -52.5,40.5 parent: 2 - - uid: 31766 + - uid: 32331 components: - type: Transform pos: -52.5,39.5 parent: 2 - - uid: 31767 - components: - - type: Transform - pos: -55.5,40.5 - parent: 2 - - uid: 31768 + - uid: 32332 components: - type: Transform pos: -60.5,40.5 parent: 2 - - uid: 31769 - components: - - type: Transform - pos: -52.5,33.5 - parent: 2 - - uid: 31770 - components: - - type: Transform - pos: -52.5,32.5 - parent: 2 - - uid: 31771 - components: - - type: Transform - pos: -53.5,41.5 - parent: 2 - - uid: 31772 + - uid: 32333 components: - type: Transform pos: -53.5,40.5 parent: 2 - - uid: 31773 + - uid: 32334 components: - type: Transform pos: -53.5,39.5 parent: 2 - - uid: 31774 + - uid: 32335 components: - type: Transform pos: -53.5,38.5 parent: 2 - - uid: 31775 - components: - - type: Transform - pos: -58.5,41.5 - parent: 2 - - uid: 31776 + - uid: 32336 components: - type: Transform pos: -57.5,40.5 parent: 2 - - uid: 31777 + - uid: 32337 components: - type: Transform pos: -61.5,40.5 parent: 2 - - uid: 31778 + - uid: 32338 components: - type: Transform pos: -53.5,33.5 parent: 2 - - uid: 31779 - components: - - type: Transform - pos: -53.5,32.5 - parent: 2 - - uid: 31780 + - uid: 32339 components: - type: Transform pos: -54.5,41.5 parent: 2 - - uid: 31781 + - uid: 32340 components: - type: Transform pos: -54.5,40.5 parent: 2 - - uid: 31782 + - uid: 32341 components: - type: Transform pos: -54.5,39.5 parent: 2 - - uid: 31783 + - uid: 32342 components: - type: Transform pos: -54.5,38.5 parent: 2 - - uid: 31784 + - uid: 32343 components: - type: Transform pos: -59.5,41.5 parent: 2 - - uid: 31785 + - uid: 32344 components: - type: Transform pos: -58.5,40.5 parent: 2 - - uid: 31786 + - uid: 32345 components: - type: Transform pos: -60.5,41.5 parent: 2 - - uid: 31787 + - uid: 32346 components: - type: Transform pos: -59.5,40.5 parent: 2 - - uid: 31788 + - uid: 32347 components: - type: Transform pos: -54.5,33.5 parent: 2 - - uid: 31789 + - uid: 32348 components: - type: Transform pos: -54.5,32.5 parent: 2 - - uid: 31790 + - uid: 32349 components: - type: Transform pos: -63.5,40.5 parent: 2 - - uid: 31791 + - uid: 32350 components: - type: Transform pos: -78.5,37.5 parent: 2 - - uid: 31792 + - uid: 32351 components: - type: Transform pos: -64.5,40.5 parent: 2 - - uid: 31793 + - uid: 32352 components: - type: Transform pos: -59.5,47.5 parent: 2 - - uid: 31794 + - uid: 32353 components: - type: Transform pos: -55.5,32.5 parent: 2 - - uid: 31795 - components: - - type: Transform - pos: -55.5,31.5 - parent: 2 - - uid: 31796 + - uid: 32354 components: - type: Transform pos: -56.5,32.5 parent: 2 - - uid: 31797 - components: - - type: Transform - pos: -56.5,31.5 - parent: 2 - - uid: 31798 + - uid: 32355 components: - type: Transform pos: -74.5,33.5 parent: 2 - - uid: 31799 + - uid: 32356 components: - type: Transform pos: -58.5,45.5 parent: 2 - - uid: 31800 + - uid: 32357 components: - type: Transform pos: -57.5,31.5 parent: 2 - - uid: 31801 + - uid: 32358 components: - type: Transform pos: -58.5,31.5 parent: 2 - - uid: 31802 + - uid: 32359 components: - type: Transform pos: -58.5,47.5 parent: 2 - - uid: 31803 - components: - - type: Transform - pos: -58.5,48.5 - parent: 2 - - uid: 31804 - components: - - type: Transform - pos: -57.5,48.5 - parent: 2 - - uid: 31805 + - uid: 32360 components: - type: Transform pos: -60.5,31.5 parent: 2 - - uid: 31806 + - uid: 32361 components: - type: Transform pos: -59.5,46.5 parent: 2 - - uid: 31807 + - uid: 32362 components: - type: Transform pos: -61.5,32.5 parent: 2 - - uid: 31808 + - uid: 32363 components: - type: Transform pos: -61.5,31.5 parent: 2 - - uid: 31809 + - uid: 32364 components: - type: Transform pos: -62.5,33.5 parent: 2 - - uid: 31810 + - uid: 32365 components: - type: Transform pos: -62.5,32.5 parent: 2 - - uid: 31811 + - uid: 32366 components: - type: Transform pos: -62.5,31.5 parent: 2 - - uid: 31812 + - uid: 32367 components: - type: Transform pos: -66.5,33.5 parent: 2 - - uid: 31813 + - uid: 32368 components: - type: Transform pos: -66.5,32.5 parent: 2 - - uid: 31814 + - uid: 32369 components: - type: Transform pos: -66.5,31.5 parent: 2 - - uid: 31815 + - uid: 32370 components: - type: Transform pos: -66.5,30.5 parent: 2 - - uid: 31816 + - uid: 32371 components: - type: Transform pos: -66.5,29.5 parent: 2 - - uid: 31817 + - uid: 32372 components: - type: Transform pos: -66.5,28.5 parent: 2 - - uid: 31818 + - uid: 32373 components: - type: Transform pos: -66.5,27.5 parent: 2 - - uid: 31819 + - uid: 32374 components: - type: Transform pos: -66.5,26.5 parent: 2 - - uid: 31820 + - uid: 32375 components: - type: Transform pos: -66.5,25.5 parent: 2 - - uid: 31821 + - uid: 32376 components: - type: Transform pos: -66.5,24.5 parent: 2 - - uid: 31822 + - uid: 32377 components: - type: Transform pos: -62.5,29.5 parent: 2 - - uid: 31823 + - uid: 32378 components: - type: Transform pos: -62.5,30.5 parent: 2 - - uid: 31824 + - uid: 32379 components: - type: Transform pos: -62.5,28.5 parent: 2 - - uid: 31825 + - uid: 32380 components: - type: Transform pos: -62.5,27.5 parent: 2 - - uid: 31826 + - uid: 32381 components: - type: Transform pos: -62.5,26.5 parent: 2 - - uid: 31827 + - uid: 32382 components: - type: Transform pos: -61.5,30.5 parent: 2 - - uid: 31828 + - uid: 32383 components: - type: Transform pos: -61.5,29.5 parent: 2 - - uid: 31829 + - uid: 32384 components: - type: Transform pos: -61.5,28.5 parent: 2 - - uid: 31830 + - uid: 32385 components: - type: Transform pos: -61.5,27.5 parent: 2 - - uid: 31831 + - uid: 32386 components: - type: Transform pos: -60.5,29.5 parent: 2 - - uid: 31832 + - uid: 32387 components: - type: Transform pos: -58.5,30.5 parent: 2 - - uid: 31833 + - uid: 32388 components: - type: Transform pos: -55.5,38.5 parent: 2 - - uid: 31834 + - uid: 32389 components: - type: Transform pos: -56.5,38.5 parent: 2 - - uid: 31835 + - uid: 32390 components: - type: Transform pos: -57.5,38.5 parent: 2 - - uid: 31836 + - uid: 32391 components: - type: Transform pos: -60.5,45.5 parent: 2 - - uid: 31837 + - uid: 32392 components: - type: Transform pos: -60.5,47.5 parent: 2 - - uid: 31838 + - uid: 32393 components: - type: Transform pos: -60.5,46.5 parent: 2 - - uid: 31839 - components: - - type: Transform - pos: -59.5,45.5 - parent: 2 - - uid: 31840 + - uid: 32394 components: - type: Transform pos: -63.5,38.5 parent: 2 - - uid: 31841 + - uid: 32395 components: - type: Transform pos: -73.5,42.5 parent: 2 - - uid: 31842 + - uid: 32396 components: - type: Transform pos: -73.5,43.5 parent: 2 - - uid: 31843 + - uid: 32397 components: - type: Transform pos: -68.5,40.5 parent: 2 - - uid: 31844 + - uid: 32398 components: - type: Transform pos: -68.5,41.5 parent: 2 - - uid: 31845 + - uid: 32399 components: - type: Transform pos: -36.5,-59.5 parent: 2 - - uid: 31846 + - uid: 32400 components: - type: Transform pos: -36.5,-58.5 parent: 2 - - uid: 31847 + - uid: 32401 components: - type: Transform pos: -68.5,44.5 parent: 2 - - uid: 31848 + - uid: 32402 components: - type: Transform pos: -64.5,42.5 parent: 2 - - uid: 31849 + - uid: 32403 components: - type: Transform pos: -64.5,43.5 parent: 2 - - uid: 31850 + - uid: 32404 components: - type: Transform pos: -64.5,44.5 parent: 2 - - uid: 31851 + - uid: 32405 components: - type: Transform pos: -79.5,42.5 parent: 2 - - uid: 31852 + - uid: 32406 components: - type: Transform pos: -62.5,43.5 parent: 2 - - uid: 31853 + - uid: 32407 components: - type: Transform pos: -62.5,44.5 parent: 2 - - uid: 31854 - components: - - type: Transform - pos: -79.5,41.5 - parent: 2 - - uid: 31855 - components: - - type: Transform - pos: -79.5,40.5 - parent: 2 - - uid: 31856 + - uid: 32408 components: - type: Transform pos: -61.5,44.5 parent: 2 - - uid: 31857 + - uid: 32409 components: - type: Transform pos: -60.5,42.5 parent: 2 - - uid: 31858 - components: - - type: Transform - pos: -79.5,39.5 - parent: 2 - - uid: 31859 + - uid: 32410 components: - type: Transform pos: -60.5,44.5 parent: 2 - - uid: 31860 - components: - - type: Transform - pos: -59.5,42.5 - parent: 2 - - uid: 31861 - components: - - type: Transform - pos: -79.5,38.5 - parent: 2 - - uid: 31862 + - uid: 32411 components: - type: Transform pos: -59.5,44.5 parent: 2 - - uid: 31863 - components: - - type: Transform - pos: -58.5,42.5 - parent: 2 - - uid: 31864 + - uid: 32412 components: - type: Transform pos: -79.5,37.5 parent: 2 - - uid: 31865 + - uid: 32413 components: - type: Transform pos: -79.5,36.5 parent: 2 - - uid: 31866 + - uid: 32414 components: - type: Transform pos: -79.5,34.5 parent: 2 - - uid: 31867 + - uid: 32415 components: - type: Transform pos: -79.5,35.5 parent: 2 - - uid: 31868 + - uid: 32416 components: - type: Transform pos: -79.5,33.5 parent: 2 - - uid: 31869 + - uid: 32417 components: - type: Transform pos: -78.5,34.5 parent: 2 - - uid: 31870 + - uid: 32418 components: - type: Transform pos: -77.5,33.5 parent: 2 - - uid: 31871 + - uid: 32419 components: - type: Transform pos: -77.5,34.5 parent: 2 - - uid: 31872 + - uid: 32420 components: - type: Transform pos: -54.5,42.5 parent: 2 - - uid: 31873 - components: - - type: Transform - pos: -54.5,43.5 - parent: 2 - - uid: 31874 - components: - - type: Transform - pos: -53.5,42.5 - parent: 2 - - uid: 31875 - components: - - type: Transform - pos: -53.5,43.5 - parent: 2 - - uid: 31876 - components: - - type: Transform - pos: -53.5,44.5 - parent: 2 - - uid: 31877 + - uid: 32421 components: - type: Transform pos: -52.5,42.5 parent: 2 - - uid: 31878 + - uid: 32422 components: - type: Transform pos: -52.5,43.5 parent: 2 - - uid: 31879 + - uid: 32423 components: - type: Transform pos: -52.5,44.5 parent: 2 - - uid: 31880 + - uid: 32424 components: - type: Transform pos: -51.5,42.5 parent: 2 - - uid: 31881 - components: - - type: Transform - pos: -51.5,43.5 - parent: 2 - - uid: 31882 + - uid: 32425 components: - type: Transform pos: -51.5,44.5 parent: 2 - - uid: 31883 + - uid: 32426 components: - type: Transform pos: -50.5,42.5 parent: 2 - - uid: 31884 - components: - - type: Transform - pos: -50.5,43.5 - parent: 2 - - uid: 31885 + - uid: 32427 components: - type: Transform pos: -50.5,44.5 parent: 2 - - uid: 31886 + - uid: 32428 components: - type: Transform pos: -49.5,43.5 parent: 2 - - uid: 31887 + - uid: 32429 components: - type: Transform pos: -49.5,44.5 parent: 2 - - uid: 31888 + - uid: 32430 components: - type: Transform pos: -63.5,44.5 parent: 2 - - uid: 31889 + - uid: 32431 components: - type: Transform pos: -63.5,43.5 parent: 2 - - uid: 31890 + - uid: 32432 components: - type: Transform pos: -78.5,35.5 parent: 2 - - uid: 31891 + - uid: 32433 components: - type: Transform pos: -64.5,39.5 parent: 2 - - uid: 31892 + - uid: 32434 components: - type: Transform pos: -64.5,38.5 parent: 2 - - uid: 31893 + - uid: 32435 components: - type: Transform pos: -63.5,39.5 parent: 2 - - uid: 31894 + - uid: 32436 components: - type: Transform pos: -62.5,39.5 parent: 2 - - uid: 31895 + - uid: 32437 components: - type: Transform pos: -61.5,39.5 parent: 2 - - uid: 31896 + - uid: 32438 components: - type: Transform pos: -60.5,39.5 parent: 2 - - uid: 31897 + - uid: 32439 components: - type: Transform pos: -59.5,39.5 parent: 2 - - uid: 31898 + - uid: 32440 components: - type: Transform pos: -58.5,39.5 parent: 2 - - uid: 31899 + - uid: 32441 components: - type: Transform pos: -57.5,39.5 parent: 2 - - uid: 31900 + - uid: 32442 components: - type: Transform pos: -56.5,39.5 parent: 2 - - uid: 31901 + - uid: 32443 components: - type: Transform pos: -55.5,39.5 parent: 2 - - uid: 31902 + - uid: 32444 components: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 31903 + - uid: 32445 components: - type: Transform pos: -68.5,33.5 parent: 2 - - uid: 31904 + - uid: 32446 components: - type: Transform pos: -68.5,34.5 parent: 2 - - uid: 31905 + - uid: 32447 components: - type: Transform pos: -69.5,35.5 parent: 2 - - uid: 31906 + - uid: 32448 components: - type: Transform pos: -69.5,36.5 parent: 2 - - uid: 31907 + - uid: 32449 components: - type: Transform pos: -69.5,37.5 parent: 2 - - uid: 31908 + - uid: 32450 components: - type: Transform pos: -68.5,37.5 parent: 2 - - uid: 31909 + - uid: 32451 components: - type: Transform pos: -67.5,34.5 parent: 2 - - uid: 31910 + - uid: 32452 components: - type: Transform pos: -68.5,35.5 parent: 2 - - uid: 31911 + - uid: 32453 components: - type: Transform pos: -65.5,24.5 parent: 2 - - uid: 31912 + - uid: 32454 components: - type: Transform pos: -65.5,25.5 parent: 2 - - uid: 31913 + - uid: 32455 components: - type: Transform pos: -65.5,27.5 parent: 2 - - uid: 31914 + - uid: 32456 components: - type: Transform pos: -65.5,28.5 parent: 2 - - uid: 31915 + - uid: 32457 components: - type: Transform pos: -65.5,26.5 parent: 2 - - uid: 31916 + - uid: 32458 components: - type: Transform pos: -67.5,24.5 parent: 2 - - uid: 31917 + - uid: 32459 components: - type: Transform pos: -67.5,25.5 parent: 2 - - uid: 31918 + - uid: 32460 components: - type: Transform pos: -67.5,26.5 parent: 2 - - uid: 31919 + - uid: 32461 components: - type: Transform pos: -67.5,27.5 parent: 2 - - uid: 31920 + - uid: 32462 components: - type: Transform pos: -67.5,28.5 parent: 2 - - uid: 31921 + - uid: 32463 components: - type: Transform pos: -67.5,29.5 parent: 2 - - uid: 31922 + - uid: 32464 components: - type: Transform pos: -67.5,30.5 parent: 2 - - uid: 31923 + - uid: 32465 components: - type: Transform pos: -67.5,31.5 parent: 2 - - uid: 31924 + - uid: 32466 components: - type: Transform pos: -67.5,32.5 parent: 2 - - uid: 31925 + - uid: 32467 components: - type: Transform pos: 88.5,10.5 parent: 2 - - uid: 31926 + - uid: 32468 components: - type: Transform pos: -68.5,29.5 parent: 2 - - uid: 31927 + - uid: 32469 components: - type: Transform pos: -68.5,30.5 parent: 2 - - uid: 31928 + - uid: 32470 components: - type: Transform pos: -68.5,31.5 parent: 2 - - uid: 31929 + - uid: 32471 components: - type: Transform pos: -68.5,32.5 parent: 2 - - uid: 31930 + - uid: 32472 components: - type: Transform pos: -69.5,22.5 parent: 2 - - uid: 31931 + - uid: 32473 components: - type: Transform pos: 87.5,10.5 parent: 2 - - uid: 31932 + - uid: 32474 components: - type: Transform pos: 89.5,10.5 parent: 2 - - uid: 31933 + - uid: 32475 components: - type: Transform pos: -67.5,61.5 parent: 2 - - uid: 31934 + - uid: 32476 components: - type: Transform pos: -69.5,30.5 parent: 2 - - uid: 31935 + - uid: 32477 components: - type: Transform pos: -69.5,31.5 parent: 2 - - uid: 31936 + - uid: 32478 components: - type: Transform pos: -69.5,32.5 parent: 2 - - uid: 31937 + - uid: 32479 components: - type: Transform pos: -69.5,33.5 parent: 2 - - uid: 31938 + - uid: 32480 components: - type: Transform pos: -69.5,34.5 parent: 2 - - uid: 31939 + - uid: 32481 components: - type: Transform pos: -69.5,21.5 parent: 2 - - uid: 31940 + - uid: 32482 components: - type: Transform pos: -70.5,20.5 parent: 2 - - uid: 31941 + - uid: 32483 components: - type: Transform pos: -70.5,21.5 parent: 2 - - uid: 31942 + - uid: 32484 components: - type: Transform pos: -70.5,22.5 parent: 2 - - uid: 31943 + - uid: 32485 components: - type: Transform pos: -70.5,29.5 parent: 2 - - uid: 31944 + - uid: 32486 components: - type: Transform pos: -70.5,30.5 parent: 2 - - uid: 31945 + - uid: 32487 components: - type: Transform pos: -70.5,31.5 parent: 2 - - uid: 31946 + - uid: 32488 components: - type: Transform pos: -70.5,34.5 parent: 2 - - uid: 31947 + - uid: 32489 components: - type: Transform pos: -70.5,35.5 parent: 2 - - uid: 31948 + - uid: 32490 components: - type: Transform pos: -70.5,36.5 parent: 2 - - uid: 31949 + - uid: 32491 components: - type: Transform pos: -71.5,20.5 parent: 2 - - uid: 31950 + - uid: 32492 components: - type: Transform pos: -71.5,29.5 parent: 2 - - uid: 31951 + - uid: 32493 components: - type: Transform pos: -71.5,30.5 parent: 2 - - uid: 31952 + - uid: 32494 components: - type: Transform pos: -71.5,33.5 parent: 2 - - uid: 31953 + - uid: 32495 components: - type: Transform pos: -71.5,34.5 parent: 2 - - uid: 31954 + - uid: 32496 components: - type: Transform pos: -72.5,20.5 parent: 2 - - uid: 31955 + - uid: 32497 components: - type: Transform pos: -72.5,23.5 parent: 2 - - uid: 31956 + - uid: 32498 components: - type: Transform pos: -72.5,27.5 parent: 2 - - uid: 31957 + - uid: 32499 components: - type: Transform pos: -72.5,28.5 parent: 2 - - uid: 31958 + - uid: 32500 components: - type: Transform pos: -72.5,29.5 parent: 2 - - uid: 31959 + - uid: 32501 components: - type: Transform pos: -72.5,30.5 parent: 2 - - uid: 31960 + - uid: 32502 components: - type: Transform pos: -72.5,32.5 parent: 2 - - uid: 31961 + - uid: 32503 components: - type: Transform pos: -72.5,33.5 parent: 2 - - uid: 31962 + - uid: 32504 components: - type: Transform pos: -72.5,34.5 parent: 2 - - uid: 31963 + - uid: 32505 components: - type: Transform pos: -72.5,35.5 parent: 2 - - uid: 31964 - components: - - type: Transform - pos: -72.5,16.5 - parent: 2 - - uid: 31965 + - uid: 32506 components: - type: Transform pos: -72.5,14.5 parent: 2 - - uid: 31966 + - uid: 32507 components: - type: Transform pos: -72.5,13.5 parent: 2 - - uid: 31967 + - uid: 32508 components: - type: Transform pos: -71.5,19.5 parent: 2 - - uid: 31968 - components: - - type: Transform - pos: -71.5,17.5 - parent: 2 - - uid: 31969 + - uid: 32509 components: - type: Transform pos: -74.5,28.5 parent: 2 - - uid: 31970 + - uid: 32510 components: - type: Transform pos: -73.5,28.5 parent: 2 - - uid: 31971 + - uid: 32511 components: - type: Transform pos: -73.5,29.5 parent: 2 - - uid: 31972 + - uid: 32512 components: - type: Transform pos: -73.5,30.5 parent: 2 - - uid: 31973 + - uid: 32513 components: - type: Transform pos: -73.5,32.5 parent: 2 - - uid: 31974 + - uid: 32514 components: - type: Transform pos: -73.5,33.5 parent: 2 - - uid: 31975 + - uid: 32515 components: - type: Transform pos: -73.5,34.5 parent: 2 - - uid: 31976 + - uid: 32516 components: - type: Transform pos: -74.5,43.5 parent: 2 - - uid: 31977 + - uid: 32517 components: - type: Transform pos: -71.5,39.5 parent: 2 - - uid: 31978 + - uid: 32518 components: - type: Transform pos: -71.5,40.5 parent: 2 - - uid: 31979 + - uid: 32519 components: - type: Transform pos: -71.5,41.5 parent: 2 - - uid: 31980 + - uid: 32520 components: - type: Transform pos: -71.5,42.5 parent: 2 - - uid: 31981 + - uid: 32521 components: - type: Transform pos: -74.5,42.5 parent: 2 - - uid: 31982 + - uid: 32522 components: - type: Transform pos: -70.5,39.5 parent: 2 - - uid: 31983 + - uid: 32523 components: - type: Transform pos: -70.5,40.5 parent: 2 - - uid: 31984 + - uid: 32524 components: - type: Transform pos: -72.5,46.5 parent: 2 - - uid: 31985 + - uid: 32525 components: - type: Transform pos: -35.5,-58.5 parent: 2 - - uid: 31986 + - uid: 32526 components: - type: Transform pos: -74.5,41.5 parent: 2 - - uid: 31987 + - uid: 32527 components: - type: Transform pos: -69.5,39.5 parent: 2 - - uid: 31988 + - uid: 32528 components: - type: Transform pos: -37.5,-59.5 parent: 2 - - uid: 31989 + - uid: 32529 components: - type: Transform pos: -78.5,33.5 parent: 2 - - uid: 31990 + - uid: 32530 components: - type: Transform pos: -72.5,41.5 parent: 2 - - uid: 31991 + - uid: 32531 components: - type: Transform pos: -56.5,48.5 parent: 2 - - uid: 31992 + - uid: 32532 components: - type: Transform pos: -74.5,34.5 parent: 2 - - uid: 31993 + - uid: 32533 components: - type: Transform pos: -72.5,42.5 parent: 2 - - uid: 31994 + - uid: 32534 components: - type: Transform pos: -55.5,47.5 parent: 2 - - uid: 31995 + - uid: 32535 components: - type: Transform pos: -55.5,48.5 parent: 2 - - uid: 31996 + - uid: 32536 components: - type: Transform pos: -75.5,33.5 parent: 2 - - uid: 31997 + - uid: 32537 components: - type: Transform pos: -54.5,46.5 parent: 2 - - uid: 31998 + - uid: 32538 components: - type: Transform pos: -54.5,47.5 parent: 2 - - uid: 31999 + - uid: 32539 components: - type: Transform pos: -54.5,48.5 parent: 2 - - uid: 32000 + - uid: 32540 components: - type: Transform pos: -53.5,47.5 parent: 2 - - uid: 32001 + - uid: 32541 components: - type: Transform pos: -53.5,46.5 parent: 2 - - uid: 32002 + - uid: 32542 components: - type: Transform pos: -53.5,45.5 parent: 2 - - uid: 32003 + - uid: 32543 components: - type: Transform pos: -52.5,46.5 parent: 2 - - uid: 32004 + - uid: 32544 components: - type: Transform pos: -52.5,45.5 parent: 2 - - uid: 32005 + - uid: 32545 components: - type: Transform pos: -48.5,55.5 parent: 2 - - uid: 32006 + - uid: 32546 components: - type: Transform pos: -51.5,46.5 parent: 2 - - uid: 32007 + - uid: 32547 components: - type: Transform pos: -51.5,45.5 parent: 2 - - uid: 32008 + - uid: 32548 components: - type: Transform pos: -47.5,55.5 parent: 2 - - uid: 32009 + - uid: 32549 components: - type: Transform pos: -50.5,54.5 parent: 2 - - uid: 32010 + - uid: 32550 components: - type: Transform pos: -50.5,45.5 parent: 2 - - uid: 32011 + - uid: 32551 components: - type: Transform pos: -49.5,45.5 parent: 2 - - uid: 32012 + - uid: 32552 components: - type: Transform pos: -50.5,55.5 parent: 2 - - uid: 32013 + - uid: 32553 components: - type: Transform pos: -48.5,45.5 parent: 2 - - uid: 32014 + - uid: 32554 components: - type: Transform pos: -48.5,56.5 parent: 2 - - uid: 32015 + - uid: 32555 components: - type: Transform pos: -51.5,55.5 parent: 2 - - uid: 32016 + - uid: 32556 components: - type: Transform pos: -51.5,54.5 parent: 2 - - uid: 32017 + - uid: 32557 components: - type: Transform pos: -49.5,55.5 parent: 2 - - uid: 32018 + - uid: 32558 components: - type: Transform pos: -47.5,56.5 parent: 2 - - uid: 32019 + - uid: 32559 components: - type: Transform pos: 50.5,-45.5 parent: 2 - - uid: 32020 + - uid: 32560 components: - type: Transform pos: -69.5,45.5 parent: 2 - - uid: 32021 + - uid: 32561 components: - type: Transform pos: -69.5,46.5 parent: 2 - - uid: 32022 + - uid: 32562 components: - type: Transform pos: -69.5,48.5 parent: 2 - - uid: 32023 + - uid: 32563 components: - type: Transform pos: -69.5,49.5 parent: 2 - - uid: 32024 + - uid: 32564 components: - type: Transform pos: -69.5,50.5 parent: 2 - - uid: 32025 + - uid: 32565 components: - type: Transform pos: -34.5,-58.5 parent: 2 - - uid: 32026 + - uid: 32566 components: - type: Transform pos: -70.5,45.5 parent: 2 - - uid: 32027 + - uid: 32567 components: - type: Transform pos: -35.5,-57.5 parent: 2 - - uid: 32028 + - uid: 32568 components: - type: Transform pos: -70.5,48.5 parent: 2 - - uid: 32029 + - uid: 32569 components: - type: Transform pos: -70.5,49.5 parent: 2 - - uid: 32030 + - uid: 32570 components: - type: Transform pos: -70.5,50.5 parent: 2 - - uid: 32031 + - uid: 32571 components: - type: Transform pos: -71.5,48.5 parent: 2 - - uid: 32032 + - uid: 32572 components: - type: Transform pos: -71.5,49.5 parent: 2 - - uid: 32033 + - uid: 32573 components: - type: Transform pos: -71.5,50.5 parent: 2 - - uid: 32034 + - uid: 32574 components: - type: Transform pos: -72.5,47.5 parent: 2 - - uid: 32035 + - uid: 32575 components: - type: Transform pos: -72.5,48.5 parent: 2 - - uid: 32036 + - uid: 32576 components: - type: Transform pos: -72.5,49.5 parent: 2 - - uid: 32037 + - uid: 32577 components: - type: Transform pos: -73.5,46.5 parent: 2 - - uid: 32038 + - uid: 32578 components: - type: Transform pos: -73.5,47.5 parent: 2 - - uid: 32039 + - uid: 32579 components: - type: Transform pos: -73.5,48.5 parent: 2 - - uid: 32040 - components: - - type: Transform - pos: -73.5,49.5 - parent: 2 - - uid: 32041 + - uid: 32580 components: - type: Transform pos: -74.5,46.5 parent: 2 - - uid: 32042 + - uid: 32581 components: - type: Transform pos: -74.5,47.5 parent: 2 - - uid: 32043 + - uid: 32582 components: - type: Transform pos: -74.5,48.5 parent: 2 - - uid: 32044 + - uid: 32583 components: - type: Transform pos: -74.5,49.5 parent: 2 - - uid: 32045 + - uid: 32584 components: - type: Transform pos: -75.5,44.5 parent: 2 - - uid: 32046 + - uid: 32585 components: - type: Transform pos: -75.5,47.5 parent: 2 - - uid: 32047 + - uid: 32586 components: - type: Transform pos: -75.5,48.5 parent: 2 - - uid: 32048 + - uid: 32587 components: - type: Transform pos: -75.5,49.5 parent: 2 - - uid: 32049 + - uid: 32588 components: - type: Transform pos: -76.5,47.5 parent: 2 - - uid: 32050 + - uid: 32589 components: - type: Transform pos: -76.5,48.5 parent: 2 - - uid: 32051 + - uid: 32590 components: - type: Transform pos: -76.5,49.5 parent: 2 - - uid: 32052 + - uid: 32591 components: - type: Transform pos: -77.5,48.5 parent: 2 - - uid: 32053 + - uid: 32592 components: - type: Transform pos: -77.5,49.5 parent: 2 - - uid: 32054 + - uid: 32593 components: - type: Transform pos: -77.5,50.5 parent: 2 - - uid: 32055 + - uid: 32594 components: - type: Transform pos: -78.5,44.5 parent: 2 - - uid: 32056 + - uid: 32595 components: - type: Transform pos: -78.5,47.5 parent: 2 - - uid: 32057 + - uid: 32596 components: - type: Transform pos: -78.5,48.5 parent: 2 - - uid: 32058 + - uid: 32597 components: - type: Transform pos: -78.5,49.5 parent: 2 - - uid: 32059 + - uid: 32598 components: - type: Transform pos: -78.5,50.5 parent: 2 - - uid: 32060 + - uid: 32599 components: - type: Transform pos: -79.5,44.5 parent: 2 - - uid: 32061 + - uid: 32600 components: - type: Transform pos: -79.5,47.5 parent: 2 - - uid: 32062 + - uid: 32601 components: - type: Transform pos: -79.5,48.5 parent: 2 - - uid: 32063 - components: - - type: Transform - pos: -56.5,49.5 - parent: 2 - - uid: 32064 - components: - - type: Transform - pos: -56.5,50.5 - parent: 2 - - uid: 32065 - components: - - type: Transform - pos: -56.5,51.5 - parent: 2 - - uid: 32066 - components: - - type: Transform - pos: -56.5,52.5 - parent: 2 - - uid: 32067 - components: - - type: Transform - pos: -56.5,53.5 - parent: 2 - - uid: 32068 - components: - - type: Transform - pos: -56.5,54.5 - parent: 2 - - uid: 32069 - components: - - type: Transform - pos: -57.5,49.5 - parent: 2 - - uid: 32070 - components: - - type: Transform - pos: -57.5,54.5 - parent: 2 - - uid: 32071 - components: - - type: Transform - pos: -57.5,55.5 - parent: 2 - - uid: 32072 + - uid: 32602 components: - type: Transform pos: -71.5,52.5 parent: 2 - - uid: 32073 + - uid: 32603 components: - type: Transform pos: -71.5,51.5 parent: 2 - - uid: 32074 - components: - - type: Transform - pos: -57.5,56.5 - parent: 2 - - uid: 32075 + - uid: 32604 components: - type: Transform pos: -57.5,57.5 parent: 2 - - uid: 32076 - components: - - type: Transform - pos: -58.5,56.5 - parent: 2 - - uid: 32077 + - uid: 32605 components: - type: Transform pos: -58.5,57.5 parent: 2 - - uid: 32078 - components: - - type: Transform - pos: -59.5,56.5 - parent: 2 - - uid: 32079 + - uid: 32606 components: - type: Transform pos: -59.5,57.5 parent: 2 - - uid: 32080 - components: - - type: Transform - pos: -60.5,56.5 - parent: 2 - - uid: 32081 + - uid: 32607 components: - type: Transform pos: -60.5,57.5 parent: 2 - - uid: 32082 + - uid: 32608 components: - type: Transform pos: -61.5,56.5 parent: 2 - - uid: 32083 + - uid: 32609 components: - type: Transform pos: -61.5,57.5 parent: 2 - - uid: 32084 + - uid: 32610 components: - type: Transform pos: -62.5,56.5 parent: 2 - - uid: 32085 + - uid: 32611 components: - type: Transform - pos: -63.5,56.5 + pos: -29.5,73.5 parent: 2 - - uid: 32086 + - uid: 32612 components: - type: Transform pos: -64.5,56.5 parent: 2 - - uid: 32087 + - uid: 32613 components: - type: Transform pos: -68.5,57.5 parent: 2 - - uid: 32088 + - uid: 32614 components: - type: Transform pos: -69.5,56.5 parent: 2 - - uid: 32089 + - uid: 32615 components: - type: Transform pos: -69.5,57.5 parent: 2 - - uid: 32090 + - uid: 32616 components: - type: Transform pos: -72.5,54.5 parent: 2 - - uid: 32091 + - uid: 32617 components: - type: Transform pos: -72.5,55.5 parent: 2 - - uid: 32092 + - uid: 32618 components: - type: Transform pos: -72.5,57.5 parent: 2 - - uid: 32093 + - uid: 32619 components: - type: Transform pos: -71.5,53.5 parent: 2 - - uid: 32094 + - uid: 32620 components: - type: Transform pos: -71.5,54.5 parent: 2 - - uid: 32095 + - uid: 32621 components: - type: Transform pos: -71.5,55.5 parent: 2 - - uid: 32096 + - uid: 32622 components: - type: Transform pos: -71.5,56.5 parent: 2 - - uid: 32097 + - uid: 32623 components: - type: Transform pos: -75.5,64.5 parent: 2 - - uid: 32098 + - uid: 32624 components: - type: Transform pos: -70.5,53.5 parent: 2 - - uid: 32099 + - uid: 32625 components: - type: Transform pos: -70.5,54.5 parent: 2 - - uid: 32100 + - uid: 32626 components: - type: Transform pos: -70.5,55.5 parent: 2 - - uid: 32101 + - uid: 32627 components: - type: Transform pos: -70.5,56.5 parent: 2 - - uid: 32102 + - uid: 32628 components: - type: Transform pos: -70.5,57.5 parent: 2 - - uid: 32103 + - uid: 32629 components: - type: Transform pos: -69.5,55.5 parent: 2 - - uid: 32104 + - uid: 32630 components: - type: Transform pos: -62.5,55.5 parent: 2 - - uid: 32105 - components: - - type: Transform - pos: -59.5,55.5 - parent: 2 - - uid: 32106 - components: - - type: Transform - pos: -58.5,55.5 - parent: 2 - - uid: 32107 + - uid: 32631 components: - type: Transform pos: -61.5,47.5 parent: 2 - - uid: 32108 + - uid: 32632 components: - type: Transform pos: -61.5,46.5 parent: 2 - - uid: 32109 + - uid: 32633 components: - type: Transform pos: -61.5,45.5 parent: 2 - - uid: 32110 + - uid: 32634 components: - type: Transform pos: -62.5,45.5 parent: 2 - - uid: 32111 + - uid: 32635 components: - type: Transform pos: -63.5,45.5 parent: 2 - - uid: 32112 + - uid: 32636 components: - type: Transform pos: -68.5,45.5 parent: 2 - - uid: 32113 + - uid: 32637 components: - type: Transform pos: -68.5,46.5 parent: 2 - - uid: 32114 + - uid: 32638 components: - type: Transform pos: -68.5,49.5 parent: 2 - - uid: 32115 + - uid: 32639 components: - type: Transform pos: -67.5,47.5 parent: 2 - - uid: 32116 + - uid: 32640 components: - type: Transform pos: -67.5,46.5 parent: 2 - - uid: 32117 + - uid: 32641 components: - type: Transform pos: -67.5,45.5 parent: 2 - - uid: 32118 + - uid: 32642 components: - type: Transform pos: -67.5,44.5 parent: 2 - - uid: 32119 + - uid: 32643 components: - type: Transform pos: -38.5,-56.5 parent: 2 - - uid: 32120 - components: - - type: Transform - pos: -78.5,38.5 - parent: 2 - - uid: 32121 - components: - - type: Transform - pos: -78.5,39.5 - parent: 2 - - uid: 32122 + - uid: 32644 components: - type: Transform pos: -78.5,40.5 parent: 2 - - uid: 32123 - components: - - type: Transform - pos: -78.5,41.5 - parent: 2 - - uid: 32124 - components: - - type: Transform - pos: -78.5,42.5 - parent: 2 - - uid: 32125 + - uid: 32645 components: - type: Transform pos: -79.5,43.5 parent: 2 - - uid: 32126 + - uid: 32646 components: - type: Transform pos: -78.5,43.5 parent: 2 - - uid: 32127 + - uid: 32647 components: - type: Transform pos: -76.5,43.5 parent: 2 - - uid: 32128 + - uid: 32648 components: - type: Transform pos: -75.5,43.5 parent: 2 - - uid: 32129 + - uid: 32649 components: - type: Transform pos: -75.5,42.5 parent: 2 - - uid: 32130 + - uid: 32650 components: - type: Transform pos: -75.5,41.5 parent: 2 - - uid: 32131 + - uid: 32651 components: - type: Transform pos: -77.5,41.5 parent: 2 - - uid: 32132 - components: - - type: Transform - pos: -77.5,42.5 - parent: 2 - - uid: 32133 + - uid: 32652 components: - type: Transform pos: -77.5,43.5 parent: 2 - - uid: 32134 + - uid: 32653 components: - type: Transform pos: -76.5,42.5 parent: 2 - - uid: 32135 + - uid: 32654 components: - type: Transform pos: -77.5,40.5 parent: 2 - - uid: 32136 - components: - - type: Transform - pos: -77.5,39.5 - parent: 2 - - uid: 32137 + - uid: 32655 components: - type: Transform pos: -77.5,35.5 parent: 2 - - uid: 32138 + - uid: 32656 components: - type: Transform pos: -75.5,35.5 parent: 2 - - uid: 32139 + - uid: 32657 components: - type: Transform pos: -74.5,35.5 parent: 2 - - uid: 32140 + - uid: 32658 components: - type: Transform pos: -76.5,35.5 parent: 2 - - uid: 32141 + - uid: 32659 components: - type: Transform pos: -73.5,40.5 parent: 2 - - uid: 32142 - components: - - type: Transform - pos: -76.5,50.5 - parent: 2 - - uid: 32143 + - uid: 32660 components: - type: Transform pos: -73.5,54.5 parent: 2 - - uid: 32144 - components: - - type: Transform - pos: -73.5,55.5 - parent: 2 - - uid: 32145 + - uid: 32661 components: - type: Transform pos: -72.5,58.5 parent: 2 - - uid: 32146 + - uid: 32662 components: - type: Transform pos: -74.5,54.5 parent: 2 - - uid: 32147 - components: - - type: Transform - pos: -74.5,55.5 - parent: 2 - - uid: 32148 + - uid: 32663 components: - type: Transform pos: -73.5,56.5 parent: 2 - - uid: 32149 - components: - - type: Transform - pos: -75.5,54.5 - parent: 2 - - uid: 32150 + - uid: 32664 components: - type: Transform pos: -73.5,57.5 parent: 2 - - uid: 32151 + - uid: 32665 components: - type: Transform pos: -76.5,52.5 parent: 2 - - uid: 32152 + - uid: 32666 components: - type: Transform pos: -76.5,53.5 parent: 2 - - uid: 32153 + - uid: 32667 components: - type: Transform pos: -76.5,54.5 parent: 2 - - uid: 32154 - components: - - type: Transform - pos: -76.5,55.5 - parent: 2 - - uid: 32155 + - uid: 32668 components: - type: Transform pos: -77.5,52.5 parent: 2 - - uid: 32156 + - uid: 32669 components: - type: Transform pos: -77.5,53.5 parent: 2 - - uid: 32157 + - uid: 32670 components: - type: Transform pos: -77.5,54.5 parent: 2 - - uid: 32158 + - uid: 32671 components: - type: Transform pos: -77.5,55.5 parent: 2 - - uid: 32159 + - uid: 32672 components: - type: Transform pos: -73.5,58.5 parent: 2 - - uid: 32160 + - uid: 32673 components: - type: Transform pos: -77.5,51.5 parent: 2 - - uid: 32161 - components: - - type: Transform - pos: -76.5,51.5 - parent: 2 - - uid: 32162 + - uid: 32674 components: - type: Transform pos: -78.5,51.5 parent: 2 - - uid: 32163 + - uid: 32675 components: - type: Transform pos: -80.5,49.5 parent: 2 - - uid: 32164 + - uid: 32676 components: - type: Transform pos: -80.5,48.5 parent: 2 - - uid: 32165 + - uid: 32677 components: - type: Transform pos: -80.5,47.5 parent: 2 - - uid: 32166 + - uid: 32678 components: - type: Transform pos: -80.5,43.5 parent: 2 - - uid: 32167 + - uid: 32679 components: - type: Transform pos: -80.5,42.5 parent: 2 - - uid: 32168 - components: - - type: Transform - pos: -80.5,41.5 - parent: 2 - - uid: 32169 - components: - - type: Transform - pos: -80.5,40.5 - parent: 2 - - uid: 32170 + - uid: 32680 components: - type: Transform pos: -80.5,39.5 parent: 2 - - uid: 32171 + - uid: 32681 components: - type: Transform pos: -80.5,38.5 parent: 2 - - uid: 32172 + - uid: 32682 components: - type: Transform pos: -80.5,37.5 parent: 2 - - uid: 32173 + - uid: 32683 components: - type: Transform pos: -80.5,35.5 parent: 2 - - uid: 32174 + - uid: 32684 components: - type: Transform pos: -80.5,34.5 parent: 2 - - uid: 32175 + - uid: 32685 components: - type: Transform pos: -80.5,33.5 parent: 2 - - uid: 32176 + - uid: 32686 components: - type: Transform pos: -80.5,32.5 parent: 2 - - uid: 32177 + - uid: 32687 components: - type: Transform pos: -79.5,32.5 parent: 2 - - uid: 32178 + - uid: 32688 components: - type: Transform pos: -79.5,31.5 parent: 2 - - uid: 32179 + - uid: 32689 components: - type: Transform pos: -78.5,32.5 parent: 2 - - uid: 32180 + - uid: 32690 components: - type: Transform pos: -78.5,31.5 parent: 2 - - uid: 32181 + - uid: 32691 components: - type: Transform pos: -77.5,32.5 parent: 2 - - uid: 32182 + - uid: 32692 components: - type: Transform pos: -77.5,31.5 parent: 2 - - uid: 32183 + - uid: 32693 components: - type: Transform pos: -76.5,30.5 parent: 2 - - uid: 32184 + - uid: 32694 components: - type: Transform pos: -76.5,32.5 parent: 2 - - uid: 32185 + - uid: 32695 components: - type: Transform pos: -76.5,29.5 parent: 2 - - uid: 32186 + - uid: 32696 components: - type: Transform pos: -76.5,31.5 parent: 2 - - uid: 32187 + - uid: 32697 components: - type: Transform pos: -74.5,29.5 parent: 2 - - uid: 32188 + - uid: 32698 components: - type: Transform pos: -74.5,24.5 parent: 2 - - uid: 32189 + - uid: 32699 components: - type: Transform pos: -74.5,23.5 parent: 2 - - uid: 32190 - components: - - type: Transform - pos: -74.5,20.5 - parent: 2 - - uid: 32191 + - uid: 32700 components: - type: Transform pos: 77.5,11.5 parent: 2 - - uid: 32192 - components: - - type: Transform - pos: -73.5,20.5 - parent: 2 - - uid: 32193 + - uid: 32701 components: - type: Transform pos: -74.5,32.5 parent: 2 - - uid: 32194 + - uid: 32702 components: - type: Transform pos: -82.5,40.5 parent: 2 - - uid: 32195 + - uid: 32703 components: - type: Transform pos: -81.5,42.5 parent: 2 - - uid: 32196 + - uid: 32704 components: - type: Transform pos: -81.5,41.5 parent: 2 - - uid: 32197 + - uid: 32705 components: - type: Transform pos: -81.5,40.5 parent: 2 - - uid: 32198 + - uid: 32706 components: - type: Transform pos: -82.5,41.5 parent: 2 - - uid: 32199 + - uid: 32707 components: - type: Transform pos: -81.5,25.5 parent: 2 - - uid: 32200 + - uid: 32708 components: - type: Transform pos: -81.5,24.5 parent: 2 - - uid: 32201 + - uid: 32709 components: - type: Transform pos: -81.5,23.5 parent: 2 - - uid: 32202 + - uid: 32710 components: - type: Transform pos: -81.5,22.5 parent: 2 - - uid: 32203 + - uid: 32711 components: - type: Transform pos: -80.5,30.5 parent: 2 - - uid: 32204 + - uid: 32712 components: - type: Transform pos: -80.5,26.5 parent: 2 - - uid: 32205 + - uid: 32713 components: - type: Transform pos: -80.5,25.5 parent: 2 - - uid: 32206 + - uid: 32714 components: - type: Transform pos: -80.5,24.5 parent: 2 - - uid: 32207 + - uid: 32715 components: - type: Transform pos: -79.5,30.5 parent: 2 - - uid: 32208 + - uid: 32716 components: - type: Transform pos: -79.5,29.5 parent: 2 - - uid: 32209 + - uid: 32717 components: - type: Transform pos: -79.5,28.5 parent: 2 - - uid: 32210 + - uid: 32718 components: - type: Transform pos: -79.5,25.5 parent: 2 - - uid: 32211 + - uid: 32719 components: - type: Transform pos: -79.5,24.5 parent: 2 - - uid: 32212 + - uid: 32720 components: - type: Transform pos: -79.5,23.5 parent: 2 - - uid: 32213 + - uid: 32721 components: - type: Transform pos: -78.5,30.5 parent: 2 - - uid: 32214 + - uid: 32722 components: - type: Transform pos: -78.5,29.5 parent: 2 - - uid: 32215 + - uid: 32723 components: - type: Transform pos: -78.5,28.5 parent: 2 - - uid: 32216 + - uid: 32724 components: - type: Transform pos: -78.5,25.5 parent: 2 - - uid: 32217 + - uid: 32725 components: - type: Transform pos: -78.5,24.5 parent: 2 - - uid: 32218 + - uid: 32726 components: - type: Transform pos: -78.5,23.5 parent: 2 - - uid: 32219 + - uid: 32727 components: - type: Transform pos: -77.5,30.5 parent: 2 - - uid: 32220 + - uid: 32728 components: - type: Transform pos: -77.5,29.5 parent: 2 - - uid: 32221 + - uid: 32729 components: - type: Transform pos: -77.5,28.5 parent: 2 - - uid: 32222 + - uid: 32730 components: - type: Transform pos: -77.5,26.5 parent: 2 - - uid: 32223 + - uid: 32731 components: - type: Transform pos: -77.5,25.5 parent: 2 - - uid: 32224 + - uid: 32732 components: - type: Transform pos: -77.5,24.5 parent: 2 - - uid: 32225 + - uid: 32733 components: - type: Transform pos: -77.5,23.5 parent: 2 - - uid: 32226 + - uid: 32734 components: - type: Transform pos: -77.5,22.5 parent: 2 - - uid: 32227 + - uid: 32735 components: - type: Transform pos: -75.5,32.5 parent: 2 - - uid: 32228 + - uid: 32736 components: - type: Transform pos: -76.5,28.5 parent: 2 - - uid: 32229 + - uid: 32737 components: - type: Transform pos: -76.5,25.5 parent: 2 - - uid: 32230 + - uid: 32738 components: - type: Transform pos: -76.5,24.5 parent: 2 - - uid: 32231 + - uid: 32739 components: - type: Transform pos: -76.5,22.5 parent: 2 - - uid: 32232 + - uid: 32740 components: - type: Transform pos: -75.5,28.5 parent: 2 - - uid: 32233 + - uid: 32741 components: - type: Transform pos: -75.5,24.5 parent: 2 - - uid: 32234 + - uid: 32742 components: - type: Transform pos: -80.5,21.5 parent: 2 - - uid: 32235 + - uid: 32743 components: - type: Transform pos: -80.5,20.5 parent: 2 - - uid: 32236 - components: - - type: Transform - pos: -80.5,19.5 - parent: 2 - - uid: 32237 - components: - - type: Transform - pos: -80.5,18.5 - parent: 2 - - uid: 32238 - components: - - type: Transform - pos: -80.5,10.5 - parent: 2 - - uid: 32239 + - uid: 32744 components: - type: Transform pos: -80.5,9.5 parent: 2 - - uid: 32240 + - uid: 32745 components: - type: Transform pos: -79.5,21.5 parent: 2 - - uid: 32241 - components: - - type: Transform - pos: -79.5,20.5 - parent: 2 - - uid: 32242 + - uid: 32746 components: - type: Transform pos: -79.5,9.5 parent: 2 - - uid: 32243 + - uid: 32747 components: - type: Transform pos: -77.5,21.5 parent: 2 - - uid: 32244 + - uid: 32748 components: - type: Transform pos: -76.5,21.5 parent: 2 - - uid: 32245 + - uid: 32749 components: - type: Transform pos: -76.5,60.5 parent: 2 - - uid: 32246 - components: - - type: Transform - pos: -76.5,10.5 - parent: 2 - - uid: 32247 + - uid: 32750 components: - type: Transform pos: -76.5,9.5 parent: 2 - - uid: 32248 - components: - - type: Transform - pos: -75.5,21.5 - parent: 2 - - uid: 32249 - components: - - type: Transform - pos: -75.5,20.5 - parent: 2 - - uid: 32250 + - uid: 32751 components: - type: Transform pos: -75.5,9.5 parent: 2 - - uid: 32251 + - uid: 32752 components: - type: Transform pos: -79.5,7.5 parent: 2 - - uid: 32252 + - uid: 32753 components: - type: Transform pos: -80.5,7.5 parent: 2 - - uid: 32253 + - uid: 32754 components: - type: Transform pos: -78.5,6.5 parent: 2 - - uid: 32254 + - uid: 32755 components: - type: Transform pos: -77.5,7.5 parent: 2 - - uid: 32255 + - uid: 32756 components: - type: Transform pos: -77.5,6.5 parent: 2 - - uid: 32256 + - uid: 32757 components: - type: Transform pos: -77.5,5.5 parent: 2 - - uid: 32257 + - uid: 32758 components: - type: Transform pos: -76.5,7.5 parent: 2 - - uid: 32258 + - uid: 32759 components: - type: Transform pos: -76.5,6.5 parent: 2 - - uid: 32259 + - uid: 32760 components: - type: Transform pos: -76.5,5.5 parent: 2 - - uid: 32260 + - uid: 32761 components: - type: Transform pos: -80.5,31.5 parent: 2 - - uid: 32261 + - uid: 32762 components: - type: Transform pos: -81.5,49.5 parent: 2 - - uid: 32262 + - uid: 32763 components: - type: Transform pos: -81.5,50.5 parent: 2 - - uid: 32263 + - uid: 32764 components: - type: Transform pos: -81.5,51.5 parent: 2 - - uid: 32264 + - uid: 32765 components: - type: Transform pos: -79.5,52.5 parent: 2 - - uid: 32265 + - uid: 32766 components: - type: Transform pos: -80.5,51.5 parent: 2 - - uid: 32266 + - uid: 32767 components: - type: Transform pos: -79.5,51.5 parent: 2 - - uid: 32267 + - uid: 32768 components: - type: Transform pos: -78.5,53.5 parent: 2 - - uid: 32268 + - uid: 32769 components: - type: Transform pos: -78.5,54.5 parent: 2 - - uid: 32269 + - uid: 32770 components: - type: Transform pos: -78.5,55.5 parent: 2 - - uid: 32270 + - uid: 32771 components: - type: Transform pos: -79.5,54.5 parent: 2 - - uid: 32271 + - uid: 32772 components: - type: Transform pos: -79.5,55.5 parent: 2 - - uid: 32272 + - uid: 32773 components: - type: Transform pos: -74.5,59.5 parent: 2 - - uid: 32273 + - uid: 32774 components: - type: Transform pos: -78.5,52.5 parent: 2 - - uid: 32274 + - uid: 32775 components: - type: Transform pos: -82.5,35.5 parent: 2 - - uid: 32275 + - uid: 32776 components: - type: Transform pos: -83.5,41.5 parent: 2 - - uid: 32276 + - uid: 32777 components: - type: Transform pos: -83.5,40.5 parent: 2 - - uid: 32277 + - uid: 32778 components: - type: Transform pos: -83.5,37.5 parent: 2 - - uid: 32278 + - uid: 32779 components: - type: Transform pos: -83.5,36.5 parent: 2 - - uid: 32279 + - uid: 32780 components: - type: Transform pos: -83.5,35.5 parent: 2 - - uid: 32280 + - uid: 32781 components: - type: Transform pos: -84.5,41.5 parent: 2 - - uid: 32281 + - uid: 32782 components: - type: Transform pos: -84.5,40.5 parent: 2 - - uid: 32282 + - uid: 32783 components: - type: Transform pos: -84.5,37.5 parent: 2 - - uid: 32283 + - uid: 32784 components: - type: Transform pos: -84.5,36.5 parent: 2 - - uid: 32284 + - uid: 32785 components: - type: Transform pos: -84.5,35.5 parent: 2 - - uid: 32285 + - uid: 32786 components: - type: Transform pos: -84.5,33.5 parent: 2 - - uid: 32286 + - uid: 32787 components: - type: Transform pos: -85.5,38.5 parent: 2 - - uid: 32287 + - uid: 32788 components: - type: Transform pos: -85.5,37.5 parent: 2 - - uid: 32288 + - uid: 32789 components: - type: Transform pos: -85.5,36.5 parent: 2 - - uid: 32289 + - uid: 32790 components: - type: Transform pos: -85.5,33.5 parent: 2 - - uid: 32290 + - uid: 32791 components: - type: Transform pos: -86.5,41.5 parent: 2 - - uid: 32291 + - uid: 32792 components: - type: Transform pos: -86.5,39.5 parent: 2 - - uid: 32292 + - uid: 32793 components: - type: Transform pos: -86.5,38.5 parent: 2 - - uid: 32293 + - uid: 32794 components: - type: Transform pos: -86.5,34.5 parent: 2 - - uid: 32294 + - uid: 32795 components: - type: Transform pos: -86.5,33.5 parent: 2 - - uid: 32295 + - uid: 32796 components: - type: Transform pos: -87.5,39.5 parent: 2 - - uid: 32296 + - uid: 32797 components: - type: Transform pos: -87.5,38.5 parent: 2 - - uid: 32297 + - uid: 32798 components: - type: Transform pos: -87.5,37.5 parent: 2 - - uid: 32298 + - uid: 32799 components: - type: Transform pos: -87.5,36.5 parent: 2 - - uid: 32299 + - uid: 32800 components: - type: Transform pos: -87.5,33.5 parent: 2 - - uid: 32300 + - uid: 32801 components: - type: Transform pos: -88.5,41.5 parent: 2 - - uid: 32301 + - uid: 32802 components: - type: Transform pos: -88.5,39.5 parent: 2 - - uid: 32302 + - uid: 32803 components: - type: Transform pos: -88.5,38.5 parent: 2 - - uid: 32303 + - uid: 32804 components: - type: Transform pos: -88.5,37.5 parent: 2 - - uid: 32304 + - uid: 32805 components: - type: Transform pos: -88.5,36.5 parent: 2 - - uid: 32305 + - uid: 32806 components: - type: Transform pos: -88.5,35.5 parent: 2 - - uid: 32306 + - uid: 32807 components: - type: Transform pos: -89.5,41.5 parent: 2 - - uid: 32307 + - uid: 32808 components: - type: Transform pos: -89.5,40.5 parent: 2 - - uid: 32308 + - uid: 32809 components: - type: Transform pos: -89.5,39.5 parent: 2 - - uid: 32309 + - uid: 32810 components: - type: Transform pos: -89.5,38.5 parent: 2 - - uid: 32310 + - uid: 32811 components: - type: Transform pos: -89.5,37.5 parent: 2 - - uid: 32311 + - uid: 32812 components: - type: Transform pos: -89.5,36.5 parent: 2 - - uid: 32312 + - uid: 32813 components: - type: Transform pos: -89.5,35.5 parent: 2 - - uid: 32313 + - uid: 32814 components: - type: Transform pos: -89.5,34.5 parent: 2 - - uid: 32314 + - uid: 32815 components: - type: Transform pos: -90.5,42.5 parent: 2 - - uid: 32315 + - uid: 32816 components: - type: Transform pos: -90.5,41.5 parent: 2 - - uid: 32316 + - uid: 32817 components: - type: Transform pos: -90.5,40.5 parent: 2 - - uid: 32317 + - uid: 32818 components: - type: Transform pos: -90.5,39.5 parent: 2 - - uid: 32318 + - uid: 32819 components: - type: Transform pos: -90.5,38.5 parent: 2 - - uid: 32319 + - uid: 32820 components: - type: Transform pos: -90.5,37.5 parent: 2 - - uid: 32320 + - uid: 32821 components: - type: Transform pos: -91.5,42.5 parent: 2 - - uid: 32321 + - uid: 32822 components: - type: Transform pos: -91.5,41.5 parent: 2 - - uid: 32322 + - uid: 32823 components: - type: Transform pos: -91.5,39.5 parent: 2 - - uid: 32323 + - uid: 32824 components: - type: Transform pos: -91.5,38.5 parent: 2 - - uid: 32324 + - uid: 32825 components: - type: Transform pos: -91.5,35.5 parent: 2 - - uid: 32325 + - uid: 32826 components: - type: Transform pos: -91.5,34.5 parent: 2 - - uid: 32326 + - uid: 32827 components: - type: Transform pos: -92.5,41.5 parent: 2 - - uid: 32327 + - uid: 32828 components: - type: Transform pos: -92.5,40.5 parent: 2 - - uid: 32328 + - uid: 32829 components: - type: Transform pos: -92.5,39.5 parent: 2 - - uid: 32329 + - uid: 32830 components: - type: Transform pos: -92.5,37.5 parent: 2 - - uid: 32330 + - uid: 32831 components: - type: Transform pos: -92.5,36.5 parent: 2 - - uid: 32331 + - uid: 32832 components: - type: Transform pos: -92.5,35.5 parent: 2 - - uid: 32332 + - uid: 32833 components: - type: Transform pos: -92.5,34.5 parent: 2 - - uid: 32333 - components: - - type: Transform - pos: -93.5,42.5 - parent: 2 - - uid: 32334 - components: - - type: Transform - pos: -93.5,41.5 - parent: 2 - - uid: 32335 + - uid: 32834 components: - type: Transform pos: -93.5,40.5 parent: 2 - - uid: 32336 + - uid: 32835 components: - type: Transform pos: -93.5,39.5 parent: 2 - - uid: 32337 + - uid: 32836 components: - type: Transform pos: -93.5,38.5 parent: 2 - - uid: 32338 + - uid: 32837 components: - type: Transform pos: -93.5,36.5 parent: 2 - - uid: 32339 + - uid: 32838 components: - type: Transform pos: -93.5,35.5 parent: 2 - - uid: 32340 + - uid: 32839 components: - type: Transform pos: -93.5,34.5 parent: 2 - - uid: 32341 + - uid: 32840 components: - type: Transform pos: -95.5,41.5 parent: 2 - - uid: 32342 + - uid: 32841 components: - type: Transform pos: -95.5,38.5 parent: 2 - - uid: 32343 + - uid: 32842 components: - type: Transform pos: -95.5,37.5 parent: 2 - - uid: 32344 + - uid: 32843 components: - type: Transform pos: -95.5,36.5 parent: 2 - - uid: 32345 - components: - - type: Transform - pos: -95.5,34.5 - parent: 2 - - uid: 32346 + - uid: 32844 components: - type: Transform pos: -95.5,32.5 parent: 2 - - uid: 32347 + - uid: 32845 components: - type: Transform pos: -94.5,39.5 parent: 2 - - uid: 32348 + - uid: 32846 components: - type: Transform pos: -94.5,38.5 parent: 2 - - uid: 32349 + - uid: 32847 components: - type: Transform pos: -94.5,37.5 parent: 2 - - uid: 32350 + - uid: 32848 components: - type: Transform pos: -93.5,31.5 parent: 2 - - uid: 32351 + - uid: 32849 components: - type: Transform pos: -93.5,30.5 parent: 2 - - uid: 32352 + - uid: 32850 components: - type: Transform pos: -92.5,31.5 parent: 2 - - uid: 32353 + - uid: 32851 components: - type: Transform pos: -92.5,30.5 parent: 2 - - uid: 32354 + - uid: 32852 components: - type: Transform pos: -91.5,32.5 parent: 2 - - uid: 32355 + - uid: 32853 components: - type: Transform pos: -91.5,31.5 parent: 2 - - uid: 32356 + - uid: 32854 components: - type: Transform pos: -91.5,30.5 parent: 2 - - uid: 32357 + - uid: 32855 components: - type: Transform pos: -89.5,32.5 parent: 2 - - uid: 32358 + - uid: 32856 components: - type: Transform pos: -89.5,31.5 parent: 2 - - uid: 32359 + - uid: 32857 components: - type: Transform pos: -88.5,32.5 parent: 2 - - uid: 32360 + - uid: 32858 components: - type: Transform pos: -88.5,30.5 parent: 2 - - uid: 32361 + - uid: 32859 components: - type: Transform pos: -87.5,32.5 parent: 2 - - uid: 32362 + - uid: 32860 components: - type: Transform pos: -87.5,31.5 parent: 2 - - uid: 32363 + - uid: 32861 components: - type: Transform pos: -87.5,30.5 parent: 2 - - uid: 32364 + - uid: 32862 components: - type: Transform pos: -86.5,32.5 parent: 2 - - uid: 32365 + - uid: 32863 components: - type: Transform pos: -86.5,31.5 parent: 2 - - uid: 32366 + - uid: 32864 components: - type: Transform pos: -86.5,30.5 parent: 2 - - uid: 32367 + - uid: 32865 components: - type: Transform pos: -85.5,32.5 parent: 2 - - uid: 32368 + - uid: 32866 components: - type: Transform pos: -85.5,31.5 parent: 2 - - uid: 32369 + - uid: 32867 components: - type: Transform pos: -85.5,30.5 parent: 2 - - uid: 32370 + - uid: 32868 components: - type: Transform pos: -84.5,32.5 parent: 2 - - uid: 32371 + - uid: 32869 components: - type: Transform pos: -84.5,31.5 parent: 2 - - uid: 32372 + - uid: 32870 components: - type: Transform pos: -84.5,30.5 parent: 2 - - uid: 32373 + - uid: 32871 components: - type: Transform pos: -83.5,32.5 parent: 2 - - uid: 32374 + - uid: 32872 components: - type: Transform pos: -83.5,31.5 parent: 2 - - uid: 32375 + - uid: 32873 components: - type: Transform pos: -82.5,32.5 parent: 2 - - uid: 32376 + - uid: 32874 components: - type: Transform pos: -82.5,31.5 parent: 2 - - uid: 32377 + - uid: 32875 components: - type: Transform pos: -82.5,30.5 parent: 2 - - uid: 32378 + - uid: 32876 components: - type: Transform pos: -90.5,43.5 parent: 2 - - uid: 32379 + - uid: 32877 components: - type: Transform pos: -88.5,43.5 parent: 2 - - uid: 32380 + - uid: 32878 components: - type: Transform pos: -87.5,43.5 parent: 2 - - uid: 32381 + - uid: 32879 components: - type: Transform pos: -86.5,43.5 parent: 2 - - uid: 32382 + - uid: 32880 components: - type: Transform pos: -84.5,43.5 parent: 2 - - uid: 32383 + - uid: 32881 components: - type: Transform pos: -83.5,43.5 parent: 2 - - uid: 32384 + - uid: 32882 components: - type: Transform pos: -82.5,45.5 parent: 2 - - uid: 32385 + - uid: 32883 components: - type: Transform pos: -82.5,46.5 parent: 2 - - uid: 32386 + - uid: 32884 components: - type: Transform pos: -82.5,47.5 parent: 2 - - uid: 32387 + - uid: 32885 components: - type: Transform pos: -82.5,49.5 parent: 2 - - uid: 32388 + - uid: 32886 components: - type: Transform pos: -82.5,50.5 parent: 2 - - uid: 32389 + - uid: 32887 components: - type: Transform pos: -83.5,44.5 parent: 2 - - uid: 32390 + - uid: 32888 components: - type: Transform pos: -83.5,45.5 parent: 2 - - uid: 32391 + - uid: 32889 components: - type: Transform pos: -83.5,46.5 parent: 2 - - uid: 32392 + - uid: 32890 components: - type: Transform pos: -83.5,49.5 parent: 2 - - uid: 32393 + - uid: 32891 components: - type: Transform pos: -83.5,50.5 parent: 2 - - uid: 32394 + - uid: 32892 components: - type: Transform pos: -84.5,44.5 parent: 2 - - uid: 32395 + - uid: 32893 components: - type: Transform pos: -84.5,45.5 parent: 2 - - uid: 32396 + - uid: 32894 components: - type: Transform pos: -84.5,46.5 parent: 2 - - uid: 32397 + - uid: 32895 components: - type: Transform pos: -86.5,47.5 parent: 2 - - uid: 32398 + - uid: 32896 components: - type: Transform pos: -86.5,48.5 parent: 2 - - uid: 32399 + - uid: 32897 components: - type: Transform pos: -87.5,47.5 parent: 2 - - uid: 32400 + - uid: 32898 components: - type: Transform pos: -87.5,48.5 parent: 2 - - uid: 32401 + - uid: 32899 components: - type: Transform pos: -87.5,50.5 parent: 2 - - uid: 32402 + - uid: 32900 components: - type: Transform pos: -88.5,46.5 parent: 2 - - uid: 32403 + - uid: 32901 components: - type: Transform pos: -88.5,45.5 parent: 2 - - uid: 32404 + - uid: 32902 components: - type: Transform pos: -91.5,23.5 parent: 2 - - uid: 32405 + - uid: 32903 components: - type: Transform pos: -91.5,21.5 parent: 2 - - uid: 32406 + - uid: 32904 components: - type: Transform pos: -91.5,20.5 parent: 2 - - uid: 32407 + - uid: 32905 components: - type: Transform pos: -91.5,16.5 parent: 2 - - uid: 32408 + - uid: 32906 components: - type: Transform pos: 101.5,7.5 parent: 2 - - uid: 32409 + - uid: 32907 components: - type: Transform pos: -90.5,21.5 parent: 2 - - uid: 32410 + - uid: 32908 components: - type: Transform pos: -90.5,18.5 parent: 2 - - uid: 32411 + - uid: 32909 components: - type: Transform pos: -90.5,17.5 parent: 2 - - uid: 32412 + - uid: 32910 components: - type: Transform pos: -90.5,16.5 parent: 2 - - uid: 32413 + - uid: 32911 components: - type: Transform pos: -89.5,21.5 parent: 2 - - uid: 32414 + - uid: 32912 components: - type: Transform pos: -89.5,20.5 parent: 2 - - uid: 32415 + - uid: 32913 components: - type: Transform pos: -89.5,19.5 parent: 2 - - uid: 32416 + - uid: 32914 components: - type: Transform pos: -89.5,18.5 parent: 2 - - uid: 32417 + - uid: 32915 components: - type: Transform pos: -89.5,17.5 parent: 2 - - uid: 32418 + - uid: 32916 components: - type: Transform pos: -89.5,16.5 parent: 2 - - uid: 32419 + - uid: 32917 components: - type: Transform pos: -88.5,22.5 parent: 2 - - uid: 32420 + - uid: 32918 components: - type: Transform pos: -88.5,21.5 parent: 2 - - uid: 32421 + - uid: 32919 components: - type: Transform pos: -88.5,20.5 parent: 2 - - uid: 32422 + - uid: 32920 components: - type: Transform pos: -87.5,24.5 parent: 2 - - uid: 32423 + - uid: 32921 components: - type: Transform pos: -87.5,22.5 parent: 2 - - uid: 32424 + - uid: 32922 components: - type: Transform pos: -87.5,21.5 parent: 2 - - uid: 32425 + - uid: 32923 components: - type: Transform pos: -87.5,20.5 parent: 2 - - uid: 32426 + - uid: 32924 components: - type: Transform pos: -85.5,27.5 parent: 2 - - uid: 32427 + - uid: 32925 components: - type: Transform pos: -85.5,26.5 parent: 2 - - uid: 32428 + - uid: 32926 components: - type: Transform pos: -85.5,25.5 parent: 2 - - uid: 32429 + - uid: 32927 components: - type: Transform pos: -85.5,22.5 parent: 2 - - uid: 32430 + - uid: 32928 components: - type: Transform pos: -85.5,21.5 parent: 2 - - uid: 32431 + - uid: 32929 components: - type: Transform pos: -85.5,20.5 parent: 2 - - uid: 32432 + - uid: 32930 components: - type: Transform pos: -85.5,19.5 parent: 2 - - uid: 32433 + - uid: 32931 components: - type: Transform pos: -84.5,28.5 parent: 2 - - uid: 32434 + - uid: 32932 components: - type: Transform pos: -84.5,27.5 parent: 2 - - uid: 32435 + - uid: 32933 components: - type: Transform pos: -84.5,26.5 parent: 2 - - uid: 32436 + - uid: 32934 components: - type: Transform pos: -84.5,25.5 parent: 2 - - uid: 32437 + - uid: 32935 components: - type: Transform pos: -84.5,20.5 parent: 2 - - uid: 32438 + - uid: 32936 components: - type: Transform pos: -84.5,19.5 parent: 2 - - uid: 32439 + - uid: 32937 components: - type: Transform pos: -84.5,18.5 parent: 2 - - uid: 32440 + - uid: 32938 components: - type: Transform pos: -84.5,17.5 parent: 2 - - uid: 32441 + - uid: 32939 components: - type: Transform pos: -84.5,16.5 parent: 2 - - uid: 32442 + - uid: 32940 components: - type: Transform pos: -83.5,27.5 parent: 2 - - uid: 32443 + - uid: 32941 components: - type: Transform pos: -83.5,26.5 parent: 2 - - uid: 32444 + - uid: 32942 components: - type: Transform pos: -83.5,25.5 parent: 2 - - uid: 32445 + - uid: 32943 components: - type: Transform pos: -83.5,20.5 parent: 2 - - uid: 32446 + - uid: 32944 components: - type: Transform pos: -83.5,19.5 parent: 2 - - uid: 32447 + - uid: 32945 components: - type: Transform pos: -83.5,18.5 parent: 2 - - uid: 32448 + - uid: 32946 components: - type: Transform pos: -83.5,17.5 parent: 2 - - uid: 32449 + - uid: 32947 components: - type: Transform pos: -83.5,16.5 parent: 2 - - uid: 32450 + - uid: 32948 components: - type: Transform pos: -82.5,28.5 parent: 2 - - uid: 32451 + - uid: 32949 components: - type: Transform pos: -82.5,27.5 parent: 2 - - uid: 32452 + - uid: 32950 components: - type: Transform pos: -82.5,26.5 parent: 2 - - uid: 32453 + - uid: 32951 components: - type: Transform pos: -82.5,25.5 parent: 2 - - uid: 32454 + - uid: 32952 components: - type: Transform pos: -82.5,24.5 parent: 2 - - uid: 32455 + - uid: 32953 components: - type: Transform pos: -82.5,23.5 parent: 2 - - uid: 32456 + - uid: 32954 components: - type: Transform pos: -82.5,22.5 parent: 2 - - uid: 32457 + - uid: 32955 components: - type: Transform pos: -82.5,19.5 parent: 2 - - uid: 32458 + - uid: 32956 components: - type: Transform pos: -82.5,16.5 parent: 2 - - uid: 32459 - components: - - type: Transform - pos: -81.5,16.5 - parent: 2 - - uid: 32460 - components: - - type: Transform - pos: -81.5,10.5 - parent: 2 - - uid: 32461 + - uid: 32957 components: - type: Transform pos: -81.5,21.5 parent: 2 - - uid: 32462 + - uid: 32958 components: - type: Transform pos: -91.5,15.5 parent: 2 - - uid: 32463 + - uid: 32959 components: - type: Transform pos: -90.5,15.5 parent: 2 - - uid: 32464 + - uid: 32960 components: - type: Transform pos: -89.5,15.5 parent: 2 - - uid: 32465 + - uid: 32961 components: - type: Transform pos: -88.5,15.5 parent: 2 - - uid: 32466 + - uid: 32962 components: - type: Transform pos: -84.5,15.5 parent: 2 - - uid: 32467 + - uid: 32963 components: - type: Transform pos: -83.5,15.5 parent: 2 - - uid: 32468 + - uid: 32964 components: - type: Transform pos: -82.5,15.5 parent: 2 - - uid: 32469 + - uid: 32965 components: - type: Transform pos: -90.5,14.5 parent: 2 - - uid: 32470 + - uid: 32966 components: - type: Transform pos: -89.5,14.5 parent: 2 - - uid: 32471 + - uid: 32967 components: - type: Transform pos: -88.5,14.5 parent: 2 - - uid: 32472 + - uid: 32968 components: - type: Transform pos: -88.5,7.5 parent: 2 - - uid: 32473 + - uid: 32969 components: - type: Transform pos: -88.5,3.5 parent: 2 - - uid: 32474 + - uid: 32970 components: - type: Transform pos: -88.5,2.5 parent: 2 - - uid: 32475 + - uid: 32971 components: - type: Transform pos: -88.5,1.5 parent: 2 - - uid: 32476 + - uid: 32972 components: - type: Transform pos: -87.5,13.5 parent: 2 - - uid: 32477 + - uid: 32973 components: - type: Transform pos: -87.5,12.5 parent: 2 - - uid: 32478 + - uid: 32974 components: - type: Transform pos: -87.5,11.5 parent: 2 - - uid: 32479 + - uid: 32975 components: - type: Transform pos: -87.5,9.5 parent: 2 - - uid: 32480 + - uid: 32976 components: - type: Transform pos: -87.5,7.5 parent: 2 - - uid: 32481 + - uid: 32977 components: - type: Transform pos: -87.5,6.5 parent: 2 - - uid: 32482 + - uid: 32978 components: - type: Transform pos: -87.5,2.5 parent: 2 - - uid: 32483 + - uid: 32979 components: - type: Transform pos: -86.5,13.5 parent: 2 - - uid: 32484 + - uid: 32980 components: - type: Transform pos: -86.5,12.5 parent: 2 - - uid: 32485 + - uid: 32981 components: - type: Transform pos: -86.5,11.5 parent: 2 - - uid: 32486 + - uid: 32982 components: - type: Transform pos: -86.5,9.5 parent: 2 - - uid: 32487 + - uid: 32983 components: - type: Transform pos: -86.5,8.5 parent: 2 - - uid: 32488 + - uid: 32984 components: - type: Transform pos: -86.5,6.5 parent: 2 - - uid: 32489 + - uid: 32985 components: - type: Transform pos: -86.5,2.5 parent: 2 - - uid: 32490 + - uid: 32986 components: - type: Transform pos: -85.5,13.5 parent: 2 - - uid: 32491 + - uid: 32987 components: - type: Transform pos: -85.5,12.5 parent: 2 - - uid: 32492 + - uid: 32988 components: - type: Transform pos: -85.5,6.5 parent: 2 - - uid: 32493 + - uid: 32989 components: - type: Transform pos: -85.5,5.5 parent: 2 - - uid: 32494 + - uid: 32990 components: - type: Transform pos: -85.5,2.5 parent: 2 - - uid: 32495 + - uid: 32991 components: - type: Transform pos: -84.5,13.5 parent: 2 - - uid: 32496 + - uid: 32992 components: - type: Transform pos: -84.5,12.5 parent: 2 - - uid: 32497 + - uid: 32993 components: - type: Transform pos: -84.5,11.5 parent: 2 - - uid: 32498 + - uid: 32994 components: - type: Transform pos: -84.5,10.5 parent: 2 - - uid: 32499 + - uid: 32995 components: - type: Transform pos: -84.5,9.5 parent: 2 - - uid: 32500 + - uid: 32996 components: - type: Transform pos: -84.5,8.5 parent: 2 - - uid: 32501 + - uid: 32997 components: - type: Transform pos: -84.5,6.5 parent: 2 - - uid: 32502 + - uid: 32998 components: - type: Transform pos: -84.5,5.5 parent: 2 - - uid: 32503 + - uid: 32999 components: - type: Transform pos: -84.5,4.5 parent: 2 - - uid: 32504 + - uid: 33000 components: - type: Transform pos: -83.5,12.5 parent: 2 - - uid: 32505 + - uid: 33001 components: - type: Transform pos: -83.5,11.5 parent: 2 - - uid: 32506 + - uid: 33002 components: - type: Transform pos: -83.5,9.5 parent: 2 - - uid: 32507 + - uid: 33003 components: - type: Transform pos: -83.5,5.5 parent: 2 - - uid: 32508 + - uid: 33004 components: - type: Transform pos: -83.5,4.5 parent: 2 - - uid: 32509 + - uid: 33005 components: - type: Transform pos: -82.5,11.5 parent: 2 - - uid: 32510 + - uid: 33006 components: - type: Transform pos: -82.5,5.5 parent: 2 - - uid: 32511 + - uid: 33007 components: - type: Transform pos: -82.5,4.5 parent: 2 - - uid: 32512 + - uid: 33008 components: - type: Transform pos: -87.5,0.5 parent: 2 - - uid: 32513 + - uid: 33009 components: - type: Transform pos: -86.5,0.5 parent: 2 - - uid: 32514 + - uid: 33010 components: - type: Transform pos: -74.5,6.5 parent: 2 - - uid: 32515 + - uid: 33011 components: - type: Transform pos: -75.5,0.5 parent: 2 - - uid: 32516 + - uid: 33012 components: - type: Transform pos: -78.5,5.5 parent: 2 - - uid: 32517 + - uid: 33013 components: - type: Transform pos: -78.5,7.5 parent: 2 - - uid: 32518 + - uid: 33014 components: - type: Transform pos: -85.5,-0.5 parent: 2 - - uid: 32519 + - uid: 33015 components: - type: Transform pos: -85.5,-1.5 parent: 2 - - uid: 32520 + - uid: 33016 components: - type: Transform pos: -85.5,-2.5 parent: 2 - - uid: 32521 + - uid: 33017 components: - type: Transform pos: -85.5,-3.5 parent: 2 - - uid: 32522 + - uid: 33018 components: - type: Transform pos: -85.5,-4.5 parent: 2 - - uid: 32523 + - uid: 33019 components: - type: Transform pos: -85.5,-5.5 parent: 2 - - uid: 32524 + - uid: 33020 components: - type: Transform pos: -85.5,-6.5 parent: 2 - - uid: 32525 + - uid: 33021 components: - type: Transform pos: -84.5,-1.5 parent: 2 - - uid: 32526 + - uid: 33022 components: - type: Transform pos: -84.5,-2.5 parent: 2 - - uid: 32527 + - uid: 33023 components: - type: Transform pos: -84.5,-3.5 parent: 2 - - uid: 32528 + - uid: 33024 components: - type: Transform pos: -84.5,-4.5 parent: 2 - - uid: 32529 + - uid: 33025 components: - type: Transform pos: -84.5,-5.5 parent: 2 - - uid: 32530 + - uid: 33026 components: - type: Transform pos: -83.5,-2.5 parent: 2 - - uid: 32531 + - uid: 33027 components: - type: Transform pos: -83.5,-3.5 parent: 2 - - uid: 32532 + - uid: 33028 components: - type: Transform pos: -83.5,-4.5 parent: 2 - - uid: 32533 + - uid: 33029 components: - type: Transform pos: -82.5,-3.5 parent: 2 - - uid: 32534 + - uid: 33030 components: - type: Transform pos: -82.5,-4.5 parent: 2 - - uid: 32535 + - uid: 33031 components: - type: Transform pos: -82.5,-5.5 parent: 2 - - uid: 32536 + - uid: 33032 components: - type: Transform pos: -82.5,-6.5 parent: 2 - - uid: 32537 + - uid: 33033 components: - type: Transform pos: -81.5,-4.5 parent: 2 - - uid: 32538 + - uid: 33034 components: - type: Transform pos: -81.5,-5.5 parent: 2 - - uid: 32539 + - uid: 33035 components: - type: Transform pos: -81.5,-6.5 parent: 2 - - uid: 32540 + - uid: 33036 components: - type: Transform pos: -73.5,5.5 parent: 2 - - uid: 32541 + - uid: 33037 components: - type: Transform pos: -80.5,-4.5 parent: 2 - - uid: 32542 + - uid: 33038 components: - type: Transform pos: -80.5,-5.5 parent: 2 - - uid: 32543 + - uid: 33039 components: - type: Transform pos: -80.5,-6.5 parent: 2 - - uid: 32544 + - uid: 33040 components: - type: Transform pos: -79.5,-6.5 parent: 2 - - uid: 32545 + - uid: 33041 components: - type: Transform pos: -80.5,6.5 parent: 2 - - uid: 32546 + - uid: 33042 components: - type: Transform pos: -78.5,-6.5 parent: 2 - - uid: 32547 + - uid: 33043 components: - type: Transform pos: -79.5,6.5 parent: 2 - - uid: 32548 + - uid: 33044 components: - type: Transform pos: -77.5,-4.5 parent: 2 - - uid: 32549 + - uid: 33045 components: - type: Transform pos: -76.5,-4.5 parent: 2 - - uid: 32550 + - uid: 33046 components: - type: Transform pos: -76.5,-5.5 parent: 2 - - uid: 32551 + - uid: 33047 components: - type: Transform pos: -75.5,-0.5 parent: 2 - - uid: 32552 + - uid: 33048 components: - type: Transform pos: -75.5,-1.5 parent: 2 - - uid: 32553 + - uid: 33049 components: - type: Transform pos: -75.5,-4.5 parent: 2 - - uid: 32554 + - uid: 33050 components: - type: Transform pos: -75.5,-5.5 parent: 2 - - uid: 32555 + - uid: 33051 components: - type: Transform pos: -75.5,-6.5 parent: 2 - - uid: 32556 + - uid: 33052 components: - type: Transform pos: -74.5,-6.5 parent: 2 - - uid: 32557 + - uid: 33053 components: - type: Transform pos: -74.5,-7.5 parent: 2 - - uid: 32558 + - uid: 33054 components: - type: Transform pos: -74.5,-8.5 parent: 2 - - uid: 32559 + - uid: 33055 components: - type: Transform pos: -74.5,-9.5 parent: 2 - - uid: 32560 + - uid: 33056 components: - type: Transform pos: -73.5,-8.5 parent: 2 - - uid: 32561 + - uid: 33057 components: - type: Transform pos: -92.5,24.5 parent: 2 - - uid: 32562 + - uid: 33058 components: - type: Transform pos: -92.5,23.5 parent: 2 - - uid: 32563 + - uid: 33059 components: - type: Transform pos: -89.5,7.5 parent: 2 - - uid: 32564 + - uid: 33060 components: - type: Transform pos: -89.5,6.5 parent: 2 - - uid: 32565 + - uid: 33061 components: - type: Transform pos: -89.5,4.5 parent: 2 - - uid: 32566 + - uid: 33062 components: - type: Transform pos: -89.5,3.5 parent: 2 - - uid: 32567 + - uid: 33063 components: - type: Transform pos: -92.5,16.5 parent: 2 - - uid: 32568 + - uid: 33064 components: - type: Transform pos: -92.5,18.5 parent: 2 - - uid: 32569 + - uid: 33065 components: - type: Transform pos: -92.5,21.5 parent: 2 - - uid: 32570 + - uid: 33066 components: - type: Transform pos: -93.5,24.5 parent: 2 - - uid: 32571 + - uid: 33067 components: - type: Transform pos: -93.5,25.5 parent: 2 - - uid: 32572 + - uid: 33068 components: - type: Transform pos: -93.5,26.5 parent: 2 - - uid: 32573 + - uid: 33069 components: - type: Transform pos: -93.5,28.5 parent: 2 - - uid: 32574 + - uid: 33070 components: - type: Transform pos: -93.5,29.5 parent: 2 - - uid: 32575 + - uid: 33071 components: - type: Transform pos: -94.5,24.5 parent: 2 - - uid: 32576 + - uid: 33072 components: - type: Transform pos: -94.5,26.5 parent: 2 - - uid: 32577 + - uid: 33073 components: - type: Transform pos: -94.5,27.5 parent: 2 - - uid: 32578 + - uid: 33074 components: - type: Transform pos: -94.5,28.5 parent: 2 - - uid: 32579 + - uid: 33075 components: - type: Transform pos: -94.5,29.5 parent: 2 - - uid: 32580 + - uid: 33076 components: - type: Transform pos: -94.5,30.5 parent: 2 - - uid: 32581 + - uid: 33077 components: - type: Transform pos: -95.5,30.5 parent: 2 - - uid: 32582 - components: - - type: Transform - pos: -96.5,34.5 - parent: 2 - - uid: 32583 - components: - - type: Transform - pos: -96.5,35.5 - parent: 2 - - uid: 32584 + - uid: 33078 components: - type: Transform pos: -96.5,36.5 parent: 2 - - uid: 32585 + - uid: 33079 components: - type: Transform pos: -96.5,37.5 parent: 2 - - uid: 32586 + - uid: 33080 components: - type: Transform pos: -96.5,38.5 parent: 2 - - uid: 32587 + - uid: 33081 components: - type: Transform pos: -96.5,39.5 parent: 2 - - uid: 32588 + - uid: 33082 components: - type: Transform pos: -96.5,40.5 parent: 2 - - uid: 32589 + - uid: 33083 components: - type: Transform pos: -93.5,23.5 parent: 2 - - uid: 32590 + - uid: 33084 components: - type: Transform pos: -90.5,8.5 parent: 2 - - uid: 32591 + - uid: 33085 components: - type: Transform pos: -90.5,7.5 parent: 2 - - uid: 32592 + - uid: 33086 components: - type: Transform pos: -90.5,6.5 parent: 2 - - uid: 32593 + - uid: 33087 components: - type: Transform pos: -90.5,5.5 parent: 2 - - uid: 32594 + - uid: 33088 components: - type: Transform pos: -91.5,7.5 parent: 2 - - uid: 32595 + - uid: 33089 components: - type: Transform pos: -91.5,8.5 parent: 2 - - uid: 32596 + - uid: 33090 components: - type: Transform pos: -78.5,58.5 parent: 2 - - uid: 32597 + - uid: 33091 components: - type: Transform pos: -80.5,55.5 parent: 2 - - uid: 32598 + - uid: 33092 components: - type: Transform pos: -80.5,54.5 parent: 2 - - uid: 32599 + - uid: 33093 components: - type: Transform pos: -81.5,56.5 parent: 2 - - uid: 32600 + - uid: 33094 components: - type: Transform pos: -81.5,55.5 parent: 2 - - uid: 32601 + - uid: 33095 components: - type: Transform pos: -81.5,54.5 parent: 2 - - uid: 32602 + - uid: 33096 components: - type: Transform pos: -82.5,54.5 parent: 2 - - uid: 32603 + - uid: 33097 components: - type: Transform pos: -82.5,53.5 parent: 2 - - uid: 32604 + - uid: 33098 components: - type: Transform pos: -72.5,65.5 parent: 2 - - uid: 32605 + - uid: 33099 components: - type: Transform pos: -75.5,65.5 parent: 2 - - uid: 32606 + - uid: 33100 components: - type: Transform pos: -76.5,61.5 parent: 2 - - uid: 32607 + - uid: 33101 components: - type: Transform pos: -77.5,59.5 parent: 2 - - uid: 32608 + - uid: 33102 components: - type: Transform pos: -74.5,64.5 parent: 2 - - uid: 32609 + - uid: 33103 components: - type: Transform pos: -74.5,65.5 parent: 2 - - uid: 32610 + - uid: 33104 components: - type: Transform pos: -76.5,59.5 parent: 2 - - uid: 32611 + - uid: 33105 components: - type: Transform pos: -77.5,57.5 parent: 2 - - uid: 32612 + - uid: 33106 components: - type: Transform pos: -76.5,65.5 parent: 2 - - uid: 32613 + - uid: 33107 components: - type: Transform pos: -72.5,56.5 parent: 2 - - uid: 32614 + - uid: 33108 components: - type: Transform pos: -77.5,58.5 parent: 2 - - uid: 32615 + - uid: 33109 components: - type: Transform pos: -80.5,56.5 parent: 2 - - uid: 32616 + - uid: 33110 components: - type: Transform pos: -124.5,-14.5 parent: 2 - - uid: 32617 + - uid: 33111 components: - type: Transform pos: -76.5,64.5 parent: 2 - - uid: 32618 + - uid: 33112 components: - type: Transform pos: -73.5,65.5 parent: 2 - - uid: 32619 + - uid: 33113 components: - type: Transform pos: -74.5,53.5 parent: 2 - - uid: 32620 + - uid: 33114 components: - type: Transform pos: -73.5,52.5 parent: 2 - - uid: 32621 + - uid: 33115 components: - type: Transform pos: -71.5,58.5 parent: 2 - - uid: 32622 + - uid: 33116 components: - type: Transform pos: -71.5,57.5 parent: 2 - - uid: 32623 + - uid: 33117 components: - type: Transform pos: -74.5,52.5 parent: 2 - - uid: 32624 + - uid: 33118 components: - type: Transform pos: -70.5,58.5 parent: 2 - - uid: 32625 + - uid: 33119 components: - type: Transform pos: -69.5,58.5 parent: 2 - - uid: 32626 + - uid: 33120 components: - type: Transform pos: -68.5,58.5 parent: 2 - - uid: 32627 + - uid: 33121 components: - type: Transform pos: -67.5,58.5 parent: 2 - - uid: 32628 + - uid: 33122 components: - type: Transform pos: -55.5,60.5 parent: 2 - - uid: 32629 + - uid: 33123 components: - type: Transform pos: -66.5,58.5 parent: 2 - - uid: 32630 + - uid: 33124 components: - type: Transform pos: -55.5,61.5 parent: 2 - - uid: 32631 + - uid: 33125 components: - type: Transform pos: -54.5,61.5 parent: 2 - - uid: 32632 + - uid: 33126 components: - type: Transform pos: -54.5,60.5 parent: 2 - - uid: 32633 + - uid: 33127 components: - type: Transform pos: -73.5,50.5 parent: 2 - - uid: 32634 + - uid: 33128 components: - type: Transform pos: -56.5,59.5 parent: 2 - - uid: 32635 + - uid: 33129 components: - type: Transform pos: -56.5,60.5 parent: 2 - - uid: 32636 + - uid: 33130 components: - type: Transform pos: -56.5,61.5 parent: 2 - - uid: 32637 + - uid: 33131 components: - type: Transform pos: -54.5,59.5 parent: 2 - - uid: 32638 + - uid: 33132 components: - type: Transform pos: -64.5,57.5 parent: 2 - - uid: 32639 + - uid: 33133 components: - type: Transform pos: -60.5,-27.5 parent: 2 - - uid: 32640 + - uid: 33134 components: - type: Transform pos: -62.5,-32.5 parent: 2 - - uid: 32641 + - uid: 33135 components: - type: Transform pos: -58.5,-35.5 parent: 2 - - uid: 32642 + - uid: 33136 components: - type: Transform pos: -64.5,64.5 parent: 2 - - uid: 32643 + - uid: 33137 components: - type: Transform pos: -64.5,58.5 parent: 2 - - uid: 32644 + - uid: 33138 components: - type: Transform pos: -58.5,-34.5 parent: 2 - - uid: 32645 + - uid: 33139 components: - type: Transform pos: -61.5,-27.5 parent: 2 - - uid: 32646 + - uid: 33140 components: - type: Transform pos: -56.5,-26.5 parent: 2 - - uid: 32647 + - uid: 33141 components: - type: Transform pos: -63.5,64.5 parent: 2 - - uid: 32648 + - uid: 33142 components: - type: Transform pos: -64.5,59.5 parent: 2 - - uid: 32649 - components: - - type: Transform - pos: -75.5,51.5 - parent: 2 - - uid: 32650 + - uid: 33143 components: - type: Transform pos: -62.5,64.5 parent: 2 - - uid: 32651 + - uid: 33144 components: - type: Transform pos: -57.5,60.5 parent: 2 - - uid: 32652 + - uid: 33145 components: - type: Transform pos: -57.5,59.5 parent: 2 - - uid: 32653 + - uid: 33146 components: - type: Transform pos: -57.5,61.5 parent: 2 - - uid: 32654 + - uid: 33147 components: - type: Transform pos: -61.5,58.5 parent: 2 - - uid: 32655 + - uid: 33148 components: - type: Transform pos: -61.5,60.5 parent: 2 - - uid: 32656 + - uid: 33149 components: - type: Transform pos: -61.5,61.5 parent: 2 - - uid: 32657 + - uid: 33150 components: - type: Transform pos: -61.5,62.5 parent: 2 - - uid: 32658 + - uid: 33151 components: - type: Transform pos: -61.5,63.5 parent: 2 - - uid: 32659 + - uid: 33152 components: - type: Transform pos: -61.5,64.5 parent: 2 - - uid: 32660 + - uid: 33153 components: - type: Transform pos: -60.5,60.5 parent: 2 - - uid: 32661 + - uid: 33154 components: - type: Transform pos: -60.5,61.5 parent: 2 - - uid: 32662 + - uid: 33155 components: - type: Transform pos: -60.5,62.5 parent: 2 - - uid: 32663 + - uid: 33156 components: - type: Transform pos: -60.5,63.5 parent: 2 - - uid: 32664 + - uid: 33157 components: - type: Transform pos: -60.5,64.5 parent: 2 - - uid: 32665 + - uid: 33158 components: - type: Transform pos: -57.5,58.5 parent: 2 - - uid: 32666 + - uid: 33159 components: - type: Transform pos: -54.5,58.5 parent: 2 - - uid: 32667 + - uid: 33160 components: - type: Transform pos: -53.5,58.5 parent: 2 - - uid: 32668 + - uid: 33161 components: - type: Transform pos: -52.5,58.5 parent: 2 - - uid: 32669 + - uid: 33162 components: - type: Transform pos: -48.5,59.5 parent: 2 - - uid: 32670 + - uid: 33163 components: - type: Transform pos: -48.5,60.5 parent: 2 - - uid: 32671 + - uid: 33164 components: - type: Transform pos: -48.5,61.5 parent: 2 - - uid: 32672 + - uid: 33165 components: - type: Transform pos: -47.5,59.5 parent: 2 - - uid: 32673 + - uid: 33166 components: - type: Transform pos: -47.5,60.5 parent: 2 - - uid: 32674 + - uid: 33167 components: - type: Transform pos: -47.5,61.5 parent: 2 - - uid: 32675 + - uid: 33168 components: - type: Transform pos: -46.5,61.5 parent: 2 - - uid: 32676 + - uid: 33169 components: - type: Transform pos: -46.5,62.5 parent: 2 - - uid: 32677 + - uid: 33170 components: - type: Transform pos: -46.5,63.5 parent: 2 - - uid: 32678 + - uid: 33171 components: - type: Transform pos: -46.5,64.5 parent: 2 - - uid: 32679 + - uid: 33172 components: - type: Transform pos: -45.5,63.5 parent: 2 - - uid: 32680 + - uid: 33173 components: - type: Transform pos: -45.5,64.5 parent: 2 - - uid: 32681 + - uid: 33174 components: - type: Transform pos: -45.5,65.5 parent: 2 - - uid: 32682 + - uid: 33175 components: - type: Transform pos: -44.5,58.5 parent: 2 - - uid: 32683 + - uid: 33176 components: - type: Transform pos: -44.5,59.5 parent: 2 - - uid: 32684 + - uid: 33177 components: - type: Transform pos: -44.5,64.5 parent: 2 - - uid: 32685 + - uid: 33178 components: - type: Transform pos: -44.5,65.5 parent: 2 - - uid: 32686 + - uid: 33179 components: - type: Transform pos: -44.5,66.5 parent: 2 - - uid: 32687 + - uid: 33180 components: - type: Transform pos: -44.5,69.5 parent: 2 - - uid: 32688 + - uid: 33181 components: - type: Transform pos: -46.5,69.5 parent: 2 - - uid: 32689 + - uid: 33182 components: - type: Transform pos: -43.5,58.5 parent: 2 - - uid: 32690 + - uid: 33183 components: - type: Transform pos: -43.5,59.5 parent: 2 - - uid: 32691 + - uid: 33184 components: - type: Transform pos: -43.5,60.5 parent: 2 - - uid: 32692 + - uid: 33185 components: - type: Transform pos: -43.5,61.5 parent: 2 - - uid: 32693 + - uid: 33186 components: - type: Transform pos: -43.5,64.5 parent: 2 - - uid: 32694 + - uid: 33187 components: - type: Transform pos: -43.5,65.5 parent: 2 - - uid: 32695 + - uid: 33188 components: - type: Transform pos: -43.5,66.5 parent: 2 - - uid: 32696 + - uid: 33189 components: - type: Transform pos: -43.5,67.5 parent: 2 - - uid: 32697 + - uid: 33190 components: - type: Transform pos: -43.5,68.5 parent: 2 - - uid: 32698 + - uid: 33191 components: - type: Transform pos: -43.5,70.5 parent: 2 - - uid: 32699 + - uid: 33192 components: - type: Transform pos: -45.5,69.5 parent: 2 - - uid: 32700 + - uid: 33193 components: - type: Transform pos: -42.5,58.5 parent: 2 - - uid: 32701 + - uid: 33194 components: - type: Transform pos: -42.5,59.5 parent: 2 - - uid: 32702 + - uid: 33195 components: - type: Transform pos: -42.5,64.5 parent: 2 - - uid: 32703 - components: - - type: Transform - pos: -42.5,65.5 - parent: 2 - - uid: 32704 + - uid: 33196 components: - type: Transform pos: -42.5,66.5 parent: 2 - - uid: 32705 + - uid: 33197 components: - type: Transform pos: -42.5,68.5 parent: 2 - - uid: 32706 - components: - - type: Transform - pos: -42.5,69.5 - parent: 2 - - uid: 32707 - components: - - type: Transform - pos: -41.5,64.5 - parent: 2 - - uid: 32708 - components: - - type: Transform - pos: -41.5,65.5 - parent: 2 - - uid: 32709 - components: - - type: Transform - pos: -41.5,71.5 - parent: 2 - - uid: 32710 - components: - - type: Transform - pos: -41.5,72.5 - parent: 2 - - uid: 32711 - components: - - type: Transform - pos: -40.5,64.5 - parent: 2 - - uid: 32712 - components: - - type: Transform - pos: -40.5,65.5 - parent: 2 - - uid: 32713 - components: - - type: Transform - pos: -40.5,66.5 - parent: 2 - - uid: 32714 - components: - - type: Transform - pos: -40.5,67.5 - parent: 2 - - uid: 32715 - components: - - type: Transform - pos: -40.5,71.5 - parent: 2 - - uid: 32716 - components: - - type: Transform - pos: -39.5,63.5 - parent: 2 - - uid: 32717 - components: - - type: Transform - pos: -39.5,65.5 - parent: 2 - - uid: 32718 - components: - - type: Transform - pos: -39.5,66.5 - parent: 2 - - uid: 32719 - components: - - type: Transform - pos: -39.5,68.5 - parent: 2 - - uid: 32720 - components: - - type: Transform - pos: -39.5,70.5 - parent: 2 - - uid: 32721 - components: - - type: Transform - pos: -39.5,71.5 - parent: 2 - - uid: 32722 - components: - - type: Transform - pos: -39.5,72.5 - parent: 2 - - uid: 32723 + - uid: 33198 components: - type: Transform - pos: -92.5,54.5 + pos: -27.5,70.5 parent: 2 - - uid: 32724 + - uid: 33199 components: - type: Transform pos: -92.5,53.5 parent: 2 - - uid: 32725 + - uid: 33200 components: - type: Transform pos: -92.5,52.5 parent: 2 - - uid: 32726 + - uid: 33201 components: - type: Transform pos: -89.5,51.5 parent: 2 - - uid: 32727 + - uid: 33202 components: - type: Transform pos: -92.5,49.5 parent: 2 - - uid: 32728 + - uid: 33203 components: - type: Transform pos: -92.5,48.5 parent: 2 - - uid: 32729 + - uid: 33204 components: - type: Transform pos: -92.5,46.5 parent: 2 - - uid: 32730 + - uid: 33205 components: - type: Transform pos: -92.5,45.5 parent: 2 - - uid: 32731 + - uid: 33206 components: - type: Transform pos: -91.5,43.5 parent: 2 - - uid: 32732 + - uid: 33207 components: - type: Transform pos: -91.5,44.5 parent: 2 - - uid: 32733 + - uid: 33208 components: - type: Transform pos: -91.5,45.5 parent: 2 - - uid: 32734 + - uid: 33209 components: - type: Transform pos: -91.5,46.5 parent: 2 - - uid: 32735 + - uid: 33210 components: - type: Transform pos: -91.5,47.5 parent: 2 - - uid: 32736 + - uid: 33211 components: - type: Transform pos: -91.5,48.5 parent: 2 - - uid: 32737 + - uid: 33212 components: - type: Transform pos: -91.5,49.5 parent: 2 - - uid: 32738 + - uid: 33213 components: - type: Transform pos: -73.5,51.5 parent: 2 - - uid: 32739 + - uid: 33214 components: - type: Transform pos: -72.5,52.5 parent: 2 - - uid: 32740 + - uid: 33215 components: - type: Transform pos: -72.5,53.5 parent: 2 - - uid: 32741 - components: - - type: Transform - pos: -74.5,50.5 - parent: 2 - - uid: 32742 + - uid: 33216 components: - type: Transform pos: -74.5,51.5 parent: 2 - - uid: 32743 + - uid: 33217 components: - type: Transform pos: -75.5,52.5 parent: 2 - - uid: 32744 + - uid: 33218 components: - type: Transform pos: -75.5,50.5 parent: 2 - - uid: 32745 - components: - - type: Transform - pos: -100.5,42.5 - parent: 2 - - uid: 32746 + - uid: 33219 components: - type: Transform pos: -90.5,49.5 parent: 2 - - uid: 32747 + - uid: 33220 components: - type: Transform pos: -90.5,48.5 parent: 2 - - uid: 32748 + - uid: 33221 components: - type: Transform pos: -90.5,47.5 parent: 2 - - uid: 32749 + - uid: 33222 components: - type: Transform pos: -89.5,48.5 parent: 2 - - uid: 32750 - components: - - type: Transform - pos: -99.5,41.5 - parent: 2 - - uid: 32751 + - uid: 33223 components: - type: Transform pos: -89.5,53.5 parent: 2 - - uid: 32752 + - uid: 33224 components: - type: Transform pos: -71.5,65.5 parent: 2 - - uid: 32753 + - uid: 33225 components: - type: Transform pos: -51.5,31.5 parent: 2 - - uid: 32754 + - uid: 33226 components: - type: Transform pos: -89.5,52.5 parent: 2 - - uid: 32755 + - uid: 33227 components: - type: Transform pos: -84.5,56.5 parent: 2 - - uid: 32756 + - uid: 33228 components: - type: Transform pos: -78.5,64.5 parent: 2 - - uid: 32757 + - uid: 33229 components: - type: Transform pos: -83.5,58.5 parent: 2 - - uid: 32758 + - uid: 33230 components: - type: Transform pos: -81.5,69.5 parent: 2 - - uid: 32759 + - uid: 33231 components: - type: Transform pos: -82.5,66.5 parent: 2 - - uid: 32760 + - uid: 33232 components: - type: Transform pos: -82.5,58.5 parent: 2 - - uid: 32761 + - uid: 33233 components: - type: Transform pos: -63.5,60.5 parent: 2 - - uid: 32762 + - uid: 33234 components: - type: Transform pos: -64.5,60.5 parent: 2 - - uid: 32763 + - uid: 33235 components: - type: Transform pos: -78.5,56.5 parent: 2 - - uid: 32764 + - uid: 33236 components: - type: Transform pos: -78.5,57.5 parent: 2 - - uid: 32765 + - uid: 33237 components: - type: Transform pos: -79.5,57.5 parent: 2 - - uid: 32766 + - uid: 33238 components: - type: Transform pos: -74.5,58.5 parent: 2 - - uid: 32767 + - uid: 33239 components: - type: Transform pos: -79.5,56.5 parent: 2 - - uid: 32768 + - uid: 33240 components: - type: Transform pos: -78.5,69.5 parent: 2 - - uid: 32769 + - uid: 33241 components: - type: Transform pos: -77.5,60.5 parent: 2 - - uid: 32770 + - uid: 33242 components: - type: Transform pos: -78.5,59.5 parent: 2 - - uid: 32771 + - uid: 33243 components: - type: Transform pos: -78.5,66.5 parent: 2 - - uid: 32772 + - uid: 33244 components: - type: Transform pos: -78.5,65.5 parent: 2 - - uid: 32773 + - uid: 33245 components: - type: Transform pos: -77.5,69.5 parent: 2 - - uid: 32774 + - uid: 33246 components: - type: Transform pos: -76.5,58.5 parent: 2 - - uid: 32775 + - uid: 33247 components: - type: Transform pos: -81.5,59.5 parent: 2 - - uid: 32776 + - uid: 33248 components: - type: Transform pos: -78.5,67.5 parent: 2 - - uid: 32777 + - uid: 33249 components: - type: Transform pos: -54.5,57.5 parent: 2 - - uid: 32778 + - uid: 33250 components: - type: Transform pos: -54.5,56.5 parent: 2 - - uid: 32779 + - uid: 33251 components: - type: Transform pos: -53.5,57.5 parent: 2 - - uid: 32780 + - uid: 33252 components: - type: Transform pos: -53.5,56.5 parent: 2 - - uid: 32781 + - uid: 33253 components: - type: Transform pos: -52.5,57.5 parent: 2 - - uid: 32782 + - uid: 33254 components: - type: Transform pos: -52.5,56.5 parent: 2 - - uid: 32783 + - uid: 33255 components: - type: Transform pos: -52.5,55.5 parent: 2 - - uid: 32784 + - uid: 33256 components: - type: Transform pos: -46.5,57.5 parent: 2 - - uid: 32785 + - uid: 33257 components: - type: Transform pos: -46.5,56.5 parent: 2 - - uid: 32786 + - uid: 33258 components: - type: Transform pos: -45.5,57.5 parent: 2 - - uid: 32787 + - uid: 33259 components: - type: Transform pos: -45.5,56.5 parent: 2 - - uid: 32788 + - uid: 33260 components: - type: Transform pos: -44.5,57.5 parent: 2 - - uid: 32789 + - uid: 33261 components: - type: Transform pos: -44.5,56.5 parent: 2 - - uid: 32790 + - uid: 33262 components: - type: Transform pos: -43.5,57.5 parent: 2 - - uid: 32791 + - uid: 33263 components: - type: Transform pos: -43.5,56.5 parent: 2 - - uid: 32792 + - uid: 33264 components: - type: Transform pos: -42.5,57.5 parent: 2 - - uid: 32793 + - uid: 33265 components: - type: Transform pos: -42.5,56.5 parent: 2 - - uid: 32794 + - uid: 33266 components: - type: Transform - pos: 79.5,-28.5 + pos: 80.5,-30.5 parent: 2 - - uid: 32795 + - uid: 33267 components: - type: Transform pos: 84.5,-31.5 parent: 2 - - uid: 32796 + - uid: 33268 components: - type: Transform pos: 69.5,4.5 parent: 2 - - uid: 32797 + - uid: 33269 components: - type: Transform pos: 91.5,-31.5 parent: 2 - - uid: 32798 + - uid: 33270 components: - type: Transform pos: -38.5,47.5 parent: 2 - - uid: 32799 + - uid: 33271 components: - type: Transform pos: 53.5,36.5 parent: 2 - - uid: 32800 + - uid: 33272 components: - type: Transform pos: -37.5,52.5 parent: 2 - - uid: 32801 + - uid: 33273 components: - type: Transform pos: -38.5,52.5 parent: 2 - - uid: 32802 + - uid: 33274 components: - type: Transform pos: -37.5,51.5 parent: 2 - - uid: 32803 + - uid: 33275 components: - type: Transform pos: -52.5,54.5 parent: 2 - - uid: 32804 + - uid: 33276 components: - type: Transform pos: -52.5,53.5 parent: 2 - - uid: 32805 + - uid: 33277 components: - type: Transform pos: -53.5,54.5 parent: 2 - - uid: 32806 + - uid: 33278 components: - type: Transform pos: -53.5,53.5 parent: 2 - - uid: 32807 + - uid: 33279 components: - type: Transform pos: -53.5,52.5 parent: 2 - - uid: 32808 + - uid: 33280 components: - type: Transform pos: -53.5,51.5 parent: 2 - - uid: 32809 + - uid: 33281 components: - type: Transform pos: -53.5,50.5 parent: 2 - - uid: 32810 + - uid: 33282 components: - type: Transform pos: -54.5,54.5 parent: 2 - - uid: 32811 + - uid: 33283 components: - type: Transform pos: -54.5,53.5 parent: 2 - - uid: 32812 + - uid: 33284 components: - type: Transform pos: -54.5,52.5 parent: 2 - - uid: 32813 + - uid: 33285 components: - type: Transform pos: -54.5,51.5 parent: 2 - - uid: 32814 + - uid: 33286 components: - type: Transform pos: -54.5,50.5 parent: 2 - - uid: 32815 + - uid: 33287 components: - type: Transform pos: -54.5,49.5 parent: 2 - - uid: 32816 + - uid: 33288 components: - type: Transform pos: -55.5,53.5 parent: 2 - - uid: 32817 + - uid: 33289 components: - type: Transform pos: -55.5,52.5 parent: 2 - - uid: 32818 + - uid: 33290 components: - type: Transform pos: -55.5,51.5 parent: 2 - - uid: 32819 + - uid: 33291 components: - type: Transform pos: -55.5,50.5 parent: 2 - - uid: 32820 + - uid: 33292 components: - type: Transform pos: -55.5,49.5 parent: 2 - - uid: 32821 + - uid: 33293 components: - type: Transform pos: -47.5,44.5 parent: 2 - - uid: 32822 + - uid: 33294 components: - type: Transform pos: -46.5,44.5 parent: 2 - - uid: 32823 + - uid: 33295 components: - type: Transform pos: -44.5,43.5 parent: 2 - - uid: 32824 + - uid: 33296 components: - type: Transform pos: -43.5,43.5 parent: 2 - - uid: 32825 + - uid: 33297 components: - type: Transform pos: -42.5,44.5 parent: 2 - - uid: 32826 + - uid: 33298 components: - type: Transform pos: -42.5,43.5 parent: 2 - - uid: 32827 + - uid: 33299 components: - type: Transform pos: 70.5,3.5 parent: 2 - - uid: 32828 + - uid: 33300 components: - type: Transform pos: 70.5,2.5 parent: 2 - - uid: 32829 + - uid: 33301 components: - type: Transform pos: 18.5,-28.5 parent: 2 - - uid: 32830 + - uid: 33302 components: - type: Transform pos: 49.5,40.5 parent: 2 - - uid: 32831 + - uid: 33303 components: - type: Transform pos: 34.5,63.5 parent: 2 - - uid: 32832 + - uid: 33304 components: - type: Transform pos: 34.5,62.5 parent: 2 - - uid: 32833 + - uid: 33305 components: - type: Transform pos: 35.5,62.5 parent: 2 - - uid: 32834 + - uid: 33306 components: - type: Transform pos: 39.5,56.5 parent: 2 - - uid: 32835 + - uid: 33307 components: - type: Transform pos: 55.5,45.5 parent: 2 - - uid: 32836 + - uid: 33308 components: - type: Transform pos: 60.5,44.5 parent: 2 - - uid: 32837 + - uid: 33309 components: - type: Transform pos: 48.5,50.5 parent: 2 - - uid: 32838 + - uid: 33310 components: - type: Transform pos: 33.5,66.5 parent: 2 - - uid: 32839 + - uid: 33311 components: - type: Transform pos: 59.5,44.5 parent: 2 - - uid: 32840 + - uid: 33312 components: - type: Transform pos: 34.5,67.5 parent: 2 - - uid: 32841 + - uid: 33313 components: - type: Transform pos: 59.5,43.5 parent: 2 - - uid: 32842 + - uid: 33314 components: - type: Transform pos: 54.5,47.5 parent: 2 - - uid: 32843 + - uid: 33315 components: - type: Transform pos: 55.5,46.5 parent: 2 - - uid: 32844 + - uid: 33316 components: - type: Transform pos: 56.5,35.5 parent: 2 - - uid: 32845 + - uid: 33317 components: - type: Transform pos: 46.5,40.5 parent: 2 - - uid: 32846 + - uid: 33318 components: - type: Transform pos: 34.5,58.5 parent: 2 - - uid: 32847 + - uid: 33319 components: - type: Transform pos: 53.5,39.5 parent: 2 - - uid: 32848 + - uid: 33320 components: - type: Transform pos: 53.5,37.5 parent: 2 - - uid: 32849 + - uid: 33321 components: - type: Transform pos: 55.5,28.5 parent: 2 - - uid: 32850 + - uid: 33322 components: - type: Transform pos: 33.5,60.5 parent: 2 - - uid: 32851 + - uid: 33323 components: - type: Transform pos: 33.5,62.5 parent: 2 - - uid: 32852 + - uid: 33324 components: - type: Transform pos: 33.5,61.5 parent: 2 - - uid: 32853 + - uid: 33325 components: - type: Transform pos: 36.5,63.5 parent: 2 - - uid: 32854 + - uid: 33326 components: - type: Transform pos: 26.5,-59.5 parent: 2 - - uid: 32855 + - uid: 33327 components: - type: Transform pos: 37.5,63.5 parent: 2 - - uid: 32856 + - uid: 33328 components: - type: Transform pos: 36.5,62.5 parent: 2 - - uid: 32857 + - uid: 33329 components: - type: Transform pos: 51.5,28.5 parent: 2 - - uid: 32858 + - uid: 33330 components: - type: Transform pos: 46.5,7.5 parent: 2 - - uid: 32859 + - uid: 33331 components: - type: Transform pos: 51.5,29.5 parent: 2 - - uid: 32860 + - uid: 33332 components: - type: Transform pos: 50.5,31.5 parent: 2 - - uid: 32861 + - uid: 33333 components: - type: Transform pos: 49.5,32.5 parent: 2 - - uid: 32862 + - uid: 33334 components: - type: Transform pos: 57.5,-54.5 parent: 2 - - uid: 32863 + - uid: 33335 components: - type: Transform pos: 64.5,-18.5 parent: 2 - - uid: 32864 + - uid: 33336 components: - type: Transform pos: 53.5,27.5 parent: 2 - - uid: 32865 + - uid: 33337 components: - type: Transform pos: 53.5,26.5 parent: 2 - - uid: 32866 + - uid: 33338 components: - type: Transform pos: 52.5,28.5 parent: 2 - - uid: 32867 + - uid: 33339 components: - type: Transform pos: 53.5,29.5 parent: 2 - - uid: 32868 + - uid: 33340 components: - type: Transform pos: 53.5,28.5 parent: 2 - - uid: 32869 + - uid: 33341 components: - type: Transform pos: 97.5,-34.5 parent: 2 - - uid: 32870 + - uid: 33342 components: - type: Transform pos: 46.5,8.5 parent: 2 - - uid: 32871 + - uid: 33343 components: - type: Transform pos: 45.5,8.5 parent: 2 - - uid: 32872 + - uid: 33344 components: - type: Transform pos: 55.5,29.5 parent: 2 - - uid: 32873 + - uid: 33345 components: - type: Transform pos: 21.5,-56.5 parent: 2 - - uid: 32874 + - uid: 33346 components: - type: Transform pos: 85.5,-36.5 parent: 2 - - uid: 32875 + - uid: 33347 components: - type: Transform pos: 43.5,15.5 parent: 2 - - uid: 32876 + - uid: 33348 components: - type: Transform pos: 52.5,29.5 parent: 2 - - uid: 32877 + - uid: 33349 components: - type: Transform pos: -20.5,31.5 parent: 2 - - uid: 32878 + - uid: 33350 components: - type: Transform pos: 65.5,-10.5 parent: 2 - - uid: 32879 + - uid: 33351 components: - type: Transform pos: 50.5,32.5 parent: 2 - - uid: 32880 + - uid: 33352 components: - type: Transform pos: 49.5,-28.5 parent: 2 - - uid: 32881 + - uid: 33353 components: - type: Transform pos: 69.5,2.5 parent: 2 - - uid: 32882 + - uid: 33354 components: - type: Transform pos: 53.5,20.5 parent: 2 - - uid: 32883 + - uid: 33355 components: - type: Transform pos: 41.5,15.5 parent: 2 - - uid: 32884 + - uid: 33356 components: - type: Transform pos: 50.5,30.5 parent: 2 - - uid: 32885 + - uid: 33357 components: - type: Transform pos: 53.5,21.5 parent: 2 - - uid: 32886 + - uid: 33358 components: - type: Transform pos: 48.5,32.5 parent: 2 - - uid: 32887 + - uid: 33359 components: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 32888 + - uid: 33360 components: - type: Transform pos: 95.5,-31.5 parent: 2 - - uid: 32889 + - uid: 33361 components: - type: Transform pos: 48.5,33.5 parent: 2 - - uid: 32890 - components: - - type: Transform - pos: 56.5,-20.5 - parent: 2 - - uid: 32891 + - uid: 33362 components: - type: Transform pos: 50.5,15.5 parent: 2 - - uid: 32892 + - uid: 33363 components: - type: Transform pos: 50.5,14.5 parent: 2 - - uid: 32893 + - uid: 33364 components: - type: Transform pos: 49.5,14.5 parent: 2 - - uid: 32894 + - uid: 33365 components: - type: Transform pos: 83.5,-30.5 parent: 2 - - uid: 32895 + - uid: 33366 components: - type: Transform pos: 47.5,14.5 parent: 2 - - uid: 32896 + - uid: 33367 components: - type: Transform pos: 53.5,22.5 parent: 2 - - uid: 32897 + - uid: 33368 components: - type: Transform pos: 53.5,25.5 parent: 2 - - uid: 32898 + - uid: 33369 components: - type: Transform pos: 52.5,25.5 parent: 2 - - uid: 32899 + - uid: 33370 components: - type: Transform pos: 52.5,16.5 parent: 2 - - uid: 32900 + - uid: 33371 components: - type: Transform pos: 52.5,36.5 parent: 2 - - uid: 32901 + - uid: 33372 components: - type: Transform pos: 52.5,35.5 parent: 2 - - uid: 32902 - components: - - type: Transform - pos: 40.5,46.5 - parent: 2 - - uid: 32903 - components: - - type: Transform - pos: 52.5,27.5 - parent: 2 - - uid: 32904 - components: - - type: Transform - pos: 46.5,14.5 - parent: 2 - - uid: 32905 - components: - - type: Transform - pos: 46.5,13.5 - parent: 2 - - uid: 32906 - components: - - type: Transform - pos: 46.5,12.5 - parent: 2 - - uid: 32907 - components: - - type: Transform - pos: 49.5,15.5 - parent: 2 - - uid: 32908 - components: - - type: Transform - pos: 48.5,14.5 - parent: 2 - - uid: 32909 - components: - - type: Transform - pos: 97.5,-31.5 - parent: 2 - - uid: 32910 - components: - - type: Transform - pos: 40.5,15.5 - parent: 2 - - uid: 32911 - components: - - type: Transform - pos: 51.5,36.5 - parent: 2 - - uid: 32912 - components: - - type: Transform - pos: 52.5,17.5 - parent: 2 - - uid: 32913 - components: - - type: Transform - pos: 52.5,15.5 - parent: 2 - - uid: 32914 - components: - - type: Transform - pos: 52.5,38.5 - parent: 2 - - uid: 32915 - components: - - type: Transform - pos: 52.5,37.5 - parent: 2 - - uid: 32916 - components: - - type: Transform - pos: 52.5,39.5 - parent: 2 - - uid: 32917 - components: - - type: Transform - pos: 42.5,46.5 - parent: 2 - - uid: 32918 - components: - - type: Transform - pos: 43.5,46.5 - parent: 2 - - uid: 32919 - components: - - type: Transform - pos: 52.5,26.5 - parent: 2 - - uid: 32920 - components: - - type: Transform - pos: 10.5,-56.5 - parent: 2 - - uid: 32921 - components: - - type: Transform - pos: 45.5,14.5 - parent: 2 - - uid: 32922 - components: - - type: Transform - pos: 46.5,6.5 - parent: 2 - - uid: 32923 - components: - - type: Transform - pos: 45.5,13.5 - parent: 2 - - uid: 32924 - components: - - type: Transform - pos: -52.5,20.5 - parent: 2 - - uid: 32925 - components: - - type: Transform - pos: -52.5,19.5 - parent: 2 - - uid: 32926 - components: - - type: Transform - pos: -55.5,22.5 - parent: 2 - - uid: 32927 - components: - - type: Transform - pos: 32.5,40.5 - parent: 2 - - uid: 32928 + - uid: 33373 components: - type: Transform - pos: -38.5,65.5 + pos: 40.5,46.5 parent: 2 - - uid: 32929 + - uid: 33374 components: - type: Transform - pos: -38.5,64.5 + pos: 52.5,27.5 parent: 2 - - uid: 32930 + - uid: 33375 components: - type: Transform - pos: -38.5,63.5 + pos: 46.5,14.5 parent: 2 - - uid: 32931 + - uid: 33376 components: - type: Transform - pos: -37.5,63.5 + pos: 46.5,13.5 parent: 2 - - uid: 32932 + - uid: 33377 components: - type: Transform - pos: -70.5,-25.5 + pos: 46.5,12.5 parent: 2 - - uid: 32933 + - uid: 33378 components: - type: Transform - pos: -32.5,68.5 + pos: 49.5,15.5 parent: 2 - - uid: 32934 + - uid: 33379 components: - type: Transform - pos: -32.5,67.5 + pos: 48.5,14.5 parent: 2 - - uid: 32935 + - uid: 33380 components: - type: Transform - pos: -32.5,66.5 + pos: 97.5,-31.5 parent: 2 - - uid: 32936 + - uid: 33381 components: - type: Transform - pos: -32.5,65.5 + pos: 40.5,15.5 parent: 2 - - uid: 32937 + - uid: 33382 components: - type: Transform - pos: -34.5,62.5 + pos: 51.5,36.5 parent: 2 - - uid: 32938 + - uid: 33383 components: - type: Transform - pos: -35.5,64.5 + pos: 52.5,17.5 parent: 2 - - uid: 32939 + - uid: 33384 components: - type: Transform - pos: -32.5,64.5 + pos: 52.5,15.5 parent: 2 - - uid: 32940 + - uid: 33385 components: - type: Transform - pos: -37.5,70.5 + pos: 52.5,38.5 parent: 2 - - uid: 32941 + - uid: 33386 components: - type: Transform - pos: -35.5,63.5 + pos: 52.5,37.5 parent: 2 - - uid: 32942 + - uid: 33387 components: - type: Transform - pos: -35.5,69.5 + pos: 52.5,39.5 parent: 2 - - uid: 32943 + - uid: 33388 components: - type: Transform - pos: -64.5,-23.5 + pos: 42.5,46.5 parent: 2 - - uid: 32944 + - uid: 33389 components: - type: Transform - pos: -37.5,73.5 + pos: 43.5,46.5 parent: 2 - - uid: 32945 + - uid: 33390 components: - type: Transform - pos: -37.5,72.5 + pos: 52.5,26.5 parent: 2 - - uid: 32946 + - uid: 33391 components: - type: Transform - pos: -37.5,69.5 + pos: 10.5,-56.5 parent: 2 - - uid: 32947 + - uid: 33392 components: - type: Transform - pos: 66.5,-8.5 + pos: 45.5,14.5 parent: 2 - - uid: 32948 + - uid: 33393 components: - type: Transform - pos: -35.5,70.5 + pos: 46.5,6.5 parent: 2 - - uid: 32949 + - uid: 33394 components: - type: Transform - pos: -36.5,63.5 + pos: -55.5,22.5 parent: 2 - - uid: 32950 + - uid: 33395 components: - type: Transform - pos: -26.5,72.5 + pos: 32.5,40.5 parent: 2 - - uid: 32951 + - uid: 33396 components: - type: Transform - pos: -37.5,67.5 + pos: -70.5,-25.5 parent: 2 - - uid: 32952 + - uid: 33397 components: - type: Transform - pos: -37.5,68.5 + pos: -33.5,60.5 parent: 2 - - uid: 32953 + - uid: 33398 components: - type: Transform - pos: -65.5,-23.5 + pos: -34.5,62.5 parent: 2 - - uid: 32954 + - uid: 33399 components: - type: Transform - pos: -35.5,62.5 + pos: -41.5,63.5 parent: 2 - - uid: 32955 + - uid: 33400 components: - type: Transform - pos: -35.5,71.5 + pos: -33.5,70.5 parent: 2 - - uid: 32956 + - uid: 33401 components: - type: Transform - pos: -35.5,72.5 + pos: -64.5,-23.5 parent: 2 - - uid: 32957 + - uid: 33402 components: - type: Transform - pos: -35.5,73.5 + pos: 66.5,-8.5 parent: 2 - - uid: 32958 + - uid: 33403 components: - type: Transform - pos: -34.5,70.5 + pos: -26.5,72.5 parent: 2 - - uid: 32959 + - uid: 33404 components: - type: Transform - pos: -34.5,71.5 + pos: -38.5,73.5 parent: 2 - - uid: 32960 + - uid: 33405 components: - type: Transform - pos: -33.5,66.5 + pos: -65.5,-23.5 parent: 2 - - uid: 32961 + - uid: 33406 components: - type: Transform - pos: -33.5,63.5 + pos: -42.5,65.5 parent: 2 - - uid: 32962 + - uid: 33407 components: - type: Transform - pos: 97.5,-32.5 + pos: -30.5,72.5 parent: 2 - - uid: 32963 + - uid: 33408 components: - type: Transform - pos: -38.5,66.5 + pos: 97.5,-32.5 parent: 2 - - uid: 32964 + - uid: 33409 components: - type: Transform pos: 84.5,-29.5 parent: 2 - - uid: 32965 + - uid: 33410 components: - type: Transform pos: 97.5,-33.5 parent: 2 - - uid: 32966 + - uid: 33411 components: - type: Transform pos: -17.5,31.5 parent: 2 - - uid: 32967 + - uid: 33412 components: - type: Transform pos: 50.5,-46.5 parent: 2 - - uid: 32968 + - uid: 33413 components: - type: Transform pos: 82.5,-30.5 parent: 2 - - uid: 32969 + - uid: 33414 components: - type: Transform pos: 97.5,-48.5 parent: 2 - - uid: 32970 + - uid: 33415 components: - type: Transform pos: 97.5,-38.5 parent: 2 - - uid: 32971 + - uid: 33416 components: - type: Transform pos: 58.5,-52.5 parent: 2 - - uid: 32972 + - uid: 33417 components: - type: Transform pos: -36.5,28.5 parent: 2 - - uid: 32973 + - uid: 33418 components: - type: Transform pos: -40.5,28.5 parent: 2 - - uid: 32974 + - uid: 33419 components: - type: Transform pos: -35.5,18.5 parent: 2 - - uid: 32975 + - uid: 33420 components: - type: Transform pos: -18.5,31.5 parent: 2 - - uid: 32976 + - uid: 33421 components: - type: Transform pos: -55.5,21.5 parent: 2 - - uid: 32977 + - uid: 33422 components: - type: Transform pos: -55.5,20.5 parent: 2 - - uid: 32978 + - uid: 33423 components: - type: Transform pos: 58.5,-46.5 parent: 2 - - uid: 32979 + - uid: 33424 components: - type: Transform pos: 59.5,-50.5 parent: 2 - - uid: 32980 + - uid: 33425 components: - type: Transform pos: -30.5,18.5 parent: 2 - - uid: 32981 + - uid: 33426 components: - type: Transform pos: 53.5,-46.5 parent: 2 - - uid: 32982 + - uid: 33427 components: - type: Transform pos: -36.5,19.5 parent: 2 - - uid: 32983 + - uid: 33428 components: - type: Transform pos: -35.5,28.5 parent: 2 - - uid: 32984 + - uid: 33429 components: - type: Transform pos: -51.5,20.5 parent: 2 - - uid: 32985 + - uid: 33430 components: - type: Transform pos: -51.5,21.5 parent: 2 - - uid: 32986 - components: - - type: Transform - pos: -50.5,19.5 - parent: 2 - - uid: 32987 + - uid: 33431 components: - type: Transform pos: 33.5,40.5 parent: 2 - - uid: 32988 + - uid: 33432 components: - type: Transform pos: -35.5,19.5 parent: 2 - - uid: 32989 - components: - - type: Transform - pos: -51.5,19.5 - parent: 2 - - uid: 32990 + - uid: 33433 components: - type: Transform pos: 35.5,38.5 parent: 2 - - uid: 32991 + - uid: 33434 components: - type: Transform pos: 36.5,36.5 parent: 2 - - uid: 32992 + - uid: 33435 components: - type: Transform pos: 35.5,39.5 parent: 2 - - uid: 32993 + - uid: 33436 components: - type: Transform pos: 36.5,35.5 parent: 2 - - uid: 32994 + - uid: 33437 components: - type: Transform pos: 35.5,36.5 parent: 2 - - uid: 32995 + - uid: 33438 components: - type: Transform pos: 36.5,38.5 parent: 2 - - uid: 32996 + - uid: 33439 components: - type: Transform pos: 85.5,-48.5 parent: 2 - - uid: 32997 + - uid: 33440 components: - type: Transform pos: 59.5,-52.5 parent: 2 - - uid: 32998 + - uid: 33441 components: - type: Transform pos: 61.5,-51.5 parent: 2 - - uid: 32999 + - uid: 33442 components: - type: Transform pos: 62.5,-54.5 parent: 2 - - uid: 33000 + - uid: 33443 components: - type: Transform pos: 56.5,-47.5 parent: 2 - - uid: 33001 + - uid: 33444 components: - type: Transform pos: 57.5,-46.5 parent: 2 - - uid: 33002 + - uid: 33445 components: - type: Transform pos: 58.5,-53.5 parent: 2 - - uid: 33003 + - uid: 33446 components: - type: Transform pos: 59.5,-53.5 parent: 2 - - uid: 33004 + - uid: 33447 components: - type: Transform pos: -37.5,19.5 parent: 2 - - uid: 33005 + - uid: 33448 components: - type: Transform pos: 64.5,-51.5 parent: 2 - - uid: 33006 + - uid: 33449 components: - type: Transform pos: 63.5,-51.5 parent: 2 - - uid: 33007 + - uid: 33450 components: - type: Transform pos: 64.5,-54.5 parent: 2 - - uid: 33008 + - uid: 33451 components: - type: Transform pos: 63.5,-52.5 parent: 2 - - uid: 33009 + - uid: 33452 components: - type: Transform pos: 59.5,-51.5 parent: 2 - - uid: 33010 + - uid: 33453 components: - type: Transform pos: -36.5,18.5 parent: 2 - - uid: 33011 + - uid: 33454 components: - type: Transform pos: 57.5,-47.5 parent: 2 - - uid: 33012 + - uid: 33455 components: - type: Transform pos: 58.5,-47.5 parent: 2 - - uid: 33013 + - uid: 33456 components: - type: Transform pos: 59.5,-49.5 parent: 2 - - uid: 33014 + - uid: 33457 components: - type: Transform pos: 58.5,-49.5 parent: 2 - - uid: 33015 + - uid: 33458 components: - type: Transform pos: 55.5,-47.5 parent: 2 - - uid: 33016 + - uid: 33459 components: - type: Transform pos: -39.5,19.5 parent: 2 - - uid: 33017 + - uid: 33460 components: - type: Transform pos: 55.5,-46.5 parent: 2 - - uid: 33018 + - uid: 33461 components: - type: Transform pos: 56.5,-46.5 parent: 2 - - uid: 33019 + - uid: 33462 components: - type: Transform pos: -37.5,18.5 parent: 2 - - uid: 33020 + - uid: 33463 components: - type: Transform pos: 94.5,-31.5 parent: 2 - - uid: 33021 + - uid: 33464 components: - type: Transform pos: 90.5,-31.5 parent: 2 - - uid: 33022 + - uid: 33465 components: - type: Transform pos: 91.5,-32.5 parent: 2 - - uid: 33023 + - uid: 33466 components: - type: Transform pos: -38.5,18.5 parent: 2 - - uid: 33024 + - uid: 33467 components: - type: Transform pos: 90.5,-40.5 parent: 2 - - uid: 33025 + - uid: 33468 components: - type: Transform pos: 58.5,-48.5 parent: 2 - - uid: 33026 + - uid: 33469 components: - type: Transform pos: -28.5,36.5 parent: 2 - - uid: 33027 + - uid: 33470 components: - type: Transform pos: 93.5,-31.5 parent: 2 - - uid: 33028 + - uid: 33471 components: - type: Transform pos: 86.5,-40.5 parent: 2 - - uid: 33029 + - uid: 33472 components: - type: Transform pos: -38.5,19.5 parent: 2 - - uid: 33030 + - uid: 33473 components: - type: Transform pos: -27.5,36.5 parent: 2 - - uid: 33031 + - uid: 33474 components: - type: Transform pos: 60.5,-51.5 parent: 2 - - uid: 33032 - components: - - type: Transform - pos: 58.5,-19.5 - parent: 2 - - uid: 33033 + - uid: 33475 components: - type: Transform pos: 49.5,33.5 parent: 2 - - uid: 33034 + - uid: 33476 components: - type: Transform pos: 56.5,28.5 parent: 2 - - uid: 33035 - components: - - type: Transform - pos: -38.5,72.5 - parent: 2 - - uid: 33036 - components: - - type: Transform - pos: -38.5,68.5 - parent: 2 - - uid: 33037 + - uid: 33477 components: - type: Transform pos: -50.5,20.5 parent: 2 - - uid: 33038 + - uid: 33478 components: - type: Transform pos: -49.5,20.5 parent: 2 - - uid: 33039 + - uid: 33479 components: - type: Transform pos: 88.5,-31.5 parent: 2 - - uid: 33040 + - uid: 33480 components: - type: Transform pos: 86.5,-30.5 parent: 2 - - uid: 33041 + - uid: 33481 components: - type: Transform pos: 86.5,-48.5 parent: 2 - - uid: 33042 + - uid: 33482 components: - type: Transform pos: 72.5,-52.5 parent: 2 - - uid: 33043 + - uid: 33483 components: - type: Transform pos: 72.5,-51.5 parent: 2 - - uid: 33044 + - uid: 33484 components: - type: Transform pos: 89.5,-47.5 parent: 2 - - uid: 33045 + - uid: 33485 components: - type: Transform pos: 87.5,-47.5 parent: 2 - - uid: 33046 + - uid: 33486 components: - type: Transform pos: 89.5,-46.5 parent: 2 - - uid: 33047 + - uid: 33487 components: - type: Transform pos: 72.5,-53.5 parent: 2 - - uid: 33048 + - uid: 33488 components: - type: Transform pos: 88.5,-47.5 parent: 2 - - uid: 33049 + - uid: 33489 components: - type: Transform pos: 30.5,-27.5 parent: 2 - - uid: 33050 + - uid: 33490 components: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 33051 + - uid: 33491 components: - type: Transform pos: 34.5,-27.5 parent: 2 - - uid: 33052 + - uid: 33492 components: - type: Transform pos: 50.5,-31.5 parent: 2 - - uid: 33053 + - uid: 33493 components: - type: Transform pos: 90.5,-46.5 parent: 2 - - uid: 33054 + - uid: 33494 components: - type: Transform pos: 96.5,-32.5 parent: 2 - - uid: 33055 + - uid: 33495 components: - type: Transform pos: 32.5,-29.5 parent: 2 - - uid: 33056 + - uid: 33496 components: - type: Transform pos: 49.5,-26.5 parent: 2 - - uid: 33057 + - uid: 33497 components: - type: Transform pos: 37.5,-32.5 parent: 2 - - uid: 33058 + - uid: 33498 components: - type: Transform pos: 91.5,-48.5 parent: 2 - - uid: 33059 + - uid: 33499 components: - type: Transform pos: -36.5,32.5 parent: 2 - - uid: 33060 + - uid: 33500 components: - type: Transform pos: 56.5,47.5 parent: 2 - - uid: 33061 + - uid: 33501 components: - type: Transform pos: 38.5,-25.5 parent: 2 - - uid: 33062 - components: - - type: Transform - pos: 34.5,-59.5 - parent: 2 - - uid: 33063 + - uid: 33502 components: - type: Transform pos: 42.5,-26.5 parent: 2 - - uid: 33064 + - uid: 33503 components: - type: Transform pos: -36.5,31.5 parent: 2 - - uid: 33065 + - uid: 33504 components: - type: Transform pos: -37.5,32.5 parent: 2 - - uid: 33066 + - uid: 33505 components: - type: Transform pos: 36.5,-31.5 parent: 2 - - uid: 33067 - components: - - type: Transform - pos: 34.5,-57.5 - parent: 2 - - uid: 33068 - components: - - type: Transform - pos: 34.5,-58.5 - parent: 2 - - uid: 33069 + - uid: 33506 components: - type: Transform pos: 41.5,-58.5 parent: 2 - - uid: 33070 + - uid: 33507 components: - type: Transform pos: 90.5,-32.5 parent: 2 - - uid: 33071 + - uid: 33508 components: - type: Transform pos: 37.5,-61.5 parent: 2 - - uid: 33072 + - uid: 33509 components: - type: Transform - pos: 40.5,-59.5 + pos: 40.5,-60.5 parent: 2 - - uid: 33073 + - uid: 33510 components: - type: Transform - pos: 40.5,-57.5 + pos: 38.5,-60.5 parent: 2 - - uid: 33074 + - uid: 33511 components: - type: Transform pos: 41.5,-59.5 parent: 2 - - uid: 33075 + - uid: 33512 components: - type: Transform pos: 41.5,-60.5 parent: 2 - - uid: 33076 + - uid: 33513 components: - type: Transform pos: 37.5,-30.5 parent: 2 - - uid: 33077 + - uid: 33514 components: - type: Transform pos: 46.5,-32.5 parent: 2 - - uid: 33078 + - uid: 33515 components: - type: Transform pos: 38.5,-61.5 parent: 2 - - uid: 33079 + - uid: 33516 components: - type: Transform - pos: 37.5,-60.5 + pos: 40.5,-59.5 parent: 2 - - uid: 33080 + - uid: 33517 components: - type: Transform pos: 39.5,-61.5 parent: 2 - - uid: 33081 + - uid: 33518 components: - type: Transform pos: 42.5,-59.5 parent: 2 - - uid: 33082 + - uid: 33519 components: - type: Transform pos: 35.5,-58.5 parent: 2 - - uid: 33083 + - uid: 33520 components: - type: Transform pos: 37.5,-26.5 parent: 2 - - uid: 33084 + - uid: 33521 components: - type: Transform pos: 89.5,-40.5 parent: 2 - - uid: 33085 + - uid: 33522 components: - type: Transform - pos: 40.5,-60.5 + pos: 35.5,-60.5 parent: 2 - - uid: 33086 + - uid: 33523 components: - type: Transform pos: 42.5,-58.5 parent: 2 - - uid: 33087 + - uid: 33524 components: - type: Transform pos: 56.5,36.5 parent: 2 - - uid: 33088 + - uid: 33525 components: - type: Transform pos: 46.5,-31.5 parent: 2 - - uid: 33089 + - uid: 33526 components: - type: Transform pos: 36.5,-27.5 parent: 2 - - uid: 33090 - components: - - type: Transform - pos: 36.5,-60.5 - parent: 2 - - uid: 33091 + - uid: 33527 components: - type: Transform pos: 51.5,35.5 parent: 2 - - uid: 33092 + - uid: 33528 components: - type: Transform pos: 51.5,37.5 parent: 2 - - uid: 33093 + - uid: 33529 components: - type: Transform pos: 56.5,37.5 parent: 2 - - uid: 33094 + - uid: 33530 components: - type: Transform pos: 38.5,-24.5 parent: 2 - - uid: 33095 + - uid: 33531 components: - type: Transform pos: 30.5,-61.5 parent: 2 - - uid: 33096 + - uid: 33532 components: - type: Transform pos: 39.5,-25.5 parent: 2 - - uid: 33097 + - uid: 33533 components: - type: Transform pos: -33.5,34.5 parent: 2 - - uid: 33098 + - uid: 33534 components: - type: Transform pos: 49.5,-27.5 parent: 2 - - uid: 33099 + - uid: 33535 components: - type: Transform pos: -22.5,32.5 parent: 2 - - uid: 33100 + - uid: 33536 components: - type: Transform pos: -20.5,32.5 parent: 2 - - uid: 33101 + - uid: 33537 components: - type: Transform pos: -23.5,32.5 parent: 2 - - uid: 33102 + - uid: 33538 components: - type: Transform pos: 89.5,-30.5 parent: 2 - - uid: 33103 + - uid: 33539 components: - type: Transform pos: -27.5,26.5 parent: 2 - - uid: 33104 + - uid: 33540 components: - type: Transform pos: -22.5,33.5 parent: 2 - - uid: 33105 + - uid: 33541 components: - type: Transform pos: -21.5,32.5 parent: 2 - - uid: 33106 + - uid: 33542 components: - type: Transform pos: -30.5,35.5 parent: 2 - - uid: 33107 + - uid: 33543 components: - type: Transform pos: -23.5,33.5 parent: 2 - - uid: 33108 + - uid: 33544 components: - type: Transform pos: -24.5,33.5 parent: 2 - - uid: 33109 + - uid: 33545 components: - type: Transform pos: 88.5,-30.5 parent: 2 - - uid: 33110 + - uid: 33546 components: - type: Transform pos: -31.5,34.5 parent: 2 - - uid: 33111 + - uid: 33547 components: - type: Transform pos: -30.5,34.5 parent: 2 - - uid: 33112 + - uid: 33548 components: - type: Transform pos: -27.5,35.5 parent: 2 - - uid: 33113 + - uid: 33549 components: - type: Transform pos: -29.5,34.5 parent: 2 - - uid: 33114 + - uid: 33550 components: - type: Transform pos: -29.5,36.5 parent: 2 - - uid: 33115 + - uid: 33551 components: - type: Transform pos: -29.5,35.5 parent: 2 - - uid: 33116 + - uid: 33552 components: - type: Transform pos: -28.5,35.5 parent: 2 - - uid: 33117 + - uid: 33553 components: - type: Transform pos: -36.5,33.5 parent: 2 - - uid: 33118 + - uid: 33554 components: - type: Transform pos: -27.5,22.5 parent: 2 - - uid: 33119 + - uid: 33555 components: - type: Transform pos: -27.5,23.5 parent: 2 - - uid: 33120 + - uid: 33556 components: - type: Transform pos: -24.5,34.5 parent: 2 - - uid: 33121 + - uid: 33557 components: - type: Transform pos: -25.5,34.5 parent: 2 - - uid: 33122 + - uid: 33558 components: - type: Transform pos: -19.5,32.5 parent: 2 - - uid: 33123 + - uid: 33559 components: - type: Transform pos: -23.5,34.5 parent: 2 - - uid: 33124 + - uid: 33560 components: - type: Transform pos: -24.5,35.5 parent: 2 - - uid: 33125 + - uid: 33561 components: - type: Transform pos: -26.5,35.5 parent: 2 - - uid: 33126 + - uid: 33562 components: - type: Transform pos: 70.5,4.5 parent: 2 - - uid: 33127 + - uid: 33563 components: - type: Transform pos: 69.5,3.5 parent: 2 - - uid: 33128 + - uid: 33564 components: - type: Transform pos: -18.5,32.5 parent: 2 - - uid: 33129 + - uid: 33565 components: - type: Transform pos: -21.5,33.5 parent: 2 - - uid: 33130 + - uid: 33566 components: - type: Transform pos: -20.5,33.5 parent: 2 - - uid: 33131 + - uid: 33567 components: - type: Transform pos: -22.5,34.5 parent: 2 - - uid: 33132 + - uid: 33568 components: - type: Transform pos: -25.5,35.5 parent: 2 - - uid: 33133 + - uid: 33569 components: - type: Transform pos: 70.5,-4.5 parent: 2 - - uid: 33134 + - uid: 33570 components: - type: Transform pos: 86.5,-38.5 parent: 2 - - uid: 33135 + - uid: 33571 components: - type: Transform pos: 87.5,-31.5 parent: 2 - - uid: 33136 + - uid: 33572 components: - type: Transform pos: 69.5,-4.5 parent: 2 - - uid: 33137 + - uid: 33573 components: - type: Transform pos: 67.5,-8.5 parent: 2 - - uid: 33138 + - uid: 33574 components: - type: Transform pos: 68.5,-5.5 parent: 2 - - uid: 33139 + - uid: 33575 components: - type: Transform pos: 14.5,-34.5 parent: 2 - - uid: 33140 + - uid: 33576 components: - type: Transform pos: 13.5,-35.5 parent: 2 - - uid: 33141 + - uid: 33577 components: - type: Transform pos: 24.5,-21.5 parent: 2 - - uid: 33142 + - uid: 33578 components: - type: Transform pos: 26.5,-20.5 parent: 2 - - uid: 33143 + - uid: 33579 components: - type: Transform pos: 12.5,-38.5 parent: 2 - - uid: 33144 + - uid: 33580 components: - type: Transform pos: 12.5,-36.5 parent: 2 - - uid: 33145 + - uid: 33581 components: - type: Transform pos: 12.5,-35.5 parent: 2 - - uid: 33146 + - uid: 33582 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 33147 + - uid: 33583 components: - type: Transform pos: 4.5,-26.5 parent: 2 - - uid: 33148 + - uid: 33584 components: - type: Transform pos: 22.5,-21.5 parent: 2 - - uid: 33149 + - uid: 33585 components: - type: Transform pos: 11.5,-38.5 parent: 2 - - uid: 33150 + - uid: 33586 components: - type: Transform pos: 11.5,-37.5 parent: 2 - - uid: 33151 + - uid: 33587 components: - type: Transform pos: 11.5,-36.5 parent: 2 - - uid: 33152 + - uid: 33588 components: - type: Transform pos: 11.5,-35.5 parent: 2 - - uid: 33153 + - uid: 33589 components: - type: Transform pos: 11.5,-34.5 parent: 2 - - uid: 33154 + - uid: 33590 components: - type: Transform pos: 3.5,-27.5 parent: 2 - - uid: 33155 + - uid: 33591 components: - type: Transform pos: 23.5,-21.5 parent: 2 - - uid: 33156 + - uid: 33592 components: - type: Transform pos: 34.5,-29.5 parent: 2 - - uid: 33157 + - uid: 33593 components: - type: Transform pos: 10.5,-38.5 parent: 2 - - uid: 33158 + - uid: 33594 components: - type: Transform pos: 22.5,-20.5 parent: 2 - - uid: 33159 + - uid: 33595 components: - type: Transform pos: 23.5,-20.5 parent: 2 - - uid: 33160 + - uid: 33596 components: - type: Transform pos: 9.5,-38.5 parent: 2 - - uid: 33161 + - uid: 33597 components: - type: Transform pos: 24.5,-20.5 parent: 2 - - uid: 33162 + - uid: 33598 components: - type: Transform pos: 25.5,-20.5 parent: 2 - - uid: 33163 + - uid: 33599 components: - type: Transform pos: 8.5,-38.5 parent: 2 - - uid: 33164 + - uid: 33600 components: - type: Transform pos: 1.5,-30.5 parent: 2 - - uid: 33165 + - uid: 33601 components: - type: Transform pos: 1.5,-31.5 parent: 2 - - uid: 33166 + - uid: 33602 components: - type: Transform pos: 1.5,-33.5 parent: 2 - - uid: 33167 + - uid: 33603 components: - type: Transform pos: 10.5,-30.5 parent: 2 - - uid: 33168 + - uid: 33604 components: - type: Transform pos: 19.5,-27.5 parent: 2 - - uid: 33169 + - uid: 33605 components: - type: Transform pos: 20.5,-27.5 parent: 2 - - uid: 33170 + - uid: 33606 components: - type: Transform pos: 33.5,-59.5 parent: 2 - - uid: 33171 + - uid: 33607 components: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 33172 + - uid: 33608 components: - type: Transform pos: 0.5,-30.5 parent: 2 - - uid: 33173 + - uid: 33609 components: - type: Transform pos: 2.5,-30.5 parent: 2 - - uid: 33174 + - uid: 33610 components: - type: Transform pos: 11.5,-30.5 parent: 2 - - uid: 33175 + - uid: 33611 components: - type: Transform pos: 6.5,-38.5 parent: 2 - - uid: 33176 + - uid: 33612 components: - type: Transform pos: 0.5,-32.5 parent: 2 - - uid: 33177 + - uid: 33613 components: - type: Transform pos: 0.5,-31.5 parent: 2 - - uid: 33178 + - uid: 33614 components: - type: Transform pos: 19.5,-20.5 parent: 2 - - uid: 33179 + - uid: 33615 components: - type: Transform pos: 5.5,-38.5 parent: 2 - - uid: 33180 + - uid: 33616 components: - type: Transform pos: 1.5,-32.5 parent: 2 - - uid: 33181 + - uid: 33617 components: - type: Transform pos: 20.5,-20.5 parent: 2 - - uid: 33182 + - uid: 33618 components: - type: Transform pos: 4.5,-38.5 parent: 2 - - uid: 33183 + - uid: 33619 components: - type: Transform pos: 22.5,-19.5 parent: 2 - - uid: 33184 + - uid: 33620 components: - type: Transform pos: 3.5,-38.5 parent: 2 - - uid: 33185 + - uid: 33621 components: - type: Transform pos: 2.5,-38.5 parent: 2 - - uid: 33186 + - uid: 33622 components: - type: Transform pos: 20.5,-19.5 parent: 2 - - uid: 33187 + - uid: 33623 components: - type: Transform pos: 21.5,-19.5 parent: 2 - - uid: 33188 + - uid: 33624 components: - type: Transform pos: 1.5,-38.5 parent: 2 - - uid: 33189 + - uid: 33625 components: - type: Transform pos: 1.5,-37.5 parent: 2 - - uid: 33190 + - uid: 33626 components: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 33191 + - uid: 33627 components: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 33192 + - uid: 33628 components: - type: Transform pos: 1.5,-34.5 parent: 2 - - uid: 33193 + - uid: 33629 components: - type: Transform pos: 21.5,-20.5 parent: 2 - - uid: 33194 + - uid: 33630 components: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 33195 + - uid: 33631 components: - type: Transform pos: 18.5,-19.5 parent: 2 - - uid: 33196 + - uid: 33632 components: - type: Transform pos: 4.5,-25.5 parent: 2 - - uid: 33197 + - uid: 33633 components: - type: Transform pos: 19.5,-19.5 parent: 2 - - uid: 33198 + - uid: 33634 components: - type: Transform pos: -39.5,43.5 parent: 2 - - uid: 33199 + - uid: 33635 components: - type: Transform pos: -37.5,48.5 parent: 2 - - uid: 33200 + - uid: 33636 components: - type: Transform pos: 63.5,-55.5 parent: 2 - - uid: 33201 + - uid: 33637 components: - type: Transform - pos: 77.5,-28.5 + pos: 79.5,-30.5 parent: 2 - - uid: 33202 + - uid: 33638 components: - type: Transform pos: 82.5,-28.5 parent: 2 - - uid: 33203 + - uid: 33639 components: - type: Transform - pos: 78.5,-28.5 + pos: 80.5,-29.5 parent: 2 - - uid: 33204 + - uid: 33640 components: - type: Transform pos: 82.5,-29.5 parent: 2 - - uid: 33205 + - uid: 33641 components: - type: Transform pos: 81.5,-30.5 parent: 2 - - uid: 33206 + - uid: 33642 components: - type: Transform pos: 57.5,15.5 parent: 2 - - uid: 33207 + - uid: 33643 components: - type: Transform pos: 56.5,15.5 parent: 2 - - uid: 33208 + - uid: 33644 components: - type: Transform pos: 32.5,-30.5 parent: 2 - - uid: 33209 + - uid: 33645 components: - type: Transform pos: 14.5,-51.5 parent: 2 - - uid: 33210 + - uid: 33646 components: - type: Transform pos: 66.5,-7.5 parent: 2 - - uid: 33211 + - uid: 33647 components: - type: Transform pos: 58.5,-54.5 parent: 2 - - uid: 33212 + - uid: 33648 components: - type: Transform pos: -79.5,58.5 parent: 2 - - uid: 33213 + - uid: 33649 components: - type: Transform pos: 43.5,31.5 parent: 2 - - uid: 33214 + - uid: 33650 components: - type: Transform pos: 44.5,31.5 parent: 2 - - uid: 33215 + - uid: 33651 components: - type: Transform pos: 34.5,65.5 parent: 2 - - uid: 33216 + - uid: 33652 components: - type: Transform pos: 44.5,34.5 parent: 2 - - uid: 33217 + - uid: 33653 components: - type: Transform pos: 23.5,64.5 parent: 2 - - uid: 33218 + - uid: 33654 components: - type: Transform pos: 23.5,63.5 parent: 2 - - uid: 33219 + - uid: 33655 components: - type: Transform pos: 24.5,63.5 parent: 2 - - uid: 33220 + - uid: 33656 components: - type: Transform pos: 25.5,63.5 parent: 2 - - uid: 33221 + - uid: 33657 components: - type: Transform pos: 26.5,63.5 parent: 2 - - uid: 33222 + - uid: 33658 components: - type: Transform pos: 27.5,63.5 parent: 2 - - uid: 33223 + - uid: 33659 components: - type: Transform pos: 28.5,63.5 parent: 2 - - uid: 33224 + - uid: 33660 components: - type: Transform pos: 29.5,63.5 parent: 2 - - uid: 33225 + - uid: 33661 components: - type: Transform pos: 30.5,63.5 parent: 2 - - uid: 33226 + - uid: 33662 components: - type: Transform pos: 31.5,63.5 parent: 2 - - uid: 33227 + - uid: 33663 components: - type: Transform pos: 31.5,62.5 parent: 2 - - uid: 33228 + - uid: 33664 components: - type: Transform pos: 31.5,61.5 parent: 2 - - uid: 33229 + - uid: 33665 components: - type: Transform pos: 33.5,65.5 parent: 2 - - uid: 33230 + - uid: 33666 components: - type: Transform pos: 47.5,57.5 parent: 2 - - uid: 33231 - components: - - type: Transform - pos: 36.5,54.5 - parent: 2 - - uid: 33232 + - uid: 33667 components: - type: Transform pos: 37.5,64.5 parent: 2 - - uid: 33233 + - uid: 33668 components: - type: Transform pos: 48.5,57.5 parent: 2 - - uid: 33234 + - uid: 33669 components: - type: Transform pos: 48.5,58.5 parent: 2 - - uid: 33235 + - uid: 33670 components: - type: Transform pos: 41.5,62.5 parent: 2 - - uid: 33236 + - uid: 33671 components: - type: Transform pos: 36.5,52.5 parent: 2 - - uid: 33237 + - uid: 33672 components: - type: Transform pos: 41.5,58.5 parent: 2 - - uid: 33238 + - uid: 33673 components: - type: Transform pos: 32.5,67.5 parent: 2 - - uid: 33239 + - uid: 33674 components: - type: Transform pos: 49.5,53.5 parent: 2 - - uid: 33240 + - uid: 33675 components: - type: Transform pos: 33.5,67.5 parent: 2 - - uid: 33241 + - uid: 33676 components: - type: Transform pos: 50.5,58.5 parent: 2 - - uid: 33242 + - uid: 33677 components: - type: Transform pos: 36.5,53.5 parent: 2 - - uid: 33243 + - uid: 33678 components: - type: Transform pos: 46.5,58.5 parent: 2 - - uid: 33244 + - uid: 33679 components: - type: Transform pos: 47.5,61.5 parent: 2 - - uid: 33245 + - uid: 33680 components: - type: Transform pos: -79.5,68.5 parent: 2 - - uid: 33246 + - uid: 33681 components: - type: Transform pos: 49.5,59.5 parent: 2 - - uid: 33247 + - uid: 33682 components: - type: Transform pos: 34.5,66.5 parent: 2 - - uid: 33248 + - uid: 33683 components: - type: Transform pos: 55.5,48.5 parent: 2 - - uid: 33249 + - uid: 33684 components: - type: Transform pos: 52.5,52.5 parent: 2 - - uid: 33250 + - uid: 33685 components: - type: Transform pos: 52.5,53.5 parent: 2 - - uid: 33251 + - uid: 33686 components: - type: Transform pos: 50.5,57.5 parent: 2 - - uid: 33252 + - uid: 33687 components: - type: Transform pos: 47.5,52.5 parent: 2 - - uid: 33253 + - uid: 33688 components: - type: Transform pos: 40.5,57.5 parent: 2 - - uid: 33254 + - uid: 33689 components: - type: Transform pos: 44.5,56.5 parent: 2 - - uid: 33255 + - uid: 33690 components: - type: Transform pos: 35.5,47.5 parent: 2 - - uid: 33256 + - uid: 33691 components: - type: Transform pos: 31.5,66.5 parent: 2 - - uid: 33257 + - uid: 33692 components: - type: Transform pos: 35.5,46.5 parent: 2 - - uid: 33258 + - uid: 33693 components: - type: Transform pos: 34.5,47.5 parent: 2 - - uid: 33259 + - uid: 33694 components: - type: Transform pos: 46.5,49.5 parent: 2 - - uid: 33260 + - uid: 33695 components: - type: Transform pos: 11.5,-54.5 parent: 2 - - uid: 33261 + - uid: 33696 components: - type: Transform pos: 36.5,31.5 parent: 2 - - uid: 33262 + - uid: 33697 components: - type: Transform pos: 96.5,-49.5 parent: 2 - - uid: 33263 + - uid: 33698 components: - type: Transform pos: 70.5,-5.5 parent: 2 - - uid: 33264 + - uid: 33699 components: - type: Transform pos: 82.5,-31.5 parent: 2 - - uid: 33265 + - uid: 33700 components: - type: Transform pos: 81.5,-28.5 parent: 2 - - uid: 33266 + - uid: 33701 components: - type: Transform pos: 97.5,-36.5 parent: 2 - - uid: 33267 + - uid: 33702 components: - type: Transform pos: -23.5,31.5 parent: 2 - - uid: 33268 - components: - - type: Transform - pos: 59.5,-16.5 - parent: 2 - - uid: 33269 + - uid: 33703 components: - type: Transform pos: 32.5,-59.5 parent: 2 - - uid: 33270 + - uid: 33704 components: - type: Transform pos: 27.5,-59.5 parent: 2 - - uid: 33271 + - uid: 33705 components: - type: Transform pos: 11.5,-33.5 parent: 2 - - uid: 33272 + - uid: 33706 components: - type: Transform pos: 14.5,-31.5 parent: 2 - - uid: 33273 + - uid: 33707 components: - type: Transform pos: -41.5,46.5 parent: 2 - - uid: 33274 + - uid: 33708 components: - type: Transform pos: -41.5,45.5 parent: 2 - - uid: 33275 + - uid: 33709 components: - type: Transform pos: -41.5,44.5 parent: 2 - - uid: 33276 + - uid: 33710 components: - type: Transform pos: -41.5,43.5 parent: 2 - - uid: 33277 + - uid: 33711 components: - type: Transform pos: 14.5,-30.5 parent: 2 - - uid: 33278 + - uid: 33712 components: - type: Transform pos: 77.5,-5.5 parent: 2 - - uid: 33279 + - uid: 33713 components: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 33280 + - uid: 33714 components: - type: Transform pos: 54.5,46.5 parent: 2 - - uid: 33281 + - uid: 33715 components: - type: Transform pos: -42.5,19.5 parent: 2 - - uid: 33282 + - uid: 33716 components: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 33283 + - uid: 33717 components: - type: Transform pos: -48.5,22.5 parent: 2 - - uid: 33284 + - uid: 33718 components: - type: Transform pos: 54.5,39.5 parent: 2 - - uid: 33285 + - uid: 33719 components: - type: Transform pos: 55.5,39.5 parent: 2 - - uid: 33286 + - uid: 33720 components: - type: Transform pos: 39.5,46.5 parent: 2 - - uid: 33287 + - uid: 33721 components: - type: Transform pos: 55.5,40.5 parent: 2 - - uid: 33288 + - uid: 33722 components: - type: Transform pos: 57.5,45.5 parent: 2 - - uid: 33289 + - uid: 33723 components: - type: Transform pos: 56.5,46.5 parent: 2 - - uid: 33290 + - uid: 33724 components: - type: Transform pos: 37.5,53.5 parent: 2 - - uid: 33291 + - uid: 33725 components: - type: Transform pos: 13.5,-32.5 parent: 2 - - uid: 33292 + - uid: 33726 components: - type: Transform pos: -49.5,19.5 parent: 2 - - uid: 33293 + - uid: 33727 components: - type: Transform pos: -49.5,22.5 parent: 2 - - uid: 33294 + - uid: 33728 components: - type: Transform pos: 36.5,51.5 parent: 2 - - uid: 33295 + - uid: 33729 components: - type: Transform pos: -47.5,19.5 parent: 2 - - uid: 33296 + - uid: 33730 components: - type: Transform pos: -43.5,20.5 parent: 2 - - uid: 33297 + - uid: 33731 components: - type: Transform pos: -19.5,31.5 parent: 2 - - uid: 33298 + - uid: 33732 components: - type: Transform pos: 55.5,36.5 parent: 2 - - uid: 33299 + - uid: 33733 components: - type: Transform pos: 81.5,-31.5 parent: 2 - - uid: 33300 + - uid: 33734 components: - type: Transform pos: 54.5,38.5 parent: 2 - - uid: 33301 + - uid: 33735 components: - type: Transform pos: 33.5,51.5 parent: 2 - - uid: 33302 + - uid: 33736 components: - type: Transform pos: 29.5,44.5 parent: 2 - - uid: 33303 + - uid: 33737 components: - type: Transform pos: 33.5,52.5 parent: 2 - - uid: 33304 - components: - - type: Transform - pos: 37.5,49.5 - parent: 2 - - uid: 33305 + - uid: 33738 components: - type: Transform pos: 47.5,58.5 parent: 2 - - uid: 33306 + - uid: 33739 components: - type: Transform pos: 48.5,59.5 parent: 2 - - uid: 33307 + - uid: 33740 components: - type: Transform pos: 53.5,46.5 parent: 2 - - uid: 33308 + - uid: 33741 components: - type: Transform pos: 42.5,57.5 parent: 2 - - uid: 33309 + - uid: 33742 components: - type: Transform pos: 41.5,61.5 parent: 2 - - uid: 33310 + - uid: 33743 components: - type: Transform pos: 40.5,61.5 parent: 2 - - uid: 33311 + - uid: 33744 components: - type: Transform pos: 33.5,53.5 parent: 2 - - uid: 33312 + - uid: 33745 components: - type: Transform pos: 33.5,50.5 parent: 2 - - uid: 33313 + - uid: 33746 components: - type: Transform pos: 47.5,50.5 parent: 2 - - uid: 33314 + - uid: 33747 components: - type: Transform pos: 30.5,42.5 parent: 2 - - uid: 33315 - components: - - type: Transform - pos: 36.5,55.5 - parent: 2 - - uid: 33316 + - uid: 33748 components: - type: Transform pos: 60.5,42.5 parent: 2 - - uid: 33317 + - uid: 33749 components: - type: Transform pos: 41.5,60.5 parent: 2 - - uid: 33318 + - uid: 33750 components: - type: Transform pos: -44.5,19.5 parent: 2 - - uid: 33319 + - uid: 33751 components: - type: Transform pos: -45.5,22.5 parent: 2 - - uid: 33320 + - uid: 33752 components: - type: Transform pos: -45.5,19.5 parent: 2 - - uid: 33321 + - uid: 33753 components: - type: Transform pos: -46.5,19.5 parent: 2 - - uid: 33322 + - uid: 33754 components: - type: Transform pos: -45.5,21.5 parent: 2 - - uid: 33323 + - uid: 33755 components: - type: Transform pos: 42.5,45.5 parent: 2 - - uid: 33324 + - uid: 33756 components: - type: Transform pos: -47.5,22.5 parent: 2 - - uid: 33325 + - uid: 33757 components: - type: Transform pos: -40.5,19.5 parent: 2 - - uid: 33326 + - uid: 33758 components: - type: Transform pos: -46.5,22.5 parent: 2 - - uid: 33327 + - uid: 33759 components: - type: Transform pos: -45.5,20.5 parent: 2 - - uid: 33328 + - uid: 33760 components: - type: Transform pos: -43.5,19.5 parent: 2 - - uid: 33329 + - uid: 33761 components: - type: Transform pos: -44.5,21.5 parent: 2 - - uid: 33330 + - uid: 33762 components: - type: Transform pos: -44.5,20.5 parent: 2 - - uid: 33331 + - uid: 33763 components: - type: Transform pos: 40.5,39.5 parent: 2 - - uid: 33332 + - uid: 33764 components: - type: Transform pos: 40.5,36.5 parent: 2 - - uid: 33333 + - uid: 33765 components: - type: Transform pos: 39.5,39.5 parent: 2 - - uid: 33334 + - uid: 33766 components: - type: Transform pos: 60.5,-53.5 parent: 2 - - uid: 33335 + - uid: 33767 components: - type: Transform pos: 84.5,-39.5 parent: 2 - - uid: 33336 + - uid: 33768 components: - type: Transform pos: 59.5,-47.5 parent: 2 - - uid: 33337 + - uid: 33769 components: - type: Transform pos: 58.5,-50.5 parent: 2 - - uid: 33338 + - uid: 33770 components: - type: Transform pos: 40.5,35.5 parent: 2 - - uid: 33339 + - uid: 33771 components: - type: Transform pos: 30.5,43.5 parent: 2 - - uid: 33340 + - uid: 33772 components: - type: Transform pos: 32.5,66.5 parent: 2 - - uid: 33341 + - uid: 33773 components: - type: Transform pos: 41.5,59.5 parent: 2 - - uid: 33342 + - uid: 33774 components: - type: Transform pos: 50.5,50.5 parent: 2 - - uid: 33343 + - uid: 33775 components: - type: Transform pos: 51.5,53.5 parent: 2 - - uid: 33344 + - uid: 33776 components: - type: Transform pos: 44.5,61.5 parent: 2 - - uid: 33345 + - uid: 33777 components: - type: Transform pos: 51.5,49.5 parent: 2 - - uid: 33346 + - uid: 33778 components: - type: Transform pos: 37.5,51.5 parent: 2 - - uid: 33347 - components: - - type: Transform - pos: 37.5,54.5 - parent: 2 - - uid: 33348 + - uid: 33779 components: - type: Transform pos: 51.5,54.5 parent: 2 - - uid: 33349 + - uid: 33780 components: - type: Transform pos: 50.5,48.5 parent: 2 - - uid: 33350 + - uid: 33781 components: - type: Transform pos: 51.5,52.5 parent: 2 - - uid: 33351 + - uid: 33782 components: - type: Transform pos: 51.5,51.5 parent: 2 - - uid: 33352 + - uid: 33783 components: - type: Transform pos: 40.5,62.5 parent: 2 - - uid: 33353 + - uid: 33784 components: - type: Transform pos: 28.5,41.5 parent: 2 - - uid: 33354 + - uid: 33785 components: - type: Transform pos: 28.5,44.5 parent: 2 - - uid: 33355 + - uid: 33786 components: - type: Transform pos: 28.5,42.5 parent: 2 - - uid: 33356 + - uid: 33787 components: - type: Transform pos: 28.5,43.5 parent: 2 - - uid: 33357 + - uid: 33788 components: - type: Transform pos: 40.5,56.5 parent: 2 - - uid: 33358 + - uid: 33789 components: - type: Transform pos: -16.5,-33.5 parent: 2 - - uid: 33359 + - uid: 33790 components: - type: Transform pos: -16.5,-30.5 parent: 2 - - uid: 33360 + - uid: 33791 components: - type: Transform pos: 37.5,48.5 parent: 2 - - uid: 33361 + - uid: 33792 components: - type: Transform pos: -17.5,-32.5 parent: 2 - - uid: 33362 + - uid: 33793 components: - type: Transform pos: -19.5,-31.5 parent: 2 - - uid: 33363 + - uid: 33794 components: - type: Transform pos: -19.5,-32.5 parent: 2 - - uid: 33364 + - uid: 33795 components: - type: Transform pos: -14.5,-31.5 parent: 2 - - uid: 33365 + - uid: 33796 components: - type: Transform pos: 36.5,46.5 parent: 2 - - uid: 33366 + - uid: 33797 components: - type: Transform pos: -18.5,-32.5 parent: 2 - - uid: 33367 + - uid: 33798 components: - type: Transform pos: -13.5,-31.5 parent: 2 - - uid: 33368 + - uid: 33799 components: - type: Transform pos: 54.5,37.5 parent: 2 - - uid: 33369 + - uid: 33800 components: - type: Transform pos: 59.5,45.5 parent: 2 - - uid: 33370 + - uid: 33801 components: - type: Transform pos: 57.5,43.5 parent: 2 - - uid: 33371 + - uid: 33802 components: - type: Transform pos: 50.5,52.5 parent: 2 - - uid: 33372 + - uid: 33803 components: - type: Transform pos: 39.5,59.5 parent: 2 - - uid: 33373 + - uid: 33804 components: - type: Transform pos: 36.5,45.5 parent: 2 - - uid: 33374 + - uid: 33805 components: - type: Transform pos: 58.5,43.5 parent: 2 - - uid: 33375 + - uid: 33806 components: - type: Transform pos: 50.5,53.5 parent: 2 - - uid: 33376 + - uid: 33807 components: - type: Transform pos: 36.5,47.5 parent: 2 - - uid: 33377 + - uid: 33808 components: - type: Transform pos: 58.5,44.5 parent: 2 - - uid: 33378 + - uid: 33809 components: - type: Transform pos: 31.5,42.5 parent: 2 - - uid: 33379 + - uid: 33810 components: - type: Transform pos: 50.5,54.5 parent: 2 - - uid: 33380 + - uid: 33811 components: - type: Transform pos: 31.5,41.5 parent: 2 - - uid: 33381 + - uid: 33812 components: - type: Transform pos: 31.5,43.5 parent: 2 - - uid: 33382 + - uid: 33813 components: - type: Transform pos: 50.5,49.5 parent: 2 - - uid: 33383 + - uid: 33814 components: - type: Transform pos: 29.5,43.5 parent: 2 - - uid: 33384 + - uid: 33815 components: - type: Transform pos: 50.5,51.5 parent: 2 - - uid: 33385 + - uid: 33816 components: - type: Transform pos: 42.5,61.5 parent: 2 - - uid: 33386 + - uid: 33817 components: - type: Transform pos: 36.5,48.5 parent: 2 - - uid: 33387 + - uid: 33818 components: - type: Transform pos: 37.5,59.5 parent: 2 - - uid: 33388 + - uid: 33819 components: - type: Transform pos: 37.5,46.5 parent: 2 - - uid: 33389 + - uid: 33820 components: - type: Transform pos: 38.5,60.5 parent: 2 - - uid: 33390 + - uid: 33821 components: - type: Transform pos: 45.5,60.5 parent: 2 - - uid: 33391 + - uid: 33822 components: - type: Transform pos: 39.5,61.5 parent: 2 - - uid: 33392 + - uid: 33823 components: - type: Transform pos: 38.5,46.5 parent: 2 - - uid: 33393 + - uid: 33824 components: - type: Transform pos: 36.5,60.5 parent: 2 - - uid: 33394 + - uid: 33825 components: - type: Transform pos: 54.5,29.5 parent: 2 - - uid: 33395 + - uid: 33826 components: - type: Transform pos: 55.5,37.5 parent: 2 - - uid: 33396 + - uid: 33827 components: - type: Transform pos: 34.5,61.5 parent: 2 - - uid: 33397 + - uid: 33828 components: - type: Transform pos: 37.5,47.5 parent: 2 - - uid: 33398 + - uid: 33829 components: - type: Transform pos: 38.5,61.5 parent: 2 - - uid: 33399 + - uid: 33830 components: - type: Transform pos: 43.5,61.5 parent: 2 - - uid: 33400 + - uid: 33831 components: - type: Transform pos: 42.5,60.5 parent: 2 - - uid: 33401 + - uid: 33832 components: - type: Transform pos: 32.5,41.5 parent: 2 - - uid: 33402 + - uid: 33833 components: - type: Transform pos: 32.5,42.5 parent: 2 - - uid: 33403 + - uid: 33834 components: - type: Transform pos: 33.5,41.5 parent: 2 - - uid: 33404 + - uid: 33835 components: - type: Transform pos: 32.5,46.5 parent: 2 - - uid: 33405 + - uid: 33836 components: - type: Transform pos: 49.5,54.5 parent: 2 - - uid: 33406 + - uid: 33837 components: - type: Transform pos: -12.5,-31.5 parent: 2 - - uid: 33407 + - uid: 33838 components: - type: Transform pos: 37.5,45.5 parent: 2 - - uid: 33408 + - uid: 33839 components: - type: Transform pos: 39.5,60.5 parent: 2 - - uid: 33409 + - uid: 33840 components: - type: Transform pos: 38.5,45.5 parent: 2 - - uid: 33410 + - uid: 33841 components: - type: Transform pos: 38.5,59.5 parent: 2 - - uid: 33411 + - uid: 33842 components: - type: Transform pos: 11.5,-55.5 parent: 2 - - uid: 33412 + - uid: 33843 components: - type: Transform pos: 97.5,-49.5 parent: 2 - - uid: 33413 + - uid: 33844 components: - type: Transform pos: 41.5,31.5 parent: 2 - - uid: 33414 + - uid: 33845 components: - type: Transform pos: 49.5,50.5 parent: 2 - - uid: 33415 + - uid: 33846 components: - type: Transform pos: 40.5,37.5 parent: 2 - - uid: 33416 + - uid: 33847 components: - type: Transform pos: -55.5,19.5 parent: 2 - - uid: 33417 + - uid: 33848 components: - type: Transform pos: 97.5,-29.5 parent: 2 - - uid: 33418 + - uid: 33849 components: - type: Transform pos: 42.5,39.5 parent: 2 - - uid: 33419 + - uid: 33850 components: - type: Transform pos: 49.5,51.5 parent: 2 - - uid: 33420 + - uid: 33851 components: - type: Transform pos: 45.5,34.5 parent: 2 - - uid: 33421 + - uid: 33852 components: - type: Transform pos: 43.5,35.5 parent: 2 - - uid: 33422 + - uid: 33853 components: - type: Transform pos: 42.5,38.5 parent: 2 - - uid: 33423 + - uid: 33854 components: - type: Transform pos: 47.5,48.5 parent: 2 - - uid: 33424 + - uid: 33855 components: - type: Transform pos: -120.5,26.5 parent: 2 - - uid: 33425 + - uid: 33856 components: - type: Transform pos: 47.5,47.5 parent: 2 - - uid: 33426 + - uid: 33857 components: - type: Transform pos: -121.5,32.5 parent: 2 - - uid: 33427 + - uid: 33858 components: - type: Transform pos: 63.5,-53.5 parent: 2 - - uid: 33428 + - uid: 33859 components: - type: Transform pos: 46.5,33.5 parent: 2 - - uid: 33429 + - uid: 33860 components: - type: Transform pos: -37.5,-58.5 parent: 2 - - uid: 33430 + - uid: 33861 components: - type: Transform pos: -63.5,31.5 parent: 2 - - uid: 33431 + - uid: 33862 components: - type: Transform pos: -39.5,-56.5 parent: 2 - - uid: 33432 + - uid: 33863 components: - type: Transform pos: 42.5,35.5 parent: 2 - - uid: 33433 + - uid: 33864 components: - type: Transform pos: 100.5,-49.5 parent: 2 - - uid: 33434 + - uid: 33865 components: - type: Transform pos: 41.5,34.5 parent: 2 - - uid: 33435 + - uid: 33866 components: - type: Transform pos: 41.5,35.5 parent: 2 - - uid: 33436 + - uid: 33867 components: - type: Transform pos: 41.5,38.5 parent: 2 - - uid: 33437 + - uid: 33868 components: - type: Transform pos: 41.5,37.5 parent: 2 - - uid: 33438 + - uid: 33869 components: - type: Transform pos: 41.5,39.5 parent: 2 - - uid: 33439 + - uid: 33870 components: - type: Transform pos: 40.5,31.5 parent: 2 - - uid: 33440 + - uid: 33871 components: - type: Transform pos: 39.5,37.5 parent: 2 - - uid: 33441 + - uid: 33872 components: - type: Transform pos: 39.5,38.5 parent: 2 - - uid: 33442 + - uid: 33873 components: - type: Transform pos: 39.5,36.5 parent: 2 - - uid: 33443 + - uid: 33874 components: - type: Transform pos: 36.5,15.5 parent: 2 - - uid: 33444 + - uid: 33875 components: - type: Transform pos: 97.5,-30.5 parent: 2 - - uid: 33445 + - uid: 33876 components: - type: Transform pos: 14.5,-50.5 parent: 2 - - uid: 33446 + - uid: 33877 components: - type: Transform pos: 59.5,-54.5 parent: 2 - - uid: 33447 + - uid: 33878 components: - type: Transform pos: 52.5,14.5 parent: 2 - - uid: 33448 + - uid: 33879 components: - type: Transform pos: -72.5,-20.5 parent: 2 - - uid: 33449 + - uid: 33880 components: - type: Transform pos: -54.5,20.5 parent: 2 - - uid: 33450 + - uid: 33881 components: - type: Transform pos: -54.5,19.5 parent: 2 - - uid: 33451 + - uid: 33882 components: - type: Transform pos: -22.5,31.5 parent: 2 - - uid: 33452 - components: - - type: Transform - pos: -53.5,20.5 - parent: 2 - - uid: 33453 + - uid: 33883 components: - type: Transform pos: 85.5,-37.5 parent: 2 - - uid: 33454 - components: - - type: Transform - pos: 45.5,12.5 - parent: 2 - - uid: 33455 + - uid: 33884 components: - type: Transform pos: -21.5,31.5 parent: 2 - - uid: 33456 + - uid: 33885 components: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 33457 + - uid: 33886 components: - type: Transform pos: 25.5,-59.5 parent: 2 - - uid: 33458 + - uid: 33887 components: - type: Transform pos: 88.5,-40.5 parent: 2 - - uid: 33459 + - uid: 33888 components: - type: Transform pos: 47.5,33.5 parent: 2 - - uid: 33460 + - uid: 33889 components: - type: Transform pos: -120.5,27.5 parent: 2 - - uid: 33461 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 - - uid: 33462 + - uid: 33890 components: - type: Transform pos: -120.5,28.5 parent: 2 - - uid: 33463 + - uid: 33891 components: - type: Transform pos: 30.5,-59.5 parent: 2 - - uid: 33464 + - uid: 33892 components: - type: Transform pos: 47.5,46.5 parent: 2 - - uid: 33465 + - uid: 33893 components: - type: Transform pos: 88.5,-34.5 parent: 2 - - uid: 33466 + - uid: 33894 components: - type: Transform pos: 84.5,-36.5 parent: 2 - - uid: 33467 + - uid: 33895 components: - type: Transform pos: 54.5,15.5 parent: 2 - - uid: 33468 + - uid: 33896 components: - type: Transform pos: 44.5,14.5 parent: 2 - - uid: 33469 + - uid: 33897 components: - type: Transform pos: 54.5,21.5 parent: 2 - - uid: 33470 + - uid: 33898 components: - type: Transform pos: 54.5,16.5 parent: 2 - - uid: 33471 + - uid: 33899 components: - type: Transform pos: 54.5,20.5 parent: 2 - - uid: 33472 + - uid: 33900 components: - type: Transform pos: 55.5,22.5 parent: 2 - - uid: 33473 + - uid: 33901 components: - type: Transform pos: 54.5,17.5 parent: 2 - - uid: 33474 + - uid: 33902 components: - type: Transform pos: -29.5,-25.5 parent: 2 - - uid: 33475 + - uid: 33903 components: - type: Transform pos: 54.5,22.5 parent: 2 - - uid: 33476 + - uid: 33904 components: - type: Transform pos: 54.5,23.5 parent: 2 - - uid: 33477 + - uid: 33905 components: - type: Transform pos: 36.5,32.5 parent: 2 - - uid: 33478 + - uid: 33906 components: - type: Transform pos: 55.5,16.5 parent: 2 - - uid: 33479 + - uid: 33907 components: - type: Transform pos: 56.5,22.5 parent: 2 - - uid: 33480 + - uid: 33908 components: - type: Transform pos: 56.5,23.5 parent: 2 - - uid: 33481 + - uid: 33909 components: - type: Transform pos: 51.5,14.5 parent: 2 - - uid: 33482 + - uid: 33910 components: - type: Transform pos: 56.5,16.5 parent: 2 - - uid: 33483 + - uid: 33911 components: - type: Transform pos: 77.5,-4.5 parent: 2 - - uid: 33484 + - uid: 33912 components: - type: Transform pos: 45.5,7.5 parent: 2 - - uid: 33485 + - uid: 33913 components: - type: Transform pos: 47.5,55.5 parent: 2 - - uid: 33486 + - uid: 33914 components: - type: Transform pos: 41.5,40.5 parent: 2 - - uid: 33487 + - uid: 33915 components: - type: Transform pos: 44.5,40.5 parent: 2 - - uid: 33488 + - uid: 33916 components: - type: Transform pos: 48.5,53.5 parent: 2 - - uid: 33489 + - uid: 33917 components: - type: Transform pos: 50.5,41.5 parent: 2 - - uid: 33490 + - uid: 33918 components: - type: Transform pos: 52.5,46.5 parent: 2 - - uid: 33491 + - uid: 33919 components: - type: Transform pos: 48.5,56.5 parent: 2 - - uid: 33492 + - uid: 33920 components: - type: Transform pos: 53.5,45.5 parent: 2 - - uid: 33493 + - uid: 33921 components: - type: Transform pos: 52.5,41.5 parent: 2 - - uid: 33494 + - uid: 33922 components: - type: Transform pos: 49.5,52.5 parent: 2 - - uid: 33495 + - uid: 33923 components: - type: Transform pos: 40.5,40.5 parent: 2 - - uid: 33496 + - uid: 33924 components: - type: Transform pos: 33.5,49.5 parent: 2 - - uid: 33497 + - uid: 33925 components: - type: Transform pos: 47.5,40.5 parent: 2 - - uid: 33498 + - uid: 33926 components: - type: Transform pos: 39.5,42.5 parent: 2 - - uid: 33499 + - uid: 33927 components: - type: Transform pos: 41.5,42.5 parent: 2 - - uid: 33500 + - uid: 33928 components: - type: Transform pos: 60.5,43.5 parent: 2 - - uid: 33501 + - uid: 33929 components: - type: Transform pos: 48.5,55.5 parent: 2 - - uid: 33502 + - uid: 33930 components: - type: Transform pos: 49.5,55.5 parent: 2 - - uid: 33503 + - uid: 33931 components: - type: Transform pos: 49.5,46.5 parent: 2 - - uid: 33504 + - uid: 33932 components: - type: Transform pos: 48.5,51.5 parent: 2 - - uid: 33505 + - uid: 33933 components: - type: Transform pos: 51.5,40.5 parent: 2 - - uid: 33506 + - uid: 33934 components: - type: Transform pos: 33.5,48.5 parent: 2 - - uid: 33507 + - uid: 33935 components: - type: Transform pos: 52.5,50.5 parent: 2 - - uid: 33508 + - uid: 33936 components: - type: Transform pos: 49.5,56.5 parent: 2 - - uid: 33509 + - uid: 33937 components: - type: Transform pos: 53.5,41.5 parent: 2 - - uid: 33510 + - uid: 33938 components: - type: Transform pos: 48.5,40.5 parent: 2 - - uid: 33511 + - uid: 33939 components: - type: Transform pos: 51.5,41.5 parent: 2 - - uid: 33512 + - uid: 33940 components: - type: Transform pos: 52.5,40.5 parent: 2 - - uid: 33513 + - uid: 33941 components: - type: Transform pos: 34.5,48.5 parent: 2 - - uid: 33514 + - uid: 33942 components: - type: Transform pos: 52.5,51.5 parent: 2 - - uid: 33515 + - uid: 33943 components: - type: Transform pos: 50.5,55.5 parent: 2 - - uid: 33516 + - uid: 33944 components: - type: Transform pos: 50.5,56.5 parent: 2 - - uid: 33517 + - uid: 33945 components: - type: Transform pos: 40.5,42.5 parent: 2 - - uid: 33518 + - uid: 33946 components: - type: Transform pos: 45.5,40.5 parent: 2 - - uid: 33519 + - uid: 33947 components: - type: Transform pos: 35.5,48.5 parent: 2 - - uid: 33520 + - uid: 33948 components: - type: Transform pos: 60.5,45.5 parent: 2 - - uid: 33521 + - uid: 33949 components: - type: Transform pos: 57.5,44.5 parent: 2 - - uid: 33522 + - uid: 33950 components: - type: Transform pos: 48.5,46.5 parent: 2 - - uid: 33523 + - uid: 33951 components: - type: Transform pos: 48.5,47.5 parent: 2 - - uid: 33524 + - uid: 33952 components: - type: Transform pos: 58.5,45.5 parent: 2 - - uid: 33525 + - uid: 33953 components: - type: Transform pos: 53.5,47.5 parent: 2 - - uid: 33526 + - uid: 33954 components: - type: Transform pos: 56.5,45.5 parent: 2 - - uid: 33527 + - uid: 33955 components: - type: Transform pos: 42.5,41.5 parent: 2 - - uid: 33528 + - uid: 33956 components: - type: Transform pos: 54.5,40.5 parent: 2 - - uid: 33529 + - uid: 33957 components: - type: Transform pos: 35.5,52.5 parent: 2 - - uid: 33530 + - uid: 33958 components: - type: Transform pos: 50.5,40.5 parent: 2 - - uid: 33531 + - uid: 33959 components: - type: Transform pos: 35.5,51.5 parent: 2 - - uid: 33532 + - uid: 33960 components: - type: Transform pos: 35.5,50.5 parent: 2 - - uid: 33533 + - uid: 33961 components: - type: Transform pos: 45.5,41.5 parent: 2 - - uid: 33534 + - uid: 33962 components: - type: Transform pos: 39.5,40.5 parent: 2 - - uid: 33535 + - uid: 33963 components: - type: Transform pos: 34.5,52.5 parent: 2 - - uid: 33536 + - uid: 33964 components: - type: Transform pos: 35.5,59.5 parent: 2 - - uid: 33537 + - uid: 33965 components: - type: Transform pos: 35.5,60.5 parent: 2 - - uid: 33538 + - uid: 33966 components: - type: Transform pos: 43.5,41.5 parent: 2 - - uid: 33539 + - uid: 33967 components: - type: Transform pos: 42.5,40.5 parent: 2 - - uid: 33540 + - uid: 33968 components: - type: Transform pos: 49.5,57.5 parent: 2 - - uid: 33541 + - uid: 33969 components: - type: Transform pos: 49.5,58.5 parent: 2 - - uid: 33542 + - uid: 33970 components: - type: Transform pos: 53.5,40.5 parent: 2 - - uid: 33543 + - uid: 33971 components: - type: Transform pos: 49.5,47.5 parent: 2 - - uid: 33544 + - uid: 33972 components: - type: Transform pos: 47.5,7.5 parent: 2 - - uid: 33545 + - uid: 33973 components: - type: Transform pos: 101.5,-48.5 parent: 2 - - uid: 33546 + - uid: 33974 components: - type: Transform pos: 48.5,-26.5 parent: 2 - - uid: 33547 + - uid: 33975 components: - type: Transform pos: 13.5,-45.5 parent: 2 - - uid: 33548 + - uid: 33976 components: - type: Transform pos: 17.5,-54.5 parent: 2 - - uid: 33549 + - uid: 33977 components: - type: Transform pos: 18.5,-53.5 parent: 2 - - uid: 33550 + - uid: 33978 components: - type: Transform pos: 45.5,-27.5 parent: 2 - - uid: 33551 + - uid: 33979 components: - type: Transform pos: 16.5,-53.5 parent: 2 - - uid: 33552 + - uid: 33980 components: - type: Transform pos: 17.5,-53.5 parent: 2 - - uid: 33553 + - uid: 33981 components: - type: Transform pos: 48.5,6.5 parent: 2 - - uid: 33554 + - uid: 33982 components: - type: Transform pos: 47.5,6.5 parent: 2 - - uid: 33555 - components: - - type: Transform - pos: 56.5,-19.5 - parent: 2 - - uid: 33556 + - uid: 33983 components: - type: Transform pos: 53.5,-47.5 parent: 2 - - uid: 33557 + - uid: 33984 components: - type: Transform pos: 102.5,-48.5 parent: 2 - - uid: 33558 + - uid: 33985 components: - type: Transform pos: 47.5,-43.5 parent: 2 - - uid: 33559 + - uid: 33986 components: - type: Transform pos: 24.5,-58.5 parent: 2 - - uid: 33560 + - uid: 33987 components: - type: Transform pos: 19.5,-55.5 parent: 2 - - uid: 33561 + - uid: 33988 components: - type: Transform pos: 12.5,-54.5 parent: 2 - - uid: 33562 + - uid: 33989 components: - type: Transform pos: 22.5,-57.5 parent: 2 - - uid: 33563 + - uid: 33990 components: - type: Transform pos: 57.5,-53.5 parent: 2 - - uid: 33564 + - uid: 33991 components: - type: Transform pos: 87.5,-40.5 parent: 2 - - uid: 33565 + - uid: 33992 components: - type: Transform pos: 12.5,-53.5 parent: 2 - - uid: 33566 + - uid: 33993 components: - type: Transform pos: 47.5,-27.5 parent: 2 - - uid: 33567 + - uid: 33994 components: - type: Transform pos: 14.5,-46.5 parent: 2 - - uid: 33568 + - uid: 33995 components: - type: Transform pos: 14.5,-47.5 parent: 2 - - uid: 33569 + - uid: 33996 components: - type: Transform pos: 23.5,-57.5 parent: 2 - - uid: 33570 + - uid: 33997 components: - type: Transform pos: 18.5,-54.5 parent: 2 - - uid: 33571 + - uid: 33998 components: - type: Transform pos: 19.5,-54.5 parent: 2 - - uid: 33572 + - uid: 33999 components: - type: Transform pos: 47.5,-28.5 parent: 2 - - uid: 33573 + - uid: 34000 components: - type: Transform pos: 14.5,-52.5 parent: 2 - - uid: 33574 + - uid: 34001 components: - type: Transform pos: 48.5,-27.5 parent: 2 - - uid: 33575 + - uid: 34002 components: - type: Transform pos: 14.5,-48.5 parent: 2 - - uid: 33576 + - uid: 34003 components: - type: Transform pos: 15.5,48.5 parent: 2 - - uid: 33577 - components: - - type: Transform - pos: 49.5,-17.5 - parent: 2 - - uid: 33578 - components: - - type: Transform - pos: 49.5,-19.5 - parent: 2 - - uid: 33579 + - uid: 34004 components: - type: Transform pos: 49.5,-18.5 parent: 2 - - uid: 33580 - components: - - type: Transform - pos: 49.5,-20.5 - parent: 2 - - uid: 33581 - components: - - type: Transform - pos: 50.5,-17.5 - parent: 2 - - uid: 33582 + - uid: 34005 components: - type: Transform pos: 72.5,-50.5 parent: 2 - - uid: 33583 - components: - - type: Transform - pos: 59.5,-19.5 - parent: 2 - - uid: 33584 - components: - - type: Transform - pos: 59.5,-17.5 - parent: 2 - - uid: 33585 - components: - - type: Transform - pos: 59.5,-20.5 - parent: 2 - - uid: 33586 + - uid: 34006 components: - type: Transform pos: 22.5,-56.5 parent: 2 - - uid: 33587 + - uid: 34007 components: - type: Transform pos: 73.5,-50.5 parent: 2 - - uid: 33588 - components: - - type: Transform - pos: 58.5,-20.5 - parent: 2 - - uid: 33589 - components: - - type: Transform - pos: 57.5,-19.5 - parent: 2 - - uid: 33590 + - uid: 34008 components: - type: Transform - pos: 57.5,-20.5 + pos: 43.5,-11.5 parent: 2 - - uid: 33591 + - uid: 34009 components: - type: Transform pos: 11.5,-39.5 parent: 2 - - uid: 33592 - components: - - type: Transform - pos: 48.5,-14.5 - parent: 2 - - uid: 33593 - components: - - type: Transform - pos: 48.5,-15.5 - parent: 2 - - uid: 33594 + - uid: 34010 components: - type: Transform pos: 50.5,-18.5 parent: 2 - - uid: 33595 - components: - - type: Transform - pos: 50.5,-20.5 - parent: 2 - - uid: 33596 - components: - - type: Transform - pos: 50.5,-19.5 - parent: 2 - - uid: 33597 + - uid: 34011 components: - type: Transform pos: 74.5,-50.5 parent: 2 - - uid: 33598 - components: - - type: Transform - pos: 51.5,-17.5 - parent: 2 - - uid: 33599 + - uid: 34012 components: - type: Transform pos: 52.5,-34.5 parent: 2 - - uid: 33600 - components: - - type: Transform - pos: 51.5,-19.5 - parent: 2 - - uid: 33601 + - uid: 34013 components: - type: Transform pos: 51.5,-18.5 parent: 2 - - uid: 33602 - components: - - type: Transform - pos: 51.5,-20.5 - parent: 2 - - uid: 33603 + - uid: 34014 components: - type: Transform pos: 10.5,-39.5 parent: 2 - - uid: 33604 + - uid: 34015 components: - type: Transform pos: 53.5,-33.5 parent: 2 - - uid: 33605 + - uid: 34016 components: - type: Transform pos: 53.5,-32.5 parent: 2 - - uid: 33606 + - uid: 34017 components: - type: Transform pos: 53.5,-30.5 parent: 2 - - uid: 33607 + - uid: 34018 components: - type: Transform pos: 53.5,-34.5 parent: 2 - - uid: 33608 + - uid: 34019 components: - type: Transform pos: 53.5,-31.5 parent: 2 - - uid: 33609 - components: - - type: Transform - pos: 52.5,-19.5 - parent: 2 - - uid: 33610 + - uid: 34020 components: - type: Transform pos: 12.5,-39.5 parent: 2 - - uid: 33611 - components: - - type: Transform - pos: 52.5,-20.5 - parent: 2 - - uid: 33612 + - uid: 34021 components: - type: Transform pos: 49.5,-36.5 parent: 2 - - uid: 33613 - components: - - type: Transform - pos: 54.5,-19.5 - parent: 2 - - uid: 33614 + - uid: 34022 components: - type: Transform pos: 49.5,-37.5 parent: 2 - - uid: 33615 + - uid: 34023 components: - type: Transform pos: 49.5,-38.5 parent: 2 - - uid: 33616 - components: - - type: Transform - pos: 54.5,-20.5 - parent: 2 - - uid: 33617 + - uid: 34024 components: - type: Transform pos: 49.5,-39.5 parent: 2 - - uid: 33618 + - uid: 34025 components: - type: Transform pos: 71.5,-4.5 parent: 2 - - uid: 33619 - components: - - type: Transform - pos: 53.5,-19.5 - parent: 2 - - uid: 33620 - components: - - type: Transform - pos: 53.5,-20.5 - parent: 2 - - uid: 33621 + - uid: 34026 components: - type: Transform pos: 49.5,-45.5 parent: 2 - - uid: 33622 + - uid: 34027 components: - type: Transform pos: 48.5,5.5 parent: 2 - - uid: 33623 + - uid: 34028 components: - type: Transform pos: 45.5,9.5 parent: 2 - - uid: 33624 + - uid: 34029 components: - type: Transform pos: 46.5,11.5 parent: 2 - - uid: 33625 + - uid: 34030 components: - type: Transform pos: 48.5,-46.5 parent: 2 - - uid: 33626 + - uid: 34031 components: - type: Transform pos: 64.5,-17.5 parent: 2 - - uid: 33627 + - uid: 34032 components: - type: Transform pos: 64.5,-16.5 parent: 2 - - uid: 33628 + - uid: 34033 components: - type: Transform pos: 50.5,-47.5 parent: 2 - - uid: 33629 - components: - - type: Transform - pos: 78.5,-27.5 - parent: 2 - - uid: 33630 + - uid: 34034 components: - type: Transform pos: 10.5,-41.5 parent: 2 - - uid: 33631 - components: - - type: Transform - pos: 60.5,-20.5 - parent: 2 - - uid: 33632 - components: - - type: Transform - pos: 55.5,-19.5 - parent: 2 - - uid: 33633 - components: - - type: Transform - pos: 55.5,-20.5 - parent: 2 - - uid: 33634 + - uid: 34035 components: - type: Transform pos: 20.5,-56.5 parent: 2 - - uid: 33635 + - uid: 34036 components: - type: Transform pos: 20.5,-29.5 parent: 2 - - uid: 33636 + - uid: 34037 components: - type: Transform pos: 50.5,-26.5 parent: 2 - - uid: 33637 + - uid: 34038 components: - type: Transform pos: 50.5,-30.5 parent: 2 - - uid: 33638 + - uid: 34039 components: - type: Transform pos: 47.5,-34.5 parent: 2 - - uid: 33639 + - uid: 34040 components: - type: Transform pos: 47.5,-35.5 parent: 2 - - uid: 33640 + - uid: 34041 components: - type: Transform pos: 47.5,-36.5 parent: 2 - - uid: 33641 + - uid: 34042 components: - type: Transform pos: 47.5,-37.5 parent: 2 - - uid: 33642 + - uid: 34043 components: - type: Transform pos: 47.5,-38.5 parent: 2 - - uid: 33643 + - uid: 34044 components: - type: Transform pos: 47.5,-39.5 parent: 2 - - uid: 33644 + - uid: 34045 components: - type: Transform pos: 47.5,-40.5 parent: 2 - - uid: 33645 + - uid: 34046 components: - type: Transform pos: 47.5,-41.5 parent: 2 - - uid: 33646 + - uid: 34047 components: - type: Transform pos: 47.5,-42.5 parent: 2 - - uid: 33647 + - uid: 34048 components: - type: Transform pos: 46.5,-33.5 parent: 2 - - uid: 33648 + - uid: 34049 components: - type: Transform pos: 46.5,-34.5 parent: 2 - - uid: 33649 + - uid: 34050 components: - type: Transform pos: 46.5,-35.5 parent: 2 - - uid: 33650 + - uid: 34051 components: - type: Transform pos: 37.5,-25.5 parent: 2 - - uid: 33651 + - uid: 34052 components: - type: Transform pos: 36.5,-26.5 parent: 2 - - uid: 33652 + - uid: 34053 components: - type: Transform pos: 49.5,-29.5 parent: 2 - - uid: 33653 + - uid: 34054 components: - type: Transform pos: 29.5,-60.5 parent: 2 - - uid: 33654 + - uid: 34055 components: - type: Transform pos: 34.5,-61.5 parent: 2 - - uid: 33655 + - uid: 34056 components: - type: Transform pos: 36.5,-61.5 parent: 2 - - uid: 33656 + - uid: 34057 components: - type: Transform pos: 30.5,-60.5 parent: 2 - - uid: 33657 + - uid: 34058 components: - type: Transform pos: 36.5,-62.5 parent: 2 - - uid: 33658 + - uid: 34059 components: - type: Transform pos: 34.5,-62.5 parent: 2 - - uid: 33659 + - uid: 34060 components: - type: Transform pos: 50.5,-27.5 parent: 2 - - uid: 33660 + - uid: 34061 components: - type: Transform pos: 49.5,-30.5 parent: 2 - - uid: 33661 + - uid: 34062 components: - type: Transform - pos: 40.5,-58.5 + pos: 39.5,-60.5 parent: 2 - - uid: 33662 + - uid: 34063 components: - type: Transform pos: 32.5,-61.5 parent: 2 - - uid: 33663 + - uid: 34064 components: - type: Transform pos: 35.5,-61.5 parent: 2 - - uid: 33664 + - uid: 34065 components: - type: Transform pos: 32.5,-62.5 parent: 2 - - uid: 33665 + - uid: 34066 components: - type: Transform pos: 35.5,-62.5 parent: 2 - - uid: 33666 + - uid: 34067 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 33667 - components: - - type: Transform - pos: 35.5,-60.5 - parent: 2 - - uid: 33668 + - uid: 34068 components: - type: Transform pos: 29.5,-61.5 parent: 2 - - uid: 33669 + - uid: 34069 components: - type: Transform pos: 31.5,-61.5 parent: 2 - - uid: 33670 + - uid: 34070 components: - type: Transform pos: 33.5,-62.5 parent: 2 - - uid: 33671 + - uid: 34071 components: - type: Transform pos: 31.5,-60.5 parent: 2 - - uid: 33672 + - uid: 34072 components: - type: Transform pos: 85.5,-40.5 parent: 2 - - uid: 33673 + - uid: 34073 components: - type: Transform pos: 84.5,-35.5 parent: 2 - - uid: 33674 + - uid: 34074 components: - type: Transform pos: 64.5,-19.5 parent: 2 - - uid: 33675 + - uid: 34075 components: - type: Transform pos: 95.5,-49.5 parent: 2 - - uid: 33676 + - uid: 34076 components: - type: Transform pos: 13.5,-53.5 parent: 2 - - uid: 33677 + - uid: 34077 components: - type: Transform pos: 98.5,-49.5 parent: 2 - - uid: 33678 + - uid: 34078 components: - type: Transform pos: 96.5,-31.5 parent: 2 - - uid: 33679 + - uid: 34079 components: - type: Transform pos: 99.5,-49.5 parent: 2 - - uid: 33680 + - uid: 34080 components: - type: Transform pos: 42.5,-27.5 parent: 2 - - uid: 33681 + - uid: 34081 components: - type: Transform pos: 43.5,-26.5 parent: 2 - - uid: 33682 + - uid: 34082 components: - type: Transform pos: 43.5,-27.5 parent: 2 - - uid: 33683 + - uid: 34083 components: - type: Transform pos: 48.5,-28.5 parent: 2 - - uid: 33684 + - uid: 34084 components: - type: Transform pos: 48.5,-29.5 parent: 2 - - uid: 33685 + - uid: 34085 components: - type: Transform pos: 48.5,-36.5 parent: 2 - - uid: 33686 + - uid: 34086 components: - type: Transform pos: 48.5,-39.5 parent: 2 - - uid: 33687 + - uid: 34087 components: - type: Transform pos: 48.5,-40.5 parent: 2 - - uid: 33688 + - uid: 34088 components: - type: Transform pos: 48.5,-41.5 parent: 2 - - uid: 33689 + - uid: 34089 components: - type: Transform pos: 47.5,-46.5 parent: 2 - - uid: 33690 + - uid: 34090 components: - type: Transform pos: 57.5,22.5 parent: 2 - - uid: 33691 + - uid: 34091 components: - type: Transform pos: 57.5,23.5 parent: 2 - - uid: 33692 + - uid: 34092 components: - type: Transform pos: 57.5,24.5 parent: 2 - - uid: 33693 + - uid: 34093 components: - type: Transform pos: 57.5,25.5 parent: 2 - - uid: 33694 + - uid: 34094 components: - type: Transform pos: 57.5,28.5 parent: 2 - - uid: 33695 + - uid: 34095 components: - type: Transform pos: 57.5,29.5 parent: 2 - - uid: 33696 + - uid: 34096 components: - type: Transform pos: 57.5,36.5 parent: 2 - - uid: 33697 + - uid: 34097 components: - type: Transform pos: 57.5,37.5 parent: 2 - - uid: 33698 + - uid: 34098 components: - type: Transform pos: 58.5,15.5 parent: 2 - - uid: 33699 + - uid: 34099 components: - type: Transform pos: 58.5,16.5 parent: 2 - - uid: 33700 + - uid: 34100 components: - type: Transform pos: 58.5,24.5 parent: 2 - - uid: 33701 + - uid: 34101 components: - type: Transform pos: 58.5,27.5 parent: 2 - - uid: 33702 + - uid: 34102 components: - type: Transform pos: 58.5,28.5 parent: 2 - - uid: 33703 + - uid: 34103 components: - type: Transform pos: 58.5,29.5 parent: 2 - - uid: 33704 + - uid: 34104 components: - type: Transform pos: 56.5,29.5 parent: 2 - - uid: 33705 + - uid: 34105 components: - type: Transform pos: 58.5,34.5 parent: 2 - - uid: 33706 + - uid: 34106 components: - type: Transform pos: 58.5,37.5 parent: 2 - - uid: 33707 + - uid: 34107 components: - type: Transform pos: 59.5,15.5 parent: 2 - - uid: 33708 + - uid: 34108 components: - type: Transform pos: 59.5,16.5 parent: 2 - - uid: 33709 + - uid: 34109 components: - type: Transform pos: 59.5,17.5 parent: 2 - - uid: 33710 + - uid: 34110 components: - type: Transform pos: 59.5,29.5 parent: 2 - - uid: 33711 + - uid: 34111 components: - type: Transform pos: 59.5,30.5 parent: 2 - - uid: 33712 + - uid: 34112 components: - type: Transform pos: 59.5,35.5 parent: 2 - - uid: 33713 + - uid: 34113 components: - type: Transform pos: 44.5,46.5 parent: 2 - - uid: 33714 + - uid: 34114 components: - type: Transform pos: 60.5,16.5 parent: 2 - - uid: 33715 + - uid: 34115 components: - type: Transform pos: 60.5,17.5 parent: 2 - - uid: 33716 + - uid: 34116 components: - type: Transform pos: 44.5,45.5 parent: 2 - - uid: 33717 + - uid: 34117 components: - type: Transform pos: 100.5,-47.5 parent: 2 - - uid: 33718 + - uid: 34118 components: - type: Transform pos: 100.5,-48.5 parent: 2 - - uid: 33719 + - uid: 34119 components: - type: Transform pos: 61.5,16.5 parent: 2 - - uid: 33720 + - uid: 34120 components: - type: Transform pos: 61.5,21.5 parent: 2 - - uid: 33721 + - uid: 34121 components: - type: Transform pos: 61.5,39.5 parent: 2 - - uid: 33722 + - uid: 34122 components: - type: Transform pos: 45.5,48.5 parent: 2 - - uid: 33723 + - uid: 34123 components: - type: Transform pos: 62.5,16.5 parent: 2 - - uid: 33724 + - uid: 34124 components: - type: Transform pos: -66.5,45.5 parent: 2 - - uid: 33725 + - uid: 34125 components: - type: Transform pos: 62.5,21.5 parent: 2 - - uid: 33726 + - uid: 34126 components: - type: Transform pos: 62.5,22.5 parent: 2 - - uid: 33727 + - uid: 34127 components: - type: Transform pos: 62.5,23.5 parent: 2 - - uid: 33728 + - uid: 34128 components: - type: Transform pos: 62.5,24.5 parent: 2 - - uid: 33729 + - uid: 34129 components: - type: Transform pos: 62.5,25.5 parent: 2 - - uid: 33730 + - uid: 34130 components: - type: Transform pos: 62.5,26.5 parent: 2 - - uid: 33731 + - uid: 34131 components: - type: Transform pos: 62.5,27.5 parent: 2 - - uid: 33732 + - uid: 34132 components: - type: Transform pos: 62.5,34.5 parent: 2 - - uid: 33733 + - uid: 34133 components: - type: Transform pos: 62.5,35.5 parent: 2 - - uid: 33734 + - uid: 34134 components: - type: Transform pos: 62.5,37.5 parent: 2 - - uid: 33735 + - uid: 34135 components: - type: Transform pos: 62.5,38.5 parent: 2 - - uid: 33736 + - uid: 34136 components: - type: Transform pos: 62.5,39.5 parent: 2 - - uid: 33737 + - uid: 34137 components: - type: Transform pos: 45.5,47.5 parent: 2 - - uid: 33738 + - uid: 34138 components: - type: Transform pos: 63.5,20.5 parent: 2 - - uid: 33739 + - uid: 34139 components: - type: Transform pos: 63.5,22.5 parent: 2 - - uid: 33740 + - uid: 34140 components: - type: Transform pos: 63.5,23.5 parent: 2 - - uid: 33741 + - uid: 34141 components: - type: Transform pos: 63.5,24.5 parent: 2 - - uid: 33742 + - uid: 34142 components: - type: Transform pos: 63.5,25.5 parent: 2 - - uid: 33743 + - uid: 34143 components: - type: Transform pos: 63.5,26.5 parent: 2 - - uid: 33744 + - uid: 34144 components: - type: Transform pos: 63.5,27.5 parent: 2 - - uid: 33745 + - uid: 34145 components: - type: Transform pos: 63.5,28.5 parent: 2 - - uid: 33746 + - uid: 34146 components: - type: Transform pos: 63.5,29.5 parent: 2 - - uid: 33747 + - uid: 34147 components: - type: Transform pos: 63.5,32.5 parent: 2 - - uid: 33748 + - uid: 34148 components: - type: Transform pos: 63.5,33.5 parent: 2 - - uid: 33749 + - uid: 34149 components: - type: Transform pos: 63.5,34.5 parent: 2 - - uid: 33750 + - uid: 34150 components: - type: Transform pos: 63.5,37.5 parent: 2 - - uid: 33751 + - uid: 34151 components: - type: Transform pos: 63.5,38.5 parent: 2 - - uid: 33752 + - uid: 34152 components: - type: Transform pos: 63.5,39.5 parent: 2 - - uid: 33753 + - uid: 34153 components: - type: Transform pos: 64.5,19.5 parent: 2 - - uid: 33754 + - uid: 34154 components: - type: Transform pos: 64.5,20.5 parent: 2 - - uid: 33755 + - uid: 34155 components: - type: Transform pos: 64.5,21.5 parent: 2 - - uid: 33756 + - uid: 34156 components: - type: Transform pos: 64.5,22.5 parent: 2 - - uid: 33757 + - uid: 34157 components: - type: Transform pos: 64.5,23.5 parent: 2 - - uid: 33758 + - uid: 34158 components: - type: Transform pos: 64.5,24.5 parent: 2 - - uid: 33759 + - uid: 34159 components: - type: Transform pos: 64.5,26.5 parent: 2 - - uid: 33760 + - uid: 34160 components: - type: Transform pos: 64.5,27.5 parent: 2 - - uid: 33761 + - uid: 34161 components: - type: Transform pos: 64.5,28.5 parent: 2 - - uid: 33762 + - uid: 34162 components: - type: Transform pos: 64.5,29.5 parent: 2 - - uid: 33763 + - uid: 34163 components: - type: Transform pos: 76.5,25.5 parent: 2 - - uid: 33764 + - uid: 34164 components: - type: Transform pos: 64.5,31.5 parent: 2 - - uid: 33765 + - uid: 34165 components: - type: Transform pos: 64.5,32.5 parent: 2 - - uid: 33766 + - uid: 34166 components: - type: Transform pos: 64.5,33.5 parent: 2 - - uid: 33767 + - uid: 34167 components: - type: Transform pos: 64.5,34.5 parent: 2 - - uid: 33768 + - uid: 34168 components: - type: Transform pos: 64.5,36.5 parent: 2 - - uid: 33769 + - uid: 34169 components: - type: Transform pos: 64.5,37.5 parent: 2 - - uid: 33770 + - uid: 34170 components: - type: Transform pos: 64.5,38.5 parent: 2 - - uid: 33771 + - uid: 34171 components: - type: Transform pos: 64.5,39.5 parent: 2 - - uid: 33772 + - uid: 34172 components: - type: Transform pos: 65.5,18.5 parent: 2 - - uid: 33773 + - uid: 34173 components: - type: Transform pos: 65.5,19.5 parent: 2 - - uid: 33774 + - uid: 34174 components: - type: Transform pos: 65.5,20.5 parent: 2 - - uid: 33775 + - uid: 34175 components: - type: Transform pos: 65.5,21.5 parent: 2 - - uid: 33776 + - uid: 34176 components: - type: Transform pos: 65.5,22.5 parent: 2 - - uid: 33777 + - uid: 34177 components: - type: Transform pos: 65.5,23.5 parent: 2 - - uid: 33778 + - uid: 34178 components: - type: Transform pos: 65.5,26.5 parent: 2 - - uid: 33779 + - uid: 34179 components: - type: Transform pos: 65.5,27.5 parent: 2 - - uid: 33780 + - uid: 34180 components: - type: Transform pos: 75.5,25.5 parent: 2 - - uid: 33781 + - uid: 34181 components: - type: Transform pos: 76.5,27.5 parent: 2 - - uid: 33782 + - uid: 34182 components: - type: Transform pos: 76.5,26.5 parent: 2 - - uid: 33783 + - uid: 34183 components: - type: Transform pos: 65.5,31.5 parent: 2 - - uid: 33784 + - uid: 34184 components: - type: Transform pos: 65.5,32.5 parent: 2 - - uid: 33785 + - uid: 34185 components: - type: Transform pos: 65.5,33.5 parent: 2 - - uid: 33786 + - uid: 34186 components: - type: Transform pos: 65.5,36.5 parent: 2 - - uid: 33787 + - uid: 34187 components: - type: Transform pos: 65.5,37.5 parent: 2 - - uid: 33788 + - uid: 34188 components: - type: Transform pos: 65.5,39.5 parent: 2 - - uid: 33789 + - uid: 34189 components: - type: Transform pos: 45.5,56.5 parent: 2 - - uid: 33790 + - uid: 34190 components: - type: Transform pos: 66.5,12.5 parent: 2 - - uid: 33791 + - uid: 34191 components: - type: Transform pos: 66.5,13.5 parent: 2 - - uid: 33792 + - uid: 34192 components: - type: Transform pos: 66.5,18.5 parent: 2 - - uid: 33793 + - uid: 34193 components: - type: Transform pos: 66.5,19.5 parent: 2 - - uid: 33794 + - uid: 34194 components: - type: Transform pos: 66.5,20.5 parent: 2 - - uid: 33795 + - uid: 34195 components: - type: Transform pos: 66.5,22.5 parent: 2 - - uid: 33796 + - uid: 34196 components: - type: Transform pos: 66.5,23.5 parent: 2 - - uid: 33797 + - uid: 34197 components: - type: Transform pos: 66.5,24.5 parent: 2 - - uid: 33798 + - uid: 34198 components: - type: Transform pos: 66.5,26.5 parent: 2 - - uid: 33799 + - uid: 34199 components: - type: Transform pos: 75.5,27.5 parent: 2 - - uid: 33800 + - uid: 34200 components: - type: Transform pos: 75.5,26.5 parent: 2 - - uid: 33801 + - uid: 34201 components: - type: Transform pos: 66.5,30.5 parent: 2 - - uid: 33802 + - uid: 34202 components: - type: Transform pos: 66.5,31.5 parent: 2 - - uid: 33803 + - uid: 34203 components: - type: Transform pos: 66.5,32.5 parent: 2 - - uid: 33804 + - uid: 34204 components: - type: Transform pos: 66.5,36.5 parent: 2 - - uid: 33805 + - uid: 34205 components: - type: Transform pos: 66.5,37.5 parent: 2 - - uid: 33806 + - uid: 34206 components: - type: Transform pos: 66.5,38.5 parent: 2 - - uid: 33807 + - uid: 34207 components: - type: Transform pos: 66.5,39.5 parent: 2 - - uid: 33808 + - uid: 34208 components: - type: Transform pos: 45.5,55.5 parent: 2 - - uid: 33809 + - uid: 34209 components: - type: Transform pos: 67.5,18.5 parent: 2 - - uid: 33810 + - uid: 34210 components: - type: Transform pos: 67.5,19.5 parent: 2 - - uid: 33811 + - uid: 34211 components: - type: Transform pos: 67.5,20.5 parent: 2 - - uid: 33812 + - uid: 34212 components: - type: Transform pos: 67.5,21.5 parent: 2 - - uid: 33813 + - uid: 34213 components: - type: Transform pos: 67.5,22.5 parent: 2 - - uid: 33814 + - uid: 34214 components: - type: Transform pos: 67.5,23.5 parent: 2 - - uid: 33815 + - uid: 34215 components: - type: Transform pos: 67.5,24.5 parent: 2 - - uid: 33816 + - uid: 34216 components: - type: Transform pos: 67.5,30.5 parent: 2 - - uid: 33817 + - uid: 34217 components: - type: Transform pos: 67.5,31.5 parent: 2 - - uid: 33818 + - uid: 34218 components: - type: Transform pos: 67.5,32.5 parent: 2 - - uid: 33819 + - uid: 34219 components: - type: Transform pos: 67.5,36.5 parent: 2 - - uid: 33820 + - uid: 34220 components: - type: Transform pos: 67.5,37.5 parent: 2 - - uid: 33821 + - uid: 34221 components: - type: Transform pos: 67.5,38.5 parent: 2 - - uid: 33822 + - uid: 34222 components: - type: Transform pos: 67.5,39.5 parent: 2 - - uid: 33823 + - uid: 34223 components: - type: Transform pos: 45.5,53.5 parent: 2 - - uid: 33824 - components: - - type: Transform - pos: 45.5,52.5 - parent: 2 - - uid: 33825 + - uid: 34224 components: - type: Transform pos: 45.5,46.5 parent: 2 - - uid: 33826 + - uid: 34225 components: - type: Transform pos: 46.5,47.5 parent: 2 - - uid: 33827 + - uid: 34226 components: - type: Transform pos: 46.5,48.5 parent: 2 - - uid: 33828 + - uid: 34227 components: - type: Transform pos: 46.5,46.5 parent: 2 - - uid: 33829 + - uid: 34228 components: - type: Transform pos: 36.5,49.5 parent: 2 - - uid: 33830 + - uid: 34229 components: - type: Transform pos: 37.5,52.5 parent: 2 - - uid: 33831 + - uid: 34230 components: - type: Transform pos: 37.5,50.5 parent: 2 - - uid: 33832 + - uid: 34231 components: - type: Transform pos: 46.5,51.5 parent: 2 - - uid: 33833 + - uid: 34232 components: - type: Transform pos: 37.5,62.5 parent: 2 - - uid: 33834 + - uid: 34233 components: - type: Transform pos: 37.5,61.5 parent: 2 - - uid: 33835 + - uid: 34234 components: - type: Transform pos: 46.5,50.5 parent: 2 - - uid: 33836 + - uid: 34235 components: - type: Transform pos: 38.5,58.5 parent: 2 - - uid: 33837 + - uid: 34236 components: - type: Transform pos: 36.5,61.5 parent: 2 - - uid: 33838 + - uid: 34237 components: - type: Transform pos: 43.5,56.5 parent: 2 - - uid: 33839 + - uid: 34238 components: - type: Transform pos: 46.5,55.5 parent: 2 - - uid: 33840 + - uid: 34239 components: - type: Transform pos: 38.5,62.5 parent: 2 - - uid: 33841 + - uid: 34240 components: - type: Transform pos: 46.5,53.5 parent: 2 - - uid: 33842 + - uid: 34241 components: - type: Transform pos: 38.5,56.5 parent: 2 - - uid: 33843 + - uid: 34242 components: - type: Transform pos: 46.5,52.5 parent: 2 - - uid: 33844 + - uid: 34243 components: - type: Transform pos: 36.5,59.5 parent: 2 - - uid: 33845 - components: - - type: Transform - pos: 36.5,50.5 - parent: 2 - - uid: 33846 + - uid: 34244 components: - type: Transform pos: 46.5,54.5 parent: 2 - - uid: 33847 + - uid: 34245 components: - type: Transform pos: 37.5,56.5 parent: 2 - - uid: 33848 + - uid: 34246 components: - type: Transform pos: 37.5,55.5 parent: 2 - - uid: 33849 + - uid: 34247 components: - type: Transform pos: 45.5,50.5 parent: 2 - - uid: 33850 + - uid: 34248 components: - type: Transform pos: 45.5,49.5 parent: 2 - - uid: 33851 + - uid: 34249 components: - type: Transform pos: 46.5,56.5 parent: 2 - - uid: 33852 + - uid: 34250 components: - type: Transform pos: 62.5,-5.5 parent: 2 - - uid: 33853 + - uid: 34251 components: - type: Transform pos: 34.5,51.5 parent: 2 - - uid: 33854 + - uid: 34252 components: - type: Transform pos: 35.5,53.5 parent: 2 - - uid: 33855 + - uid: 34253 components: - type: Transform pos: 35.5,61.5 parent: 2 - - uid: 33856 + - uid: 34254 components: - type: Transform pos: 51.5,50.5 parent: 2 - - uid: 33857 + - uid: 34255 components: - type: Transform pos: 39.5,41.5 parent: 2 - - uid: 33858 + - uid: 34256 components: - type: Transform pos: 35.5,-59.5 parent: 2 - - uid: 33859 + - uid: 34257 components: - type: Transform pos: 89.5,-31.5 parent: 2 - - uid: 33860 + - uid: 34258 components: - type: Transform pos: 85.5,-30.5 parent: 2 - - uid: 33861 + - uid: 34259 components: - type: Transform pos: 73.5,-0.5 parent: 2 - - uid: 33862 + - uid: 34260 components: - type: Transform pos: 73.5,0.5 parent: 2 - - uid: 33863 + - uid: 34261 components: - type: Transform pos: 73.5,1.5 parent: 2 - - uid: 33864 + - uid: 34262 components: - type: Transform pos: 94.5,-27.5 parent: 2 - - uid: 33865 + - uid: 34263 components: - type: Transform pos: 83.5,-31.5 parent: 2 - - uid: 33866 + - uid: 34264 components: - type: Transform pos: 74.5,-1.5 parent: 2 - - uid: 33867 + - uid: 34265 components: - type: Transform pos: 74.5,-0.5 parent: 2 - - uid: 33868 + - uid: 34266 components: - type: Transform pos: 74.5,0.5 parent: 2 - - uid: 33869 + - uid: 34267 components: - type: Transform pos: 74.5,1.5 parent: 2 - - uid: 33870 + - uid: 34268 components: - type: Transform pos: 74.5,2.5 parent: 2 - - uid: 33871 + - uid: 34269 components: - type: Transform pos: 75.5,-1.5 parent: 2 - - uid: 33872 + - uid: 34270 components: - type: Transform pos: 75.5,0.5 parent: 2 - - uid: 33873 + - uid: 34271 components: - type: Transform pos: 75.5,1.5 parent: 2 - - uid: 33874 + - uid: 34272 components: - type: Transform pos: 75.5,2.5 parent: 2 - - uid: 33875 + - uid: 34273 components: - type: Transform pos: 71.5,3.5 parent: 2 - - uid: 33876 + - uid: 34274 components: - type: Transform pos: 71.5,4.5 parent: 2 - - uid: 33877 + - uid: 34275 components: - type: Transform pos: -63.5,32.5 parent: 2 - - uid: 33878 + - uid: 34276 components: - type: Transform pos: 65.5,-0.5 parent: 2 - - uid: 33879 + - uid: 34277 components: - type: Transform pos: 66.5,9.5 parent: 2 - - uid: 33880 + - uid: 34278 components: - type: Transform pos: 66.5,10.5 parent: 2 - - uid: 33881 + - uid: 34279 components: - type: Transform pos: 66.5,11.5 parent: 2 - - uid: 33882 + - uid: 34280 components: - type: Transform pos: 65.5,0.5 parent: 2 - - uid: 33883 + - uid: 34281 components: - type: Transform pos: 67.5,9.5 parent: 2 - - uid: 33884 + - uid: 34282 components: - type: Transform pos: 67.5,10.5 parent: 2 - - uid: 33885 + - uid: 34283 components: - type: Transform pos: 68.5,10.5 parent: 2 - - uid: 33886 + - uid: 34284 components: - type: Transform pos: 68.5,9.5 parent: 2 - - uid: 33887 + - uid: 34285 components: - type: Transform pos: 65.5,1.5 parent: 2 - - uid: 33888 + - uid: 34286 components: - type: Transform pos: 69.5,5.5 parent: 2 - - uid: 33889 + - uid: 34287 components: - type: Transform pos: 69.5,8.5 parent: 2 - - uid: 33890 + - uid: 34288 components: - type: Transform pos: 69.5,9.5 parent: 2 - - uid: 33891 + - uid: 34289 components: - type: Transform pos: 70.5,5.5 parent: 2 - - uid: 33892 + - uid: 34290 components: - type: Transform pos: -66.5,44.5 parent: 2 - - uid: 33893 + - uid: 34291 components: - type: Transform pos: 68.5,18.5 parent: 2 - - uid: 33894 + - uid: 34292 components: - type: Transform pos: 68.5,19.5 parent: 2 - - uid: 33895 + - uid: 34293 components: - type: Transform pos: 68.5,20.5 parent: 2 - - uid: 33896 + - uid: 34294 components: - type: Transform pos: 68.5,21.5 parent: 2 - - uid: 33897 + - uid: 34295 components: - type: Transform pos: 68.5,22.5 parent: 2 - - uid: 33898 + - uid: 34296 components: - type: Transform pos: 68.5,23.5 parent: 2 - - uid: 33899 + - uid: 34297 components: - type: Transform pos: 68.5,24.5 parent: 2 - - uid: 33900 + - uid: 34298 components: - type: Transform pos: 68.5,25.5 parent: 2 - - uid: 33901 + - uid: 34299 components: - type: Transform pos: 73.5,21.5 parent: 2 - - uid: 33902 + - uid: 34300 components: - type: Transform pos: 68.5,28.5 parent: 2 - - uid: 33903 + - uid: 34301 components: - type: Transform pos: 68.5,31.5 parent: 2 - - uid: 33904 + - uid: 34302 components: - type: Transform pos: 68.5,32.5 parent: 2 - - uid: 33905 + - uid: 34303 components: - type: Transform pos: 68.5,33.5 parent: 2 - - uid: 33906 + - uid: 34304 components: - type: Transform pos: 68.5,34.5 parent: 2 - - uid: 33907 + - uid: 34305 components: - type: Transform pos: 68.5,35.5 parent: 2 - - uid: 33908 + - uid: 34306 components: - type: Transform pos: 69.5,36.5 parent: 2 - - uid: 33909 + - uid: 34307 components: - type: Transform pos: 69.5,35.5 parent: 2 - - uid: 33910 + - uid: 34308 components: - type: Transform pos: 69.5,34.5 parent: 2 - - uid: 33911 + - uid: 34309 components: - type: Transform pos: 69.5,33.5 parent: 2 - - uid: 33912 + - uid: 34310 components: - type: Transform pos: 69.5,32.5 parent: 2 - - uid: 33913 + - uid: 34311 components: - type: Transform pos: 69.5,31.5 parent: 2 - - uid: 33914 + - uid: 34312 components: - type: Transform pos: 69.5,30.5 parent: 2 - - uid: 33915 + - uid: 34313 components: - type: Transform pos: 69.5,29.5 parent: 2 - - uid: 33916 + - uid: 34314 components: - type: Transform pos: 69.5,28.5 parent: 2 - - uid: 33917 + - uid: 34315 components: - type: Transform pos: 74.5,21.5 parent: 2 - - uid: 33918 + - uid: 34316 components: - type: Transform pos: 72.5,21.5 parent: 2 - - uid: 33919 + - uid: 34317 components: - type: Transform pos: 69.5,24.5 parent: 2 - - uid: 33920 + - uid: 34318 components: - type: Transform pos: 69.5,23.5 parent: 2 - - uid: 33921 + - uid: 34319 components: - type: Transform pos: 69.5,20.5 parent: 2 - - uid: 33922 + - uid: 34320 components: - type: Transform pos: 69.5,19.5 parent: 2 - - uid: 33923 + - uid: 34321 components: - type: Transform pos: 69.5,18.5 parent: 2 - - uid: 33924 + - uid: 34322 components: - type: Transform pos: 69.5,17.5 parent: 2 - - uid: 33925 + - uid: 34323 components: - type: Transform pos: 70.5,22.5 parent: 2 - - uid: 33926 + - uid: 34324 components: - type: Transform pos: 74.5,26.5 parent: 2 - - uid: 33927 + - uid: 34325 components: - type: Transform pos: 74.5,25.5 parent: 2 - - uid: 33928 + - uid: 34326 components: - type: Transform pos: 73.5,20.5 parent: 2 - - uid: 33929 + - uid: 34327 components: - type: Transform pos: 70.5,28.5 parent: 2 - - uid: 33930 + - uid: 34328 components: - type: Transform pos: 70.5,29.5 parent: 2 - - uid: 33931 + - uid: 34329 components: - type: Transform pos: 70.5,30.5 parent: 2 - - uid: 33932 + - uid: 34330 components: - type: Transform pos: 70.5,31.5 parent: 2 - - uid: 33933 + - uid: 34331 components: - type: Transform pos: 70.5,32.5 parent: 2 - - uid: 33934 + - uid: 34332 components: - type: Transform pos: 70.5,33.5 parent: 2 - - uid: 33935 + - uid: 34333 components: - type: Transform pos: 70.5,36.5 parent: 2 - - uid: 33936 + - uid: 34334 components: - type: Transform pos: 70.5,37.5 parent: 2 - - uid: 33937 + - uid: 34335 components: - type: Transform pos: 71.5,21.5 parent: 2 - - uid: 33938 + - uid: 34336 components: - type: Transform pos: 72.5,20.5 parent: 2 - - uid: 33939 + - uid: 34337 components: - type: Transform pos: 74.5,27.5 parent: 2 - - uid: 33940 + - uid: 34338 components: - type: Transform pos: 71.5,26.5 parent: 2 - - uid: 33941 + - uid: 34339 components: - type: Transform pos: 71.5,27.5 parent: 2 - - uid: 33942 + - uid: 34340 components: - type: Transform pos: 71.5,28.5 parent: 2 - - uid: 33943 + - uid: 34341 components: - type: Transform pos: 71.5,29.5 parent: 2 - - uid: 33944 + - uid: 34342 components: - type: Transform pos: 71.5,30.5 parent: 2 - - uid: 33945 + - uid: 34343 components: - type: Transform pos: 71.5,31.5 parent: 2 - - uid: 33946 + - uid: 34344 components: - type: Transform pos: 71.5,32.5 parent: 2 - - uid: 33947 + - uid: 34345 components: - type: Transform pos: 71.5,33.5 parent: 2 - - uid: 33948 + - uid: 34346 components: - type: Transform pos: 71.5,34.5 parent: 2 - - uid: 33949 + - uid: 34347 components: - type: Transform pos: 71.5,35.5 parent: 2 - - uid: 33950 + - uid: 34348 components: - type: Transform pos: 71.5,36.5 parent: 2 - - uid: 33951 + - uid: 34349 components: - type: Transform pos: 71.5,37.5 parent: 2 - - uid: 33952 + - uid: 34350 components: - type: Transform pos: 72.5,31.5 parent: 2 - - uid: 33953 + - uid: 34351 components: - type: Transform pos: 72.5,30.5 parent: 2 - - uid: 33954 + - uid: 34352 components: - type: Transform pos: 72.5,29.5 parent: 2 - - uid: 33955 + - uid: 34353 components: - type: Transform pos: 72.5,27.5 parent: 2 - - uid: 33956 + - uid: 34354 components: - type: Transform pos: 72.5,26.5 parent: 2 - - uid: 33957 + - uid: 34355 components: - type: Transform pos: 75.5,20.5 parent: 2 - - uid: 33958 + - uid: 34356 components: - type: Transform pos: 74.5,20.5 parent: 2 - - uid: 33959 + - uid: 34357 components: - type: Transform pos: 72.5,22.5 parent: 2 - - uid: 33960 + - uid: 34358 components: - type: Transform pos: 73.5,26.5 parent: 2 - - uid: 33961 + - uid: 34359 components: - type: Transform pos: 73.5,27.5 parent: 2 - - uid: 33962 + - uid: 34360 components: - type: Transform pos: 73.5,28.5 parent: 2 - - uid: 33963 + - uid: 34361 components: - type: Transform pos: 73.5,29.5 parent: 2 - - uid: 33964 + - uid: 34362 components: - type: Transform pos: 72.5,32.5 parent: 2 - - uid: 33965 + - uid: 34363 components: - type: Transform pos: 70.5,20.5 parent: 2 - - uid: 33966 + - uid: 34364 components: - type: Transform pos: 71.5,20.5 parent: 2 - - uid: 33967 + - uid: 34365 components: - type: Transform pos: 35.5,-28.5 parent: 2 - - uid: 33968 + - uid: 34366 components: - type: Transform pos: 38.5,-26.5 parent: 2 - - uid: 33969 + - uid: 34367 components: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 33970 + - uid: 34368 components: - type: Transform pos: 43.5,-35.5 parent: 2 - - uid: 33971 + - uid: 34369 components: - type: Transform pos: 35.5,-26.5 parent: 2 - - uid: 33972 + - uid: 34370 components: - type: Transform pos: 44.5,-35.5 parent: 2 - - uid: 33973 + - uid: 34371 components: - type: Transform pos: 35.5,-27.5 parent: 2 - - uid: 33974 + - uid: 34372 components: - type: Transform pos: 45.5,-35.5 parent: 2 - - uid: 33975 - components: - - type: Transform - pos: 49.5,-7.5 - parent: 2 - - uid: 33976 + - uid: 34373 components: - type: Transform pos: -38.5,-58.5 parent: 2 - - uid: 33977 - components: - - type: Transform - pos: 51.5,-13.5 - parent: 2 - - uid: 33978 - components: - - type: Transform - pos: 51.5,-8.5 - parent: 2 - - uid: 33979 - components: - - type: Transform - pos: 49.5,-12.5 - parent: 2 - - uid: 33980 - components: - - type: Transform - pos: 51.5,-9.5 - parent: 2 - - uid: 33981 - components: - - type: Transform - pos: 51.5,-7.5 - parent: 2 - - uid: 33982 + - uid: 34374 components: - type: Transform pos: 37.5,15.5 parent: 2 - - uid: 33983 - components: - - type: Transform - pos: 50.5,-12.5 - parent: 2 - - uid: 33984 - components: - - type: Transform - pos: 50.5,-9.5 - parent: 2 - - uid: 33985 + - uid: 34375 components: - type: Transform pos: 13.5,48.5 parent: 2 - - uid: 33986 - components: - - type: Transform - pos: 50.5,-7.5 - parent: 2 - - uid: 33987 - components: - - type: Transform - pos: 50.5,-15.5 - parent: 2 - - uid: 33988 - components: - - type: Transform - pos: 49.5,-6.5 - parent: 2 - - uid: 33989 + - uid: 34376 components: - type: Transform pos: 64.5,-1.5 parent: 2 - - uid: 33990 - components: - - type: Transform - pos: 53.5,-9.5 - parent: 2 - - uid: 33991 + - uid: 34377 components: - type: Transform pos: 64.5,-2.5 parent: 2 - - uid: 33992 + - uid: 34378 components: - type: Transform pos: 63.5,-5.5 parent: 2 - - uid: 33993 - components: - - type: Transform - pos: 51.5,-14.5 - parent: 2 - - uid: 33994 + - uid: 34379 components: - type: Transform pos: 67.5,2.5 parent: 2 - - uid: 33995 - components: - - type: Transform - pos: 50.5,-5.5 - parent: 2 - - uid: 33996 + - uid: 34380 components: - type: Transform pos: 64.5,-0.5 parent: 2 - - uid: 33997 + - uid: 34381 components: - type: Transform pos: 76.5,-4.5 parent: 2 - - uid: 33998 + - uid: 34382 components: - type: Transform pos: 64.5,-3.5 parent: 2 - - uid: 33999 - components: - - type: Transform - pos: 51.5,-5.5 - parent: 2 - - uid: 34000 - components: - - type: Transform - pos: 50.5,-6.5 - parent: 2 - - uid: 34001 - components: - - type: Transform - pos: 50.5,-8.5 - parent: 2 - - uid: 34002 - components: - - type: Transform - pos: 51.5,-10.5 - parent: 2 - - uid: 34003 - components: - - type: Transform - pos: 51.5,-6.5 - parent: 2 - - uid: 34004 + - uid: 34383 components: - type: Transform pos: 92.5,-47.5 parent: 2 - - uid: 34005 + - uid: 34384 components: - type: Transform pos: 92.5,-46.5 parent: 2 - - uid: 34006 + - uid: 34385 components: - type: Transform pos: 92.5,-48.5 parent: 2 - - uid: 34007 + - uid: 34386 components: - type: Transform pos: 93.5,-46.5 parent: 2 - - uid: 34008 + - uid: 34387 components: - type: Transform pos: 93.5,-47.5 parent: 2 - - uid: 34009 + - uid: 34388 components: - type: Transform pos: 94.5,-46.5 parent: 2 - - uid: 34010 + - uid: 34389 components: - type: Transform pos: -60.5,13.5 parent: 2 - - uid: 34011 - components: - - type: Transform - pos: 52.5,-9.5 - parent: 2 - - uid: 34012 + - uid: 34390 components: - type: Transform pos: 38.5,15.5 parent: 2 - - uid: 34013 + - uid: 34391 components: - type: Transform pos: 47.5,-45.5 parent: 2 - - uid: 34014 + - uid: 34392 components: - type: Transform pos: 16.5,47.5 parent: 2 - - uid: 34015 + - uid: 34393 components: - type: Transform pos: 16.5,48.5 parent: 2 - - uid: 34016 + - uid: 34394 components: - type: Transform pos: 59.5,-9.5 parent: 2 - - uid: 34017 - components: - - type: Transform - pos: 49.5,-15.5 - parent: 2 - - uid: 34018 + - uid: 34395 components: - type: Transform pos: 65.5,-1.5 parent: 2 - - uid: 34019 - components: - - type: Transform - pos: 48.5,-8.5 - parent: 2 - - uid: 34020 - components: - - type: Transform - pos: 50.5,-14.5 - parent: 2 - - uid: 34021 - components: - - type: Transform - pos: 49.5,-13.5 - parent: 2 - - uid: 34022 - components: - - type: Transform - pos: 50.5,-13.5 - parent: 2 - - uid: 34023 + - uid: 34396 components: - type: Transform pos: 66.5,2.5 parent: 2 - - uid: 34024 + - uid: 34397 components: - type: Transform pos: 64.5,-4.5 parent: 2 - - uid: 34025 - components: - - type: Transform - pos: 52.5,-13.5 - parent: 2 - - uid: 34026 - components: - - type: Transform - pos: 50.5,-16.5 - parent: 2 - - uid: 34027 - components: - - type: Transform - pos: 53.5,-13.5 - parent: 2 - - uid: 34028 - components: - - type: Transform - pos: 48.5,-9.5 - parent: 2 - - uid: 34029 + - uid: 34398 components: - type: Transform pos: 67.5,1.5 parent: 2 - - uid: 34030 + - uid: 34399 components: - type: Transform pos: 93.5,-2.5 parent: 2 - - uid: 34031 + - uid: 34400 components: - type: Transform pos: 65.5,-2.5 parent: 2 - - uid: 34032 + - uid: 34401 components: - type: Transform pos: 66.5,-1.5 parent: 2 - - uid: 34033 + - uid: 34402 components: - type: Transform pos: 66.5,1.5 parent: 2 - - uid: 34034 - components: - - type: Transform - pos: 49.5,-14.5 - parent: 2 - - uid: 34035 + - uid: 34403 components: - type: Transform - pos: 49.5,-8.5 + pos: 42.5,-17.5 parent: 2 - - uid: 34036 + - uid: 34404 components: - type: Transform pos: 66.5,0.5 parent: 2 - - uid: 34037 + - uid: 34405 components: - type: Transform pos: 66.5,-0.5 parent: 2 - - uid: 34038 + - uid: 34406 components: - type: Transform pos: -60.5,11.5 parent: 2 - - uid: 34039 - components: - - type: Transform - pos: 49.5,-16.5 - parent: 2 - - uid: 34040 + - uid: 34407 components: - type: Transform pos: 63.5,-4.5 parent: 2 - - uid: 34041 + - uid: 34408 components: - type: Transform pos: 67.5,0.5 parent: 2 - - uid: 34042 + - uid: 34409 components: - type: Transform pos: 67.5,-1.5 parent: 2 - - uid: 34043 + - uid: 34410 components: - type: Transform pos: 67.5,-0.5 parent: 2 - - uid: 34044 + - uid: 34411 components: - type: Transform pos: 68.5,2.5 parent: 2 - - uid: 34045 + - uid: 34412 components: - type: Transform pos: 65.5,2.5 parent: 2 - - uid: 34046 + - uid: 34413 components: - type: Transform pos: 64.5,2.5 parent: 2 - - uid: 34047 + - uid: 34414 components: - type: Transform pos: 60.5,-9.5 parent: 2 - - uid: 34048 + - uid: 34415 components: - type: Transform pos: 59.5,-8.5 parent: 2 - - uid: 34049 + - uid: 34416 components: - type: Transform pos: 60.5,-8.5 parent: 2 - - uid: 34050 + - uid: 34417 components: - type: Transform pos: 13.5,47.5 parent: 2 - - uid: 34051 - components: - - type: Transform - pos: 51.5,-15.5 - parent: 2 - - uid: 34052 + - uid: 34418 components: - type: Transform pos: 68.5,1.5 parent: 2 - - uid: 34053 - components: - - type: Transform - pos: 51.5,-16.5 - parent: 2 - - uid: 34054 + - uid: 34419 components: - type: Transform pos: 6.5,68.5 parent: 2 - - uid: 34055 + - uid: 34420 components: - type: Transform pos: 6.5,67.5 parent: 2 - - uid: 34056 + - uid: 34421 components: - type: Transform pos: 7.5,67.5 parent: 2 - - uid: 34057 + - uid: 34422 components: - type: Transform pos: 7.5,68.5 parent: 2 - - uid: 34058 + - uid: 34423 components: - type: Transform pos: 8.5,67.5 parent: 2 - - uid: 34059 + - uid: 34424 components: - type: Transform pos: 8.5,68.5 parent: 2 - - uid: 34060 + - uid: 34425 components: - type: Transform pos: 9.5,67.5 parent: 2 - - uid: 34061 + - uid: 34426 components: - type: Transform pos: 10.5,67.5 parent: 2 - - uid: 34062 + - uid: 34427 components: - type: Transform pos: 10.5,68.5 parent: 2 - - uid: 34063 + - uid: 34428 components: - type: Transform pos: 10.5,69.5 parent: 2 - - uid: 34064 + - uid: 34429 components: - type: Transform pos: 11.5,67.5 parent: 2 - - uid: 34065 + - uid: 34430 components: - type: Transform pos: 11.5,68.5 parent: 2 - - uid: 34066 + - uid: 34431 components: - type: Transform pos: 11.5,69.5 parent: 2 - - uid: 34067 + - uid: 34432 components: - type: Transform pos: 12.5,67.5 parent: 2 - - uid: 34068 + - uid: 34433 components: - type: Transform pos: 13.5,67.5 parent: 2 - - uid: 34069 + - uid: 34434 components: - type: Transform pos: 14.5,67.5 parent: 2 - - uid: 34070 + - uid: 34435 components: - type: Transform pos: 14.5,68.5 parent: 2 - - uid: 34071 + - uid: 34436 components: - type: Transform pos: 15.5,68.5 parent: 2 - - uid: 34072 + - uid: 34437 components: - type: Transform pos: 15.5,67.5 parent: 2 - - uid: 34073 + - uid: 34438 components: - type: Transform pos: 16.5,68.5 parent: 2 - - uid: 34074 + - uid: 34439 components: - type: Transform pos: 18.5,67.5 parent: 2 - - uid: 34075 + - uid: 34440 components: - type: Transform pos: 19.5,68.5 parent: 2 - - uid: 34076 + - uid: 34441 components: - type: Transform pos: 20.5,68.5 parent: 2 - - uid: 34077 + - uid: 34442 components: - type: Transform pos: 20.5,67.5 parent: 2 - - uid: 34078 + - uid: 34443 components: - type: Transform pos: 16.5,66.5 parent: 2 - - uid: 34079 + - uid: 34444 components: - type: Transform pos: 18.5,66.5 parent: 2 - - uid: 34080 + - uid: 34445 components: - type: Transform pos: 19.5,66.5 parent: 2 - - uid: 34081 + - uid: 34446 components: - type: Transform pos: 20.5,66.5 parent: 2 - - uid: 34082 + - uid: 34447 components: - type: Transform pos: 21.5,67.5 parent: 2 - - uid: 34083 + - uid: 34448 components: - type: Transform pos: 22.5,67.5 parent: 2 - - uid: 34084 + - uid: 34449 components: - type: Transform pos: 23.5,67.5 parent: 2 - - uid: 34085 + - uid: 34450 components: - type: Transform pos: 24.5,67.5 parent: 2 - - uid: 34086 + - uid: 34451 components: - type: Transform pos: 24.5,66.5 parent: 2 - - uid: 34087 + - uid: 34452 components: - type: Transform pos: 25.5,67.5 parent: 2 - - uid: 34088 + - uid: 34453 components: - type: Transform pos: 25.5,66.5 parent: 2 - - uid: 34089 + - uid: 34454 components: - type: Transform pos: 20.5,69.5 parent: 2 - - uid: 34090 + - uid: 34455 components: - type: Transform pos: 18.5,69.5 parent: 2 - - uid: 34091 + - uid: 34456 components: - type: Transform pos: 17.5,69.5 parent: 2 - - uid: 34092 + - uid: 34457 components: - type: Transform pos: 19.5,69.5 parent: 2 - - uid: 34093 + - uid: 34458 components: - type: Transform pos: 22.5,68.5 parent: 2 - - uid: 34094 + - uid: 34459 components: - type: Transform pos: 21.5,69.5 parent: 2 - - uid: 34095 + - uid: 34460 components: - type: Transform pos: 21.5,68.5 parent: 2 - - uid: 34096 + - uid: 34461 components: - type: Transform pos: 20.5,70.5 parent: 2 - - uid: 34097 + - uid: 34462 components: - type: Transform pos: 19.5,70.5 parent: 2 - - uid: 34098 + - uid: 34463 components: - type: Transform pos: 18.5,70.5 parent: 2 - - uid: 34099 + - uid: 34464 components: - type: Transform pos: 26.5,66.5 parent: 2 - - uid: 34100 + - uid: 34465 components: - type: Transform pos: 35.5,64.5 parent: 2 - - uid: 34101 + - uid: 34466 components: - type: Transform pos: 29.5,66.5 parent: 2 - - uid: 34102 + - uid: 34467 components: - type: Transform pos: 71.5,-6.5 parent: 2 - - uid: 34103 + - uid: 34468 components: - type: Transform pos: 84.5,-32.5 parent: 2 - - uid: 34104 + - uid: 34469 components: - type: Transform pos: 90.5,-30.5 parent: 2 - - uid: 34105 + - uid: 34470 components: - type: Transform pos: 85.5,-29.5 parent: 2 - - uid: 34106 + - uid: 34471 components: - type: Transform pos: 91.5,-30.5 parent: 2 - - uid: 34107 + - uid: 34472 components: - type: Transform pos: 92.5,-30.5 parent: 2 - - uid: 34108 + - uid: 34473 components: - type: Transform pos: 93.5,-29.5 parent: 2 - - uid: 34109 + - uid: 34474 components: - type: Transform pos: 94.5,-30.5 parent: 2 - - uid: 34110 + - uid: 34475 components: - type: Transform pos: 94.5,-26.5 parent: 2 - - uid: 34111 + - uid: 34476 components: - type: Transform pos: 95.5,-29.5 parent: 2 - - uid: 34112 + - uid: 34477 components: - type: Transform pos: 93.5,-30.5 parent: 2 - - uid: 34113 + - uid: 34478 components: - type: Transform pos: 89.5,-35.5 parent: 2 - - uid: 34114 + - uid: 34479 components: - type: Transform pos: 96.5,-29.5 parent: 2 - - uid: 34115 + - uid: 34480 components: - type: Transform pos: 96.5,-30.5 parent: 2 - - uid: 34116 + - uid: 34481 components: - type: Transform pos: 83.5,-28.5 parent: 2 - - uid: 34117 + - uid: 34482 components: - type: Transform pos: 94.5,-29.5 parent: 2 - - uid: 34118 + - uid: 34483 components: - type: Transform pos: 95.5,-27.5 parent: 2 - - uid: 34119 + - uid: 34484 components: - type: Transform pos: 95.5,-30.5 parent: 2 - - uid: 34120 + - uid: 34485 components: - type: Transform pos: 94.5,-28.5 parent: 2 - - uid: 34121 + - uid: 34486 components: - type: Transform pos: 95.5,-28.5 parent: 2 - - uid: 34122 + - uid: 34487 components: - type: Transform pos: 95.5,-26.5 parent: 2 - - uid: 34123 + - uid: 34488 components: - type: Transform pos: 96.5,-28.5 parent: 2 - - uid: 34124 + - uid: 34489 components: - type: Transform pos: 83.5,-29.5 parent: 2 - - uid: 34125 + - uid: 34490 components: - type: Transform pos: 87.5,-30.5 parent: 2 - - uid: 34126 + - uid: 34491 components: - type: Transform pos: -26.5,36.5 parent: 2 - - uid: 34127 + - uid: 34492 components: - type: Transform pos: -31.5,35.5 parent: 2 - - uid: 34128 + - uid: 34493 components: - type: Transform pos: -32.5,34.5 parent: 2 - - uid: 34129 + - uid: 34494 components: - type: Transform pos: -31.5,36.5 parent: 2 - - uid: 34130 + - uid: 34495 components: - type: Transform pos: -30.5,37.5 parent: 2 - - uid: 34131 + - uid: 34496 components: - type: Transform pos: -29.5,37.5 parent: 2 - - uid: 34132 + - uid: 34497 components: - type: Transform pos: -28.5,37.5 parent: 2 - - uid: 34133 + - uid: 34498 components: - type: Transform pos: 75.5,-50.5 parent: 2 - - uid: 34134 + - uid: 34499 components: - type: Transform pos: 60.5,14.5 parent: 2 - - uid: 34135 + - uid: 34500 components: - type: Transform pos: 60.5,15.5 parent: 2 - - uid: 34136 + - uid: 34501 components: - type: Transform pos: 61.5,14.5 parent: 2 - - uid: 34137 + - uid: 34502 components: - type: Transform pos: 61.5,15.5 parent: 2 - - uid: 34138 + - uid: 34503 components: - type: Transform pos: 62.5,14.5 parent: 2 - - uid: 34139 + - uid: 34504 components: - type: Transform pos: 62.5,15.5 parent: 2 - - uid: 34140 + - uid: 34505 components: - type: Transform - pos: 77.5,-27.5 + pos: 78.5,-33.5 parent: 2 - - uid: 34141 + - uid: 34506 components: - type: Transform pos: 63.5,14.5 parent: 2 - - uid: 34142 + - uid: 34507 components: - type: Transform pos: 63.5,15.5 parent: 2 - - uid: 34143 - components: - - type: Transform - pos: 51.5,-4.5 - parent: 2 - - uid: 34144 + - uid: 34508 components: - type: Transform pos: -39.5,-55.5 parent: 2 - - uid: 34145 + - uid: 34509 components: - type: Transform pos: 13.5,46.5 parent: 2 - - uid: 34146 + - uid: 34510 components: - type: Transform pos: 20.5,45.5 parent: 2 - - uid: 34147 + - uid: 34511 components: - type: Transform pos: 21.5,45.5 parent: 2 - - uid: 34148 + - uid: 34512 components: - type: Transform pos: 22.5,45.5 parent: 2 - - uid: 34149 + - uid: 34513 components: - type: Transform pos: 23.5,45.5 parent: 2 - - uid: 34150 + - uid: 34514 components: - type: Transform pos: 26.5,45.5 parent: 2 - - uid: 34151 + - uid: 34515 components: - type: Transform pos: 27.5,45.5 parent: 2 - - uid: 34152 + - uid: 34516 components: - type: Transform pos: 63.5,-9.5 parent: 2 - - uid: 34153 + - uid: 34517 components: - type: Transform pos: 64.5,-8.5 parent: 2 - - uid: 34154 + - uid: 34518 components: - type: Transform pos: 64.5,-9.5 parent: 2 - - uid: 34155 + - uid: 34519 components: - type: Transform pos: 65.5,-8.5 parent: 2 - - uid: 34156 + - uid: 34520 components: - type: Transform pos: 65.5,-9.5 parent: 2 - - uid: 34157 + - uid: 34521 components: - type: Transform pos: 67.5,-6.5 parent: 2 - - uid: 34158 + - uid: 34522 components: - type: Transform pos: 67.5,-7.5 parent: 2 - - uid: 34159 + - uid: 34523 components: - type: Transform pos: 92.5,-31.5 parent: 2 - - uid: 34160 + - uid: 34524 components: - type: Transform pos: 68.5,-6.5 parent: 2 - - uid: 34161 + - uid: 34525 components: - type: Transform pos: 68.5,-7.5 parent: 2 - - uid: 34162 + - uid: 34526 components: - type: Transform pos: 69.5,-6.5 parent: 2 - - uid: 34163 + - uid: 34527 components: - type: Transform pos: 84.5,-34.5 parent: 2 - - uid: 34164 + - uid: 34528 components: - type: Transform pos: 70.5,-6.5 parent: 2 - - uid: 34165 + - uid: 34529 components: - type: Transform pos: 84.5,-33.5 parent: 2 - - uid: 34166 + - uid: 34530 components: - type: Transform pos: 64.5,-10.5 parent: 2 - - uid: 34167 + - uid: 34531 components: - type: Transform pos: 64.5,-11.5 parent: 2 - - uid: 34168 + - uid: 34532 components: - type: Transform pos: 64.5,-12.5 parent: 2 - - uid: 34169 + - uid: 34533 components: - type: Transform pos: 64.5,-13.5 parent: 2 - - uid: 34170 + - uid: 34534 components: - type: Transform pos: 85.5,-34.5 parent: 2 - - uid: 34171 + - uid: 34535 components: - type: Transform pos: 85.5,-35.5 parent: 2 - - uid: 34172 + - uid: 34536 components: - type: Transform pos: 63.5,-10.5 parent: 2 - - uid: 34173 + - uid: 34537 components: - type: Transform pos: 63.5,-11.5 parent: 2 - - uid: 34174 + - uid: 34538 components: - type: Transform pos: 63.5,-12.5 parent: 2 - - uid: 34175 + - uid: 34539 components: - type: Transform pos: 63.5,-13.5 parent: 2 - - uid: 34176 + - uid: 34540 components: - type: Transform pos: 63.5,-14.5 parent: 2 - - uid: 34177 + - uid: 34541 components: - type: Transform pos: 63.5,-15.5 parent: 2 - - uid: 34178 + - uid: 34542 components: - type: Transform pos: 63.5,-16.5 parent: 2 - - uid: 34179 + - uid: 34543 components: - type: Transform pos: 63.5,-17.5 parent: 2 - - uid: 34180 + - uid: 34544 components: - type: Transform pos: 63.5,-18.5 parent: 2 - - uid: 34181 + - uid: 34545 components: - type: Transform pos: 63.5,-19.5 parent: 2 - - uid: 34182 + - uid: 34546 components: - type: Transform pos: 62.5,-11.5 parent: 2 - - uid: 34183 + - uid: 34547 components: - type: Transform pos: 62.5,-15.5 parent: 2 - - uid: 34184 + - uid: 34548 components: - type: Transform pos: 62.5,-16.5 parent: 2 - - uid: 34185 + - uid: 34549 components: - type: Transform pos: 62.5,-17.5 parent: 2 - - uid: 34186 + - uid: 34550 components: - type: Transform pos: 62.5,-18.5 parent: 2 - - uid: 34187 + - uid: 34551 components: - type: Transform pos: 60.5,-10.5 parent: 2 - - uid: 34188 + - uid: 34552 components: - type: Transform pos: 60.5,-13.5 parent: 2 - - uid: 34189 - components: - - type: Transform - pos: 60.5,-19.5 - parent: 2 - - uid: 34190 - components: - - type: Transform - pos: 45.5,-15.5 - parent: 2 - - uid: 34191 + - uid: 34553 components: - type: Transform pos: 59.5,-13.5 parent: 2 - - uid: 34192 + - uid: 34554 components: - type: Transform pos: 59.5,-14.5 parent: 2 - - uid: 34193 - components: - - type: Transform - pos: 59.5,-15.5 - parent: 2 - - uid: 34194 - components: - - type: Transform - pos: 46.5,-14.5 - parent: 2 - - uid: 34195 - components: - - type: Transform - pos: 45.5,-11.5 - parent: 2 - - uid: 34196 + - uid: 34555 components: - type: Transform pos: 58.5,-9.5 parent: 2 - - uid: 34197 + - uid: 34556 components: - type: Transform pos: 57.5,-10.5 parent: 2 - - uid: 34198 - components: - - type: Transform - pos: 57.5,-9.5 - parent: 2 - - uid: 34199 - components: - - type: Transform - pos: 56.5,-10.5 - parent: 2 - - uid: 34200 - components: - - type: Transform - pos: 56.5,-9.5 - parent: 2 - - uid: 34201 - components: - - type: Transform - pos: 55.5,-13.5 - parent: 2 - - uid: 34202 - components: - - type: Transform - pos: 55.5,-12.5 - parent: 2 - - uid: 34203 - components: - - type: Transform - pos: 55.5,-10.5 - parent: 2 - - uid: 34204 - components: - - type: Transform - pos: 55.5,-9.5 - parent: 2 - - uid: 34205 - components: - - type: Transform - pos: 54.5,-13.5 - parent: 2 - - uid: 34206 - components: - - type: Transform - pos: 54.5,-12.5 - parent: 2 - - uid: 34207 - components: - - type: Transform - pos: 54.5,-9.5 - parent: 2 - - uid: 34208 - components: - - type: Transform - pos: 46.5,-10.5 - parent: 2 - - uid: 34209 - components: - - type: Transform - pos: 46.5,-9.5 - parent: 2 - - uid: 34210 - components: - - type: Transform - pos: 47.5,-9.5 - parent: 2 - - uid: 34211 - components: - - type: Transform - pos: 47.5,-8.5 - parent: 2 - - uid: 34212 - components: - - type: Transform - pos: 47.5,-7.5 - parent: 2 - - uid: 34213 - components: - - type: Transform - pos: 47.5,-6.5 - parent: 2 - - uid: 34214 - components: - - type: Transform - pos: 48.5,-7.5 - parent: 2 - - uid: 34215 - components: - - type: Transform - pos: 48.5,-6.5 - parent: 2 - - uid: 34216 + - uid: 34557 components: - type: Transform - pos: 48.5,-5.5 + pos: 59.5,-10.5 parent: 2 - - uid: 34217 + - uid: 34558 components: - type: Transform - pos: 49.5,-5.5 + pos: 51.5,-5.5 parent: 2 - - uid: 34218 + - uid: 34559 components: - type: Transform pos: 50.5,-4.5 parent: 2 - - uid: 34219 - components: - - type: Transform - pos: 49.5,-4.5 - parent: 2 - - uid: 34220 - components: - - type: Transform - pos: 46.5,-8.5 - parent: 2 - - uid: 34221 - components: - - type: Transform - pos: 46.5,-7.5 - parent: 2 - - uid: 34222 + - uid: 34560 components: - type: Transform pos: 79.5,-5.5 parent: 2 - - uid: 34223 + - uid: 34561 components: - type: Transform pos: 79.5,-4.5 parent: 2 - - uid: 34224 + - uid: 34562 components: - type: Transform pos: 80.5,-5.5 parent: 2 - - uid: 34225 + - uid: 34563 components: - type: Transform pos: 80.5,-4.5 parent: 2 - - uid: 34226 + - uid: 34564 components: - type: Transform pos: 81.5,-5.5 parent: 2 - - uid: 34227 + - uid: 34565 components: - type: Transform pos: 81.5,-4.5 parent: 2 - - uid: 34228 + - uid: 34566 components: - type: Transform pos: 83.5,-5.5 parent: 2 - - uid: 34229 + - uid: 34567 components: - type: Transform pos: 84.5,-5.5 parent: 2 - - uid: 34230 + - uid: 34568 components: - type: Transform pos: 84.5,-4.5 parent: 2 - - uid: 34231 + - uid: 34569 components: - type: Transform pos: 86.5,-5.5 parent: 2 - - uid: 34232 + - uid: 34570 components: - type: Transform pos: 86.5,-4.5 parent: 2 - - uid: 34233 + - uid: 34571 components: - type: Transform pos: 87.5,-5.5 parent: 2 - - uid: 34234 + - uid: 34572 components: - type: Transform pos: 87.5,-4.5 parent: 2 - - uid: 34235 + - uid: 34573 components: - type: Transform pos: 88.5,-5.5 parent: 2 - - uid: 34236 + - uid: 34574 components: - type: Transform pos: 88.5,-4.5 parent: 2 - - uid: 34237 + - uid: 34575 components: - type: Transform pos: 89.5,-5.5 parent: 2 - - uid: 34238 + - uid: 34576 components: - type: Transform pos: 89.5,-4.5 parent: 2 - - uid: 34239 + - uid: 34577 components: - type: Transform pos: 90.5,-5.5 parent: 2 - - uid: 34240 + - uid: 34578 components: - type: Transform pos: 90.5,-4.5 parent: 2 - - uid: 34241 + - uid: 34579 components: - type: Transform pos: 93.5,-5.5 parent: 2 - - uid: 34242 + - uid: 34580 components: - type: Transform pos: 93.5,-4.5 parent: 2 - - uid: 34243 + - uid: 34581 components: - type: Transform pos: 93.5,-1.5 parent: 2 - - uid: 34244 + - uid: 34582 components: - type: Transform pos: 93.5,-0.5 parent: 2 - - uid: 34245 + - uid: 34583 components: - type: Transform pos: 93.5,0.5 parent: 2 - - uid: 34246 + - uid: 34584 components: - type: Transform pos: 93.5,1.5 parent: 2 - - uid: 34247 + - uid: 34585 components: - type: Transform pos: 93.5,2.5 parent: 2 - - uid: 34248 + - uid: 34586 components: - type: Transform pos: 92.5,-0.5 parent: 2 - - uid: 34249 + - uid: 34587 components: - type: Transform pos: 92.5,0.5 parent: 2 - - uid: 34250 + - uid: 34588 components: - type: Transform pos: 92.5,1.5 parent: 2 - - uid: 34251 + - uid: 34589 components: - type: Transform pos: 92.5,2.5 parent: 2 - - uid: 34252 + - uid: 34590 components: - type: Transform pos: 91.5,0.5 parent: 2 - - uid: 34253 + - uid: 34591 components: - type: Transform pos: 91.5,1.5 parent: 2 - - uid: 34254 + - uid: 34592 components: - type: Transform pos: 91.5,2.5 parent: 2 - - uid: 34255 + - uid: 34593 components: - type: Transform pos: 101.5,-4.5 parent: 2 - - uid: 34256 + - uid: 34594 components: - type: Transform pos: 92.5,5.5 parent: 2 - - uid: 34257 + - uid: 34595 components: - type: Transform pos: 92.5,6.5 parent: 2 - - uid: 34258 + - uid: 34596 components: - type: Transform pos: 92.5,7.5 parent: 2 - - uid: 34259 + - uid: 34597 components: - type: Transform pos: 91.5,5.5 parent: 2 - - uid: 34260 + - uid: 34598 components: - type: Transform pos: 91.5,6.5 parent: 2 - - uid: 34261 + - uid: 34599 components: - type: Transform pos: 91.5,7.5 parent: 2 - - uid: 34262 + - uid: 34600 components: - type: Transform pos: 90.5,2.5 parent: 2 - - uid: 34263 + - uid: 34601 components: - type: Transform pos: 90.5,4.5 parent: 2 - - uid: 34264 + - uid: 34602 components: - type: Transform pos: 90.5,5.5 parent: 2 - - uid: 34265 + - uid: 34603 components: - type: Transform pos: 90.5,6.5 parent: 2 - - uid: 34266 + - uid: 34604 components: - type: Transform pos: 89.5,2.5 parent: 2 - - uid: 34267 + - uid: 34605 components: - type: Transform pos: 89.5,4.5 parent: 2 - - uid: 34268 + - uid: 34606 components: - type: Transform pos: 89.5,5.5 parent: 2 - - uid: 34269 + - uid: 34607 components: - type: Transform pos: 89.5,9.5 parent: 2 - - uid: 34270 + - uid: 34608 components: - type: Transform pos: 88.5,7.5 parent: 2 - - uid: 34271 + - uid: 34609 components: - type: Transform pos: 88.5,8.5 parent: 2 - - uid: 34272 + - uid: 34610 components: - type: Transform pos: 88.5,9.5 parent: 2 - - uid: 34273 + - uid: 34611 components: - type: Transform pos: 87.5,7.5 parent: 2 - - uid: 34274 + - uid: 34612 components: - type: Transform pos: 87.5,8.5 parent: 2 - - uid: 34275 + - uid: 34613 components: - type: Transform pos: 87.5,9.5 parent: 2 - - uid: 34276 + - uid: 34614 components: - type: Transform pos: 86.5,9.5 parent: 2 - - uid: 34277 + - uid: 34615 components: - type: Transform pos: 78.5,10.5 parent: 2 - - uid: 34278 + - uid: 34616 components: - type: Transform pos: 77.5,10.5 parent: 2 - - uid: 34279 + - uid: 34617 components: - type: Transform pos: 76.5,10.5 parent: 2 - - uid: 34280 + - uid: 34618 components: - type: Transform pos: 76.5,11.5 parent: 2 - - uid: 34281 + - uid: 34619 components: - type: Transform pos: 74.5,11.5 parent: 2 - - uid: 34282 + - uid: 34620 components: - type: Transform pos: 75.5,11.5 parent: 2 - - uid: 34283 + - uid: 34621 components: - type: Transform pos: 75.5,10.5 parent: 2 - - uid: 34284 + - uid: 34622 components: - type: Transform pos: 75.5,9.5 parent: 2 - - uid: 34285 + - uid: 34623 components: - type: Transform pos: 75.5,8.5 parent: 2 - - uid: 34286 + - uid: 34624 components: - type: Transform pos: 75.5,7.5 parent: 2 - - uid: 34287 + - uid: 34625 components: - type: Transform pos: 74.5,10.5 parent: 2 - - uid: 34288 + - uid: 34626 components: - type: Transform pos: 74.5,9.5 parent: 2 - - uid: 34289 + - uid: 34627 components: - type: Transform pos: 74.5,8.5 parent: 2 - - uid: 34290 + - uid: 34628 components: - type: Transform pos: 74.5,7.5 parent: 2 - - uid: 34291 + - uid: 34629 components: - type: Transform pos: 73.5,10.5 parent: 2 - - uid: 34292 + - uid: 34630 components: - type: Transform pos: 73.5,9.5 parent: 2 - - uid: 34293 + - uid: 34631 components: - type: Transform pos: 73.5,7.5 parent: 2 - - uid: 34294 + - uid: 34632 components: - type: Transform pos: 76.5,9.5 parent: 2 - - uid: 34295 + - uid: 34633 components: - type: Transform pos: 76.5,8.5 parent: 2 - - uid: 34296 + - uid: 34634 components: - type: Transform pos: 76.5,1.5 parent: 2 - - uid: 34297 + - uid: 34635 components: - type: Transform pos: 76.5,0.5 parent: 2 - - uid: 34298 + - uid: 34636 components: - type: Transform pos: 76.5,-1.5 parent: 2 - - uid: 34299 + - uid: 34637 components: - type: Transform pos: 76.5,-2.5 parent: 2 - - uid: 34300 + - uid: 34638 components: - type: Transform pos: 76.5,-3.5 parent: 2 - - uid: 34301 + - uid: 34639 components: - type: Transform pos: 77.5,9.5 parent: 2 - - uid: 34302 + - uid: 34640 components: - type: Transform pos: 77.5,1.5 parent: 2 - - uid: 34303 + - uid: 34641 components: - type: Transform pos: 77.5,0.5 parent: 2 - - uid: 34304 + - uid: 34642 components: - type: Transform pos: 77.5,-1.5 parent: 2 - - uid: 34305 + - uid: 34643 components: - type: Transform pos: 77.5,-2.5 parent: 2 - - uid: 34306 + - uid: 34644 components: - type: Transform pos: 77.5,-3.5 parent: 2 - - uid: 34307 + - uid: 34645 components: - type: Transform pos: 79.5,1.5 parent: 2 - - uid: 34308 + - uid: 34646 components: - type: Transform pos: 79.5,0.5 parent: 2 - - uid: 34309 + - uid: 34647 components: - type: Transform pos: 79.5,-0.5 parent: 2 - - uid: 34310 + - uid: 34648 components: - type: Transform pos: 80.5,1.5 parent: 2 - - uid: 34311 + - uid: 34649 components: - type: Transform pos: 80.5,0.5 parent: 2 - - uid: 34312 + - uid: 34650 components: - type: Transform pos: 80.5,-0.5 parent: 2 - - uid: 34313 + - uid: 34651 components: - type: Transform pos: 80.5,-3.5 parent: 2 - - uid: 34314 + - uid: 34652 components: - type: Transform pos: 81.5,1.5 parent: 2 - - uid: 34315 + - uid: 34653 components: - type: Transform pos: 81.5,0.5 parent: 2 - - uid: 34316 + - uid: 34654 components: - type: Transform pos: 81.5,-0.5 parent: 2 - - uid: 34317 + - uid: 34655 components: - type: Transform pos: 81.5,-3.5 parent: 2 - - uid: 34318 + - uid: 34656 components: - type: Transform pos: 83.5,2.5 parent: 2 - - uid: 34319 + - uid: 34657 components: - type: Transform pos: 83.5,1.5 parent: 2 - - uid: 34320 + - uid: 34658 components: - type: Transform pos: 83.5,0.5 parent: 2 - - uid: 34321 + - uid: 34659 components: - type: Transform pos: 83.5,-2.5 parent: 2 - - uid: 34322 + - uid: 34660 components: - type: Transform pos: 84.5,2.5 parent: 2 - - uid: 34323 + - uid: 34661 components: - type: Transform pos: 84.5,1.5 parent: 2 - - uid: 34324 + - uid: 34662 components: - type: Transform pos: 84.5,0.5 parent: 2 - - uid: 34325 + - uid: 34663 components: - type: Transform pos: 84.5,-1.5 parent: 2 - - uid: 34326 + - uid: 34664 components: - type: Transform pos: 84.5,-2.5 parent: 2 - - uid: 34327 + - uid: 34665 components: - type: Transform pos: 85.5,6.5 parent: 2 - - uid: 34328 + - uid: 34666 components: - type: Transform pos: 85.5,5.5 parent: 2 - - uid: 34329 + - uid: 34667 components: - type: Transform pos: 85.5,4.5 parent: 2 - - uid: 34330 + - uid: 34668 components: - type: Transform pos: 85.5,3.5 parent: 2 - - uid: 34331 + - uid: 34669 components: - type: Transform pos: 85.5,2.5 parent: 2 - - uid: 34332 + - uid: 34670 components: - type: Transform pos: 85.5,1.5 parent: 2 - - uid: 34333 + - uid: 34671 components: - type: Transform pos: 85.5,0.5 parent: 2 - - uid: 34334 + - uid: 34672 components: - type: Transform pos: 86.5,6.5 parent: 2 - - uid: 34335 + - uid: 34673 components: - type: Transform pos: 86.5,5.5 parent: 2 - - uid: 34336 + - uid: 34674 components: - type: Transform pos: 86.5,3.5 parent: 2 - - uid: 34337 + - uid: 34675 components: - type: Transform pos: 86.5,2.5 parent: 2 - - uid: 34338 + - uid: 34676 components: - type: Transform pos: 86.5,1.5 parent: 2 - - uid: 34339 + - uid: 34677 components: - type: Transform pos: 87.5,6.5 parent: 2 - - uid: 34340 + - uid: 34678 components: - type: Transform pos: 87.5,2.5 parent: 2 - - uid: 34341 + - uid: 34679 components: - type: Transform pos: 88.5,6.5 parent: 2 - - uid: 34342 + - uid: 34680 components: - type: Transform pos: 88.5,5.5 parent: 2 - - uid: 34343 + - uid: 34681 components: - type: Transform pos: 88.5,-1.5 parent: 2 - - uid: 34344 + - uid: 34682 components: - type: Transform pos: 88.5,-2.5 parent: 2 - - uid: 34345 + - uid: 34683 components: - type: Transform pos: 88.5,-3.5 parent: 2 - - uid: 34346 + - uid: 34684 components: - type: Transform pos: 89.5,0.5 parent: 2 - - uid: 34347 + - uid: 34685 components: - type: Transform pos: 89.5,1.5 parent: 2 - - uid: 34348 + - uid: 34686 components: - type: Transform pos: 90.5,-3.5 parent: 2 - - uid: 34349 + - uid: 34687 components: - type: Transform pos: 90.5,0.5 parent: 2 - - uid: 34350 + - uid: 34688 components: - type: Transform pos: 90.5,1.5 parent: 2 - - uid: 34351 + - uid: 34689 components: - type: Transform pos: 91.5,-2.5 parent: 2 - - uid: 34352 - components: - - type: Transform - pos: 45.5,11.5 - parent: 2 - - uid: 34353 + - uid: 34690 components: - type: Transform pos: -60.5,10.5 parent: 2 - - uid: 34354 + - uid: 34691 components: - type: Transform pos: -60.5,8.5 parent: 2 - - uid: 34355 + - uid: 34692 components: - type: Transform pos: -60.5,1.5 parent: 2 - - uid: 34356 + - uid: 34693 components: - type: Transform pos: -60.5,0.5 parent: 2 - - uid: 34357 + - uid: 34694 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 34358 + - uid: 34695 components: - type: Transform pos: -60.5,-1.5 parent: 2 - - uid: 34359 + - uid: 34696 components: - type: Transform pos: -60.5,-2.5 parent: 2 - - uid: 34360 + - uid: 34697 components: - type: Transform pos: -61.5,13.5 parent: 2 - - uid: 34361 + - uid: 34698 components: - type: Transform pos: -61.5,12.5 parent: 2 - - uid: 34362 + - uid: 34699 components: - type: Transform pos: -61.5,11.5 parent: 2 - - uid: 34363 + - uid: 34700 components: - type: Transform pos: -61.5,8.5 parent: 2 - - uid: 34364 + - uid: 34701 components: - type: Transform pos: -61.5,7.5 parent: 2 - - uid: 34365 + - uid: 34702 components: - type: Transform pos: -61.5,6.5 parent: 2 - - uid: 34366 + - uid: 34703 components: - type: Transform pos: -61.5,5.5 parent: 2 - - uid: 34367 + - uid: 34704 components: - type: Transform pos: -61.5,4.5 parent: 2 - - uid: 34368 + - uid: 34705 components: - type: Transform pos: -61.5,3.5 parent: 2 - - uid: 34369 + - uid: 34706 components: - type: Transform pos: -61.5,2.5 parent: 2 - - uid: 34370 + - uid: 34707 components: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 34371 + - uid: 34708 components: - type: Transform pos: -85.5,29.5 parent: 2 - - uid: 34372 + - uid: 34709 components: - type: Transform pos: -85.5,28.5 parent: 2 - - uid: 34373 + - uid: 34710 components: - type: Transform pos: -62.5,13.5 parent: 2 - - uid: 34374 + - uid: 34711 components: - type: Transform pos: -62.5,12.5 parent: 2 - - uid: 34375 + - uid: 34712 components: - type: Transform pos: -62.5,8.5 parent: 2 - - uid: 34376 + - uid: 34713 components: - type: Transform pos: -62.5,7.5 parent: 2 - - uid: 34377 + - uid: 34714 components: - type: Transform pos: -62.5,6.5 parent: 2 - - uid: 34378 + - uid: 34715 components: - type: Transform pos: -62.5,4.5 parent: 2 - - uid: 34379 + - uid: 34716 components: - type: Transform pos: -62.5,3.5 parent: 2 - - uid: 34380 + - uid: 34717 components: - type: Transform pos: -62.5,2.5 parent: 2 - - uid: 34381 + - uid: 34718 components: - type: Transform pos: -62.5,-1.5 parent: 2 - - uid: 34382 + - uid: 34719 components: - type: Transform pos: -63.5,13.5 parent: 2 - - uid: 34383 + - uid: 34720 components: - type: Transform pos: -63.5,12.5 parent: 2 - - uid: 34384 + - uid: 34721 components: - type: Transform pos: -63.5,11.5 parent: 2 - - uid: 34385 + - uid: 34722 components: - type: Transform pos: -63.5,7.5 parent: 2 - - uid: 34386 + - uid: 34723 components: - type: Transform pos: -63.5,6.5 parent: 2 - - uid: 34387 + - uid: 34724 components: - type: Transform pos: -63.5,-0.5 parent: 2 - - uid: 34388 + - uid: 34725 components: - type: Transform pos: -64.5,12.5 parent: 2 - - uid: 34389 + - uid: 34726 components: - type: Transform pos: -64.5,11.5 parent: 2 - - uid: 34390 + - uid: 34727 components: - type: Transform pos: -64.5,8.5 parent: 2 - - uid: 34391 + - uid: 34728 components: - type: Transform pos: -64.5,7.5 parent: 2 - - uid: 34392 + - uid: 34729 components: - type: Transform pos: -64.5,6.5 parent: 2 - - uid: 34393 + - uid: 34730 components: - type: Transform pos: 74.5,19.5 parent: 2 - - uid: 34394 + - uid: 34731 components: - type: Transform pos: 72.5,19.5 parent: 2 - - uid: 34395 - components: - - type: Transform - pos: -108.5,41.5 - parent: 2 - - uid: 34396 - components: - - type: Transform - pos: -108.5,40.5 - parent: 2 - - uid: 34397 + - uid: 34732 components: - type: Transform pos: -64.5,1.5 parent: 2 - - uid: 34398 + - uid: 34733 components: - type: Transform pos: -64.5,0.5 parent: 2 - - uid: 34399 - components: - - type: Transform - pos: -72.5,-3.5 - parent: 2 - - uid: 34400 + - uid: 34734 components: - type: Transform pos: -65.5,8.5 parent: 2 - - uid: 34401 + - uid: 34735 components: - type: Transform pos: -65.5,7.5 parent: 2 - - uid: 34402 + - uid: 34736 components: - type: Transform pos: 79.5,10.5 parent: 2 - - uid: 34403 - components: - - type: Transform - pos: -108.5,42.5 - parent: 2 - - uid: 34404 + - uid: 34737 components: - type: Transform pos: -65.5,2.5 parent: 2 - - uid: 34405 + - uid: 34738 components: - type: Transform pos: -65.5,1.5 parent: 2 - - uid: 34406 + - uid: 34739 components: - type: Transform pos: -65.5,0.5 parent: 2 - - uid: 34407 + - uid: 34740 components: - type: Transform pos: -70.5,0.5 parent: 2 - - uid: 34408 + - uid: 34741 components: - type: Transform pos: -63.5,0.5 parent: 2 - - uid: 34409 + - uid: 34742 components: - type: Transform pos: -66.5,3.5 parent: 2 - - uid: 34410 + - uid: 34743 components: - type: Transform pos: -66.5,2.5 parent: 2 - - uid: 34411 + - uid: 34744 components: - type: Transform pos: -66.5,1.5 parent: 2 - - uid: 34412 - components: - - type: Transform - pos: -66.5,0.5 - parent: 2 - - uid: 34413 + - uid: 34745 components: - type: Transform pos: -69.5,0.5 parent: 2 - - uid: 34414 + - uid: 34746 components: - type: Transform pos: -67.5,11.5 parent: 2 - - uid: 34415 + - uid: 34747 components: - type: Transform pos: 80.5,10.5 parent: 2 - - uid: 34416 + - uid: 34748 components: - type: Transform pos: -67.5,5.5 parent: 2 - - uid: 34417 + - uid: 34749 components: - type: Transform pos: -67.5,4.5 parent: 2 - - uid: 34418 + - uid: 34750 components: - type: Transform pos: -67.5,3.5 parent: 2 - - uid: 34419 - components: - - type: Transform - pos: -67.5,0.5 - parent: 2 - - uid: 34420 + - uid: 34751 components: - type: Transform pos: -68.5,11.5 parent: 2 - - uid: 34421 + - uid: 34752 components: - type: Transform pos: -68.5,10.5 parent: 2 - - uid: 34422 + - uid: 34753 components: - type: Transform pos: -68.5,9.5 parent: 2 - - uid: 34423 + - uid: 34754 components: - type: Transform pos: 82.5,10.5 parent: 2 - - uid: 34424 + - uid: 34755 components: - type: Transform pos: -68.5,5.5 parent: 2 - - uid: 34425 + - uid: 34756 components: - type: Transform pos: -68.5,4.5 parent: 2 - - uid: 34426 + - uid: 34757 components: - type: Transform pos: -68.5,3.5 parent: 2 - - uid: 34427 + - uid: 34758 components: - type: Transform pos: -68.5,0.5 parent: 2 - - uid: 34428 + - uid: 34759 components: - type: Transform pos: -58.5,18.5 parent: 2 - - uid: 34429 + - uid: 34760 components: - type: Transform pos: -58.5,17.5 parent: 2 - - uid: 34430 + - uid: 34761 components: - type: Transform pos: -58.5,16.5 parent: 2 - - uid: 34431 + - uid: 34762 components: - type: Transform pos: -58.5,15.5 parent: 2 - - uid: 34432 + - uid: 34763 components: - type: Transform pos: -58.5,14.5 parent: 2 - - uid: 34433 + - uid: 34764 components: - type: Transform pos: -59.5,10.5 parent: 2 - - uid: 34434 + - uid: 34765 components: - type: Transform pos: -59.5,13.5 parent: 2 - - uid: 34435 + - uid: 34766 components: - type: Transform pos: -59.5,12.5 parent: 2 - - uid: 34436 + - uid: 34767 components: - type: Transform pos: -59.5,11.5 parent: 2 - - uid: 34437 + - uid: 34768 components: - type: Transform pos: -58.5,12.5 parent: 2 - - uid: 34438 + - uid: 34769 components: - type: Transform pos: -58.5,13.5 parent: 2 - - uid: 34439 + - uid: 34770 components: - type: Transform pos: -58.5,11.5 parent: 2 - - uid: 34440 + - uid: 34771 components: - type: Transform pos: -58.5,-2.5 parent: 2 - - uid: 34441 + - uid: 34772 components: - type: Transform pos: -58.5,-4.5 parent: 2 - - uid: 34442 + - uid: 34773 components: - type: Transform pos: -57.5,-4.5 parent: 2 - - uid: 34443 + - uid: 34774 components: - type: Transform pos: -57.5,-6.5 parent: 2 - - uid: 34444 + - uid: 34775 components: - type: Transform pos: -58.5,-5.5 parent: 2 - - uid: 34445 + - uid: 34776 components: - type: Transform pos: -59.5,-1.5 parent: 2 - - uid: 34446 + - uid: 34777 components: - type: Transform pos: -59.5,-2.5 parent: 2 - - uid: 34447 + - uid: 34778 components: - type: Transform pos: -58.5,-3.5 parent: 2 - - uid: 34448 + - uid: 34779 components: - type: Transform pos: -58.5,-6.5 parent: 2 - - uid: 34449 + - uid: 34780 components: - type: Transform pos: -58.5,-8.5 parent: 2 - - uid: 34450 + - uid: 34781 components: - type: Transform pos: -58.5,-10.5 parent: 2 - - uid: 34451 + - uid: 34782 components: - type: Transform pos: -66.5,66.5 parent: 2 - - uid: 34452 + - uid: 34783 components: - type: Transform pos: -58.5,-11.5 parent: 2 - - uid: 34453 + - uid: 34784 components: - type: Transform pos: -57.5,-12.5 parent: 2 - - uid: 34454 + - uid: 34785 components: - type: Transform pos: -57.5,-11.5 parent: 2 - - uid: 34455 + - uid: 34786 components: - type: Transform pos: -56.5,-11.5 parent: 2 - - uid: 34456 + - uid: 34787 components: - type: Transform pos: -55.5,-14.5 parent: 2 - - uid: 34457 + - uid: 34788 components: - type: Transform pos: -55.5,-13.5 parent: 2 - - uid: 34458 - components: - - type: Transform - pos: -55.5,-11.5 - parent: 2 - - uid: 34459 + - uid: 34789 components: - type: Transform pos: -54.5,-14.5 parent: 2 - - uid: 34460 + - uid: 34790 components: - type: Transform pos: -54.5,-13.5 parent: 2 - - uid: 34461 - components: - - type: Transform - pos: -54.5,-12.5 - parent: 2 - - uid: 34462 - components: - - type: Transform - pos: -54.5,-11.5 - parent: 2 - - uid: 34463 - components: - - type: Transform - pos: -53.5,-13.5 - parent: 2 - - uid: 34464 - components: - - type: Transform - pos: -53.5,-12.5 - parent: 2 - - uid: 34465 + - uid: 34791 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 34466 + - uid: 34792 components: - type: Transform pos: -52.5,-12.5 parent: 2 - - uid: 34467 + - uid: 34793 components: - type: Transform pos: -52.5,-11.5 parent: 2 - - uid: 34468 + - uid: 34794 components: - type: Transform pos: -51.5,-14.5 parent: 2 - - uid: 34469 + - uid: 34795 components: - type: Transform pos: -51.5,-13.5 parent: 2 - - uid: 34470 + - uid: 34796 components: - type: Transform pos: -51.5,-12.5 parent: 2 - - uid: 34471 + - uid: 34797 components: - type: Transform pos: -51.5,-11.5 parent: 2 - - uid: 34472 - components: - - type: Transform - pos: -51.5,-10.5 - parent: 2 - - uid: 34473 - components: - - type: Transform - pos: -51.5,-9.5 - parent: 2 - - uid: 34474 - components: - - type: Transform - pos: -51.5,-8.5 - parent: 2 - - uid: 34475 - components: - - type: Transform - pos: -52.5,-10.5 - parent: 2 - - uid: 34476 - components: - - type: Transform - pos: -52.5,-9.5 - parent: 2 - - uid: 34477 - components: - - type: Transform - pos: -52.5,-8.5 - parent: 2 - - uid: 34478 - components: - - type: Transform - pos: -53.5,-9.5 - parent: 2 - - uid: 34479 - components: - - type: Transform - pos: -53.5,-8.5 - parent: 2 - - uid: 34480 + - uid: 34798 components: - type: Transform - pos: -54.5,-9.5 + pos: -54.5,-15.5 parent: 2 - - uid: 34481 + - uid: 34799 components: - type: Transform pos: -54.5,-8.5 parent: 2 - - uid: 34482 - components: - - type: Transform - pos: -55.5,-10.5 - parent: 2 - - uid: 34483 + - uid: 34800 components: - type: Transform pos: -55.5,-9.5 parent: 2 - - uid: 34484 + - uid: 34801 components: - type: Transform pos: -55.5,-8.5 parent: 2 - - uid: 34485 + - uid: 34802 components: - type: Transform pos: -56.5,-10.5 parent: 2 - - uid: 34486 + - uid: 34803 components: - type: Transform pos: -56.5,-9.5 parent: 2 - - uid: 34487 + - uid: 34804 components: - type: Transform pos: -56.5,-8.5 parent: 2 - - uid: 34488 + - uid: 34805 components: - type: Transform pos: -57.5,-10.5 parent: 2 - - uid: 34489 + - uid: 34806 components: - type: Transform pos: -57.5,-9.5 parent: 2 - - uid: 34490 + - uid: 34807 components: - type: Transform pos: -57.5,-8.5 parent: 2 - - uid: 34491 + - uid: 34808 components: - type: Transform pos: -58.5,-7.5 parent: 2 - - uid: 34492 + - uid: 34809 components: - type: Transform pos: -57.5,-7.5 parent: 2 - - uid: 34493 + - uid: 34810 components: - type: Transform pos: -57.5,-5.5 parent: 2 - - uid: 34494 + - uid: 34811 components: - type: Transform pos: -57.5,-3.5 parent: 2 - - uid: 34495 + - uid: 34812 components: - type: Transform pos: -57.5,-2.5 parent: 2 - - uid: 34496 + - uid: 34813 components: - type: Transform pos: -51.5,-15.5 parent: 2 - - uid: 34497 + - uid: 34814 components: - type: Transform pos: -51.5,-16.5 parent: 2 - - uid: 34498 + - uid: 34815 components: - type: Transform pos: -52.5,-16.5 parent: 2 - - uid: 34499 - components: - - type: Transform - pos: -52.5,-15.5 - parent: 2 - - uid: 34500 - components: - - type: Transform - pos: -53.5,-16.5 - parent: 2 - - uid: 34501 + - uid: 34816 components: - type: Transform pos: -54.5,-16.5 parent: 2 - - uid: 34502 - components: - - type: Transform - pos: -54.5,-15.5 - parent: 2 - - uid: 34503 + - uid: 34817 components: - type: Transform pos: -57.5,-16.5 parent: 2 - - uid: 34504 + - uid: 34818 components: - type: Transform pos: -68.5,68.5 parent: 2 - - uid: 34505 + - uid: 34819 components: - type: Transform pos: -56.5,-17.5 parent: 2 - - uid: 34506 + - uid: 34820 components: - type: Transform pos: -57.5,-17.5 parent: 2 - - uid: 34507 + - uid: 34821 components: - type: Transform pos: -58.5,-17.5 parent: 2 - - uid: 34508 + - uid: 34822 components: - type: Transform pos: -69.5,68.5 parent: 2 - - uid: 34509 + - uid: 34823 components: - type: Transform pos: -67.5,67.5 parent: 2 - - uid: 34510 + - uid: 34824 components: - type: Transform pos: -66.5,67.5 parent: 2 - - uid: 34511 + - uid: 34825 components: - type: Transform pos: -60.5,-15.5 parent: 2 - - uid: 34512 + - uid: 34826 components: - type: Transform pos: -61.5,-14.5 parent: 2 - - uid: 34513 + - uid: 34827 components: - type: Transform pos: -61.5,-15.5 parent: 2 - - uid: 34514 + - uid: 34828 components: - type: Transform pos: -61.5,-16.5 parent: 2 - - uid: 34515 + - uid: 34829 components: - type: Transform pos: -63.5,-16.5 parent: 2 - - uid: 34516 + - uid: 34830 components: - type: Transform pos: -64.5,-16.5 parent: 2 - - uid: 34517 + - uid: 34831 components: - type: Transform pos: -64.5,-15.5 parent: 2 - - uid: 34518 + - uid: 34832 components: - type: Transform pos: -64.5,-14.5 parent: 2 - - uid: 34519 + - uid: 34833 components: - type: Transform pos: -64.5,-13.5 parent: 2 - - uid: 34520 + - uid: 34834 components: - type: Transform pos: -64.5,-12.5 parent: 2 - - uid: 34521 + - uid: 34835 components: - type: Transform pos: -64.5,-8.5 parent: 2 - - uid: 34522 + - uid: 34836 components: - type: Transform pos: -65.5,-16.5 parent: 2 - - uid: 34523 + - uid: 34837 components: - type: Transform pos: -65.5,-15.5 parent: 2 - - uid: 34524 + - uid: 34838 components: - type: Transform pos: -65.5,-14.5 parent: 2 - - uid: 34525 + - uid: 34839 components: - type: Transform pos: -63.5,-8.5 parent: 2 - - uid: 34526 + - uid: 34840 components: - type: Transform pos: -73.5,-9.5 parent: 2 - - uid: 34527 + - uid: 34841 components: - type: Transform pos: -73.5,-10.5 parent: 2 - - uid: 34528 + - uid: 34842 components: - type: Transform pos: -73.5,-11.5 parent: 2 - - uid: 34529 + - uid: 34843 components: - type: Transform pos: -73.5,-12.5 parent: 2 - - uid: 34530 + - uid: 34844 components: - type: Transform pos: -72.5,-8.5 parent: 2 - - uid: 34531 + - uid: 34845 components: - type: Transform pos: -72.5,-9.5 parent: 2 - - uid: 34532 + - uid: 34846 components: - type: Transform pos: -72.5,-10.5 parent: 2 - - uid: 34533 + - uid: 34847 components: - type: Transform pos: -71.5,-9.5 parent: 2 - - uid: 34534 + - uid: 34848 components: - type: Transform pos: -71.5,-10.5 parent: 2 - - uid: 34535 + - uid: 34849 components: - type: Transform pos: -70.5,-10.5 parent: 2 - - uid: 34536 + - uid: 34850 components: - type: Transform pos: -69.5,-10.5 parent: 2 - - uid: 34537 + - uid: 34851 components: - type: Transform pos: -69.5,-11.5 parent: 2 - - uid: 34538 + - uid: 34852 components: - type: Transform pos: -68.5,-10.5 parent: 2 - - uid: 34539 + - uid: 34853 components: - type: Transform pos: -68.5,-11.5 parent: 2 - - uid: 34540 + - uid: 34854 components: - type: Transform pos: -68.5,-12.5 parent: 2 - - uid: 34541 + - uid: 34855 components: - type: Transform pos: -67.5,-11.5 parent: 2 - - uid: 34542 + - uid: 34856 components: - type: Transform pos: -66.5,-11.5 parent: 2 - - uid: 34543 + - uid: 34857 components: - type: Transform pos: -66.5,-14.5 parent: 2 - - uid: 34544 + - uid: 34858 components: - type: Transform pos: -67.5,-13.5 parent: 2 - - uid: 34545 + - uid: 34859 components: - type: Transform pos: -68.5,-13.5 parent: 2 - - uid: 34546 + - uid: 34860 components: - type: Transform pos: -72.5,-13.5 parent: 2 - - uid: 34547 + - uid: 34861 components: - type: Transform pos: -67.5,-14.5 parent: 2 - - uid: 34548 + - uid: 34862 components: - type: Transform pos: -67.5,-15.5 parent: 2 - - uid: 34549 + - uid: 34863 components: - type: Transform pos: -66.5,-15.5 parent: 2 - - uid: 34550 + - uid: 34864 components: - type: Transform pos: -66.5,-16.5 parent: 2 - - uid: 34551 + - uid: 34865 components: - type: Transform pos: -64.5,-17.5 parent: 2 - - uid: 34552 + - uid: 34866 components: - type: Transform pos: -62.5,-17.5 parent: 2 - - uid: 34553 + - uid: 34867 components: - type: Transform pos: -77.5,-7.5 parent: 2 - - uid: 34554 + - uid: 34868 components: - type: Transform pos: -76.5,-7.5 parent: 2 - - uid: 34555 + - uid: 34869 components: - type: Transform pos: -75.5,-7.5 parent: 2 - - uid: 34556 + - uid: 34870 components: - type: Transform pos: -81.5,-7.5 parent: 2 - - uid: 34557 + - uid: 34871 components: - type: Transform pos: -80.5,-7.5 parent: 2 - - uid: 34558 + - uid: 34872 components: - type: Transform pos: -79.5,-7.5 parent: 2 - - uid: 34559 + - uid: 34873 components: - type: Transform pos: -78.5,-7.5 parent: 2 - - uid: 34560 + - uid: 34874 components: - type: Transform pos: -77.5,-8.5 parent: 2 - - uid: 34561 + - uid: 34875 components: - type: Transform pos: -80.5,-8.5 parent: 2 - - uid: 34562 + - uid: 34876 components: - type: Transform pos: -81.5,-8.5 parent: 2 - - uid: 34563 + - uid: 34877 components: - type: Transform pos: -79.5,-8.5 parent: 2 - - uid: 34564 + - uid: 34878 components: - type: Transform pos: -78.5,-8.5 parent: 2 - - uid: 34565 + - uid: 34879 components: - type: Transform pos: -76.5,-8.5 parent: 2 - - uid: 34566 + - uid: 34880 components: - type: Transform pos: -74.5,-11.5 parent: 2 - - uid: 34567 + - uid: 34881 components: - type: Transform pos: -74.5,-10.5 parent: 2 - - uid: 34568 + - uid: 34882 components: - type: Transform pos: -58.5,10.5 parent: 2 - - uid: 34569 + - uid: 34883 components: - type: Transform pos: -59.5,9.5 parent: 2 - - uid: 34570 + - uid: 34884 components: - type: Transform pos: -58.5,8.5 parent: 2 - - uid: 34571 + - uid: 34885 components: - type: Transform pos: -58.5,9.5 parent: 2 - - uid: 34572 + - uid: 34886 components: - type: Transform pos: 47.5,12.5 parent: 2 - - uid: 34573 - components: - - type: Transform - pos: 45.5,-10.5 - parent: 2 - - uid: 34574 - components: - - type: Transform - pos: 45.5,-9.5 - parent: 2 - - uid: 34575 - components: - - type: Transform - pos: 45.5,-8.5 - parent: 2 - - uid: 34576 - components: - - type: Transform - pos: 44.5,-9.5 - parent: 2 - - uid: 34577 - components: - - type: Transform - pos: 44.5,-10.5 - parent: 2 - - uid: 34578 - components: - - type: Transform - pos: 44.5,-11.5 - parent: 2 - - uid: 34579 - components: - - type: Transform - pos: 43.5,-11.5 - parent: 2 - - uid: 34580 + - uid: 34887 components: - type: Transform - pos: 43.5,-12.5 + pos: 42.5,-16.5 parent: 2 - - uid: 34581 + - uid: 34888 components: - type: Transform pos: 70.5,19.5 parent: 2 - - uid: 34582 + - uid: 34889 components: - type: Transform pos: 70.5,18.5 parent: 2 - - uid: 34583 + - uid: 34890 components: - type: Transform pos: 70.5,17.5 parent: 2 - - uid: 34584 + - uid: 34891 components: - type: Transform pos: 70.5,16.5 parent: 2 - - uid: 34585 + - uid: 34892 components: - type: Transform pos: 70.5,15.5 parent: 2 - - uid: 34586 + - uid: 34893 components: - type: Transform pos: -65.5,32.5 parent: 2 - - uid: 34587 + - uid: 34894 components: - type: Transform pos: -65.5,33.5 parent: 2 - - uid: 34588 + - uid: 34895 components: - type: Transform pos: -64.5,32.5 parent: 2 - - uid: 34589 + - uid: 34896 components: - type: Transform pos: 69.5,16.5 parent: 2 - - uid: 34590 + - uid: 34897 components: - type: Transform pos: 71.5,17.5 parent: 2 - - uid: 34591 + - uid: 34898 components: - type: Transform pos: 71.5,16.5 parent: 2 - - uid: 34592 + - uid: 34899 components: - type: Transform pos: 72.5,11.5 parent: 2 - - uid: 34593 + - uid: 34900 components: - type: Transform pos: 72.5,12.5 parent: 2 - - uid: 34594 + - uid: 34901 components: - type: Transform pos: 73.5,13.5 parent: 2 - - uid: 34595 + - uid: 34902 components: - type: Transform pos: 73.5,12.5 parent: 2 - - uid: 34596 + - uid: 34903 components: - type: Transform pos: 74.5,12.5 parent: 2 - - uid: 34597 + - uid: 34904 components: - type: Transform pos: 75.5,12.5 parent: 2 - - uid: 34598 + - uid: 34905 components: - type: Transform pos: 73.5,11.5 parent: 2 - - uid: 34599 + - uid: 34906 components: - type: Transform pos: 74.5,6.5 parent: 2 - - uid: 34600 + - uid: 34907 components: - type: Transform pos: 50.5,22.5 parent: 2 - - uid: 34601 + - uid: 34908 components: - type: Transform pos: 50.5,20.5 parent: 2 - - uid: 34602 + - uid: 34909 components: - type: Transform pos: 50.5,19.5 parent: 2 - - uid: 34603 + - uid: 34910 components: - type: Transform pos: 50.5,16.5 parent: 2 - - uid: 34604 + - uid: 34911 components: - type: Transform pos: 50.5,23.5 parent: 2 - - uid: 34605 + - uid: 34912 components: - type: Transform pos: 49.5,25.5 parent: 2 - - uid: 34606 + - uid: 34913 components: - type: Transform pos: 48.5,15.5 parent: 2 - - uid: 34607 - components: - - type: Transform - pos: 43.5,-13.5 - parent: 2 - - uid: 34608 + - uid: 34914 components: - type: Transform pos: 42.5,-14.5 parent: 2 - - uid: 34609 + - uid: 34915 components: - type: Transform pos: 42.5,-13.5 parent: 2 - - uid: 34610 + - uid: 34916 components: - type: Transform pos: 42.5,-12.5 parent: 2 - - uid: 34611 - components: - - type: Transform - pos: 46.5,-6.5 - parent: 2 - - uid: 34612 - components: - - type: Transform - pos: 45.5,-7.5 - parent: 2 - - uid: 34613 - components: - - type: Transform - pos: 44.5,-8.5 - parent: 2 - - uid: 34614 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 2 - - uid: 34615 + - uid: 34917 components: - type: Transform - pos: 48.5,-4.5 + pos: 51.5,-6.5 parent: 2 - - uid: 34616 + - uid: 34918 components: - type: Transform - pos: 48.5,-3.5 + pos: 51.5,-4.5 parent: 2 - - uid: 34617 + - uid: 34919 components: - type: Transform pos: 50.5,17.5 parent: 2 - - uid: 34618 + - uid: 34920 components: - type: Transform pos: 54.5,48.5 parent: 2 - - uid: 34619 + - uid: 34921 components: - type: Transform pos: 61.5,42.5 parent: 2 - - uid: 34620 + - uid: 34922 components: - type: Transform pos: 61.5,41.5 parent: 2 - - uid: 34621 + - uid: 34923 components: - type: Transform pos: 61.5,40.5 parent: 2 - - uid: 34622 + - uid: 34924 components: - type: Transform pos: 62.5,41.5 parent: 2 - - uid: 34623 + - uid: 34925 components: - type: Transform pos: 62.5,40.5 parent: 2 - - uid: 34624 + - uid: 34926 components: - type: Transform pos: 63.5,44.5 parent: 2 - - uid: 34625 + - uid: 34927 components: - type: Transform pos: 63.5,43.5 parent: 2 - - uid: 34626 + - uid: 34928 components: - type: Transform pos: 63.5,42.5 parent: 2 - - uid: 34627 + - uid: 34929 components: - type: Transform pos: 63.5,41.5 parent: 2 - - uid: 34628 + - uid: 34930 components: - type: Transform pos: 63.5,40.5 parent: 2 - - uid: 34629 + - uid: 34931 components: - type: Transform pos: 61.5,45.5 parent: 2 - - uid: 34630 + - uid: 34932 components: - type: Transform pos: 62.5,45.5 parent: 2 - - uid: 34631 + - uid: 34933 components: - type: Transform pos: 64.5,41.5 parent: 2 - - uid: 34632 + - uid: 34934 components: - type: Transform pos: 65.5,40.5 parent: 2 - - uid: 34633 + - uid: 34935 components: - type: Transform pos: 64.5,40.5 parent: 2 - - uid: 34634 + - uid: 34936 components: - type: Transform pos: 64.5,42.5 parent: 2 - - uid: 34635 + - uid: 34937 components: - type: Transform pos: 65.5,41.5 parent: 2 - - uid: 34636 + - uid: 34938 components: - type: Transform pos: 66.5,40.5 parent: 2 - - uid: 34637 + - uid: 34939 components: - type: Transform pos: 58.5,46.5 parent: 2 - - uid: 34638 + - uid: 34940 components: - type: Transform pos: 57.5,46.5 parent: 2 - - uid: 34639 + - uid: 34941 components: - type: Transform pos: 56.5,48.5 parent: 2 - - uid: 34640 + - uid: 34942 components: - type: Transform pos: 57.5,47.5 parent: 2 - - uid: 34641 + - uid: 34943 components: - type: Transform pos: 58.5,47.5 parent: 2 - - uid: 34642 + - uid: 34944 components: - type: Transform pos: 59.5,46.5 parent: 2 - - uid: 34643 + - uid: 34945 components: - type: Transform pos: 39.5,15.5 parent: 2 - - uid: 34644 + - uid: 34946 components: - type: Transform pos: 14.5,-33.5 parent: 2 - - uid: 34645 + - uid: 34947 components: - type: Transform pos: 13.5,-30.5 parent: 2 - - uid: 34646 + - uid: 34948 components: - type: Transform pos: 13.5,-31.5 parent: 2 - - uid: 34647 + - uid: 34949 components: - type: Transform pos: 55.5,-48.5 parent: 2 - - uid: 34648 + - uid: 34950 components: - type: Transform pos: 14.5,-32.5 parent: 2 - - uid: 34649 + - uid: 34951 components: - type: Transform pos: 19.5,-29.5 parent: 2 - - uid: 34650 + - uid: 34952 components: - type: Transform pos: -2.5,-23.5 parent: 2 - - uid: 34651 + - uid: 34953 components: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 34652 + - uid: 34954 components: - type: Transform pos: 55.5,-49.5 parent: 2 - - uid: 34653 + - uid: 34955 components: - type: Transform pos: 54.5,-49.5 parent: 2 - - uid: 34654 + - uid: 34956 components: - type: Transform pos: 52.5,-47.5 parent: 2 - - uid: 34655 + - uid: 34957 components: - type: Transform pos: 53.5,-48.5 parent: 2 - - uid: 34656 + - uid: 34958 components: - type: Transform pos: 52.5,-45.5 parent: 2 - - uid: 34657 + - uid: 34959 components: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 34658 + - uid: 34960 components: - type: Transform pos: 51.5,-47.5 parent: 2 - - uid: 34659 + - uid: 34961 components: - type: Transform pos: 54.5,-46.5 parent: 2 - - uid: 34660 + - uid: 34962 components: - type: Transform pos: 51.5,-48.5 parent: 2 - - uid: 34661 + - uid: 34963 components: - type: Transform pos: 52.5,-49.5 parent: 2 - - uid: 34662 + - uid: 34964 components: - type: Transform pos: 42.5,-35.5 parent: 2 - - uid: 34663 + - uid: 34965 components: - type: Transform pos: 18.5,-30.5 parent: 2 - - uid: 34664 + - uid: 34966 components: - type: Transform pos: 35.5,-32.5 parent: 2 - - uid: 34665 - components: - - type: Transform - pos: 44.5,13.5 - parent: 2 - - uid: 34666 + - uid: 34967 components: - type: Transform pos: 44.5,9.5 parent: 2 - - uid: 34667 - components: - - type: Transform - pos: 44.5,12.5 - parent: 2 - - uid: 34668 + - uid: 34968 components: - type: Transform pos: -0.5,-25.5 parent: 2 - - uid: 34669 + - uid: 34969 components: - type: Transform pos: -1.5,-29.5 parent: 2 - - uid: 34670 + - uid: 34970 components: - type: Transform pos: 1.5,-29.5 parent: 2 - - uid: 34671 + - uid: 34971 components: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 34672 + - uid: 34972 components: - type: Transform pos: -14.5,-34.5 parent: 2 - - uid: 34673 + - uid: 34973 components: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 34674 + - uid: 34974 components: - type: Transform pos: 2.5,-25.5 parent: 2 - - uid: 34675 + - uid: 34975 components: - type: Transform pos: 2.5,-28.5 parent: 2 - - uid: 34676 + - uid: 34976 components: - type: Transform pos: 1.5,-25.5 parent: 2 - - uid: 34677 + - uid: 34977 components: - type: Transform pos: 2.5,-26.5 parent: 2 - - uid: 34678 + - uid: 34978 components: - type: Transform pos: 3.5,-25.5 parent: 2 - - uid: 34679 + - uid: 34979 components: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 34680 + - uid: 34980 components: - type: Transform pos: -21.5,-70.5 parent: 2 - - uid: 34681 + - uid: 34981 components: - type: Transform pos: -21.5,-69.5 parent: 2 - - uid: 34682 + - uid: 34982 components: - type: Transform pos: -22.5,-70.5 parent: 2 - - uid: 34683 + - uid: 34983 components: - type: Transform pos: -22.5,-69.5 parent: 2 - - uid: 34684 + - uid: 34984 components: - type: Transform pos: -22.5,-68.5 parent: 2 - - uid: 34685 + - uid: 34985 components: - type: Transform pos: -22.5,-67.5 parent: 2 - - uid: 34686 + - uid: 34986 components: - type: Transform pos: -23.5,-68.5 parent: 2 - - uid: 34687 + - uid: 34987 components: - type: Transform pos: -23.5,-67.5 parent: 2 - - uid: 34688 + - uid: 34988 components: - type: Transform pos: -23.5,-65.5 parent: 2 - - uid: 34689 + - uid: 34989 components: - type: Transform pos: -23.5,-66.5 parent: 2 - - uid: 34690 + - uid: 34990 components: - type: Transform pos: -24.5,-65.5 parent: 2 - - uid: 34691 + - uid: 34991 components: - type: Transform pos: -24.5,-66.5 parent: 2 - - uid: 34692 + - uid: 34992 components: - type: Transform pos: -25.5,-65.5 parent: 2 - - uid: 34693 + - uid: 34993 components: - type: Transform pos: -25.5,-66.5 parent: 2 - - uid: 34694 + - uid: 34994 components: - type: Transform pos: -26.5,-65.5 parent: 2 - - uid: 34695 + - uid: 34995 components: - type: Transform pos: -26.5,-66.5 parent: 2 - - uid: 34696 + - uid: 34996 components: - type: Transform pos: -25.5,-67.5 parent: 2 - - uid: 34697 + - uid: 34997 components: - type: Transform pos: -24.5,-67.5 parent: 2 - - uid: 34698 + - uid: 34998 components: - type: Transform pos: -24.5,-68.5 parent: 2 - - uid: 34699 + - uid: 34999 components: - type: Transform pos: -21.5,-71.5 parent: 2 - - uid: 34700 + - uid: 35000 components: - type: Transform pos: -27.5,-65.5 parent: 2 - - uid: 34701 + - uid: 35001 components: - type: Transform pos: -27.5,-64.5 parent: 2 - - uid: 34702 + - uid: 35002 components: - type: Transform pos: -27.5,-63.5 parent: 2 - - uid: 34703 + - uid: 35003 components: - type: Transform pos: -27.5,-62.5 parent: 2 - - uid: 34704 + - uid: 35004 components: - type: Transform pos: -27.5,-61.5 parent: 2 - - uid: 34705 + - uid: 35005 components: - type: Transform pos: -27.5,-60.5 parent: 2 - - uid: 34706 + - uid: 35006 components: - type: Transform pos: -27.5,-58.5 parent: 2 - - uid: 34707 + - uid: 35007 components: - type: Transform pos: -27.5,-57.5 parent: 2 - - uid: 34708 + - uid: 35008 components: - type: Transform pos: -27.5,-56.5 parent: 2 - - uid: 34709 + - uid: 35009 components: - type: Transform pos: -27.5,-55.5 parent: 2 - - uid: 34710 + - uid: 35010 components: - type: Transform pos: -75.5,31.5 parent: 2 - - uid: 34711 + - uid: 35011 components: - type: Transform pos: -75.5,30.5 parent: 2 - - uid: 34712 + - uid: 35012 components: - type: Transform pos: -83.5,69.5 parent: 2 - - uid: 34713 + - uid: 35013 components: - type: Transform pos: -28.5,-57.5 parent: 2 - - uid: 34714 + - uid: 35014 components: - type: Transform pos: -28.5,-56.5 parent: 2 - - uid: 34715 + - uid: 35015 components: - type: Transform pos: -28.5,-55.5 parent: 2 - - uid: 34716 + - uid: 35016 components: - type: Transform pos: -29.5,-56.5 parent: 2 - - uid: 34717 + - uid: 35017 components: - type: Transform pos: -29.5,-55.5 parent: 2 - - uid: 34718 + - uid: 35018 components: - type: Transform pos: -28.5,-54.5 parent: 2 - - uid: 34719 + - uid: 35019 components: - type: Transform pos: -28.5,-53.5 parent: 2 - - uid: 34720 + - uid: 35020 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 34721 + - uid: 35021 components: - type: Transform pos: -29.5,-54.5 parent: 2 - - uid: 34722 + - uid: 35022 components: - type: Transform pos: -29.5,-53.5 parent: 2 - - uid: 34723 + - uid: 35023 components: - type: Transform pos: -29.5,-52.5 parent: 2 - - uid: 34724 + - uid: 35024 components: - type: Transform pos: -30.5,-54.5 parent: 2 - - uid: 34725 + - uid: 35025 components: - type: Transform pos: -30.5,-53.5 parent: 2 - - uid: 34726 + - uid: 35026 components: - type: Transform pos: -30.5,-52.5 parent: 2 - - uid: 34727 + - uid: 35027 components: - type: Transform pos: -33.5,-49.5 parent: 2 - - uid: 34728 + - uid: 35028 components: - type: Transform pos: -33.5,-50.5 parent: 2 - - uid: 34729 + - uid: 35029 components: - type: Transform pos: -33.5,-51.5 parent: 2 - - uid: 34730 + - uid: 35030 components: - type: Transform pos: -32.5,-49.5 parent: 2 - - uid: 34731 + - uid: 35031 components: - type: Transform pos: -32.5,-50.5 parent: 2 - - uid: 34732 + - uid: 35032 components: - type: Transform pos: -32.5,-51.5 parent: 2 - - uid: 34733 + - uid: 35033 components: - type: Transform pos: -32.5,-52.5 parent: 2 - - uid: 34734 + - uid: 35034 components: - type: Transform pos: -31.5,-51.5 parent: 2 - - uid: 34735 + - uid: 35035 components: - type: Transform pos: -31.5,-52.5 parent: 2 - - uid: 34736 + - uid: 35036 components: - type: Transform pos: -32.5,-53.5 parent: 2 - - uid: 34737 + - uid: 35037 components: - type: Transform pos: -31.5,-53.5 parent: 2 - - uid: 34738 + - uid: 35038 components: - type: Transform pos: -31.5,-54.5 parent: 2 - - uid: 34739 + - uid: 35039 components: - type: Transform pos: -30.5,-55.5 parent: 2 - - uid: 34740 + - uid: 35040 components: - type: Transform pos: -30.5,-56.5 parent: 2 - - uid: 34741 + - uid: 35041 components: - type: Transform pos: -31.5,-55.5 parent: 2 - - uid: 34742 + - uid: 35042 components: - type: Transform pos: -31.5,-56.5 parent: 2 - - uid: 34743 + - uid: 35043 components: - type: Transform pos: -31.5,-57.5 parent: 2 - - uid: 34744 + - uid: 35044 components: - type: Transform pos: -32.5,-54.5 parent: 2 - - uid: 34745 + - uid: 35045 components: - type: Transform pos: -32.5,-55.5 parent: 2 - - uid: 34746 + - uid: 35046 components: - type: Transform pos: -32.5,-57.5 parent: 2 - - uid: 34747 + - uid: 35047 components: - type: Transform pos: -32.5,-56.5 parent: 2 - - uid: 34748 + - uid: 35048 components: - type: Transform pos: 4.5,-70.5 parent: 2 - - uid: 34749 + - uid: 35049 components: - type: Transform pos: 4.5,-69.5 parent: 2 - - uid: 34750 + - uid: 35050 components: - type: Transform pos: 5.5,-70.5 parent: 2 - - uid: 34751 + - uid: 35051 components: - type: Transform pos: 4.5,-68.5 parent: 2 - - uid: 34752 + - uid: 35052 components: - type: Transform pos: 5.5,-68.5 parent: 2 - - uid: 34753 + - uid: 35053 components: - type: Transform pos: 5.5,-67.5 parent: 2 - - uid: 34754 + - uid: 35054 components: - type: Transform pos: 6.5,-69.5 parent: 2 - - uid: 34755 + - uid: 35055 components: - type: Transform pos: 6.5,-68.5 parent: 2 - - uid: 34756 + - uid: 35056 components: - type: Transform pos: 6.5,-67.5 parent: 2 - - uid: 34757 + - uid: 35057 components: - type: Transform pos: 7.5,-67.5 parent: 2 - - uid: 34758 + - uid: 35058 components: - type: Transform pos: 7.5,-66.5 parent: 2 - - uid: 34759 + - uid: 35059 components: - type: Transform pos: 7.5,-65.5 parent: 2 - - uid: 34760 + - uid: 35060 components: - type: Transform pos: 7.5,-64.5 parent: 2 - - uid: 34761 + - uid: 35061 components: - type: Transform pos: 7.5,-63.5 parent: 2 - - uid: 34762 + - uid: 35062 components: - type: Transform pos: 8.5,-67.5 parent: 2 - - uid: 34763 + - uid: 35063 components: - type: Transform pos: 8.5,-66.5 parent: 2 - - uid: 34764 + - uid: 35064 components: - type: Transform pos: 8.5,-65.5 parent: 2 - - uid: 34765 + - uid: 35065 components: - type: Transform pos: 8.5,-64.5 parent: 2 - - uid: 34766 + - uid: 35066 components: - type: Transform pos: 8.5,-63.5 parent: 2 - - uid: 34767 + - uid: 35067 components: - type: Transform pos: 6.5,-66.5 parent: 2 - - uid: 34768 + - uid: 35068 components: - type: Transform pos: 6.5,-65.5 parent: 2 - - uid: 34769 + - uid: 35069 components: - type: Transform pos: 9.5,-61.5 parent: 2 - - uid: 34770 + - uid: 35070 components: - type: Transform pos: 9.5,-60.5 parent: 2 - - uid: 34771 + - uid: 35071 components: - type: Transform pos: 9.5,-59.5 parent: 2 - - uid: 34772 + - uid: 35072 components: - type: Transform pos: 9.5,-58.5 parent: 2 - - uid: 34773 + - uid: 35073 components: - type: Transform pos: 10.5,-60.5 parent: 2 - - uid: 34774 + - uid: 35074 components: - type: Transform pos: 10.5,-59.5 parent: 2 - - uid: 34775 + - uid: 35075 components: - type: Transform pos: 10.5,-58.5 parent: 2 - - uid: 34776 + - uid: 35076 components: - type: Transform pos: 10.5,-57.5 parent: 2 - - uid: 34777 + - uid: 35077 components: - type: Transform pos: 11.5,-56.5 parent: 2 - - uid: 34778 + - uid: 35078 components: - type: Transform pos: 11.5,-57.5 parent: 2 - - uid: 34779 + - uid: 35079 components: - type: Transform pos: 11.5,-58.5 parent: 2 - - uid: 34780 + - uid: 35080 components: - type: Transform pos: 8.5,-62.5 parent: 2 - - uid: 34781 + - uid: 35081 components: - type: Transform pos: 6.5,-63.5 parent: 2 - - uid: 34782 + - uid: 35082 components: - type: Transform pos: 6.5,-64.5 parent: 2 - - uid: 34783 + - uid: 35083 components: - type: Transform pos: 4.5,-67.5 parent: 2 - - uid: 34784 + - uid: 35084 components: - type: Transform pos: 5.5,-66.5 parent: 2 - - uid: 34785 + - uid: 35085 components: - type: Transform pos: 82.5,-5.5 parent: 2 - - uid: 34786 + - uid: 35086 components: - type: Transform pos: 78.5,-4.5 parent: 2 - - uid: 34787 + - uid: 35087 components: - type: Transform pos: 78.5,1.5 parent: 2 - - uid: 34788 + - uid: 35088 components: - type: Transform pos: 78.5,0.5 parent: 2 - - uid: 34789 + - uid: 35089 components: - type: Transform pos: 78.5,-3.5 parent: 2 - - uid: 34790 + - uid: 35090 components: - type: Transform pos: 82.5,1.5 parent: 2 - - uid: 34791 + - uid: 35091 components: - type: Transform pos: 82.5,0.5 parent: 2 - - uid: 34792 + - uid: 35092 components: - type: Transform pos: 82.5,-2.5 parent: 2 - - uid: 34793 + - uid: 35093 components: - type: Transform pos: 82.5,-3.5 parent: 2 - - uid: 34794 + - uid: 35094 components: - type: Transform pos: 22.5,63.5 parent: 2 - - uid: 34795 + - uid: 35095 components: - type: Transform pos: 93.5,-45.5 parent: 2 - - uid: 34796 + - uid: 35096 components: - type: Transform pos: 94.5,-45.5 parent: 2 - - uid: 34797 + - uid: 35097 components: - type: Transform pos: 19.5,51.5 parent: 2 - - uid: 34798 + - uid: 35098 components: - type: Transform pos: 22.5,64.5 parent: 2 - - uid: 34799 + - uid: 35099 components: - type: Transform pos: -26.5,-33.5 parent: 2 - - uid: 34800 + - uid: 35100 components: - type: Transform pos: -27.5,-33.5 parent: 2 - - uid: 34801 + - uid: 35101 components: - type: Transform pos: -28.5,-34.5 parent: 2 - - uid: 34802 + - uid: 35102 components: - type: Transform pos: -28.5,-33.5 parent: 2 - - uid: 34803 + - uid: 35103 components: - type: Transform pos: -29.5,-35.5 parent: 2 - - uid: 34804 + - uid: 35104 components: - type: Transform pos: -29.5,-34.5 parent: 2 - - uid: 34805 + - uid: 35105 components: - type: Transform pos: -29.5,-33.5 parent: 2 - - uid: 34806 + - uid: 35106 components: - type: Transform pos: -30.5,-35.5 parent: 2 - - uid: 34807 + - uid: 35107 components: - type: Transform pos: -30.5,-34.5 parent: 2 - - uid: 34808 + - uid: 35108 components: - type: Transform pos: -31.5,-35.5 parent: 2 - - uid: 34809 + - uid: 35109 components: - type: Transform pos: -32.5,-41.5 parent: 2 - - uid: 34810 + - uid: 35110 components: - type: Transform pos: -32.5,-40.5 parent: 2 - - uid: 34811 + - uid: 35111 components: - type: Transform pos: -32.5,-39.5 parent: 2 - - uid: 34812 + - uid: 35112 components: - type: Transform pos: -32.5,-38.5 parent: 2 - - uid: 34813 + - uid: 35113 components: - type: Transform pos: -32.5,-37.5 parent: 2 - - uid: 34814 + - uid: 35114 components: - type: Transform pos: -32.5,-36.5 parent: 2 - - uid: 34815 + - uid: 35115 components: - type: Transform pos: -32.5,-35.5 parent: 2 - - uid: 34816 + - uid: 35116 components: - type: Transform pos: -33.5,-41.5 parent: 2 - - uid: 34817 + - uid: 35117 components: - type: Transform pos: -33.5,-40.5 parent: 2 - - uid: 34818 + - uid: 35118 components: - type: Transform pos: -33.5,-37.5 parent: 2 - - uid: 34819 + - uid: 35119 components: - type: Transform pos: -33.5,-36.5 parent: 2 - - uid: 34820 + - uid: 35120 components: - type: Transform pos: -33.5,-35.5 parent: 2 - - uid: 34821 + - uid: 35121 components: - type: Transform pos: -34.5,-41.5 parent: 2 - - uid: 34822 + - uid: 35122 components: - type: Transform pos: -34.5,-40.5 parent: 2 - - uid: 34823 + - uid: 35123 components: - type: Transform pos: -34.5,-39.5 parent: 2 - - uid: 34824 + - uid: 35124 components: - type: Transform pos: -34.5,-36.5 parent: 2 - - uid: 34825 + - uid: 35125 components: - type: Transform pos: -34.5,-35.5 parent: 2 - - uid: 34826 + - uid: 35126 components: - type: Transform pos: -35.5,-41.5 parent: 2 - - uid: 34827 + - uid: 35127 components: - type: Transform pos: -35.5,-40.5 parent: 2 - - uid: 34828 + - uid: 35128 components: - type: Transform pos: -35.5,-39.5 parent: 2 - - uid: 34829 + - uid: 35129 components: - type: Transform pos: -35.5,-38.5 parent: 2 - - uid: 34830 + - uid: 35130 components: - type: Transform pos: -35.5,-36.5 parent: 2 - - uid: 34831 + - uid: 35131 components: - type: Transform pos: -35.5,-35.5 parent: 2 - - uid: 34832 + - uid: 35132 components: - type: Transform pos: -37.5,-38.5 parent: 2 - - uid: 34833 + - uid: 35133 components: - type: Transform pos: -36.5,-38.5 parent: 2 - - uid: 34834 + - uid: 35134 components: - type: Transform pos: -36.5,-49.5 parent: 2 - - uid: 34835 + - uid: 35135 components: - type: Transform pos: -36.5,-37.5 parent: 2 - - uid: 34836 + - uid: 35136 components: - type: Transform pos: -33.5,-34.5 parent: 2 - - uid: 34837 + - uid: 35137 components: - type: Transform pos: -35.5,-49.5 parent: 2 - - uid: 34838 + - uid: 35138 components: - type: Transform pos: -34.5,-49.5 parent: 2 - - uid: 34839 + - uid: 35139 components: - type: Transform pos: -34.5,-50.5 parent: 2 - - uid: 34840 + - uid: 35140 components: - type: Transform pos: -36.5,-48.5 parent: 2 - - uid: 34841 + - uid: 35141 components: - type: Transform pos: -36.5,-47.5 parent: 2 - - uid: 34842 + - uid: 35142 components: - type: Transform pos: -35.5,-50.5 parent: 2 - - uid: 34843 + - uid: 35143 components: - type: Transform pos: -36.5,-50.5 parent: 2 - - uid: 34844 + - uid: 35144 components: - type: Transform pos: -37.5,-50.5 parent: 2 - - uid: 34845 + - uid: 35145 components: - type: Transform pos: -36.5,-51.5 parent: 2 - - uid: 34846 + - uid: 35146 components: - type: Transform pos: 78.5,-5.5 parent: 2 - - uid: 34847 + - uid: 35147 components: - type: Transform pos: -14.5,36.5 parent: 2 - - uid: 34848 + - uid: 35148 components: - type: Transform pos: -15.5,36.5 parent: 2 - - uid: 34849 + - uid: 35149 components: - type: Transform pos: -16.5,36.5 parent: 2 - - uid: 34850 + - uid: 35150 components: - type: Transform pos: -17.5,36.5 parent: 2 - - uid: 34851 + - uid: 35151 components: - type: Transform pos: -19.5,40.5 parent: 2 - - uid: 34852 + - uid: 35152 components: - type: Transform pos: -22.5,40.5 parent: 2 - - uid: 34853 + - uid: 35153 components: - type: Transform pos: -23.5,40.5 parent: 2 - - uid: 34854 + - uid: 35154 components: - type: Transform pos: -24.5,40.5 parent: 2 - - uid: 34855 + - uid: 35155 components: - type: Transform pos: -25.5,40.5 parent: 2 - - uid: 34856 + - uid: 35156 components: - type: Transform pos: -26.5,40.5 parent: 2 - - uid: 34857 + - uid: 35157 components: - type: Transform pos: -23.5,39.5 parent: 2 - - uid: 34858 + - uid: 35158 components: - type: Transform pos: -22.5,39.5 parent: 2 - - uid: 34859 + - uid: 35159 components: - type: Transform pos: -19.5,37.5 parent: 2 - - uid: 34860 + - uid: 35160 components: - type: Transform pos: -12.5,34.5 parent: 2 - - uid: 34861 + - uid: 35161 components: - type: Transform pos: -13.5,35.5 parent: 2 - - uid: 34862 + - uid: 35162 components: - type: Transform pos: -14.5,35.5 parent: 2 - - uid: 34863 + - uid: 35163 components: - type: Transform pos: -10.5,32.5 parent: 2 - - uid: 34864 + - uid: 35164 components: - type: Transform pos: -8.5,32.5 parent: 2 - - uid: 34865 + - uid: 35165 components: - type: Transform pos: -9.5,32.5 parent: 2 - - uid: 34866 + - uid: 35166 components: - type: Transform pos: -11.5,32.5 parent: 2 - - uid: 34867 + - uid: 35167 components: - type: Transform pos: -12.5,33.5 parent: 2 - - uid: 34868 + - uid: 35168 components: - type: Transform pos: -13.5,34.5 parent: 2 - - uid: 34869 + - uid: 35169 components: - type: Transform pos: -18.5,36.5 parent: 2 - - uid: 34870 + - uid: 35170 components: - type: Transform pos: -19.5,36.5 parent: 2 - - uid: 34871 + - uid: 35171 components: - type: Transform pos: -28.5,46.5 parent: 2 - - uid: 34872 + - uid: 35172 components: - type: Transform pos: -29.5,45.5 parent: 2 - - uid: 34873 + - uid: 35173 components: - type: Transform pos: -28.5,45.5 parent: 2 - - uid: 34874 + - uid: 35174 components: - type: Transform pos: -33.5,46.5 parent: 2 - - uid: 34875 + - uid: 35175 components: - type: Transform pos: -33.5,45.5 parent: 2 - - uid: 34876 + - uid: 35176 components: - type: Transform pos: -33.5,48.5 parent: 2 - - uid: 34877 + - uid: 35177 components: - type: Transform pos: -33.5,47.5 parent: 2 - - uid: 34878 + - uid: 35178 components: - type: Transform pos: -22.5,35.5 parent: 2 - - uid: 34879 + - uid: 35179 components: - type: Transform pos: -23.5,35.5 parent: 2 - - uid: 34880 + - uid: 35180 components: - type: Transform pos: -22.5,36.5 parent: 2 - - uid: 34881 + - uid: 35181 components: - type: Transform pos: -49.5,35.5 parent: 2 - - uid: 34882 + - uid: 35182 components: - type: Transform pos: -50.5,35.5 parent: 2 - - uid: 34883 + - uid: 35183 components: - type: Transform pos: -52.5,36.5 parent: 2 - - uid: 34884 + - uid: 35184 components: - type: Transform pos: -53.5,36.5 parent: 2 - - uid: 34885 + - uid: 35185 components: - type: Transform pos: -27.5,40.5 parent: 2 - - uid: 34886 + - uid: 35186 components: - type: Transform pos: -28.5,40.5 parent: 2 - - uid: 34887 + - uid: 35187 components: - type: Transform pos: 110.5,7.5 parent: 2 - - uid: 34888 + - uid: 35188 components: - type: Transform pos: -48.5,34.5 parent: 2 - - uid: 34889 + - uid: 35189 components: - type: Transform pos: -31.5,37.5 parent: 2 - - uid: 34890 + - uid: 35190 components: - type: Transform pos: -33.5,37.5 parent: 2 - - uid: 34891 + - uid: 35191 components: - type: Transform pos: -32.5,37.5 parent: 2 - - uid: 34892 + - uid: 35192 components: - type: Transform pos: -63.5,33.5 parent: 2 - - uid: 34893 + - uid: 35193 components: - type: Transform pos: 89.5,-6.5 parent: 2 - - uid: 34894 + - uid: 35194 components: - type: Transform pos: 90.5,-6.5 parent: 2 - - uid: 34895 + - uid: 35195 components: - type: Transform pos: 91.5,-6.5 parent: 2 - - uid: 34896 + - uid: 35196 components: - type: Transform pos: 92.5,-6.5 parent: 2 - - uid: 34897 + - uid: 35197 components: - type: Transform pos: 93.5,-6.5 parent: 2 - - uid: 34898 + - uid: 35198 components: - type: Transform pos: 94.5,-25.5 parent: 2 - - uid: 34899 + - uid: 35199 components: - type: Transform pos: -34.5,37.5 parent: 2 - - uid: 34900 + - uid: 35200 components: - type: Transform pos: -31.5,38.5 parent: 2 - - uid: 34901 + - uid: 35201 components: - type: Transform pos: -32.5,38.5 parent: 2 - - uid: 34902 + - uid: 35202 components: - type: Transform pos: -33.5,38.5 parent: 2 - - uid: 34903 + - uid: 35203 components: - type: Transform pos: -42.5,32.5 parent: 2 - - uid: 34904 + - uid: 35204 components: - type: Transform pos: -46.5,33.5 parent: 2 - - uid: 34905 + - uid: 35205 components: - type: Transform pos: -38.5,-55.5 parent: 2 - - uid: 34906 - components: - - type: Transform - pos: -57.5,53.5 - parent: 2 - - uid: 34907 + - uid: 35206 components: - type: Transform pos: -40.5,-53.5 parent: 2 - - uid: 34908 + - uid: 35207 components: - type: Transform pos: -40.5,-48.5 parent: 2 - - uid: 34909 + - uid: 35208 components: - type: Transform pos: -41.5,-48.5 parent: 2 - - uid: 34910 + - uid: 35209 components: - type: Transform pos: -42.5,-48.5 parent: 2 - - uid: 34911 + - uid: 35210 components: - type: Transform pos: -43.5,-48.5 parent: 2 - - uid: 34912 + - uid: 35211 components: - type: Transform pos: -44.5,-48.5 parent: 2 - - uid: 34913 + - uid: 35212 components: - type: Transform pos: -45.5,-48.5 parent: 2 - - uid: 34914 + - uid: 35213 components: - type: Transform pos: -46.5,-48.5 parent: 2 - - uid: 34915 + - uid: 35214 components: - type: Transform pos: -50.5,-48.5 parent: 2 - - uid: 34916 + - uid: 35215 components: - type: Transform pos: -51.5,-48.5 parent: 2 - - uid: 34917 + - uid: 35216 components: - type: Transform pos: -53.5,-48.5 parent: 2 - - uid: 34918 + - uid: 35217 components: - type: Transform pos: -54.5,-48.5 parent: 2 - - uid: 34919 + - uid: 35218 components: - type: Transform pos: -54.5,-47.5 parent: 2 - - uid: 34920 + - uid: 35219 components: - type: Transform pos: -54.5,-46.5 parent: 2 - - uid: 34921 + - uid: 35220 components: - type: Transform pos: -54.5,-45.5 parent: 2 - - uid: 34922 + - uid: 35221 components: - type: Transform pos: -55.5,-47.5 parent: 2 - - uid: 34923 + - uid: 35222 components: - type: Transform pos: -55.5,-46.5 parent: 2 - - uid: 34924 + - uid: 35223 components: - type: Transform pos: -55.5,-45.5 parent: 2 - - uid: 34925 + - uid: 35224 components: - type: Transform pos: -56.5,-47.5 parent: 2 - - uid: 34926 + - uid: 35225 components: - type: Transform pos: -56.5,-45.5 parent: 2 - - uid: 34927 + - uid: 35226 components: - type: Transform pos: -57.5,-44.5 parent: 2 - - uid: 34928 + - uid: 35227 components: - type: Transform pos: -57.5,-43.5 parent: 2 - - uid: 34929 + - uid: 35228 components: - type: Transform pos: -57.5,-42.5 parent: 2 - - uid: 34930 + - uid: 35229 components: - type: Transform pos: -57.5,-41.5 parent: 2 - - uid: 34931 + - uid: 35230 components: - type: Transform pos: -57.5,-40.5 parent: 2 - - uid: 34932 + - uid: 35231 components: - type: Transform pos: -57.5,-39.5 parent: 2 - - uid: 34933 + - uid: 35232 components: - type: Transform pos: -57.5,-38.5 parent: 2 - - uid: 34934 + - uid: 35233 components: - type: Transform pos: -57.5,-35.5 parent: 2 - - uid: 34935 + - uid: 35234 components: - type: Transform pos: -56.5,-44.5 parent: 2 - - uid: 34936 + - uid: 35235 components: - type: Transform pos: -56.5,-43.5 parent: 2 - - uid: 34937 + - uid: 35236 components: - type: Transform pos: -56.5,-42.5 parent: 2 - - uid: 34938 + - uid: 35237 components: - type: Transform pos: -56.5,-41.5 parent: 2 - - uid: 34939 + - uid: 35238 components: - type: Transform pos: -56.5,-40.5 parent: 2 - - uid: 34940 + - uid: 35239 components: - type: Transform pos: -56.5,-39.5 parent: 2 - - uid: 34941 + - uid: 35240 components: - type: Transform pos: -56.5,-37.5 parent: 2 - - uid: 34942 + - uid: 35241 components: - type: Transform pos: -56.5,-34.5 parent: 2 - - uid: 34943 + - uid: 35242 components: - type: Transform pos: -60.5,-33.5 parent: 2 - - uid: 34944 + - uid: 35243 components: - type: Transform pos: -55.5,-44.5 parent: 2 - - uid: 34945 + - uid: 35244 components: - type: Transform pos: -55.5,-43.5 parent: 2 - - uid: 34946 + - uid: 35245 components: - type: Transform pos: -55.5,-41.5 parent: 2 - - uid: 34947 + - uid: 35246 components: - type: Transform pos: -55.5,-40.5 parent: 2 - - uid: 34948 + - uid: 35247 components: - type: Transform pos: -55.5,-36.5 parent: 2 - - uid: 34949 + - uid: 35248 components: - type: Transform pos: -55.5,-35.5 parent: 2 - - uid: 34950 + - uid: 35249 components: - type: Transform pos: -55.5,-34.5 parent: 2 - - uid: 34951 + - uid: 35250 components: - type: Transform pos: -60.5,-26.5 parent: 2 - - uid: 34952 + - uid: 35251 components: - type: Transform pos: -62.5,-28.5 parent: 2 - - uid: 34953 + - uid: 35252 components: - type: Transform pos: -53.5,-33.5 parent: 2 - - uid: 34954 + - uid: 35253 components: - type: Transform pos: -53.5,-32.5 parent: 2 - - uid: 34955 + - uid: 35254 components: - type: Transform pos: -52.5,-32.5 parent: 2 - - uid: 34956 + - uid: 35255 components: - type: Transform pos: -52.5,-31.5 parent: 2 - - uid: 34957 + - uid: 35256 components: - type: Transform pos: -51.5,-32.5 parent: 2 - - uid: 34958 + - uid: 35257 components: - type: Transform pos: -51.5,-31.5 parent: 2 - - uid: 34959 + - uid: 35258 components: - type: Transform pos: -50.5,-32.5 parent: 2 - - uid: 34960 + - uid: 35259 components: - type: Transform pos: -49.5,-32.5 parent: 2 - - uid: 34961 + - uid: 35260 components: - type: Transform pos: -49.5,-31.5 parent: 2 - - uid: 34962 + - uid: 35261 components: - type: Transform pos: -49.5,-30.5 parent: 2 - - uid: 34963 + - uid: 35262 components: - type: Transform pos: -48.5,-32.5 parent: 2 - - uid: 34964 + - uid: 35263 components: - type: Transform pos: -48.5,-31.5 parent: 2 - - uid: 34965 + - uid: 35264 components: - type: Transform pos: -48.5,-30.5 parent: 2 - - uid: 34966 + - uid: 35265 components: - type: Transform pos: -47.5,-32.5 parent: 2 - - uid: 34967 + - uid: 35266 components: - type: Transform pos: -47.5,-31.5 parent: 2 - - uid: 34968 + - uid: 35267 components: - type: Transform pos: -46.5,-32.5 parent: 2 - - uid: 34969 + - uid: 35268 components: - type: Transform pos: -46.5,-31.5 parent: 2 - - uid: 34970 + - uid: 35269 components: - type: Transform pos: -46.5,-30.5 parent: 2 - - uid: 34971 + - uid: 35270 components: - type: Transform pos: -45.5,-32.5 parent: 2 - - uid: 34972 + - uid: 35271 components: - type: Transform pos: -45.5,-31.5 parent: 2 - - uid: 34973 + - uid: 35272 components: - type: Transform pos: -45.5,-30.5 parent: 2 - - uid: 34974 + - uid: 35273 components: - type: Transform pos: -62.5,-27.5 parent: 2 - - uid: 34975 + - uid: 35274 components: - type: Transform pos: -57.5,-34.5 parent: 2 - - uid: 34976 + - uid: 35275 components: - type: Transform pos: -52.5,-28.5 parent: 2 - - uid: 34977 + - uid: 35276 components: - type: Transform pos: -51.5,-29.5 parent: 2 - - uid: 34978 + - uid: 35277 components: - type: Transform pos: -51.5,-28.5 parent: 2 - - uid: 34979 + - uid: 35278 components: - type: Transform pos: -50.5,-28.5 parent: 2 - - uid: 34980 + - uid: 35279 components: - type: Transform pos: -49.5,-29.5 parent: 2 - - uid: 34981 + - uid: 35280 components: - type: Transform pos: -47.5,-29.5 parent: 2 - - uid: 34982 + - uid: 35281 components: - type: Transform pos: -47.5,-28.5 parent: 2 - - uid: 34983 + - uid: 35282 components: - type: Transform pos: -46.5,-29.5 parent: 2 - - uid: 34984 + - uid: 35283 components: - type: Transform pos: -44.5,-29.5 parent: 2 - - uid: 34985 + - uid: 35284 components: - type: Transform pos: -44.5,-30.5 parent: 2 - - uid: 34986 + - uid: 35285 components: - type: Transform pos: -54.5,-35.5 parent: 2 - - uid: 34987 + - uid: 35286 components: - type: Transform pos: -54.5,-33.5 parent: 2 - - uid: 34988 + - uid: 35287 components: - type: Transform pos: -54.5,-34.5 parent: 2 - - uid: 34989 + - uid: 35288 components: - type: Transform pos: -51.5,-33.5 parent: 2 - - uid: 34990 + - uid: 35289 components: - type: Transform pos: -52.5,-33.5 parent: 2 - - uid: 34991 + - uid: 35290 components: - type: Transform pos: -53.5,-34.5 parent: 2 - - uid: 34992 + - uid: 35291 components: - type: Transform pos: -54.5,-36.5 parent: 2 - - uid: 34993 + - uid: 35292 components: - type: Transform pos: -53.5,-35.5 parent: 2 - - uid: 34994 + - uid: 35293 components: - type: Transform pos: -52.5,-49.5 parent: 2 - - uid: 34995 + - uid: 35294 components: - type: Transform pos: -51.5,-49.5 parent: 2 - - uid: 34996 + - uid: 35295 components: - type: Transform pos: -50.5,-49.5 parent: 2 - - uid: 34997 + - uid: 35296 components: - type: Transform pos: -49.5,-49.5 parent: 2 - - uid: 34998 + - uid: 35297 components: - type: Transform pos: -47.5,-49.5 parent: 2 - - uid: 34999 + - uid: 35298 components: - type: Transform pos: -46.5,-49.5 parent: 2 - - uid: 35000 + - uid: 35299 components: - type: Transform pos: -45.5,-49.5 parent: 2 - - uid: 35001 + - uid: 35300 components: - type: Transform pos: -44.5,-49.5 parent: 2 - - uid: 35002 + - uid: 35301 components: - type: Transform pos: -43.5,-49.5 parent: 2 - - uid: 35003 + - uid: 35302 components: - type: Transform pos: -42.5,-49.5 parent: 2 - - uid: 35004 + - uid: 35303 components: - type: Transform pos: -41.5,-49.5 parent: 2 - - uid: 35005 + - uid: 35304 components: - type: Transform pos: -39.5,-49.5 parent: 2 - - uid: 35006 + - uid: 35305 components: - type: Transform pos: -47.5,-50.5 parent: 2 - - uid: 35007 + - uid: 35306 components: - type: Transform pos: -46.5,-50.5 parent: 2 - - uid: 35008 + - uid: 35307 components: - type: Transform pos: -45.5,-50.5 parent: 2 - - uid: 35009 + - uid: 35308 components: - type: Transform pos: -44.5,-50.5 parent: 2 - - uid: 35010 + - uid: 35309 components: - type: Transform pos: -43.5,-50.5 parent: 2 - - uid: 35011 + - uid: 35310 components: - type: Transform pos: -42.5,-50.5 parent: 2 - - uid: 35012 + - uid: 35311 components: - type: Transform pos: -41.5,-50.5 parent: 2 - - uid: 35013 + - uid: 35312 components: - type: Transform pos: -48.5,-50.5 parent: 2 - - uid: 35014 + - uid: 35313 components: - type: Transform pos: -49.5,-50.5 parent: 2 - - uid: 35015 + - uid: 35314 components: - type: Transform pos: -50.5,-50.5 parent: 2 - - uid: 35016 + - uid: 35315 components: - type: Transform pos: -53.5,-47.5 parent: 2 - - uid: 35017 + - uid: 35316 components: - type: Transform pos: -52.5,-47.5 parent: 2 - - uid: 35018 + - uid: 35317 components: - type: Transform pos: -50.5,-47.5 parent: 2 - - uid: 35019 + - uid: 35318 components: - type: Transform pos: -53.5,-46.5 parent: 2 - - uid: 35020 + - uid: 35319 components: - type: Transform pos: -54.5,-44.5 parent: 2 - - uid: 35021 + - uid: 35320 components: - type: Transform pos: -53.5,-45.5 parent: 2 - - uid: 35022 + - uid: 35321 components: - type: Transform pos: -50.5,-46.5 parent: 2 - - uid: 35023 + - uid: 35322 components: - type: Transform pos: -38.5,-46.5 parent: 2 - - uid: 35024 + - uid: 35323 components: - type: Transform pos: -40.5,-45.5 parent: 2 - - uid: 35025 + - uid: 35324 components: - type: Transform pos: -39.5,-45.5 parent: 2 - - uid: 35026 + - uid: 35325 components: - type: Transform pos: -38.5,-47.5 parent: 2 - - uid: 35027 + - uid: 35326 components: - type: Transform pos: -39.5,-47.5 parent: 2 - - uid: 35028 + - uid: 35327 components: - type: Transform pos: -39.5,-46.5 parent: 2 - - uid: 35029 + - uid: 35328 components: - type: Transform pos: -40.5,-46.5 parent: 2 - - uid: 35030 + - uid: 35329 components: - type: Transform pos: -40.5,-47.5 parent: 2 - - uid: 35031 + - uid: 35330 components: - type: Transform pos: -41.5,-47.5 parent: 2 - - uid: 35032 + - uid: 35331 components: - type: Transform pos: -42.5,-47.5 parent: 2 - - uid: 35033 + - uid: 35332 components: - type: Transform pos: -41.5,-46.5 parent: 2 - - uid: 35034 + - uid: 35333 components: - type: Transform pos: -42.5,-46.5 parent: 2 - - uid: 35035 + - uid: 35334 components: - type: Transform pos: -43.5,-47.5 parent: 2 - - uid: 35036 + - uid: 35335 components: - type: Transform pos: -44.5,-47.5 parent: 2 - - uid: 35037 + - uid: 35336 components: - type: Transform pos: -37.5,-37.5 parent: 2 - - uid: 35038 + - uid: 35337 components: - type: Transform pos: -37.5,-36.5 parent: 2 - - uid: 35039 + - uid: 35338 components: - type: Transform pos: -38.5,-37.5 parent: 2 - - uid: 35040 + - uid: 35339 components: - type: Transform pos: -38.5,-36.5 parent: 2 - - uid: 35041 + - uid: 35340 components: - type: Transform pos: -39.5,-36.5 parent: 2 - - uid: 35042 + - uid: 35341 components: - type: Transform pos: -40.5,-36.5 parent: 2 - - uid: 35043 + - uid: 35342 components: - type: Transform pos: -41.5,-34.5 parent: 2 - - uid: 35044 + - uid: 35343 components: - type: Transform pos: -41.5,-35.5 parent: 2 - - uid: 35045 + - uid: 35344 components: - type: Transform pos: -40.5,-34.5 parent: 2 - - uid: 35046 + - uid: 35345 components: - type: Transform pos: -40.5,-35.5 parent: 2 - - uid: 35047 + - uid: 35346 components: - type: Transform pos: -39.5,-34.5 parent: 2 - - uid: 35048 + - uid: 35347 components: - type: Transform pos: -39.5,-35.5 parent: 2 - - uid: 35049 + - uid: 35348 components: - type: Transform pos: -38.5,-35.5 parent: 2 - - uid: 35050 + - uid: 35349 components: - type: Transform pos: -37.5,-35.5 parent: 2 - - uid: 35051 + - uid: 35350 components: - type: Transform pos: -36.5,-36.5 parent: 2 - - uid: 35052 + - uid: 35351 components: - type: Transform pos: -41.5,-33.5 parent: 2 - - uid: 35053 + - uid: 35352 components: - type: Transform pos: -40.5,-33.5 parent: 2 - - uid: 35054 + - uid: 35353 components: - type: Transform pos: -42.5,-33.5 parent: 2 - - uid: 35055 + - uid: 35354 components: - type: Transform pos: -33.5,-58.5 parent: 2 - - uid: 35056 + - uid: 35355 components: - type: Transform pos: -37.5,-51.5 parent: 2 - - uid: 35057 + - uid: 35356 components: - type: Transform pos: -38.5,-51.5 parent: 2 - - uid: 35058 + - uid: 35357 components: - type: Transform pos: -39.5,-51.5 parent: 2 - - uid: 35059 + - uid: 35358 components: - type: Transform pos: -42.5,-51.5 parent: 2 - - uid: 35060 + - uid: 35359 components: - type: Transform pos: -43.5,-51.5 parent: 2 - - uid: 35061 + - uid: 35360 components: - type: Transform pos: -46.5,-51.5 parent: 2 - - uid: 35062 + - uid: 35361 components: - type: Transform pos: -47.5,-51.5 parent: 2 - - uid: 35063 + - uid: 35362 components: - type: Transform pos: -47.5,-52.5 parent: 2 - - uid: 35064 + - uid: 35363 components: - type: Transform pos: -42.5,-52.5 parent: 2 - - uid: 35065 + - uid: 35364 components: - type: Transform pos: -40.5,-52.5 parent: 2 - - uid: 35066 + - uid: 35365 components: - type: Transform pos: -39.5,-52.5 parent: 2 - - uid: 35067 + - uid: 35366 components: - type: Transform pos: -38.5,-52.5 parent: 2 - - uid: 35068 + - uid: 35367 components: - type: Transform pos: -39.5,-53.5 parent: 2 - - uid: 35069 + - uid: 35368 components: - type: Transform pos: -39.5,-54.5 parent: 2 - - uid: 35070 + - uid: 35369 components: - type: Transform pos: -32.5,-58.5 parent: 2 - - uid: 35071 + - uid: 35370 components: - type: Transform pos: -33.5,-59.5 parent: 2 - - uid: 35072 + - uid: 35371 components: - type: Transform pos: -44.5,-32.5 parent: 2 - - uid: 35073 + - uid: 35372 components: - type: Transform pos: -44.5,-31.5 parent: 2 - - uid: 35074 + - uid: 35373 components: - type: Transform pos: -43.5,-30.5 parent: 2 - - uid: 35075 + - uid: 35374 components: - type: Transform pos: -42.5,-31.5 parent: 2 - - uid: 35076 + - uid: 35375 components: - type: Transform pos: -42.5,-32.5 parent: 2 - - uid: 35077 + - uid: 35376 components: - type: Transform pos: -41.5,-32.5 parent: 2 - - uid: 35078 + - uid: 35377 components: - type: Transform pos: -43.5,-31.5 parent: 2 - - uid: 35079 + - uid: 35378 components: - type: Transform pos: -40.5,-32.5 parent: 2 - - uid: 35080 + - uid: 35379 components: - type: Transform pos: -42.5,-30.5 parent: 2 - - uid: 35081 + - uid: 35380 components: - type: Transform pos: -41.5,-31.5 parent: 2 - - uid: 35082 + - uid: 35381 components: - type: Transform pos: -36.5,-35.5 parent: 2 - - uid: 35083 + - uid: 35382 components: - type: Transform pos: -45.5,-33.5 parent: 2 - - uid: 35084 + - uid: 35383 components: - type: Transform pos: 6.5,66.5 parent: 2 - - uid: 35085 - components: - - type: Transform - pos: 44.5,-12.5 - parent: 2 - - uid: 35086 - components: - - type: Transform - pos: 44.5,-13.5 - parent: 2 - - uid: 35087 + - uid: 35384 components: - type: Transform pos: 6.5,53.5 parent: 2 - - uid: 35088 + - uid: 35385 components: - type: Transform pos: 6.5,54.5 parent: 2 - - uid: 35089 + - uid: 35386 components: - type: Transform pos: 31.5,-26.5 parent: 2 - - uid: 35090 + - uid: 35387 components: - type: Transform pos: -65.5,44.5 parent: 2 - - uid: 35091 + - uid: 35388 components: - type: Transform pos: -40.5,-54.5 parent: 2 - - uid: 35092 + - uid: 35389 components: - type: Transform pos: 6.5,65.5 parent: 2 - - uid: 35093 + - uid: 35390 components: - type: Transform pos: -33.5,-52.5 parent: 2 - - uid: 35094 + - uid: 35391 components: - type: Transform pos: -30.5,57.5 parent: 2 - - uid: 35095 + - uid: 35392 components: - type: Transform pos: -30.5,56.5 parent: 2 - - uid: 35096 + - uid: 35393 components: - type: Transform pos: -18.5,63.5 parent: 2 - - uid: 35097 + - uid: 35394 components: - type: Transform pos: -17.5,62.5 parent: 2 - - uid: 35098 + - uid: 35395 components: - type: Transform pos: 31.5,-30.5 parent: 2 - - uid: 35099 + - uid: 35396 components: - type: Transform pos: 30.5,-28.5 parent: 2 - - uid: 35100 + - uid: 35397 components: - type: Transform pos: 30.5,-26.5 parent: 2 - - uid: 35101 + - uid: 35398 components: - type: Transform pos: 30.5,-25.5 parent: 2 - - uid: 35102 + - uid: 35399 components: - type: Transform pos: 31.5,-25.5 parent: 2 - - uid: 35103 + - uid: 35400 components: - type: Transform pos: 7.5,54.5 parent: 2 - - uid: 35104 + - uid: 35401 components: - type: Transform pos: 8.5,54.5 parent: 2 - - uid: 35105 + - uid: 35402 components: - type: Transform pos: 30.5,53.5 parent: 2 - - uid: 35106 + - uid: 35403 components: - type: Transform pos: 28.5,50.5 parent: 2 - - uid: 35107 + - uid: 35404 components: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 35108 + - uid: 35405 components: - type: Transform pos: 7.5,55.5 parent: 2 - - uid: 35109 + - uid: 35406 components: - type: Transform pos: 50.5,-41.5 parent: 2 - - uid: 35110 + - uid: 35407 components: - type: Transform pos: 51.5,-44.5 parent: 2 - - uid: 35111 + - uid: 35408 components: - type: Transform pos: 52.5,-41.5 parent: 2 - - uid: 35112 + - uid: 35409 components: - type: Transform pos: 49.5,-43.5 parent: 2 - - uid: 35113 + - uid: 35410 components: - type: Transform pos: 52.5,-42.5 parent: 2 - - uid: 35114 + - uid: 35411 components: - type: Transform pos: 52.5,-43.5 parent: 2 - - uid: 35115 + - uid: 35412 components: - type: Transform pos: 52.5,-44.5 parent: 2 - - uid: 35116 + - uid: 35413 components: - type: Transform pos: -21.5,-72.5 parent: 2 - - uid: 35117 + - uid: 35414 components: - type: Transform pos: 14.5,46.5 parent: 2 - - uid: 35118 + - uid: 35415 components: - type: Transform pos: 14.5,45.5 parent: 2 - - uid: 35119 + - uid: 35416 components: - type: Transform pos: 15.5,45.5 parent: 2 - - uid: 35120 + - uid: 35417 components: - type: Transform pos: -28.5,34.5 parent: 2 - - uid: 35121 + - uid: 35418 components: - type: Transform pos: -27.5,34.5 parent: 2 - - uid: 35122 + - uid: 35419 components: - type: Transform pos: -26.5,29.5 parent: 2 - - uid: 35123 + - uid: 35420 components: - type: Transform pos: -26.5,34.5 parent: 2 - - uid: 35124 + - uid: 35421 components: - type: Transform pos: -26.5,33.5 parent: 2 - - uid: 35125 + - uid: 35422 components: - type: Transform pos: -26.5,32.5 parent: 2 - - uid: 35126 + - uid: 35423 components: - type: Transform pos: -29.5,62.5 parent: 2 - - uid: 35127 - components: - - type: Transform - pos: -30.5,61.5 - parent: 2 - - uid: 35128 + - uid: 35424 components: - type: Transform pos: -19.5,62.5 parent: 2 - - uid: 35129 + - uid: 35425 components: - type: Transform pos: -21.5,62.5 parent: 2 - - uid: 35130 + - uid: 35426 components: - type: Transform pos: -32.5,18.5 parent: 2 - - uid: 35131 + - uid: 35427 components: - type: Transform pos: -32.5,19.5 parent: 2 - - uid: 35132 + - uid: 35428 components: - type: Transform pos: -34.5,19.5 parent: 2 - - uid: 35133 + - uid: 35429 components: - type: Transform pos: -23.5,63.5 parent: 2 - - uid: 35134 + - uid: 35430 components: - type: Transform pos: -22.5,63.5 parent: 2 - - uid: 35135 + - uid: 35431 components: - type: Transform pos: -24.5,63.5 parent: 2 - - uid: 35136 + - uid: 35432 components: - type: Transform pos: 50.5,-37.5 parent: 2 - - uid: 35137 + - uid: 35433 components: - type: Transform pos: 16.5,46.5 parent: 2 - - uid: 35138 + - uid: 35434 components: - type: Transform pos: 16.5,43.5 parent: 2 - - uid: 35139 + - uid: 35435 components: - type: Transform pos: 15.5,46.5 parent: 2 - - uid: 35140 + - uid: 35436 components: - type: Transform pos: 15.5,43.5 parent: 2 - - uid: 35141 + - uid: 35437 components: - type: Transform pos: -40.5,-21.5 parent: 2 - - uid: 35142 + - uid: 35438 components: - type: Transform pos: -39.5,-21.5 parent: 2 - - uid: 35143 + - uid: 35439 components: - type: Transform pos: -31.5,-27.5 parent: 2 - - uid: 35144 + - uid: 35440 components: - type: Transform pos: -31.5,-26.5 parent: 2 - - uid: 35145 + - uid: 35441 components: - type: Transform pos: -41.5,-21.5 parent: 2 - - uid: 35146 - components: - - type: Transform - pos: -42.5,-21.5 - parent: 2 - - uid: 35147 + - uid: 35442 components: - type: Transform pos: -50.5,-27.5 parent: 2 - - uid: 35148 + - uid: 35443 components: - type: Transform pos: -51.5,-27.5 parent: 2 - - uid: 35149 + - uid: 35444 components: - type: Transform pos: -52.5,-27.5 parent: 2 - - uid: 35150 + - uid: 35445 components: - type: Transform pos: -47.5,-20.5 parent: 2 - - uid: 35151 + - uid: 35446 components: - type: Transform pos: -48.5,-20.5 parent: 2 - - uid: 35152 + - uid: 35447 components: - type: Transform pos: -49.5,-20.5 parent: 2 - - uid: 35153 + - uid: 35448 components: - type: Transform pos: -50.5,-20.5 parent: 2 - - uid: 35154 + - uid: 35449 components: - type: Transform pos: -52.5,-19.5 parent: 2 - - uid: 35155 + - uid: 35450 components: - type: Transform pos: -53.5,-19.5 parent: 2 - - uid: 35156 + - uid: 35451 components: - type: Transform pos: -36.5,-26.5 parent: 2 - - uid: 35157 + - uid: 35452 components: - type: Transform pos: -35.5,-26.5 parent: 2 - - uid: 35158 + - uid: 35453 components: - type: Transform pos: -47.5,-21.5 parent: 2 - - uid: 35159 + - uid: 35454 components: - type: Transform pos: -48.5,-22.5 parent: 2 - - uid: 35160 + - uid: 35455 components: - type: Transform pos: -50.5,-22.5 parent: 2 - - uid: 35161 + - uid: 35456 components: - type: Transform pos: -49.5,-22.5 parent: 2 - - uid: 35162 + - uid: 35457 components: - type: Transform pos: -48.5,-21.5 parent: 2 - - uid: 35163 + - uid: 35458 components: - type: Transform pos: -49.5,-21.5 parent: 2 - - uid: 35164 + - uid: 35459 components: - type: Transform pos: -50.5,-21.5 parent: 2 - - uid: 35165 + - uid: 35460 components: - type: Transform pos: -50.5,-23.5 parent: 2 - - uid: 35166 + - uid: 35461 components: - type: Transform pos: -52.5,-21.5 parent: 2 - - uid: 35167 + - uid: 35462 components: - type: Transform pos: -51.5,-21.5 parent: 2 - - uid: 35168 + - uid: 35463 components: - type: Transform pos: -52.5,-20.5 parent: 2 - - uid: 35169 + - uid: 35464 components: - type: Transform pos: -53.5,-20.5 parent: 2 - - uid: 35170 + - uid: 35465 components: - type: Transform pos: -54.5,-21.5 parent: 2 - - uid: 35171 + - uid: 35466 components: - type: Transform pos: -54.5,-20.5 parent: 2 - - uid: 35172 + - uid: 35467 components: - type: Transform pos: -54.5,-19.5 parent: 2 - - uid: 35173 + - uid: 35468 components: - type: Transform pos: -55.5,-19.5 parent: 2 - - uid: 35174 + - uid: 35469 components: - type: Transform pos: -55.5,-20.5 parent: 2 - - uid: 35175 + - uid: 35470 components: - type: Transform pos: -56.5,-18.5 parent: 2 - - uid: 35176 + - uid: 35471 components: - type: Transform pos: -54.5,-22.5 parent: 2 - - uid: 35177 + - uid: 35472 components: - type: Transform pos: -55.5,-21.5 parent: 2 - - uid: 35178 - components: - - type: Transform - pos: -58.5,-26.5 - parent: 2 - - uid: 35179 - components: - - type: Transform - pos: -57.5,-26.5 - parent: 2 - - uid: 35180 + - uid: 35473 components: - type: Transform pos: -59.5,-29.5 parent: 2 - - uid: 35181 + - uid: 35474 components: - type: Transform pos: -59.5,-28.5 parent: 2 - - uid: 35182 + - uid: 35475 components: - type: Transform pos: -58.5,-24.5 parent: 2 - - uid: 35183 + - uid: 35476 components: - type: Transform pos: -57.5,-25.5 parent: 2 - - uid: 35184 - components: - - type: Transform - pos: -58.5,-25.5 - parent: 2 - - uid: 35185 + - uid: 35477 components: - type: Transform pos: -58.5,-23.5 parent: 2 - - uid: 35186 + - uid: 35478 components: - type: Transform pos: -58.5,-37.5 parent: 2 - - uid: 35187 + - uid: 35479 components: - type: Transform pos: -58.5,-38.5 parent: 2 - - uid: 35188 + - uid: 35480 components: - type: Transform pos: -58.5,-39.5 parent: 2 - - uid: 35189 + - uid: 35481 components: - type: Transform pos: -58.5,-40.5 parent: 2 - - uid: 35190 + - uid: 35482 components: - type: Transform pos: -58.5,-41.5 parent: 2 - - uid: 35191 + - uid: 35483 components: - type: Transform pos: -58.5,-42.5 parent: 2 - - uid: 35192 + - uid: 35484 components: - type: Transform pos: -58.5,-43.5 parent: 2 - - uid: 35193 + - uid: 35485 components: - type: Transform pos: -20.5,-72.5 parent: 2 - - uid: 35194 + - uid: 35486 components: - type: Transform pos: -19.5,-72.5 parent: 2 - - uid: 35195 + - uid: 35487 components: - type: Transform pos: -18.5,-72.5 parent: 2 - - uid: 35196 + - uid: 35488 components: - type: Transform pos: -17.5,-72.5 parent: 2 - - uid: 35197 + - uid: 35489 components: - type: Transform pos: -16.5,-72.5 parent: 2 - - uid: 35198 + - uid: 35490 components: - type: Transform pos: -13.5,-72.5 parent: 2 - - uid: 35199 + - uid: 35491 components: - type: Transform pos: -12.5,-72.5 parent: 2 - - uid: 35200 + - uid: 35492 components: - type: Transform pos: -11.5,-72.5 parent: 2 - - uid: 35201 + - uid: 35493 components: - type: Transform pos: -10.5,-72.5 parent: 2 - - uid: 35202 + - uid: 35494 components: - type: Transform pos: -9.5,-72.5 parent: 2 - - uid: 35203 + - uid: 35495 components: - type: Transform pos: -8.5,-72.5 parent: 2 - - uid: 35204 + - uid: 35496 components: - type: Transform pos: -7.5,-72.5 parent: 2 - - uid: 35205 + - uid: 35497 components: - type: Transform pos: -2.5,-72.5 parent: 2 - - uid: 35206 + - uid: 35498 components: - type: Transform pos: -1.5,-72.5 parent: 2 - - uid: 35207 + - uid: 35499 components: - type: Transform pos: -0.5,-72.5 parent: 2 - - uid: 35208 + - uid: 35500 components: - type: Transform pos: 0.5,-72.5 parent: 2 - - uid: 35209 + - uid: 35501 components: - type: Transform pos: 1.5,-72.5 parent: 2 - - uid: 35210 + - uid: 35502 components: - type: Transform pos: 2.5,-72.5 parent: 2 - - uid: 35211 + - uid: 35503 components: - type: Transform pos: 3.5,-72.5 parent: 2 - - uid: 35212 + - uid: 35504 components: - type: Transform pos: 4.5,-72.5 parent: 2 - - uid: 35213 + - uid: 35505 components: - type: Transform pos: 4.5,-71.5 parent: 2 - - uid: 35214 + - uid: 35506 components: - type: Transform pos: -22.5,-71.5 parent: 2 - - uid: 35215 + - uid: 35507 components: - type: Transform pos: -131.5,5.5 parent: 2 - - uid: 35216 + - uid: 35508 components: - type: Transform pos: -32.5,54.5 parent: 2 - - uid: 35217 + - uid: 35509 components: - type: Transform pos: -32.5,55.5 parent: 2 - - uid: 35218 + - uid: 35510 components: - type: Transform pos: 43.5,36.5 parent: 2 - - uid: 35219 + - uid: 35511 components: - type: Transform pos: -129.5,0.5 parent: 2 - - uid: 35220 + - uid: 35512 components: - type: Transform pos: -129.5,-0.5 parent: 2 - - uid: 35221 + - uid: 35513 components: - type: Transform pos: -131.5,4.5 parent: 2 - - uid: 35222 + - uid: 35514 components: - type: Transform pos: -130.5,5.5 parent: 2 - - uid: 35223 + - uid: 35515 components: - type: Transform pos: -130.5,1.5 parent: 2 - - uid: 35224 + - uid: 35516 components: - type: Transform pos: -129.5,5.5 parent: 2 - - uid: 35225 + - uid: 35517 components: - type: Transform pos: -130.5,6.5 parent: 2 - - uid: 35226 + - uid: 35518 components: - type: Transform pos: -129.5,2.5 parent: 2 - - uid: 35227 + - uid: 35519 components: - type: Transform pos: -129.5,4.5 parent: 2 - - uid: 35228 + - uid: 35520 components: - type: Transform pos: -130.5,4.5 parent: 2 - - uid: 35229 + - uid: 35521 components: - type: Transform pos: -129.5,1.5 parent: 2 - - uid: 35230 + - uid: 35522 components: - type: Transform pos: -129.5,6.5 parent: 2 - - uid: 35231 + - uid: 35523 components: - type: Transform pos: -130.5,3.5 parent: 2 - - uid: 35232 + - uid: 35524 components: - type: Transform pos: -129.5,3.5 parent: 2 - - uid: 35233 + - uid: 35525 components: - type: Transform pos: -130.5,2.5 parent: 2 - - uid: 35234 + - uid: 35526 components: - type: Transform pos: -121.5,29.5 parent: 2 - - uid: 35235 - components: - - type: Transform - pos: -120.5,30.5 - parent: 2 - - uid: 35236 + - uid: 35527 components: - type: Transform pos: -121.5,28.5 parent: 2 - - uid: 35237 + - uid: 35528 components: - type: Transform pos: -128.5,-0.5 parent: 2 - - uid: 35238 + - uid: 35529 components: - type: Transform pos: -128.5,-1.5 parent: 2 - - uid: 35239 + - uid: 35530 components: - type: Transform pos: -120.5,33.5 parent: 2 - - uid: 35240 + - uid: 35531 components: - type: Transform pos: -121.5,27.5 parent: 2 - - uid: 35241 - components: - - type: Transform - pos: -120.5,31.5 - parent: 2 - - uid: 35242 + - uid: 35532 components: - type: Transform pos: -119.5,28.5 parent: 2 - - uid: 35243 - components: - - type: Transform - pos: -120.5,32.5 - parent: 2 - - uid: 35244 + - uid: 35533 components: - type: Transform pos: -106.5,35.5 parent: 2 - - uid: 35245 - components: - - type: Transform - pos: -112.5,38.5 - parent: 2 - - uid: 35246 + - uid: 35534 components: - type: Transform pos: -91.5,5.5 parent: 2 - - uid: 35247 + - uid: 35535 components: - type: Transform pos: -92.5,6.5 parent: 2 - - uid: 35248 + - uid: 35536 components: - type: Transform pos: -92.5,5.5 parent: 2 - - uid: 35249 + - uid: 35537 components: - type: Transform pos: -92.5,8.5 parent: 2 - - uid: 35250 + - uid: 35538 components: - type: Transform pos: -92.5,7.5 parent: 2 - - uid: 35251 + - uid: 35539 components: - type: Transform pos: -93.5,6.5 parent: 2 - - uid: 35252 + - uid: 35540 components: - type: Transform pos: -93.5,5.5 parent: 2 - - uid: 35253 + - uid: 35541 components: - type: Transform pos: -94.5,8.5 parent: 2 - - uid: 35254 + - uid: 35542 components: - type: Transform pos: -94.5,7.5 parent: 2 - - uid: 35255 + - uid: 35543 components: - type: Transform pos: -96.5,8.5 parent: 2 - - uid: 35256 + - uid: 35544 components: - type: Transform pos: -95.5,7.5 parent: 2 - - uid: 35257 + - uid: 35545 components: - type: Transform pos: -95.5,8.5 parent: 2 - - uid: 35258 + - uid: 35546 components: - type: Transform pos: -93.5,7.5 parent: 2 - - uid: 35259 + - uid: 35547 components: - type: Transform pos: -93.5,14.5 parent: 2 - - uid: 35260 + - uid: 35548 components: - type: Transform pos: -92.5,15.5 parent: 2 - - uid: 35261 + - uid: 35549 components: - type: Transform pos: -92.5,14.5 parent: 2 - - uid: 35262 + - uid: 35550 components: - type: Transform pos: -93.5,10.5 parent: 2 - - uid: 35263 + - uid: 35551 components: - type: Transform pos: -93.5,9.5 parent: 2 - - uid: 35264 + - uid: 35552 components: - type: Transform pos: -96.5,13.5 parent: 2 - - uid: 35265 + - uid: 35553 components: - type: Transform pos: -96.5,7.5 parent: 2 - - uid: 35266 + - uid: 35554 components: - type: Transform pos: -94.5,9.5 parent: 2 - - uid: 35267 + - uid: 35555 components: - type: Transform pos: -94.5,15.5 parent: 2 - - uid: 35268 + - uid: 35556 components: - type: Transform pos: -94.5,16.5 parent: 2 - - uid: 35269 + - uid: 35557 components: - type: Transform pos: -95.5,14.5 parent: 2 - - uid: 35270 + - uid: 35558 components: - type: Transform pos: -95.5,13.5 parent: 2 - - uid: 35271 + - uid: 35559 components: - type: Transform pos: -96.5,9.5 parent: 2 - - uid: 35272 + - uid: 35560 components: - type: Transform pos: -97.5,12.5 parent: 2 - - uid: 35273 + - uid: 35561 components: - type: Transform pos: -97.5,11.5 parent: 2 - - uid: 35274 + - uid: 35562 components: - type: Transform pos: -93.5,16.5 parent: 2 - - uid: 35275 + - uid: 35563 components: - type: Transform pos: -94.5,10.5 parent: 2 - - uid: 35276 + - uid: 35564 components: - type: Transform pos: -94.5,14.5 parent: 2 - - uid: 35277 + - uid: 35565 components: - type: Transform pos: -94.5,19.5 parent: 2 - - uid: 35278 + - uid: 35566 components: - type: Transform pos: -95.5,18.5 parent: 2 - - uid: 35279 + - uid: 35567 components: - type: Transform pos: -95.5,11.5 parent: 2 - - uid: 35280 + - uid: 35568 components: - type: Transform pos: -95.5,10.5 parent: 2 - - uid: 35281 + - uid: 35569 components: - type: Transform pos: -95.5,16.5 parent: 2 - - uid: 35282 + - uid: 35570 components: - type: Transform pos: -95.5,15.5 parent: 2 - - uid: 35283 + - uid: 35571 components: - type: Transform pos: -95.5,19.5 parent: 2 - - uid: 35284 + - uid: 35572 components: - type: Transform pos: -96.5,10.5 parent: 2 - - uid: 35285 + - uid: 35573 components: - type: Transform pos: -96.5,11.5 parent: 2 - - uid: 35286 + - uid: 35574 components: - type: Transform pos: -93.5,18.5 parent: 2 - - uid: 35287 + - uid: 35575 components: - type: Transform pos: -97.5,9.5 parent: 2 - - uid: 35288 + - uid: 35576 components: - type: Transform pos: -96.5,19.5 parent: 2 - - uid: 35289 + - uid: 35577 components: - type: Transform pos: -97.5,10.5 parent: 2 - - uid: 35290 + - uid: 35578 components: - type: Transform pos: -121.5,30.5 parent: 2 - - uid: 35291 + - uid: 35579 components: - type: Transform pos: -121.5,31.5 parent: 2 - - uid: 35292 + - uid: 35580 components: - type: Transform pos: -129.5,21.5 parent: 2 - - uid: 35293 + - uid: 35581 components: - type: Transform pos: -128.5,22.5 parent: 2 - - uid: 35294 + - uid: 35582 components: - type: Transform pos: -130.5,22.5 parent: 2 - - uid: 35295 + - uid: 35583 components: - type: Transform pos: -128.5,23.5 parent: 2 - - uid: 35296 + - uid: 35584 components: - type: Transform pos: -129.5,22.5 parent: 2 - - uid: 35297 + - uid: 35585 components: - type: Transform pos: -128.5,20.5 parent: 2 - - uid: 35298 + - uid: 35586 components: - type: Transform pos: -126.5,24.5 parent: 2 - - uid: 35299 + - uid: 35587 components: - type: Transform pos: -129.5,23.5 parent: 2 - - uid: 35300 + - uid: 35588 components: - type: Transform pos: -125.5,25.5 parent: 2 - - uid: 35301 + - uid: 35589 components: - type: Transform pos: -130.5,17.5 parent: 2 - - uid: 35302 + - uid: 35590 components: - type: Transform pos: -129.5,19.5 parent: 2 - - uid: 35303 + - uid: 35591 components: - type: Transform pos: -128.5,17.5 parent: 2 - - uid: 35304 + - uid: 35592 components: - type: Transform pos: -127.5,18.5 parent: 2 - - uid: 35305 + - uid: 35593 components: - type: Transform pos: -132.5,14.5 parent: 2 - - uid: 35306 + - uid: 35594 components: - type: Transform pos: -133.5,14.5 parent: 2 - - uid: 35307 + - uid: 35595 components: - type: Transform pos: -132.5,16.5 parent: 2 - - uid: 35308 + - uid: 35596 components: - type: Transform pos: -131.5,15.5 parent: 2 - - uid: 35309 + - uid: 35597 components: - type: Transform pos: -131.5,16.5 parent: 2 - - uid: 35310 + - uid: 35598 components: - type: Transform pos: -130.5,16.5 parent: 2 - - uid: 35311 + - uid: 35599 components: - type: Transform pos: -129.5,15.5 parent: 2 - - uid: 35312 + - uid: 35600 components: - type: Transform pos: -130.5,14.5 parent: 2 - - uid: 35313 + - uid: 35601 components: - type: Transform pos: -130.5,15.5 parent: 2 - - uid: 35314 + - uid: 35602 components: - type: Transform pos: -132.5,15.5 parent: 2 - - uid: 35315 + - uid: 35603 components: - type: Transform pos: -127.5,17.5 parent: 2 - - uid: 35316 + - uid: 35604 components: - type: Transform pos: -128.5,21.5 parent: 2 - - uid: 35317 + - uid: 35605 components: - type: Transform pos: -131.5,13.5 parent: 2 - - uid: 35318 + - uid: 35606 components: - type: Transform pos: -130.5,13.5 parent: 2 - - uid: 35319 + - uid: 35607 components: - type: Transform pos: -121.5,26.5 parent: 2 - - uid: 35320 + - uid: 35608 components: - type: Transform pos: -129.5,16.5 parent: 2 - - uid: 35321 + - uid: 35609 components: - type: Transform pos: -128.5,16.5 parent: 2 - - uid: 35322 + - uid: 35610 components: - type: Transform pos: -133.5,13.5 parent: 2 - - uid: 35323 + - uid: 35611 components: - type: Transform pos: -134.5,13.5 parent: 2 - - uid: 35324 + - uid: 35612 components: - type: Transform pos: -135.5,13.5 parent: 2 - - uid: 35325 + - uid: 35613 components: - type: Transform pos: -129.5,20.5 parent: 2 - - uid: 35326 + - uid: 35614 components: - type: Transform pos: -127.5,23.5 parent: 2 - - uid: 35327 - components: - - type: Transform - pos: -116.5,31.5 - parent: 2 - - uid: 35328 + - uid: 35615 components: - type: Transform pos: -118.5,36.5 parent: 2 - - uid: 35329 + - uid: 35616 components: - type: Transform pos: -98.5,38.5 parent: 2 - - uid: 35330 + - uid: 35617 components: - type: Transform pos: -100.5,38.5 parent: 2 - - uid: 35331 + - uid: 35618 components: - type: Transform pos: -97.5,38.5 parent: 2 - - uid: 35332 + - uid: 35619 components: - type: Transform pos: -97.5,39.5 parent: 2 - - uid: 35333 + - uid: 35620 components: - type: Transform pos: -104.5,38.5 parent: 2 - - uid: 35334 + - uid: 35621 components: - type: Transform pos: -116.5,30.5 parent: 2 - - uid: 35335 + - uid: 35622 components: - type: Transform pos: -101.5,38.5 parent: 2 - - uid: 35336 + - uid: 35623 components: - type: Transform pos: -99.5,39.5 parent: 2 - - uid: 35337 + - uid: 35624 components: - type: Transform pos: -98.5,39.5 parent: 2 - - uid: 35338 - components: - - type: Transform - pos: -116.5,33.5 - parent: 2 - - uid: 35339 + - uid: 35625 components: - type: Transform pos: -96.5,12.5 parent: 2 - - uid: 35340 + - uid: 35626 components: - type: Transform pos: -93.5,17.5 parent: 2 - - uid: 35341 + - uid: 35627 components: - type: Transform pos: -91.5,14.5 parent: 2 - - uid: 35342 + - uid: 35628 components: - type: Transform pos: -97.5,19.5 parent: 2 - - uid: 35343 + - uid: 35629 components: - type: Transform pos: 98.5,-29.5 parent: 2 - - uid: 35344 + - uid: 35630 components: - type: Transform pos: -95.5,25.5 parent: 2 - - uid: 35345 + - uid: 35631 components: - type: Transform pos: -96.5,21.5 parent: 2 - - uid: 35346 + - uid: 35632 components: - type: Transform pos: -95.5,21.5 parent: 2 - - uid: 35347 + - uid: 35633 components: - type: Transform pos: -95.5,26.5 parent: 2 - - uid: 35348 + - uid: 35634 components: - type: Transform pos: -95.5,27.5 parent: 2 - - uid: 35349 + - uid: 35635 components: - type: Transform pos: -95.5,28.5 parent: 2 - - uid: 35350 + - uid: 35636 components: - type: Transform pos: -96.5,20.5 parent: 2 - - uid: 35351 + - uid: 35637 components: - type: Transform pos: -95.5,29.5 parent: 2 - - uid: 35352 + - uid: 35638 components: - type: Transform pos: -99.5,31.5 parent: 2 - - uid: 35353 + - uid: 35639 components: - type: Transform pos: -96.5,22.5 parent: 2 - - uid: 35354 + - uid: 35640 components: - type: Transform pos: -98.5,29.5 parent: 2 - - uid: 35355 + - uid: 35641 components: - type: Transform pos: -98.5,31.5 parent: 2 - - uid: 35356 + - uid: 35642 components: - type: Transform pos: -98.5,32.5 parent: 2 - - uid: 35357 + - uid: 35643 components: - type: Transform pos: -97.5,31.5 parent: 2 - - uid: 35358 + - uid: 35644 components: - type: Transform pos: -97.5,32.5 parent: 2 - - uid: 35359 + - uid: 35645 components: - type: Transform pos: -96.5,30.5 parent: 2 - - uid: 35360 + - uid: 35646 components: - type: Transform pos: -96.5,31.5 parent: 2 - - uid: 35361 + - uid: 35647 components: - type: Transform pos: -97.5,25.5 parent: 2 - - uid: 35362 + - uid: 35648 components: - type: Transform pos: -96.5,32.5 parent: 2 - - uid: 35363 + - uid: 35649 components: - type: Transform pos: -97.5,24.5 parent: 2 - - uid: 35364 + - uid: 35650 components: - type: Transform pos: -100.5,31.5 parent: 2 - - uid: 35365 + - uid: 35651 components: - type: Transform pos: -100.5,32.5 parent: 2 - - uid: 35366 + - uid: 35652 components: - type: Transform pos: -97.5,26.5 parent: 2 - - uid: 35367 + - uid: 35653 components: - type: Transform pos: -101.5,31.5 parent: 2 - - uid: 35368 + - uid: 35654 components: - type: Transform pos: -101.5,32.5 parent: 2 - - uid: 35369 + - uid: 35655 components: - type: Transform pos: -96.5,24.5 parent: 2 - - uid: 35370 + - uid: 35656 components: - type: Transform pos: -96.5,25.5 parent: 2 - - uid: 35371 + - uid: 35657 components: - type: Transform pos: -96.5,23.5 parent: 2 - - uid: 35372 + - uid: 35658 components: - type: Transform pos: -99.5,34.5 parent: 2 - - uid: 35373 + - uid: 35659 components: - type: Transform pos: -99.5,36.5 parent: 2 - - uid: 35374 + - uid: 35660 components: - type: Transform pos: -99.5,35.5 parent: 2 - - uid: 35375 + - uid: 35661 components: - type: Transform pos: -101.5,33.5 parent: 2 - - uid: 35376 + - uid: 35662 components: - type: Transform pos: -98.5,37.5 parent: 2 - - uid: 35377 + - uid: 35663 components: - type: Transform pos: -101.5,37.5 parent: 2 - - uid: 35378 - components: - - type: Transform - pos: -97.5,34.5 - parent: 2 - - uid: 35379 - components: - - type: Transform - pos: -97.5,35.5 - parent: 2 - - uid: 35380 + - uid: 35664 components: - type: Transform pos: -97.5,36.5 parent: 2 - - uid: 35381 + - uid: 35665 components: - type: Transform pos: -100.5,35.5 parent: 2 - - uid: 35382 + - uid: 35666 components: - type: Transform pos: -102.5,35.5 parent: 2 - - uid: 35383 + - uid: 35667 components: - type: Transform pos: -103.5,35.5 parent: 2 - - uid: 35384 + - uid: 35668 components: - type: Transform pos: -99.5,30.5 parent: 2 - - uid: 35385 + - uid: 35669 components: - type: Transform pos: -99.5,38.5 parent: 2 - - uid: 35386 + - uid: 35670 components: - type: Transform pos: -99.5,37.5 parent: 2 - - uid: 35387 + - uid: 35671 components: - type: Transform pos: -100.5,37.5 parent: 2 - - uid: 35388 + - uid: 35672 components: - type: Transform pos: -104.5,35.5 parent: 2 - - uid: 35389 + - uid: 35673 components: - type: Transform pos: -93.5,8.5 parent: 2 - - uid: 35390 + - uid: 35674 components: - type: Transform pos: -94.5,21.5 parent: 2 - - uid: 35391 + - uid: 35675 components: - type: Transform pos: -98.5,28.5 parent: 2 - - uid: 35392 + - uid: 35676 components: - type: Transform pos: -97.5,7.5 parent: 2 - - uid: 35393 + - uid: 35677 components: - type: Transform pos: -97.5,8.5 parent: 2 - - uid: 35394 + - uid: 35678 components: - type: Transform pos: -102.5,38.5 parent: 2 - - uid: 35395 + - uid: 35679 components: - type: Transform pos: -96.5,26.5 parent: 2 - - uid: 35396 + - uid: 35680 components: - type: Transform pos: -97.5,21.5 parent: 2 - - uid: 35397 + - uid: 35681 components: - type: Transform pos: -97.5,20.5 parent: 2 - - uid: 35398 + - uid: 35682 components: - type: Transform pos: -99.5,32.5 parent: 2 - - uid: 35399 + - uid: 35683 components: - type: Transform pos: -98.5,27.5 parent: 2 - - uid: 35400 + - uid: 35684 components: - type: Transform pos: -131.5,6.5 parent: 2 - - uid: 35401 + - uid: 35685 components: - type: Transform pos: -130.5,0.5 parent: 2 - - uid: 35402 + - uid: 35686 components: - type: Transform pos: -127.5,-1.5 parent: 2 - - uid: 35403 + - uid: 35687 components: - type: Transform pos: -126.5,-2.5 parent: 2 - - uid: 35404 + - uid: 35688 components: - type: Transform pos: 101.5,-19.5 parent: 2 - - uid: 35405 + - uid: 35689 components: - type: Transform pos: 102.5,-18.5 parent: 2 - - uid: 35406 + - uid: 35690 components: - type: Transform pos: 102.5,-19.5 parent: 2 - - uid: 35407 + - uid: 35691 components: - type: Transform pos: 102.5,-17.5 parent: 2 - - uid: 35408 + - uid: 35692 components: - type: Transform pos: -113.5,38.5 parent: 2 - - uid: 35409 + - uid: 35693 components: - type: Transform pos: 99.5,-29.5 parent: 2 - - uid: 35410 + - uid: 35694 components: - type: Transform pos: 98.5,-28.5 parent: 2 - - uid: 35411 + - uid: 35695 components: - type: Transform pos: 99.5,-28.5 parent: 2 - - uid: 35412 + - uid: 35696 components: - type: Transform pos: -116.5,38.5 parent: 2 - - uid: 35413 + - uid: 35697 components: - type: Transform pos: -108.5,35.5 parent: 2 - - uid: 35414 + - uid: 35698 components: - type: Transform pos: -115.5,38.5 parent: 2 - - uid: 35415 + - uid: 35699 components: - type: Transform pos: -107.5,35.5 parent: 2 - - uid: 35416 + - uid: 35700 components: - type: Transform pos: -105.5,35.5 parent: 2 - - uid: 35417 - components: - - type: Transform - pos: -113.5,37.5 - parent: 2 - - uid: 35418 + - uid: 35701 components: - type: Transform pos: -109.5,35.5 parent: 2 - - uid: 35419 + - uid: 35702 components: - type: Transform pos: -115.5,37.5 parent: 2 - - uid: 35420 + - uid: 35703 components: - type: Transform pos: -122.5,27.5 parent: 2 - - uid: 35421 + - uid: 35704 components: - type: Transform pos: -122.5,26.5 parent: 2 - - uid: 35422 + - uid: 35705 components: - type: Transform pos: -122.5,25.5 parent: 2 - - uid: 35423 + - uid: 35706 components: - type: Transform pos: -123.5,27.5 parent: 2 - - uid: 35424 + - uid: 35707 components: - type: Transform pos: -123.5,26.5 parent: 2 - - uid: 35425 + - uid: 35708 components: - type: Transform pos: -123.5,25.5 parent: 2 - - uid: 35426 + - uid: 35709 components: - type: Transform pos: -124.5,27.5 parent: 2 - - uid: 35427 + - uid: 35710 components: - type: Transform pos: -124.5,26.5 parent: 2 - - uid: 35428 + - uid: 35711 components: - type: Transform pos: -122.5,24.5 parent: 2 - - uid: 35429 + - uid: 35712 components: - type: Transform pos: -123.5,24.5 parent: 2 - - uid: 35430 + - uid: 35713 components: - type: Transform pos: -123.5,23.5 parent: 2 - - uid: 35431 + - uid: 35714 components: - type: Transform pos: -124.5,24.5 parent: 2 - - uid: 35432 + - uid: 35715 components: - type: Transform pos: -124.5,23.5 parent: 2 - - uid: 35433 + - uid: 35716 components: - type: Transform pos: -124.5,22.5 parent: 2 - - uid: 35434 + - uid: 35717 components: - type: Transform pos: -124.5,21.5 parent: 2 - - uid: 35435 + - uid: 35718 components: - type: Transform pos: -125.5,22.5 parent: 2 - - uid: 35436 + - uid: 35719 components: - type: Transform pos: -125.5,21.5 parent: 2 - - uid: 35437 + - uid: 35720 components: - type: Transform pos: -126.5,21.5 parent: 2 - - uid: 35438 + - uid: 35721 components: - type: Transform pos: -125.5,20.5 parent: 2 - - uid: 35439 + - uid: 35722 components: - type: Transform pos: -126.5,20.5 parent: 2 - - uid: 35440 + - uid: 35723 components: - type: Transform pos: -127.5,21.5 parent: 2 - - uid: 35441 + - uid: 35724 components: - type: Transform pos: -127.5,20.5 parent: 2 - - uid: 35442 + - uid: 35725 components: - type: Transform pos: -132.5,20.5 parent: 2 - - uid: 35443 + - uid: 35726 components: - type: Transform pos: -136.5,14.5 parent: 2 - - uid: 35444 + - uid: 35727 components: - type: Transform pos: -133.5,17.5 parent: 2 - - uid: 35445 + - uid: 35728 components: - type: Transform pos: -134.5,16.5 parent: 2 - - uid: 35446 + - uid: 35729 components: - type: Transform pos: -135.5,14.5 parent: 2 - - uid: 35447 + - uid: 35730 components: - type: Transform pos: -132.5,17.5 parent: 2 - - uid: 35448 + - uid: 35731 components: - type: Transform pos: -132.5,18.5 parent: 2 - - uid: 35449 + - uid: 35732 components: - type: Transform pos: -133.5,16.5 parent: 2 - - uid: 35450 + - uid: 35733 components: - type: Transform pos: -136.5,13.5 parent: 2 - - uid: 35451 + - uid: 35734 components: - type: Transform pos: -136.5,10.5 parent: 2 - - uid: 35452 + - uid: 35735 components: - type: Transform pos: -136.5,9.5 parent: 2 - - uid: 35453 + - uid: 35736 components: - type: Transform pos: -136.5,8.5 parent: 2 - - uid: 35454 + - uid: 35737 components: - type: Transform pos: -137.5,14.5 parent: 2 - - uid: 35455 + - uid: 35738 components: - type: Transform pos: -137.5,13.5 parent: 2 - - uid: 35456 + - uid: 35739 components: - type: Transform pos: -137.5,11.5 parent: 2 - - uid: 35457 + - uid: 35740 components: - type: Transform pos: -137.5,10.5 parent: 2 - - uid: 35458 + - uid: 35741 components: - type: Transform pos: -137.5,9.5 parent: 2 - - uid: 35459 + - uid: 35742 components: - type: Transform pos: -137.5,8.5 parent: 2 - - uid: 35460 + - uid: 35743 components: - type: Transform pos: -138.5,14.5 parent: 2 - - uid: 35461 + - uid: 35744 components: - type: Transform pos: -138.5,13.5 parent: 2 - - uid: 35462 + - uid: 35745 components: - type: Transform pos: -138.5,12.5 parent: 2 - - uid: 35463 + - uid: 35746 components: - type: Transform pos: -138.5,11.5 parent: 2 - - uid: 35464 + - uid: 35747 components: - type: Transform pos: -138.5,10.5 parent: 2 - - uid: 35465 + - uid: 35748 components: - type: Transform pos: -138.5,9.5 parent: 2 - - uid: 35466 + - uid: 35749 components: - type: Transform pos: -138.5,8.5 parent: 2 - - uid: 35467 + - uid: 35750 components: - type: Transform pos: -139.5,10.5 parent: 2 - - uid: 35468 + - uid: 35751 components: - type: Transform pos: -139.5,9.5 parent: 2 - - uid: 35469 + - uid: 35752 components: - type: Transform pos: -139.5,8.5 parent: 2 - - uid: 35470 + - uid: 35753 components: - type: Transform pos: -139.5,7.5 parent: 2 - - uid: 35471 + - uid: 35754 components: - type: Transform pos: -139.5,6.5 parent: 2 - - uid: 35472 + - uid: 35755 components: - type: Transform pos: -139.5,5.5 parent: 2 - - uid: 35473 + - uid: 35756 components: - type: Transform pos: -139.5,4.5 parent: 2 - - uid: 35474 + - uid: 35757 components: - type: Transform pos: -139.5,3.5 parent: 2 - - uid: 35475 + - uid: 35758 components: - type: Transform pos: -139.5,1.5 parent: 2 - - uid: 35476 + - uid: 35759 components: - type: Transform pos: -138.5,7.5 parent: 2 - - uid: 35477 + - uid: 35760 components: - type: Transform pos: -138.5,6.5 parent: 2 - - uid: 35478 + - uid: 35761 components: - type: Transform pos: -138.5,5.5 parent: 2 - - uid: 35479 + - uid: 35762 components: - type: Transform pos: -137.5,6.5 parent: 2 - - uid: 35480 + - uid: 35763 components: - type: Transform pos: -137.5,5.5 parent: 2 - - uid: 35481 + - uid: 35764 components: - type: Transform pos: -137.5,2.5 parent: 2 - - uid: 35482 + - uid: 35765 components: - type: Transform pos: -137.5,1.5 parent: 2 - - uid: 35483 + - uid: 35766 components: - type: Transform pos: -137.5,0.5 parent: 2 - - uid: 35484 + - uid: 35767 components: - type: Transform pos: -137.5,-0.5 parent: 2 - - uid: 35485 + - uid: 35768 components: - type: Transform pos: -137.5,-1.5 parent: 2 - - uid: 35486 + - uid: 35769 components: - type: Transform pos: -137.5,-2.5 parent: 2 - - uid: 35487 + - uid: 35770 components: - type: Transform pos: -136.5,5.5 parent: 2 - - uid: 35488 + - uid: 35771 components: - type: Transform pos: -136.5,1.5 parent: 2 - - uid: 35489 + - uid: 35772 components: - type: Transform pos: -136.5,0.5 parent: 2 - - uid: 35490 + - uid: 35773 components: - type: Transform pos: -136.5,-0.5 parent: 2 - - uid: 35491 + - uid: 35774 components: - type: Transform pos: -136.5,-1.5 parent: 2 - - uid: 35492 + - uid: 35775 components: - type: Transform pos: -136.5,-2.5 parent: 2 - - uid: 35493 + - uid: 35776 components: - type: Transform pos: -134.5,6.5 parent: 2 - - uid: 35494 + - uid: 35777 components: - type: Transform pos: -135.5,5.5 parent: 2 - - uid: 35495 + - uid: 35778 components: - type: Transform pos: -135.5,4.5 parent: 2 - - uid: 35496 + - uid: 35779 components: - type: Transform pos: -135.5,-0.5 parent: 2 - - uid: 35497 + - uid: 35780 components: - type: Transform pos: -142.5,7.5 parent: 2 - - uid: 35498 + - uid: 35781 components: - type: Transform pos: -142.5,4.5 parent: 2 - - uid: 35499 + - uid: 35782 components: - type: Transform pos: -142.5,1.5 parent: 2 - - uid: 35500 + - uid: 35783 components: - type: Transform pos: -142.5,0.5 parent: 2 - - uid: 35501 + - uid: 35784 components: - type: Transform pos: -82.5,69.5 parent: 2 - - uid: 35502 + - uid: 35785 components: - type: Transform pos: -142.5,-3.5 parent: 2 - - uid: 35503 + - uid: 35786 components: - type: Transform pos: -141.5,7.5 parent: 2 - - uid: 35504 + - uid: 35787 components: - type: Transform pos: -141.5,6.5 parent: 2 - - uid: 35505 + - uid: 35788 components: - type: Transform pos: -141.5,5.5 parent: 2 - - uid: 35506 + - uid: 35789 components: - type: Transform pos: -141.5,4.5 parent: 2 - - uid: 35507 + - uid: 35790 components: - type: Transform pos: -141.5,1.5 parent: 2 - - uid: 35508 + - uid: 35791 components: - type: Transform pos: -140.5,7.5 parent: 2 - - uid: 35509 + - uid: 35792 components: - type: Transform pos: -140.5,6.5 parent: 2 - - uid: 35510 + - uid: 35793 components: - type: Transform pos: -140.5,5.5 parent: 2 - - uid: 35511 + - uid: 35794 components: - type: Transform pos: -140.5,4.5 parent: 2 - - uid: 35512 + - uid: 35795 components: - type: Transform pos: -140.5,3.5 parent: 2 - - uid: 35513 + - uid: 35796 components: - type: Transform pos: -140.5,1.5 parent: 2 - - uid: 35514 + - uid: 35797 components: - type: Transform pos: -140.5,-0.5 parent: 2 - - uid: 35515 + - uid: 35798 components: - type: Transform pos: -140.5,-2.5 parent: 2 - - uid: 35516 + - uid: 35799 components: - type: Transform pos: -139.5,-0.5 parent: 2 - - uid: 35517 + - uid: 35800 components: - type: Transform pos: -139.5,-2.5 parent: 2 - - uid: 35518 + - uid: 35801 components: - type: Transform pos: -82.5,64.5 parent: 2 - - uid: 35519 + - uid: 35802 components: - type: Transform pos: -143.5,7.5 parent: 2 - - uid: 35520 + - uid: 35803 components: - type: Transform pos: -143.5,3.5 parent: 2 - - uid: 35521 + - uid: 35804 components: - type: Transform pos: -143.5,2.5 parent: 2 - - uid: 35522 + - uid: 35805 components: - type: Transform pos: -143.5,1.5 parent: 2 - - uid: 35523 + - uid: 35806 components: - type: Transform pos: -143.5,-1.5 parent: 2 - - uid: 35524 + - uid: 35807 components: - type: Transform pos: -143.5,-2.5 parent: 2 - - uid: 35525 + - uid: 35808 components: - type: Transform pos: -143.5,-3.5 parent: 2 - - uid: 35526 + - uid: 35809 components: - type: Transform pos: -142.5,-4.5 parent: 2 - - uid: 35527 + - uid: 35810 components: - type: Transform pos: -82.5,67.5 parent: 2 - - uid: 35528 + - uid: 35811 components: - type: Transform pos: -140.5,-4.5 parent: 2 - - uid: 35529 + - uid: 35812 components: - type: Transform pos: -80.5,69.5 parent: 2 - - uid: 35530 + - uid: 35813 components: - type: Transform pos: -144.5,2.5 parent: 2 - - uid: 35531 + - uid: 35814 components: - type: Transform pos: -144.5,1.5 parent: 2 - - uid: 35532 + - uid: 35815 components: - type: Transform pos: -144.5,0.5 parent: 2 - - uid: 35533 + - uid: 35816 components: - type: Transform pos: -144.5,-0.5 parent: 2 - - uid: 35534 + - uid: 35817 components: - type: Transform pos: -144.5,-1.5 parent: 2 - - uid: 35535 + - uid: 35818 components: - type: Transform pos: -144.5,-2.5 parent: 2 - - uid: 35536 + - uid: 35819 components: - type: Transform pos: -144.5,-5.5 parent: 2 - - uid: 35537 + - uid: 35820 components: - type: Transform pos: -143.5,-5.5 parent: 2 - - uid: 35538 + - uid: 35821 components: - type: Transform pos: -142.5,-5.5 parent: 2 - - uid: 35539 + - uid: 35822 components: - type: Transform pos: -80.5,70.5 parent: 2 - - uid: 35540 + - uid: 35823 components: - type: Transform pos: -140.5,-5.5 parent: 2 - - uid: 35541 + - uid: 35824 components: - type: Transform pos: -128.5,2.5 parent: 2 - - uid: 35542 + - uid: 35825 components: - type: Transform pos: -142.5,-9.5 parent: 2 - - uid: 35543 + - uid: 35826 components: - type: Transform pos: -140.5,-9.5 parent: 2 - - uid: 35544 + - uid: 35827 components: - type: Transform pos: -139.5,-5.5 parent: 2 - - uid: 35545 + - uid: 35828 components: - type: Transform pos: -139.5,-6.5 parent: 2 - - uid: 35546 + - uid: 35829 components: - type: Transform pos: -139.5,-7.5 parent: 2 - - uid: 35547 + - uid: 35830 components: - type: Transform pos: -139.5,-8.5 parent: 2 - - uid: 35548 + - uid: 35831 components: - type: Transform pos: -139.5,-9.5 parent: 2 - - uid: 35549 + - uid: 35832 components: - type: Transform pos: -138.5,-7.5 parent: 2 - - uid: 35550 + - uid: 35833 components: - type: Transform pos: -138.5,-9.5 parent: 2 - - uid: 35551 + - uid: 35834 components: - type: Transform pos: -136.5,-3.5 parent: 2 - - uid: 35552 + - uid: 35835 components: - type: Transform pos: -136.5,-4.5 parent: 2 - - uid: 35553 + - uid: 35836 components: - type: Transform pos: -136.5,-5.5 parent: 2 - - uid: 35554 + - uid: 35837 components: - type: Transform pos: -135.5,-2.5 parent: 2 - - uid: 35555 + - uid: 35838 components: - type: Transform pos: -135.5,-3.5 parent: 2 - - uid: 35556 + - uid: 35839 components: - type: Transform pos: -135.5,-4.5 parent: 2 - - uid: 35557 + - uid: 35840 components: - type: Transform pos: -135.5,-5.5 parent: 2 - - uid: 35558 + - uid: 35841 components: - type: Transform pos: -135.5,-6.5 parent: 2 - - uid: 35559 + - uid: 35842 components: - type: Transform pos: -135.5,-7.5 parent: 2 - - uid: 35560 + - uid: 35843 components: - type: Transform pos: -137.5,-10.5 parent: 2 - - uid: 35561 + - uid: 35844 components: - type: Transform pos: -137.5,-11.5 parent: 2 - - uid: 35562 + - uid: 35845 components: - type: Transform pos: -137.5,-12.5 parent: 2 - - uid: 35563 + - uid: 35846 components: - type: Transform pos: -136.5,-11.5 parent: 2 - - uid: 35564 + - uid: 35847 components: - type: Transform pos: -136.5,-12.5 parent: 2 - - uid: 35565 + - uid: 35848 components: - type: Transform pos: -135.5,-10.5 parent: 2 - - uid: 35566 + - uid: 35849 components: - type: Transform pos: -135.5,-11.5 parent: 2 - - uid: 35567 + - uid: 35850 components: - type: Transform pos: -135.5,-12.5 parent: 2 - - uid: 35568 + - uid: 35851 components: - type: Transform pos: -134.5,-6.5 parent: 2 - - uid: 35569 + - uid: 35852 components: - type: Transform pos: -134.5,-7.5 parent: 2 - - uid: 35570 + - uid: 35853 components: - type: Transform pos: -134.5,-11.5 parent: 2 - - uid: 35571 + - uid: 35854 components: - type: Transform pos: -134.5,-12.5 parent: 2 - - uid: 35572 + - uid: 35855 components: - type: Transform pos: -133.5,-6.5 parent: 2 - - uid: 35573 + - uid: 35856 components: - type: Transform pos: -133.5,-7.5 parent: 2 - - uid: 35574 + - uid: 35857 components: - type: Transform pos: -133.5,-12.5 parent: 2 - - uid: 35575 + - uid: 35858 components: - type: Transform pos: -132.5,-6.5 parent: 2 - - uid: 35576 + - uid: 35859 components: - type: Transform pos: -132.5,-7.5 parent: 2 - - uid: 35577 + - uid: 35860 components: - type: Transform pos: -132.5,-8.5 parent: 2 - - uid: 35578 + - uid: 35861 components: - type: Transform pos: -132.5,-9.5 parent: 2 - - uid: 35579 + - uid: 35862 components: - type: Transform pos: -132.5,-10.5 parent: 2 - - uid: 35580 + - uid: 35863 components: - type: Transform pos: -134.5,-13.5 parent: 2 - - uid: 35581 + - uid: 35864 components: - type: Transform pos: -134.5,-14.5 parent: 2 - - uid: 35582 + - uid: 35865 components: - type: Transform pos: -133.5,-13.5 parent: 2 - - uid: 35583 + - uid: 35866 components: - type: Transform pos: -133.5,-14.5 parent: 2 - - uid: 35584 + - uid: 35867 components: - type: Transform pos: -133.5,-15.5 parent: 2 - - uid: 35585 + - uid: 35868 components: - type: Transform pos: -132.5,-14.5 parent: 2 - - uid: 35586 + - uid: 35869 components: - type: Transform pos: -132.5,-15.5 parent: 2 - - uid: 35587 + - uid: 35870 components: - type: Transform pos: -131.5,-9.5 parent: 2 - - uid: 35588 + - uid: 35871 components: - type: Transform pos: -131.5,-10.5 parent: 2 - - uid: 35589 + - uid: 35872 components: - type: Transform pos: -131.5,-14.5 parent: 2 - - uid: 35590 + - uid: 35873 components: - type: Transform pos: -131.5,-15.5 parent: 2 - - uid: 35591 + - uid: 35874 components: - type: Transform pos: -130.5,-9.5 parent: 2 - - uid: 35592 + - uid: 35875 components: - type: Transform pos: -130.5,-10.5 parent: 2 - - uid: 35593 + - uid: 35876 components: - type: Transform pos: -130.5,-11.5 parent: 2 - - uid: 35594 + - uid: 35877 components: - type: Transform pos: -130.5,-13.5 parent: 2 - - uid: 35595 + - uid: 35878 components: - type: Transform pos: -130.5,-14.5 parent: 2 - - uid: 35596 + - uid: 35879 components: - type: Transform pos: -130.5,-15.5 parent: 2 - - uid: 35597 + - uid: 35880 components: - type: Transform pos: -129.5,-11.5 parent: 2 - - uid: 35598 + - uid: 35881 components: - type: Transform pos: -129.5,-13.5 parent: 2 - - uid: 35599 + - uid: 35882 components: - type: Transform pos: -129.5,-15.5 parent: 2 - - uid: 35600 + - uid: 35883 components: - type: Transform pos: -127.5,-17.5 parent: 2 - - uid: 35601 + - uid: 35884 components: - type: Transform pos: -77.5,64.5 parent: 2 - - uid: 35602 + - uid: 35885 components: - type: Transform pos: -93.5,4.5 parent: 2 - - uid: 35603 + - uid: 35886 components: - type: Transform pos: -95.5,-0.5 parent: 2 - - uid: 35604 + - uid: 35887 components: - type: Transform pos: -92.5,-2.5 parent: 2 - - uid: 35605 + - uid: 35888 components: - type: Transform pos: -91.5,-3.5 parent: 2 - - uid: 35606 + - uid: 35889 components: - type: Transform pos: -92.5,-1.5 parent: 2 - - uid: 35607 + - uid: 35890 components: - type: Transform pos: -93.5,-2.5 parent: 2 - - uid: 35608 + - uid: 35891 components: - type: Transform pos: -92.5,-3.5 parent: 2 - - uid: 35609 + - uid: 35892 components: - type: Transform pos: -92.5,-4.5 parent: 2 - - uid: 35610 + - uid: 35893 components: - type: Transform pos: -91.5,-5.5 parent: 2 - - uid: 35611 + - uid: 35894 components: - type: Transform pos: -90.5,-5.5 parent: 2 - - uid: 35612 + - uid: 35895 components: - type: Transform pos: -91.5,-4.5 parent: 2 - - uid: 35613 + - uid: 35896 components: - type: Transform pos: -93.5,-3.5 parent: 2 - - uid: 35614 + - uid: 35897 components: - type: Transform pos: -93.5,-4.5 parent: 2 - - uid: 35615 + - uid: 35898 components: - type: Transform pos: -92.5,-5.5 parent: 2 - - uid: 35616 + - uid: 35899 components: - type: Transform pos: -90.5,-6.5 parent: 2 - - uid: 35617 + - uid: 35900 components: - type: Transform pos: -89.5,-6.5 parent: 2 - - uid: 35618 + - uid: 35901 components: - type: Transform pos: -88.5,-6.5 parent: 2 - - uid: 35619 + - uid: 35902 components: - type: Transform pos: -86.5,-7.5 parent: 2 - - uid: 35620 + - uid: 35903 components: - type: Transform pos: -86.5,-8.5 parent: 2 - - uid: 35621 + - uid: 35904 components: - type: Transform pos: -85.5,-8.5 parent: 2 - - uid: 35622 + - uid: 35905 components: - type: Transform pos: -85.5,-7.5 parent: 2 - - uid: 35623 + - uid: 35906 components: - type: Transform pos: -84.5,-7.5 parent: 2 - - uid: 35624 + - uid: 35907 components: - type: Transform pos: -83.5,-8.5 parent: 2 - - uid: 35625 + - uid: 35908 components: - type: Transform pos: -83.5,-9.5 parent: 2 - - uid: 35626 + - uid: 35909 components: - type: Transform pos: -82.5,-9.5 parent: 2 - - uid: 35627 + - uid: 35910 components: - type: Transform pos: -82.5,-8.5 parent: 2 - - uid: 35628 + - uid: 35911 components: - type: Transform pos: -88.5,0.5 parent: 2 - - uid: 35629 + - uid: 35912 components: - type: Transform pos: -91.5,3.5 parent: 2 - - uid: 35630 + - uid: 35913 components: - type: Transform pos: -91.5,4.5 parent: 2 - - uid: 35631 + - uid: 35914 components: - type: Transform pos: -90.5,3.5 parent: 2 - - uid: 35632 + - uid: 35915 components: - type: Transform pos: -92.5,4.5 parent: 2 - - uid: 35633 + - uid: 35916 components: - type: Transform pos: -89.5,2.5 parent: 2 - - uid: 35634 + - uid: 35917 components: - type: Transform pos: -89.5,0.5 parent: 2 - - uid: 35635 + - uid: 35918 components: - type: Transform pos: -91.5,2.5 parent: 2 - - uid: 35636 + - uid: 35919 components: - type: Transform pos: -90.5,1.5 parent: 2 - - uid: 35637 + - uid: 35920 components: - type: Transform pos: -89.5,1.5 parent: 2 - - uid: 35638 + - uid: 35921 components: - type: Transform pos: -88.5,-0.5 parent: 2 - - uid: 35639 + - uid: 35922 components: - type: Transform pos: -87.5,-2.5 parent: 2 - - uid: 35640 + - uid: 35923 components: - type: Transform pos: -86.5,-2.5 parent: 2 - - uid: 35641 + - uid: 35924 components: - type: Transform pos: -90.5,2.5 parent: 2 - - uid: 35642 + - uid: 35925 components: - type: Transform pos: -90.5,4.5 parent: 2 - - uid: 35643 + - uid: 35926 components: - type: Transform pos: -86.5,-1.5 parent: 2 - - uid: 35644 + - uid: 35927 components: - type: Transform pos: -87.5,-0.5 parent: 2 - - uid: 35645 + - uid: 35928 components: - type: Transform pos: -87.5,-1.5 parent: 2 - - uid: 35646 + - uid: 35929 components: - type: Transform pos: -86.5,-0.5 parent: 2 - - uid: 35647 + - uid: 35930 components: - type: Transform pos: -86.5,-3.5 parent: 2 - - uid: 35648 + - uid: 35931 components: - type: Transform pos: -120.5,25.5 parent: 2 - - uid: 35649 + - uid: 35932 components: - type: Transform pos: -121.5,25.5 parent: 2 - - uid: 35650 + - uid: 35933 components: - type: Transform pos: -121.5,24.5 parent: 2 - - uid: 35651 + - uid: 35934 components: - type: Transform pos: -122.5,22.5 parent: 2 - - uid: 35652 + - uid: 35935 components: - type: Transform pos: -123.5,21.5 parent: 2 - - uid: 35653 + - uid: 35936 components: - type: Transform pos: -124.5,20.5 parent: 2 - - uid: 35654 + - uid: 35937 components: - type: Transform pos: -124.5,19.5 parent: 2 - - uid: 35655 + - uid: 35938 components: - type: Transform pos: -124.5,18.5 parent: 2 - - uid: 35656 + - uid: 35939 components: - type: Transform pos: -127.5,16.5 parent: 2 - - uid: 35657 + - uid: 35940 components: - type: Transform pos: -125.5,19.5 parent: 2 - - uid: 35658 + - uid: 35941 components: - type: Transform pos: -128.5,15.5 parent: 2 - - uid: 35659 + - uid: 35942 components: - type: Transform pos: -129.5,13.5 parent: 2 - - uid: 35660 + - uid: 35943 components: - type: Transform pos: -128.5,14.5 parent: 2 - - uid: 35661 + - uid: 35944 components: - type: Transform pos: -128.5,13.5 parent: 2 - - uid: 35662 + - uid: 35945 components: - type: Transform pos: -129.5,12.5 parent: 2 - - uid: 35663 + - uid: 35946 components: - type: Transform pos: -129.5,14.5 parent: 2 - - uid: 35664 + - uid: 35947 components: - type: Transform pos: -129.5,7.5 parent: 2 - - uid: 35665 + - uid: 35948 components: - type: Transform pos: -131.5,2.5 parent: 2 - - uid: 35666 + - uid: 35949 components: - type: Transform pos: -131.5,0.5 parent: 2 - - uid: 35667 + - uid: 35950 components: - type: Transform pos: -130.5,-0.5 parent: 2 - - uid: 35668 + - uid: 35951 components: - type: Transform pos: -130.5,-1.5 parent: 2 - - uid: 35669 + - uid: 35952 components: - type: Transform pos: -129.5,-1.5 parent: 2 - - uid: 35670 + - uid: 35953 components: - type: Transform pos: -128.5,-2.5 parent: 2 - - uid: 35671 + - uid: 35954 components: - type: Transform pos: -131.5,1.5 parent: 2 - - uid: 35672 + - uid: 35955 components: - type: Transform pos: -127.5,-2.5 parent: 2 - - uid: 35673 + - uid: 35956 components: - type: Transform pos: -127.5,-3.5 parent: 2 - - uid: 35674 + - uid: 35957 components: - type: Transform pos: -129.5,-2.5 parent: 2 - - uid: 35675 + - uid: 35958 components: - type: Transform pos: -129.5,-3.5 parent: 2 - - uid: 35676 + - uid: 35959 components: - type: Transform pos: -128.5,-3.5 parent: 2 - - uid: 35677 + - uid: 35960 components: - type: Transform pos: -130.5,-16.5 parent: 2 - - uid: 35678 + - uid: 35961 components: - type: Transform pos: -129.5,-17.5 parent: 2 - - uid: 35679 + - uid: 35962 components: - type: Transform pos: -129.5,-16.5 parent: 2 - - uid: 35680 + - uid: 35963 components: - type: Transform pos: -128.5,-18.5 parent: 2 - - uid: 35681 + - uid: 35964 components: - type: Transform pos: -128.5,-17.5 parent: 2 - - uid: 35682 + - uid: 35965 components: - type: Transform pos: -127.5,-18.5 parent: 2 - - uid: 35683 + - uid: 35966 components: - type: Transform pos: -126.5,-18.5 parent: 2 - - uid: 35684 + - uid: 35967 components: - type: Transform pos: -125.5,-18.5 parent: 2 - - uid: 35685 + - uid: 35968 components: - type: Transform pos: -124.5,-18.5 parent: 2 - - uid: 35686 + - uid: 35969 components: - type: Transform pos: -124.5,-13.5 parent: 2 - - uid: 35687 + - uid: 35970 components: - type: Transform pos: -123.5,-14.5 parent: 2 - - uid: 35688 + - uid: 35971 components: - type: Transform pos: -122.5,-14.5 parent: 2 - - uid: 35689 + - uid: 35972 components: - type: Transform pos: -122.5,-17.5 parent: 2 - - uid: 35690 + - uid: 35973 components: - type: Transform pos: -121.5,-14.5 parent: 2 - - uid: 35691 + - uid: 35974 components: - type: Transform pos: -120.5,-14.5 parent: 2 - - uid: 35692 + - uid: 35975 components: - type: Transform pos: -120.5,-17.5 parent: 2 - - uid: 35693 + - uid: 35976 components: - type: Transform pos: -119.5,-14.5 parent: 2 - - uid: 35694 + - uid: 35977 components: - type: Transform pos: -119.5,-17.5 parent: 2 - - uid: 35695 + - uid: 35978 components: - type: Transform pos: -118.5,-14.5 parent: 2 - - uid: 35696 + - uid: 35979 components: - type: Transform pos: -117.5,-14.5 parent: 2 - - uid: 35697 + - uid: 35980 components: - type: Transform pos: -117.5,-17.5 parent: 2 - - uid: 35698 + - uid: 35981 components: - type: Transform pos: -116.5,-14.5 parent: 2 - - uid: 35699 + - uid: 35982 components: - type: Transform pos: -115.5,-14.5 parent: 2 - - uid: 35700 + - uid: 35983 components: - type: Transform pos: -114.5,-14.5 parent: 2 - - uid: 35701 - components: - - type: Transform - pos: -83.5,64.5 - parent: 2 - - uid: 35702 + - uid: 35984 components: - type: Transform pos: -114.5,-17.5 parent: 2 - - uid: 35703 + - uid: 35985 components: - type: Transform pos: -113.5,-14.5 parent: 2 - - uid: 35704 + - uid: 35986 components: - type: Transform pos: -112.5,-14.5 parent: 2 - - uid: 35705 + - uid: 35987 components: - type: Transform pos: -79.5,67.5 parent: 2 - - uid: 35706 + - uid: 35988 components: - type: Transform pos: -112.5,-17.5 parent: 2 - - uid: 35707 + - uid: 35989 components: - type: Transform pos: -111.5,-14.5 parent: 2 - - uid: 35708 + - uid: 35990 components: - type: Transform pos: -111.5,-17.5 parent: 2 - - uid: 35709 + - uid: 35991 components: - type: Transform pos: -110.5,-14.5 parent: 2 - - uid: 35710 + - uid: 35992 components: - type: Transform pos: -81.5,67.5 parent: 2 - - uid: 35711 + - uid: 35993 components: - type: Transform pos: -110.5,-17.5 parent: 2 - - uid: 35712 + - uid: 35994 components: - type: Transform pos: -109.5,-14.5 parent: 2 - - uid: 35713 + - uid: 35995 components: - type: Transform pos: -109.5,-17.5 parent: 2 - - uid: 35714 + - uid: 35996 components: - type: Transform pos: -108.5,-14.5 parent: 2 - - uid: 35715 + - uid: 35997 components: - type: Transform pos: -108.5,-17.5 parent: 2 - - uid: 35716 + - uid: 35998 components: - type: Transform pos: -107.5,-14.5 parent: 2 - - uid: 35717 + - uid: 35999 components: - type: Transform pos: -107.5,-17.5 parent: 2 - - uid: 35718 + - uid: 36000 components: - type: Transform pos: -106.5,-16.5 parent: 2 - - uid: 35719 + - uid: 36001 components: - type: Transform pos: -106.5,-17.5 parent: 2 - - uid: 35720 + - uid: 36002 components: - type: Transform pos: -104.5,-17.5 parent: 2 - - uid: 35721 + - uid: 36003 components: - type: Transform pos: -103.5,-14.5 parent: 2 - - uid: 35722 + - uid: 36004 components: - type: Transform pos: -103.5,-15.5 parent: 2 - - uid: 35723 + - uid: 36005 components: - type: Transform pos: -103.5,-16.5 parent: 2 - - uid: 35724 + - uid: 36006 components: - type: Transform pos: -103.5,-17.5 parent: 2 - - uid: 35725 + - uid: 36007 components: - type: Transform pos: -128.5,-11.5 parent: 2 - - uid: 35726 + - uid: 36008 components: - type: Transform pos: -127.5,-10.5 parent: 2 - - uid: 35727 + - uid: 36009 components: - type: Transform pos: -127.5,-11.5 parent: 2 - - uid: 35728 + - uid: 36010 components: - type: Transform pos: -126.5,-10.5 parent: 2 - - uid: 35729 + - uid: 36011 components: - type: Transform pos: -126.5,-11.5 parent: 2 - - uid: 35730 + - uid: 36012 components: - type: Transform pos: -126.5,-12.5 parent: 2 - - uid: 35731 + - uid: 36013 components: - type: Transform pos: -123.5,-13.5 parent: 2 - - uid: 35732 + - uid: 36014 components: - type: Transform pos: -122.5,-13.5 parent: 2 - - uid: 35733 + - uid: 36015 components: - type: Transform pos: -124.5,-12.5 parent: 2 - - uid: 35734 + - uid: 36016 components: - type: Transform pos: -125.5,-12.5 parent: 2 - - uid: 35735 + - uid: 36017 components: - type: Transform pos: -125.5,-11.5 parent: 2 - - uid: 35736 + - uid: 36018 components: - type: Transform pos: -129.5,-8.5 parent: 2 - - uid: 35737 + - uid: 36019 components: - type: Transform pos: -130.5,-8.5 parent: 2 - - uid: 35738 + - uid: 36020 components: - type: Transform pos: -131.5,-7.5 parent: 2 - - uid: 35739 + - uid: 36021 components: - type: Transform pos: -134.5,-5.5 parent: 2 - - uid: 35740 + - uid: 36022 components: - type: Transform pos: -134.5,-4.5 parent: 2 - - uid: 35741 + - uid: 36023 components: - type: Transform pos: -134.5,-3.5 parent: 2 - - uid: 35742 + - uid: 36024 components: - type: Transform pos: -131.5,-8.5 parent: 2 - - uid: 35743 + - uid: 36025 components: - type: Transform pos: -111.5,-13.5 parent: 2 - - uid: 35744 + - uid: 36026 components: - type: Transform pos: -110.5,-13.5 parent: 2 - - uid: 35745 + - uid: 36027 components: - type: Transform pos: -109.5,-13.5 parent: 2 - - uid: 35746 + - uid: 36028 components: - type: Transform pos: -108.5,-13.5 parent: 2 - - uid: 35747 + - uid: 36029 components: - type: Transform pos: -107.5,-13.5 parent: 2 - - uid: 35748 + - uid: 36030 components: - type: Transform pos: -106.5,-13.5 parent: 2 - - uid: 35749 + - uid: 36031 components: - type: Transform pos: -104.5,-13.5 parent: 2 - - uid: 35750 + - uid: 36032 components: - type: Transform pos: -103.5,-13.5 parent: 2 - - uid: 35751 + - uid: 36033 components: - type: Transform pos: -105.5,-13.5 parent: 2 - - uid: 35752 + - uid: 36034 components: - type: Transform pos: -102.5,-13.5 parent: 2 - - uid: 35753 + - uid: 36035 components: - type: Transform pos: -97.5,-12.5 parent: 2 - - uid: 35754 + - uid: 36036 components: - type: Transform pos: -108.5,-18.5 parent: 2 - - uid: 35755 + - uid: 36037 components: - type: Transform pos: -109.5,-18.5 parent: 2 - - uid: 35756 + - uid: 36038 components: - type: Transform pos: -111.5,-18.5 parent: 2 - - uid: 35757 + - uid: 36039 components: - type: Transform pos: -112.5,-18.5 parent: 2 - - uid: 35758 + - uid: 36040 components: - type: Transform pos: -113.5,-18.5 parent: 2 - - uid: 35759 + - uid: 36041 components: - type: Transform pos: -114.5,-18.5 parent: 2 - - uid: 35760 + - uid: 36042 components: - type: Transform pos: -115.5,-18.5 parent: 2 - - uid: 35761 + - uid: 36043 components: - type: Transform pos: -116.5,-18.5 parent: 2 - - uid: 35762 + - uid: 36044 components: - type: Transform pos: -117.5,-18.5 parent: 2 - - uid: 35763 + - uid: 36045 components: - type: Transform pos: -118.5,-18.5 parent: 2 - - uid: 35764 + - uid: 36046 components: - type: Transform pos: -123.5,-19.5 parent: 2 - - uid: 35765 + - uid: 36047 components: - type: Transform pos: -126.5,-19.5 parent: 2 - - uid: 35766 + - uid: 36048 components: - type: Transform pos: -125.5,-19.5 parent: 2 - - uid: 35767 + - uid: 36049 components: - type: Transform pos: -121.5,-20.5 parent: 2 - - uid: 35768 + - uid: 36050 components: - type: Transform pos: -124.5,-19.5 parent: 2 - - uid: 35769 + - uid: 36051 components: - type: Transform pos: -123.5,-20.5 parent: 2 - - uid: 35770 + - uid: 36052 components: - type: Transform pos: -121.5,-18.5 parent: 2 - - uid: 35771 + - uid: 36053 components: - type: Transform pos: -121.5,-19.5 parent: 2 - - uid: 35772 + - uid: 36054 components: - type: Transform pos: -119.5,-19.5 parent: 2 - - uid: 35773 + - uid: 36055 components: - type: Transform pos: -119.5,-18.5 parent: 2 - - uid: 35774 + - uid: 36056 components: - type: Transform pos: -120.5,-18.5 parent: 2 - - uid: 35775 + - uid: 36057 components: - type: Transform pos: -120.5,-19.5 parent: 2 - - uid: 35776 + - uid: 36058 components: - type: Transform pos: -118.5,-19.5 parent: 2 - - uid: 35777 + - uid: 36059 components: - type: Transform pos: -116.5,-19.5 parent: 2 - - uid: 35778 + - uid: 36060 components: - type: Transform pos: -115.5,-19.5 parent: 2 - - uid: 35779 + - uid: 36061 components: - type: Transform pos: -117.5,-19.5 parent: 2 - - uid: 35780 + - uid: 36062 components: - type: Transform pos: -113.5,-19.5 parent: 2 - - uid: 35781 + - uid: 36063 components: - type: Transform pos: -112.5,-19.5 parent: 2 - - uid: 35782 + - uid: 36064 components: - type: Transform pos: -114.5,-19.5 parent: 2 - - uid: 35783 + - uid: 36065 components: - type: Transform pos: -94.5,-12.5 parent: 2 - - uid: 35784 + - uid: 36066 components: - type: Transform pos: -93.5,-13.5 parent: 2 - - uid: 35785 + - uid: 36067 components: - type: Transform pos: -95.5,-12.5 parent: 2 - - uid: 35786 + - uid: 36068 components: - type: Transform pos: -96.5,-12.5 parent: 2 - - uid: 35787 + - uid: 36069 components: - type: Transform pos: -94.5,-13.5 parent: 2 - - uid: 35788 + - uid: 36070 components: - type: Transform pos: -95.5,-13.5 parent: 2 - - uid: 35789 + - uid: 36071 components: - type: Transform pos: -93.5,-12.5 parent: 2 - - uid: 35790 + - uid: 36072 components: - type: Transform pos: -92.5,-12.5 parent: 2 - - uid: 35791 + - uid: 36073 components: - type: Transform pos: -91.5,-12.5 parent: 2 - - uid: 35792 + - uid: 36074 components: - type: Transform pos: -90.5,-13.5 parent: 2 - - uid: 35793 + - uid: 36075 components: - type: Transform pos: -102.5,-15.5 parent: 2 - - uid: 35794 + - uid: 36076 components: - type: Transform pos: -102.5,-14.5 parent: 2 - - uid: 35795 + - uid: 36077 components: - type: Transform pos: -101.5,-15.5 parent: 2 - - uid: 35796 + - uid: 36078 components: - type: Transform pos: -101.5,-14.5 parent: 2 - - uid: 35797 + - uid: 36079 components: - type: Transform pos: -100.5,-15.5 parent: 2 - - uid: 35798 + - uid: 36080 components: - type: Transform pos: -100.5,-14.5 parent: 2 - - uid: 35799 + - uid: 36081 components: - type: Transform pos: -102.5,-16.5 parent: 2 - - uid: 35800 + - uid: 36082 components: - type: Transform pos: -101.5,-16.5 parent: 2 - - uid: 35801 + - uid: 36083 components: - type: Transform pos: -99.5,-13.5 parent: 2 - - uid: 35802 + - uid: 36084 components: - type: Transform pos: -99.5,-14.5 parent: 2 - - uid: 35803 + - uid: 36085 components: - type: Transform pos: -98.5,-13.5 parent: 2 - - uid: 35804 + - uid: 36086 components: - type: Transform pos: -98.5,-14.5 parent: 2 - - uid: 35805 + - uid: 36087 components: - type: Transform pos: -97.5,-13.5 parent: 2 - - uid: 35806 + - uid: 36088 components: - type: Transform pos: -92.5,-13.5 parent: 2 - - uid: 35807 + - uid: 36089 components: - type: Transform pos: -91.5,-13.5 parent: 2 - - uid: 35808 + - uid: 36090 components: - type: Transform pos: -90.5,-14.5 parent: 2 - - uid: 35809 + - uid: 36091 components: - type: Transform pos: -89.5,-14.5 parent: 2 - - uid: 35810 + - uid: 36092 components: - type: Transform pos: -89.5,-13.5 parent: 2 - - uid: 35811 + - uid: 36093 components: - type: Transform pos: -90.5,-12.5 parent: 2 - - uid: 35812 + - uid: 36094 components: - type: Transform pos: -90.5,-11.5 parent: 2 - - uid: 35813 + - uid: 36095 components: - type: Transform pos: -89.5,-12.5 parent: 2 - - uid: 35814 + - uid: 36096 components: - type: Transform pos: -88.5,-13.5 parent: 2 - - uid: 35815 + - uid: 36097 components: - type: Transform pos: -88.5,-14.5 parent: 2 - - uid: 35816 + - uid: 36098 components: - type: Transform pos: -87.5,-15.5 parent: 2 - - uid: 35817 + - uid: 36099 components: - type: Transform pos: -86.5,-15.5 parent: 2 - - uid: 35818 + - uid: 36100 components: - type: Transform pos: -30.5,47.5 parent: 2 - - uid: 35819 + - uid: 36101 components: - type: Transform pos: -30.5,45.5 parent: 2 - - uid: 35820 + - uid: 36102 components: - type: Transform pos: -30.5,46.5 parent: 2 - - uid: 35821 + - uid: 36103 components: - type: Transform pos: -31.5,47.5 parent: 2 - - uid: 35822 + - uid: 36104 components: - type: Transform pos: -29.5,46.5 parent: 2 - - uid: 35823 + - uid: 36105 components: - type: Transform pos: -1.5,70.5 parent: 2 - - uid: 35824 + - uid: 36106 components: - type: Transform pos: -45.5,30.5 parent: 2 - - uid: 35825 + - uid: 36107 components: - type: Transform pos: -46.5,30.5 parent: 2 - - uid: 35826 + - uid: 36108 components: - type: Transform pos: -45.5,29.5 parent: 2 - - uid: 35827 + - uid: 36109 components: - type: Transform pos: 43.5,39.5 parent: 2 - - uid: 35828 + - uid: 36110 components: - type: Transform pos: 77.5,25.5 parent: 2 - - uid: 35829 + - uid: 36111 components: - type: Transform pos: 77.5,24.5 parent: 2 - - uid: 35830 + - uid: 36112 components: - type: Transform pos: -20.5,29.5 parent: 2 - - uid: 35831 + - uid: 36113 components: - type: Transform pos: -25.5,28.5 parent: 2 - - uid: 35832 + - uid: 36114 components: - type: Transform pos: -16.5,28.5 parent: 2 - - uid: 35833 + - uid: 36115 components: - type: Transform pos: -18.5,30.5 parent: 2 - - uid: 35834 + - uid: 36116 components: - type: Transform pos: -19.5,28.5 parent: 2 - - uid: 35835 + - uid: 36117 components: - type: Transform pos: 33.5,39.5 parent: 2 - - uid: 35836 + - uid: 36118 components: - type: Transform pos: 34.5,38.5 parent: 2 - - uid: 35837 + - uid: 36119 components: - type: Transform pos: 32.5,39.5 parent: 2 - - uid: 35838 + - uid: 36120 components: - type: Transform pos: 34.5,39.5 parent: 2 - - uid: 35839 + - uid: 36121 components: - type: Transform pos: -19.5,29.5 parent: 2 - - uid: 35840 + - uid: 36122 components: - type: Transform pos: -20.5,28.5 parent: 2 - - uid: 35841 + - uid: 36123 components: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 35842 + - uid: 36124 components: - type: Transform pos: -17.5,29.5 parent: 2 - - uid: 35843 + - uid: 36125 components: - type: Transform pos: -19.5,30.5 parent: 2 - - uid: 35844 + - uid: 36126 components: - type: Transform pos: -122.5,-19.5 parent: 2 - - uid: 35845 - components: - - type: Transform - pos: -30.5,62.5 - parent: 2 - - uid: 35846 - components: - - type: Transform - pos: -31.5,62.5 - parent: 2 - - uid: 35847 + - uid: 36127 components: - type: Transform pos: -28.5,72.5 parent: 2 - - uid: 35848 + - uid: 36128 components: - type: Transform pos: -29.5,63.5 parent: 2 - - uid: 35849 + - uid: 36129 components: - type: Transform pos: -29.5,64.5 parent: 2 - - uid: 35850 + - uid: 36130 components: - type: Transform pos: -17.5,73.5 parent: 2 - - uid: 35851 + - uid: 36131 components: - type: Transform pos: -64.5,-26.5 parent: 2 - - uid: 35852 + - uid: 36132 components: - type: Transform pos: -19.5,72.5 parent: 2 - - uid: 35853 + - uid: 36133 components: - type: Transform pos: -18.5,72.5 parent: 2 - - uid: 35854 + - uid: 36134 components: - type: Transform pos: -17.5,72.5 parent: 2 - - uid: 35855 - components: - - type: Transform - pos: -28.5,70.5 - parent: 2 - - uid: 35856 - components: - - type: Transform - pos: -28.5,71.5 - parent: 2 - - uid: 35857 + - uid: 36135 components: - type: Transform pos: -27.5,71.5 parent: 2 - - uid: 35858 - components: - - type: Transform - pos: -26.5,69.5 - parent: 2 - - uid: 35859 - components: - - type: Transform - pos: -26.5,70.5 - parent: 2 - - uid: 35860 + - uid: 36136 components: - type: Transform - pos: -26.5,71.5 + pos: -38.5,71.5 parent: 2 - - uid: 35861 + - uid: 36137 components: - type: Transform - pos: -25.5,71.5 + pos: -31.5,67.5 parent: 2 - - uid: 35862 + - uid: 36138 components: - type: Transform pos: -24.5,70.5 parent: 2 - - uid: 35863 + - uid: 36139 components: - type: Transform pos: -24.5,71.5 parent: 2 - - uid: 35864 + - uid: 36140 components: - type: Transform pos: -23.5,70.5 parent: 2 - - uid: 35865 + - uid: 36141 components: - type: Transform pos: -22.5,70.5 parent: 2 - - uid: 35866 + - uid: 36142 components: - type: Transform pos: -21.5,70.5 parent: 2 - - uid: 35867 + - uid: 36143 components: - type: Transform pos: -20.5,70.5 parent: 2 - - uid: 35868 + - uid: 36144 components: - type: Transform pos: -20.5,71.5 parent: 2 - - uid: 35869 + - uid: 36145 components: - type: Transform pos: -19.5,69.5 parent: 2 - - uid: 35870 + - uid: 36146 components: - type: Transform pos: -19.5,70.5 parent: 2 - - uid: 35871 + - uid: 36147 components: - type: Transform pos: -19.5,71.5 parent: 2 - - uid: 35872 + - uid: 36148 components: - type: Transform pos: -18.5,69.5 parent: 2 - - uid: 35873 + - uid: 36149 components: - type: Transform pos: -18.5,70.5 parent: 2 - - uid: 35874 + - uid: 36150 components: - type: Transform pos: -18.5,71.5 parent: 2 - - uid: 35875 + - uid: 36151 components: - type: Transform pos: -17.5,69.5 parent: 2 - - uid: 35876 + - uid: 36152 components: - type: Transform pos: -17.5,71.5 parent: 2 - - uid: 35877 + - uid: 36153 components: - type: Transform pos: -65.5,-26.5 parent: 2 - - uid: 35878 + - uid: 36154 components: - type: Transform pos: -59.5,-32.5 parent: 2 - - uid: 35879 + - uid: 36155 components: - type: Transform pos: -16.5,65.5 parent: 2 - - uid: 35880 + - uid: 36156 components: - type: Transform pos: -61.5,-26.5 parent: 2 - - uid: 35881 + - uid: 36157 components: - type: Transform pos: -18.5,66.5 parent: 2 - - uid: 35882 + - uid: 36158 components: - type: Transform pos: -18.5,68.5 parent: 2 - - uid: 35883 + - uid: 36159 components: - type: Transform pos: -19.5,66.5 parent: 2 - - uid: 35884 - components: - - type: Transform - pos: -26.5,60.5 - parent: 2 - - uid: 35885 + - uid: 36160 components: - type: Transform pos: -20.5,66.5 parent: 2 - - uid: 35886 + - uid: 36161 components: - type: Transform pos: -16.5,67.5 parent: 2 - - uid: 35887 - components: - - type: Transform - pos: -25.5,60.5 - parent: 2 - - uid: 35888 + - uid: 36162 components: - type: Transform pos: -21.5,66.5 parent: 2 - - uid: 35889 + - uid: 36163 components: - type: Transform pos: -21.5,67.5 parent: 2 - - uid: 35890 + - uid: 36164 components: - type: Transform pos: -21.5,68.5 parent: 2 - - uid: 35891 + - uid: 36165 components: - type: Transform pos: -16.5,68.5 parent: 2 - - uid: 35892 + - uid: 36166 components: - type: Transform pos: -69.5,-22.5 parent: 2 - - uid: 35893 + - uid: 36167 components: - type: Transform pos: -22.5,66.5 parent: 2 - - uid: 35894 + - uid: 36168 components: - type: Transform pos: -22.5,67.5 parent: 2 - - uid: 35895 + - uid: 36169 components: - type: Transform pos: -22.5,68.5 parent: 2 - - uid: 35896 + - uid: 36170 components: - type: Transform pos: -16.5,69.5 parent: 2 - - uid: 35897 + - uid: 36171 components: - type: Transform pos: -23.5,66.5 parent: 2 - - uid: 35898 + - uid: 36172 components: - type: Transform pos: -23.5,67.5 parent: 2 - - uid: 35899 + - uid: 36173 components: - type: Transform pos: -24.5,65.5 parent: 2 - - uid: 35900 + - uid: 36174 components: - type: Transform pos: -24.5,66.5 parent: 2 - - uid: 35901 + - uid: 36175 components: - type: Transform pos: -24.5,67.5 parent: 2 - - uid: 35902 + - uid: 36176 components: - type: Transform pos: -25.5,65.5 parent: 2 - - uid: 35903 + - uid: 36177 components: - type: Transform pos: -25.5,66.5 parent: 2 - - uid: 35904 + - uid: 36178 components: - type: Transform pos: -25.5,67.5 parent: 2 - - uid: 35905 + - uid: 36179 components: - type: Transform pos: -66.5,-22.5 parent: 2 - - uid: 35906 + - uid: 36180 components: - type: Transform pos: -61.5,-22.5 parent: 2 - - uid: 35907 + - uid: 36181 components: - type: Transform pos: -16.5,73.5 parent: 2 - - uid: 35908 + - uid: 36182 components: - type: Transform pos: -63.5,-26.5 parent: 2 - - uid: 35909 + - uid: 36183 components: - type: Transform pos: -65.5,-22.5 parent: 2 - - uid: 35910 + - uid: 36184 components: - type: Transform - pos: -27.5,67.5 + pos: -31.5,64.5 parent: 2 - - uid: 35911 + - uid: 36185 components: - type: Transform - pos: -27.5,68.5 + pos: -39.5,72.5 parent: 2 - - uid: 35912 + - uid: 36186 components: - type: Transform pos: -60.5,-22.5 parent: 2 - - uid: 35913 + - uid: 36187 components: - type: Transform pos: -28.5,64.5 parent: 2 - - uid: 35914 + - uid: 36188 components: - type: Transform pos: -70.5,-24.5 parent: 2 - - uid: 35915 + - uid: 36189 components: - type: Transform pos: -62.5,-23.5 parent: 2 - - uid: 35916 + - uid: 36190 components: - type: Transform pos: -30.5,63.5 parent: 2 - - uid: 35917 + - uid: 36191 components: - type: Transform pos: -30.5,64.5 parent: 2 - - uid: 35918 + - uid: 36192 components: - type: Transform pos: -30.5,65.5 parent: 2 - - uid: 35919 - components: - - type: Transform - pos: -31.5,63.5 - parent: 2 - - uid: 35920 - components: - - type: Transform - pos: -31.5,64.5 - parent: 2 - - uid: 35921 - components: - - type: Transform - pos: -31.5,65.5 - parent: 2 - - uid: 35922 + - uid: 36193 components: - type: Transform - pos: -31.5,66.5 + pos: -102.5,45.5 parent: 2 - - uid: 35923 + - uid: 36194 components: - type: Transform - pos: -31.5,67.5 + pos: -34.5,61.5 parent: 2 - - uid: 35924 + - uid: 36195 components: - type: Transform pos: -66.5,-26.5 parent: 2 - - uid: 35925 + - uid: 36196 components: - type: Transform pos: -67.5,-26.5 parent: 2 - - uid: 35926 + - uid: 36197 components: - type: Transform pos: -68.5,-26.5 parent: 2 - - uid: 35927 + - uid: 36198 components: - type: Transform pos: -69.5,-26.5 parent: 2 - - uid: 35928 + - uid: 36199 components: - type: Transform pos: -70.5,-26.5 parent: 2 - - uid: 35929 + - uid: 36200 components: - type: Transform pos: -71.5,-26.5 parent: 2 - - uid: 35930 + - uid: 36201 components: - type: Transform pos: -72.5,-26.5 parent: 2 - - uid: 35931 + - uid: 36202 components: - type: Transform pos: -72.5,-25.5 parent: 2 - - uid: 35932 + - uid: 36203 components: - type: Transform pos: -73.5,-26.5 parent: 2 - - uid: 35933 + - uid: 36204 components: - type: Transform pos: -73.5,-25.5 parent: 2 - - uid: 35934 + - uid: 36205 components: - type: Transform pos: -74.5,-26.5 parent: 2 - - uid: 35935 + - uid: 36206 components: - type: Transform pos: -74.5,-25.5 parent: 2 - - uid: 35936 + - uid: 36207 components: - type: Transform pos: -74.5,-20.5 parent: 2 - - uid: 35937 + - uid: 36208 components: - type: Transform pos: -75.5,-25.5 parent: 2 - - uid: 35938 + - uid: 36209 components: - type: Transform pos: -75.5,-23.5 parent: 2 - - uid: 35939 + - uid: 36210 components: - type: Transform pos: -75.5,-22.5 parent: 2 - - uid: 35940 + - uid: 36211 components: - type: Transform pos: -75.5,-20.5 parent: 2 - - uid: 35941 + - uid: 36212 components: - type: Transform pos: -76.5,-25.5 parent: 2 - - uid: 35942 + - uid: 36213 components: - type: Transform pos: -76.5,-24.5 parent: 2 - - uid: 35943 + - uid: 36214 components: - type: Transform pos: -76.5,-23.5 parent: 2 - - uid: 35944 + - uid: 36215 components: - type: Transform pos: -82.5,-22.5 parent: 2 - - uid: 35945 + - uid: 36216 components: - type: Transform pos: -77.5,-24.5 parent: 2 - - uid: 35946 + - uid: 36217 components: - type: Transform pos: -77.5,-23.5 parent: 2 - - uid: 35947 + - uid: 36218 components: - type: Transform pos: -77.5,-22.5 parent: 2 - - uid: 35948 + - uid: 36219 components: - type: Transform pos: -77.5,-20.5 parent: 2 - - uid: 35949 + - uid: 36220 components: - type: Transform pos: -78.5,-22.5 parent: 2 - - uid: 35950 + - uid: 36221 components: - type: Transform pos: -78.5,-21.5 parent: 2 - - uid: 35951 + - uid: 36222 components: - type: Transform pos: -78.5,-20.5 parent: 2 - - uid: 35952 + - uid: 36223 components: - type: Transform pos: -79.5,-22.5 parent: 2 - - uid: 35953 + - uid: 36224 components: - type: Transform pos: -79.5,-21.5 parent: 2 - - uid: 35954 + - uid: 36225 components: - type: Transform pos: -79.5,-20.5 parent: 2 - - uid: 35955 + - uid: 36226 components: - type: Transform pos: -79.5,-19.5 parent: 2 - - uid: 35956 + - uid: 36227 components: - type: Transform pos: -78.5,-19.5 parent: 2 - - uid: 35957 + - uid: 36228 components: - type: Transform pos: -77.5,-19.5 parent: 2 - - uid: 35958 + - uid: 36229 components: - type: Transform pos: -75.5,-19.5 parent: 2 - - uid: 35959 + - uid: 36230 components: - type: Transform pos: -74.5,-19.5 parent: 2 - - uid: 35960 + - uid: 36231 components: - type: Transform pos: -82.5,-21.5 parent: 2 - - uid: 35961 + - uid: 36232 components: - type: Transform pos: -82.5,-20.5 parent: 2 - - uid: 35962 + - uid: 36233 components: - type: Transform pos: -82.5,-19.5 parent: 2 - - uid: 35963 + - uid: 36234 components: - type: Transform pos: -82.5,-18.5 parent: 2 - - uid: 35964 + - uid: 36235 components: - type: Transform pos: -81.5,-21.5 parent: 2 - - uid: 35965 + - uid: 36236 components: - type: Transform pos: -80.5,-21.5 parent: 2 - - uid: 35966 + - uid: 36237 components: - type: Transform pos: -80.5,-20.5 parent: 2 - - uid: 35967 + - uid: 36238 components: - type: Transform pos: -79.5,-18.5 parent: 2 - - uid: 35968 + - uid: 36239 components: - type: Transform pos: -69.5,-21.5 parent: 2 - - uid: 35969 + - uid: 36240 components: - type: Transform pos: -68.5,-21.5 parent: 2 - - uid: 35970 + - uid: 36241 components: - type: Transform pos: -67.5,-21.5 parent: 2 - - uid: 35971 + - uid: 36242 components: - type: Transform pos: -66.5,-21.5 parent: 2 - - uid: 35972 + - uid: 36243 components: - type: Transform pos: -65.5,-21.5 parent: 2 - - uid: 35973 + - uid: 36244 components: - type: Transform pos: -71.5,-20.5 parent: 2 - - uid: 35974 + - uid: 36245 components: - type: Transform pos: -70.5,-20.5 parent: 2 - - uid: 35975 + - uid: 36246 components: - type: Transform pos: -69.5,-20.5 parent: 2 - - uid: 35976 + - uid: 36247 components: - type: Transform pos: -68.5,-20.5 parent: 2 - - uid: 35977 + - uid: 36248 components: - type: Transform pos: 79.5,15.5 parent: 2 - - uid: 35978 + - uid: 36249 components: - type: Transform pos: 79.5,14.5 parent: 2 - - uid: 35979 + - uid: 36250 components: - type: Transform pos: 83.5,14.5 parent: 2 - - uid: 35980 + - uid: 36251 components: - type: Transform pos: -30.5,-25.5 parent: 2 - - uid: 35981 + - uid: 36252 components: - type: Transform pos: -73.5,23.5 parent: 2 - - uid: 35982 + - uid: 36253 components: - type: Transform pos: 95.5,11.5 parent: 2 - - uid: 35983 + - uid: 36254 components: - type: Transform pos: -71.5,67.5 parent: 2 - - uid: 35984 + - uid: 36255 components: - type: Transform pos: -72.5,66.5 parent: 2 - - uid: 35985 + - uid: 36256 components: - type: Transform pos: -76.5,67.5 parent: 2 - - uid: 35986 + - uid: 36257 components: - type: Transform pos: 96.5,11.5 parent: 2 - - uid: 35987 + - uid: 36258 components: - type: Transform pos: 78.5,17.5 parent: 2 - - uid: 35988 + - uid: 36259 components: - type: Transform pos: 94.5,11.5 parent: 2 - - uid: 35989 + - uid: 36260 components: - type: Transform pos: -65.5,65.5 parent: 2 - - uid: 35990 + - uid: 36261 components: - type: Transform pos: 78.5,16.5 parent: 2 - - uid: 35991 + - uid: 36262 components: - type: Transform pos: 83.5,16.5 parent: 2 - - uid: 35992 + - uid: 36263 components: - type: Transform pos: -74.5,67.5 parent: 2 - - uid: 35993 + - uid: 36264 components: - type: Transform pos: 92.5,11.5 parent: 2 - - uid: 35994 + - uid: 36265 components: - type: Transform pos: -138.5,-3.5 parent: 2 - - uid: 35995 + - uid: 36266 components: - type: Transform pos: -72.5,67.5 parent: 2 - - uid: 35996 + - uid: 36267 components: - type: Transform pos: -71.5,66.5 parent: 2 - - uid: 35997 + - uid: 36268 components: - type: Transform pos: -75.5,68.5 parent: 2 - - uid: 35998 + - uid: 36269 components: - type: Transform pos: -69.5,66.5 parent: 2 - - uid: 35999 + - uid: 36270 components: - type: Transform pos: 92.5,-3.5 parent: 2 - - uid: 36000 + - uid: 36271 components: - type: Transform pos: 94.5,-2.5 parent: 2 - - uid: 36001 + - uid: 36272 components: - type: Transform pos: 93.5,9.5 parent: 2 - - uid: 36002 + - uid: 36273 components: - type: Transform pos: 93.5,11.5 parent: 2 - - uid: 36003 + - uid: 36274 components: - type: Transform pos: 93.5,7.5 parent: 2 - - uid: 36004 + - uid: 36275 components: - type: Transform pos: 93.5,8.5 parent: 2 - - uid: 36005 + - uid: 36276 components: - type: Transform pos: 100.5,11.5 parent: 2 - - uid: 36006 + - uid: 36277 components: - type: Transform pos: 92.5,8.5 parent: 2 - - uid: 36007 + - uid: 36278 components: - type: Transform pos: 98.5,11.5 parent: 2 - - uid: 36008 + - uid: 36279 components: - type: Transform pos: -91.5,53.5 parent: 2 - - uid: 36009 + - uid: 36280 components: - type: Transform pos: 93.5,10.5 parent: 2 - - uid: 36010 + - uid: 36281 components: - type: Transform pos: 93.5,5.5 parent: 2 - - uid: 36011 + - uid: 36282 components: - type: Transform pos: 93.5,6.5 parent: 2 - - uid: 36012 + - uid: 36283 components: - type: Transform pos: 93.5,4.5 parent: 2 - - uid: 36013 + - uid: 36284 components: - type: Transform pos: 99.5,11.5 parent: 2 - - uid: 36014 + - uid: 36285 components: - type: Transform pos: 94.5,-1.5 parent: 2 - - uid: 36015 + - uid: 36286 components: - type: Transform pos: -67.5,68.5 parent: 2 - - uid: 36016 + - uid: 36287 components: - type: Transform pos: 75.5,-0.5 parent: 2 - - uid: 36017 + - uid: 36288 components: - type: Transform pos: -65.5,67.5 parent: 2 - - uid: 36018 + - uid: 36289 components: - type: Transform pos: 97.5,-1.5 parent: 2 - - uid: 36019 + - uid: 36290 components: - type: Transform pos: 94.5,-3.5 parent: 2 - - uid: 36020 + - uid: 36291 components: - type: Transform pos: -65.5,66.5 parent: 2 - - uid: 36021 + - uid: 36292 components: - type: Transform pos: -68.5,67.5 parent: 2 - - uid: 36022 + - uid: 36293 components: - type: Transform pos: 96.5,9.5 parent: 2 - - uid: 36023 + - uid: 36294 components: - type: Transform pos: -71.5,28.5 parent: 2 - - uid: 36024 + - uid: 36295 components: - type: Transform pos: 100.5,10.5 parent: 2 - - uid: 36025 + - uid: 36296 components: - type: Transform pos: 77.5,-0.5 parent: 2 - - uid: 36026 + - uid: 36297 components: - type: Transform pos: -62.5,-31.5 parent: 2 - - uid: 36027 + - uid: 36298 components: - type: Transform pos: -64.5,65.5 parent: 2 - - uid: 36028 + - uid: 36299 components: - type: Transform pos: -68.5,66.5 parent: 2 - - uid: 36029 + - uid: 36300 components: - type: Transform pos: -66.5,68.5 parent: 2 - - uid: 36030 + - uid: 36301 components: - type: Transform pos: 100.5,9.5 parent: 2 - - uid: 36031 + - uid: 36302 components: - type: Transform pos: -91.5,52.5 parent: 2 - - uid: 36032 + - uid: 36303 components: - type: Transform pos: 94.5,10.5 parent: 2 - - uid: 36033 + - uid: 36304 components: - type: Transform pos: 101.5,-0.5 parent: 2 - - uid: 36034 + - uid: 36305 components: - type: Transform pos: 99.5,10.5 parent: 2 - - uid: 36035 + - uid: 36306 components: - type: Transform pos: 99.5,9.5 parent: 2 - - uid: 36036 + - uid: 36307 components: - type: Transform pos: -67.5,66.5 parent: 2 - - uid: 36037 + - uid: 36308 components: - type: Transform pos: -69.5,67.5 parent: 2 - - uid: 36038 + - uid: 36309 components: - type: Transform pos: 96.5,10.5 parent: 2 - - uid: 36039 + - uid: 36310 components: - type: Transform pos: 97.5,7.5 parent: 2 - - uid: 36040 + - uid: 36311 components: - type: Transform pos: 98.5,9.5 parent: 2 - - uid: 36041 + - uid: 36312 components: - type: Transform pos: 97.5,9.5 parent: 2 - - uid: 36042 + - uid: 36313 components: - type: Transform pos: 95.5,10.5 parent: 2 - - uid: 36043 + - uid: 36314 components: - type: Transform pos: 98.5,10.5 parent: 2 - - uid: 36044 + - uid: 36315 components: - type: Transform pos: 97.5,10.5 parent: 2 - - uid: 36045 + - uid: 36316 components: - type: Transform pos: 99.5,12.5 parent: 2 - - uid: 36046 + - uid: 36317 components: - type: Transform pos: 94.5,9.5 parent: 2 - - uid: 36047 + - uid: 36318 components: - type: Transform pos: 98.5,-1.5 parent: 2 - - uid: 36048 + - uid: 36319 components: - type: Transform pos: 99.5,13.5 parent: 2 - - uid: 36049 + - uid: 36320 components: - type: Transform pos: -76.5,66.5 parent: 2 - - uid: 36050 + - uid: 36321 components: - type: Transform pos: -17.5,65.5 parent: 2 - - uid: 36051 + - uid: 36322 components: - type: Transform pos: -18.5,65.5 parent: 2 - - uid: 36052 + - uid: 36323 components: - type: Transform pos: -143.5,-8.5 parent: 2 - - uid: 36053 + - uid: 36324 components: - type: Transform pos: -64.5,-27.5 parent: 2 - - uid: 36054 + - uid: 36325 components: - type: Transform pos: -63.5,-27.5 parent: 2 - - uid: 36055 + - uid: 36326 components: - type: Transform pos: -144.5,-7.5 parent: 2 - - uid: 36056 + - uid: 36327 components: - type: Transform pos: 80.5,11.5 parent: 2 - - uid: 36057 + - uid: 36328 components: - type: Transform pos: 81.5,12.5 parent: 2 - - uid: 36058 + - uid: 36329 components: - type: Transform pos: 97.5,8.5 parent: 2 - - uid: 36059 + - uid: 36330 components: - type: Transform pos: -63.5,-28.5 parent: 2 - - uid: 36060 + - uid: 36331 components: - type: Transform pos: -75.5,67.5 parent: 2 - - uid: 36061 + - uid: 36332 components: - type: Transform pos: -73.5,66.5 parent: 2 - - uid: 36062 + - uid: 36333 components: - type: Transform pos: 106.5,11.5 parent: 2 - - uid: 36063 + - uid: 36334 components: - type: Transform pos: 106.5,10.5 parent: 2 - - uid: 36064 + - uid: 36335 components: - type: Transform pos: 107.5,-5.5 parent: 2 - - uid: 36065 + - uid: 36336 components: - type: Transform pos: 84.5,12.5 parent: 2 - - uid: 36066 + - uid: 36337 components: - type: Transform pos: 85.5,12.5 parent: 2 - - uid: 36067 + - uid: 36338 components: - type: Transform pos: 86.5,12.5 parent: 2 - - uid: 36068 + - uid: 36339 components: - type: Transform pos: 83.5,12.5 parent: 2 - - uid: 36069 + - uid: 36340 components: - type: Transform pos: 83.5,11.5 parent: 2 - - uid: 36070 + - uid: 36341 components: - type: Transform pos: 81.5,24.5 parent: 2 - - uid: 36071 + - uid: 36342 components: - type: Transform pos: 80.5,25.5 parent: 2 - - uid: 36072 + - uid: 36343 components: - type: Transform pos: 79.5,24.5 parent: 2 - - uid: 36073 + - uid: 36344 components: - type: Transform pos: 81.5,22.5 parent: 2 - - uid: 36074 + - uid: 36345 components: - type: Transform pos: 81.5,21.5 parent: 2 - - uid: 36075 + - uid: 36346 components: - type: Transform pos: 98.5,13.5 parent: 2 - - uid: 36076 + - uid: 36347 components: - type: Transform pos: 98.5,12.5 parent: 2 - - uid: 36077 + - uid: 36348 components: - type: Transform pos: -91.5,54.5 parent: 2 - - uid: 36078 + - uid: 36349 components: - type: Transform pos: -121.5,-17.5 parent: 2 - - uid: 36079 + - uid: 36350 components: - type: Transform pos: -119.5,-15.5 parent: 2 - - uid: 36080 + - uid: 36351 components: - type: Transform pos: -117.5,-15.5 parent: 2 - - uid: 36081 + - uid: 36352 components: - type: Transform pos: -115.5,-15.5 parent: 2 - - uid: 36082 + - uid: 36353 components: - type: Transform pos: -114.5,-15.5 parent: 2 - - uid: 36083 + - uid: 36354 components: - type: Transform pos: -113.5,-15.5 parent: 2 - - uid: 36084 + - uid: 36355 components: - type: Transform pos: -112.5,-15.5 parent: 2 - - uid: 36085 + - uid: 36356 components: - type: Transform pos: -110.5,-15.5 parent: 2 - - uid: 36086 + - uid: 36357 components: - type: Transform pos: -109.5,-16.5 parent: 2 - - uid: 36087 + - uid: 36358 components: - type: Transform pos: -108.5,-16.5 parent: 2 - - uid: 36088 + - uid: 36359 components: - type: Transform pos: -106.5,-14.5 parent: 2 - - uid: 36089 + - uid: 36360 components: - type: Transform pos: -105.5,-14.5 parent: 2 - - uid: 36090 + - uid: 36361 components: - type: Transform pos: -104.5,-14.5 parent: 2 - - uid: 36091 + - uid: 36362 components: - type: Transform pos: -78.5,68.5 parent: 2 - - uid: 36092 + - uid: 36363 components: - type: Transform pos: -18.5,62.5 parent: 2 - - uid: 36093 + - uid: 36364 components: - type: Transform pos: 83.5,17.5 parent: 2 - - uid: 36094 + - uid: 36365 components: - type: Transform pos: 83.5,15.5 parent: 2 - - uid: 36095 + - uid: 36366 components: - type: Transform pos: 83.5,18.5 parent: 2 - - uid: 36096 + - uid: 36367 components: - type: Transform pos: 86.5,10.5 parent: 2 - - uid: 36097 + - uid: 36368 components: - type: Transform pos: -90.5,32.5 parent: 2 - - uid: 36098 + - uid: 36369 components: - type: Transform pos: -84.5,29.5 parent: 2 - - uid: 36099 + - uid: 36370 components: - type: Transform pos: -60.5,-28.5 parent: 2 - - uid: 36100 + - uid: 36371 components: - type: Transform pos: -63.5,-30.5 parent: 2 - - uid: 36101 + - uid: 36372 components: - type: Transform pos: -63.5,-29.5 parent: 2 - - uid: 36102 + - uid: 36373 components: - type: Transform pos: -64.5,-28.5 parent: 2 - - uid: 36103 + - uid: 36374 components: - type: Transform pos: -65.5,-27.5 parent: 2 - - uid: 36104 + - uid: 36375 components: - type: Transform pos: -63.5,-32.5 parent: 2 - - uid: 36105 + - uid: 36376 components: - type: Transform pos: -63.5,-31.5 parent: 2 - - uid: 36106 + - uid: 36377 components: - type: Transform pos: -64.5,-29.5 parent: 2 - - uid: 36107 + - uid: 36378 components: - type: Transform pos: -63.5,58.5 parent: 2 - - uid: 36108 + - uid: 36379 components: - type: Transform pos: -63.5,57.5 parent: 2 - - uid: 36109 + - uid: 36380 components: - type: Transform pos: -62.5,63.5 parent: 2 - - uid: 36110 + - uid: 36381 components: - type: Transform pos: -62.5,62.5 parent: 2 - - uid: 36111 + - uid: 36382 components: - type: Transform pos: -62.5,61.5 parent: 2 - - uid: 36112 + - uid: 36383 components: - type: Transform pos: -62.5,60.5 parent: 2 - - uid: 36113 + - uid: 36384 components: - type: Transform pos: -62.5,59.5 parent: 2 - - uid: 36114 + - uid: 36385 components: - type: Transform pos: -62.5,58.5 parent: 2 - - uid: 36115 + - uid: 36386 components: - type: Transform pos: -62.5,57.5 parent: 2 - - uid: 36116 + - uid: 36387 components: - type: Transform pos: -65.5,59.5 parent: 2 - - uid: 36117 + - uid: 36388 components: - type: Transform pos: -65.5,58.5 parent: 2 - - uid: 36118 + - uid: 36389 components: - type: Transform pos: -65.5,57.5 parent: 2 - - uid: 36119 + - uid: 36390 components: - type: Transform pos: -114.5,38.5 parent: 2 - - uid: 36120 + - uid: 36391 components: - type: Transform pos: -124.5,-20.5 parent: 2 - - uid: 36121 + - uid: 36392 components: - type: Transform pos: -120.5,-20.5 parent: 2 - - uid: 36122 + - uid: 36393 components: - type: Transform pos: -128.5,-19.5 parent: 2 - - uid: 36123 + - uid: 36394 components: - type: Transform pos: -125.5,-20.5 parent: 2 - - uid: 36124 + - uid: 36395 components: - type: Transform pos: 98.5,-35.5 parent: 2 - - uid: 36125 + - uid: 36396 components: - type: Transform pos: 88.5,-39.5 parent: 2 - - uid: 36126 + - uid: 36397 components: - type: Transform pos: 99.5,-36.5 parent: 2 - - uid: 36127 + - uid: 36398 components: - type: Transform pos: 99.5,-35.5 parent: 2 - - uid: 36128 + - uid: 36399 components: - type: Transform pos: 99.5,-34.5 parent: 2 - - uid: 36129 + - uid: 36400 components: - type: Transform pos: 99.5,-33.5 parent: 2 - - uid: 36130 + - uid: 36401 components: - type: Transform pos: 99.5,-32.5 parent: 2 - - uid: 36131 + - uid: 36402 components: - type: Transform pos: 99.5,-31.5 parent: 2 - - uid: 36132 + - uid: 36403 components: - type: Transform pos: 98.5,-36.5 parent: 2 - - uid: 36133 + - uid: 36404 components: - type: Transform pos: 100.5,-31.5 parent: 2 - - uid: 36134 + - uid: 36405 components: - type: Transform pos: 100.5,-32.5 parent: 2 - - uid: 36135 + - uid: 36406 components: - type: Transform pos: -83.5,-17.5 parent: 2 - - uid: 36136 + - uid: 36407 components: - type: Transform pos: 86.5,-39.5 parent: 2 - - uid: 36137 + - uid: 36408 components: - type: Transform pos: 87.5,-39.5 parent: 2 - - uid: 36138 + - uid: 36409 components: - type: Transform pos: 87.5,-38.5 parent: 2 - - uid: 36139 + - uid: 36410 components: - type: Transform pos: 87.5,-37.5 parent: 2 - - uid: 36140 + - uid: 36411 components: - type: Transform pos: 86.5,-36.5 parent: 2 - - uid: 36141 + - uid: 36412 components: - type: Transform pos: 86.5,-35.5 parent: 2 - - uid: 36142 + - uid: 36413 components: - type: Transform pos: 86.5,-34.5 parent: 2 - - uid: 36143 + - uid: 36414 components: - type: Transform pos: 87.5,-33.5 parent: 2 - - uid: 36144 + - uid: 36415 components: - type: Transform pos: 87.5,-32.5 parent: 2 - - uid: 36145 + - uid: 36416 components: - type: Transform pos: 88.5,-32.5 parent: 2 - - uid: 36146 + - uid: 36417 components: - type: Transform pos: 87.5,-34.5 parent: 2 - - uid: 36147 + - uid: 36418 components: - type: Transform pos: 86.5,-37.5 parent: 2 - - uid: 36148 + - uid: 36419 components: - type: Transform pos: 86.5,-32.5 parent: 2 - - uid: 36149 + - uid: 36420 components: - type: Transform pos: -102.5,34.5 parent: 2 - - uid: 36150 + - uid: 36421 components: - type: Transform pos: -90.5,52.5 parent: 2 - - uid: 36151 + - uid: 36422 components: - type: Transform pos: -90.5,53.5 parent: 2 - - uid: 36152 + - uid: 36423 components: - type: Transform pos: -79.5,69.5 parent: 2 - - uid: 36153 + - uid: 36424 components: - type: Transform pos: -87.5,53.5 parent: 2 - - uid: 36154 + - uid: 36425 components: - type: Transform pos: -79.5,65.5 parent: 2 - - uid: 36155 + - uid: 36426 components: - type: Transform pos: -77.5,66.5 parent: 2 - - uid: 36156 - components: - - type: Transform - pos: -81.5,64.5 - parent: 2 - - uid: 36157 - components: - - type: Transform - pos: -80.5,64.5 - parent: 2 - - uid: 36158 + - uid: 36427 components: - type: Transform pos: -80.5,68.5 parent: 2 - - uid: 36159 + - uid: 36428 components: - type: Transform pos: -79.5,66.5 parent: 2 - - uid: 36160 + - uid: 36429 components: - type: Transform pos: -77.5,65.5 parent: 2 - - uid: 36161 + - uid: 36430 components: - type: Transform pos: -80.5,66.5 parent: 2 - - uid: 36162 + - uid: 36431 components: - type: Transform pos: -79.5,70.5 parent: 2 - - uid: 36163 + - uid: 36432 components: - type: Transform pos: -79.5,64.5 parent: 2 - - uid: 36164 + - uid: 36433 components: - type: Transform pos: -121.5,34.5 parent: 2 - - uid: 36165 + - uid: 36434 components: - type: Transform pos: -117.5,38.5 parent: 2 - - uid: 36166 + - uid: 36435 components: - type: Transform pos: -117.5,39.5 parent: 2 - - uid: 36167 + - uid: 36436 components: - type: Transform pos: -116.5,39.5 parent: 2 - - uid: 36168 + - uid: 36437 components: - type: Transform pos: -115.5,39.5 parent: 2 - - uid: 36169 + - uid: 36438 components: - type: Transform pos: -114.5,39.5 parent: 2 - - uid: 36170 + - uid: 36439 components: - type: Transform pos: -113.5,39.5 parent: 2 - - uid: 36171 + - uid: 36440 components: - type: Transform pos: -112.5,39.5 parent: 2 - - uid: 36172 + - uid: 36441 components: - type: Transform pos: -111.5,39.5 parent: 2 - - uid: 36173 - components: - - type: Transform - pos: -110.5,39.5 - parent: 2 - - uid: 36174 + - uid: 36442 components: - type: Transform pos: -107.5,39.5 parent: 2 - - uid: 36175 + - uid: 36443 components: - type: Transform pos: -106.5,39.5 parent: 2 - - uid: 36176 + - uid: 36444 components: - type: Transform pos: -105.5,39.5 parent: 2 - - uid: 36177 + - uid: 36445 components: - type: Transform pos: -37.5,-21.5 parent: 2 - - uid: 36178 + - uid: 36446 components: - type: Transform pos: -36.5,-21.5 parent: 2 - - uid: 36179 + - uid: 36447 components: - type: Transform pos: -38.5,-24.5 parent: 2 - - uid: 36180 + - uid: 36448 components: - type: Transform pos: -38.5,-21.5 parent: 2 - - uid: 36181 + - uid: 36449 components: - type: Transform pos: -35.5,-21.5 parent: 2 - - uid: 36182 + - uid: 36450 components: - type: Transform pos: 33.5,-27.5 parent: 2 - - uid: 36183 + - uid: 36451 components: - type: Transform pos: 33.5,-28.5 parent: 2 - - uid: 36184 + - uid: 36452 components: - type: Transform pos: 31.5,-28.5 parent: 2 - - uid: 36185 - components: - - type: Transform - pos: -120.5,34.5 - parent: 2 - - uid: 36186 + - uid: 36453 components: - type: Transform pos: -120.5,35.5 parent: 2 - - uid: 36187 + - uid: 36454 components: - type: Transform pos: -74.5,0.5 parent: 2 - - uid: 36188 + - uid: 36455 components: - type: Transform pos: -73.5,0.5 parent: 2 - - uid: 36189 + - uid: 36456 components: - type: Transform pos: -71.5,0.5 parent: 2 - - uid: 36190 + - uid: 36457 components: - type: Transform pos: -72.5,0.5 parent: 2 - - uid: 36191 + - uid: 36458 components: - type: Transform pos: -72.5,5.5 parent: 2 - - uid: 36192 + - uid: 36459 components: - type: Transform pos: -89.5,5.5 parent: 2 - - uid: 36193 + - uid: 36460 components: - type: Transform pos: -73.5,-6.5 parent: 2 - - uid: 36194 + - uid: 36461 components: - type: Transform pos: -73.5,-7.5 parent: 2 - - uid: 36195 + - uid: 36462 components: - type: Transform pos: -72.5,-7.5 parent: 2 - - uid: 36196 + - uid: 36463 components: - type: Transform pos: -74.5,-5.5 parent: 2 - - uid: 36197 + - uid: 36464 components: - type: Transform pos: -74.5,-4.5 parent: 2 - - uid: 36198 + - uid: 36465 components: - type: Transform pos: -29.5,-51.5 parent: 2 - - uid: 36199 + - uid: 36466 components: - type: Transform pos: -31.5,-49.5 parent: 2 - - uid: 36200 + - uid: 36467 components: - type: Transform pos: -30.5,-50.5 parent: 2 - - uid: 36201 + - uid: 36468 components: - type: Transform pos: -30.5,-51.5 parent: 2 - - uid: 36202 + - uid: 36469 components: - type: Transform pos: -31.5,-50.5 parent: 2 - - uid: 36203 + - uid: 36470 components: - type: Transform pos: 100.5,-1.5 parent: 2 - - uid: 36204 + - uid: 36471 components: - type: Transform pos: 93.5,-3.5 parent: 2 - - uid: 36205 + - uid: 36472 components: - type: Transform pos: 94.5,5.5 parent: 2 - - uid: 36206 + - uid: 36473 components: - type: Transform pos: 95.5,-1.5 parent: 2 - - uid: 36207 + - uid: 36474 components: - type: Transform pos: 94.5,7.5 parent: 2 - - uid: 36208 + - uid: 36475 components: - type: Transform pos: 98.5,8.5 parent: 2 - - uid: 36209 + - uid: 36476 components: - type: Transform pos: 94.5,6.5 parent: 2 - - uid: 36210 + - uid: 36477 components: - type: Transform pos: 92.5,-1.5 parent: 2 - - uid: 36211 + - uid: 36478 components: - type: Transform pos: 99.5,-1.5 parent: 2 - - uid: 36212 + - uid: 36479 components: - type: Transform pos: 99.5,8.5 parent: 2 - - uid: 36213 + - uid: 36480 components: - type: Transform pos: 101.5,-3.5 parent: 2 - - uid: 36214 + - uid: 36481 components: - type: Transform pos: 101.5,-1.5 parent: 2 - - uid: 36215 + - uid: 36482 components: - type: Transform pos: 100.5,8.5 parent: 2 - - uid: 36216 + - uid: 36483 components: - type: Transform pos: 100.5,-3.5 parent: 2 - - uid: 36217 + - uid: 36484 components: - type: Transform pos: 100.5,-2.5 parent: 2 - - uid: 36218 + - uid: 36485 components: - type: Transform pos: 101.5,-2.5 parent: 2 - - uid: 36219 + - uid: 36486 components: - type: Transform pos: -73.5,-5.5 parent: 2 - - uid: 36220 + - uid: 36487 components: - type: Transform pos: -81.5,70.5 parent: 2 - - uid: 36221 + - uid: 36488 components: - type: Transform pos: -82.5,65.5 parent: 2 - - uid: 36222 + - uid: 36489 components: - type: Transform - pos: -107.5,40.5 + pos: -30.5,70.5 parent: 2 - - uid: 36223 + - uid: 36490 components: - type: Transform - pos: -107.5,41.5 + pos: -30.5,71.5 parent: 2 - - uid: 36224 + - uid: 36491 components: - type: Transform - pos: -107.5,42.5 + pos: -32.5,68.5 parent: 2 - - uid: 36225 + - uid: 36492 components: - type: Transform - pos: -107.5,43.5 + pos: -103.5,39.5 parent: 2 - - uid: 36226 + - uid: 36493 components: - type: Transform - pos: -108.5,45.5 + pos: -31.5,68.5 parent: 2 - - uid: 36227 + - uid: 36494 components: - type: Transform - pos: -108.5,46.5 + pos: -102.5,41.5 parent: 2 - - uid: 36228 + - uid: 36495 components: - type: Transform - pos: -108.5,47.5 + pos: -102.5,40.5 parent: 2 - - uid: 36229 + - uid: 36496 components: - type: Transform - pos: -107.5,44.5 + pos: -102.5,39.5 parent: 2 - - uid: 36230 + - uid: 36497 components: - type: Transform - pos: -107.5,45.5 + pos: -40.5,72.5 parent: 2 - - uid: 36231 + - uid: 36498 components: - type: Transform - pos: -107.5,46.5 + pos: -102.5,47.5 parent: 2 - - uid: 36232 + - uid: 36499 components: - type: Transform - pos: -107.5,47.5 + pos: -100.5,47.5 parent: 2 - - uid: 36233 + - uid: 36500 components: - type: Transform - pos: -106.5,42.5 + pos: -101.5,48.5 parent: 2 - - uid: 36234 + - uid: 36501 components: - type: Transform - pos: -106.5,41.5 + pos: -101.5,49.5 parent: 2 - - uid: 36235 + - uid: 36502 components: - type: Transform - pos: -106.5,40.5 + pos: -104.5,55.5 parent: 2 - - uid: 36236 + - uid: 36503 components: - type: Transform - pos: -105.5,42.5 + pos: -103.5,55.5 parent: 2 - - uid: 36237 + - uid: 36504 components: - type: Transform - pos: -104.5,42.5 + pos: -100.5,55.5 parent: 2 - - uid: 36238 + - uid: 36505 components: - type: Transform - pos: -103.5,42.5 + pos: -100.5,57.5 parent: 2 - - uid: 36239 + - uid: 36506 components: - type: Transform - pos: -103.5,41.5 + pos: -99.5,56.5 parent: 2 - - uid: 36240 + - uid: 36507 components: - type: Transform - pos: -103.5,40.5 + pos: -99.5,57.5 parent: 2 - - uid: 36241 + - uid: 36508 components: - type: Transform - pos: -103.5,39.5 + pos: -98.5,56.5 parent: 2 - - uid: 36242 + - uid: 36509 components: - type: Transform - pos: -102.5,42.5 + pos: -98.5,57.5 parent: 2 - - uid: 36243 + - uid: 36510 components: - type: Transform - pos: -102.5,41.5 + pos: -97.5,57.5 parent: 2 - - uid: 36244 + - uid: 36511 components: - type: Transform - pos: -102.5,40.5 + pos: -94.5,56.5 parent: 2 - - uid: 36245 + - uid: 36512 components: - type: Transform - pos: -102.5,39.5 + pos: -94.5,57.5 parent: 2 - - uid: 36246 + - uid: 36513 components: - type: Transform - pos: -101.5,42.5 + pos: -93.5,56.5 parent: 2 - - uid: 36247 + - uid: 36514 components: - type: Transform - pos: -107.5,48.5 + pos: -97.5,58.5 parent: 2 - - uid: 36248 + - uid: 36515 components: - type: Transform - pos: -107.5,49.5 + pos: -96.5,58.5 parent: 2 - - uid: 36249 + - uid: 36516 components: - type: Transform - pos: -107.5,50.5 + pos: -96.5,59.5 parent: 2 - - uid: 36250 + - uid: 36517 components: - type: Transform - pos: -106.5,49.5 + pos: -95.5,58.5 parent: 2 - - uid: 36251 + - uid: 36518 components: - type: Transform - pos: -106.5,50.5 + pos: -95.5,59.5 parent: 2 - - uid: 36252 + - uid: 36519 components: - type: Transform - pos: -106.5,51.5 + pos: -94.5,58.5 parent: 2 - - uid: 36253 + - uid: 36520 components: - type: Transform - pos: -106.5,52.5 + pos: -31.5,72.5 parent: 2 - - uid: 36254 + - uid: 36521 components: - type: Transform - pos: -105.5,50.5 + pos: -36.5,62.5 parent: 2 - - uid: 36255 + - uid: 36522 components: - type: Transform - pos: -105.5,51.5 + pos: -94.5,43.5 parent: 2 - - uid: 36256 + - uid: 36523 components: - type: Transform - pos: -105.5,52.5 + pos: -103.5,54.5 parent: 2 - - uid: 36257 + - uid: 36524 components: - type: Transform - pos: -105.5,53.5 + pos: -102.5,54.5 parent: 2 - - uid: 36258 + - uid: 36525 components: - type: Transform - pos: -105.5,54.5 + pos: -99.5,55.5 parent: 2 - - uid: 36259 + - uid: 36526 components: - type: Transform - pos: -104.5,52.5 + pos: -98.5,55.5 parent: 2 - - uid: 36260 + - uid: 36527 components: - type: Transform - pos: -104.5,53.5 + pos: -98.5,54.5 parent: 2 - - uid: 36261 + - uid: 36528 components: - type: Transform - pos: -104.5,54.5 + pos: -97.5,55.5 parent: 2 - - uid: 36262 + - uid: 36529 components: - type: Transform - pos: -104.5,55.5 + pos: -97.5,54.5 parent: 2 - - uid: 36263 + - uid: 36530 components: - type: Transform - pos: -103.5,55.5 + pos: -96.5,54.5 parent: 2 - - uid: 36264 + - uid: 36531 components: - type: Transform - pos: -101.5,55.5 + pos: -95.5,55.5 parent: 2 - - uid: 36265 + - uid: 36532 components: - type: Transform - pos: -100.5,55.5 + pos: -94.5,55.5 parent: 2 - - uid: 36266 + - uid: 36533 components: - type: Transform - pos: -100.5,57.5 + pos: -99.5,47.5 parent: 2 - - uid: 36267 + - uid: 36534 components: - type: Transform - pos: -99.5,56.5 + pos: -93.5,49.5 parent: 2 - - uid: 36268 + - uid: 36535 components: - type: Transform - pos: -99.5,57.5 + pos: -93.5,46.5 parent: 2 - - uid: 36269 + - uid: 36536 components: - type: Transform - pos: -98.5,56.5 + pos: -94.5,49.5 parent: 2 - - uid: 36270 + - uid: 36537 components: - type: Transform - pos: -98.5,57.5 + pos: -94.5,48.5 parent: 2 - - uid: 36271 + - uid: 36538 components: - type: Transform - pos: -97.5,57.5 + pos: -94.5,47.5 parent: 2 - - uid: 36272 + - uid: 36539 components: - type: Transform - pos: -94.5,56.5 + pos: -94.5,44.5 parent: 2 - - uid: 36273 + - uid: 36540 components: - type: Transform - pos: -94.5,57.5 + pos: -102.5,53.5 parent: 2 - - uid: 36274 + - uid: 36541 components: - type: Transform - pos: -93.5,56.5 + pos: -103.5,53.5 parent: 2 - - uid: 36275 + - uid: 36542 components: - type: Transform - pos: -97.5,58.5 + pos: -103.5,52.5 parent: 2 - - uid: 36276 + - uid: 36543 components: - type: Transform - pos: -96.5,58.5 + pos: -102.5,52.5 parent: 2 - - uid: 36277 + - uid: 36544 components: - type: Transform - pos: -96.5,59.5 + pos: -101.5,47.5 parent: 2 - - uid: 36278 + - uid: 36545 components: - type: Transform - pos: -95.5,58.5 + pos: -95.5,44.5 parent: 2 - - uid: 36279 + - uid: 36546 components: - type: Transform - pos: -95.5,59.5 + pos: -88.5,51.5 parent: 2 - - uid: 36280 + - uid: 36547 components: - type: Transform - pos: -94.5,58.5 + pos: -87.5,51.5 parent: 2 - - uid: 36281 + - uid: 36548 components: - type: Transform - pos: -106.5,45.5 + pos: -93.5,50.5 parent: 2 - - uid: 36282 + - uid: 36549 components: - type: Transform - pos: -106.5,44.5 + pos: -77.5,68.5 parent: 2 - - uid: 36283 + - uid: 36550 components: - type: Transform - pos: -106.5,43.5 + pos: -86.5,53.5 parent: 2 - - uid: 36284 + - uid: 36551 components: - type: Transform - pos: -105.5,43.5 + pos: -81.5,66.5 parent: 2 - - uid: 36285 + - uid: 36552 components: - type: Transform - pos: -104.5,43.5 + pos: -73.5,9.5 parent: 2 - - uid: 36286 + - uid: 36553 components: - type: Transform - pos: -102.5,43.5 + pos: -72.5,8.5 parent: 2 - - uid: 36287 + - uid: 36554 components: - type: Transform - pos: -95.5,43.5 + pos: -73.5,8.5 parent: 2 - - uid: 36288 + - uid: 36555 components: - type: Transform - pos: -94.5,43.5 + pos: -72.5,9.5 parent: 2 - - uid: 36289 + - uid: 36556 components: - type: Transform - pos: -103.5,54.5 + pos: -71.5,9.5 parent: 2 - - uid: 36290 + - uid: 36557 components: - type: Transform - pos: -102.5,54.5 + pos: -72.5,10.5 parent: 2 - - uid: 36291 + - uid: 36558 components: - type: Transform - pos: -101.5,54.5 + pos: -71.5,10.5 parent: 2 - - uid: 36292 + - uid: 36559 components: - type: Transform - pos: -100.5,54.5 + pos: -74.5,9.5 parent: 2 - - uid: 36293 + - uid: 36560 components: - type: Transform - pos: -99.5,55.5 + pos: -70.5,7.5 parent: 2 - - uid: 36294 + - uid: 36561 components: - type: Transform - pos: -99.5,54.5 + pos: -71.5,7.5 parent: 2 - - uid: 36295 + - uid: 36562 components: - type: Transform - pos: -98.5,55.5 + pos: 101.5,8.5 parent: 2 - - uid: 36296 + - uid: 36563 components: - type: Transform - pos: -98.5,54.5 + pos: 111.5,6.5 parent: 2 - - uid: 36297 + - uid: 36564 components: - type: Transform - pos: -97.5,55.5 + pos: 111.5,7.5 parent: 2 - - uid: 36298 + - uid: 36565 components: - type: Transform - pos: -97.5,54.5 + pos: 111.5,8.5 parent: 2 - - uid: 36299 + - uid: 36566 components: - type: Transform - pos: -96.5,54.5 + pos: 111.5,9.5 parent: 2 - - uid: 36300 + - uid: 36567 components: - type: Transform - pos: -95.5,55.5 + pos: 112.5,8.5 parent: 2 - - uid: 36301 + - uid: 36568 components: - type: Transform - pos: -94.5,55.5 + pos: 112.5,7.5 parent: 2 - - uid: 36302 + - uid: 36569 components: - type: Transform - pos: -93.5,55.5 + pos: 112.5,6.5 parent: 2 - - uid: 36303 + - uid: 36570 components: - type: Transform - pos: -93.5,54.5 + pos: 112.5,5.5 parent: 2 - - uid: 36304 + - uid: 36571 components: - type: Transform - pos: -105.5,49.5 + pos: 97.5,12.5 parent: 2 - - uid: 36305 + - uid: 36572 components: - type: Transform - pos: -105.5,48.5 + pos: 94.5,13.5 parent: 2 - - uid: 36306 + - uid: 36573 components: - type: Transform - pos: -105.5,45.5 + pos: 95.5,13.5 parent: 2 - - uid: 36307 + - uid: 36574 components: - type: Transform - pos: -105.5,44.5 + pos: 96.5,13.5 parent: 2 - - uid: 36308 + - uid: 36575 components: - type: Transform - pos: -93.5,52.5 + pos: 97.5,13.5 parent: 2 - - uid: 36309 + - uid: 36576 components: - type: Transform - pos: -93.5,49.5 + pos: 100.5,12.5 parent: 2 - - uid: 36310 + - uid: 36577 components: - type: Transform - pos: -93.5,48.5 + pos: 104.5,12.5 parent: 2 - - uid: 36311 + - uid: 36578 components: - type: Transform - pos: -93.5,47.5 + pos: 105.5,12.5 parent: 2 - - uid: 36312 + - uid: 36579 components: - type: Transform - pos: -93.5,46.5 + pos: 54.5,44.5 parent: 2 - - uid: 36313 + - uid: 36580 components: - type: Transform - pos: -94.5,49.5 + pos: 53.5,42.5 parent: 2 - - uid: 36314 + - uid: 36581 components: - type: Transform - pos: -94.5,48.5 + pos: 54.5,41.5 parent: 2 - - uid: 36315 + - uid: 36582 components: - type: Transform - pos: -94.5,47.5 + pos: 55.5,41.5 parent: 2 - - uid: 36316 + - uid: 36583 components: - type: Transform - pos: -94.5,46.5 + pos: 59.5,42.5 parent: 2 - - uid: 36317 + - uid: 36584 components: - type: Transform - pos: -94.5,45.5 + pos: 59.5,41.5 parent: 2 - - uid: 36318 + - uid: 36585 components: - type: Transform - pos: -94.5,44.5 + pos: 58.5,41.5 parent: 2 - - uid: 36319 + - uid: 36586 components: - type: Transform - pos: -102.5,53.5 + pos: -9.5,66.5 parent: 2 - - uid: 36320 + - uid: 36587 components: - type: Transform - pos: -103.5,53.5 + pos: -11.5,64.5 parent: 2 - - uid: 36321 + - uid: 36588 components: - type: Transform - pos: -103.5,52.5 + pos: -43.5,71.5 parent: 2 - - uid: 36322 + - uid: 36589 components: - type: Transform - pos: -102.5,52.5 + pos: -42.5,72.5 parent: 2 - - uid: 36323 + - uid: 36590 components: - type: Transform - pos: -104.5,51.5 + pos: -43.5,73.5 parent: 2 - - uid: 36324 + - uid: 36591 components: - type: Transform - pos: -103.5,51.5 + pos: -44.5,74.5 parent: 2 - - uid: 36325 + - uid: 36592 components: - type: Transform - pos: -104.5,50.5 + pos: -43.5,74.5 parent: 2 - - uid: 36326 + - uid: 36593 components: - type: Transform - pos: -101.5,52.5 + pos: -43.5,75.5 parent: 2 - - uid: 36327 + - uid: 36594 components: - type: Transform - pos: -95.5,44.5 + pos: -44.5,73.5 parent: 2 - - uid: 36328 + - uid: 36595 components: - type: Transform - pos: -88.5,51.5 + pos: -84.5,67.5 parent: 2 - - uid: 36329 + - uid: 36596 components: - type: Transform - pos: -87.5,51.5 + pos: -84.5,60.5 parent: 2 - - uid: 36330 + - uid: 36597 components: - type: Transform - pos: -93.5,50.5 + pos: -81.5,71.5 parent: 2 - - uid: 36331 + - uid: 36598 components: - type: Transform - pos: -77.5,68.5 + pos: -121.5,33.5 parent: 2 - - uid: 36332 + - uid: 36599 components: - type: Transform - pos: -86.5,53.5 + pos: -80.5,71.5 parent: 2 - - uid: 36333 + - uid: 36600 components: - type: Transform - pos: -81.5,66.5 + pos: -79.5,71.5 parent: 2 - - uid: 36334 + - uid: 36601 components: - type: Transform - pos: -80.5,63.5 + pos: -78.5,71.5 parent: 2 - - uid: 36335 + - uid: 36602 components: - type: Transform - pos: -75.5,10.5 + pos: -79.5,72.5 parent: 2 - - uid: 36336 + - uid: 36603 components: - type: Transform - pos: -73.5,9.5 + pos: -80.5,72.5 parent: 2 - - uid: 36337 + - uid: 36604 components: - type: Transform - pos: -72.5,8.5 + pos: -76.5,68.5 parent: 2 - - uid: 36338 + - uid: 36605 components: - type: Transform - pos: -74.5,10.5 + pos: -78.5,70.5 parent: 2 - - uid: 36339 + - uid: 36606 components: - type: Transform - pos: -73.5,8.5 + pos: -121.5,35.5 parent: 2 - - uid: 36340 + - uid: 36607 components: - type: Transform - pos: -72.5,9.5 + pos: -120.5,36.5 parent: 2 - - uid: 36341 + - uid: 36608 components: - type: Transform - pos: -73.5,10.5 + pos: -119.5,37.5 parent: 2 - - uid: 36342 + - uid: 36609 components: - type: Transform - pos: -71.5,9.5 + pos: -118.5,38.5 parent: 2 - - uid: 36343 + - uid: 36610 components: - type: Transform - pos: -72.5,10.5 + pos: -118.5,39.5 parent: 2 - - uid: 36344 + - uid: 36611 components: - type: Transform - pos: -71.5,10.5 + pos: -15.5,73.5 parent: 2 - - uid: 36345 + - uid: 36612 components: - type: Transform - pos: -74.5,9.5 + pos: -15.5,74.5 parent: 2 - - uid: 36346 + - uid: 36613 components: - type: Transform - pos: -70.5,7.5 + pos: -14.5,74.5 parent: 2 - - uid: 36347 + - uid: 36614 components: - type: Transform - pos: -71.5,7.5 + pos: -13.5,75.5 parent: 2 - - uid: 36348 + - uid: 36615 components: - type: Transform - pos: 101.5,8.5 + pos: -13.5,76.5 parent: 2 - - uid: 36349 + - uid: 36616 components: - type: Transform - pos: 111.5,6.5 + pos: -14.5,76.5 parent: 2 - - uid: 36350 + - uid: 36617 components: - type: Transform - pos: 111.5,7.5 + pos: -14.5,75.5 parent: 2 - - uid: 36351 + - uid: 36618 components: - type: Transform - pos: 111.5,8.5 + pos: -12.5,77.5 parent: 2 - - uid: 36352 + - uid: 36619 components: - type: Transform - pos: 111.5,9.5 + pos: -13.5,77.5 parent: 2 - - uid: 36353 + - uid: 36620 components: - type: Transform - pos: 112.5,8.5 + pos: -11.5,77.5 parent: 2 - - uid: 36354 + - uid: 36621 components: - type: Transform - pos: 112.5,7.5 + pos: -9.5,78.5 parent: 2 - - uid: 36355 + - uid: 36622 components: - type: Transform - pos: 112.5,6.5 + pos: -10.5,78.5 parent: 2 - - uid: 36356 + - uid: 36623 components: - type: Transform - pos: 112.5,5.5 + pos: -9.5,77.5 parent: 2 - - uid: 36357 + - uid: 36624 components: - type: Transform - pos: 97.5,12.5 + pos: -10.5,77.5 parent: 2 - - uid: 36358 + - uid: 36625 components: - type: Transform - pos: 94.5,13.5 + pos: -8.5,78.5 parent: 2 - - uid: 36359 + - uid: 36626 components: - type: Transform - pos: 95.5,13.5 + pos: -7.5,77.5 parent: 2 - - uid: 36360 + - uid: 36627 components: - type: Transform - pos: 96.5,13.5 + pos: -6.5,77.5 parent: 2 - - uid: 36361 + - uid: 36628 components: - type: Transform - pos: 97.5,13.5 + pos: -8.5,77.5 parent: 2 - - uid: 36362 + - uid: 36629 components: - type: Transform - pos: 100.5,12.5 + pos: -5.5,77.5 parent: 2 - - uid: 36363 + - uid: 36630 components: - type: Transform - pos: 104.5,12.5 + pos: -4.5,75.5 parent: 2 - - uid: 36364 + - uid: 36631 components: - type: Transform - pos: 105.5,12.5 + pos: -4.5,74.5 parent: 2 - - uid: 36365 + - uid: 36632 components: - type: Transform - pos: 54.5,44.5 + pos: -4.5,76.5 parent: 2 - - uid: 36366 + - uid: 36633 components: - type: Transform - pos: 53.5,42.5 + pos: -3.5,74.5 parent: 2 - - uid: 36367 + - uid: 36634 components: - type: Transform - pos: 54.5,41.5 + pos: -3.5,73.5 parent: 2 - - uid: 36368 + - uid: 36635 components: - type: Transform - pos: 55.5,41.5 + pos: -2.5,72.5 parent: 2 - - uid: 36369 + - uid: 36636 components: - type: Transform - pos: 59.5,42.5 + pos: -1.5,71.5 parent: 2 - - uid: 36370 + - uid: 36637 components: - type: Transform - pos: 59.5,41.5 + pos: -1.5,72.5 parent: 2 - - uid: 36371 + - uid: 36638 components: - type: Transform - pos: 58.5,41.5 + pos: -0.5,70.5 parent: 2 - - uid: 36372 + - uid: 36639 components: - type: Transform - pos: -9.5,66.5 + pos: 0.5,70.5 parent: 2 - - uid: 36373 + - uid: 36640 components: - type: Transform - pos: -11.5,64.5 + pos: 1.5,70.5 parent: 2 - - uid: 36374 + - uid: 36641 components: - type: Transform - pos: -43.5,71.5 + pos: 2.5,70.5 parent: 2 - - uid: 36375 + - uid: 36642 components: - type: Transform - pos: -43.5,72.5 + pos: 6.5,70.5 parent: 2 - - uid: 36376 + - uid: 36643 components: - type: Transform - pos: -42.5,71.5 + pos: 6.5,69.5 parent: 2 - - uid: 36377 + - uid: 36644 components: - type: Transform - pos: -42.5,70.5 + pos: 7.5,69.5 parent: 2 - - uid: 36378 + - uid: 36645 components: - type: Transform - pos: -41.5,69.5 + pos: 7.5,70.5 parent: 2 - - uid: 36379 + - uid: 36646 components: - type: Transform - pos: -41.5,68.5 + pos: 6.5,71.5 parent: 2 - - uid: 36380 + - uid: 36647 components: - type: Transform - pos: -40.5,68.5 + pos: 7.5,71.5 parent: 2 - - uid: 36381 + - uid: 36648 components: - type: Transform - pos: -39.5,67.5 + pos: 35.5,63.5 parent: 2 - - uid: 36382 + - uid: 36649 components: - type: Transform - pos: -42.5,72.5 + pos: 34.5,60.5 parent: 2 - - uid: 36383 + - uid: 36650 components: - type: Transform - pos: -42.5,73.5 + pos: -47.5,42.5 parent: 2 - - uid: 36384 + - uid: 36651 components: - type: Transform - pos: -43.5,73.5 + pos: -29.5,-24.5 parent: 2 - - uid: 36385 + - uid: 36652 components: - type: Transform - pos: -41.5,73.5 + pos: -26.5,-24.5 parent: 2 - - uid: 36386 + - uid: 36653 components: - type: Transform - pos: -42.5,74.5 + pos: -25.5,-24.5 parent: 2 - - uid: 36387 + - uid: 36654 components: - type: Transform - pos: -44.5,74.5 + pos: -24.5,-24.5 parent: 2 - - uid: 36388 + - uid: 36655 components: - type: Transform - pos: -43.5,74.5 + pos: -23.5,-24.5 parent: 2 - - uid: 36389 + - uid: 36656 components: - type: Transform - pos: -43.5,75.5 + pos: -22.5,-24.5 parent: 2 - - uid: 36390 + - uid: 36657 components: - type: Transform - pos: -42.5,75.5 + pos: -21.5,-24.5 parent: 2 - - uid: 36391 + - uid: 36658 components: - type: Transform - pos: -44.5,73.5 + pos: -33.5,-23.5 parent: 2 - - uid: 36392 + - uid: 36659 components: - type: Transform - pos: -84.5,66.5 + pos: -29.5,-23.5 parent: 2 - - uid: 36393 + - uid: 36660 components: - type: Transform - pos: -84.5,67.5 + pos: -28.5,-23.5 parent: 2 - - uid: 36394 + - uid: 36661 components: - type: Transform - pos: -84.5,60.5 + pos: -27.5,-23.5 parent: 2 - - uid: 36395 + - uid: 36662 components: - type: Transform - pos: -84.5,59.5 + pos: -26.5,-23.5 parent: 2 - - uid: 36396 + - uid: 36663 components: - type: Transform - pos: -81.5,71.5 + pos: -25.5,-23.5 parent: 2 - - uid: 36397 + - uid: 36664 components: - type: Transform - pos: -121.5,33.5 + pos: -24.5,-23.5 parent: 2 - - uid: 36398 + - uid: 36665 components: - type: Transform - pos: -80.5,71.5 + pos: -23.5,-23.5 parent: 2 - - uid: 36399 + - uid: 36666 components: - type: Transform - pos: -84.5,58.5 + pos: -22.5,-23.5 parent: 2 - - uid: 36400 + - uid: 36667 components: - type: Transform - pos: -79.5,71.5 + pos: -21.5,-23.5 parent: 2 - - uid: 36401 + - uid: 36668 components: - type: Transform - pos: -78.5,71.5 + pos: -20.5,-23.5 parent: 2 - - uid: 36402 + - uid: 36669 components: - type: Transform - pos: -79.5,72.5 + pos: -60.5,-35.5 parent: 2 - - uid: 36403 + - uid: 36670 components: - type: Transform - pos: -80.5,72.5 + pos: -60.5,-34.5 parent: 2 - - uid: 36404 + - uid: 36671 components: - type: Transform - pos: -76.5,68.5 + pos: -60.5,-32.5 parent: 2 - - uid: 36405 + - uid: 36672 components: - type: Transform - pos: -78.5,70.5 + pos: -59.5,-27.5 parent: 2 - - uid: 36406 + - uid: 36673 components: - type: Transform - pos: -121.5,35.5 + pos: -59.5,-35.5 parent: 2 - - uid: 36407 + - uid: 36674 components: - type: Transform - pos: -120.5,36.5 + pos: -42.5,63.5 parent: 2 - - uid: 36408 + - uid: 36675 components: - type: Transform - pos: -119.5,37.5 + pos: -42.5,61.5 parent: 2 - - uid: 36409 + - uid: 36676 components: - type: Transform - pos: -118.5,38.5 + pos: -42.5,60.5 parent: 2 - - uid: 36410 + - uid: 36677 components: - type: Transform - pos: -118.5,39.5 + pos: -40.5,63.5 parent: 2 - - uid: 36411 + - uid: 36678 components: - type: Transform - pos: -15.5,73.5 + pos: -41.5,64.5 parent: 2 - - uid: 36412 + - uid: 36679 components: - type: Transform - pos: -15.5,74.5 + pos: -120.5,29.5 parent: 2 - - uid: 36413 + - uid: 36680 components: - type: Transform - pos: -14.5,74.5 + pos: 61.5,25.5 parent: 2 - - uid: 36414 + - uid: 36681 components: - type: Transform - pos: -13.5,75.5 + pos: 61.5,26.5 parent: 2 - - uid: 36415 + - uid: 36682 components: - type: Transform - pos: -13.5,76.5 + pos: 55.5,-50.5 parent: 2 - - uid: 36416 + - uid: 36683 components: - type: Transform - pos: -14.5,76.5 + pos: 54.5,-48.5 parent: 2 - - uid: 36417 + - uid: 36684 components: - type: Transform - pos: -14.5,75.5 + pos: -88.5,-15.5 parent: 2 - - uid: 36418 + - uid: 36685 components: - type: Transform - pos: -12.5,77.5 + pos: 89.5,-39.5 parent: 2 - - uid: 36419 + - uid: 36686 components: - type: Transform - pos: -13.5,77.5 + pos: 89.5,-38.5 parent: 2 - - uid: 36420 + - uid: 36687 components: - type: Transform - pos: -11.5,77.5 + pos: 90.5,-33.5 parent: 2 - - uid: 36421 + - uid: 36688 components: - type: Transform - pos: -9.5,78.5 + pos: 90.5,-34.5 parent: 2 - - uid: 36422 + - uid: 36689 components: - type: Transform - pos: -10.5,78.5 + pos: 89.5,-34.5 parent: 2 - - uid: 36423 + - uid: 36690 components: - type: Transform - pos: -9.5,77.5 + pos: 94.5,-4.5 parent: 2 - - uid: 36424 + - uid: 36691 components: - type: Transform - pos: -10.5,77.5 + pos: -84.5,21.5 parent: 2 - - uid: 36425 + - uid: 36692 components: - type: Transform - pos: -8.5,78.5 + pos: -83.5,21.5 parent: 2 - - uid: 36426 + - uid: 36693 components: - type: Transform - pos: -7.5,77.5 + pos: -84.5,22.5 parent: 2 - - uid: 36427 + - uid: 36694 components: - type: Transform - pos: -6.5,77.5 + pos: -83.5,22.5 parent: 2 - - uid: 36428 + - uid: 36695 components: - type: Transform - pos: -8.5,77.5 + pos: -82.5,68.5 parent: 2 - - uid: 36429 + - uid: 36696 components: - type: Transform - pos: -5.5,77.5 + pos: -39.5,28.5 parent: 2 - - uid: 36430 + - uid: 36697 components: - type: Transform - pos: -4.5,75.5 + pos: -37.5,28.5 parent: 2 - - uid: 36431 + - uid: 36698 components: - type: Transform - pos: -4.5,74.5 + pos: -38.5,28.5 parent: 2 - - uid: 36432 + - uid: 36699 components: - type: Transform - pos: -4.5,76.5 + pos: -82.5,70.5 parent: 2 - - uid: 36433 + - uid: 36700 components: - type: Transform - pos: -3.5,74.5 + pos: -83.5,66.5 parent: 2 - - uid: 36434 + - uid: 36701 components: - type: Transform - pos: -3.5,73.5 + pos: -83.5,67.5 parent: 2 - - uid: 36435 + - uid: 36702 components: - type: Transform - pos: -2.5,72.5 + pos: -77.5,70.5 parent: 2 - - uid: 36436 + - uid: 36703 components: - type: Transform - pos: -1.5,71.5 + pos: -143.5,-7.5 parent: 2 - - uid: 36437 + - uid: 36704 components: - type: Transform - pos: -1.5,72.5 + pos: -143.5,-6.5 parent: 2 - - uid: 36438 + - uid: 36705 components: - type: Transform - pos: -0.5,70.5 + pos: -81.5,65.5 parent: 2 - - uid: 36439 + - uid: 36706 components: - type: Transform - pos: 0.5,70.5 + pos: -81.5,68.5 parent: 2 - - uid: 36440 + - uid: 36707 components: - type: Transform - pos: 1.5,70.5 + pos: -80.5,67.5 parent: 2 - - uid: 36441 + - uid: 36708 components: - type: Transform - pos: 2.5,70.5 + pos: -80.5,65.5 parent: 2 - - uid: 36442 + - uid: 36709 components: - type: Transform - pos: 6.5,70.5 + pos: -83.5,68.5 parent: 2 - - uid: 36443 + - uid: 36710 components: - type: Transform - pos: 6.5,69.5 + pos: -77.5,67.5 parent: 2 - - uid: 36444 + - uid: 36711 components: - type: Transform - pos: 7.5,69.5 + pos: -70.5,59.5 parent: 2 - - uid: 36445 + - uid: 36712 components: - type: Transform - pos: 7.5,70.5 + pos: -71.5,63.5 parent: 2 - - uid: 36446 + - uid: 36713 components: - type: Transform - pos: 6.5,71.5 + pos: -71.5,64.5 parent: 2 - - uid: 36447 + - uid: 36714 components: - type: Transform - pos: 7.5,71.5 + pos: -64.5,61.5 parent: 2 - - uid: 36448 + - uid: 36715 components: - type: Transform - pos: 35.5,63.5 + pos: -65.5,60.5 parent: 2 - - uid: 36449 + - uid: 36716 components: - type: Transform - pos: 34.5,60.5 + pos: -69.5,60.5 parent: 2 - - uid: 36450 + - uid: 36717 components: - type: Transform - pos: -47.5,42.5 + pos: -70.5,60.5 parent: 2 - - uid: 36451 + - uid: 36718 components: - type: Transform - pos: -29.5,-24.5 + pos: -69.5,62.5 parent: 2 - - uid: 36452 + - uid: 36719 components: - type: Transform - pos: -26.5,-24.5 + pos: -70.5,61.5 parent: 2 - - uid: 36453 + - uid: 36720 + components: + - type: Transform + pos: -71.5,59.5 + parent: 2 + - uid: 36721 + components: + - type: Transform + pos: -70.5,63.5 + parent: 2 + - uid: 36722 + components: + - type: Transform + pos: -71.5,62.5 + parent: 2 + - uid: 36723 + components: + - type: Transform + pos: -66.5,59.5 + parent: 2 + - uid: 36724 + components: + - type: Transform + pos: -63.5,63.5 + parent: 2 + - uid: 36725 + components: + - type: Transform + pos: -63.5,61.5 + parent: 2 + - uid: 36726 + components: + - type: Transform + pos: -66.5,60.5 + parent: 2 + - uid: 36727 + components: + - type: Transform + pos: -63.5,62.5 + parent: 2 + - uid: 36728 + components: + - type: Transform + pos: -64.5,63.5 + parent: 2 + - uid: 36729 + components: + - type: Transform + pos: -69.5,59.5 + parent: 2 + - uid: 36730 + components: + - type: Transform + pos: -66.5,63.5 + parent: 2 + - uid: 36731 + components: + - type: Transform + pos: -68.5,65.5 + parent: 2 + - uid: 36732 components: - type: Transform - pos: -25.5,-24.5 + pos: -71.5,61.5 parent: 2 - - uid: 36454 + - uid: 36733 components: - type: Transform - pos: -24.5,-24.5 + pos: -68.5,62.5 parent: 2 - - uid: 36455 + - uid: 36734 components: - type: Transform - pos: -23.5,-24.5 + pos: -68.5,61.5 parent: 2 - - uid: 36456 + - uid: 36735 components: - type: Transform - pos: -22.5,-24.5 + pos: -69.5,63.5 parent: 2 - - uid: 36457 + - uid: 36736 components: - type: Transform - pos: -21.5,-24.5 + pos: -70.5,64.5 parent: 2 - - uid: 36458 + - uid: 36737 components: - type: Transform - pos: -33.5,-23.5 + pos: -65.5,62.5 parent: 2 - - uid: 36459 + - uid: 36738 components: - type: Transform - pos: -29.5,-23.5 + pos: -65.5,61.5 parent: 2 - - uid: 36460 + - uid: 36739 components: - type: Transform - pos: -28.5,-23.5 + pos: -65.5,63.5 parent: 2 - - uid: 36461 + - uid: 36740 components: - type: Transform - pos: -27.5,-23.5 + pos: -66.5,65.5 parent: 2 - - uid: 36462 + - uid: 36741 components: - type: Transform - pos: -26.5,-23.5 + pos: -69.5,61.5 parent: 2 - - uid: 36463 + - uid: 36742 components: - type: Transform - pos: -25.5,-23.5 + pos: -71.5,60.5 parent: 2 - - uid: 36464 + - uid: 36743 components: - type: Transform - pos: -24.5,-23.5 + pos: -64.5,62.5 parent: 2 - - uid: 36465 + - uid: 36744 components: - type: Transform - pos: -23.5,-23.5 + pos: -70.5,62.5 parent: 2 - - uid: 36466 + - uid: 36745 components: - type: Transform - pos: -22.5,-23.5 + pos: -85.5,53.5 parent: 2 - - uid: 36467 + - uid: 36746 components: - type: Transform - pos: -21.5,-23.5 + pos: -83.5,60.5 parent: 2 - - uid: 36468 + - uid: 36747 components: - type: Transform - pos: -20.5,-23.5 + pos: -83.5,61.5 parent: 2 - - uid: 36469 + - uid: 36748 components: - type: Transform - pos: -60.5,-35.5 + pos: -82.5,60.5 parent: 2 - - uid: 36470 + - uid: 36749 components: - type: Transform - pos: -60.5,-34.5 + pos: -104.5,53.5 parent: 2 - - uid: 36471 + - uid: 36750 components: - type: Transform - pos: -60.5,-32.5 + pos: -65.5,64.5 parent: 2 - - uid: 36472 + - uid: 36751 components: - type: Transform - pos: -59.5,-27.5 + pos: -82.5,59.5 parent: 2 - - uid: 36473 + - uid: 36752 components: - type: Transform - pos: -59.5,-34.5 + pos: -72.5,63.5 parent: 2 - - uid: 36474 + - uid: 36753 components: - type: Transform - pos: -59.5,-35.5 + pos: -56.5,57.5 parent: 2 - - uid: 36475 + - uid: 36754 components: - type: Transform - pos: -40.5,63.5 + pos: -55.5,56.5 parent: 2 - - uid: 36476 + - uid: 36755 components: - type: Transform - pos: -41.5,63.5 + pos: -54.5,55.5 parent: 2 - - uid: 36477 + - uid: 36756 components: - type: Transform - pos: -42.5,63.5 + pos: -55.5,55.5 parent: 2 - - uid: 36478 + - uid: 36757 components: - type: Transform - pos: -42.5,61.5 + pos: -53.5,55.5 parent: 2 - - uid: 36479 + - uid: 36758 components: - type: Transform - pos: -42.5,60.5 + pos: -55.5,57.5 parent: 2 - - uid: 36480 + - uid: 36759 components: - type: Transform - pos: -37.5,62.5 + pos: -70.5,65.5 parent: 2 - - uid: 36481 + - uid: 36760 components: - type: Transform - pos: -36.5,62.5 + pos: -73.5,59.5 parent: 2 - - uid: 36482 + - uid: 36761 components: - type: Transform - pos: -120.5,29.5 + pos: -72.5,59.5 parent: 2 - - uid: 36483 + - uid: 36762 components: - type: Transform - pos: 61.5,25.5 + pos: -72.5,61.5 parent: 2 - - uid: 36484 + - uid: 36763 components: - type: Transform - pos: 61.5,26.5 + pos: -123.5,-18.5 parent: 2 - - uid: 36485 + - uid: 36764 components: - type: Transform - pos: 55.5,-50.5 + pos: -123.5,-17.5 parent: 2 - - uid: 36486 + - uid: 36765 components: - type: Transform - pos: 54.5,-48.5 + pos: -123.5,-16.5 parent: 2 - - uid: 36487 + - uid: 36766 components: - type: Transform - pos: -88.5,-15.5 + pos: -123.5,-15.5 parent: 2 - - uid: 36488 + - uid: 36767 components: - type: Transform - pos: 89.5,-39.5 + pos: -122.5,-16.5 parent: 2 - - uid: 36489 + - uid: 36768 components: - type: Transform - pos: 89.5,-38.5 + pos: -120.5,-16.5 parent: 2 - - uid: 36490 + - uid: 36769 components: - type: Transform - pos: 90.5,-33.5 + pos: -136.5,-10.5 parent: 2 - - uid: 36491 + - uid: 36770 components: - type: Transform - pos: 90.5,-34.5 + pos: -119.5,-16.5 parent: 2 - - uid: 36492 + - uid: 36771 components: - type: Transform - pos: 89.5,-34.5 + pos: -118.5,-16.5 parent: 2 - - uid: 36493 + - uid: 36772 components: - type: Transform - pos: 94.5,-4.5 + pos: -118.5,-15.5 parent: 2 - - uid: 36494 + - uid: 36773 components: - type: Transform - pos: -84.5,21.5 + pos: -120.5,-15.5 parent: 2 - - uid: 36495 + - uid: 36774 components: - type: Transform - pos: -83.5,21.5 + pos: -121.5,-16.5 parent: 2 - - uid: 36496 + - uid: 36775 components: - type: Transform - pos: -84.5,22.5 + pos: -135.5,-13.5 parent: 2 - - uid: 36497 + - uid: 36776 components: - type: Transform - pos: -83.5,22.5 + pos: -131.5,-16.5 parent: 2 - - uid: 36498 + - uid: 36777 components: - type: Transform - pos: -82.5,68.5 + pos: -118.5,-17.5 parent: 2 - - uid: 36499 + - uid: 36778 components: - type: Transform - pos: -83.5,65.5 + pos: -132.5,-16.5 parent: 2 - - uid: 36500 + - uid: 36779 components: - type: Transform - pos: -39.5,28.5 + pos: -117.5,-16.5 parent: 2 - - uid: 36501 + - uid: 36780 components: - type: Transform - pos: -37.5,28.5 + pos: -116.5,-16.5 parent: 2 - - uid: 36502 + - uid: 36781 components: - type: Transform - pos: -38.5,28.5 + pos: -116.5,-15.5 parent: 2 - - uid: 36503 + - uid: 36782 components: - type: Transform - pos: -82.5,70.5 + pos: -115.5,-16.5 parent: 2 - - uid: 36504 + - uid: 36783 components: - type: Transform - pos: -83.5,66.5 + pos: -114.5,-16.5 parent: 2 - - uid: 36505 + - uid: 36784 components: - type: Transform - pos: -83.5,67.5 + pos: -113.5,-16.5 parent: 2 - - uid: 36506 + - uid: 36785 components: - type: Transform - pos: -77.5,70.5 + pos: -112.5,-16.5 parent: 2 - - uid: 36507 + - uid: 36786 components: - type: Transform - pos: -84.5,57.5 + pos: -111.5,-15.5 parent: 2 - - uid: 36508 + - uid: 36787 components: - type: Transform - pos: -89.5,60.5 + pos: -111.5,-16.5 parent: 2 - - uid: 36509 + - uid: 36788 components: - type: Transform - pos: -143.5,-7.5 + pos: -143.5,0.5 parent: 2 - - uid: 36510 + - uid: 36789 components: - type: Transform - pos: -143.5,-6.5 + pos: -113.5,-17.5 parent: 2 - - uid: 36511 + - uid: 36790 components: - type: Transform - pos: -81.5,65.5 + pos: -105.5,-15.5 parent: 2 - - uid: 36512 + - uid: 36791 components: - type: Transform - pos: -81.5,68.5 + pos: -109.5,-15.5 parent: 2 - - uid: 36513 + - uid: 36792 components: - type: Transform - pos: -80.5,67.5 + pos: -110.5,-16.5 parent: 2 - - uid: 36514 + - uid: 36793 components: - type: Transform - pos: -80.5,65.5 + pos: -108.5,-15.5 parent: 2 - - uid: 36515 + - uid: 36794 components: - type: Transform - pos: -83.5,68.5 + pos: -107.5,-16.5 parent: 2 - - uid: 36516 + - uid: 36795 components: - type: Transform - pos: -77.5,67.5 + pos: -107.5,-15.5 parent: 2 - - uid: 36517 + - uid: 36796 components: - type: Transform - pos: -70.5,59.5 + pos: -106.5,-15.5 parent: 2 - - uid: 36518 + - uid: 36797 components: - type: Transform - pos: -71.5,63.5 + pos: -104.5,-15.5 parent: 2 - - uid: 36519 + - uid: 36798 components: - type: Transform - pos: -71.5,64.5 + pos: -143.5,-0.5 parent: 2 - - uid: 36520 + - uid: 36799 components: - type: Transform - pos: -64.5,61.5 + pos: -145.5,-1.5 parent: 2 - - uid: 36521 + - uid: 36800 components: - type: Transform - pos: -65.5,60.5 + pos: -145.5,-2.5 parent: 2 - - uid: 36522 + - uid: 36801 components: - type: Transform - pos: -69.5,60.5 + pos: -146.5,-1.5 parent: 2 - - uid: 36523 + - uid: 36802 components: - type: Transform - pos: -70.5,60.5 + pos: -145.5,-3.5 parent: 2 - - uid: 36524 + - uid: 36803 components: - type: Transform - pos: -69.5,62.5 + pos: -85.5,60.5 parent: 2 - - uid: 36525 + - uid: 36804 components: - type: Transform - pos: -70.5,61.5 + pos: -73.5,53.5 parent: 2 - - uid: 36526 + - uid: 36805 components: - type: Transform - pos: -71.5,59.5 + pos: -52.5,30.5 parent: 2 - - uid: 36527 + - uid: 36806 components: - type: Transform - pos: -70.5,63.5 + pos: -53.5,29.5 parent: 2 - - uid: 36528 + - uid: 36807 components: - type: Transform - pos: -71.5,62.5 + pos: -51.5,30.5 parent: 2 - - uid: 36529 + - uid: 36808 components: - type: Transform - pos: -66.5,59.5 + pos: -50.5,31.5 parent: 2 - - uid: 36530 + - uid: 36809 components: - type: Transform - pos: -63.5,63.5 + pos: -28.5,-62.5 parent: 2 - - uid: 36531 + - uid: 36810 components: - type: Transform - pos: -63.5,61.5 + pos: -28.5,-63.5 parent: 2 - - uid: 36532 + - uid: 36811 components: - type: Transform - pos: -66.5,60.5 + pos: -28.5,-61.5 parent: 2 - - uid: 36533 + - uid: 36812 components: - type: Transform - pos: -63.5,62.5 + pos: -29.5,-61.5 parent: 2 - - uid: 36534 + - uid: 36813 components: - type: Transform - pos: -64.5,63.5 + pos: -29.5,-60.5 parent: 2 - - uid: 36535 + - uid: 36814 components: - type: Transform - pos: -69.5,59.5 + pos: -31.5,-60.5 parent: 2 - - uid: 36536 + - uid: 36815 components: - type: Transform - pos: -66.5,63.5 + pos: -30.5,-60.5 parent: 2 - - uid: 36537 + - uid: 36816 components: - type: Transform - pos: -68.5,65.5 + pos: -30.5,-61.5 parent: 2 - - uid: 36538 + - uid: 36817 components: - type: Transform - pos: -71.5,61.5 + pos: -29.5,-62.5 parent: 2 - - uid: 36539 + - uid: 36818 components: - type: Transform - pos: -68.5,62.5 + pos: -31.5,-61.5 parent: 2 - - uid: 36540 + - uid: 36819 components: - type: Transform - pos: -68.5,61.5 + pos: -30.5,-62.5 parent: 2 - - uid: 36541 + - uid: 36820 components: - type: Transform - pos: -69.5,63.5 + pos: -29.5,-63.5 parent: 2 - - uid: 36542 + - uid: 36821 components: - type: Transform - pos: -70.5,64.5 + pos: 93.5,-48.5 parent: 2 - - uid: 36543 + - uid: 36822 components: - type: Transform - pos: -65.5,62.5 + pos: 53.5,-19.5 parent: 2 - - uid: 36544 + - uid: 36823 components: - type: Transform - pos: -65.5,61.5 + pos: 43.5,-14.5 parent: 2 - - uid: 36545 + - uid: 36824 components: - type: Transform - pos: -65.5,63.5 + pos: 43.5,-12.5 parent: 2 - - uid: 36546 + - uid: 36825 components: - type: Transform - pos: -66.5,65.5 + pos: 42.5,-15.5 parent: 2 - - uid: 36547 + - uid: 36826 components: - type: Transform - pos: -69.5,61.5 + pos: -67.5,-9.5 parent: 2 - - uid: 36548 + - uid: 36827 components: - type: Transform - pos: -71.5,60.5 + pos: -69.5,-4.5 parent: 2 - - uid: 36549 + - uid: 36828 components: - type: Transform - pos: -68.5,63.5 + pos: -69.5,-3.5 parent: 2 - - uid: 36550 + - uid: 36829 components: - type: Transform - pos: -64.5,62.5 + pos: -67.5,-3.5 parent: 2 - - uid: 36551 + - uid: 36830 components: - type: Transform - pos: -70.5,62.5 + pos: -68.5,-3.5 parent: 2 - - uid: 36552 + - uid: 36831 components: - type: Transform - pos: -85.5,53.5 + pos: -68.5,-5.5 parent: 2 - - uid: 36553 + - uid: 36832 components: - type: Transform - pos: -83.5,60.5 + pos: -68.5,-9.5 parent: 2 - - uid: 36554 + - uid: 36833 components: - type: Transform - pos: -83.5,61.5 + pos: -69.5,-7.5 parent: 2 - - uid: 36555 + - uid: 36834 components: - type: Transform - pos: -82.5,60.5 + pos: -28.5,47.5 parent: 2 - - uid: 36556 + - uid: 36835 components: - type: Transform - pos: -83.5,59.5 + pos: 64.5,1.5 parent: 2 - - uid: 36557 + - uid: 36836 components: - type: Transform - pos: -111.5,40.5 + pos: 54.5,-19.5 parent: 2 - - uid: 36558 + - uid: 36837 components: - type: Transform - pos: -110.5,40.5 + pos: 58.5,-10.5 parent: 2 - - uid: 36559 + - uid: 36838 components: - type: Transform - pos: -65.5,64.5 + pos: -65.5,-2.5 parent: 2 - - uid: 36560 + - uid: 36839 components: - type: Transform - pos: -91.5,60.5 + pos: -65.5,-1.5 parent: 2 - - uid: 36561 + - uid: 36840 components: - type: Transform - pos: -90.5,60.5 + pos: -65.5,-0.5 parent: 2 - - uid: 36562 + - uid: 36841 components: - type: Transform - pos: -82.5,59.5 + pos: -64.5,-0.5 parent: 2 - - uid: 36563 + - uid: 36842 components: - type: Transform - pos: -72.5,63.5 + pos: -64.5,-2.5 parent: 2 - - uid: 36564 + - uid: 36843 components: - type: Transform - pos: -56.5,57.5 + pos: -64.5,-3.5 parent: 2 - - uid: 36565 + - uid: 36844 components: - type: Transform - pos: -55.5,56.5 + pos: -64.5,-1.5 parent: 2 - - uid: 36566 + - uid: 36845 components: - type: Transform - pos: -54.5,55.5 + pos: -64.5,-4.5 parent: 2 - - uid: 36567 + - uid: 36846 components: - type: Transform - pos: -55.5,55.5 + pos: -64.5,-5.5 parent: 2 - - uid: 36568 + - uid: 36847 components: - type: Transform - pos: -53.5,55.5 + pos: -70.5,-0.5 parent: 2 - - uid: 36569 + - uid: 36848 components: - type: Transform - pos: -55.5,57.5 + pos: -70.5,-2.5 parent: 2 - - uid: 36570 + - uid: 36849 components: - type: Transform - pos: -70.5,65.5 + pos: -70.5,-3.5 parent: 2 - - uid: 36571 + - uid: 36850 components: - type: Transform - pos: -73.5,59.5 + pos: -70.5,-4.5 parent: 2 - - uid: 36572 + - uid: 36851 components: - type: Transform - pos: -72.5,59.5 + pos: -70.5,-5.5 parent: 2 - - uid: 36573 + - uid: 36852 components: - type: Transform - pos: -72.5,61.5 + pos: -71.5,-2.5 parent: 2 - - uid: 36574 + - uid: 36853 components: - type: Transform - pos: -123.5,-18.5 + pos: -71.5,-4.5 parent: 2 - - uid: 36575 + - uid: 36854 components: - type: Transform - pos: -123.5,-17.5 + pos: -71.5,-1.5 parent: 2 - - uid: 36576 + - uid: 36855 components: - type: Transform - pos: -123.5,-16.5 + pos: -71.5,-5.5 parent: 2 - - uid: 36577 + - uid: 36856 components: - type: Transform - pos: -123.5,-15.5 + pos: -70.5,-6.5 parent: 2 - - uid: 36578 + - uid: 36857 components: - type: Transform - pos: -122.5,-16.5 + pos: -64.5,-6.5 parent: 2 - - uid: 36579 + - uid: 36858 components: - type: Transform - pos: -120.5,-16.5 + pos: -63.5,-5.5 parent: 2 - - uid: 36580 + - uid: 36859 components: - type: Transform - pos: -136.5,-10.5 + pos: -63.5,-4.5 parent: 2 - - uid: 36581 + - uid: 36860 components: - type: Transform - pos: -119.5,-16.5 + pos: -63.5,-3.5 parent: 2 - - uid: 36582 + - uid: 36861 components: - type: Transform - pos: -118.5,-16.5 + pos: -63.5,-2.5 parent: 2 - - uid: 36583 + - uid: 36862 components: - type: Transform - pos: -118.5,-15.5 + pos: -63.5,-1.5 parent: 2 - - uid: 36584 + - uid: 36863 components: - type: Transform - pos: -120.5,-15.5 + pos: 40.5,-57.5 parent: 2 - - uid: 36585 + - uid: 36864 components: - type: Transform - pos: -121.5,-16.5 + pos: 40.5,-58.5 parent: 2 - - uid: 36586 + - uid: 36865 components: - type: Transform - pos: -135.5,-13.5 + pos: 34.5,-58.5 parent: 2 - - uid: 36587 + - uid: 36866 components: - type: Transform - pos: -131.5,-16.5 + pos: 36.5,-60.5 parent: 2 - - uid: 36588 + - uid: 36867 components: - type: Transform - pos: -118.5,-17.5 + pos: 34.5,-59.5 parent: 2 - - uid: 36589 + - uid: 36868 components: - type: Transform - pos: -132.5,-16.5 + pos: 34.5,-57.5 parent: 2 - - uid: 36590 + - uid: 36869 components: - type: Transform - pos: -117.5,-16.5 + pos: -50.5,23.5 parent: 2 - - uid: 36591 + - uid: 36870 components: - type: Transform - pos: -116.5,-16.5 + pos: -117.5,30.5 parent: 2 - - uid: 36592 + - uid: 36871 components: - type: Transform - pos: -116.5,-15.5 + pos: -118.5,30.5 parent: 2 - - uid: 36593 + - uid: 36872 components: - type: Transform - pos: -115.5,-16.5 + pos: -55.5,46.5 parent: 2 - - uid: 36594 + - uid: 36873 components: - type: Transform - pos: -114.5,-16.5 + pos: -30.5,68.5 parent: 2 - - uid: 36595 + - uid: 36874 components: - type: Transform - pos: -113.5,-16.5 + pos: -41.5,74.5 parent: 2 - - uid: 36596 + - uid: 36875 components: - type: Transform - pos: -112.5,-16.5 + pos: -40.5,74.5 parent: 2 - - uid: 36597 + - uid: 36876 components: - type: Transform - pos: -111.5,-15.5 + pos: -33.5,69.5 parent: 2 - - uid: 36598 + - uid: 36877 components: - type: Transform - pos: -111.5,-16.5 + pos: -98.5,48.5 parent: 2 - - uid: 36599 + - uid: 36878 components: - type: Transform - pos: -143.5,0.5 + pos: -29.5,70.5 parent: 2 - - uid: 36600 + - uid: 36879 components: - type: Transform - pos: -113.5,-17.5 + pos: -41.5,73.5 parent: 2 - - uid: 36601 + - uid: 36880 components: - type: Transform - pos: -105.5,-15.5 + pos: -105.5,55.5 parent: 2 - - uid: 36602 + - uid: 36881 components: - type: Transform - pos: -109.5,-15.5 + pos: -108.5,54.5 parent: 2 - - uid: 36603 + - uid: 36882 components: - type: Transform - pos: -110.5,-16.5 + pos: -104.5,56.5 parent: 2 - - uid: 36604 + - uid: 36883 components: - type: Transform - pos: -108.5,-15.5 + pos: -106.5,55.5 parent: 2 - - uid: 36605 + - uid: 36884 components: - type: Transform - pos: -107.5,-16.5 + pos: -105.5,56.5 parent: 2 - - uid: 36606 + - uid: 36885 components: - type: Transform - pos: -107.5,-15.5 + pos: -90.5,64.5 parent: 2 - - uid: 36607 + - uid: 36886 components: - type: Transform - pos: -106.5,-15.5 + pos: -107.5,55.5 parent: 2 - - uid: 36608 + - uid: 36887 components: - type: Transform - pos: -104.5,-15.5 + pos: -40.5,73.5 parent: 2 - - uid: 36609 + - uid: 36888 components: - type: Transform - pos: -143.5,-0.5 + pos: -97.5,44.5 parent: 2 - - uid: 36610 + - uid: 36889 components: - type: Transform - pos: -145.5,-1.5 + pos: -98.5,51.5 parent: 2 - - uid: 36611 + - uid: 36890 components: - type: Transform - pos: -145.5,-2.5 + pos: -100.5,48.5 parent: 2 - - uid: 36612 + - uid: 36891 components: - type: Transform - pos: -146.5,-1.5 + pos: -105.5,54.5 parent: 2 - - uid: 36613 + - uid: 36892 components: - type: Transform - pos: -145.5,-3.5 + pos: -99.5,49.5 parent: 2 - - uid: 36614 + - uid: 36893 components: - type: Transform - pos: -85.5,60.5 + pos: -101.5,52.5 parent: 2 - - uid: 36615 + - uid: 36894 components: - type: Transform - pos: -73.5,53.5 + pos: -99.5,48.5 parent: 2 - - uid: 36616 + - uid: 36895 components: - type: Transform - pos: -52.5,30.5 + pos: -37.5,62.5 parent: 2 - - uid: 36617 + - uid: 36896 components: - type: Transform - pos: -53.5,29.5 + pos: -98.5,52.5 parent: 2 - - uid: 36618 + - uid: 36897 components: - type: Transform - pos: -52.5,31.5 + pos: -98.5,53.5 parent: 2 - - uid: 36619 + - uid: 36898 components: - type: Transform - pos: -51.5,30.5 + pos: -99.5,43.5 parent: 2 - - uid: 36620 + - uid: 36899 components: - type: Transform - pos: -50.5,31.5 + pos: -98.5,50.5 parent: 2 - - uid: 36621 + - uid: 36900 components: - type: Transform - pos: -52.5,29.5 + pos: -98.5,49.5 parent: 2 - - uid: 36622 + - uid: 36901 components: - type: Transform - pos: -82.5,21.5 + pos: -105.5,53.5 parent: 2 - - uid: 36623 + - uid: 36902 components: - type: Transform - pos: -82.5,20.5 + pos: -103.5,50.5 parent: 2 - - uid: 36624 + - uid: 36903 components: - type: Transform - pos: -28.5,-62.5 + pos: -101.5,51.5 parent: 2 - - uid: 36625 + - uid: 36904 components: - type: Transform - pos: -28.5,-63.5 + pos: -103.5,51.5 parent: 2 - - uid: 36626 + - uid: 36905 components: - type: Transform - pos: -28.5,-61.5 + pos: -96.5,45.5 parent: 2 - - uid: 36627 + - uid: 36906 components: - type: Transform - pos: -29.5,-61.5 + pos: -35.5,62.5 parent: 2 - - uid: 36628 + - uid: 36907 components: - type: Transform - pos: -29.5,-60.5 + pos: -84.5,62.5 parent: 2 - - uid: 36629 + - uid: 36908 components: - type: Transform - pos: -31.5,-60.5 + pos: -83.5,64.5 parent: 2 - - uid: 36630 + - uid: 36909 components: - type: Transform - pos: -30.5,-60.5 + pos: -83.5,65.5 parent: 2 - - uid: 36631 + - uid: 36910 components: - type: Transform - pos: -30.5,-61.5 + pos: -84.5,64.5 parent: 2 - - uid: 36632 + - uid: 36911 components: - type: Transform - pos: -29.5,-62.5 + pos: -81.5,-20.5 parent: 2 - - uid: 36633 + - uid: 36912 components: - type: Transform - pos: -31.5,-61.5 + pos: -81.5,-19.5 parent: 2 - - uid: 36634 + - uid: 36913 components: - type: Transform - pos: -30.5,-62.5 + pos: -80.5,-19.5 parent: 2 - - uid: 36635 + - uid: 36914 components: - type: Transform - pos: -29.5,-63.5 + pos: 52.5,-18.5 parent: 2 - - uid: 36636 + - uid: 36915 components: - type: Transform - pos: 93.5,-48.5 + pos: 53.5,-18.5 parent: 2 - - uid: 43539 + - uid: 43928 components: - type: Transform pos: 62.5,81.5 - parent: 40203 - - uid: 43540 + parent: 40599 + - uid: 43929 components: - type: Transform pos: 24.5,49.5 - parent: 40203 - - uid: 43541 + parent: 40599 + - uid: 43930 components: - type: Transform pos: 23.5,49.5 - parent: 40203 - - uid: 43542 + parent: 40599 + - uid: 43931 components: - type: Transform pos: 28.5,47.5 - parent: 40203 - - uid: 43543 + parent: 40599 + - uid: 43932 components: - type: Transform pos: 30.5,51.5 - parent: 40203 - - uid: 43544 + parent: 40599 + - uid: 43933 components: - type: Transform pos: 29.5,47.5 - parent: 40203 - - uid: 43545 + parent: 40599 + - uid: 43934 components: - type: Transform pos: 20.5,39.5 - parent: 40203 - - uid: 43546 + parent: 40599 + - uid: 43935 components: - type: Transform pos: 34.5,75.5 - parent: 40203 - - uid: 43547 + parent: 40599 + - uid: 43936 components: - type: Transform pos: 34.5,76.5 - parent: 40203 - - uid: 43548 + parent: 40599 + - uid: 43937 components: - type: Transform pos: 34.5,78.5 - parent: 40203 - - uid: 43549 + parent: 40599 + - uid: 43938 components: - type: Transform pos: 11.5,54.5 - parent: 40203 - - uid: 43550 + parent: 40599 + - uid: 43939 components: - type: Transform pos: 11.5,53.5 - parent: 40203 - - uid: 43551 + parent: 40599 + - uid: 43940 components: - type: Transform pos: 11.5,52.5 - parent: 40203 - - uid: 43552 + parent: 40599 + - uid: 43941 components: - type: Transform pos: 12.5,57.5 - parent: 40203 - - uid: 43553 + parent: 40599 + - uid: 43942 components: - type: Transform pos: 12.5,56.5 - parent: 40203 - - uid: 43554 + parent: 40599 + - uid: 43943 components: - type: Transform pos: 12.5,55.5 - parent: 40203 - - uid: 43555 + parent: 40599 + - uid: 43944 components: - type: Transform pos: 12.5,54.5 - parent: 40203 - - uid: 43556 + parent: 40599 + - uid: 43945 components: - type: Transform pos: 12.5,53.5 - parent: 40203 - - uid: 43557 + parent: 40599 + - uid: 43946 components: - type: Transform pos: 12.5,52.5 - parent: 40203 - - uid: 43558 + parent: 40599 + - uid: 43947 components: - type: Transform pos: 12.5,51.5 - parent: 40203 - - uid: 43559 + parent: 40599 + - uid: 43948 components: - type: Transform pos: 12.5,50.5 - parent: 40203 - - uid: 43560 + parent: 40599 + - uid: 43949 components: - type: Transform pos: 13.5,58.5 - parent: 40203 - - uid: 43561 + parent: 40599 + - uid: 43950 components: - type: Transform pos: 13.5,57.5 - parent: 40203 - - uid: 43562 + parent: 40599 + - uid: 43951 components: - type: Transform pos: 13.5,56.5 - parent: 40203 - - uid: 43563 + parent: 40599 + - uid: 43952 components: - type: Transform pos: 13.5,55.5 - parent: 40203 - - uid: 43564 + parent: 40599 + - uid: 43953 components: - type: Transform pos: 13.5,54.5 - parent: 40203 - - uid: 43565 + parent: 40599 + - uid: 43954 components: - type: Transform pos: 13.5,52.5 - parent: 40203 - - uid: 43566 + parent: 40599 + - uid: 43955 components: - type: Transform pos: 13.5,51.5 - parent: 40203 - - uid: 43567 + parent: 40599 + - uid: 43956 components: - type: Transform pos: 13.5,50.5 - parent: 40203 - - uid: 43568 + parent: 40599 + - uid: 43957 components: - type: Transform pos: 13.5,49.5 - parent: 40203 - - uid: 43569 + parent: 40599 + - uid: 43958 components: - type: Transform pos: 14.5,60.5 - parent: 40203 - - uid: 43570 + parent: 40599 + - uid: 43959 components: - type: Transform pos: 14.5,59.5 - parent: 40203 - - uid: 43571 + parent: 40599 + - uid: 43960 components: - type: Transform pos: 14.5,57.5 - parent: 40203 - - uid: 43572 + parent: 40599 + - uid: 43961 components: - type: Transform pos: 14.5,56.5 - parent: 40203 - - uid: 43573 + parent: 40599 + - uid: 43962 components: - type: Transform pos: 14.5,55.5 - parent: 40203 - - uid: 43574 + parent: 40599 + - uid: 43963 components: - type: Transform pos: 14.5,54.5 - parent: 40203 - - uid: 43575 + parent: 40599 + - uid: 43964 components: - type: Transform pos: 14.5,53.5 - parent: 40203 - - uid: 43576 + parent: 40599 + - uid: 43965 components: - type: Transform pos: 14.5,52.5 - parent: 40203 - - uid: 43577 + parent: 40599 + - uid: 43966 components: - type: Transform pos: 14.5,51.5 - parent: 40203 - - uid: 43578 + parent: 40599 + - uid: 43967 components: - type: Transform pos: 14.5,50.5 - parent: 40203 - - uid: 43579 + parent: 40599 + - uid: 43968 components: - type: Transform pos: 14.5,48.5 - parent: 40203 - - uid: 43580 + parent: 40599 + - uid: 43969 components: - type: Transform pos: 14.5,47.5 - parent: 40203 - - uid: 43581 + parent: 40599 + - uid: 43970 components: - type: Transform pos: 15.5,61.5 - parent: 40203 - - uid: 43582 + parent: 40599 + - uid: 43971 components: - type: Transform pos: 15.5,60.5 - parent: 40203 - - uid: 43583 + parent: 40599 + - uid: 43972 components: - type: Transform pos: 15.5,59.5 - parent: 40203 - - uid: 43584 + parent: 40599 + - uid: 43973 components: - type: Transform pos: 15.5,58.5 - parent: 40203 - - uid: 43585 + parent: 40599 + - uid: 43974 components: - type: Transform pos: 15.5,57.5 - parent: 40203 - - uid: 43586 + parent: 40599 + - uid: 43975 components: - type: Transform pos: 15.5,56.5 - parent: 40203 - - uid: 43587 + parent: 40599 + - uid: 43976 components: - type: Transform pos: 15.5,53.5 - parent: 40203 - - uid: 43588 + parent: 40599 + - uid: 43977 components: - type: Transform pos: 15.5,52.5 - parent: 40203 - - uid: 43589 + parent: 40599 + - uid: 43978 components: - type: Transform pos: 15.5,51.5 - parent: 40203 - - uid: 43590 + parent: 40599 + - uid: 43979 components: - type: Transform pos: 15.5,50.5 - parent: 40203 - - uid: 43591 + parent: 40599 + - uid: 43980 components: - type: Transform pos: 15.5,49.5 - parent: 40203 - - uid: 43592 + parent: 40599 + - uid: 43981 components: - type: Transform pos: 15.5,48.5 - parent: 40203 - - uid: 43593 + parent: 40599 + - uid: 43982 components: - type: Transform pos: 15.5,47.5 - parent: 40203 - - uid: 43594 + parent: 40599 + - uid: 43983 components: - type: Transform pos: 15.5,46.5 - parent: 40203 - - uid: 43595 + parent: 40599 + - uid: 43984 components: - type: Transform pos: 16.5,62.5 - parent: 40203 - - uid: 43596 + parent: 40599 + - uid: 43985 components: - type: Transform pos: 16.5,61.5 - parent: 40203 - - uid: 43597 + parent: 40599 + - uid: 43986 components: - type: Transform pos: 16.5,59.5 - parent: 40203 - - uid: 43598 + parent: 40599 + - uid: 43987 components: - type: Transform pos: 16.5,58.5 - parent: 40203 - - uid: 43599 + parent: 40599 + - uid: 43988 components: - type: Transform pos: 16.5,57.5 - parent: 40203 - - uid: 43600 + parent: 40599 + - uid: 43989 components: - type: Transform pos: 16.5,56.5 - parent: 40203 - - uid: 43601 + parent: 40599 + - uid: 43990 components: - type: Transform pos: 16.5,55.5 - parent: 40203 - - uid: 43602 + parent: 40599 + - uid: 43991 components: - type: Transform pos: 16.5,48.5 - parent: 40203 - - uid: 43603 + parent: 40599 + - uid: 43992 components: - type: Transform pos: 16.5,47.5 - parent: 40203 - - uid: 43604 + parent: 40599 + - uid: 43993 components: - type: Transform pos: 16.5,46.5 - parent: 40203 - - uid: 43605 + parent: 40599 + - uid: 43994 components: - type: Transform pos: 16.5,45.5 - parent: 40203 - - uid: 43606 + parent: 40599 + - uid: 43995 components: - type: Transform pos: 16.5,44.5 - parent: 40203 - - uid: 43607 + parent: 40599 + - uid: 43996 components: - type: Transform pos: 16.5,43.5 - parent: 40203 - - uid: 43608 + parent: 40599 + - uid: 43997 components: - type: Transform pos: 16.5,42.5 - parent: 40203 - - uid: 43609 + parent: 40599 + - uid: 43998 components: - type: Transform pos: 16.5,41.5 - parent: 40203 - - uid: 43610 + parent: 40599 + - uid: 43999 components: - type: Transform pos: 16.5,40.5 - parent: 40203 - - uid: 43611 + parent: 40599 + - uid: 44000 components: - type: Transform pos: 17.5,63.5 - parent: 40203 - - uid: 43612 + parent: 40599 + - uid: 44001 components: - type: Transform pos: 17.5,62.5 - parent: 40203 - - uid: 43613 + parent: 40599 + - uid: 44002 components: - type: Transform pos: 17.5,61.5 - parent: 40203 - - uid: 43614 + parent: 40599 + - uid: 44003 components: - type: Transform pos: 17.5,60.5 - parent: 40203 - - uid: 43615 + parent: 40599 + - uid: 44004 components: - type: Transform pos: 17.5,59.5 - parent: 40203 - - uid: 43616 + parent: 40599 + - uid: 44005 components: - type: Transform pos: 17.5,58.5 - parent: 40203 - - uid: 43617 + parent: 40599 + - uid: 44006 components: - type: Transform pos: 17.5,56.5 - parent: 40203 - - uid: 43618 + parent: 40599 + - uid: 44007 components: - type: Transform pos: 17.5,55.5 - parent: 40203 - - uid: 43619 + parent: 40599 + - uid: 44008 components: - type: Transform pos: 17.5,54.5 - parent: 40203 - - uid: 43620 + parent: 40599 + - uid: 44009 components: - type: Transform pos: 17.5,46.5 - parent: 40203 - - uid: 43621 + parent: 40599 + - uid: 44010 components: - type: Transform pos: 17.5,45.5 - parent: 40203 - - uid: 43622 + parent: 40599 + - uid: 44011 components: - type: Transform pos: 17.5,44.5 - parent: 40203 - - uid: 43623 + parent: 40599 + - uid: 44012 components: - type: Transform pos: 17.5,42.5 - parent: 40203 - - uid: 43624 + parent: 40599 + - uid: 44013 components: - type: Transform pos: 17.5,41.5 - parent: 40203 - - uid: 43625 + parent: 40599 + - uid: 44014 components: - type: Transform pos: 17.5,40.5 - parent: 40203 - - uid: 43626 + parent: 40599 + - uid: 44015 components: - type: Transform pos: 17.5,39.5 - parent: 40203 - - uid: 43627 + parent: 40599 + - uid: 44016 components: - type: Transform pos: 17.5,38.5 - parent: 40203 - - uid: 43628 + parent: 40599 + - uid: 44017 components: - type: Transform pos: 18.5,65.5 - parent: 40203 - - uid: 43629 + parent: 40599 + - uid: 44018 components: - type: Transform pos: 18.5,64.5 - parent: 40203 - - uid: 43630 + parent: 40599 + - uid: 44019 components: - type: Transform pos: 18.5,62.5 - parent: 40203 - - uid: 43631 + parent: 40599 + - uid: 44020 components: - type: Transform pos: 18.5,61.5 - parent: 40203 - - uid: 43632 + parent: 40599 + - uid: 44021 components: - type: Transform pos: 18.5,59.5 - parent: 40203 - - uid: 43633 + parent: 40599 + - uid: 44022 components: - type: Transform pos: 18.5,58.5 - parent: 40203 - - uid: 43634 + parent: 40599 + - uid: 44023 components: - type: Transform pos: 18.5,57.5 - parent: 40203 - - uid: 43635 + parent: 40599 + - uid: 44024 components: - type: Transform pos: 18.5,56.5 - parent: 40203 - - uid: 43636 + parent: 40599 + - uid: 44025 components: - type: Transform pos: 18.5,55.5 - parent: 40203 - - uid: 43637 + parent: 40599 + - uid: 44026 components: - type: Transform pos: 18.5,54.5 - parent: 40203 - - uid: 43638 + parent: 40599 + - uid: 44027 components: - type: Transform pos: 18.5,52.5 - parent: 40203 - - uid: 43639 + parent: 40599 + - uid: 44028 components: - type: Transform pos: 18.5,40.5 - parent: 40203 - - uid: 43640 + parent: 40599 + - uid: 44029 components: - type: Transform pos: 18.5,38.5 - parent: 40203 - - uid: 43641 + parent: 40599 + - uid: 44030 components: - type: Transform pos: 18.5,37.5 - parent: 40203 - - uid: 43642 + parent: 40599 + - uid: 44031 components: - type: Transform pos: 19.5,68.5 - parent: 40203 - - uid: 43643 + parent: 40599 + - uid: 44032 components: - type: Transform pos: 19.5,67.5 - parent: 40203 - - uid: 43644 + parent: 40599 + - uid: 44033 components: - type: Transform pos: 19.5,66.5 - parent: 40203 - - uid: 43645 + parent: 40599 + - uid: 44034 components: - type: Transform pos: 19.5,65.5 - parent: 40203 - - uid: 43646 + parent: 40599 + - uid: 44035 components: - type: Transform pos: 19.5,60.5 - parent: 40203 - - uid: 43647 + parent: 40599 + - uid: 44036 components: - type: Transform pos: 19.5,59.5 - parent: 40203 - - uid: 43648 + parent: 40599 + - uid: 44037 components: - type: Transform pos: 19.5,58.5 - parent: 40203 - - uid: 43649 + parent: 40599 + - uid: 44038 components: - type: Transform pos: 19.5,57.5 - parent: 40203 - - uid: 43650 + parent: 40599 + - uid: 44039 components: - type: Transform pos: 19.5,56.5 - parent: 40203 - - uid: 43651 + parent: 40599 + - uid: 44040 components: - type: Transform pos: 19.5,54.5 - parent: 40203 - - uid: 43652 + parent: 40599 + - uid: 44041 components: - type: Transform pos: 19.5,53.5 - parent: 40203 - - uid: 43653 + parent: 40599 + - uid: 44042 components: - type: Transform pos: 19.5,49.5 - parent: 40203 - - uid: 43654 + parent: 40599 + - uid: 44043 components: - type: Transform pos: 19.5,38.5 - parent: 40203 - - uid: 43655 + parent: 40599 + - uid: 44044 components: - type: Transform pos: 19.5,37.5 - parent: 40203 - - uid: 43656 + parent: 40599 + - uid: 44045 components: - type: Transform pos: 19.5,36.5 - parent: 40203 - - uid: 43657 + parent: 40599 + - uid: 44046 components: - type: Transform pos: 20.5,79.5 - parent: 40203 - - uid: 43658 + parent: 40599 + - uid: 44047 components: - type: Transform pos: 20.5,78.5 - parent: 40203 - - uid: 43659 + parent: 40599 + - uid: 44048 components: - type: Transform pos: 20.5,73.5 - parent: 40203 - - uid: 43660 + parent: 40599 + - uid: 44049 components: - type: Transform pos: 20.5,72.5 - parent: 40203 - - uid: 43661 + parent: 40599 + - uid: 44050 components: - type: Transform pos: 20.5,71.5 - parent: 40203 - - uid: 43662 + parent: 40599 + - uid: 44051 components: - type: Transform pos: 20.5,70.5 - parent: 40203 - - uid: 43663 + parent: 40599 + - uid: 44052 components: - type: Transform pos: 20.5,69.5 - parent: 40203 - - uid: 43664 + parent: 40599 + - uid: 44053 components: - type: Transform pos: 20.5,68.5 - parent: 40203 - - uid: 43665 + parent: 40599 + - uid: 44054 components: - type: Transform pos: 20.5,67.5 - parent: 40203 - - uid: 43666 + parent: 40599 + - uid: 44055 components: - type: Transform pos: 20.5,66.5 - parent: 40203 - - uid: 43667 + parent: 40599 + - uid: 44056 components: - type: Transform pos: 20.5,63.5 - parent: 40203 - - uid: 43668 + parent: 40599 + - uid: 44057 components: - type: Transform pos: 20.5,62.5 - parent: 40203 - - uid: 43669 + parent: 40599 + - uid: 44058 components: - type: Transform pos: 20.5,61.5 - parent: 40203 - - uid: 43670 + parent: 40599 + - uid: 44059 components: - type: Transform pos: 20.5,60.5 - parent: 40203 - - uid: 43671 + parent: 40599 + - uid: 44060 components: - type: Transform pos: 20.5,59.5 - parent: 40203 - - uid: 43672 + parent: 40599 + - uid: 44061 components: - type: Transform pos: 20.5,58.5 - parent: 40203 - - uid: 43673 + parent: 40599 + - uid: 44062 components: - type: Transform pos: 20.5,56.5 - parent: 40203 - - uid: 43674 + parent: 40599 + - uid: 44063 components: - type: Transform pos: 20.5,50.5 - parent: 40203 - - uid: 43675 + parent: 40599 + - uid: 44064 components: - type: Transform pos: 20.5,49.5 - parent: 40203 - - uid: 43676 + parent: 40599 + - uid: 44065 components: - type: Transform pos: 20.5,48.5 - parent: 40203 - - uid: 43677 + parent: 40599 + - uid: 44066 components: - type: Transform pos: 20.5,47.5 - parent: 40203 - - uid: 43678 + parent: 40599 + - uid: 44067 components: - type: Transform pos: 20.5,37.5 - parent: 40203 - - uid: 43679 + parent: 40599 + - uid: 44068 components: - type: Transform pos: 20.5,36.5 - parent: 40203 - - uid: 43680 + parent: 40599 + - uid: 44069 components: - type: Transform pos: 20.5,35.5 - parent: 40203 - - uid: 43681 + parent: 40599 + - uid: 44070 components: - type: Transform pos: 20.5,34.5 - parent: 40203 - - uid: 43682 + parent: 40599 + - uid: 44071 components: - type: Transform pos: 20.5,33.5 - parent: 40203 - - uid: 43683 + parent: 40599 + - uid: 44072 components: - type: Transform pos: 21.5,80.5 - parent: 40203 - - uid: 43684 + parent: 40599 + - uid: 44073 components: - type: Transform pos: 21.5,79.5 - parent: 40203 - - uid: 43685 + parent: 40599 + - uid: 44074 components: - type: Transform pos: 21.5,78.5 - parent: 40203 - - uid: 43686 + parent: 40599 + - uid: 44075 components: - type: Transform pos: 21.5,77.5 - parent: 40203 - - uid: 43687 + parent: 40599 + - uid: 44076 components: - type: Transform pos: 21.5,74.5 - parent: 40203 - - uid: 43688 + parent: 40599 + - uid: 44077 components: - type: Transform pos: 21.5,73.5 - parent: 40203 - - uid: 43689 + parent: 40599 + - uid: 44078 components: - type: Transform pos: 21.5,72.5 - parent: 40203 - - uid: 43690 + parent: 40599 + - uid: 44079 components: - type: Transform pos: 21.5,71.5 - parent: 40203 - - uid: 43691 + parent: 40599 + - uid: 44080 components: - type: Transform pos: 21.5,70.5 - parent: 40203 - - uid: 43692 + parent: 40599 + - uid: 44081 components: - type: Transform pos: 21.5,69.5 - parent: 40203 - - uid: 43693 + parent: 40599 + - uid: 44082 components: - type: Transform pos: 21.5,66.5 - parent: 40203 - - uid: 43694 + parent: 40599 + - uid: 44083 components: - type: Transform pos: 21.5,65.5 - parent: 40203 - - uid: 43695 + parent: 40599 + - uid: 44084 components: - type: Transform pos: 21.5,64.5 - parent: 40203 - - uid: 43696 + parent: 40599 + - uid: 44085 components: - type: Transform pos: 21.5,63.5 - parent: 40203 - - uid: 43697 + parent: 40599 + - uid: 44086 components: - type: Transform pos: 21.5,62.5 - parent: 40203 - - uid: 43698 + parent: 40599 + - uid: 44087 components: - type: Transform pos: 21.5,61.5 - parent: 40203 - - uid: 43699 + parent: 40599 + - uid: 44088 components: - type: Transform pos: 21.5,51.5 - parent: 40203 - - uid: 43700 + parent: 40599 + - uid: 44089 components: - type: Transform pos: 21.5,50.5 - parent: 40203 - - uid: 43701 + parent: 40599 + - uid: 44090 components: - type: Transform pos: 21.5,49.5 - parent: 40203 - - uid: 43702 + parent: 40599 + - uid: 44091 components: - type: Transform pos: 21.5,48.5 - parent: 40203 - - uid: 43703 + parent: 40599 + - uid: 44092 components: - type: Transform pos: 21.5,37.5 - parent: 40203 - - uid: 43704 + parent: 40599 + - uid: 44093 components: - type: Transform pos: 21.5,36.5 - parent: 40203 - - uid: 43705 + parent: 40599 + - uid: 44094 components: - type: Transform pos: 21.5,35.5 - parent: 40203 - - uid: 43706 + parent: 40599 + - uid: 44095 components: - type: Transform pos: 21.5,34.5 - parent: 40203 - - uid: 43707 + parent: 40599 + - uid: 44096 components: - type: Transform pos: 21.5,33.5 - parent: 40203 - - uid: 43708 + parent: 40599 + - uid: 44097 components: - type: Transform pos: 21.5,32.5 - parent: 40203 - - uid: 43709 + parent: 40599 + - uid: 44098 components: - type: Transform pos: 21.5,31.5 - parent: 40203 - - uid: 43710 + parent: 40599 + - uid: 44099 components: - type: Transform pos: 22.5,80.5 - parent: 40203 - - uid: 43711 + parent: 40599 + - uid: 44100 components: - type: Transform pos: 22.5,77.5 - parent: 40203 - - uid: 43712 + parent: 40599 + - uid: 44101 components: - type: Transform pos: 22.5,76.5 - parent: 40203 - - uid: 43713 + parent: 40599 + - uid: 44102 components: - type: Transform pos: 22.5,72.5 - parent: 40203 - - uid: 43714 + parent: 40599 + - uid: 44103 components: - type: Transform pos: 22.5,71.5 - parent: 40203 - - uid: 43715 + parent: 40599 + - uid: 44104 components: - type: Transform pos: 22.5,70.5 - parent: 40203 - - uid: 43716 + parent: 40599 + - uid: 44105 components: - type: Transform pos: 22.5,69.5 - parent: 40203 - - uid: 43717 + parent: 40599 + - uid: 44106 components: - type: Transform pos: 22.5,68.5 - parent: 40203 - - uid: 43718 + parent: 40599 + - uid: 44107 components: - type: Transform pos: 22.5,67.5 - parent: 40203 - - uid: 43719 + parent: 40599 + - uid: 44108 components: - type: Transform pos: 22.5,66.5 - parent: 40203 - - uid: 43720 + parent: 40599 + - uid: 44109 components: - type: Transform pos: 22.5,65.5 - parent: 40203 - - uid: 43721 + parent: 40599 + - uid: 44110 components: - type: Transform pos: 22.5,62.5 - parent: 40203 - - uid: 43722 + parent: 40599 + - uid: 44111 components: - type: Transform pos: 22.5,52.5 - parent: 40203 - - uid: 43723 + parent: 40599 + - uid: 44112 components: - type: Transform pos: 22.5,51.5 - parent: 40203 - - uid: 43724 + parent: 40599 + - uid: 44113 components: - type: Transform pos: 22.5,50.5 - parent: 40203 - - uid: 43725 + parent: 40599 + - uid: 44114 components: - type: Transform pos: 22.5,48.5 - parent: 40203 - - uid: 43726 + parent: 40599 + - uid: 44115 components: - type: Transform pos: 22.5,44.5 - parent: 40203 - - uid: 43727 + parent: 40599 + - uid: 44116 components: - type: Transform pos: 22.5,40.5 - parent: 40203 - - uid: 43728 + parent: 40599 + - uid: 44117 components: - type: Transform pos: 22.5,37.5 - parent: 40203 - - uid: 43729 + parent: 40599 + - uid: 44118 components: - type: Transform pos: 22.5,36.5 - parent: 40203 - - uid: 43730 + parent: 40599 + - uid: 44119 components: - type: Transform pos: 22.5,35.5 - parent: 40203 - - uid: 43731 + parent: 40599 + - uid: 44120 components: - type: Transform pos: 22.5,34.5 - parent: 40203 - - uid: 43732 + parent: 40599 + - uid: 44121 components: - type: Transform pos: 22.5,33.5 - parent: 40203 - - uid: 43733 + parent: 40599 + - uid: 44122 components: - type: Transform pos: 22.5,32.5 - parent: 40203 - - uid: 43734 + parent: 40599 + - uid: 44123 components: - type: Transform pos: 22.5,31.5 - parent: 40203 - - uid: 43735 + parent: 40599 + - uid: 44124 components: - type: Transform pos: 22.5,30.5 - parent: 40203 - - uid: 43736 + parent: 40599 + - uid: 44125 components: - type: Transform pos: 23.5,80.5 - parent: 40203 - - uid: 43737 + parent: 40599 + - uid: 44126 components: - type: Transform pos: 26.5,76.5 - parent: 40203 - - uid: 43738 + parent: 40599 + - uid: 44127 components: - type: Transform pos: 23.5,71.5 - parent: 40203 - - uid: 43739 + parent: 40599 + - uid: 44128 components: - type: Transform pos: 23.5,69.5 - parent: 40203 - - uid: 43740 + parent: 40599 + - uid: 44129 components: - type: Transform pos: 23.5,68.5 - parent: 40203 - - uid: 43741 + parent: 40599 + - uid: 44130 components: - type: Transform pos: 23.5,67.5 - parent: 40203 - - uid: 43742 + parent: 40599 + - uid: 44131 components: - type: Transform pos: 23.5,66.5 - parent: 40203 - - uid: 43743 + parent: 40599 + - uid: 44132 components: - type: Transform pos: 23.5,65.5 - parent: 40203 - - uid: 43744 + parent: 40599 + - uid: 44133 components: - type: Transform pos: 23.5,58.5 - parent: 40203 - - uid: 43745 + parent: 40599 + - uid: 44134 components: - type: Transform pos: 23.5,57.5 - parent: 40203 - - uid: 43746 + parent: 40599 + - uid: 44135 components: - type: Transform pos: 23.5,56.5 - parent: 40203 - - uid: 43747 + parent: 40599 + - uid: 44136 components: - type: Transform pos: 23.5,55.5 - parent: 40203 - - uid: 43748 + parent: 40599 + - uid: 44137 components: - type: Transform pos: 23.5,54.5 - parent: 40203 - - uid: 43749 + parent: 40599 + - uid: 44138 components: - type: Transform pos: 23.5,53.5 - parent: 40203 - - uid: 43750 + parent: 40599 + - uid: 44139 components: - type: Transform pos: 23.5,52.5 - parent: 40203 - - uid: 43751 + parent: 40599 + - uid: 44140 components: - type: Transform pos: 23.5,45.5 - parent: 40203 - - uid: 43752 + parent: 40599 + - uid: 44141 components: - type: Transform pos: 23.5,42.5 - parent: 40203 - - uid: 43753 + parent: 40599 + - uid: 44142 components: - type: Transform pos: 23.5,40.5 - parent: 40203 - - uid: 43754 + parent: 40599 + - uid: 44143 components: - type: Transform pos: 23.5,39.5 - parent: 40203 - - uid: 43755 + parent: 40599 + - uid: 44144 components: - type: Transform pos: 23.5,38.5 - parent: 40203 - - uid: 43756 + parent: 40599 + - uid: 44145 components: - type: Transform pos: 23.5,37.5 - parent: 40203 - - uid: 43757 + parent: 40599 + - uid: 44146 components: - type: Transform pos: 23.5,36.5 - parent: 40203 - - uid: 43758 + parent: 40599 + - uid: 44147 components: - type: Transform pos: 23.5,35.5 - parent: 40203 - - uid: 43759 + parent: 40599 + - uid: 44148 components: - type: Transform pos: 23.5,34.5 - parent: 40203 - - uid: 43760 + parent: 40599 + - uid: 44149 components: - type: Transform pos: 23.5,32.5 - parent: 40203 - - uid: 43761 + parent: 40599 + - uid: 44150 components: - type: Transform pos: 23.5,31.5 - parent: 40203 - - uid: 43762 + parent: 40599 + - uid: 44151 components: - type: Transform pos: 23.5,30.5 - parent: 40203 - - uid: 43763 + parent: 40599 + - uid: 44152 components: - type: Transform pos: 24.5,81.5 - parent: 40203 - - uid: 43764 + parent: 40599 + - uid: 44153 components: - type: Transform pos: 24.5,80.5 - parent: 40203 - - uid: 43765 + parent: 40599 + - uid: 44154 components: - type: Transform pos: 24.5,79.5 - parent: 40203 - - uid: 43766 + parent: 40599 + - uid: 44155 components: - type: Transform pos: 25.5,78.5 - parent: 40203 - - uid: 43767 + parent: 40599 + - uid: 44156 components: - type: Transform pos: 27.5,79.5 - parent: 40203 - - uid: 43768 + parent: 40599 + - uid: 44157 components: - type: Transform pos: 27.5,80.5 - parent: 40203 - - uid: 43769 + parent: 40599 + - uid: 44158 components: - type: Transform pos: 24.5,72.5 - parent: 40203 - - uid: 43770 + parent: 40599 + - uid: 44159 components: - type: Transform pos: 24.5,71.5 - parent: 40203 - - uid: 43771 + parent: 40599 + - uid: 44160 components: - type: Transform pos: 24.5,69.5 - parent: 40203 - - uid: 43772 + parent: 40599 + - uid: 44161 components: - type: Transform pos: 24.5,67.5 - parent: 40203 - - uid: 43773 + parent: 40599 + - uid: 44162 components: - type: Transform pos: 24.5,66.5 - parent: 40203 - - uid: 43774 + parent: 40599 + - uid: 44163 components: - type: Transform pos: 24.5,65.5 - parent: 40203 - - uid: 43775 + parent: 40599 + - uid: 44164 components: - type: Transform pos: 24.5,64.5 - parent: 40203 - - uid: 43776 + parent: 40599 + - uid: 44165 components: - type: Transform pos: 24.5,63.5 - parent: 40203 - - uid: 43777 + parent: 40599 + - uid: 44166 components: - type: Transform pos: 24.5,60.5 - parent: 40203 - - uid: 43778 + parent: 40599 + - uid: 44167 components: - type: Transform pos: 24.5,59.5 - parent: 40203 - - uid: 43779 + parent: 40599 + - uid: 44168 components: - type: Transform pos: 24.5,58.5 - parent: 40203 - - uid: 43780 + parent: 40599 + - uid: 44169 components: - type: Transform pos: 24.5,57.5 - parent: 40203 - - uid: 43781 + parent: 40599 + - uid: 44170 components: - type: Transform pos: 24.5,56.5 - parent: 40203 - - uid: 43782 + parent: 40599 + - uid: 44171 components: - type: Transform pos: 24.5,54.5 - parent: 40203 - - uid: 43783 + parent: 40599 + - uid: 44172 components: - type: Transform pos: 24.5,53.5 - parent: 40203 - - uid: 43784 + parent: 40599 + - uid: 44173 components: - type: Transform pos: 24.5,52.5 - parent: 40203 - - uid: 43785 + parent: 40599 + - uid: 44174 components: - type: Transform pos: 24.5,45.5 - parent: 40203 - - uid: 43786 + parent: 40599 + - uid: 44175 components: - type: Transform pos: 24.5,44.5 - parent: 40203 - - uid: 43787 + parent: 40599 + - uid: 44176 components: - type: Transform pos: 24.5,43.5 - parent: 40203 - - uid: 43788 + parent: 40599 + - uid: 44177 components: - type: Transform pos: 24.5,42.5 - parent: 40203 - - uid: 43789 + parent: 40599 + - uid: 44178 components: - type: Transform pos: 24.5,40.5 - parent: 40203 - - uid: 43790 + parent: 40599 + - uid: 44179 components: - type: Transform pos: 24.5,38.5 - parent: 40203 - - uid: 43791 + parent: 40599 + - uid: 44180 components: - type: Transform pos: 24.5,37.5 - parent: 40203 - - uid: 43792 + parent: 40599 + - uid: 44181 components: - type: Transform pos: 24.5,36.5 - parent: 40203 - - uid: 43793 + parent: 40599 + - uid: 44182 components: - type: Transform pos: 24.5,35.5 - parent: 40203 - - uid: 43794 + parent: 40599 + - uid: 44183 components: - type: Transform pos: 24.5,33.5 - parent: 40203 - - uid: 43795 + parent: 40599 + - uid: 44184 components: - type: Transform pos: 24.5,32.5 - parent: 40203 - - uid: 43796 + parent: 40599 + - uid: 44185 components: - type: Transform pos: 24.5,31.5 - parent: 40203 - - uid: 43797 + parent: 40599 + - uid: 44186 components: - type: Transform pos: 24.5,30.5 - parent: 40203 - - uid: 43798 + parent: 40599 + - uid: 44187 components: - type: Transform pos: 25.5,81.5 - parent: 40203 - - uid: 43799 + parent: 40599 + - uid: 44188 components: - type: Transform pos: 25.5,80.5 - parent: 40203 - - uid: 43800 + parent: 40599 + - uid: 44189 components: - type: Transform pos: 25.5,79.5 - parent: 40203 - - uid: 43801 + parent: 40599 + - uid: 44190 components: - type: Transform pos: 25.5,74.5 - parent: 40203 - - uid: 43802 + parent: 40599 + - uid: 44191 components: - type: Transform pos: 25.5,72.5 - parent: 40203 - - uid: 43803 + parent: 40599 + - uid: 44192 components: - type: Transform pos: 25.5,70.5 - parent: 40203 - - uid: 43804 + parent: 40599 + - uid: 44193 components: - type: Transform pos: 25.5,69.5 - parent: 40203 - - uid: 43805 + parent: 40599 + - uid: 44194 components: - type: Transform pos: 25.5,67.5 - parent: 40203 - - uid: 43806 + parent: 40599 + - uid: 44195 components: - type: Transform pos: 25.5,66.5 - parent: 40203 - - uid: 43807 + parent: 40599 + - uid: 44196 components: - type: Transform pos: 25.5,65.5 - parent: 40203 - - uid: 43808 + parent: 40599 + - uid: 44197 components: - type: Transform pos: 25.5,64.5 - parent: 40203 - - uid: 43809 + parent: 40599 + - uid: 44198 components: - type: Transform pos: 25.5,63.5 - parent: 40203 - - uid: 43810 + parent: 40599 + - uid: 44199 components: - type: Transform pos: 25.5,62.5 - parent: 40203 - - uid: 43811 + parent: 40599 + - uid: 44200 components: - type: Transform pos: 25.5,61.5 - parent: 40203 - - uid: 43812 + parent: 40599 + - uid: 44201 components: - type: Transform pos: 25.5,60.5 - parent: 40203 - - uid: 43813 + parent: 40599 + - uid: 44202 components: - type: Transform pos: 25.5,59.5 - parent: 40203 - - uid: 43814 + parent: 40599 + - uid: 44203 components: - type: Transform pos: 25.5,55.5 - parent: 40203 - - uid: 43815 + parent: 40599 + - uid: 44204 components: - type: Transform pos: 25.5,54.5 - parent: 40203 - - uid: 43816 + parent: 40599 + - uid: 44205 components: - type: Transform pos: 25.5,53.5 - parent: 40203 - - uid: 43817 + parent: 40599 + - uid: 44206 components: - type: Transform pos: 25.5,52.5 - parent: 40203 - - uid: 43818 + parent: 40599 + - uid: 44207 components: - type: Transform pos: 25.5,51.5 - parent: 40203 - - uid: 43819 + parent: 40599 + - uid: 44208 components: - type: Transform pos: 25.5,45.5 - parent: 40203 - - uid: 43820 + parent: 40599 + - uid: 44209 components: - type: Transform pos: 25.5,44.5 - parent: 40203 - - uid: 43821 + parent: 40599 + - uid: 44210 components: - type: Transform pos: 25.5,43.5 - parent: 40203 - - uid: 43822 + parent: 40599 + - uid: 44211 components: - type: Transform pos: 25.5,42.5 - parent: 40203 - - uid: 43823 + parent: 40599 + - uid: 44212 components: - type: Transform pos: 25.5,41.5 - parent: 40203 - - uid: 43824 + parent: 40599 + - uid: 44213 components: - type: Transform pos: 25.5,40.5 - parent: 40203 - - uid: 43825 + parent: 40599 + - uid: 44214 components: - type: Transform pos: 25.5,39.5 - parent: 40203 - - uid: 43826 + parent: 40599 + - uid: 44215 components: - type: Transform pos: 25.5,38.5 - parent: 40203 - - uid: 43827 + parent: 40599 + - uid: 44216 components: - type: Transform pos: 25.5,37.5 - parent: 40203 - - uid: 43828 + parent: 40599 + - uid: 44217 components: - type: Transform pos: 25.5,36.5 - parent: 40203 - - uid: 43829 + parent: 40599 + - uid: 44218 components: - type: Transform pos: 25.5,32.5 - parent: 40203 - - uid: 43830 + parent: 40599 + - uid: 44219 components: - type: Transform pos: 26.5,84.5 - parent: 40203 - - uid: 43831 + parent: 40599 + - uid: 44220 components: - type: Transform pos: 26.5,83.5 - parent: 40203 - - uid: 43832 + parent: 40599 + - uid: 44221 components: - type: Transform pos: 26.5,82.5 - parent: 40203 - - uid: 43833 + parent: 40599 + - uid: 44222 components: - type: Transform pos: 26.5,81.5 - parent: 40203 - - uid: 43834 + parent: 40599 + - uid: 44223 components: - type: Transform pos: 26.5,78.5 - parent: 40203 - - uid: 43835 + parent: 40599 + - uid: 44224 components: - type: Transform pos: 26.5,73.5 - parent: 40203 - - uid: 43836 + parent: 40599 + - uid: 44225 components: - type: Transform pos: 26.5,70.5 - parent: 40203 - - uid: 43837 + parent: 40599 + - uid: 44226 components: - type: Transform pos: 26.5,69.5 - parent: 40203 - - uid: 43838 + parent: 40599 + - uid: 44227 components: - type: Transform pos: 26.5,68.5 - parent: 40203 - - uid: 43839 + parent: 40599 + - uid: 44228 components: - type: Transform pos: 26.5,67.5 - parent: 40203 - - uid: 43840 + parent: 40599 + - uid: 44229 components: - type: Transform pos: 26.5,66.5 - parent: 40203 - - uid: 43841 + parent: 40599 + - uid: 44230 components: - type: Transform pos: 26.5,65.5 - parent: 40203 - - uid: 43842 + parent: 40599 + - uid: 44231 components: - type: Transform pos: 26.5,61.5 - parent: 40203 - - uid: 43843 + parent: 40599 + - uid: 44232 components: - type: Transform pos: 26.5,60.5 - parent: 40203 - - uid: 43844 + parent: 40599 + - uid: 44233 components: - type: Transform pos: 26.5,59.5 - parent: 40203 - - uid: 43845 + parent: 40599 + - uid: 44234 components: - type: Transform pos: 26.5,58.5 - parent: 40203 - - uid: 43846 + parent: 40599 + - uid: 44235 components: - type: Transform pos: 26.5,57.5 - parent: 40203 - - uid: 43847 + parent: 40599 + - uid: 44236 components: - type: Transform pos: 26.5,55.5 - parent: 40203 - - uid: 43848 + parent: 40599 + - uid: 44237 components: - type: Transform pos: 26.5,54.5 - parent: 40203 - - uid: 43849 + parent: 40599 + - uid: 44238 components: - type: Transform pos: 26.5,53.5 - parent: 40203 - - uid: 43850 + parent: 40599 + - uid: 44239 components: - type: Transform pos: 26.5,52.5 - parent: 40203 - - uid: 43851 + parent: 40599 + - uid: 44240 components: - type: Transform pos: 26.5,51.5 - parent: 40203 - - uid: 43852 + parent: 40599 + - uid: 44241 components: - type: Transform pos: 26.5,50.5 - parent: 40203 - - uid: 43853 + parent: 40599 + - uid: 44242 components: - type: Transform pos: 26.5,49.5 - parent: 40203 - - uid: 43854 + parent: 40599 + - uid: 44243 components: - type: Transform pos: 26.5,44.5 - parent: 40203 - - uid: 43855 + parent: 40599 + - uid: 44244 components: - type: Transform pos: 26.5,43.5 - parent: 40203 - - uid: 43856 + parent: 40599 + - uid: 44245 components: - type: Transform pos: 26.5,42.5 - parent: 40203 - - uid: 43857 + parent: 40599 + - uid: 44246 components: - type: Transform pos: 26.5,41.5 - parent: 40203 - - uid: 43858 + parent: 40599 + - uid: 44247 components: - type: Transform pos: 26.5,40.5 - parent: 40203 - - uid: 43859 + parent: 40599 + - uid: 44248 components: - type: Transform pos: 26.5,39.5 - parent: 40203 - - uid: 43860 + parent: 40599 + - uid: 44249 components: - type: Transform pos: 26.5,38.5 - parent: 40203 - - uid: 43861 + parent: 40599 + - uid: 44250 components: - type: Transform pos: 26.5,37.5 - parent: 40203 - - uid: 43862 + parent: 40599 + - uid: 44251 components: - type: Transform pos: 27.5,85.5 - parent: 40203 - - uid: 43863 + parent: 40599 + - uid: 44252 components: - type: Transform pos: 27.5,84.5 - parent: 40203 - - uid: 43864 + parent: 40599 + - uid: 44253 components: - type: Transform pos: 27.5,83.5 - parent: 40203 - - uid: 43865 + parent: 40599 + - uid: 44254 components: - type: Transform pos: 29.5,80.5 - parent: 40203 - - uid: 43866 + parent: 40599 + - uid: 44255 components: - type: Transform pos: 28.5,74.5 - parent: 40203 - - uid: 43867 + parent: 40599 + - uid: 44256 components: - type: Transform pos: 29.5,77.5 - parent: 40203 - - uid: 43868 + parent: 40599 + - uid: 44257 components: - type: Transform pos: 27.5,75.5 - parent: 40203 - - uid: 43869 + parent: 40599 + - uid: 44258 components: - type: Transform pos: 27.5,60.5 - parent: 40203 - - uid: 43870 + parent: 40599 + - uid: 44259 components: - type: Transform pos: 27.5,59.5 - parent: 40203 - - uid: 43871 + parent: 40599 + - uid: 44260 components: - type: Transform pos: 27.5,58.5 - parent: 40203 - - uid: 43872 + parent: 40599 + - uid: 44261 components: - type: Transform pos: 27.5,57.5 - parent: 40203 - - uid: 43873 + parent: 40599 + - uid: 44262 components: - type: Transform pos: 27.5,56.5 - parent: 40203 - - uid: 43874 + parent: 40599 + - uid: 44263 components: - type: Transform pos: 27.5,55.5 - parent: 40203 - - uid: 43875 + parent: 40599 + - uid: 44264 components: - type: Transform pos: 27.5,54.5 - parent: 40203 - - uid: 43876 + parent: 40599 + - uid: 44265 components: - type: Transform pos: 27.5,53.5 - parent: 40203 - - uid: 43877 + parent: 40599 + - uid: 44266 components: - type: Transform pos: 27.5,52.5 - parent: 40203 - - uid: 43878 + parent: 40599 + - uid: 44267 components: - type: Transform pos: 27.5,51.5 - parent: 40203 - - uid: 43879 + parent: 40599 + - uid: 44268 components: - type: Transform pos: 27.5,50.5 - parent: 40203 - - uid: 43880 + parent: 40599 + - uid: 44269 components: - type: Transform pos: 27.5,49.5 - parent: 40203 - - uid: 43881 + parent: 40599 + - uid: 44270 components: - type: Transform pos: 27.5,41.5 - parent: 40203 - - uid: 43882 + parent: 40599 + - uid: 44271 components: - type: Transform pos: 27.5,40.5 - parent: 40203 - - uid: 43883 + parent: 40599 + - uid: 44272 components: - type: Transform pos: 27.5,39.5 - parent: 40203 - - uid: 43884 + parent: 40599 + - uid: 44273 components: - type: Transform pos: 27.5,38.5 - parent: 40203 - - uid: 43885 + parent: 40599 + - uid: 44274 components: - type: Transform pos: 28.5,85.5 - parent: 40203 - - uid: 43886 + parent: 40599 + - uid: 44275 components: - type: Transform pos: 28.5,84.5 - parent: 40203 - - uid: 43887 + parent: 40599 + - uid: 44276 components: - type: Transform pos: 28.5,83.5 - parent: 40203 - - uid: 43888 + parent: 40599 + - uid: 44277 components: - type: Transform pos: 28.5,82.5 - parent: 40203 - - uid: 43889 + parent: 40599 + - uid: 44278 components: - type: Transform pos: 28.5,81.5 - parent: 40203 - - uid: 43890 + parent: 40599 + - uid: 44279 components: - type: Transform pos: 28.5,79.5 - parent: 40203 - - uid: 43891 + parent: 40599 + - uid: 44280 components: - type: Transform pos: 26.5,71.5 - parent: 40203 - - uid: 43892 + parent: 40599 + - uid: 44281 components: - type: Transform pos: 28.5,58.5 - parent: 40203 - - uid: 43893 + parent: 40599 + - uid: 44282 components: - type: Transform pos: 28.5,57.5 - parent: 40203 - - uid: 43894 + parent: 40599 + - uid: 44283 components: - type: Transform pos: 28.5,56.5 - parent: 40203 - - uid: 43895 + parent: 40599 + - uid: 44284 components: - type: Transform pos: 28.5,55.5 - parent: 40203 - - uid: 43896 + parent: 40599 + - uid: 44285 components: - type: Transform pos: 28.5,53.5 - parent: 40203 - - uid: 43897 + parent: 40599 + - uid: 44286 components: - type: Transform pos: 28.5,38.5 - parent: 40203 - - uid: 43898 + parent: 40599 + - uid: 44287 components: - type: Transform pos: 29.5,86.5 - parent: 40203 - - uid: 43899 + parent: 40599 + - uid: 44288 components: - type: Transform pos: 29.5,85.5 - parent: 40203 - - uid: 43900 + parent: 40599 + - uid: 44289 components: - type: Transform pos: 29.5,84.5 - parent: 40203 - - uid: 43901 + parent: 40599 + - uid: 44290 components: - type: Transform pos: 29.5,83.5 - parent: 40203 - - uid: 43902 + parent: 40599 + - uid: 44291 components: - type: Transform pos: 29.5,82.5 - parent: 40203 - - uid: 43903 + parent: 40599 + - uid: 44292 components: - type: Transform pos: 29.5,81.5 - parent: 40203 - - uid: 43904 + parent: 40599 + - uid: 44293 components: - type: Transform pos: 29.5,79.5 - parent: 40203 - - uid: 43905 + parent: 40599 + - uid: 44294 components: - type: Transform pos: 31.5,74.5 - parent: 40203 - - uid: 43906 + parent: 40599 + - uid: 44295 components: - type: Transform pos: 29.5,63.5 - parent: 40203 - - uid: 43907 + parent: 40599 + - uid: 44296 components: - type: Transform pos: 29.5,62.5 - parent: 40203 - - uid: 43908 + parent: 40599 + - uid: 44297 components: - type: Transform pos: 29.5,61.5 - parent: 40203 - - uid: 43909 + parent: 40599 + - uid: 44298 components: - type: Transform pos: 29.5,60.5 - parent: 40203 - - uid: 43910 + parent: 40599 + - uid: 44299 components: - type: Transform pos: 29.5,56.5 - parent: 40203 - - uid: 43911 + parent: 40599 + - uid: 44300 components: - type: Transform pos: 29.5,55.5 - parent: 40203 - - uid: 43912 + parent: 40599 + - uid: 44301 components: - type: Transform pos: 30.5,86.5 - parent: 40203 - - uid: 43913 + parent: 40599 + - uid: 44302 components: - type: Transform pos: 30.5,85.5 - parent: 40203 - - uid: 43914 + parent: 40599 + - uid: 44303 components: - type: Transform pos: 30.5,84.5 - parent: 40203 - - uid: 43915 + parent: 40599 + - uid: 44304 components: - type: Transform pos: 30.5,83.5 - parent: 40203 - - uid: 43916 + parent: 40599 + - uid: 44305 components: - type: Transform pos: 30.5,80.5 - parent: 40203 - - uid: 43917 + parent: 40599 + - uid: 44306 components: - type: Transform pos: 29.5,74.5 - parent: 40203 - - uid: 43918 + parent: 40599 + - uid: 44307 components: - type: Transform pos: 30.5,62.5 - parent: 40203 - - uid: 43919 + parent: 40599 + - uid: 44308 components: - type: Transform pos: 30.5,61.5 - parent: 40203 - - uid: 43920 + parent: 40599 + - uid: 44309 components: - type: Transform pos: 30.5,60.5 - parent: 40203 - - uid: 43921 + parent: 40599 + - uid: 44310 components: - type: Transform pos: 31.5,87.5 - parent: 40203 - - uid: 43922 + parent: 40599 + - uid: 44311 components: - type: Transform pos: 31.5,86.5 - parent: 40203 - - uid: 43923 + parent: 40599 + - uid: 44312 components: - type: Transform pos: 31.5,85.5 - parent: 40203 - - uid: 43924 + parent: 40599 + - uid: 44313 components: - type: Transform pos: 31.5,84.5 - parent: 40203 - - uid: 43925 + parent: 40599 + - uid: 44314 components: - type: Transform pos: 29.5,75.5 - parent: 40203 - - uid: 43926 + parent: 40599 + - uid: 44315 components: - type: Transform pos: 34.5,77.5 - parent: 40203 - - uid: 43927 + parent: 40599 + - uid: 44316 components: - type: Transform pos: 25.5,71.5 - parent: 40203 - - uid: 43928 + parent: 40599 + - uid: 44317 components: - type: Transform pos: 31.5,51.5 - parent: 40203 - - uid: 43929 + parent: 40599 + - uid: 44318 components: - type: Transform pos: 31.5,50.5 - parent: 40203 - - uid: 43930 + parent: 40599 + - uid: 44319 components: - type: Transform pos: 31.5,49.5 - parent: 40203 - - uid: 43931 + parent: 40599 + - uid: 44320 components: - type: Transform pos: 31.5,46.5 - parent: 40203 - - uid: 43932 + parent: 40599 + - uid: 44321 components: - type: Transform pos: 32.5,87.5 - parent: 40203 - - uid: 43933 + parent: 40599 + - uid: 44322 components: - type: Transform pos: 32.5,86.5 - parent: 40203 - - uid: 43934 + parent: 40599 + - uid: 44323 components: - type: Transform pos: 32.5,85.5 - parent: 40203 - - uid: 43935 + parent: 40599 + - uid: 44324 components: - type: Transform pos: 34.5,74.5 - parent: 40203 - - uid: 43936 + parent: 40599 + - uid: 44325 components: - type: Transform pos: 26.5,72.5 - parent: 40203 - - uid: 43937 + parent: 40599 + - uid: 44326 components: - type: Transform pos: 32.5,53.5 - parent: 40203 - - uid: 43938 + parent: 40599 + - uid: 44327 components: - type: Transform pos: 32.5,52.5 - parent: 40203 - - uid: 43939 + parent: 40599 + - uid: 44328 components: - type: Transform pos: 32.5,51.5 - parent: 40203 - - uid: 43940 + parent: 40599 + - uid: 44329 components: - type: Transform pos: 32.5,50.5 - parent: 40203 - - uid: 43941 + parent: 40599 + - uid: 44330 components: - type: Transform pos: 32.5,49.5 - parent: 40203 - - uid: 43942 + parent: 40599 + - uid: 44331 components: - type: Transform pos: 32.5,48.5 - parent: 40203 - - uid: 43943 + parent: 40599 + - uid: 44332 components: - type: Transform pos: 32.5,46.5 - parent: 40203 - - uid: 43944 + parent: 40599 + - uid: 44333 components: - type: Transform pos: 32.5,45.5 - parent: 40203 - - uid: 43945 + parent: 40599 + - uid: 44334 components: - type: Transform pos: 32.5,44.5 - parent: 40203 - - uid: 43946 + parent: 40599 + - uid: 44335 components: - type: Transform pos: 32.5,43.5 - parent: 40203 - - uid: 43947 + parent: 40599 + - uid: 44336 components: - type: Transform pos: 32.5,42.5 - parent: 40203 - - uid: 43948 + parent: 40599 + - uid: 44337 components: - type: Transform pos: 32.5,41.5 - parent: 40203 - - uid: 43949 + parent: 40599 + - uid: 44338 components: - type: Transform pos: 33.5,87.5 - parent: 40203 - - uid: 43950 + parent: 40599 + - uid: 44339 components: - type: Transform pos: 33.5,86.5 - parent: 40203 - - uid: 43951 + parent: 40599 + - uid: 44340 components: - type: Transform pos: 33.5,80.5 - parent: 40203 - - uid: 43952 + parent: 40599 + - uid: 44341 components: - type: Transform pos: 33.5,79.5 - parent: 40203 - - uid: 43953 + parent: 40599 + - uid: 44342 components: - type: Transform pos: 30.5,75.5 - parent: 40203 - - uid: 43954 + parent: 40599 + - uid: 44343 components: - type: Transform pos: 33.5,52.5 - parent: 40203 - - uid: 43955 + parent: 40599 + - uid: 44344 components: - type: Transform pos: 33.5,51.5 - parent: 40203 - - uid: 43956 + parent: 40599 + - uid: 44345 components: - type: Transform pos: 33.5,50.5 - parent: 40203 - - uid: 43957 + parent: 40599 + - uid: 44346 components: - type: Transform pos: 33.5,49.5 - parent: 40203 - - uid: 43958 + parent: 40599 + - uid: 44347 components: - type: Transform pos: 33.5,48.5 - parent: 40203 - - uid: 43959 + parent: 40599 + - uid: 44348 components: - type: Transform pos: 33.5,45.5 - parent: 40203 - - uid: 43960 + parent: 40599 + - uid: 44349 components: - type: Transform pos: 33.5,44.5 - parent: 40203 - - uid: 43961 + parent: 40599 + - uid: 44350 components: - type: Transform pos: 33.5,42.5 - parent: 40203 - - uid: 43962 + parent: 40599 + - uid: 44351 components: - type: Transform pos: 33.5,40.5 - parent: 40203 - - uid: 43963 + parent: 40599 + - uid: 44352 components: - type: Transform pos: 34.5,88.5 - parent: 40203 - - uid: 43964 + parent: 40599 + - uid: 44353 components: - type: Transform pos: 34.5,87.5 - parent: 40203 - - uid: 43965 + parent: 40599 + - uid: 44354 components: - type: Transform pos: 34.5,86.5 - parent: 40203 - - uid: 43966 + parent: 40599 + - uid: 44355 components: - type: Transform pos: 34.5,81.5 - parent: 40203 - - uid: 43967 + parent: 40599 + - uid: 44356 components: - type: Transform pos: 34.5,80.5 - parent: 40203 - - uid: 43968 + parent: 40599 + - uid: 44357 components: - type: Transform pos: 34.5,79.5 - parent: 40203 - - uid: 43969 + parent: 40599 + - uid: 44358 components: - type: Transform pos: 30.5,74.5 - parent: 40203 - - uid: 43970 + parent: 40599 + - uid: 44359 components: - type: Transform pos: 32.5,55.5 - parent: 40203 - - uid: 43971 + parent: 40599 + - uid: 44360 components: - type: Transform pos: 34.5,53.5 - parent: 40203 - - uid: 43972 + parent: 40599 + - uid: 44361 components: - type: Transform pos: 34.5,51.5 - parent: 40203 - - uid: 43973 + parent: 40599 + - uid: 44362 components: - type: Transform pos: 34.5,50.5 - parent: 40203 - - uid: 43974 + parent: 40599 + - uid: 44363 components: - type: Transform pos: 34.5,49.5 - parent: 40203 - - uid: 43975 + parent: 40599 + - uid: 44364 components: - type: Transform pos: 34.5,48.5 - parent: 40203 - - uid: 43976 + parent: 40599 + - uid: 44365 components: - type: Transform pos: 34.5,42.5 - parent: 40203 - - uid: 43977 + parent: 40599 + - uid: 44366 components: - type: Transform pos: 34.5,41.5 - parent: 40203 - - uid: 43978 + parent: 40599 + - uid: 44367 components: - type: Transform pos: 34.5,40.5 - parent: 40203 - - uid: 43979 + parent: 40599 + - uid: 44368 components: - type: Transform pos: 35.5,88.5 - parent: 40203 - - uid: 43980 + parent: 40599 + - uid: 44369 components: - type: Transform pos: 35.5,85.5 - parent: 40203 - - uid: 43981 + parent: 40599 + - uid: 44370 components: - type: Transform pos: 36.5,53.5 - parent: 40203 - - uid: 43982 + parent: 40599 + - uid: 44371 components: - type: Transform pos: 35.5,51.5 - parent: 40203 - - uid: 43983 + parent: 40599 + - uid: 44372 components: - type: Transform pos: 35.5,50.5 - parent: 40203 - - uid: 43984 + parent: 40599 + - uid: 44373 components: - type: Transform pos: 35.5,44.5 - parent: 40203 - - uid: 43985 + parent: 40599 + - uid: 44374 components: - type: Transform pos: 35.5,41.5 - parent: 40203 - - uid: 43986 + parent: 40599 + - uid: 44375 components: - type: Transform pos: 36.5,88.5 - parent: 40203 - - uid: 43987 + parent: 40599 + - uid: 44376 components: - type: Transform pos: 35.5,53.5 - parent: 40203 - - uid: 43988 + parent: 40599 + - uid: 44377 components: - type: Transform pos: 36.5,52.5 - parent: 40203 - - uid: 43989 + parent: 40599 + - uid: 44378 components: - type: Transform pos: 36.5,51.5 - parent: 40203 - - uid: 43990 + parent: 40599 + - uid: 44379 components: - type: Transform pos: 36.5,50.5 - parent: 40203 - - uid: 43991 + parent: 40599 + - uid: 44380 components: - type: Transform pos: 36.5,45.5 - parent: 40203 - - uid: 43992 + parent: 40599 + - uid: 44381 components: - type: Transform pos: 36.5,44.5 - parent: 40203 - - uid: 43993 + parent: 40599 + - uid: 44382 components: - type: Transform pos: 36.5,42.5 - parent: 40203 - - uid: 43994 + parent: 40599 + - uid: 44383 components: - type: Transform pos: 37.5,91.5 - parent: 40203 - - uid: 43995 + parent: 40599 + - uid: 44384 components: - type: Transform pos: 37.5,90.5 - parent: 40203 - - uid: 43996 + parent: 40599 + - uid: 44385 components: - type: Transform pos: 37.5,89.5 - parent: 40203 - - uid: 43997 + parent: 40599 + - uid: 44386 components: - type: Transform pos: 37.5,88.5 - parent: 40203 - - uid: 43998 + parent: 40599 + - uid: 44387 components: - type: Transform pos: 37.5,87.5 - parent: 40203 - - uid: 43999 + parent: 40599 + - uid: 44388 components: - type: Transform pos: 37.5,85.5 - parent: 40203 - - uid: 44000 + parent: 40599 + - uid: 44389 components: - type: Transform pos: 37.5,53.5 - parent: 40203 - - uid: 44001 + parent: 40599 + - uid: 44390 components: - type: Transform pos: 37.5,52.5 - parent: 40203 - - uid: 44002 + parent: 40599 + - uid: 44391 components: - type: Transform pos: 37.5,51.5 - parent: 40203 - - uid: 44003 + parent: 40599 + - uid: 44392 components: - type: Transform pos: 37.5,46.5 - parent: 40203 - - uid: 44004 + parent: 40599 + - uid: 44393 components: - type: Transform pos: 37.5,45.5 - parent: 40203 - - uid: 44005 + parent: 40599 + - uid: 44394 components: - type: Transform pos: 37.5,44.5 - parent: 40203 - - uid: 44006 + parent: 40599 + - uid: 44395 components: - type: Transform pos: 37.5,43.5 - parent: 40203 - - uid: 44007 + parent: 40599 + - uid: 44396 components: - type: Transform pos: 38.5,92.5 - parent: 40203 - - uid: 44008 + parent: 40599 + - uid: 44397 components: - type: Transform pos: 38.5,91.5 - parent: 40203 - - uid: 44009 + parent: 40599 + - uid: 44398 components: - type: Transform pos: 38.5,90.5 - parent: 40203 - - uid: 44010 + parent: 40599 + - uid: 44399 components: - type: Transform pos: 38.5,89.5 - parent: 40203 - - uid: 44011 + parent: 40599 + - uid: 44400 components: - type: Transform pos: 38.5,88.5 - parent: 40203 - - uid: 44012 + parent: 40599 + - uid: 44401 components: - type: Transform pos: 38.5,87.5 - parent: 40203 - - uid: 44013 + parent: 40599 + - uid: 44402 components: - type: Transform pos: 38.5,85.5 - parent: 40203 - - uid: 44014 + parent: 40599 + - uid: 44403 components: - type: Transform pos: 38.5,53.5 - parent: 40203 - - uid: 44015 + parent: 40599 + - uid: 44404 components: - type: Transform pos: 38.5,52.5 - parent: 40203 - - uid: 44016 + parent: 40599 + - uid: 44405 components: - type: Transform pos: 38.5,47.5 - parent: 40203 - - uid: 44017 + parent: 40599 + - uid: 44406 components: - type: Transform pos: 38.5,46.5 - parent: 40203 - - uid: 44018 + parent: 40599 + - uid: 44407 components: - type: Transform pos: 38.5,45.5 - parent: 40203 - - uid: 44019 + parent: 40599 + - uid: 44408 components: - type: Transform pos: 38.5,44.5 - parent: 40203 - - uid: 44020 + parent: 40599 + - uid: 44409 components: - type: Transform pos: 39.5,92.5 - parent: 40203 - - uid: 44021 + parent: 40599 + - uid: 44410 components: - type: Transform pos: 39.5,91.5 - parent: 40203 - - uid: 44022 + parent: 40599 + - uid: 44411 components: - type: Transform pos: 39.5,90.5 - parent: 40203 - - uid: 44023 + parent: 40599 + - uid: 44412 components: - type: Transform pos: 39.5,89.5 - parent: 40203 - - uid: 44024 + parent: 40599 + - uid: 44413 components: - type: Transform pos: 39.5,88.5 - parent: 40203 - - uid: 44025 + parent: 40599 + - uid: 44414 components: - type: Transform pos: 39.5,87.5 - parent: 40203 - - uid: 44026 + parent: 40599 + - uid: 44415 components: - type: Transform pos: 39.5,86.5 - parent: 40203 - - uid: 44027 + parent: 40599 + - uid: 44416 components: - type: Transform pos: 39.5,53.5 - parent: 40203 - - uid: 44028 + parent: 40599 + - uid: 44417 components: - type: Transform pos: 46.5,50.5 - parent: 40203 - - uid: 44029 + parent: 40599 + - uid: 44418 components: - type: Transform pos: 39.5,48.5 - parent: 40203 - - uid: 44030 + parent: 40599 + - uid: 44419 components: - type: Transform pos: 39.5,47.5 - parent: 40203 - - uid: 44031 + parent: 40599 + - uid: 44420 components: - type: Transform pos: 39.5,46.5 - parent: 40203 - - uid: 44032 + parent: 40599 + - uid: 44421 components: - type: Transform pos: 39.5,45.5 - parent: 40203 - - uid: 44033 + parent: 40599 + - uid: 44422 components: - type: Transform pos: 40.5,92.5 - parent: 40203 - - uid: 44034 + parent: 40599 + - uid: 44423 components: - type: Transform pos: 40.5,91.5 - parent: 40203 - - uid: 44035 + parent: 40599 + - uid: 44424 components: - type: Transform pos: 40.5,90.5 - parent: 40203 - - uid: 44036 + parent: 40599 + - uid: 44425 components: - type: Transform pos: 40.5,89.5 - parent: 40203 - - uid: 44037 + parent: 40599 + - uid: 44426 components: - type: Transform pos: 40.5,88.5 - parent: 40203 - - uid: 44038 + parent: 40599 + - uid: 44427 components: - type: Transform pos: 40.5,87.5 - parent: 40203 - - uid: 44039 + parent: 40599 + - uid: 44428 components: - type: Transform pos: 40.5,86.5 - parent: 40203 - - uid: 44040 + parent: 40599 + - uid: 44429 components: - type: Transform pos: 41.5,50.5 - parent: 40203 - - uid: 44041 + parent: 40599 + - uid: 44430 components: - type: Transform pos: 40.5,46.5 - parent: 40203 - - uid: 44042 + parent: 40599 + - uid: 44431 components: - type: Transform pos: 41.5,92.5 - parent: 40203 - - uid: 44043 + parent: 40599 + - uid: 44432 components: - type: Transform pos: 41.5,91.5 - parent: 40203 - - uid: 44044 + parent: 40599 + - uid: 44433 components: - type: Transform pos: 41.5,90.5 - parent: 40203 - - uid: 44045 + parent: 40599 + - uid: 44434 components: - type: Transform pos: 41.5,89.5 - parent: 40203 - - uid: 44046 + parent: 40599 + - uid: 44435 components: - type: Transform pos: 41.5,88.5 - parent: 40203 - - uid: 44047 + parent: 40599 + - uid: 44436 components: - type: Transform pos: 41.5,87.5 - parent: 40203 - - uid: 44048 + parent: 40599 + - uid: 44437 components: - type: Transform pos: 41.5,86.5 - parent: 40203 - - uid: 44049 + parent: 40599 + - uid: 44438 components: - type: Transform pos: 41.5,47.5 - parent: 40203 - - uid: 44050 + parent: 40599 + - uid: 44439 components: - type: Transform pos: 41.5,46.5 - parent: 40203 - - uid: 44051 + parent: 40599 + - uid: 44440 components: - type: Transform pos: 42.5,92.5 - parent: 40203 - - uid: 44052 + parent: 40599 + - uid: 44441 components: - type: Transform pos: 42.5,91.5 - parent: 40203 - - uid: 44053 + parent: 40599 + - uid: 44442 components: - type: Transform pos: 42.5,90.5 - parent: 40203 - - uid: 44054 + parent: 40599 + - uid: 44443 components: - type: Transform pos: 42.5,89.5 - parent: 40203 - - uid: 44055 + parent: 40599 + - uid: 44444 components: - type: Transform pos: 42.5,88.5 - parent: 40203 - - uid: 44056 + parent: 40599 + - uid: 44445 components: - type: Transform pos: 42.5,87.5 - parent: 40203 - - uid: 44057 + parent: 40599 + - uid: 44446 components: - type: Transform pos: 42.5,86.5 - parent: 40203 - - uid: 44058 + parent: 40599 + - uid: 44447 components: - type: Transform pos: 42.5,51.5 - parent: 40203 - - uid: 44059 + parent: 40599 + - uid: 44448 components: - type: Transform pos: 46.5,47.5 - parent: 40203 - - uid: 44060 + parent: 40599 + - uid: 44449 components: - type: Transform pos: 45.5,47.5 - parent: 40203 - - uid: 44061 + parent: 40599 + - uid: 44450 components: - type: Transform pos: 44.5,48.5 - parent: 40203 - - uid: 44062 + parent: 40599 + - uid: 44451 components: - type: Transform pos: 43.5,92.5 - parent: 40203 - - uid: 44063 + parent: 40599 + - uid: 44452 components: - type: Transform pos: 43.5,91.5 - parent: 40203 - - uid: 44064 + parent: 40599 + - uid: 44453 components: - type: Transform pos: 43.5,90.5 - parent: 40203 - - uid: 44065 + parent: 40599 + - uid: 44454 components: - type: Transform pos: 43.5,89.5 - parent: 40203 - - uid: 44066 + parent: 40599 + - uid: 44455 components: - type: Transform pos: 43.5,88.5 - parent: 40203 - - uid: 44067 + parent: 40599 + - uid: 44456 components: - type: Transform pos: 43.5,87.5 - parent: 40203 - - uid: 44068 + parent: 40599 + - uid: 44457 components: - type: Transform pos: 43.5,86.5 - parent: 40203 - - uid: 44069 + parent: 40599 + - uid: 44458 components: - type: Transform pos: 45.5,46.5 - parent: 40203 - - uid: 44070 + parent: 40599 + - uid: 44459 components: - type: Transform pos: 46.5,46.5 - parent: 40203 - - uid: 44071 + parent: 40599 + - uid: 44460 components: - type: Transform pos: 47.5,47.5 - parent: 40203 - - uid: 44072 + parent: 40599 + - uid: 44461 components: - type: Transform pos: 44.5,92.5 - parent: 40203 - - uid: 44073 + parent: 40599 + - uid: 44462 components: - type: Transform pos: 44.5,91.5 - parent: 40203 - - uid: 44074 + parent: 40599 + - uid: 44463 components: - type: Transform pos: 44.5,90.5 - parent: 40203 - - uid: 44075 + parent: 40599 + - uid: 44464 components: - type: Transform pos: 44.5,89.5 - parent: 40203 - - uid: 44076 + parent: 40599 + - uid: 44465 components: - type: Transform pos: 44.5,88.5 - parent: 40203 - - uid: 44077 + parent: 40599 + - uid: 44466 components: - type: Transform pos: 46.5,49.5 - parent: 40203 - - uid: 44078 + parent: 40599 + - uid: 44467 components: - type: Transform pos: 47.5,50.5 - parent: 40203 - - uid: 44079 + parent: 40599 + - uid: 44468 components: - type: Transform pos: 47.5,53.5 - parent: 40203 - - uid: 44080 + parent: 40599 + - uid: 44469 components: - type: Transform pos: 47.5,51.5 - parent: 40203 - - uid: 44081 + parent: 40599 + - uid: 44470 components: - type: Transform pos: 45.5,92.5 - parent: 40203 - - uid: 44082 + parent: 40599 + - uid: 44471 components: - type: Transform pos: 45.5,91.5 - parent: 40203 - - uid: 44083 + parent: 40599 + - uid: 44472 components: - type: Transform pos: 45.5,90.5 - parent: 40203 - - uid: 44084 + parent: 40599 + - uid: 44473 components: - type: Transform pos: 45.5,89.5 - parent: 40203 - - uid: 44085 + parent: 40599 + - uid: 44474 components: - type: Transform pos: 45.5,88.5 - parent: 40203 - - uid: 44086 + parent: 40599 + - uid: 44475 components: - type: Transform pos: 45.5,53.5 - parent: 40203 - - uid: 44087 + parent: 40599 + - uid: 44476 components: - type: Transform pos: 45.5,52.5 - parent: 40203 - - uid: 44088 + parent: 40599 + - uid: 44477 components: - type: Transform pos: 45.5,51.5 - parent: 40203 - - uid: 44089 + parent: 40599 + - uid: 44478 components: - type: Transform pos: 45.5,49.5 - parent: 40203 - - uid: 44090 + parent: 40599 + - uid: 44479 components: - type: Transform pos: 46.5,48.5 - parent: 40203 - - uid: 44091 + parent: 40599 + - uid: 44480 components: - type: Transform pos: 47.5,49.5 - parent: 40203 - - uid: 44092 + parent: 40599 + - uid: 44481 components: - type: Transform pos: 47.5,52.5 - parent: 40203 - - uid: 44093 + parent: 40599 + - uid: 44482 components: - type: Transform pos: 46.5,92.5 - parent: 40203 - - uid: 44094 + parent: 40599 + - uid: 44483 components: - type: Transform pos: 46.5,91.5 - parent: 40203 - - uid: 44095 + parent: 40599 + - uid: 44484 components: - type: Transform pos: 46.5,90.5 - parent: 40203 - - uid: 44096 + parent: 40599 + - uid: 44485 components: - type: Transform pos: 46.5,89.5 - parent: 40203 - - uid: 44097 + parent: 40599 + - uid: 44486 components: - type: Transform pos: 46.5,88.5 - parent: 40203 - - uid: 44098 + parent: 40599 + - uid: 44487 components: - type: Transform pos: 46.5,53.5 - parent: 40203 - - uid: 44099 + parent: 40599 + - uid: 44488 components: - type: Transform pos: 46.5,52.5 - parent: 40203 - - uid: 44100 + parent: 40599 + - uid: 44489 components: - type: Transform pos: 46.5,51.5 - parent: 40203 - - uid: 44101 + parent: 40599 + - uid: 44490 components: - type: Transform pos: 45.5,50.5 - parent: 40203 - - uid: 44102 + parent: 40599 + - uid: 44491 components: - type: Transform pos: 47.5,48.5 - parent: 40203 - - uid: 44103 + parent: 40599 + - uid: 44492 components: - type: Transform pos: 47.5,46.5 - parent: 40203 - - uid: 44104 + parent: 40599 + - uid: 44493 components: - type: Transform pos: 47.5,92.5 - parent: 40203 - - uid: 44105 + parent: 40599 + - uid: 44494 components: - type: Transform pos: 47.5,91.5 - parent: 40203 - - uid: 44106 + parent: 40599 + - uid: 44495 components: - type: Transform pos: 47.5,90.5 - parent: 40203 - - uid: 44107 + parent: 40599 + - uid: 44496 components: - type: Transform pos: 47.5,89.5 - parent: 40203 - - uid: 44108 + parent: 40599 + - uid: 44497 components: - type: Transform pos: 48.5,92.5 - parent: 40203 - - uid: 44109 + parent: 40599 + - uid: 44498 components: - type: Transform pos: 48.5,91.5 - parent: 40203 - - uid: 44110 + parent: 40599 + - uid: 44499 components: - type: Transform pos: 48.5,90.5 - parent: 40203 - - uid: 44111 + parent: 40599 + - uid: 44500 components: - type: Transform pos: 48.5,89.5 - parent: 40203 - - uid: 44112 + parent: 40599 + - uid: 44501 components: - type: Transform pos: 48.5,88.5 - parent: 40203 - - uid: 44113 + parent: 40599 + - uid: 44502 components: - type: Transform pos: 49.5,91.5 - parent: 40203 - - uid: 44114 + parent: 40599 + - uid: 44503 components: - type: Transform pos: 49.5,90.5 - parent: 40203 - - uid: 44115 + parent: 40599 + - uid: 44504 components: - type: Transform pos: 49.5,89.5 - parent: 40203 - - uid: 44116 + parent: 40599 + - uid: 44505 components: - type: Transform pos: 49.5,88.5 - parent: 40203 - - uid: 44117 + parent: 40599 + - uid: 44506 components: - type: Transform pos: 50.5,91.5 - parent: 40203 - - uid: 44118 + parent: 40599 + - uid: 44507 components: - type: Transform pos: 50.5,90.5 - parent: 40203 - - uid: 44119 + parent: 40599 + - uid: 44508 components: - type: Transform pos: 50.5,89.5 - parent: 40203 - - uid: 44120 + parent: 40599 + - uid: 44509 components: - type: Transform pos: 50.5,88.5 - parent: 40203 - - uid: 44121 + parent: 40599 + - uid: 44510 components: - type: Transform pos: 51.5,91.5 - parent: 40203 - - uid: 44122 + parent: 40599 + - uid: 44511 components: - type: Transform pos: 51.5,90.5 - parent: 40203 - - uid: 44123 + parent: 40599 + - uid: 44512 components: - type: Transform pos: 51.5,89.5 - parent: 40203 - - uid: 44124 + parent: 40599 + - uid: 44513 components: - type: Transform pos: 51.5,88.5 - parent: 40203 - - uid: 44125 + parent: 40599 + - uid: 44514 components: - type: Transform pos: 52.5,91.5 - parent: 40203 - - uid: 44126 + parent: 40599 + - uid: 44515 components: - type: Transform pos: 52.5,90.5 - parent: 40203 - - uid: 44127 + parent: 40599 + - uid: 44516 components: - type: Transform pos: 52.5,89.5 - parent: 40203 - - uid: 44128 + parent: 40599 + - uid: 44517 components: - type: Transform pos: 52.5,88.5 - parent: 40203 - - uid: 44129 + parent: 40599 + - uid: 44518 components: - type: Transform pos: 53.5,90.5 - parent: 40203 - - uid: 44130 + parent: 40599 + - uid: 44519 components: - type: Transform pos: 53.5,89.5 - parent: 40203 - - uid: 44131 + parent: 40599 + - uid: 44520 components: - type: Transform pos: 53.5,88.5 - parent: 40203 - - uid: 44132 + parent: 40599 + - uid: 44521 components: - type: Transform pos: 54.5,90.5 - parent: 40203 - - uid: 44133 + parent: 40599 + - uid: 44522 components: - type: Transform pos: 54.5,89.5 - parent: 40203 - - uid: 44134 + parent: 40599 + - uid: 44523 components: - type: Transform pos: 54.5,88.5 - parent: 40203 - - uid: 44135 + parent: 40599 + - uid: 44524 components: - type: Transform pos: 54.5,87.5 - parent: 40203 - - uid: 44136 + parent: 40599 + - uid: 44525 components: - type: Transform pos: 54.5,86.5 - parent: 40203 - - uid: 44137 + parent: 40599 + - uid: 44526 components: - type: Transform pos: 54.5,85.5 - parent: 40203 - - uid: 44138 + parent: 40599 + - uid: 44527 components: - type: Transform pos: 52.5,84.5 - parent: 40203 - - uid: 44139 + parent: 40599 + - uid: 44528 components: - type: Transform pos: 55.5,90.5 - parent: 40203 - - uid: 44140 + parent: 40599 + - uid: 44529 components: - type: Transform pos: 55.5,89.5 - parent: 40203 - - uid: 44141 + parent: 40599 + - uid: 44530 components: - type: Transform pos: 55.5,87.5 - parent: 40203 - - uid: 44142 + parent: 40599 + - uid: 44531 components: - type: Transform pos: 55.5,86.5 - parent: 40203 - - uid: 44143 + parent: 40599 + - uid: 44532 components: - type: Transform pos: 55.5,85.5 - parent: 40203 - - uid: 44144 + parent: 40599 + - uid: 44533 components: - type: Transform pos: 56.5,90.5 - parent: 40203 - - uid: 44145 + parent: 40599 + - uid: 44534 components: - type: Transform pos: 56.5,89.5 - parent: 40203 - - uid: 44146 + parent: 40599 + - uid: 44535 components: - type: Transform pos: 56.5,88.5 - parent: 40203 - - uid: 44147 + parent: 40599 + - uid: 44536 components: - type: Transform pos: 56.5,87.5 - parent: 40203 - - uid: 44148 + parent: 40599 + - uid: 44537 components: - type: Transform pos: 56.5,86.5 - parent: 40203 - - uid: 44149 + parent: 40599 + - uid: 44538 components: - type: Transform pos: 56.5,85.5 - parent: 40203 - - uid: 44150 + parent: 40599 + - uid: 44539 components: - type: Transform pos: 57.5,90.5 - parent: 40203 - - uid: 44151 + parent: 40599 + - uid: 44540 components: - type: Transform pos: 57.5,89.5 - parent: 40203 - - uid: 44152 + parent: 40599 + - uid: 44541 components: - type: Transform pos: 57.5,88.5 - parent: 40203 - - uid: 44153 + parent: 40599 + - uid: 44542 components: - type: Transform pos: 57.5,87.5 - parent: 40203 - - uid: 44154 + parent: 40599 + - uid: 44543 components: - type: Transform pos: 57.5,86.5 - parent: 40203 - - uid: 44155 + parent: 40599 + - uid: 44544 components: - type: Transform pos: 57.5,85.5 - parent: 40203 - - uid: 44156 + parent: 40599 + - uid: 44545 components: - type: Transform pos: 58.5,90.5 - parent: 40203 - - uid: 44157 + parent: 40599 + - uid: 44546 components: - type: Transform pos: 58.5,89.5 - parent: 40203 - - uid: 44158 + parent: 40599 + - uid: 44547 components: - type: Transform pos: 58.5,88.5 - parent: 40203 - - uid: 44159 + parent: 40599 + - uid: 44548 components: - type: Transform pos: 58.5,87.5 - parent: 40203 - - uid: 44160 + parent: 40599 + - uid: 44549 components: - type: Transform pos: 58.5,86.5 - parent: 40203 - - uid: 44161 + parent: 40599 + - uid: 44550 components: - type: Transform pos: 58.5,85.5 - parent: 40203 - - uid: 44162 + parent: 40599 + - uid: 44551 components: - type: Transform pos: 59.5,89.5 - parent: 40203 - - uid: 44163 + parent: 40599 + - uid: 44552 components: - type: Transform pos: 59.5,88.5 - parent: 40203 - - uid: 44164 + parent: 40599 + - uid: 44553 components: - type: Transform pos: 59.5,87.5 - parent: 40203 - - uid: 44165 + parent: 40599 + - uid: 44554 components: - type: Transform pos: 59.5,86.5 - parent: 40203 - - uid: 44166 + parent: 40599 + - uid: 44555 components: - type: Transform pos: 59.5,85.5 - parent: 40203 - - uid: 44167 + parent: 40599 + - uid: 44556 components: - type: Transform pos: 60.5,88.5 - parent: 40203 - - uid: 44168 + parent: 40599 + - uid: 44557 components: - type: Transform pos: 60.5,87.5 - parent: 40203 - - uid: 44169 + parent: 40599 + - uid: 44558 components: - type: Transform pos: 60.5,86.5 - parent: 40203 - - uid: 44170 + parent: 40599 + - uid: 44559 components: - type: Transform pos: 60.5,85.5 - parent: 40203 - - uid: 44171 + parent: 40599 + - uid: 44560 components: - type: Transform pos: 61.5,87.5 - parent: 40203 - - uid: 44172 + parent: 40599 + - uid: 44561 components: - type: Transform pos: 61.5,86.5 - parent: 40203 - - uid: 44173 + parent: 40599 + - uid: 44562 components: - type: Transform pos: 61.5,85.5 - parent: 40203 - - uid: 44174 + parent: 40599 + - uid: 44563 components: - type: Transform pos: 62.5,86.5 - parent: 40203 - - uid: 44175 + parent: 40599 + - uid: 44564 components: - type: Transform pos: 62.5,85.5 - parent: 40203 - - uid: 44176 + parent: 40599 + - uid: 44565 components: - type: Transform pos: 62.5,84.5 - parent: 40203 - - uid: 44177 + parent: 40599 + - uid: 44566 components: - type: Transform pos: 62.5,83.5 - parent: 40203 - - uid: 44178 + parent: 40599 + - uid: 44567 components: - type: Transform pos: 62.5,82.5 - parent: 40203 - - uid: 44179 + parent: 40599 + - uid: 44568 components: - type: Transform pos: 63.5,85.5 - parent: 40203 - - uid: 44180 + parent: 40599 + - uid: 44569 components: - type: Transform pos: 63.5,83.5 - parent: 40203 - - uid: 44181 + parent: 40599 + - uid: 44570 components: - type: Transform pos: 63.5,82.5 - parent: 40203 - - uid: 44182 + parent: 40599 + - uid: 44571 components: - type: Transform pos: 64.5,85.5 - parent: 40203 - - uid: 44183 + parent: 40599 + - uid: 44572 components: - type: Transform pos: 64.5,84.5 - parent: 40203 - - uid: 44184 + parent: 40599 + - uid: 44573 components: - type: Transform pos: 65.5,84.5 - parent: 40203 - - uid: 44185 + parent: 40599 + - uid: 44574 components: - type: Transform pos: 65.5,83.5 - parent: 40203 - - uid: 44186 + parent: 40599 + - uid: 44575 components: - type: Transform pos: 65.5,81.5 - parent: 40203 - - uid: 44187 + parent: 40599 + - uid: 44576 components: - type: Transform pos: 66.5,84.5 - parent: 40203 - - uid: 44188 + parent: 40599 + - uid: 44577 components: - type: Transform pos: 66.5,82.5 - parent: 40203 - - uid: 44189 + parent: 40599 + - uid: 44578 components: - type: Transform pos: 66.5,81.5 - parent: 40203 - - uid: 44190 + parent: 40599 + - uid: 44579 components: - type: Transform pos: 67.5,84.5 - parent: 40203 - - uid: 44191 + parent: 40599 + - uid: 44580 components: - type: Transform pos: 67.5,83.5 - parent: 40203 - - uid: 44192 + parent: 40599 + - uid: 44581 components: - type: Transform pos: 67.5,82.5 - parent: 40203 - - uid: 44193 + parent: 40599 + - uid: 44582 components: - type: Transform pos: 67.5,81.5 - parent: 40203 - - uid: 44194 + parent: 40599 + - uid: 44583 components: - type: Transform pos: 68.5,83.5 - parent: 40203 - - uid: 44195 + parent: 40599 + - uid: 44584 components: - type: Transform pos: 68.5,81.5 - parent: 40203 - - uid: 44196 + parent: 40599 + - uid: 44585 components: - type: Transform pos: 60.5,65.5 - parent: 40203 + parent: 40599 missingComponents: + - Damageable - Destructible - - uid: 44197 + - uid: 44586 components: - type: Transform pos: 68.5,48.5 - parent: 40203 - - uid: 44198 + parent: 40599 + - uid: 44587 components: - type: Transform pos: 69.5,83.5 - parent: 40203 - - uid: 44199 + parent: 40599 + - uid: 44588 components: - type: Transform pos: 69.5,82.5 - parent: 40203 - - uid: 44200 + parent: 40599 + - uid: 44589 components: - type: Transform pos: 69.5,81.5 - parent: 40203 - - uid: 44201 + parent: 40599 + - uid: 44590 components: - type: Transform pos: 69.5,48.5 - parent: 40203 - - uid: 44202 + parent: 40599 + - uid: 44591 components: - type: Transform pos: 70.5,83.5 - parent: 40203 - - uid: 44203 + parent: 40599 + - uid: 44592 components: - type: Transform pos: 70.5,82.5 - parent: 40203 - - uid: 44204 + parent: 40599 + - uid: 44593 components: - type: Transform pos: 70.5,81.5 - parent: 40203 - - uid: 44205 + parent: 40599 + - uid: 44594 components: - type: Transform pos: 44.5,51.5 - parent: 40203 - - uid: 44206 + parent: 40599 + - uid: 44595 components: - type: Transform pos: 42.5,46.5 - parent: 40203 - - uid: 44207 + parent: 40599 + - uid: 44596 components: - type: Transform pos: 71.5,83.5 - parent: 40203 - - uid: 44208 + parent: 40599 + - uid: 44597 components: - type: Transform pos: 71.5,82.5 - parent: 40203 - - uid: 44209 + parent: 40599 + - uid: 44598 components: - type: Transform pos: 71.5,81.5 - parent: 40203 - - uid: 44210 + parent: 40599 + - uid: 44599 components: - type: Transform pos: 71.5,67.5 - parent: 40203 - - uid: 44211 + parent: 40599 + - uid: 44600 components: - type: Transform pos: 71.5,66.5 - parent: 40203 - - uid: 44212 + parent: 40599 + - uid: 44601 components: - type: Transform pos: 71.5,65.5 - parent: 40203 - - uid: 44213 + parent: 40599 + - uid: 44602 components: - type: Transform pos: 71.5,64.5 - parent: 40203 - - uid: 44214 + parent: 40599 + - uid: 44603 components: - type: Transform pos: 71.5,63.5 - parent: 40203 - - uid: 44215 + parent: 40599 + - uid: 44604 components: - type: Transform pos: 59.5,66.5 - parent: 40203 + parent: 40599 missingComponents: + - Damageable - Destructible - - uid: 44216 + - uid: 44605 components: - type: Transform pos: 71.5,48.5 - parent: 40203 - - uid: 44217 + parent: 40599 + - uid: 44606 components: - type: Transform pos: 72.5,82.5 - parent: 40203 - - uid: 44218 + parent: 40599 + - uid: 44607 components: - type: Transform pos: 72.5,81.5 - parent: 40203 - - uid: 44219 + parent: 40599 + - uid: 44608 components: - type: Transform pos: 70.5,47.5 - parent: 40203 - - uid: 44220 + parent: 40599 + - uid: 44609 components: - type: Transform pos: 67.5,48.5 - parent: 40203 - - uid: 44221 + parent: 40599 + - uid: 44610 components: - type: Transform pos: 68.5,46.5 - parent: 40203 - - uid: 44222 + parent: 40599 + - uid: 44611 components: - type: Transform pos: 66.5,46.5 - parent: 40203 - - uid: 44223 + parent: 40599 + - uid: 44612 components: - type: Transform pos: 72.5,69.5 - parent: 40203 - - uid: 44224 + parent: 40599 + - uid: 44613 components: - type: Transform pos: 72.5,68.5 - parent: 40203 - - uid: 44225 + parent: 40599 + - uid: 44614 components: - type: Transform pos: 72.5,65.5 - parent: 40203 - - uid: 44226 + parent: 40599 + - uid: 44615 components: - type: Transform pos: 72.5,64.5 - parent: 40203 - - uid: 44227 + parent: 40599 + - uid: 44616 components: - type: Transform pos: 73.5,82.5 - parent: 40203 - - uid: 44228 + parent: 40599 + - uid: 44617 components: - type: Transform pos: 73.5,81.5 - parent: 40203 - - uid: 44229 + parent: 40599 + - uid: 44618 components: - type: Transform pos: 66.5,47.5 - parent: 40203 - - uid: 44230 + parent: 40599 + - uid: 44619 components: - type: Transform pos: 62.5,45.5 - parent: 40203 - - uid: 44231 + parent: 40599 + - uid: 44620 components: - type: Transform pos: 69.5,46.5 - parent: 40203 - - uid: 44232 + parent: 40599 + - uid: 44621 components: - type: Transform pos: 73.5,69.5 - parent: 40203 - - uid: 44233 + parent: 40599 + - uid: 44622 components: - type: Transform pos: 74.5,82.5 - parent: 40203 - - uid: 44234 + parent: 40599 + - uid: 44623 components: - type: Transform pos: 74.5,81.5 - parent: 40203 - - uid: 44235 + parent: 40599 + - uid: 44624 components: - type: Transform pos: 65.5,46.5 - parent: 40203 - - uid: 44236 + parent: 40599 + - uid: 44625 components: - type: Transform pos: 74.5,69.5 - parent: 40203 - - uid: 44237 + parent: 40599 + - uid: 44626 components: - type: Transform pos: 74.5,68.5 - parent: 40203 - - uid: 44238 + parent: 40599 + - uid: 44627 components: - type: Transform pos: 74.5,56.5 - parent: 40203 - - uid: 44239 + parent: 40599 + - uid: 44628 components: - type: Transform pos: 74.5,55.5 - parent: 40203 - - uid: 44240 + parent: 40599 + - uid: 44629 components: - type: Transform pos: 74.5,54.5 - parent: 40203 - - uid: 44241 + parent: 40599 + - uid: 44630 components: - type: Transform pos: 74.5,53.5 - parent: 40203 - - uid: 44242 + parent: 40599 + - uid: 44631 components: - type: Transform pos: 74.5,52.5 - parent: 40203 - - uid: 44243 + parent: 40599 + - uid: 44632 components: - type: Transform pos: 74.5,51.5 - parent: 40203 - - uid: 44244 + parent: 40599 + - uid: 44633 components: - type: Transform pos: 75.5,81.5 - parent: 40203 - - uid: 44245 + parent: 40599 + - uid: 44634 components: - type: Transform pos: 65.5,48.5 - parent: 40203 - - uid: 44246 + parent: 40599 + - uid: 44635 components: - type: Transform pos: 68.5,47.5 - parent: 40203 - - uid: 44247 + parent: 40599 + - uid: 44636 components: - type: Transform pos: 69.5,47.5 - parent: 40203 - - uid: 44248 + parent: 40599 + - uid: 44637 components: - type: Transform pos: 63.5,46.5 - parent: 40203 - - uid: 44249 + parent: 40599 + - uid: 44638 components: - type: Transform pos: 67.5,46.5 - parent: 40203 - - uid: 44250 + parent: 40599 + - uid: 44639 components: - type: Transform pos: 75.5,69.5 - parent: 40203 - - uid: 44251 + parent: 40599 + - uid: 44640 components: - type: Transform pos: 75.5,68.5 - parent: 40203 - - uid: 44252 + parent: 40599 + - uid: 44641 components: - type: Transform pos: 75.5,66.5 - parent: 40203 - - uid: 44253 + parent: 40599 + - uid: 44642 components: - type: Transform pos: 76.5,80.5 - parent: 40203 - - uid: 44254 + parent: 40599 + - uid: 44643 components: - type: Transform pos: 76.5,79.5 - parent: 40203 - - uid: 44255 + parent: 40599 + - uid: 44644 components: - type: Transform pos: 76.5,71.5 - parent: 40203 - - uid: 44256 + parent: 40599 + - uid: 44645 components: - type: Transform pos: 76.5,70.5 - parent: 40203 - - uid: 44257 + parent: 40599 + - uid: 44646 components: - type: Transform pos: 76.5,69.5 - parent: 40203 - - uid: 44258 + parent: 40599 + - uid: 44647 components: - type: Transform pos: 76.5,68.5 - parent: 40203 - - uid: 44259 + parent: 40599 + - uid: 44648 components: - type: Transform pos: 77.5,79.5 - parent: 40203 - - uid: 44260 + parent: 40599 + - uid: 44649 components: - type: Transform pos: 77.5,78.5 - parent: 40203 - - uid: 44261 + parent: 40599 + - uid: 44650 components: - type: Transform pos: 77.5,77.5 - parent: 40203 - - uid: 44262 + parent: 40599 + - uid: 44651 components: - type: Transform pos: 77.5,76.5 - parent: 40203 - - uid: 44263 + parent: 40599 + - uid: 44652 components: - type: Transform pos: 77.5,75.5 - parent: 40203 - - uid: 44264 + parent: 40599 + - uid: 44653 components: - type: Transform pos: 77.5,74.5 - parent: 40203 - - uid: 44265 + parent: 40599 + - uid: 44654 components: - type: Transform pos: 77.5,73.5 - parent: 40203 - - uid: 44266 + parent: 40599 + - uid: 44655 components: - type: Transform pos: 77.5,72.5 - parent: 40203 - - uid: 44267 + parent: 40599 + - uid: 44656 components: - type: Transform pos: 77.5,71.5 - parent: 40203 - - uid: 44268 + parent: 40599 + - uid: 44657 components: - type: Transform pos: 77.5,70.5 - parent: 40203 - - uid: 44269 + parent: 40599 + - uid: 44658 components: - type: Transform pos: 77.5,69.5 - parent: 40203 - - uid: 44270 + parent: 40599 + - uid: 44659 components: - type: Transform pos: 77.5,68.5 - parent: 40203 - - uid: 44271 + parent: 40599 + - uid: 44660 components: - type: Transform pos: 77.5,67.5 - parent: 40203 - - uid: 44272 + parent: 40599 + - uid: 44661 components: - type: Transform pos: 72.5,62.5 - parent: 40203 - - uid: 44273 + parent: 40599 + - uid: 44662 components: - type: Transform pos: 78.5,77.5 - parent: 40203 - - uid: 44274 + parent: 40599 + - uid: 44663 components: - type: Transform pos: 78.5,76.5 - parent: 40203 - - uid: 44275 + parent: 40599 + - uid: 44664 components: - type: Transform pos: 78.5,75.5 - parent: 40203 - - uid: 44276 + parent: 40599 + - uid: 44665 components: - type: Transform pos: 78.5,74.5 - parent: 40203 - - uid: 44277 + parent: 40599 + - uid: 44666 components: - type: Transform pos: 78.5,73.5 - parent: 40203 - - uid: 44278 + parent: 40599 + - uid: 44667 components: - type: Transform pos: 78.5,72.5 - parent: 40203 - - uid: 44279 + parent: 40599 + - uid: 44668 components: - type: Transform pos: 78.5,71.5 - parent: 40203 - - uid: 44280 + parent: 40599 + - uid: 44669 components: - type: Transform pos: 78.5,70.5 - parent: 40203 - - uid: 44281 + parent: 40599 + - uid: 44670 components: - type: Transform pos: 78.5,69.5 - parent: 40203 - - uid: 44282 + parent: 40599 + - uid: 44671 components: - type: Transform pos: 78.5,68.5 - parent: 40203 - - uid: 44283 + parent: 40599 + - uid: 44672 components: - type: Transform pos: 78.5,67.5 - parent: 40203 - - uid: 44284 + parent: 40599 + - uid: 44673 components: - type: Transform pos: 78.5,66.5 - parent: 40203 - - uid: 44285 + parent: 40599 + - uid: 44674 components: - type: Transform pos: 72.5,63.5 - parent: 40203 - - uid: 44286 + parent: 40599 + - uid: 44675 components: - type: Transform pos: 78.5,47.5 - parent: 40203 - - uid: 44287 + parent: 40599 + - uid: 44676 components: - type: Transform pos: 78.5,46.5 - parent: 40203 - - uid: 44288 + parent: 40599 + - uid: 44677 components: - type: Transform pos: 79.5,75.5 - parent: 40203 - - uid: 44289 + parent: 40599 + - uid: 44678 components: - type: Transform pos: 79.5,74.5 - parent: 40203 - - uid: 44290 + parent: 40599 + - uid: 44679 components: - type: Transform pos: 79.5,73.5 - parent: 40203 - - uid: 44291 + parent: 40599 + - uid: 44680 components: - type: Transform pos: 79.5,72.5 - parent: 40203 - - uid: 44292 + parent: 40599 + - uid: 44681 components: - type: Transform pos: 79.5,71.5 - parent: 40203 - - uid: 44293 + parent: 40599 + - uid: 44682 components: - type: Transform pos: 79.5,70.5 - parent: 40203 - - uid: 44294 + parent: 40599 + - uid: 44683 components: - type: Transform pos: 79.5,69.5 - parent: 40203 - - uid: 44295 + parent: 40599 + - uid: 44684 components: - type: Transform pos: 79.5,68.5 - parent: 40203 - - uid: 44296 + parent: 40599 + - uid: 44685 components: - type: Transform pos: 79.5,67.5 - parent: 40203 - - uid: 44297 + parent: 40599 + - uid: 44686 components: - type: Transform pos: 79.5,66.5 - parent: 40203 - - uid: 44298 + parent: 40599 + - uid: 44687 components: - type: Transform pos: 79.5,53.5 - parent: 40203 - - uid: 44299 + parent: 40599 + - uid: 44688 components: - type: Transform pos: 79.5,52.5 - parent: 40203 - - uid: 44300 + parent: 40599 + - uid: 44689 components: - type: Transform pos: 79.5,51.5 - parent: 40203 - - uid: 44301 + parent: 40599 + - uid: 44690 components: - type: Transform pos: 79.5,50.5 - parent: 40203 - - uid: 44302 + parent: 40599 + - uid: 44691 components: - type: Transform pos: 79.5,49.5 - parent: 40203 - - uid: 44303 + parent: 40599 + - uid: 44692 components: - type: Transform pos: 79.5,48.5 - parent: 40203 - - uid: 44304 + parent: 40599 + - uid: 44693 components: - type: Transform pos: 79.5,46.5 - parent: 40203 - - uid: 44305 + parent: 40599 + - uid: 44694 components: - type: Transform pos: 79.5,45.5 - parent: 40203 - - uid: 44306 + parent: 40599 + - uid: 44695 components: - type: Transform pos: 79.5,44.5 - parent: 40203 - - uid: 44307 + parent: 40599 + - uid: 44696 components: - type: Transform pos: 80.5,69.5 - parent: 40203 - - uid: 44308 + parent: 40599 + - uid: 44697 components: - type: Transform pos: 80.5,68.5 - parent: 40203 - - uid: 44309 + parent: 40599 + - uid: 44698 components: - type: Transform pos: 80.5,67.5 - parent: 40203 - - uid: 44310 + parent: 40599 + - uid: 44699 components: - type: Transform pos: 80.5,66.5 - parent: 40203 - - uid: 44311 + parent: 40599 + - uid: 44700 components: - type: Transform pos: 80.5,53.5 - parent: 40203 - - uid: 44312 + parent: 40599 + - uid: 44701 components: - type: Transform pos: 80.5,52.5 - parent: 40203 - - uid: 44313 + parent: 40599 + - uid: 44702 components: - type: Transform pos: 80.5,51.5 - parent: 40203 - - uid: 44314 + parent: 40599 + - uid: 44703 components: - type: Transform pos: 80.5,50.5 - parent: 40203 - - uid: 44315 + parent: 40599 + - uid: 44704 components: - type: Transform pos: 80.5,49.5 - parent: 40203 - - uid: 44316 + parent: 40599 + - uid: 44705 components: - type: Transform pos: 80.5,48.5 - parent: 40203 - - uid: 44317 + parent: 40599 + - uid: 44706 components: - type: Transform pos: 80.5,47.5 - parent: 40203 - - uid: 44318 + parent: 40599 + - uid: 44707 components: - type: Transform pos: 81.5,68.5 - parent: 40203 - - uid: 44319 + parent: 40599 + - uid: 44708 components: - type: Transform pos: 81.5,67.5 - parent: 40203 - - uid: 44320 + parent: 40599 + - uid: 44709 components: - type: Transform pos: 81.5,66.5 - parent: 40203 - - uid: 44321 + parent: 40599 + - uid: 44710 components: - type: Transform pos: 81.5,65.5 - parent: 40203 - - uid: 44322 + parent: 40599 + - uid: 44711 components: - type: Transform pos: 81.5,55.5 - parent: 40203 - - uid: 44323 + parent: 40599 + - uid: 44712 components: - type: Transform pos: 81.5,54.5 - parent: 40203 - - uid: 44324 + parent: 40599 + - uid: 44713 components: - type: Transform pos: 81.5,52.5 - parent: 40203 - - uid: 44325 + parent: 40599 + - uid: 44714 components: - type: Transform pos: 81.5,49.5 - parent: 40203 - - uid: 44326 + parent: 40599 + - uid: 44715 components: - type: Transform pos: 81.5,48.5 - parent: 40203 - - uid: 44327 + parent: 40599 + - uid: 44716 components: - type: Transform pos: 81.5,47.5 - parent: 40203 - - uid: 44328 + parent: 40599 + - uid: 44717 components: - type: Transform pos: 81.5,46.5 - parent: 40203 - - uid: 44329 + parent: 40599 + - uid: 44718 components: - type: Transform pos: 82.5,67.5 - parent: 40203 - - uid: 44330 + parent: 40599 + - uid: 44719 components: - type: Transform pos: 82.5,66.5 - parent: 40203 - - uid: 44331 + parent: 40599 + - uid: 44720 components: - type: Transform pos: 82.5,65.5 - parent: 40203 - - uid: 44332 + parent: 40599 + - uid: 44721 components: - type: Transform pos: 82.5,64.5 - parent: 40203 - - uid: 44333 + parent: 40599 + - uid: 44722 components: - type: Transform pos: 82.5,63.5 - parent: 40203 - - uid: 44334 + parent: 40599 + - uid: 44723 components: - type: Transform pos: 82.5,56.5 - parent: 40203 - - uid: 44335 + parent: 40599 + - uid: 44724 components: - type: Transform pos: 82.5,55.5 - parent: 40203 - - uid: 44336 + parent: 40599 + - uid: 44725 components: - type: Transform pos: 82.5,54.5 - parent: 40203 - - uid: 44337 + parent: 40599 + - uid: 44726 components: - type: Transform pos: 82.5,53.5 - parent: 40203 - - uid: 44338 + parent: 40599 + - uid: 44727 components: - type: Transform pos: 82.5,52.5 - parent: 40203 - - uid: 44339 + parent: 40599 + - uid: 44728 components: - type: Transform pos: 82.5,51.5 - parent: 40203 - - uid: 44340 + parent: 40599 + - uid: 44729 components: - type: Transform pos: 82.5,50.5 - parent: 40203 - - uid: 44341 + parent: 40599 + - uid: 44730 components: - type: Transform pos: 82.5,48.5 - parent: 40203 - - uid: 44342 + parent: 40599 + - uid: 44731 components: - type: Transform pos: 82.5,47.5 - parent: 40203 - - uid: 44343 + parent: 40599 + - uid: 44732 components: - type: Transform pos: 82.5,46.5 - parent: 40203 - - uid: 44344 + parent: 40599 + - uid: 44733 components: - type: Transform pos: 82.5,45.5 - parent: 40203 - - uid: 44345 + parent: 40599 + - uid: 44734 components: - type: Transform pos: 82.5,43.5 - parent: 40203 - - uid: 44346 + parent: 40599 + - uid: 44735 components: - type: Transform pos: 83.5,66.5 - parent: 40203 - - uid: 44347 + parent: 40599 + - uid: 44736 components: - type: Transform pos: 83.5,65.5 - parent: 40203 - - uid: 44348 + parent: 40599 + - uid: 44737 components: - type: Transform pos: 83.5,64.5 - parent: 40203 - - uid: 44349 + parent: 40599 + - uid: 44738 components: - type: Transform pos: 83.5,63.5 - parent: 40203 - - uid: 44350 + parent: 40599 + - uid: 44739 components: - type: Transform pos: 83.5,62.5 - parent: 40203 - - uid: 44351 + parent: 40599 + - uid: 44740 components: - type: Transform pos: 83.5,57.5 - parent: 40203 - - uid: 44352 + parent: 40599 + - uid: 44741 components: - type: Transform pos: 83.5,56.5 - parent: 40203 - - uid: 44353 + parent: 40599 + - uid: 44742 components: - type: Transform pos: 83.5,55.5 - parent: 40203 - - uid: 44354 + parent: 40599 + - uid: 44743 components: - type: Transform pos: 83.5,54.5 - parent: 40203 - - uid: 44355 + parent: 40599 + - uid: 44744 components: - type: Transform pos: 83.5,53.5 - parent: 40203 - - uid: 44356 + parent: 40599 + - uid: 44745 components: - type: Transform pos: 83.5,52.5 - parent: 40203 - - uid: 44357 + parent: 40599 + - uid: 44746 components: - type: Transform pos: 83.5,51.5 - parent: 40203 - - uid: 44358 + parent: 40599 + - uid: 44747 components: - type: Transform pos: 83.5,50.5 - parent: 40203 - - uid: 44359 + parent: 40599 + - uid: 44748 components: - type: Transform pos: 83.5,49.5 - parent: 40203 - - uid: 44360 + parent: 40599 + - uid: 44749 components: - type: Transform pos: 83.5,48.5 - parent: 40203 - - uid: 44361 + parent: 40599 + - uid: 44750 components: - type: Transform pos: 83.5,47.5 - parent: 40203 - - uid: 44362 + parent: 40599 + - uid: 44751 components: - type: Transform pos: 83.5,46.5 - parent: 40203 - - uid: 44363 + parent: 40599 + - uid: 44752 components: - type: Transform pos: 83.5,45.5 - parent: 40203 - - uid: 44364 + parent: 40599 + - uid: 44753 components: - type: Transform pos: 83.5,44.5 - parent: 40203 - - uid: 44365 + parent: 40599 + - uid: 44754 components: - type: Transform pos: 83.5,43.5 - parent: 40203 - - uid: 44366 + parent: 40599 + - uid: 44755 components: - type: Transform pos: 84.5,63.5 - parent: 40203 - - uid: 44367 + parent: 40599 + - uid: 44756 components: - type: Transform pos: 84.5,62.5 - parent: 40203 - - uid: 44368 + parent: 40599 + - uid: 44757 components: - type: Transform pos: 84.5,57.5 - parent: 40203 - - uid: 44369 + parent: 40599 + - uid: 44758 components: - type: Transform pos: 84.5,56.5 - parent: 40203 - - uid: 44370 + parent: 40599 + - uid: 44759 components: - type: Transform pos: 84.5,55.5 - parent: 40203 - - uid: 44371 + parent: 40599 + - uid: 44760 components: - type: Transform pos: 84.5,54.5 - parent: 40203 - - uid: 44372 + parent: 40599 + - uid: 44761 components: - type: Transform pos: 84.5,53.5 - parent: 40203 - - uid: 44373 + parent: 40599 + - uid: 44762 components: - type: Transform pos: 84.5,52.5 - parent: 40203 - - uid: 44374 + parent: 40599 + - uid: 44763 components: - type: Transform pos: 84.5,51.5 - parent: 40203 - - uid: 44375 + parent: 40599 + - uid: 44764 components: - type: Transform pos: 84.5,50.5 - parent: 40203 - - uid: 44376 + parent: 40599 + - uid: 44765 components: - type: Transform pos: 84.5,49.5 - parent: 40203 - - uid: 44377 + parent: 40599 + - uid: 44766 components: - type: Transform pos: 84.5,48.5 - parent: 40203 - - uid: 44378 + parent: 40599 + - uid: 44767 components: - type: Transform pos: 84.5,47.5 - parent: 40203 - - uid: 44379 + parent: 40599 + - uid: 44768 components: - type: Transform pos: 84.5,46.5 - parent: 40203 - - uid: 44380 + parent: 40599 + - uid: 44769 components: - type: Transform pos: 84.5,45.5 - parent: 40203 - - uid: 44381 + parent: 40599 + - uid: 44770 components: - type: Transform pos: 84.5,44.5 - parent: 40203 - - uid: 44382 + parent: 40599 + - uid: 44771 components: - type: Transform pos: 84.5,43.5 - parent: 40203 - - uid: 44383 + parent: 40599 + - uid: 44772 components: - type: Transform pos: 85.5,62.5 - parent: 40203 - - uid: 44384 + parent: 40599 + - uid: 44773 components: - type: Transform pos: 85.5,61.5 - parent: 40203 - - uid: 44385 + parent: 40599 + - uid: 44774 components: - type: Transform pos: 85.5,60.5 - parent: 40203 - - uid: 44386 + parent: 40599 + - uid: 44775 components: - type: Transform pos: 85.5,59.5 - parent: 40203 - - uid: 44387 + parent: 40599 + - uid: 44776 components: - type: Transform pos: 85.5,58.5 - parent: 40203 - - uid: 44388 + parent: 40599 + - uid: 44777 components: - type: Transform pos: 85.5,57.5 - parent: 40203 - - uid: 44389 + parent: 40599 + - uid: 44778 components: - type: Transform pos: 85.5,56.5 - parent: 40203 - - uid: 44390 + parent: 40599 + - uid: 44779 components: - type: Transform pos: 85.5,55.5 - parent: 40203 - - uid: 44391 + parent: 40599 + - uid: 44780 components: - type: Transform pos: 85.5,54.5 - parent: 40203 - - uid: 44392 + parent: 40599 + - uid: 44781 components: - type: Transform pos: 85.5,53.5 - parent: 40203 - - uid: 44393 + parent: 40599 + - uid: 44782 components: - type: Transform pos: 85.5,52.5 - parent: 40203 - - uid: 44394 + parent: 40599 + - uid: 44783 components: - type: Transform pos: 85.5,51.5 - parent: 40203 - - uid: 44395 + parent: 40599 + - uid: 44784 components: - type: Transform pos: 85.5,50.5 - parent: 40203 - - uid: 44396 + parent: 40599 + - uid: 44785 components: - type: Transform pos: 85.5,49.5 - parent: 40203 - - uid: 44397 + parent: 40599 + - uid: 44786 components: - type: Transform pos: 85.5,48.5 - parent: 40203 - - uid: 44398 + parent: 40599 + - uid: 44787 components: - type: Transform pos: 85.5,47.5 - parent: 40203 - - uid: 44399 + parent: 40599 + - uid: 44788 components: - type: Transform pos: 85.5,46.5 - parent: 40203 - - uid: 44400 + parent: 40599 + - uid: 44789 components: - type: Transform pos: 85.5,43.5 - parent: 40203 - - uid: 44401 + parent: 40599 + - uid: 44790 components: - type: Transform pos: 86.5,61.5 - parent: 40203 - - uid: 44402 + parent: 40599 + - uid: 44791 components: - type: Transform pos: 86.5,60.5 - parent: 40203 - - uid: 44403 + parent: 40599 + - uid: 44792 components: - type: Transform pos: 86.5,59.5 - parent: 40203 - - uid: 44404 + parent: 40599 + - uid: 44793 components: - type: Transform pos: 86.5,58.5 - parent: 40203 - - uid: 44405 + parent: 40599 + - uid: 44794 components: - type: Transform pos: 86.5,57.5 - parent: 40203 - - uid: 44406 + parent: 40599 + - uid: 44795 components: - type: Transform pos: 86.5,56.5 - parent: 40203 - - uid: 44407 + parent: 40599 + - uid: 44796 components: - type: Transform pos: 86.5,55.5 - parent: 40203 - - uid: 44408 + parent: 40599 + - uid: 44797 components: - type: Transform pos: 86.5,54.5 - parent: 40203 - - uid: 44409 + parent: 40599 + - uid: 44798 components: - type: Transform pos: 86.5,53.5 - parent: 40203 - - uid: 44410 + parent: 40599 + - uid: 44799 components: - type: Transform pos: 86.5,52.5 - parent: 40203 - - uid: 44411 + parent: 40599 + - uid: 44800 components: - type: Transform pos: 86.5,51.5 - parent: 40203 - - uid: 44412 + parent: 40599 + - uid: 44801 components: - type: Transform pos: 86.5,50.5 - parent: 40203 - - uid: 44413 + parent: 40599 + - uid: 44802 components: - type: Transform pos: 86.5,49.5 - parent: 40203 - - uid: 44414 + parent: 40599 + - uid: 44803 components: - type: Transform pos: 86.5,48.5 - parent: 40203 - - uid: 44415 + parent: 40599 + - uid: 44804 components: - type: Transform pos: 86.5,46.5 - parent: 40203 - - uid: 44416 + parent: 40599 + - uid: 44805 components: - type: Transform pos: 86.5,45.5 - parent: 40203 - - uid: 44417 + parent: 40599 + - uid: 44806 components: - type: Transform pos: 86.5,44.5 - parent: 40203 - - uid: 44418 + parent: 40599 + - uid: 44807 components: - type: Transform pos: 87.5,59.5 - parent: 40203 - - uid: 44419 + parent: 40599 + - uid: 44808 components: - type: Transform pos: 87.5,58.5 - parent: 40203 - - uid: 44420 + parent: 40599 + - uid: 44809 components: - type: Transform pos: 87.5,57.5 - parent: 40203 - - uid: 44421 + parent: 40599 + - uid: 44810 components: - type: Transform pos: 87.5,56.5 - parent: 40203 - - uid: 44422 + parent: 40599 + - uid: 44811 components: - type: Transform pos: 87.5,55.5 - parent: 40203 - - uid: 44423 + parent: 40599 + - uid: 44812 components: - type: Transform pos: 87.5,54.5 - parent: 40203 - - uid: 44424 + parent: 40599 + - uid: 44813 components: - type: Transform pos: 87.5,53.5 - parent: 40203 - - uid: 44425 + parent: 40599 + - uid: 44814 components: - type: Transform pos: 87.5,52.5 - parent: 40203 - - uid: 44426 + parent: 40599 + - uid: 44815 components: - type: Transform pos: 87.5,48.5 - parent: 40203 - - uid: 44427 + parent: 40599 + - uid: 44816 components: - type: Transform pos: 87.5,47.5 - parent: 40203 - - uid: 44428 + parent: 40599 + - uid: 44817 components: - type: Transform pos: 87.5,46.5 - parent: 40203 - - uid: 44429 + parent: 40599 + - uid: 44818 components: - type: Transform pos: 88.5,57.5 - parent: 40203 - - uid: 44430 + parent: 40599 + - uid: 44819 components: - type: Transform pos: 88.5,56.5 - parent: 40203 - - uid: 44431 + parent: 40599 + - uid: 44820 components: - type: Transform pos: 88.5,55.5 - parent: 40203 - - uid: 44432 + parent: 40599 + - uid: 44821 components: - type: Transform pos: 88.5,54.5 - parent: 40203 - - uid: 44433 + parent: 40599 + - uid: 44822 components: - type: Transform pos: 88.5,53.5 - parent: 40203 - - uid: 44434 + parent: 40599 + - uid: 44823 components: - type: Transform pos: 88.5,52.5 - parent: 40203 - - uid: 44435 + parent: 40599 + - uid: 44824 components: - type: Transform pos: 88.5,51.5 - parent: 40203 - - uid: 44436 + parent: 40599 + - uid: 44825 components: - type: Transform pos: 89.5,56.5 - parent: 40203 - - uid: 44437 + parent: 40599 + - uid: 44826 components: - type: Transform pos: 89.5,55.5 - parent: 40203 - - uid: 44438 + parent: 40599 + - uid: 44827 components: - type: Transform pos: 89.5,54.5 - parent: 40203 - - uid: 44439 + parent: 40599 + - uid: 44828 components: - type: Transform pos: 43.5,46.5 - parent: 40203 - - uid: 44440 + parent: 40599 + - uid: 44829 components: - type: Transform pos: 32.5,56.5 - parent: 40203 - - uid: 44441 + parent: 40599 + - uid: 44830 components: - type: Transform pos: 46.5,45.5 - parent: 40203 - - uid: 44442 + parent: 40599 + - uid: 44831 components: - type: Transform pos: 44.5,49.5 - parent: 40203 - - uid: 44443 + parent: 40599 + - uid: 44832 components: - type: Transform pos: 44.5,47.5 - parent: 40203 - - uid: 44444 + parent: 40599 + - uid: 44833 components: - type: Transform pos: 61.5,44.5 - parent: 40203 - - uid: 44445 + parent: 40599 + - uid: 44834 components: - type: Transform pos: 43.5,50.5 - parent: 40203 - - uid: 44446 + parent: 40599 + - uid: 44835 components: - type: Transform pos: 43.5,49.5 - parent: 40203 - - uid: 44447 + parent: 40599 + - uid: 44836 components: - type: Transform pos: 45.5,45.5 - parent: 40203 - - uid: 44448 + parent: 40599 + - uid: 44837 components: - type: Transform pos: 61.5,43.5 - parent: 40203 - - uid: 44449 + parent: 40599 + - uid: 44838 components: - type: Transform pos: 45.5,44.5 - parent: 40203 - - uid: 44450 + parent: 40599 + - uid: 44839 components: - type: Transform pos: 60.5,41.5 - parent: 40203 - - uid: 44451 + parent: 40599 + - uid: 44840 components: - type: Transform pos: 43.5,47.5 - parent: 40203 - - uid: 44452 + parent: 40599 + - uid: 44841 components: - type: Transform pos: 42.5,47.5 - parent: 40203 - - uid: 44453 + parent: 40599 + - uid: 44842 components: - type: Transform pos: 52.5,85.5 - parent: 40203 - - uid: 44454 + parent: 40599 + - uid: 44843 components: - type: Transform pos: 52.5,82.5 - parent: 40203 - - uid: 44455 + parent: 40599 + - uid: 44844 components: - type: Transform pos: 44.5,45.5 - parent: 40203 - - uid: 44456 + parent: 40599 + - uid: 44845 components: - type: Transform pos: 52.5,86.5 - parent: 40203 - - uid: 44457 + parent: 40599 + - uid: 44846 components: - type: Transform pos: 49.5,84.5 - parent: 40203 - - uid: 44458 + parent: 40599 + - uid: 44847 components: - type: Transform pos: 45.5,48.5 - parent: 40203 - - uid: 44459 + parent: 40599 + - uid: 44848 components: - type: Transform pos: 43.5,48.5 - parent: 40203 - - uid: 44460 + parent: 40599 + - uid: 44849 components: - type: Transform pos: 52.5,83.5 - parent: 40203 - - uid: 44461 + parent: 40599 + - uid: 44850 components: - type: Transform pos: 44.5,46.5 - parent: 40203 - - uid: 44462 + parent: 40599 + - uid: 44851 components: - type: Transform pos: 44.5,50.5 - parent: 40203 - - uid: 44463 + parent: 40599 + - uid: 44852 components: - type: Transform pos: 49.5,85.5 - parent: 40203 - - uid: 44464 + parent: 40599 + - uid: 44853 components: - type: Transform pos: 48.5,85.5 - parent: 40203 - - uid: 44465 + parent: 40599 + - uid: 44854 components: - type: Transform pos: 48.5,86.5 - parent: 40203 - - uid: 44466 + parent: 40599 + - uid: 44855 components: - type: Transform pos: 49.5,83.5 - parent: 40203 - - uid: 44467 + parent: 40599 + - uid: 44856 components: - type: Transform pos: 53.5,84.5 - parent: 40203 - - uid: 44468 + parent: 40599 + - uid: 44857 components: - type: Transform pos: 42.5,50.5 - parent: 40203 - - uid: 44469 + parent: 40599 + - uid: 44858 components: - type: Transform pos: 43.5,45.5 - parent: 40203 - - uid: 44470 + parent: 40599 + - uid: 44859 components: - type: Transform pos: 49.5,87.5 - parent: 40203 - - uid: 44471 + parent: 40599 + - uid: 44860 components: - type: Transform pos: 44.5,44.5 - parent: 40203 - - uid: 44472 + parent: 40599 + - uid: 44861 components: - type: Transform pos: 50.5,82.5 - parent: 40203 - - uid: 44473 + parent: 40599 + - uid: 44862 components: - type: Transform pos: 42.5,45.5 - parent: 40203 - - uid: 44474 + parent: 40599 + - uid: 44863 components: - type: Transform pos: 50.5,84.5 - parent: 40203 - - uid: 44475 + parent: 40599 + - uid: 44864 components: - type: Transform pos: 49.5,86.5 - parent: 40203 - - uid: 44476 + parent: 40599 + - uid: 44865 components: - type: Transform pos: 49.5,82.5 - parent: 40203 - - uid: 44477 + parent: 40599 + - uid: 44866 components: - type: Transform pos: 54.5,84.5 - parent: 40203 - - uid: 44478 + parent: 40599 + - uid: 44867 components: - type: Transform pos: 59.5,45.5 - parent: 40203 - - uid: 44479 + parent: 40599 + - uid: 44868 components: - type: Transform pos: 45.5,43.5 - parent: 40203 - - uid: 44480 + parent: 40599 + - uid: 44869 components: - type: Transform pos: 50.5,83.5 - parent: 40203 - - uid: 44481 + parent: 40599 + - uid: 44870 components: - type: Transform pos: 53.5,85.5 - parent: 40203 - - uid: 44482 + parent: 40599 + - uid: 44871 components: - type: Transform pos: 50.5,85.5 - parent: 40203 - - uid: 44483 + parent: 40599 + - uid: 44872 components: - type: Transform pos: 50.5,87.5 - parent: 40203 - - uid: 44484 + parent: 40599 + - uid: 44873 components: - type: Transform pos: 51.5,82.5 - parent: 40203 - - uid: 44485 + parent: 40599 + - uid: 44874 components: - type: Transform pos: 54.5,83.5 - parent: 40203 - - uid: 44486 + parent: 40599 + - uid: 44875 components: - type: Transform pos: 60.5,45.5 - parent: 40203 - - uid: 44487 + parent: 40599 + - uid: 44876 components: - type: Transform pos: 49.5,81.5 - parent: 40203 - - uid: 44488 + parent: 40599 + - uid: 44877 components: - type: Transform pos: 63.5,81.5 - parent: 40203 - - uid: 44489 + parent: 40599 + - uid: 44878 components: - type: Transform pos: 59.5,43.5 - parent: 40203 - - uid: 44490 + parent: 40599 + - uid: 44879 components: - type: Transform pos: 52.5,81.5 - parent: 40203 - - uid: 44491 + parent: 40599 + - uid: 44880 components: - type: Transform pos: 61.5,46.5 - parent: 40203 - - uid: 44492 + parent: 40599 + - uid: 44881 components: - type: Transform pos: 60.5,66.5 - parent: 40203 + parent: 40599 missingComponents: + - Damageable - Destructible - - uid: 44493 + - uid: 44882 components: - type: Transform pos: 51.5,86.5 - parent: 40203 - - uid: 44494 + parent: 40599 + - uid: 44883 components: - type: Transform pos: 53.5,83.5 - parent: 40203 - - uid: 44495 + parent: 40599 + - uid: 44884 components: - type: Transform pos: 51.5,81.5 - parent: 40203 - - uid: 44496 + parent: 40599 + - uid: 44885 components: - type: Transform pos: 50.5,81.5 - parent: 40203 - - uid: 44497 + parent: 40599 + - uid: 44886 components: - type: Transform pos: 58.5,45.5 - parent: 40203 - - uid: 44498 + parent: 40599 + - uid: 44887 components: - type: Transform pos: 61.5,45.5 - parent: 40203 - - uid: 44499 + parent: 40599 + - uid: 44888 components: - type: Transform pos: 60.5,43.5 - parent: 40203 - - uid: 44500 + parent: 40599 + - uid: 44889 components: - type: Transform pos: 62.5,46.5 - parent: 40203 - - uid: 44501 + parent: 40599 + - uid: 44890 components: - type: Transform pos: 60.5,42.5 - parent: 40203 - - uid: 44502 + parent: 40599 + - uid: 44891 components: - type: Transform pos: 45.5,86.5 - parent: 40203 - - uid: 44503 + parent: 40599 + - uid: 44892 components: - type: Transform pos: 45.5,87.5 - parent: 40203 - - uid: 44504 + parent: 40599 + - uid: 44893 components: - type: Transform pos: 44.5,86.5 - parent: 40203 - - uid: 44505 + parent: 40599 + - uid: 44894 components: - type: Transform pos: 46.5,87.5 - parent: 40203 - - uid: 44506 + parent: 40599 + - uid: 44895 components: - type: Transform pos: 44.5,87.5 - parent: 40203 - - uid: 44507 + parent: 40599 + - uid: 44896 components: - type: Transform pos: 47.5,87.5 - parent: 40203 - - uid: 44508 + parent: 40599 + - uid: 44897 components: - type: Transform pos: 47.5,86.5 - parent: 40203 - - uid: 44509 + parent: 40599 + - uid: 44898 components: - type: Transform pos: 46.5,86.5 - parent: 40203 - - uid: 44510 + parent: 40599 + - uid: 44899 components: - type: Transform pos: 48.5,83.5 - parent: 40203 - - uid: 44511 + parent: 40599 + - uid: 44900 components: - type: Transform pos: 48.5,84.5 - parent: 40203 - - uid: 44512 + parent: 40599 + - uid: 44901 components: - type: Transform pos: 43.5,51.5 - parent: 40203 - - uid: 44513 + parent: 40599 + - uid: 44902 components: - type: Transform pos: 32.5,54.5 - parent: 40203 - - uid: 44514 + parent: 40599 + - uid: 44903 components: - type: Transform pos: 32.5,59.5 - parent: 40203 - - uid: 44515 + parent: 40599 + - uid: 44904 components: - type: Transform pos: 32.5,60.5 - parent: 40203 - - uid: 44516 + parent: 40599 + - uid: 44905 components: - type: Transform pos: 32.5,61.5 - parent: 40203 - - uid: 44517 + parent: 40599 + - uid: 44906 components: - type: Transform pos: 32.5,62.5 - parent: 40203 - - uid: 44518 + parent: 40599 + - uid: 44907 components: - type: Transform pos: 32.5,63.5 - parent: 40203 - - uid: 44519 + parent: 40599 + - uid: 44908 components: - type: Transform pos: 31.5,54.5 - parent: 40203 - - uid: 44520 + parent: 40599 + - uid: 44909 components: - type: Transform pos: 64.5,81.5 - parent: 40203 - - uid: 44521 + parent: 40599 + - uid: 44910 components: - type: Transform pos: 61.5,65.5 - parent: 40203 + parent: 40599 missingComponents: + - Damageable - Destructible - - uid: 44522 + - uid: 44911 components: - type: Transform pos: 57.5,66.5 - parent: 40203 - - uid: 44523 + parent: 40599 + - uid: 44912 components: - type: Transform pos: 71.5,69.5 - parent: 40203 - - uid: 44524 + parent: 40599 + - uid: 44913 components: - type: Transform pos: 71.5,68.5 - parent: 40203 - - uid: 44525 + parent: 40599 + - uid: 44914 components: - type: Transform pos: 56.5,72.5 - parent: 40203 - - uid: 44526 + parent: 40599 + - uid: 44915 components: - type: Transform pos: 56.5,71.5 - parent: 40203 - - uid: 44527 + parent: 40599 + - uid: 44916 components: - type: Transform pos: 57.5,71.5 - parent: 40203 - - uid: 44528 + parent: 40599 + - uid: 44917 components: - type: Transform pos: 57.5,70.5 - parent: 40203 - - uid: 44529 + parent: 40599 + - uid: 44918 components: - type: Transform pos: 64.5,68.5 - parent: 40203 - - uid: 44530 + parent: 40599 + - uid: 44919 components: - type: Transform pos: 26.5,64.5 - parent: 40203 - - uid: 44531 + parent: 40599 + - uid: 44920 components: - type: Transform pos: 26.5,62.5 - parent: 40203 - - uid: 44532 + parent: 40599 + - uid: 44921 components: - type: Transform pos: 27.5,63.5 - parent: 40203 - - uid: 44533 + parent: 40599 + - uid: 44922 components: - type: Transform pos: 28.5,63.5 - parent: 40203 - - uid: 44534 + parent: 40599 + - uid: 44923 components: - type: Transform pos: 31.5,63.5 - parent: 40203 - - uid: 44535 + parent: 40599 + - uid: 44924 components: - type: Transform pos: 31.5,62.5 - parent: 40203 - - uid: 44536 + parent: 40599 + - uid: 44925 components: - type: Transform pos: 30.5,63.5 - parent: 40203 - - uid: 44537 + parent: 40599 + - uid: 44926 components: - type: Transform pos: 26.5,63.5 - parent: 40203 - - uid: 44538 + parent: 40599 + - uid: 44927 components: - type: Transform pos: 64.5,46.5 - parent: 40203 - - uid: 44539 + parent: 40599 + - uid: 44928 components: - type: Transform pos: 30.5,50.5 - parent: 40203 - - uid: 44540 + parent: 40599 + - uid: 44929 components: - type: Transform pos: 27.5,48.5 - parent: 40203 - - uid: 44541 + parent: 40599 + - uid: 44930 components: - type: Transform pos: 31.5,52.5 - parent: 40203 - - uid: 44542 + parent: 40599 + - uid: 44931 components: - type: Transform pos: 28.5,49.5 - parent: 40203 - - uid: 44543 + parent: 40599 + - uid: 44932 components: - type: Transform pos: 28.5,48.5 - parent: 40203 - - uid: 44544 + parent: 40599 + - uid: 44933 components: - type: Transform pos: 20.5,40.5 - parent: 40203 - - uid: 44545 + parent: 40599 + - uid: 44934 components: - type: Transform pos: 31.5,60.5 - parent: 40203 - - uid: 44546 + parent: 40599 + - uid: 44935 components: - type: Transform pos: 31.5,61.5 - parent: 40203 - - uid: 44547 + parent: 40599 + - uid: 44936 components: - type: Transform pos: 67.5,75.5 - parent: 40203 - - uid: 44548 + parent: 40599 + - uid: 44937 components: - type: Transform pos: 66.5,74.5 - parent: 40203 - - uid: 44549 + parent: 40599 + - uid: 44938 components: - type: Transform pos: 34.5,83.5 - parent: 40203 - - uid: 44550 + parent: 40599 + - uid: 44939 components: - type: Transform pos: 88.5,50.5 - parent: 40203 - - uid: 44551 + parent: 40599 + - uid: 44940 components: - type: Transform pos: 88.5,49.5 - parent: 40203 - - uid: 44552 + parent: 40599 + - uid: 44941 components: - type: Transform pos: 88.5,48.5 - parent: 40203 - - uid: 44553 + parent: 40599 + - uid: 44942 components: - type: Transform pos: 88.5,47.5 - parent: 40203 - - uid: 46039 + parent: 40599 + - uid: 46392 components: - type: Transform pos: -7.5,0.5 - parent: 44970 - - uid: 46040 + parent: 45355 + - uid: 46393 components: - type: Transform pos: -7.5,1.5 - parent: 44970 - - uid: 46041 + parent: 45355 + - uid: 46394 components: - type: Transform pos: -7.5,-2.5 - parent: 44970 - - uid: 46042 + parent: 45355 + - uid: 46395 components: - type: Transform pos: 5.5,-0.5 - parent: 44970 - - uid: 46043 + parent: 45355 + - uid: 46396 components: - type: Transform pos: 6.5,-0.5 - parent: 44970 - - uid: 46044 + parent: 45355 + - uid: 46397 components: - type: Transform pos: 7.5,-0.5 - parent: 44970 - - uid: 46045 + parent: 45355 + - uid: 46398 components: - type: Transform pos: 6.5,-1.5 - parent: 44970 - - uid: 46046 + parent: 45355 + - uid: 46399 components: - type: Transform pos: 8.5,-0.5 - parent: 44970 - - uid: 46047 + parent: 45355 + - uid: 46400 components: - type: Transform pos: 7.5,-1.5 - parent: 44970 - - uid: 46048 + parent: 45355 + - uid: 46401 components: - type: Transform pos: 9.5,2.5 - parent: 44970 - - uid: 46049 + parent: 45355 + - uid: 46402 components: - type: Transform pos: 7.5,11.5 - parent: 44970 - - uid: 46050 + parent: 45355 + - uid: 46403 components: - type: Transform pos: 7.5,12.5 - parent: 44970 - - uid: 46051 + parent: 45355 + - uid: 46404 components: - type: Transform pos: -2.5,18.5 - parent: 44970 - - uid: 46052 + parent: 45355 + - uid: 46405 components: - type: Transform pos: -1.5,18.5 - parent: 44970 - - uid: 46053 + parent: 45355 + - uid: 46406 components: - type: Transform pos: 6.5,11.5 - parent: 44970 - - uid: 46054 + parent: 45355 + - uid: 46407 components: - type: Transform pos: 6.5,12.5 - parent: 44970 - - uid: 46055 + parent: 45355 + - uid: 46408 components: - type: Transform pos: 6.5,13.5 - parent: 44970 - - uid: 46056 + parent: 45355 + - uid: 46409 components: - type: Transform pos: 6.5,14.5 - parent: 44970 - - uid: 46057 + parent: 45355 + - uid: 46410 components: - type: Transform pos: -0.5,20.5 - parent: 44970 - - uid: 46058 + parent: 45355 + - uid: 46411 components: - type: Transform pos: -0.5,19.5 - parent: 44970 - - uid: 46059 + parent: 45355 + - uid: 46412 components: - type: Transform pos: -1.5,20.5 - parent: 44970 - - uid: 46060 + parent: 45355 + - uid: 46413 components: - type: Transform pos: -0.5,21.5 - parent: 44970 - - uid: 46061 + parent: 45355 + - uid: 46414 components: - type: Transform pos: -2.5,19.5 - parent: 44970 - - uid: 46062 + parent: 45355 + - uid: 46415 components: - type: Transform pos: -3.5,18.5 - parent: 44970 - - uid: 46063 + parent: 45355 + - uid: 46416 components: - type: Transform pos: -13.5,-1.5 - parent: 44970 - - uid: 46064 + parent: 45355 + - uid: 46417 components: - type: Transform pos: -13.5,-2.5 - parent: 44970 - - uid: 46065 + parent: 45355 + - uid: 46418 components: - type: Transform pos: -13.5,-3.5 - parent: 44970 - - uid: 46066 + parent: 45355 + - uid: 46419 components: - type: Transform pos: -13.5,-4.5 - parent: 44970 - - uid: 46067 + parent: 45355 + - uid: 46420 components: - type: Transform pos: -13.5,-5.5 - parent: 44970 - - uid: 46068 + parent: 45355 + - uid: 46421 components: - type: Transform pos: -13.5,-6.5 - parent: 44970 - - uid: 46069 + parent: 45355 + - uid: 46422 components: - type: Transform pos: -13.5,-7.5 - parent: 44970 - - uid: 46070 + parent: 45355 + - uid: 46423 components: - type: Transform pos: -12.5,-1.5 - parent: 44970 - - uid: 46071 + parent: 45355 + - uid: 46424 components: - type: Transform pos: -12.5,-3.5 - parent: 44970 - - uid: 46072 + parent: 45355 + - uid: 46425 components: - type: Transform pos: -12.5,-4.5 - parent: 44970 - - uid: 46073 + parent: 45355 + - uid: 46426 components: - type: Transform pos: -12.5,-5.5 - parent: 44970 - - uid: 46074 + parent: 45355 + - uid: 46427 components: - type: Transform pos: -12.5,-6.5 - parent: 44970 - - uid: 46075 + parent: 45355 + - uid: 46428 components: - type: Transform pos: -12.5,-7.5 - parent: 44970 - - uid: 46076 + parent: 45355 + - uid: 46429 components: - type: Transform pos: 1.5,-1.5 - parent: 44970 - - uid: 46077 + parent: 45355 + - uid: 46430 components: - type: Transform pos: -11.5,-2.5 - parent: 44970 - - uid: 46078 + parent: 45355 + - uid: 46431 components: - type: Transform pos: -11.5,-3.5 - parent: 44970 - - uid: 46079 + parent: 45355 + - uid: 46432 components: - type: Transform pos: -11.5,-4.5 - parent: 44970 - - uid: 46080 + parent: 45355 + - uid: 46433 components: - type: Transform pos: -11.5,-5.5 - parent: 44970 - - uid: 46081 + parent: 45355 + - uid: 46434 components: - type: Transform pos: -11.5,-6.5 - parent: 44970 - - uid: 46082 + parent: 45355 + - uid: 46435 components: - type: Transform pos: 4.5,21.5 - parent: 44970 - - uid: 46083 + parent: 45355 + - uid: 46436 components: - type: Transform pos: 4.5,24.5 - parent: 44970 - - uid: 46084 + parent: 45355 + - uid: 46437 components: - type: Transform pos: 4.5,25.5 - parent: 44970 - - uid: 46085 + parent: 45355 + - uid: 46438 components: - type: Transform pos: 1.5,-0.5 - parent: 44970 - - uid: 46086 + parent: 45355 + - uid: 46439 components: - type: Transform pos: -10.5,-4.5 - parent: 44970 - - uid: 46087 + parent: 45355 + - uid: 46440 components: - type: Transform pos: 4.5,23.5 - parent: 44970 - - uid: 46088 + parent: 45355 + - uid: 46441 components: - type: Transform pos: 4.5,22.5 - parent: 44970 - - uid: 46089 + parent: 45355 + - uid: 46442 components: - type: Transform pos: 4.5,20.5 - parent: 44970 - - uid: 46090 + parent: 45355 + - uid: 46443 components: - type: Transform pos: 5.5,25.5 - parent: 44970 - - uid: 46091 + parent: 45355 + - uid: 46444 components: - type: Transform pos: 5.5,24.5 - parent: 44970 - - uid: 46092 + parent: 45355 + - uid: 46445 components: - type: Transform pos: 5.5,23.5 - parent: 44970 - - uid: 46093 + parent: 45355 + - uid: 46446 components: - type: Transform pos: 5.5,22.5 - parent: 44970 - - uid: 46094 + parent: 45355 + - uid: 46447 components: - type: Transform pos: 5.5,21.5 - parent: 44970 - - uid: 46095 + parent: 45355 + - uid: 46448 components: - type: Transform pos: 5.5,20.5 - parent: 44970 - - uid: 46096 + parent: 45355 + - uid: 46449 components: - type: Transform pos: 6.5,25.5 - parent: 44970 - - uid: 46097 + parent: 45355 + - uid: 46450 components: - type: Transform pos: 6.5,24.5 - parent: 44970 - - uid: 46098 + parent: 45355 + - uid: 46451 components: - type: Transform pos: 6.5,23.5 - parent: 44970 - - uid: 46099 + parent: 45355 + - uid: 46452 components: - type: Transform pos: 6.5,22.5 - parent: 44970 - - uid: 46100 + parent: 45355 + - uid: 46453 components: - type: Transform pos: 6.5,21.5 - parent: 44970 - - uid: 46101 + parent: 45355 + - uid: 46454 components: - type: Transform pos: 6.5,20.5 - parent: 44970 - - uid: 46102 + parent: 45355 + - uid: 46455 components: - type: Transform pos: 7.5,25.5 - parent: 44970 - - uid: 46103 + parent: 45355 + - uid: 46456 components: - type: Transform pos: 7.5,24.5 - parent: 44970 - - uid: 46104 + parent: 45355 + - uid: 46457 components: - type: Transform pos: 7.5,23.5 - parent: 44970 - - uid: 46105 + parent: 45355 + - uid: 46458 components: - type: Transform pos: 7.5,22.5 - parent: 44970 - - uid: 46106 + parent: 45355 + - uid: 46459 components: - type: Transform pos: 7.5,21.5 - parent: 44970 - - uid: 46107 + parent: 45355 + - uid: 46460 components: - type: Transform pos: 7.5,20.5 - parent: 44970 - - uid: 46108 + parent: 45355 + - uid: 46461 components: - type: Transform pos: 8.5,20.5 - parent: 44970 - - uid: 46109 + parent: 45355 + - uid: 46462 components: - type: Transform pos: 8.5,19.5 - parent: 44970 - - uid: 46110 + parent: 45355 + - uid: 46463 components: - type: Transform pos: 8.5,21.5 - parent: 44970 - - uid: 46111 + parent: 45355 + - uid: 46464 components: - type: Transform pos: 8.5,22.5 - parent: 44970 - - uid: 46112 + parent: 45355 + - uid: 46465 components: - type: Transform pos: 7.5,18.5 - parent: 44970 - - uid: 46113 + parent: 45355 + - uid: 46466 components: - type: Transform pos: 7.5,19.5 - parent: 44970 - - uid: 46114 + parent: 45355 + - uid: 46467 components: - type: Transform pos: 6.5,19.5 - parent: 44970 - - uid: 46115 + parent: 45355 + - uid: 46468 components: - type: Transform pos: 5.5,19.5 - parent: 44970 - - uid: 46116 + parent: 45355 + - uid: 46469 components: - type: Transform pos: 3.5,23.5 - parent: 44970 - - uid: 46117 + parent: 45355 + - uid: 46470 components: - type: Transform pos: 3.5,25.5 - parent: 44970 - - uid: 46118 + parent: 45355 + - uid: 46471 components: - type: Transform pos: 3.5,24.5 - parent: 44970 - - uid: 46119 + parent: 45355 + - uid: 46472 components: - type: Transform pos: -8.5,25.5 - parent: 44970 - - uid: 46120 + parent: 45355 + - uid: 46473 components: - type: Transform pos: -8.5,24.5 - parent: 44970 - - uid: 46121 + parent: 45355 + - uid: 46474 components: - type: Transform pos: -8.5,20.5 - parent: 44970 - - uid: 46122 + parent: 45355 + - uid: 46475 components: - type: Transform pos: -7.5,25.5 - parent: 44970 - - uid: 46123 + parent: 45355 + - uid: 46476 components: - type: Transform pos: -7.5,24.5 - parent: 44970 - - uid: 46124 + parent: 45355 + - uid: 46477 components: - type: Transform pos: -7.5,23.5 - parent: 44970 - - uid: 46125 + parent: 45355 + - uid: 46478 components: - type: Transform pos: -7.5,22.5 - parent: 44970 - - uid: 46126 + parent: 45355 + - uid: 46479 components: - type: Transform pos: -7.5,21.5 - parent: 44970 - - uid: 46127 + parent: 45355 + - uid: 46480 components: - type: Transform pos: -7.5,20.5 - parent: 44970 - - uid: 46128 + parent: 45355 + - uid: 46481 components: - type: Transform pos: -9.5,23.5 - parent: 44970 - - uid: 46129 + parent: 45355 + - uid: 46482 components: - type: Transform pos: -9.5,19.5 - parent: 44970 - - uid: 46130 + parent: 45355 + - uid: 46483 components: - type: Transform pos: -9.5,18.5 - parent: 44970 - - uid: 46131 + parent: 45355 + - uid: 46484 components: - type: Transform pos: -8.5,19.5 - parent: 44970 - - uid: 46132 + parent: 45355 + - uid: 46485 components: - type: Transform pos: -10.5,18.5 - parent: 44970 - - uid: 46133 + parent: 45355 + - uid: 46486 components: - type: Transform pos: -10.5,17.5 - parent: 44970 - - uid: 46134 + parent: 45355 + - uid: 46487 components: - type: Transform pos: -10.5,16.5 - parent: 44970 - - uid: 46135 + parent: 45355 + - uid: 46488 components: - type: Transform pos: -9.5,17.5 - parent: 44970 - - uid: 46136 + parent: 45355 + - uid: 46489 components: - type: Transform pos: -6.5,25.5 - parent: 44970 - - uid: 46137 + parent: 45355 + - uid: 46490 components: - type: Transform pos: -6.5,24.5 - parent: 44970 - - uid: 46138 + parent: 45355 + - uid: 46491 components: - type: Transform pos: -6.5,22.5 - parent: 44970 - - uid: 46139 + parent: 45355 + - uid: 46492 components: - type: Transform pos: -6.5,23.5 - parent: 44970 - - uid: 46140 + parent: 45355 + - uid: 46493 components: - type: Transform pos: -5.5,24.5 - parent: 44970 - - uid: 46141 + parent: 45355 + - uid: 46494 components: - type: Transform pos: -5.5,23.5 - parent: 44970 - - uid: 46142 + parent: 45355 + - uid: 46495 components: - type: Transform pos: -7.5,-8.5 - parent: 44970 - - uid: 46143 + parent: 45355 + - uid: 46496 components: - type: Transform pos: -7.5,-9.5 - parent: 44970 - - uid: 46144 + parent: 45355 + - uid: 46497 components: - type: Transform pos: -6.5,-10.5 - parent: 44970 - - uid: 46145 + parent: 45355 + - uid: 46498 components: - type: Transform pos: -6.5,-11.5 - parent: 44970 - - uid: 46146 + parent: 45355 + - uid: 46499 components: - type: Transform pos: -5.5,-11.5 - parent: 44970 - - uid: 46147 + parent: 45355 + - uid: 46500 components: - type: Transform pos: -4.5,-11.5 - parent: 44970 - - uid: 46148 + parent: 45355 + - uid: 46501 components: - type: Transform pos: -4.5,-12.5 - parent: 44970 - - uid: 46149 + parent: 45355 + - uid: 46502 components: - type: Transform pos: -3.5,-10.5 - parent: 44970 - - uid: 46150 + parent: 45355 + - uid: 46503 components: - type: Transform pos: -3.5,-11.5 - parent: 44970 - - uid: 46151 + parent: 45355 + - uid: 46504 components: - type: Transform pos: -3.5,-12.5 - parent: 44970 - - uid: 46152 + parent: 45355 + - uid: 46505 components: - type: Transform pos: -1.5,-11.5 - parent: 44970 - - uid: 46153 + parent: 45355 + - uid: 46506 components: - type: Transform pos: -2.5,-11.5 - parent: 44970 - - uid: 46154 + parent: 45355 + - uid: 46507 components: - type: Transform pos: -2.5,-12.5 - parent: 44970 - - uid: 46155 + parent: 45355 + - uid: 46508 components: - type: Transform pos: -2.5,-13.5 - parent: 44970 - - uid: 46156 + parent: 45355 + - uid: 46509 components: - type: Transform pos: -4.5,-13.5 - parent: 44970 - - uid: 46157 + parent: 45355 + - uid: 46510 components: - type: Transform pos: -5.5,-12.5 - parent: 44970 - - uid: 46158 + parent: 45355 + - uid: 46511 components: - type: Transform pos: -3.5,-13.5 - parent: 44970 - - uid: 46159 + parent: 45355 + - uid: 46512 components: - type: Transform pos: -7.5,-10.5 - parent: 44970 - - uid: 46160 + parent: 45355 + - uid: 46513 components: - type: Transform pos: -8.5,-9.5 - parent: 44970 - - uid: 46161 + parent: 45355 + - uid: 46514 components: - type: Transform pos: -8.5,-8.5 - parent: 44970 - - uid: 46162 + parent: 45355 + - uid: 46515 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 45355 + - uid: 46516 + components: + - type: Transform + pos: -9.5,-7.5 + parent: 45355 + - uid: 46517 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 45355 + - uid: 46518 + components: + - type: Transform + pos: 9.5,0.5 + parent: 45355 + - uid: 46519 + components: + - type: Transform + pos: 9.5,1.5 + parent: 45355 + - uid: 46852 + components: + - type: Transform + pos: -7.5,9.5 + parent: 46584 + - uid: 46853 + components: + - type: Transform + pos: -6.5,8.5 + parent: 46584 + - uid: 46854 + components: + - type: Transform + pos: 3.5,0.5 + parent: 46584 + - uid: 46855 + components: + - type: Transform + pos: 4.5,0.5 + parent: 46584 + - uid: 46856 + components: + - type: Transform + pos: 5.5,0.5 + parent: 46584 + - uid: 46857 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 46584 + - uid: 46858 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 46584 + - uid: 46859 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 46584 + - uid: 46860 + components: + - type: Transform + pos: 2.5,0.5 + parent: 46584 + - uid: 46861 + components: + - type: Transform + pos: 6.5,0.5 + parent: 46584 + - uid: 46862 + components: + - type: Transform + pos: 0.5,4.5 + parent: 46584 + - uid: 46863 + components: + - type: Transform + pos: -2.5,14.5 + parent: 46584 + - uid: 46864 + components: + - type: Transform + pos: -4.5,14.5 + parent: 46584 + - uid: 46865 + components: + - type: Transform + pos: -3.5,14.5 + parent: 46584 + - uid: 46866 + components: + - type: Transform + pos: -5.5,14.5 + parent: 46584 + - uid: 46867 + components: + - type: Transform + pos: -6.5,13.5 + parent: 46584 + - uid: 46868 + components: + - type: Transform + pos: -7.5,12.5 + parent: 46584 + - uid: 46869 + components: + - type: Transform + pos: -7.5,11.5 + parent: 46584 + - uid: 46870 + components: + - type: Transform + pos: -0.5,17.5 + parent: 46584 + - uid: 46871 + components: + - type: Transform + pos: 0.5,18.5 + parent: 46584 + - uid: 46872 + components: + - type: Transform + pos: 0.5,19.5 + parent: 46584 + - uid: 46873 + components: + - type: Transform + pos: 1.5,19.5 + parent: 46584 + - uid: 46874 + components: + - type: Transform + pos: 2.5,19.5 + parent: 46584 + - uid: 46875 + components: + - type: Transform + pos: 3.5,19.5 + parent: 46584 + - uid: 46876 + components: + - type: Transform + pos: 4.5,19.5 + parent: 46584 + - uid: 46877 + components: + - type: Transform + pos: -1.5,16.5 + parent: 46584 + - uid: 46878 + components: + - type: Transform + pos: -1.5,15.5 + parent: 46584 + - uid: 46879 + components: + - type: Transform + pos: 5.5,19.5 + parent: 46584 + - uid: 46880 + components: + - type: Transform + pos: 6.5,18.5 + parent: 46584 + - uid: 46881 + components: + - type: Transform + pos: 6.5,17.5 + parent: 46584 + - uid: 46882 + components: + - type: Transform + pos: 6.5,16.5 + parent: 46584 + - uid: 46883 + components: + - type: Transform + pos: 6.5,15.5 + parent: 46584 + - uid: 46884 + components: + - type: Transform + pos: 6.5,14.5 + parent: 46584 + - uid: 46885 + components: + - type: Transform + pos: 5.5,13.5 + parent: 46584 + - uid: 46886 + components: + - type: Transform + pos: 4.5,12.5 + parent: 46584 + - uid: 46887 + components: + - type: Transform + pos: 6.5,10.5 + parent: 46584 + - uid: 46888 + components: + - type: Transform + pos: 5.5,11.5 + parent: 46584 + - uid: 46889 + components: + - type: Transform + pos: 6.5,11.5 + parent: 46584 + - uid: 46890 + components: + - type: Transform + pos: 5.5,12.5 + parent: 46584 + - uid: 46891 + components: + - type: Transform + pos: 6.5,12.5 + parent: 46584 + - uid: 46892 + components: + - type: Transform + pos: 6.5,13.5 + parent: 46584 + - uid: 46893 + components: + - type: Transform + pos: 7.5,13.5 + parent: 46584 + - uid: 46894 + components: + - type: Transform + pos: 7.5,14.5 + parent: 46584 + - uid: 46895 + components: + - type: Transform + pos: 7.5,15.5 + parent: 46584 + - uid: 46896 + components: + - type: Transform + pos: -7.5,8.5 + parent: 46584 + - uid: 46897 + components: + - type: Transform + pos: -6.5,7.5 + parent: 46584 + - uid: 46898 + components: + - type: Transform + pos: -4.5,0.5 + parent: 46584 + - uid: 46899 + components: + - type: Transform + pos: -2.5,15.5 + parent: 46584 +- proto: WallRockSnowArtifactFragment + entities: + - uid: 36916 + components: + - type: Transform + pos: -92.5,57.5 + parent: 2 + - uid: 36917 + components: + - type: Transform + pos: -99.5,51.5 + parent: 2 + - uid: 36918 + components: + - type: Transform + pos: -92.5,58.5 + parent: 2 + - uid: 36919 + components: + - type: Transform + pos: -93.5,48.5 + parent: 2 + - uid: 36920 + components: + - type: Transform + pos: -93.5,47.5 + parent: 2 + - uid: 36921 + components: + - type: Transform + pos: -50.5,25.5 + parent: 2 + - uid: 36922 + components: + - type: Transform + pos: -51.5,25.5 + parent: 2 + - uid: 36923 components: - type: Transform - pos: -8.5,-7.5 - parent: 44970 - - uid: 46163 + pos: -51.5,26.5 + parent: 2 + - uid: 36924 components: - type: Transform - pos: -9.5,-7.5 - parent: 44970 - - uid: 46164 + pos: -51.5,43.5 + parent: 2 + - uid: 36925 components: - type: Transform - pos: -9.5,-8.5 - parent: 44970 - - uid: 46165 + pos: -50.5,43.5 + parent: 2 + - uid: 36926 components: - type: Transform - pos: 9.5,0.5 - parent: 44970 - - uid: 46166 + pos: -112.5,38.5 + parent: 2 + - uid: 36927 components: - type: Transform - pos: 9.5,1.5 - parent: 44970 -- proto: WallRockSnowArtifactFragment - entities: - - uid: 36637 + pos: -113.5,37.5 + parent: 2 + - uid: 36928 components: - type: Transform pos: -36.5,46.5 parent: 2 - - uid: 36638 + - uid: 36929 components: - type: Transform pos: -8.5,65.5 parent: 2 - - uid: 36639 + - uid: 36930 components: - type: Transform pos: 105.5,-2.5 parent: 2 - - uid: 36640 + - uid: 36931 components: - type: Transform pos: 110.5,8.5 parent: 2 - - uid: 36641 + - uid: 36932 components: - type: Transform pos: 51.5,-42.5 parent: 2 - - uid: 36642 + - uid: 36933 components: - type: Transform pos: 27.5,50.5 parent: 2 - - uid: 36643 + - uid: 36934 components: - type: Transform pos: -58.5,59.5 parent: 2 - - uid: 36644 + - uid: 36935 components: - type: Transform pos: -36.5,47.5 parent: 2 - - uid: 36645 + - uid: 36936 components: - type: Transform pos: 53.5,14.5 parent: 2 - - uid: 36646 + - uid: 36937 components: - type: Transform pos: -49.5,42.5 parent: 2 - - uid: 36647 + - uid: 36938 components: - type: Transform pos: -91.5,40.5 parent: 2 - - uid: 36648 + - uid: 36939 components: - type: Transform pos: -87.5,1.5 parent: 2 - - uid: 36649 + - uid: 36940 components: - type: Transform pos: -83.5,-5.5 parent: 2 - - uid: 36650 - components: - - type: Transform - pos: -41.5,70.5 - parent: 2 - - uid: 36651 + - uid: 36941 components: - type: Transform pos: -92.5,47.5 parent: 2 - - uid: 36652 + - uid: 36942 components: - type: Transform pos: 53.5,38.5 parent: 2 - - uid: 36653 + - uid: 36943 components: - type: Transform pos: 88.5,-46.5 parent: 2 - - uid: 36654 + - uid: 36944 components: - type: Transform pos: 48.5,54.5 parent: 2 - - uid: 36655 + - uid: 36945 components: - type: Transform pos: 13.5,-47.5 parent: 2 - - uid: 36656 + - uid: 36946 components: - type: Transform pos: 72.5,28.5 parent: 2 - - uid: 36657 + - uid: 36947 components: - type: Transform pos: 17.5,66.5 parent: 2 - - uid: 36658 + - uid: 36948 components: - type: Transform pos: 84.5,3.5 parent: 2 - - uid: 36659 + - uid: 36949 components: - type: Transform pos: -68.5,2.5 parent: 2 - - uid: 36660 + - uid: 36950 components: - type: Transform pos: -62.5,-15.5 parent: 2 - - uid: 36661 + - uid: 36951 components: - type: Transform pos: -63.5,-15.5 parent: 2 - - uid: 36662 + - uid: 36952 components: - type: Transform pos: -62.5,-16.5 parent: 2 - - uid: 36663 + - uid: 36953 components: - type: Transform pos: -52.5,-48.5 parent: 2 - - uid: 36664 + - uid: 36954 components: - type: Transform pos: -42.5,-29.5 parent: 2 - - uid: 36665 + - uid: 36955 components: - type: Transform pos: -91.5,6.5 parent: 2 - - uid: 36666 + - uid: 36956 components: - type: Transform pos: -93.5,15.5 parent: 2 - - uid: 36667 + - uid: 36957 components: - type: Transform pos: -95.5,9.5 parent: 2 - - uid: 36668 + - uid: 36958 components: - type: Transform pos: -97.5,37.5 parent: 2 - - uid: 36669 + - uid: 36959 components: - type: Transform pos: 97.5,11.5 parent: 2 - - uid: 36670 + - uid: 36960 components: - type: Transform pos: -69.5,1.5 parent: 2 - - uid: 36671 - components: - - type: Transform - pos: -105.5,40.5 - parent: 2 - - uid: 36672 + - uid: 36961 components: - type: Transform pos: -93.5,57.5 parent: 2 - - uid: 44554 + - uid: 44943 components: - type: Transform pos: 24.5,55.5 - parent: 40203 - - uid: 44555 + parent: 40599 + - uid: 44944 components: - type: Transform pos: 25.5,58.5 - parent: 40203 - - uid: 44556 + parent: 40599 + - uid: 44945 components: - type: Transform pos: 25.5,57.5 - parent: 40203 - - uid: 44557 + parent: 40599 + - uid: 44946 components: - type: Transform pos: 25.5,56.5 - parent: 40203 - - uid: 44558 + parent: 40599 + - uid: 44947 components: - type: Transform pos: 26.5,56.5 - parent: 40203 - - uid: 44559 + parent: 40599 + - uid: 44948 components: - type: Transform pos: 28.5,54.5 - parent: 40203 - - uid: 44560 + parent: 40599 + - uid: 44949 components: - type: Transform pos: 70.5,48.5 - parent: 40203 - - uid: 44561 + parent: 40599 + - uid: 44950 components: - type: Transform pos: 67.5,47.5 - parent: 40203 - - uid: 44562 + parent: 40599 + - uid: 44951 components: - type: Transform pos: 65.5,47.5 - parent: 40203 - - uid: 44563 + parent: 40599 + - uid: 44952 components: - type: Transform pos: 66.5,48.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowBananium entities: - - uid: 36673 + - uid: 36962 + components: + - type: Transform + pos: -110.5,40.5 + parent: 2 + - uid: 36963 + components: + - type: Transform + pos: -111.5,40.5 + parent: 2 + - uid: 36964 + components: + - type: Transform + pos: -108.5,39.5 + parent: 2 + - uid: 36965 + components: + - type: Transform + pos: -109.5,39.5 + parent: 2 + - uid: 36966 + components: + - type: Transform + pos: -110.5,39.5 + parent: 2 + - uid: 36967 + components: + - type: Transform + pos: 38.5,54.5 + parent: 2 + - uid: 36968 + components: + - type: Transform + pos: 38.5,55.5 + parent: 2 + - uid: 36969 + components: + - type: Transform + pos: -58.5,-31.5 + parent: 2 + - uid: 36970 + components: + - type: Transform + pos: -119.5,31.5 + parent: 2 + - uid: 36971 + components: + - type: Transform + pos: -57.5,-31.5 + parent: 2 + - uid: 36972 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 36973 + components: + - type: Transform + pos: -56.5,-32.5 + parent: 2 + - uid: 36974 + components: + - type: Transform + pos: 36.5,54.5 + parent: 2 + - uid: 36975 + components: + - type: Transform + pos: 36.5,55.5 + parent: 2 + - uid: 36976 + components: + - type: Transform + pos: 37.5,54.5 + parent: 2 + - uid: 36977 + components: + - type: Transform + pos: -120.5,30.5 + parent: 2 + - uid: 36978 + components: + - type: Transform + pos: -120.5,31.5 + parent: 2 + - uid: 36979 + components: + - type: Transform + pos: -120.5,32.5 + parent: 2 + - uid: 36980 + components: + - type: Transform + pos: -59.5,-34.5 + parent: 2 + - uid: 36981 components: - type: Transform pos: -57.5,-33.5 parent: 2 - - uid: 36674 + - uid: 36982 components: - type: Transform pos: -10.5,64.5 parent: 2 - - uid: 36675 + - uid: 36983 components: - type: Transform pos: -9.5,65.5 parent: 2 - - uid: 36676 + - uid: 36984 components: - type: Transform pos: 83.5,13.5 parent: 2 - - uid: 36677 + - uid: 36985 components: - type: Transform pos: 81.5,13.5 parent: 2 - - uid: 36678 + - uid: 36986 components: - type: Transform pos: 81.5,14.5 parent: 2 - - uid: 36679 + - uid: 36987 components: - type: Transform pos: 78.5,-1.5 parent: 2 - - uid: 36680 + - uid: 36988 components: - type: Transform pos: 32.5,-27.5 parent: 2 - - uid: 36681 + - uid: 36989 components: - type: Transform pos: 52.5,-50.5 parent: 2 - - uid: 36682 + - uid: 36990 components: - type: Transform pos: 48.5,-43.5 parent: 2 - - uid: 36683 + - uid: 36991 components: - type: Transform pos: 47.5,54.5 parent: 2 - - uid: 36684 + - uid: 36992 components: - type: Transform pos: 66.5,-2.5 parent: 2 - - uid: 36685 + - uid: 36993 components: - type: Transform pos: -108.5,38.5 parent: 2 - - uid: 36686 + - uid: 36994 components: - type: Transform pos: -109.5,38.5 parent: 2 - - uid: 36687 + - uid: 36995 components: - type: Transform pos: -71.5,-7.5 parent: 2 - - uid: 36688 + - uid: 36996 components: - type: Transform pos: -70.5,-7.5 parent: 2 - - uid: 36689 + - uid: 36997 components: - type: Transform pos: -1.5,-26.5 parent: 2 - - uid: 36690 + - uid: 36998 components: - type: Transform pos: -77.5,46.5 parent: 2 - - uid: 36691 + - uid: 36999 components: - type: Transform pos: -77.5,47.5 parent: 2 - - uid: 36692 + - uid: 37000 components: - type: Transform pos: -78.5,46.5 parent: 2 - - uid: 36693 + - uid: 37001 components: - type: Transform pos: -92.5,38.5 parent: 2 - - uid: 36694 + - uid: 37002 components: - type: Transform pos: -93.5,37.5 parent: 2 - - uid: 36695 + - uid: 37003 components: - type: Transform pos: -85.5,50.5 parent: 2 - - uid: 36696 + - uid: 37004 components: - type: Transform pos: -90.5,20.5 parent: 2 - - uid: 36697 + - uid: 37005 components: - type: Transform pos: -90.5,19.5 parent: 2 - - uid: 36698 + - uid: 37006 components: - type: Transform pos: -83.5,8.5 parent: 2 - - uid: 36699 + - uid: 37007 components: - type: Transform pos: -83.5,6.5 parent: 2 - - uid: 36700 + - uid: 37008 components: - type: Transform pos: -82.5,8.5 parent: 2 - - uid: 36701 + - uid: 37009 components: - type: Transform pos: -84.5,-6.5 parent: 2 - - uid: 36702 + - uid: 37010 components: - type: Transform pos: -83.5,-6.5 parent: 2 - - uid: 36703 + - uid: 37011 components: - type: Transform pos: -85.5,51.5 parent: 2 - - uid: 36704 + - uid: 37012 components: - type: Transform pos: -58.5,-32.5 parent: 2 - - uid: 36705 + - uid: 37013 components: - type: Transform pos: -58.5,-33.5 parent: 2 - - uid: 36706 + - uid: 37014 components: - type: Transform pos: -43.5,69.5 parent: 2 - - uid: 36707 + - uid: 37015 components: - type: Transform pos: -42.5,67.5 parent: 2 - - uid: 36708 - components: - - type: Transform - pos: -41.5,66.5 - parent: 2 - - uid: 36709 + - uid: 37016 components: - type: Transform pos: 64.5,-55.5 parent: 2 - - uid: 36710 + - uid: 37017 components: - type: Transform pos: 34.5,54.5 parent: 2 - - uid: 36711 + - uid: 37018 components: - type: Transform pos: 74.5,-51.5 parent: 2 - - uid: 36712 + - uid: 37019 components: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 36713 + - uid: 37020 components: - type: Transform pos: 65.5,-55.5 parent: 2 - - uid: 36714 + - uid: 37021 components: - type: Transform pos: 10.5,-54.5 parent: 2 - - uid: 36715 + - uid: 37022 components: - type: Transform pos: 91.5,-47.5 parent: 2 - - uid: 36716 + - uid: 37023 components: - type: Transform pos: 12.5,-33.5 parent: 2 - - uid: 36717 + - uid: 37024 components: - type: Transform pos: 47.5,53.5 parent: 2 - - uid: 36718 + - uid: 37025 components: - type: Transform pos: 48.5,52.5 parent: 2 - - uid: 36719 + - uid: 37026 components: - type: Transform pos: 47.5,8.5 parent: 2 - - uid: 36720 + - uid: 37027 components: - type: Transform pos: 48.5,7.5 parent: 2 - - uid: 36721 + - uid: 37028 components: - type: Transform pos: 48.5,8.5 parent: 2 - - uid: 36722 + - uid: 37029 components: - type: Transform pos: 10.5,-53.5 parent: 2 - - uid: 36723 + - uid: 37030 components: - type: Transform pos: 46.5,10.5 parent: 2 - - uid: 36724 + - uid: 37031 components: - type: Transform pos: 46.5,9.5 parent: 2 - - uid: 36725 + - uid: 37032 components: - type: Transform pos: 48.5,-42.5 parent: 2 - - uid: 36726 + - uid: 37033 components: - type: Transform pos: 34.5,53.5 parent: 2 - - uid: 36727 + - uid: 37034 components: - type: Transform pos: 35.5,54.5 parent: 2 - - uid: 36728 + - uid: 37035 components: - type: Transform pos: 69.5,22.5 parent: 2 - - uid: 36729 + - uid: 37036 components: - type: Transform pos: 69.5,21.5 parent: 2 - - uid: 36730 + - uid: 37037 components: - type: Transform pos: 70.5,21.5 parent: 2 - - uid: 36731 + - uid: 37038 components: - type: Transform pos: 70.5,34.5 parent: 2 - - uid: 36732 + - uid: 37039 components: - type: Transform pos: 70.5,35.5 parent: 2 - - uid: 36733 + - uid: 37040 components: - type: Transform pos: 65.5,-3.5 parent: 2 - - uid: 36734 + - uid: 37041 components: - type: Transform pos: 65.5,-4.5 parent: 2 - - uid: 36735 + - uid: 37042 components: - type: Transform pos: 18.5,68.5 parent: 2 - - uid: 36736 + - uid: 37043 components: - type: Transform pos: 19.5,67.5 parent: 2 - - uid: 36737 + - uid: 37044 components: - type: Transform pos: 79.5,-3.5 parent: 2 - - uid: 36738 + - uid: 37045 components: - type: Transform pos: -71.5,-8.5 parent: 2 - - uid: 36739 + - uid: 37046 components: - type: Transform pos: -70.5,-8.5 parent: 2 - - uid: 36740 + - uid: 37047 components: - type: Transform pos: -70.5,-9.5 parent: 2 - - uid: 36741 + - uid: 37048 components: - type: Transform pos: -83.5,-7.5 parent: 2 - - uid: 36742 + - uid: 37049 components: - type: Transform pos: -82.5,-7.5 parent: 2 - - uid: 36743 + - uid: 37050 components: - type: Transform pos: 47.5,11.5 parent: 2 - - uid: 36744 + - uid: 37051 components: - type: Transform pos: 47.5,10.5 parent: 2 - - uid: 36745 + - uid: 37052 components: - type: Transform pos: 47.5,9.5 parent: 2 - - uid: 36746 + - uid: 37053 components: - type: Transform pos: 53.5,-49.5 parent: 2 - - uid: 36747 + - uid: 37054 components: - type: Transform pos: 53.5,-50.5 parent: 2 - - uid: 36748 + - uid: 37055 components: - type: Transform pos: -21.5,-68.5 parent: 2 - - uid: 36749 + - uid: 37056 components: - type: Transform pos: -21.5,-67.5 parent: 2 - - uid: 36750 + - uid: 37057 components: - type: Transform pos: -34.5,-51.5 parent: 2 - - uid: 36751 + - uid: 37058 components: - type: Transform pos: -35.5,-51.5 parent: 2 - - uid: 36752 + - uid: 37059 components: - type: Transform pos: -55.5,-42.5 parent: 2 - - uid: 36753 + - uid: 37060 components: - type: Transform pos: -54.5,-42.5 parent: 2 - - uid: 36754 + - uid: 37061 components: - type: Transform pos: -54.5,-43.5 parent: 2 - - uid: 36755 + - uid: 37062 components: - type: Transform pos: 49.5,-44.5 parent: 2 - - uid: 36756 + - uid: 37063 components: - type: Transform pos: -118.5,29.5 parent: 2 - - uid: 36757 + - uid: 37064 components: - type: Transform pos: -119.5,30.5 parent: 2 - - uid: 36758 + - uid: 37065 components: - type: Transform pos: -94.5,13.5 parent: 2 - - uid: 36759 + - uid: 37066 components: - type: Transform pos: -95.5,12.5 parent: 2 - - uid: 36760 + - uid: 37067 components: - type: Transform pos: -136.5,12.5 parent: 2 - - uid: 36761 + - uid: 37068 components: - type: Transform pos: -136.5,11.5 parent: 2 - - uid: 36762 + - uid: 37069 components: - type: Transform pos: -137.5,12.5 parent: 2 - - uid: 36763 + - uid: 37070 components: - type: Transform pos: -12.5,73.5 parent: 2 - - uid: 36764 + - uid: 37071 components: - type: Transform pos: -13.5,73.5 parent: 2 - - uid: 36765 + - uid: 37072 components: - type: Transform pos: -59.5,-33.5 parent: 2 - - uid: 36766 + - uid: 37073 components: - type: Transform pos: -72.5,-24.5 parent: 2 - - uid: 36767 + - uid: 37074 components: - type: Transform pos: -73.5,-24.5 parent: 2 - - uid: 36768 + - uid: 37075 components: - type: Transform pos: 32.5,-28.5 parent: 2 - - uid: 36769 + - uid: 37076 components: - type: Transform pos: 31.5,-27.5 parent: 2 - - uid: 36770 + - uid: 37077 components: - type: Transform pos: -76.5,-6.5 parent: 2 - - uid: 36771 + - uid: 37078 components: - type: Transform pos: -77.5,-6.5 parent: 2 - - uid: 36772 - components: - - type: Transform - pos: -41.5,67.5 - parent: 2 - - uid: 36773 + - uid: 37079 components: - type: Transform pos: -14.5,73.5 parent: 2 - - uid: 36774 + - uid: 37080 components: - type: Transform pos: -13.5,74.5 parent: 2 - - uid: 36775 + - uid: 37081 components: - type: Transform pos: -12.5,74.5 parent: 2 - - uid: 36776 + - uid: 37082 components: - type: Transform pos: -12.5,75.5 parent: 2 - - uid: 36777 + - uid: 37083 components: - type: Transform pos: -12.5,76.5 parent: 2 - - uid: 36778 + - uid: 37084 components: - type: Transform pos: -57.5,-32.5 parent: 2 - - uid: 36779 + - uid: 37085 components: - type: Transform pos: -119.5,29.5 parent: 2 - - uid: 36780 + - uid: 37086 components: - type: Transform pos: 51.5,15.5 parent: 2 - - uid: 36781 + - uid: 37087 components: - type: Transform pos: 66.5,21.5 parent: 2 - - uid: 36782 + - uid: 37088 components: - type: Transform pos: 51.5,16.5 parent: 2 - - uid: 36783 + - uid: 37089 components: - type: Transform pos: 5.5,65.5 parent: 2 - - uid: 36784 + - uid: 37090 components: - type: Transform pos: 6.5,64.5 parent: 2 - - uid: 36785 + - uid: 37091 components: - type: Transform pos: 5.5,64.5 parent: 2 - - uid: 44564 + - uid: 44953 components: - type: Transform pos: 33.5,85.5 - parent: 40203 - - uid: 44565 + parent: 40599 + - uid: 44954 components: - type: Transform pos: 34.5,85.5 - parent: 40203 - - uid: 44566 + parent: 40599 + - uid: 44955 components: - type: Transform pos: 34.5,84.5 - parent: 40203 - - uid: 44567 + parent: 40599 + - uid: 44956 components: - type: Transform pos: 35.5,87.5 - parent: 40203 - - uid: 44568 + parent: 40599 + - uid: 44957 components: - type: Transform pos: 35.5,86.5 - parent: 40203 - - uid: 44569 + parent: 40599 + - uid: 44958 components: - type: Transform pos: 36.5,87.5 - parent: 40203 - - uid: 44570 + parent: 40599 + - uid: 44959 components: - type: Transform pos: 36.5,86.5 - parent: 40203 - - uid: 44571 + parent: 40599 + - uid: 44960 components: - type: Transform pos: 36.5,85.5 - parent: 40203 - - uid: 44572 + parent: 40599 + - uid: 44961 components: - type: Transform pos: 37.5,86.5 - parent: 40203 - - uid: 44573 + parent: 40599 + - uid: 44962 components: - type: Transform pos: 38.5,86.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowCoal entities: - - uid: 36786 + - uid: 37092 + components: + - type: Transform + pos: -88.5,59.5 + parent: 2 + - uid: 37093 + components: + - type: Transform + pos: -87.5,58.5 + parent: 2 + - uid: 37094 + components: + - type: Transform + pos: -88.5,60.5 + parent: 2 + - uid: 37095 + components: + - type: Transform + pos: -90.5,59.5 + parent: 2 + - uid: 37096 + components: + - type: Transform + pos: -88.5,58.5 + parent: 2 + - uid: 37097 + components: + - type: Transform + pos: -91.5,59.5 + parent: 2 + - uid: 37098 + components: + - type: Transform + pos: -90.5,61.5 + parent: 2 + - uid: 37099 + components: + - type: Transform + pos: -89.5,61.5 + parent: 2 + - uid: 37100 + components: + - type: Transform + pos: -89.5,59.5 + parent: 2 + - uid: 37101 + components: + - type: Transform + pos: -89.5,58.5 + parent: 2 + - uid: 37102 + components: + - type: Transform + pos: -92.5,60.5 + parent: 2 + - uid: 37103 + components: + - type: Transform + pos: -89.5,60.5 + parent: 2 + - uid: 37104 + components: + - type: Transform + pos: -91.5,60.5 + parent: 2 + - uid: 37105 + components: + - type: Transform + pos: -90.5,60.5 + parent: 2 + - uid: 37106 + components: + - type: Transform + pos: -72.5,-4.5 + parent: 2 + - uid: 37107 + components: + - type: Transform + pos: -72.5,-3.5 + parent: 2 + - uid: 37108 components: - type: Transform pos: 96.5,-33.5 parent: 2 - - uid: 36787 + - uid: 37109 components: - type: Transform pos: 97.5,-35.5 parent: 2 - - uid: 36788 + - uid: 37110 components: - type: Transform pos: 110.5,2.5 parent: 2 - - uid: 36789 + - uid: 37111 components: - type: Transform pos: 110.5,1.5 parent: 2 - - uid: 36790 + - uid: 37112 components: - type: Transform pos: 110.5,5.5 parent: 2 - - uid: 36791 + - uid: 37113 components: - type: Transform pos: 110.5,4.5 parent: 2 - - uid: 36792 + - uid: 37114 components: - type: Transform pos: 110.5,3.5 parent: 2 - - uid: 36793 + - uid: 37115 components: - type: Transform pos: 109.5,4.5 parent: 2 - - uid: 36794 + - uid: 37116 components: - type: Transform pos: 109.5,2.5 parent: 2 - - uid: 36795 + - uid: 37117 components: - type: Transform pos: -24.5,28.5 parent: 2 - - uid: 36796 + - uid: 37118 components: - type: Transform pos: -22.5,30.5 parent: 2 - - uid: 36797 + - uid: 37119 components: - type: Transform pos: -22.5,29.5 parent: 2 - - uid: 36798 + - uid: 37120 components: - type: Transform pos: -22.5,28.5 parent: 2 - - uid: 36799 + - uid: 37121 components: - type: Transform pos: -21.5,28.5 parent: 2 - - uid: 36800 + - uid: 37122 components: - type: Transform pos: -23.5,29.5 parent: 2 - - uid: 36801 + - uid: 37123 components: - type: Transform pos: -23.5,28.5 parent: 2 - - uid: 36802 + - uid: 37124 components: - type: Transform pos: -71.5,13.5 parent: 2 - - uid: 36803 + - uid: 37125 components: - type: Transform pos: 44.5,57.5 parent: 2 - - uid: 36804 + - uid: 37126 components: - type: Transform pos: -71.5,12.5 parent: 2 - - uid: 36805 + - uid: 37127 components: - type: Transform pos: 43.5,58.5 parent: 2 - - uid: 36806 + - uid: 37128 components: - type: Transform pos: -70.5,3.5 parent: 2 - - uid: 36807 + - uid: 37129 components: - type: Transform pos: -70.5,4.5 parent: 2 - - uid: 36808 + - uid: 37130 components: - type: Transform pos: -70.5,5.5 parent: 2 - - uid: 36809 + - uid: 37131 components: - type: Transform pos: -71.5,4.5 parent: 2 - - uid: 36810 + - uid: 37132 components: - type: Transform pos: -71.5,5.5 parent: 2 - - uid: 36811 + - uid: 37133 components: - type: Transform pos: -61.5,20.5 parent: 2 - - uid: 36812 + - uid: 37134 components: - type: Transform pos: -60.5,20.5 parent: 2 - - uid: 36813 + - uid: 37135 components: - type: Transform pos: -60.5,21.5 parent: 2 - - uid: 36814 + - uid: 37136 components: - type: Transform pos: -59.5,24.5 parent: 2 - - uid: 36815 + - uid: 37137 components: - type: Transform pos: -68.5,20.5 parent: 2 - - uid: 36816 + - uid: 37138 components: - type: Transform pos: -69.5,20.5 parent: 2 - - uid: 36817 + - uid: 37139 components: - type: Transform pos: -73.5,-2.5 parent: 2 - - uid: 36818 + - uid: 37140 components: - type: Transform pos: -73.5,-3.5 parent: 2 - - uid: 36819 + - uid: 37141 components: - type: Transform pos: -74.5,-1.5 parent: 2 - - uid: 36820 + - uid: 37142 components: - type: Transform pos: -43.5,29.5 parent: 2 - - uid: 36821 + - uid: 37143 components: - type: Transform pos: -42.5,29.5 parent: 2 - - uid: 36822 + - uid: 37144 components: - type: Transform pos: -41.5,29.5 parent: 2 - - uid: 36823 + - uid: 37145 components: - type: Transform pos: -42.5,30.5 parent: 2 - - uid: 36824 + - uid: 37146 components: - type: Transform pos: -42.5,31.5 parent: 2 - - uid: 36825 + - uid: 37147 components: - type: Transform pos: -41.5,30.5 parent: 2 - - uid: 36826 + - uid: 37148 components: - type: Transform pos: -68.5,21.5 parent: 2 - - uid: 36827 + - uid: 37149 components: - type: Transform pos: -65.5,56.5 parent: 2 - - uid: 36828 + - uid: 37150 components: - type: Transform pos: -66.5,56.5 parent: 2 - - uid: 36829 + - uid: 37151 components: - type: Transform pos: -66.5,57.5 parent: 2 - - uid: 36830 + - uid: 37152 components: - type: Transform pos: -67.5,56.5 parent: 2 - - uid: 36831 + - uid: 37153 components: - type: Transform pos: -67.5,57.5 parent: 2 - - uid: 36832 + - uid: 37154 components: - type: Transform pos: -68.5,56.5 parent: 2 - - uid: 36833 + - uid: 37155 components: - type: Transform pos: -68.5,55.5 parent: 2 - - uid: 36834 + - uid: 37156 components: - type: Transform pos: -61.5,-29.5 parent: 2 - - uid: 36835 + - uid: 37157 components: - type: Transform pos: -83.5,10.5 parent: 2 - - uid: 36836 + - uid: 37158 components: - type: Transform pos: -82.5,10.5 parent: 2 - - uid: 36837 + - uid: 37159 components: - type: Transform pos: -82.5,9.5 parent: 2 - - uid: 36838 + - uid: 37160 components: - type: Transform pos: -75.5,-2.5 parent: 2 - - uid: 36839 + - uid: 37161 components: - type: Transform pos: -74.5,-2.5 parent: 2 - - uid: 36840 + - uid: 37162 components: - type: Transform pos: -73.5,-4.5 parent: 2 - - uid: 36841 + - uid: 37163 components: - type: Transform pos: -91.5,61.5 parent: 2 - - uid: 36842 + - uid: 37164 components: - type: Transform pos: 96.5,-46.5 parent: 2 - - uid: 36843 + - uid: 37165 components: - type: Transform pos: 38.5,39.5 parent: 2 - - uid: 36844 + - uid: 37166 components: - type: Transform pos: 42.5,58.5 parent: 2 - - uid: 36845 + - uid: 37167 components: - type: Transform pos: 44.5,58.5 parent: 2 - - uid: 36846 + - uid: 37168 components: - type: Transform pos: 43.5,60.5 parent: 2 - - uid: 36847 + - uid: 37169 components: - type: Transform pos: -34.5,18.5 parent: 2 - - uid: 36848 + - uid: 37170 components: - type: Transform pos: 44.5,59.5 parent: 2 - - uid: 36849 + - uid: 37171 components: - type: Transform pos: 42.5,59.5 parent: 2 - - uid: 36850 + - uid: 37172 components: - type: Transform pos: 45.5,58.5 parent: 2 - - uid: 36851 + - uid: 37173 components: - type: Transform pos: 55.5,17.5 parent: 2 - - uid: 36852 + - uid: 37174 components: - type: Transform pos: 56.5,17.5 parent: 2 - - uid: 36853 + - uid: 37175 components: - type: Transform pos: 56.5,18.5 parent: 2 - - uid: 36854 + - uid: 37176 components: - type: Transform pos: 57.5,16.5 parent: 2 - - uid: 36855 + - uid: 37177 components: - type: Transform pos: 57.5,17.5 parent: 2 - - uid: 36856 + - uid: 37178 components: - type: Transform pos: 57.5,18.5 parent: 2 - - uid: 36857 + - uid: 37179 components: - type: Transform pos: 58.5,17.5 parent: 2 - - uid: 36858 + - uid: 37180 components: - type: Transform pos: 45.5,57.5 parent: 2 - - uid: 36859 + - uid: 37181 components: - type: Transform pos: 43.5,59.5 parent: 2 - - uid: 36860 + - uid: 37182 components: - type: Transform pos: -67.5,9.5 parent: 2 - - uid: 36861 + - uid: 37183 components: - type: Transform pos: -67.5,8.5 parent: 2 - - uid: 36862 + - uid: 37184 components: - type: Transform pos: -68.5,8.5 parent: 2 - - uid: 36863 + - uid: 37185 components: - type: Transform pos: -28.5,-60.5 parent: 2 - - uid: 36864 + - uid: 37186 components: - type: Transform pos: -28.5,-59.5 parent: 2 - - uid: 36865 + - uid: 37187 components: - type: Transform pos: -29.5,-59.5 parent: 2 - - uid: 36866 + - uid: 37188 components: - type: Transform pos: -29.5,-58.5 parent: 2 - - uid: 36867 + - uid: 37189 components: - type: Transform pos: -29.5,-57.5 parent: 2 - - uid: 36868 + - uid: 37190 components: - type: Transform pos: -30.5,-58.5 parent: 2 - - uid: 36869 + - uid: 37191 components: - type: Transform pos: -30.5,-59.5 parent: 2 - - uid: 36870 + - uid: 37192 components: - type: Transform pos: -31.5,-58.5 parent: 2 - - uid: 36871 + - uid: 37193 components: - type: Transform pos: -31.5,-59.5 parent: 2 - - uid: 36872 + - uid: 37194 components: - type: Transform pos: -36.5,-41.5 parent: 2 - - uid: 36873 + - uid: 37195 components: - type: Transform pos: -13.5,36.5 parent: 2 - - uid: 36874 + - uid: 37196 components: - type: Transform pos: -62.5,-30.5 parent: 2 - - uid: 36875 + - uid: 37197 components: - type: Transform pos: -62.5,-29.5 parent: 2 - - uid: 36876 + - uid: 37198 components: - type: Transform pos: -42.5,-34.5 parent: 2 - - uid: 36877 + - uid: 37199 components: - type: Transform pos: -43.5,-34.5 parent: 2 - - uid: 36878 + - uid: 37200 components: - type: Transform pos: -32.5,-59.5 parent: 2 - - uid: 36879 + - uid: 37201 components: - type: Transform pos: -43.5,-33.5 parent: 2 - - uid: 36880 + - uid: 37202 components: - type: Transform pos: -43.5,-32.5 parent: 2 - - uid: 36881 + - uid: 37203 components: - type: Transform pos: -44.5,-33.5 parent: 2 - - uid: 36882 + - uid: 37204 components: - type: Transform pos: -33.5,18.5 parent: 2 - - uid: 36883 + - uid: 37205 components: - type: Transform pos: -33.5,19.5 parent: 2 - - uid: 36884 + - uid: 37206 components: - type: Transform pos: -93.5,13.5 parent: 2 - - uid: 36885 + - uid: 37207 components: - type: Transform pos: -93.5,12.5 parent: 2 - - uid: 36886 + - uid: 37208 components: - type: Transform pos: -96.5,16.5 parent: 2 - - uid: 36887 + - uid: 37209 components: - type: Transform pos: -96.5,15.5 parent: 2 - - uid: 36888 + - uid: 37210 components: - type: Transform pos: -97.5,13.5 parent: 2 - - uid: 36889 + - uid: 37211 components: - type: Transform pos: -94.5,11.5 parent: 2 - - uid: 36890 + - uid: 37212 components: - type: Transform pos: -94.5,12.5 parent: 2 - - uid: 36891 + - uid: 37213 components: - type: Transform pos: -125.5,24.5 parent: 2 - - uid: 36892 + - uid: 37214 components: - type: Transform pos: -96.5,14.5 parent: 2 - - uid: 36893 + - uid: 37215 components: - type: Transform pos: -97.5,15.5 parent: 2 - - uid: 36894 + - uid: 37216 components: - type: Transform pos: -97.5,16.5 parent: 2 - - uid: 36895 + - uid: 37217 components: - type: Transform pos: -97.5,14.5 parent: 2 - - uid: 36896 + - uid: 37218 components: - type: Transform pos: -124.5,25.5 parent: 2 - - uid: 36897 + - uid: 37219 components: - type: Transform pos: -125.5,23.5 parent: 2 - - uid: 36898 + - uid: 37220 components: - type: Transform pos: -126.5,23.5 parent: 2 - - uid: 36899 + - uid: 37221 components: - type: Transform pos: -126.5,22.5 parent: 2 - - uid: 36900 + - uid: 37222 components: - type: Transform pos: -127.5,22.5 parent: 2 - - uid: 36901 + - uid: 37223 components: - type: Transform pos: -138.5,-2.5 parent: 2 - - uid: 36902 + - uid: 37224 components: - type: Transform pos: -138.5,-8.5 parent: 2 - - uid: 36903 + - uid: 37225 components: - type: Transform pos: -137.5,-8.5 parent: 2 - - uid: 36904 + - uid: 37226 components: - type: Transform pos: -137.5,-9.5 parent: 2 - - uid: 36905 + - uid: 37227 components: - type: Transform pos: -124.5,-17.5 parent: 2 - - uid: 36906 + - uid: 37228 components: - type: Transform pos: -4.5,73.5 parent: 2 - - uid: 36907 + - uid: 37229 components: - type: Transform pos: -3.5,72.5 parent: 2 - - uid: 36908 + - uid: 37230 components: - type: Transform pos: -4.5,72.5 parent: 2 - - uid: 36909 + - uid: 37231 components: - type: Transform pos: -61.5,-30.5 parent: 2 - - uid: 36910 + - uid: 37232 components: - type: Transform pos: -60.5,-30.5 parent: 2 - - uid: 36911 + - uid: 37233 components: - type: Transform pos: -61.5,-28.5 parent: 2 - - uid: 36912 + - uid: 37234 components: - type: Transform pos: 109.5,3.5 parent: 2 - - uid: 36913 + - uid: 37235 components: - type: Transform pos: -60.5,-31.5 parent: 2 - - uid: 36914 + - uid: 37236 components: - type: Transform pos: -60.5,-29.5 parent: 2 - - uid: 36915 + - uid: 37237 components: - type: Transform pos: -61.5,-31.5 parent: 2 - - uid: 36916 + - uid: 37238 components: - type: Transform pos: -74.5,-3.5 parent: 2 - - uid: 36917 + - uid: 37239 components: - type: Transform pos: -94.5,59.5 parent: 2 - - uid: 36918 + - uid: 37240 components: - type: Transform pos: -93.5,59.5 parent: 2 - - uid: 36919 + - uid: 37241 components: - type: Transform pos: -93.5,60.5 parent: 2 - - uid: 36920 + - uid: 37242 components: - type: Transform pos: -92.5,61.5 parent: 2 - - uid: 36921 + - uid: 37243 components: - type: Transform pos: 111.5,3.5 parent: 2 - - uid: 36922 + - uid: 37244 components: - type: Transform pos: 111.5,4.5 parent: 2 - - uid: 36923 + - uid: 37245 components: - type: Transform pos: 111.5,5.5 parent: 2 - - uid: 36924 + - uid: 37246 components: - type: Transform pos: 112.5,4.5 parent: 2 - - uid: 44574 + - uid: 37247 + components: + - type: Transform + pos: -71.5,-3.5 + parent: 2 + - uid: 44963 components: - type: Transform pos: 22.5,79.5 - parent: 40203 - - uid: 44575 + parent: 40599 + - uid: 44964 components: - type: Transform pos: 22.5,78.5 - parent: 40203 - - uid: 44576 + parent: 40599 + - uid: 44965 components: - type: Transform pos: 22.5,75.5 - parent: 40203 - - uid: 44577 + parent: 40599 + - uid: 44966 components: - type: Transform pos: 22.5,74.5 - parent: 40203 - - uid: 44578 + parent: 40599 + - uid: 44967 components: - type: Transform pos: 22.5,73.5 - parent: 40203 - - uid: 44579 + parent: 40599 + - uid: 44968 components: - type: Transform pos: 23.5,79.5 - parent: 40203 - - uid: 44580 + parent: 40599 + - uid: 44969 components: - type: Transform pos: 23.5,78.5 - parent: 40203 - - uid: 44581 + parent: 40599 + - uid: 44970 components: - type: Transform pos: 23.5,77.5 - parent: 40203 - - uid: 44582 + parent: 40599 + - uid: 44971 components: - type: Transform pos: 23.5,76.5 - parent: 40203 - - uid: 44583 + parent: 40599 + - uid: 44972 components: - type: Transform pos: 23.5,75.5 - parent: 40203 - - uid: 44584 + parent: 40599 + - uid: 44973 components: - type: Transform pos: 24.5,77.5 - parent: 40203 - - uid: 44585 + parent: 40599 + - uid: 44974 components: - type: Transform pos: 24.5,78.5 - parent: 40203 - - uid: 44586 + parent: 40599 + - uid: 44975 components: - type: Transform pos: 30.5,59.5 - parent: 40203 - - uid: 44587 + parent: 40599 + - uid: 44976 components: - type: Transform pos: 30.5,58.5 - parent: 40203 - - uid: 44588 + parent: 40599 + - uid: 44977 components: - type: Transform pos: 33.5,43.5 - parent: 40203 - - uid: 44589 + parent: 40599 + - uid: 44978 components: - type: Transform pos: 33.5,41.5 - parent: 40203 - - uid: 44590 + parent: 40599 + - uid: 44979 components: - type: Transform pos: 34.5,44.5 - parent: 40203 - - uid: 44591 + parent: 40599 + - uid: 44980 components: - type: Transform pos: 34.5,43.5 - parent: 40203 - - uid: 44592 + parent: 40599 + - uid: 44981 components: - type: Transform pos: 35.5,43.5 - parent: 40203 - - uid: 44593 + parent: 40599 + - uid: 44982 components: - type: Transform pos: 35.5,42.5 - parent: 40203 - - uid: 44594 + parent: 40599 + - uid: 44983 components: - type: Transform pos: 36.5,43.5 - parent: 40203 - - uid: 44595 + parent: 40599 + - uid: 44984 components: - type: Transform pos: 32.5,57.5 - parent: 40203 - - uid: 44596 + parent: 40599 + - uid: 44985 components: - type: Transform pos: 32.5,58.5 - parent: 40203 - - uid: 44597 + parent: 40599 + - uid: 44986 components: - type: Transform pos: 31.5,55.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowDiamond entities: - - uid: 36925 + - uid: 37248 components: - type: Transform - pos: 43.5,57.5 + pos: -114.5,49.5 parent: 2 - - uid: 36926 + - uid: 37249 components: - type: Transform - pos: 77.5,12.5 + pos: 43.5,57.5 parent: 2 - - uid: 36927 + - uid: 37250 components: - type: Transform - pos: -37.5,71.5 + pos: 77.5,12.5 parent: 2 - - uid: 36928 + - uid: 37251 components: - type: Transform pos: 42.5,56.5 parent: 2 - - uid: 36929 + - uid: 37252 components: - type: Transform pos: 41.5,56.5 parent: 2 - - uid: 36930 + - uid: 37253 components: - type: Transform pos: -70.5,-11.5 parent: 2 - - uid: 36931 + - uid: 37254 components: - type: Transform pos: -27.5,-59.5 parent: 2 - - uid: 36932 + - uid: 37255 components: - type: Transform pos: -28.5,-58.5 parent: 2 - - uid: 36933 + - uid: 37256 components: - type: Transform pos: -30.5,-57.5 parent: 2 - - uid: 36934 + - uid: 37257 components: - type: Transform pos: -59.5,-31.5 parent: 2 - - uid: 36935 + - uid: 37258 components: - type: Transform pos: -59.5,-30.5 parent: 2 - - uid: 36936 + - uid: 37259 components: - type: Transform pos: 77.5,14.5 parent: 2 - - uid: 36937 + - uid: 37260 components: - type: Transform pos: 78.5,13.5 parent: 2 - - uid: 36938 + - uid: 37261 components: - type: Transform pos: -101.5,39.5 parent: 2 - - uid: 36939 + - uid: 37262 components: - type: Transform pos: -69.5,3.5 parent: 2 - - uid: 36940 + - uid: 37263 components: - type: Transform pos: -69.5,2.5 parent: 2 - - uid: 36941 - components: - - type: Transform - pos: -104.5,41.5 - parent: 2 - - uid: 36942 + - uid: 37264 components: - type: Transform pos: -101.5,40.5 parent: 2 - - uid: 36943 + - uid: 37265 components: - type: Transform pos: -93.5,58.5 parent: 2 - - uid: 36944 + - uid: 37266 components: - type: Transform pos: 95.5,-32.5 parent: 2 - - uid: 44598 + - uid: 44987 components: - type: Transform pos: 13.5,53.5 - parent: 40203 - - uid: 44599 + parent: 40599 + - uid: 44988 components: - type: Transform pos: 14.5,49.5 - parent: 40203 - - uid: 44600 + parent: 40599 + - uid: 44989 components: - type: Transform pos: 85.5,45.5 - parent: 40203 - - uid: 44601 + parent: 40599 + - uid: 44990 components: - type: Transform pos: 85.5,44.5 - parent: 40203 - - uid: 44602 + parent: 40599 + - uid: 44991 components: - type: Transform pos: 86.5,47.5 - parent: 40203 - - uid: 44603 + parent: 40599 + - uid: 44992 components: - type: Transform pos: 87.5,51.5 - parent: 40203 - - uid: 44604 + parent: 40599 + - uid: 44993 components: - type: Transform pos: 87.5,50.5 - parent: 40203 - - uid: 44605 + parent: 40599 + - uid: 44994 components: - type: Transform pos: 87.5,49.5 - parent: 40203 - - uid: 46167 + parent: 40599 + - uid: 46520 components: - type: Transform pos: -1.5,19.5 - parent: 44970 - - uid: 46168 + parent: 45355 + - uid: 46521 components: - type: Transform pos: -1.5,20.5 - parent: 44970 - - uid: 46169 + parent: 45355 + - uid: 46522 components: - type: Transform pos: -2.5,19.5 - parent: 44970 - - uid: 46170 + parent: 45355 + - uid: 46523 components: - type: Transform pos: -11.5,-2.5 - parent: 44970 - - uid: 46171 + parent: 45355 + - uid: 46524 components: - type: Transform pos: -12.5,-2.5 - parent: 44970 + parent: 45355 - proto: WallRockSnowGold entities: - - uid: 36945 + - uid: 37267 + components: + - type: Transform + pos: -116.5,32.5 + parent: 2 + - uid: 37268 + components: + - type: Transform + pos: -116.5,31.5 + parent: 2 + - uid: 37269 + components: + - type: Transform + pos: -116.5,33.5 + parent: 2 + - uid: 37270 + components: + - type: Transform + pos: -66.5,-4.5 + parent: 2 + - uid: 37271 + components: + - type: Transform + pos: -66.5,-3.5 + parent: 2 + - uid: 37272 components: - type: Transform pos: -29.5,32.5 parent: 2 - - uid: 36946 + - uid: 37273 components: - type: Transform pos: -28.5,32.5 parent: 2 - - uid: 36947 + - uid: 37274 components: - type: Transform pos: -28.5,22.5 parent: 2 - - uid: 36948 + - uid: 37275 components: - type: Transform pos: -28.5,33.5 parent: 2 - - uid: 36949 + - uid: 37276 components: - type: Transform pos: -29.5,21.5 parent: 2 - - uid: 36950 + - uid: 37277 components: - type: Transform pos: -29.5,20.5 parent: 2 - - uid: 36951 + - uid: 37278 components: - type: Transform pos: -27.5,32.5 parent: 2 - - uid: 36952 + - uid: 37279 components: - type: Transform pos: 21.5,62.5 parent: 2 - - uid: 36953 + - uid: 37280 components: - type: Transform pos: 19.5,62.5 parent: 2 - - uid: 36954 + - uid: 37281 components: - type: Transform pos: 20.5,63.5 parent: 2 - - uid: 36955 + - uid: 37282 components: - type: Transform pos: 19.5,63.5 parent: 2 - - uid: 36956 + - uid: 37283 components: - type: Transform pos: 20.5,62.5 parent: 2 - - uid: 36957 + - uid: 37284 components: - type: Transform pos: 0.5,-27.5 parent: 2 - - uid: 36958 + - uid: 37285 components: - type: Transform pos: -0.5,-27.5 parent: 2 - - uid: 36959 + - uid: 37286 components: - type: Transform pos: -0.5,-26.5 parent: 2 - - uid: 36960 + - uid: 37287 components: - type: Transform pos: 40.5,-35.5 parent: 2 - - uid: 36961 + - uid: 37288 components: - type: Transform pos: 32.5,57.5 parent: 2 - - uid: 36962 + - uid: 37289 components: - type: Transform pos: 32.5,56.5 parent: 2 - - uid: 36963 + - uid: 37290 components: - type: Transform pos: -62.5,-2.5 parent: 2 - - uid: 36964 + - uid: 37291 components: - type: Transform pos: 31.5,57.5 parent: 2 - - uid: 36965 + - uid: 37292 components: - type: Transform pos: -59.5,-9.5 parent: 2 - - uid: 36966 + - uid: 37293 components: - type: Transform pos: -59.5,-10.5 parent: 2 - - uid: 36967 + - uid: 37294 components: - type: Transform pos: -1.5,-27.5 parent: 2 - - uid: 36968 + - uid: 37295 components: - type: Transform pos: -57.5,19.5 parent: 2 - - uid: 36969 + - uid: 37296 components: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 36970 + - uid: 37297 components: - type: Transform pos: -58.5,19.5 parent: 2 - - uid: 36971 + - uid: 37298 components: - type: Transform pos: -57.5,20.5 parent: 2 - - uid: 36972 + - uid: 37299 components: - type: Transform pos: -43.5,39.5 parent: 2 - - uid: 36973 + - uid: 37300 components: - type: Transform pos: -43.5,40.5 parent: 2 - - uid: 36974 + - uid: 37301 components: - type: Transform pos: -44.5,39.5 parent: 2 - - uid: 36975 + - uid: 37302 components: - type: Transform pos: -94.5,23.5 parent: 2 - - uid: 36976 + - uid: 37303 components: - type: Transform pos: -55.5,59.5 parent: 2 - - uid: 36977 + - uid: 37304 components: - type: Transform pos: -56.5,58.5 parent: 2 - - uid: 36978 + - uid: 37305 components: - type: Transform pos: -55.5,58.5 parent: 2 - - uid: 36979 - components: - - type: Transform - pos: -40.5,72.5 - parent: 2 - - uid: 36980 - components: - - type: Transform - pos: -39.5,73.5 - parent: 2 - - uid: 36981 + - uid: 37306 components: - type: Transform pos: 49.5,31.5 parent: 2 - - uid: 36982 + - uid: 37307 components: - type: Transform pos: 50.5,-33.5 parent: 2 - - uid: 36983 + - uid: 37308 components: - type: Transform pos: 49.5,-32.5 parent: 2 - - uid: 36984 + - uid: 37309 components: - type: Transform pos: 50.5,-32.5 parent: 2 - - uid: 36985 + - uid: 37310 components: - type: Transform pos: 14.5,-35.5 parent: 2 - - uid: 36986 + - uid: 37311 components: - type: Transform pos: 29.5,-59.5 parent: 2 - - uid: 36987 + - uid: 37312 components: - type: Transform pos: -43.5,22.5 parent: 2 - - uid: 36988 + - uid: 37313 components: - type: Transform pos: -43.5,21.5 parent: 2 - - uid: 36989 + - uid: 37314 components: - type: Transform pos: -44.5,22.5 parent: 2 - - uid: 36990 + - uid: 37315 components: - type: Transform pos: 42.5,31.5 parent: 2 - - uid: 36991 + - uid: 37316 components: - type: Transform pos: 13.5,-33.5 parent: 2 - - uid: 36992 + - uid: 37317 components: - type: Transform pos: 67.5,12.5 parent: 2 - - uid: 36993 + - uid: 37318 components: - type: Transform pos: 67.5,11.5 parent: 2 - - uid: 36994 + - uid: 37319 components: - type: Transform pos: 73.5,8.5 parent: 2 - - uid: 36995 + - uid: 37320 components: - type: Transform pos: -60.5,9.5 parent: 2 - - uid: 36996 + - uid: 37321 components: - type: Transform pos: -61.5,10.5 parent: 2 - - uid: 36997 + - uid: 37322 components: - type: Transform pos: -61.5,9.5 parent: 2 - - uid: 36998 + - uid: 37323 components: - type: Transform pos: -62.5,11.5 parent: 2 - - uid: 36999 + - uid: 37324 components: - type: Transform pos: -62.5,10.5 parent: 2 - - uid: 37000 + - uid: 37325 components: - type: Transform pos: -62.5,5.5 parent: 2 - - uid: 37001 + - uid: 37326 components: - type: Transform pos: -63.5,5.5 parent: 2 - - uid: 37002 + - uid: 37327 components: - type: Transform pos: -63.5,4.5 parent: 2 - - uid: 37003 - components: - - type: Transform - pos: -53.5,-14.5 - parent: 2 - - uid: 37004 + - uid: 37328 components: - type: Transform pos: -52.5,-14.5 parent: 2 - - uid: 37005 + - uid: 37329 components: - type: Transform pos: -58.5,-9.5 parent: 2 - - uid: 37006 - components: - - type: Transform - pos: -53.5,-15.5 - parent: 2 - - uid: 37007 + - uid: 37330 components: - type: Transform pos: 68.5,11.5 parent: 2 - - uid: 37008 + - uid: 37331 components: - type: Transform pos: 41.5,-35.5 parent: 2 - - uid: 37009 + - uid: 37332 components: - type: Transform pos: 41.5,-36.5 parent: 2 - - uid: 37010 + - uid: 37333 components: - type: Transform pos: 8.5,-61.5 parent: 2 - - uid: 37011 + - uid: 37334 components: - type: Transform pos: 7.5,-61.5 parent: 2 - - uid: 37012 + - uid: 37335 components: - type: Transform pos: 7.5,-62.5 parent: 2 - - uid: 37013 + - uid: 37336 components: - type: Transform pos: -33.5,-38.5 parent: 2 - - uid: 37014 + - uid: 37337 components: - type: Transform pos: -34.5,-38.5 parent: 2 - - uid: 37015 + - uid: 37338 components: - type: Transform pos: -34.5,-37.5 parent: 2 - - uid: 37016 + - uid: 37339 components: - type: Transform pos: -35.5,-37.5 parent: 2 - - uid: 37017 + - uid: 37340 components: - type: Transform pos: -49.5,-28.5 parent: 2 - - uid: 37018 + - uid: 37341 components: - type: Transform pos: -48.5,-29.5 parent: 2 - - uid: 37019 + - uid: 37342 components: - type: Transform pos: -48.5,-28.5 parent: 2 - - uid: 37020 + - uid: 37343 components: - type: Transform pos: -33.5,-57.5 parent: 2 - - uid: 37021 + - uid: 37344 components: - type: Transform pos: -33.5,-56.5 parent: 2 - - uid: 37022 + - uid: 37345 components: - type: Transform pos: -34.5,-57.5 parent: 2 - - uid: 37023 + - uid: 37346 components: - type: Transform pos: -133.5,15.5 parent: 2 - - uid: 37024 + - uid: 37347 components: - type: Transform pos: -134.5,14.5 parent: 2 - - uid: 37025 + - uid: 37348 components: - type: Transform pos: -95.5,22.5 parent: 2 - - uid: 37026 + - uid: 37349 components: - type: Transform pos: -95.5,23.5 parent: 2 - - uid: 37027 + - uid: 37350 components: - type: Transform pos: -95.5,24.5 parent: 2 - - uid: 37028 + - uid: 37351 components: - type: Transform pos: -94.5,22.5 parent: 2 - - uid: 37029 + - uid: 37352 components: - type: Transform pos: -135.5,15.5 parent: 2 - - uid: 37030 + - uid: 37353 components: - type: Transform pos: -134.5,15.5 parent: 2 - - uid: 37031 + - uid: 37354 components: - type: Transform pos: -142.5,-6.5 parent: 2 - - uid: 37032 + - uid: 37355 components: - type: Transform pos: -141.5,-7.5 parent: 2 - - uid: 37033 + - uid: 37356 components: - type: Transform pos: -141.5,-8.5 parent: 2 - - uid: 37034 + - uid: 37357 components: - type: Transform pos: -16.5,72.5 parent: 2 - - uid: 37035 + - uid: 37358 components: - type: Transform pos: -69.5,-25.5 parent: 2 - - uid: 37036 - components: - - type: Transform - pos: -68.5,-23.5 - parent: 2 - - uid: 37037 + - uid: 37359 components: - type: Transform pos: -68.5,-25.5 parent: 2 - - uid: 37038 - components: - - type: Transform - pos: -67.5,-23.5 - parent: 2 - - uid: 37039 + - uid: 37360 components: - type: Transform pos: -17.5,70.5 parent: 2 - - uid: 37040 + - uid: 37361 components: - type: Transform pos: -16.5,71.5 parent: 2 - - uid: 37041 + - uid: 37362 components: - type: Transform pos: -16.5,70.5 parent: 2 - - uid: 37042 + - uid: 37363 components: - type: Transform pos: 94.5,-0.5 parent: 2 - - uid: 37043 + - uid: 37364 components: - type: Transform pos: 94.5,0.5 parent: 2 - - uid: 37044 + - uid: 37365 components: - type: Transform pos: 95.5,-0.5 parent: 2 - - uid: 37045 - components: - - type: Transform - pos: -40.5,74.5 - parent: 2 - - uid: 37046 - components: - - type: Transform - pos: -41.5,74.5 - parent: 2 - - uid: 37047 - components: - - type: Transform - pos: -40.5,73.5 - parent: 2 - - uid: 37048 + - uid: 37366 components: - type: Transform pos: -28.5,-24.5 parent: 2 - - uid: 37049 + - uid: 37367 components: - type: Transform pos: -27.5,-24.5 parent: 2 - - uid: 37050 + - uid: 37368 components: - type: Transform pos: -59.5,31.5 parent: 2 - - uid: 37051 + - uid: 37369 components: - type: Transform pos: -60.5,30.5 parent: 2 - - uid: 37052 + - uid: 37370 components: - type: Transform pos: -59.5,30.5 parent: 2 - - uid: 37053 + - uid: 37371 components: - type: Transform pos: 61.5,-52.5 parent: 2 - - uid: 44606 + - uid: 37372 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 37373 + components: + - type: Transform + pos: -117.5,31.5 + parent: 2 + - uid: 44995 components: - type: Transform pos: 22.5,64.5 - parent: 40203 - - uid: 44607 + parent: 40599 + - uid: 44996 components: - type: Transform pos: 22.5,63.5 - parent: 40203 - - uid: 44608 + parent: 40599 + - uid: 44997 components: - type: Transform pos: 22.5,49.5 - parent: 40203 - - uid: 44609 + parent: 40599 + - uid: 44998 components: - type: Transform pos: 23.5,64.5 - parent: 40203 - - uid: 44610 + parent: 40599 + - uid: 44999 components: - type: Transform pos: 23.5,63.5 - parent: 40203 - - uid: 44611 + parent: 40599 + - uid: 45000 components: - type: Transform pos: 23.5,51.5 - parent: 40203 - - uid: 44612 + parent: 40599 + - uid: 45001 components: - type: Transform pos: 23.5,50.5 - parent: 40203 - - uid: 44613 + parent: 40599 + - uid: 45002 components: - type: Transform pos: 24.5,62.5 - parent: 40203 - - uid: 44614 + parent: 40599 + - uid: 45003 components: - type: Transform pos: 24.5,61.5 - parent: 40203 - - uid: 44615 + parent: 40599 + - uid: 45004 components: - type: Transform pos: 24.5,51.5 - parent: 40203 - - uid: 44616 + parent: 40599 + - uid: 45005 components: - type: Transform pos: 24.5,50.5 - parent: 40203 - - uid: 44617 + parent: 40599 + - uid: 45006 components: - type: Transform pos: 25.5,50.5 - parent: 40203 - - uid: 44618 + parent: 40599 + - uid: 45007 components: - type: Transform pos: 79.5,47.5 - parent: 40203 - - uid: 44619 + parent: 40599 + - uid: 45008 components: - type: Transform pos: 80.5,46.5 - parent: 40203 - - uid: 44620 + parent: 40599 + - uid: 45009 components: - type: Transform pos: 80.5,45.5 - parent: 40203 - - uid: 44621 + parent: 40599 + - uid: 45010 components: - type: Transform pos: 80.5,44.5 - parent: 40203 - - uid: 44622 + parent: 40599 + - uid: 45011 components: - type: Transform pos: 81.5,45.5 - parent: 40203 - - uid: 44623 + parent: 40599 + - uid: 45012 components: - type: Transform pos: 81.5,44.5 - parent: 40203 - - uid: 44624 + parent: 40599 + - uid: 45013 components: - type: Transform pos: 82.5,44.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowPlasma entities: - - uid: 37054 + - uid: 37374 + components: + - type: Transform + pos: -104.5,47.5 + parent: 2 + - uid: 37375 + components: + - type: Transform + pos: -102.5,50.5 + parent: 2 + - uid: 37376 + components: + - type: Transform + pos: -76.5,56.5 + parent: 2 + - uid: 37377 + components: + - type: Transform + pos: -77.5,56.5 + parent: 2 + - uid: 37378 + components: + - type: Transform + pos: -75.5,55.5 + parent: 2 + - uid: 37379 + components: + - type: Transform + pos: -94.5,42.5 + parent: 2 + - uid: 37380 + components: + - type: Transform + pos: -95.5,42.5 + parent: 2 + - uid: 37381 + components: + - type: Transform + pos: -73.5,55.5 + parent: 2 + - uid: 37382 + components: + - type: Transform + pos: -74.5,55.5 + parent: 2 + - uid: 37383 + components: + - type: Transform + pos: -75.5,54.5 + parent: 2 + - uid: 37384 + components: + - type: Transform + pos: -76.5,55.5 + parent: 2 + - uid: 37385 + components: + - type: Transform + pos: -93.5,42.5 + parent: 2 + - uid: 37386 + components: + - type: Transform + pos: -93.5,41.5 + parent: 2 + - uid: 37387 + components: + - type: Transform + pos: -101.5,50.5 + parent: 2 + - uid: 37388 + components: + - type: Transform + pos: -103.5,48.5 + parent: 2 + - uid: 37389 + components: + - type: Transform + pos: -103.5,47.5 + parent: 2 + - uid: 37390 + components: + - type: Transform + pos: -95.5,43.5 + parent: 2 + - uid: 37391 + components: + - type: Transform + pos: -102.5,48.5 + parent: 2 + - uid: 37392 + components: + - type: Transform + pos: -103.5,49.5 + parent: 2 + - uid: 37393 + components: + - type: Transform + pos: -53.5,27.5 + parent: 2 + - uid: 37394 + components: + - type: Transform + pos: -53.5,28.5 + parent: 2 + - uid: 37395 + components: + - type: Transform + pos: -52.5,28.5 + parent: 2 + - uid: 37396 + components: + - type: Transform + pos: -51.5,28.5 + parent: 2 + - uid: 37397 + components: + - type: Transform + pos: -52.5,41.5 + parent: 2 + - uid: 37398 + components: + - type: Transform + pos: -53.5,41.5 + parent: 2 + - uid: 37399 + components: + - type: Transform + pos: -54.5,43.5 + parent: 2 + - uid: 37400 + components: + - type: Transform + pos: -53.5,42.5 + parent: 2 + - uid: 37401 + components: + - type: Transform + pos: -53.5,43.5 + parent: 2 + - uid: 37402 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 37403 + components: + - type: Transform + pos: -52.5,29.5 + parent: 2 + - uid: 37404 + components: + - type: Transform + pos: -68.5,-2.5 + parent: 2 + - uid: 37405 components: - type: Transform pos: -45.5,70.5 parent: 2 - - uid: 37055 + - uid: 37406 components: - type: Transform pos: -45.5,71.5 parent: 2 - - uid: 37056 + - uid: 37407 components: - type: Transform pos: -44.5,71.5 parent: 2 - - uid: 37057 + - uid: 37408 components: - type: Transform pos: 85.5,15.5 parent: 2 - - uid: 37058 + - uid: 37409 components: - type: Transform pos: 106.5,5.5 parent: 2 - - uid: 37059 + - uid: 37410 components: - type: Transform pos: 86.5,14.5 parent: 2 - - uid: 37060 + - uid: 37411 components: - type: Transform pos: 86.5,15.5 parent: 2 - - uid: 37061 + - uid: 37412 components: - type: Transform pos: 86.5,16.5 parent: 2 - - uid: 37062 + - uid: 37413 components: - type: Transform pos: 87.5,14.5 parent: 2 - - uid: 37063 + - uid: 37414 components: - type: Transform pos: 104.5,7.5 parent: 2 - - uid: 37064 + - uid: 37415 components: - type: Transform pos: 110.5,-1.5 parent: 2 - - uid: 37065 + - uid: 37416 components: - type: Transform pos: 85.5,16.5 parent: 2 - - uid: 37066 + - uid: 37417 components: - type: Transform pos: 105.5,6.5 parent: 2 - - uid: 37067 + - uid: 37418 components: - type: Transform pos: 105.5,8.5 parent: 2 - - uid: 37068 + - uid: 37419 components: - type: Transform pos: 105.5,7.5 parent: 2 - - uid: 37069 + - uid: 37420 components: - type: Transform pos: 106.5,7.5 parent: 2 - - uid: 37070 + - uid: 37421 components: - type: Transform pos: 106.5,6.5 parent: 2 - - uid: 37071 + - uid: 37422 components: - type: Transform pos: 109.5,-1.5 parent: 2 - - uid: 37072 + - uid: 37423 components: - type: Transform pos: 109.5,-3.5 parent: 2 - - uid: 37073 + - uid: 37424 components: - type: Transform pos: 109.5,-2.5 parent: 2 - - uid: 37074 + - uid: 37425 components: - type: Transform pos: -63.5,-25.5 parent: 2 - - uid: 37075 + - uid: 37426 components: - type: Transform pos: -64.5,-25.5 parent: 2 - - uid: 37076 + - uid: 37427 components: - type: Transform pos: 52.5,-46.5 parent: 2 - - uid: 37077 + - uid: 37428 components: - type: Transform pos: 51.5,-45.5 parent: 2 - - uid: 37078 + - uid: 37429 components: - type: Transform pos: -36.5,51.5 parent: 2 - - uid: 37079 + - uid: 37430 components: - type: Transform pos: 82.5,-49.5 parent: 2 - - uid: 37080 + - uid: 37431 components: - type: Transform pos: -36.5,49.5 parent: 2 - - uid: 37081 + - uid: 37432 components: - type: Transform pos: -36.5,50.5 parent: 2 - - uid: 37082 + - uid: 37433 components: - type: Transform pos: 46.5,60.5 parent: 2 - - uid: 37083 + - uid: 37434 components: - type: Transform pos: -35.5,51.5 parent: 2 - - uid: 37084 + - uid: 37435 components: - type: Transform pos: -35.5,50.5 parent: 2 - - uid: 37085 + - uid: 37436 components: - type: Transform pos: 24.5,-56.5 parent: 2 - - uid: 37086 + - uid: 37437 components: - type: Transform pos: -50.5,-19.5 parent: 2 - - uid: 37087 + - uid: 37438 components: - type: Transform pos: -52.5,-18.5 parent: 2 - - uid: 37088 + - uid: 37439 components: - type: Transform pos: -51.5,-18.5 parent: 2 - - uid: 37089 + - uid: 37440 components: - type: Transform pos: -45.5,-22.5 parent: 2 - - uid: 37090 + - uid: 37441 components: - type: Transform pos: -44.5,-21.5 parent: 2 - - uid: 37091 + - uid: 37442 components: - type: Transform pos: -44.5,-22.5 parent: 2 - - uid: 37092 + - uid: 37443 components: - type: Transform pos: -56.5,25.5 parent: 2 - - uid: 37093 + - uid: 37444 components: - type: Transform pos: -56.5,24.5 parent: 2 - - uid: 37094 + - uid: 37445 components: - type: Transform pos: -51.5,29.5 parent: 2 - - uid: 37095 + - uid: 37446 components: - type: Transform pos: -50.5,29.5 parent: 2 - - uid: 37096 + - uid: 37447 components: - type: Transform pos: -49.5,29.5 parent: 2 - - uid: 37097 + - uid: 37448 components: - type: Transform pos: -49.5,30.5 parent: 2 - - uid: 37098 + - uid: 37449 components: - type: Transform pos: -38.5,31.5 parent: 2 - - uid: 37099 + - uid: 37450 components: - type: Transform pos: -71.5,21.5 parent: 2 - - uid: 37100 + - uid: 37451 components: - type: Transform pos: -72.5,21.5 parent: 2 - - uid: 37101 + - uid: 37452 components: - type: Transform pos: -50.5,30.5 parent: 2 - - uid: 37102 + - uid: 37453 components: - type: Transform pos: -70.5,41.5 parent: 2 - - uid: 37103 + - uid: 37454 components: - type: Transform pos: -69.5,40.5 parent: 2 - - uid: 37104 + - uid: 37455 components: - type: Transform pos: -69.5,41.5 parent: 2 - - uid: 37105 + - uid: 37456 components: - type: Transform pos: -53.5,48.5 parent: 2 - - uid: 37106 + - uid: 37457 components: - type: Transform pos: -52.5,48.5 parent: 2 - - uid: 37107 + - uid: 37458 components: - type: Transform pos: -52.5,47.5 parent: 2 - - uid: 37108 - components: - - type: Transform - pos: -56.5,55.5 - parent: 2 - - uid: 37109 + - uid: 37459 components: - type: Transform pos: -73.5,27.5 parent: 2 - - uid: 37110 + - uid: 37460 components: - type: Transform pos: -95.5,40.5 parent: 2 - - uid: 37111 + - uid: 37461 components: - type: Transform pos: -95.5,39.5 parent: 2 - - uid: 37112 + - uid: 37462 components: - type: Transform pos: -94.5,41.5 parent: 2 - - uid: 37113 + - uid: 37463 components: - type: Transform pos: -94.5,40.5 parent: 2 - - uid: 37114 - components: - - type: Transform - pos: -40.5,69.5 - parent: 2 - - uid: 37115 - components: - - type: Transform - pos: -40.5,70.5 - parent: 2 - - uid: 37116 - components: - - type: Transform - pos: -39.5,69.5 - parent: 2 - - uid: 37117 - components: - - type: Transform - pos: -56.5,56.5 - parent: 2 - - uid: 37118 + - uid: 37464 components: - type: Transform pos: -53.5,49.5 parent: 2 - - uid: 37119 + - uid: 37465 components: - type: Transform pos: -55.5,54.5 parent: 2 - - uid: 37120 + - uid: 37466 components: - type: Transform pos: 48.5,48.5 parent: 2 - - uid: 37121 + - uid: 37467 components: - type: Transform pos: 23.5,-56.5 parent: 2 - - uid: 37122 + - uid: 37468 components: - type: Transform pos: 81.5,-49.5 parent: 2 - - uid: 37123 + - uid: 37469 components: - type: Transform pos: 83.5,-48.5 parent: 2 - - uid: 37124 + - uid: 37470 components: - type: Transform pos: 82.5,-48.5 parent: 2 - - uid: 37125 + - uid: 37471 components: - type: Transform pos: 81.5,-48.5 parent: 2 - - uid: 37126 + - uid: 37472 components: - type: Transform pos: 95.5,-47.5 parent: 2 - - uid: 37127 - components: - - type: Transform - pos: 39.5,-60.5 - parent: 2 - - uid: 37128 - components: - - type: Transform - pos: 38.5,-60.5 - parent: 2 - - uid: 37129 + - uid: 37473 components: - type: Transform pos: 33.5,-58.5 parent: 2 - - uid: 37130 + - uid: 37474 components: - type: Transform pos: -39.5,32.5 parent: 2 - - uid: 37131 + - uid: 37475 components: - type: Transform pos: -38.5,32.5 parent: 2 - - uid: 37132 + - uid: 37476 components: - type: Transform pos: -37.5,33.5 parent: 2 - - uid: 37133 + - uid: 37477 components: - type: Transform pos: -38.5,33.5 parent: 2 - - uid: 37134 + - uid: 37478 components: - type: Transform pos: 51.5,-46.5 parent: 2 - - uid: 37135 + - uid: 37479 components: - type: Transform pos: 48.5,49.5 parent: 2 - - uid: 37136 + - uid: 37480 components: - type: Transform pos: 47.5,60.5 parent: 2 - - uid: 37137 + - uid: 37481 components: - type: Transform pos: 48.5,60.5 parent: 2 - - uid: 37138 + - uid: 37482 components: - type: Transform pos: 47.5,49.5 parent: 2 - - uid: 37139 + - uid: 37483 components: - type: Transform pos: 48.5,61.5 parent: 2 - - uid: 37140 + - uid: 37484 components: - type: Transform pos: 47.5,59.5 parent: 2 - - uid: 37141 + - uid: 37485 components: - type: Transform pos: -46.5,21.5 parent: 2 - - uid: 37142 + - uid: 37486 components: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 37143 + - uid: 37487 components: - type: Transform pos: -12.5,-33.5 parent: 2 - - uid: 37144 + - uid: 37488 components: - type: Transform pos: 49.5,48.5 parent: 2 - - uid: 37145 + - uid: 37489 components: - type: Transform pos: 49.5,49.5 parent: 2 - - uid: 37146 + - uid: 37490 components: - type: Transform pos: 55.5,25.5 parent: 2 - - uid: 37147 + - uid: 37491 components: - type: Transform pos: 54.5,25.5 parent: 2 - - uid: 37148 + - uid: 37492 components: - type: Transform pos: 54.5,26.5 parent: 2 - - uid: 37149 + - uid: 37493 components: - type: Transform pos: 24.5,-57.5 parent: 2 - - uid: 37150 + - uid: 37494 components: - type: Transform pos: 33.5,-57.5 parent: 2 - - uid: 37151 + - uid: 37495 components: - type: Transform pos: 39.5,-59.5 parent: 2 - - uid: 37152 + - uid: 37496 components: - type: Transform pos: 33.5,-56.5 parent: 2 - - uid: 37153 + - uid: 37497 components: - type: Transform pos: 67.5,34.5 parent: 2 - - uid: 37154 + - uid: 37498 components: - type: Transform pos: 94.5,-47.5 parent: 2 - - uid: 37155 + - uid: 37499 components: - type: Transform pos: 9.5,68.5 parent: 2 - - uid: 37156 + - uid: 37500 components: - type: Transform pos: 9.5,69.5 parent: 2 - - uid: 37157 + - uid: 37501 components: - type: Transform pos: -53.5,-11.5 parent: 2 - - uid: 37158 - components: - - type: Transform - pos: -53.5,-10.5 - parent: 2 - - uid: 37159 - components: - - type: Transform - pos: -54.5,-10.5 - parent: 2 - - uid: 37160 + - uid: 37502 components: - type: Transform pos: 61.5,44.5 parent: 2 - - uid: 37161 + - uid: 37503 components: - type: Transform pos: 61.5,43.5 parent: 2 - - uid: 37162 + - uid: 37504 components: - type: Transform pos: 62.5,44.5 parent: 2 - - uid: 37163 + - uid: 37505 components: - type: Transform pos: 62.5,43.5 parent: 2 - - uid: 37164 + - uid: 37506 components: - type: Transform pos: 62.5,42.5 parent: 2 - - uid: 37165 + - uid: 37507 components: - type: Transform pos: -20.5,40.5 parent: 2 - - uid: 37166 + - uid: 37508 components: - type: Transform pos: -21.5,40.5 parent: 2 - - uid: 37167 + - uid: 37509 components: - type: Transform pos: -21.5,39.5 parent: 2 - - uid: 37168 + - uid: 37510 components: - type: Transform pos: -43.5,-21.5 parent: 2 - - uid: 37169 + - uid: 37511 components: - type: Transform pos: -51.5,-19.5 parent: 2 - - uid: 37170 + - uid: 37512 components: - type: Transform pos: -51.5,-20.5 parent: 2 - - uid: 37171 + - uid: 37513 components: - type: Transform pos: -93.5,-5.5 parent: 2 - - uid: 37172 + - uid: 37514 components: - type: Transform pos: -131.5,14.5 parent: 2 - - uid: 37173 + - uid: 37515 components: - type: Transform pos: -132.5,13.5 parent: 2 - - uid: 37174 + - uid: 37516 components: - type: Transform pos: -137.5,7.5 parent: 2 - - uid: 37175 + - uid: 37517 components: - type: Transform pos: -136.5,7.5 parent: 2 - - uid: 37176 + - uid: 37518 components: - type: Transform pos: -136.5,6.5 parent: 2 - - uid: 37177 + - uid: 37519 components: - type: Transform pos: -135.5,6.5 parent: 2 - - uid: 37178 + - uid: 37520 components: - type: Transform pos: -129.5,-9.5 parent: 2 - - uid: 37179 + - uid: 37521 components: - type: Transform pos: -129.5,-10.5 parent: 2 - - uid: 37180 + - uid: 37522 components: - type: Transform pos: -94.5,-6.5 parent: 2 - - uid: 37181 + - uid: 37523 components: - type: Transform pos: -93.5,-6.5 parent: 2 - - uid: 37182 + - uid: 37524 components: - type: Transform pos: -105.5,-16.5 parent: 2 - - uid: 37183 + - uid: 37525 components: - type: Transform pos: -104.5,-16.5 parent: 2 - - uid: 37184 + - uid: 37526 components: - type: Transform pos: -128.5,-10.5 parent: 2 - - uid: 37185 + - uid: 37527 components: - type: Transform pos: -104.5,39.5 parent: 2 - - uid: 37186 + - uid: 37528 components: - type: Transform pos: -28.5,-51.5 parent: 2 - - uid: 37187 - components: - - type: Transform - pos: -105.5,41.5 - parent: 2 - - uid: 37188 - components: - - type: Transform - pos: -104.5,40.5 - parent: 2 - - uid: 37189 + - uid: 37529 components: - type: Transform pos: -44.5,72.5 parent: 2 - - uid: 37190 + - uid: 37530 components: - type: Transform pos: 8.5,69.5 parent: 2 - - uid: 37191 + - uid: 37531 components: - type: Transform pos: 8.5,70.5 parent: 2 - - uid: 37192 + - uid: 37532 components: - type: Transform pos: 50.5,37.5 parent: 2 - - uid: 37193 + - uid: 37533 components: - type: Transform pos: 44.5,37.5 parent: 2 - - uid: 37194 + - uid: 37534 components: - type: Transform pos: 51.5,38.5 parent: 2 - - uid: 37195 + - uid: 37535 components: - type: Transform pos: -68.5,28.5 parent: 2 - - uid: 37196 + - uid: 37536 components: - type: Transform pos: -69.5,29.5 parent: 2 - - uid: 37197 + - uid: 37537 components: - type: Transform pos: -76.5,23.5 parent: 2 - - uid: 37198 + - uid: 37538 components: - type: Transform pos: -75.5,23.5 parent: 2 - - uid: 37199 + - uid: 37539 components: - type: Transform pos: -75.5,22.5 parent: 2 - - uid: 37200 + - uid: 37540 components: - type: Transform pos: -69.5,28.5 parent: 2 - - uid: 37201 + - uid: 37541 components: - type: Transform pos: -68.5,27.5 parent: 2 - - uid: 44625 + - uid: 37542 + components: + - type: Transform + pos: -69.5,-1.5 + parent: 2 + - uid: 37543 + components: + - type: Transform + pos: -70.5,-1.5 + parent: 2 + - uid: 37544 + components: + - type: Transform + pos: -102.5,49.5 + parent: 2 + - uid: 45014 components: - type: Transform pos: 14.5,58.5 - parent: 40203 - - uid: 44626 + parent: 40599 + - uid: 45015 components: - type: Transform pos: 16.5,60.5 - parent: 40203 - - uid: 44627 + parent: 40599 + - uid: 45016 components: - type: Transform pos: 17.5,57.5 - parent: 40203 - - uid: 44628 + parent: 40599 + - uid: 45017 components: - type: Transform pos: 18.5,53.5 - parent: 40203 - - uid: 44629 + parent: 40599 + - uid: 45018 components: - type: Transform pos: 19.5,55.5 - parent: 40203 - - uid: 44630 + parent: 40599 + - uid: 45019 components: - type: Transform pos: 20.5,57.5 - parent: 40203 - - uid: 44631 + parent: 40599 + - uid: 45020 components: - type: Transform pos: 20.5,55.5 - parent: 40203 - - uid: 44632 + parent: 40599 + - uid: 45021 components: - type: Transform pos: 33.5,53.5 - parent: 40203 - - uid: 44633 + parent: 40599 + - uid: 45022 components: - type: Transform pos: 34.5,52.5 - parent: 40203 - - uid: 44634 + parent: 40599 + - uid: 45023 components: - type: Transform pos: 35.5,52.5 - parent: 40203 - - uid: 44635 + parent: 40599 + - uid: 45024 components: - type: Transform pos: 63.5,84.5 - parent: 40203 - - uid: 44636 + parent: 40599 + - uid: 45025 components: - type: Transform pos: 64.5,83.5 - parent: 40203 - - uid: 44637 + parent: 40599 + - uid: 45026 components: - type: Transform pos: 64.5,82.5 - parent: 40203 - - uid: 44638 + parent: 40599 + - uid: 45027 components: - type: Transform pos: 65.5,82.5 - parent: 40203 - - uid: 44639 + parent: 40599 + - uid: 45028 components: - type: Transform pos: 66.5,83.5 - parent: 40203 - - uid: 44640 + parent: 40599 + - uid: 45029 components: - type: Transform pos: 68.5,82.5 - parent: 40203 - - uid: 46172 + parent: 40599 + - uid: 46525 components: - type: Transform pos: -7.5,-1.5 - parent: 44970 - - uid: 46173 + parent: 45355 + - uid: 46526 components: - type: Transform pos: -7.5,-0.5 - parent: 44970 - - uid: 46174 + parent: 45355 + - uid: 46527 components: - type: Transform pos: -8.5,0.5 - parent: 44970 - - uid: 46175 + parent: 45355 + - uid: 46528 components: - type: Transform pos: -8.5,-0.5 - parent: 44970 - - uid: 46176 + parent: 45355 + - uid: 46529 components: - type: Transform pos: 9.5,-0.5 - parent: 44970 - - uid: 46177 + parent: 45355 + - uid: 46530 components: - type: Transform pos: 10.5,1.5 - parent: 44970 - - uid: 46178 + parent: 45355 + - uid: 46531 components: - type: Transform pos: 10.5,0.5 - parent: 44970 - - uid: 46179 + parent: 45355 + - uid: 46532 components: - type: Transform pos: -0.5,18.5 - parent: 44970 - - uid: 46180 + parent: 45355 + - uid: 46533 components: - type: Transform pos: 0.5,18.5 - parent: 44970 - - uid: 46181 + parent: 45355 + - uid: 46534 components: - type: Transform pos: 0.5,19.5 - parent: 44970 - - uid: 46182 + parent: 45355 + - uid: 46535 components: - type: Transform pos: -3.5,-13.5 - parent: 44970 - - uid: 46183 + parent: 45355 + - uid: 46536 components: - type: Transform pos: 0.5,20.5 - parent: 44970 - - uid: 46184 + parent: 45355 + - uid: 46537 components: - type: Transform pos: 1.5,18.5 - parent: 44970 - - uid: 46185 + parent: 45355 + - uid: 46538 components: - type: Transform pos: 1.5,19.5 - parent: 44970 - - uid: 46186 + parent: 45355 + - uid: 46539 components: - type: Transform pos: -8.5,23.5 - parent: 44970 - - uid: 46187 + parent: 45355 + - uid: 46540 components: - type: Transform pos: -8.5,22.5 - parent: 44970 - - uid: 46188 + parent: 45355 + - uid: 46541 components: - type: Transform pos: -8.5,21.5 - parent: 44970 - - uid: 46189 + parent: 45355 + - uid: 46542 components: - type: Transform pos: -9.5,22.5 - parent: 44970 - - uid: 46190 + parent: 45355 + - uid: 46543 components: - type: Transform pos: -9.5,21.5 - parent: 44970 - - uid: 46191 + parent: 45355 + - uid: 46544 components: - type: Transform pos: -9.5,20.5 - parent: 44970 - - uid: 46192 + parent: 45355 + - uid: 46545 components: - type: Transform pos: -6.5,-9.5 - parent: 44970 - - uid: 46193 + parent: 45355 + - uid: 46546 components: - type: Transform pos: -11.5,-3.5 - parent: 44970 - - uid: 46194 + parent: 45355 + - uid: 46547 components: - type: Transform pos: -11.5,-4.5 - parent: 44970 - - uid: 46195 + parent: 45355 + - uid: 46548 components: - type: Transform pos: -10.5,-4.5 - parent: 44970 - - uid: 46196 + parent: 45355 + - uid: 46549 components: - type: Transform pos: -12.5,10.5 - parent: 44970 - - uid: 46197 + parent: 45355 + - uid: 46550 components: - type: Transform pos: -11.5,10.5 - parent: 44970 - - uid: 46198 + parent: 45355 + - uid: 46551 components: - type: Transform pos: -12.5,11.5 - parent: 44970 - - uid: 46199 + parent: 45355 + - uid: 46552 components: - type: Transform pos: -11.5,11.5 - parent: 44970 - - uid: 46200 + parent: 45355 + - uid: 46553 components: - type: Transform pos: -12.5,9.5 - parent: 44970 - - uid: 46201 + parent: 45355 + - uid: 46554 components: - type: Transform pos: 7.5,12.5 - parent: 44970 - - uid: 46202 + parent: 45355 + - uid: 46555 components: - type: Transform pos: 7.5,11.5 - parent: 44970 - - uid: 46203 + parent: 45355 + - uid: 46556 components: - type: Transform pos: 7.5,11.5 - parent: 44970 - - uid: 46204 + parent: 45355 + - uid: 46557 components: - type: Transform pos: 6.5,12.5 - parent: 44970 - - uid: 46205 + parent: 45355 + - uid: 46558 components: - type: Transform pos: 6.5,11.5 - parent: 44970 - - uid: 46206 + parent: 45355 + - uid: 46559 + components: + - type: Transform + pos: 6.5,13.5 + parent: 45355 + - uid: 46560 + components: + - type: Transform + pos: 7.5,24.5 + parent: 45355 + - uid: 46561 + components: + - type: Transform + pos: 7.5,23.5 + parent: 45355 + - uid: 46562 + components: + - type: Transform + pos: 7.5,22.5 + parent: 45355 + - uid: 46563 + components: + - type: Transform + pos: 6.5,23.5 + parent: 45355 + - uid: 46564 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 45355 + - uid: 46565 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 45355 + - uid: 46566 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 45355 + - uid: 46567 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 45355 + - uid: 46568 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 45355 + - uid: 46569 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 45355 + - uid: 46570 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 45355 + - uid: 46571 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 45355 + - uid: 46900 + components: + - type: Transform + pos: -2.5,12.5 + parent: 46584 + - uid: 46901 + components: + - type: Transform + pos: -1.5,13.5 + parent: 46584 + - uid: 46902 + components: + - type: Transform + pos: 3.5,13.5 + parent: 46584 + - uid: 46903 + components: + - type: Transform + pos: 3.5,12.5 + parent: 46584 +- proto: WallRockSnowQuartz + entities: + - uid: 37545 + components: + - type: Transform + pos: -31.5,69.5 + parent: 2 + - uid: 37546 + components: + - type: Transform + pos: -33.5,71.5 + parent: 2 + - uid: 37547 + components: + - type: Transform + pos: -32.5,71.5 + parent: 2 + - uid: 37548 + components: + - type: Transform + pos: -32.5,69.5 + parent: 2 + - uid: 37549 + components: + - type: Transform + pos: -32.5,70.5 + parent: 2 + - uid: 37550 + components: + - type: Transform + pos: -31.5,70.5 + parent: 2 + - uid: 37551 + components: + - type: Transform + pos: -94.5,46.5 + parent: 2 + - uid: 37552 + components: + - type: Transform + pos: -94.5,45.5 + parent: 2 + - uid: 37553 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 37554 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 37555 + components: + - type: Transform + pos: -54.5,21.5 + parent: 2 + - uid: 37556 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 37557 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 37558 + components: + - type: Transform + pos: -56.5,-27.5 + parent: 2 + - uid: 37559 + components: + - type: Transform + pos: -53.5,20.5 + parent: 2 + - uid: 37560 + components: + - type: Transform + pos: -53.5,21.5 + parent: 2 + - uid: 37561 + components: + - type: Transform + pos: -54.5,-28.5 + parent: 2 + - uid: 37562 + components: + - type: Transform + pos: -57.5,-27.5 + parent: 2 + - uid: 37563 + components: + - type: Transform + pos: -59.5,-26.5 + parent: 2 + - uid: 37564 + components: + - type: Transform + pos: -56.5,29.5 + parent: 2 + - uid: 37565 + components: + - type: Transform + pos: -55.5,28.5 + parent: 2 + - uid: 37566 + components: + - type: Transform + pos: -55.5,29.5 + parent: 2 + - uid: 37567 + components: + - type: Transform + pos: -56.5,30.5 + parent: 2 + - uid: 37568 + components: + - type: Transform + pos: -57.5,30.5 + parent: 2 + - uid: 37569 + components: + - type: Transform + pos: -55.5,30.5 + parent: 2 + - uid: 37570 + components: + - type: Transform + pos: -55.5,31.5 + parent: 2 + - uid: 37571 + components: + - type: Transform + pos: -56.5,31.5 + parent: 2 + - uid: 37572 + components: + - type: Transform + pos: -79.5,41.5 + parent: 2 + - uid: 37573 + components: + - type: Transform + pos: -79.5,40.5 + parent: 2 + - uid: 37574 + components: + - type: Transform + pos: -79.5,39.5 + parent: 2 + - uid: 37575 + components: + - type: Transform + pos: -79.5,38.5 + parent: 2 + - uid: 37576 + components: + - type: Transform + pos: -78.5,38.5 + parent: 2 + - uid: 37577 + components: + - type: Transform + pos: -78.5,39.5 + parent: 2 + - uid: 37578 components: - type: Transform - pos: 6.5,13.5 - parent: 44970 - - uid: 46207 + pos: -78.5,41.5 + parent: 2 + - uid: 37579 components: - type: Transform - pos: 7.5,24.5 - parent: 44970 - - uid: 46208 + pos: -78.5,42.5 + parent: 2 + - uid: 37580 components: - type: Transform - pos: 7.5,23.5 - parent: 44970 - - uid: 46209 + pos: -77.5,42.5 + parent: 2 + - uid: 37581 components: - type: Transform - pos: 7.5,22.5 - parent: 44970 - - uid: 46210 + pos: -77.5,39.5 + parent: 2 + - uid: 37582 components: - type: Transform - pos: 6.5,23.5 - parent: 44970 - - uid: 46211 + pos: -80.5,41.5 + parent: 2 + - uid: 37583 components: - type: Transform - pos: -3.5,-13.5 - parent: 44970 - - uid: 46212 + pos: -80.5,40.5 + parent: 2 + - uid: 37584 components: - type: Transform - pos: -2.5,-13.5 - parent: 44970 - - uid: 46213 + pos: -52.5,20.5 + parent: 2 + - uid: 37585 components: - type: Transform - pos: -3.5,-12.5 - parent: 44970 - - uid: 46214 + pos: -52.5,19.5 + parent: 2 + - uid: 37586 components: - type: Transform - pos: -2.5,-12.5 - parent: 44970 - - uid: 46215 + pos: -50.5,19.5 + parent: 2 + - uid: 37587 components: - type: Transform - pos: -4.5,-13.5 - parent: 44970 - - uid: 46216 + pos: -51.5,19.5 + parent: 2 + - uid: 37588 components: - type: Transform - pos: -5.5,-10.5 - parent: 44970 - - uid: 46217 + pos: -58.5,-26.5 + parent: 2 + - uid: 37589 components: - type: Transform - pos: -4.5,-10.5 - parent: 44970 - - uid: 46218 + pos: -57.5,-26.5 + parent: 2 + - uid: 37590 components: - type: Transform - pos: -5.5,-9.5 - parent: 44970 -- proto: WallRockSnowQuartz - entities: - - uid: 37202 + pos: -58.5,-25.5 + parent: 2 + - uid: 37591 components: - type: Transform pos: 88.5,-38.5 parent: 2 - - uid: 37203 + - uid: 37592 components: - type: Transform pos: 90.5,-39.5 parent: 2 - - uid: 37204 + - uid: 37593 components: - type: Transform pos: 101.5,-18.5 parent: 2 - - uid: 37205 + - uid: 37594 components: - type: Transform pos: 105.5,-6.5 parent: 2 - - uid: 37206 + - uid: 37595 components: - type: Transform pos: 105.5,-4.5 parent: 2 - - uid: 37207 + - uid: 37596 components: - type: Transform pos: 105.5,-5.5 parent: 2 - - uid: 37208 + - uid: 37597 components: - type: Transform pos: 103.5,-6.5 parent: 2 - - uid: 37209 + - uid: 37598 components: - type: Transform pos: 106.5,-4.5 parent: 2 - - uid: 37210 + - uid: 37599 components: - type: Transform pos: 104.5,-5.5 parent: 2 - - uid: 37211 + - uid: 37600 components: - type: Transform pos: 104.5,-6.5 parent: 2 - - uid: 37212 + - uid: 37601 components: - type: Transform pos: 106.5,-5.5 parent: 2 - - uid: 37213 + - uid: 37602 components: - type: Transform pos: 31.5,48.5 parent: 2 - - uid: 37214 + - uid: 37603 components: - type: Transform pos: 32.5,49.5 parent: 2 - - uid: 37215 + - uid: 37604 components: - type: Transform pos: 31.5,47.5 parent: 2 - - uid: 37216 + - uid: 37605 components: - type: Transform pos: 32.5,47.5 parent: 2 - - uid: 37217 + - uid: 37606 components: - type: Transform pos: 32.5,48.5 parent: 2 - - uid: 37218 + - uid: 37607 components: - type: Transform pos: -23.5,-30.5 parent: 2 - - uid: 37219 + - uid: 37608 components: - type: Transform pos: -25.5,-26.5 parent: 2 - - uid: 37220 + - uid: 37609 components: - type: Transform pos: -25.5,-28.5 parent: 2 - - uid: 37221 + - uid: 37610 components: - type: Transform pos: -25.5,-29.5 parent: 2 - - uid: 37222 + - uid: 37611 components: - type: Transform pos: -24.5,-29.5 parent: 2 - - uid: 37223 + - uid: 37612 components: - type: Transform pos: -70.5,32.5 parent: 2 - - uid: 37224 + - uid: 37613 components: - type: Transform pos: -70.5,33.5 parent: 2 - - uid: 37225 + - uid: 37614 components: - type: Transform pos: -71.5,31.5 parent: 2 - - uid: 37226 + - uid: 37615 components: - type: Transform pos: -71.5,32.5 parent: 2 - - uid: 37227 + - uid: 37616 components: - type: Transform pos: -72.5,31.5 parent: 2 - - uid: 37228 + - uid: 37617 components: - type: Transform pos: -73.5,31.5 parent: 2 - - uid: 37229 + - uid: 37618 components: - type: Transform pos: -92.5,42.5 parent: 2 - - uid: 37230 + - uid: 37619 components: - type: Transform pos: -86.5,17.5 parent: 2 - - uid: 37231 + - uid: 37620 components: - type: Transform pos: -86.5,16.5 parent: 2 - - uid: 37232 + - uid: 37621 components: - type: Transform pos: -85.5,18.5 parent: 2 - - uid: 37233 + - uid: 37622 components: - type: Transform pos: -85.5,17.5 parent: 2 - - uid: 37234 + - uid: 37623 components: - type: Transform pos: -85.5,16.5 parent: 2 - - uid: 37235 + - uid: 37624 components: - type: Transform pos: -88.5,6.5 parent: 2 - - uid: 37236 + - uid: 37625 components: - type: Transform pos: -87.5,3.5 parent: 2 - - uid: 37237 + - uid: 37626 components: - type: Transform pos: -86.5,5.5 parent: 2 - - uid: 37238 + - uid: 37627 components: - type: Transform pos: -85.5,4.5 parent: 2 - - uid: 37239 + - uid: 37628 components: - type: Transform pos: -92.5,44.5 parent: 2 - - uid: 37240 + - uid: 37629 components: - type: Transform pos: -92.5,43.5 parent: 2 - - uid: 37241 + - uid: 37630 components: - type: Transform pos: 54.5,35.5 parent: 2 - - uid: 37242 + - uid: 37631 components: - type: Transform pos: 54.5,36.5 parent: 2 - - uid: 37243 + - uid: 37632 components: - type: Transform pos: 11.5,-41.5 parent: 2 - - uid: 37244 + - uid: 37633 components: - type: Transform pos: 88.5,-33.5 parent: 2 - - uid: 37245 + - uid: 37634 components: - type: Transform pos: 11.5,-40.5 parent: 2 - - uid: 37246 + - uid: 37635 components: - type: Transform pos: 38.5,-27.5 parent: 2 - - uid: 37247 + - uid: 37636 components: - type: Transform pos: 37.5,-27.5 parent: 2 - - uid: 37248 + - uid: 37637 components: - type: Transform pos: 53.5,35.5 parent: 2 - - uid: 37249 + - uid: 37638 components: - type: Transform pos: 37.5,-28.5 parent: 2 - - uid: 37250 + - uid: 37639 components: - type: Transform pos: 36.5,-28.5 parent: 2 - - uid: 37251 + - uid: 37640 components: - type: Transform pos: 55.5,35.5 parent: 2 - - uid: 37252 + - uid: 37641 components: - type: Transform pos: 33.5,47.5 parent: 2 - - uid: 37253 + - uid: 37642 components: - type: Transform pos: 12.5,-40.5 parent: 2 - - uid: 37254 + - uid: 37643 components: - type: Transform pos: 41.5,-26.5 parent: 2 - - uid: 37255 + - uid: 37644 components: - type: Transform pos: 52.5,-28.5 parent: 2 - - uid: 37256 + - uid: 37645 components: - type: Transform pos: 53.5,-29.5 parent: 2 - - uid: 37257 + - uid: 37646 components: - type: Transform pos: 57.5,35.5 parent: 2 - - uid: 37258 + - uid: 37647 components: - type: Transform pos: 58.5,36.5 parent: 2 - - uid: 37259 + - uid: 37648 components: - type: Transform pos: 12.5,68.5 parent: 2 - - uid: 37260 + - uid: 37649 components: - type: Transform pos: 12.5,69.5 parent: 2 - - uid: 37261 + - uid: 37650 components: - type: Transform pos: 13.5,68.5 parent: 2 - - uid: 37262 + - uid: 37651 components: - type: Transform pos: 13.5,69.5 parent: 2 - - uid: 37263 + - uid: 37652 components: - type: Transform pos: 14.5,69.5 parent: 2 - - uid: 37264 + - uid: 37653 components: - type: Transform pos: 89.5,-33.5 parent: 2 - - uid: 37265 + - uid: 37654 components: - type: Transform pos: 89.5,-32.5 parent: 2 - - uid: 37266 + - uid: 37655 components: - type: Transform pos: -62.5,-14.5 parent: 2 - - uid: 37267 + - uid: 37656 components: - type: Transform pos: -63.5,-14.5 parent: 2 - - uid: 37268 + - uid: 37657 components: - type: Transform pos: -63.5,-13.5 parent: 2 - - uid: 37269 + - uid: 37658 components: - type: Transform pos: -74.5,31.5 parent: 2 - - uid: 37270 + - uid: 37659 components: - type: Transform pos: -74.5,30.5 parent: 2 - - uid: 37271 + - uid: 37660 components: - type: Transform pos: -31.5,-34.5 parent: 2 - - uid: 37272 + - uid: 37661 components: - type: Transform pos: -32.5,-34.5 parent: 2 - - uid: 37273 + - uid: 37662 components: - type: Transform pos: -57.5,-37.5 parent: 2 - - uid: 37274 + - uid: 37663 components: - type: Transform pos: -57.5,-36.5 parent: 2 - - uid: 37275 + - uid: 37664 components: - type: Transform pos: -56.5,-36.5 parent: 2 - - uid: 37276 + - uid: 37665 components: - type: Transform pos: -56.5,-35.5 parent: 2 - - uid: 37277 + - uid: 37666 components: - type: Transform pos: -44.5,-28.5 parent: 2 - - uid: 37278 + - uid: 37667 components: - type: Transform pos: -43.5,-29.5 parent: 2 - - uid: 37279 + - uid: 37668 components: - type: Transform pos: -43.5,-28.5 parent: 2 - - uid: 37280 + - uid: 37669 components: - type: Transform pos: -51.5,-47.5 parent: 2 - - uid: 37281 + - uid: 37670 components: - type: Transform pos: -52.5,-46.5 parent: 2 - - uid: 37282 + - uid: 37671 components: - type: Transform pos: -51.5,-46.5 parent: 2 - - uid: 37283 + - uid: 37672 components: - type: Transform pos: -38.5,-34.5 parent: 2 - - uid: 37284 + - uid: 37673 components: - type: Transform pos: -39.5,-33.5 parent: 2 - - uid: 37285 + - uid: 37674 components: - type: Transform pos: -38.5,-33.5 parent: 2 - - uid: 37286 + - uid: 37675 components: - type: Transform pos: -37.5,-34.5 parent: 2 - - uid: 37287 + - uid: 37676 components: - type: Transform pos: -51.5,-22.5 parent: 2 - - uid: 37288 + - uid: 37677 components: - type: Transform pos: -51.5,-23.5 parent: 2 - - uid: 37289 + - uid: 37678 components: - type: Transform pos: -52.5,-23.5 parent: 2 - - uid: 37290 + - uid: 37679 components: - type: Transform pos: -52.5,-22.5 parent: 2 - - uid: 37291 + - uid: 37680 components: - type: Transform pos: -53.5,-22.5 parent: 2 - - uid: 37292 + - uid: 37681 components: - type: Transform pos: -53.5,-21.5 parent: 2 - - uid: 37293 + - uid: 37682 components: - type: Transform pos: -26.5,-26.5 parent: 2 - - uid: 37294 + - uid: 37683 components: - type: Transform pos: -26.5,-27.5 parent: 2 - - uid: 37295 + - uid: 37684 components: - type: Transform pos: -27.5,-27.5 parent: 2 - - uid: 37296 + - uid: 37685 components: - type: Transform pos: -58.5,-36.5 parent: 2 - - uid: 37297 + - uid: 37686 components: - type: Transform pos: -98.5,30.5 parent: 2 - - uid: 37298 + - uid: 37687 components: - type: Transform pos: -97.5,30.5 parent: 2 - - uid: 37299 + - uid: 37688 components: - type: Transform pos: -96.5,27.5 parent: 2 - - uid: 37300 + - uid: 37689 components: - type: Transform pos: -97.5,27.5 parent: 2 - - uid: 37301 + - uid: 37690 components: - type: Transform pos: -97.5,29.5 parent: 2 - - uid: 37302 + - uid: 37691 components: - type: Transform pos: -97.5,28.5 parent: 2 - - uid: 37303 + - uid: 37692 components: - type: Transform pos: -102.5,37.5 parent: 2 - - uid: 37304 + - uid: 37693 components: - type: Transform pos: -103.5,38.5 parent: 2 - - uid: 37305 + - uid: 37694 components: - type: Transform pos: -103.5,37.5 parent: 2 - - uid: 37306 + - uid: 37695 components: - type: Transform pos: -96.5,29.5 parent: 2 - - uid: 37307 + - uid: 37696 components: - type: Transform pos: -96.5,28.5 parent: 2 - - uid: 37308 + - uid: 37697 components: - type: Transform pos: -127.5,-0.5 parent: 2 - - uid: 37309 + - uid: 37698 components: - type: Transform pos: -128.5,1.5 parent: 2 - - uid: 37310 + - uid: 37699 components: - type: Transform pos: -128.5,0.5 parent: 2 - - uid: 37311 + - uid: 37700 components: - type: Transform pos: -127.5,0.5 parent: 2 - - uid: 37312 + - uid: 37701 components: - type: Transform pos: -129.5,-14.5 parent: 2 - - uid: 37313 + - uid: 37702 components: - type: Transform pos: -99.5,-12.5 parent: 2 - - uid: 37314 + - uid: 37703 components: - type: Transform pos: -100.5,-13.5 parent: 2 - - uid: 37315 + - uid: 37704 components: - type: Transform pos: -101.5,-13.5 parent: 2 - - uid: 37316 + - uid: 37705 components: - type: Transform pos: -100.5,-12.5 parent: 2 - - uid: 37317 + - uid: 37706 components: - type: Transform pos: -98.5,-12.5 parent: 2 - - uid: 37318 + - uid: 37707 components: - type: Transform pos: -36.5,-22.5 parent: 2 - - uid: 37319 + - uid: 37708 components: - type: Transform pos: -36.5,-23.5 parent: 2 - - uid: 37320 + - uid: 37709 components: - type: Transform pos: -36.5,-24.5 parent: 2 - - uid: 37321 + - uid: 37710 components: - type: Transform pos: -35.5,-22.5 parent: 2 - - uid: 37322 + - uid: 37711 components: - type: Transform pos: -35.5,-23.5 parent: 2 - - uid: 37323 + - uid: 37712 components: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 37324 + - uid: 37713 components: - type: Transform pos: -86.5,4.5 parent: 2 - - uid: 37325 + - uid: 37714 components: - type: Transform pos: -88.5,4.5 parent: 2 - - uid: 37326 + - uid: 37715 components: - type: Transform pos: -88.5,5.5 parent: 2 - - uid: 37327 + - uid: 37716 components: - type: Transform pos: -87.5,5.5 parent: 2 - - uid: 37328 + - uid: 37717 components: - type: Transform pos: -87.5,4.5 parent: 2 - - uid: 37329 - components: - - type: Transform - pos: -106.5,47.5 - parent: 2 - - uid: 37330 - components: - - type: Transform - pos: -106.5,48.5 - parent: 2 - - uid: 37331 + - uid: 37718 components: - type: Transform pos: -97.5,56.5 parent: 2 - - uid: 37332 + - uid: 37719 components: - type: Transform pos: -96.5,56.5 parent: 2 - - uid: 37333 + - uid: 37720 components: - type: Transform pos: -96.5,57.5 parent: 2 - - uid: 37334 + - uid: 37721 components: - type: Transform pos: -95.5,56.5 parent: 2 - - uid: 37335 + - uid: 37722 components: - type: Transform pos: -95.5,57.5 parent: 2 - - uid: 37336 - components: - - type: Transform - pos: -106.5,46.5 - parent: 2 - - uid: 37337 + - uid: 37723 components: - type: Transform pos: -93.5,43.5 parent: 2 - - uid: 37338 + - uid: 37724 components: - type: Transform pos: -96.5,55.5 parent: 2 - - uid: 37339 - components: - - type: Transform - pos: -105.5,47.5 - parent: 2 - - uid: 37340 - components: - - type: Transform - pos: -105.5,46.5 - parent: 2 - - uid: 37341 + - uid: 37725 components: - type: Transform pos: -93.5,45.5 parent: 2 - - uid: 37342 + - uid: 37726 components: - type: Transform pos: -93.5,44.5 parent: 2 - - uid: 37343 + - uid: 37727 components: - type: Transform pos: 46.5,38.5 parent: 2 - - uid: 37344 + - uid: 37728 components: - type: Transform pos: 47.5,38.5 parent: 2 - - uid: 37345 + - uid: 37729 components: - type: Transform pos: 38.5,38.5 parent: 2 - - uid: 37346 + - uid: 37730 components: - type: Transform pos: 54.5,45.5 parent: 2 - - uid: 37347 + - uid: 37731 components: - type: Transform pos: 60.5,41.5 parent: 2 - - uid: 37348 + - uid: 37732 components: - type: Transform pos: 40.5,38.5 parent: 2 - - uid: 37349 + - uid: 37733 components: - type: Transform pos: 43.5,40.5 parent: 2 - - uid: 37350 + - uid: 37734 components: - type: Transform pos: 38.5,41.5 parent: 2 - - uid: 37351 + - uid: 37735 components: - type: Transform pos: 58.5,35.5 parent: 2 - - uid: 37352 + - uid: 37736 components: - type: Transform pos: 42.5,42.5 parent: 2 - - uid: 44641 + - uid: 45030 components: - type: Transform pos: 21.5,68.5 - parent: 40203 - - uid: 44642 + parent: 40599 + - uid: 45031 components: - type: Transform pos: 21.5,67.5 - parent: 40203 - - uid: 44643 + parent: 40599 + - uid: 45032 components: - type: Transform pos: 23.5,70.5 - parent: 40203 - - uid: 44644 + parent: 40599 + - uid: 45033 components: - type: Transform pos: 27.5,78.5 - parent: 40203 - - uid: 44645 + parent: 40599 + - uid: 45034 components: - type: Transform pos: 24.5,70.5 - parent: 40203 - - uid: 44646 + parent: 40599 + - uid: 45035 components: - type: Transform pos: 24.5,68.5 - parent: 40203 - - uid: 44647 + parent: 40599 + - uid: 45036 components: - type: Transform pos: 28.5,80.5 - parent: 40203 - - uid: 44648 + parent: 40599 + - uid: 45037 components: - type: Transform pos: 25.5,68.5 - parent: 40203 - - uid: 44649 + parent: 40599 + - uid: 45038 components: - type: Transform pos: 26.5,80.5 - parent: 40203 - - uid: 44650 + parent: 40599 + - uid: 45039 components: - type: Transform pos: 26.5,79.5 - parent: 40203 - - uid: 44651 + parent: 40599 + - uid: 45040 components: - type: Transform pos: 27.5,82.5 - parent: 40203 - - uid: 44652 + parent: 40599 + - uid: 45041 components: - type: Transform pos: 27.5,81.5 - parent: 40203 - - uid: 44653 + parent: 40599 + - uid: 45042 components: - type: Transform pos: 29.5,78.5 - parent: 40203 - - uid: 44654 + parent: 40599 + - uid: 45043 components: - type: Transform pos: 28.5,78.5 - parent: 40203 - - uid: 44655 + parent: 40599 + - uid: 45044 components: - type: Transform pos: 30.5,78.5 - parent: 40203 - - uid: 44656 + parent: 40599 + - uid: 45045 components: - type: Transform pos: 40.5,48.5 - parent: 40203 - - uid: 44657 + parent: 40599 + - uid: 45046 components: - type: Transform pos: 40.5,47.5 - parent: 40203 - - uid: 44658 + parent: 40599 + - uid: 45047 components: - type: Transform pos: 41.5,49.5 - parent: 40203 - - uid: 44659 + parent: 40599 + - uid: 45048 components: - type: Transform pos: 41.5,48.5 - parent: 40203 - - uid: 44660 + parent: 40599 + - uid: 45049 components: - type: Transform pos: 42.5,49.5 - parent: 40203 - - uid: 44661 + parent: 40599 + - uid: 45050 components: - type: Transform pos: 83.5,61.5 - parent: 40203 - - uid: 44662 + parent: 40599 + - uid: 45051 components: - type: Transform pos: 84.5,61.5 - parent: 40203 - - uid: 44663 + parent: 40599 + - uid: 45052 components: - type: Transform pos: 84.5,60.5 - parent: 40203 - - uid: 44664 + parent: 40599 + - uid: 45053 components: - type: Transform pos: 84.5,59.5 - parent: 40203 - - uid: 44665 + parent: 40599 + - uid: 45054 components: - type: Transform pos: 84.5,58.5 - parent: 40203 - - uid: 44666 + parent: 40599 + - uid: 45055 components: - type: Transform pos: 42.5,48.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowSalt entities: - - uid: 37353 + - uid: 37737 + components: + - type: Transform + pos: -85.5,57.5 + parent: 2 + - uid: 37738 + components: + - type: Transform + pos: -85.5,58.5 + parent: 2 + - uid: 37739 + components: + - type: Transform + pos: -86.5,56.5 + parent: 2 + - uid: 37740 + components: + - type: Transform + pos: -86.5,57.5 + parent: 2 + - uid: 37741 + components: + - type: Transform + pos: -87.5,56.5 + parent: 2 + - uid: 37742 + components: + - type: Transform + pos: -86.5,55.5 + parent: 2 + - uid: 37743 + components: + - type: Transform + pos: -73.5,49.5 + parent: 2 + - uid: 37744 + components: + - type: Transform + pos: -76.5,50.5 + parent: 2 + - uid: 37745 + components: + - type: Transform + pos: -76.5,51.5 + parent: 2 + - uid: 37746 + components: + - type: Transform + pos: -75.5,51.5 + parent: 2 + - uid: 37747 + components: + - type: Transform + pos: -74.5,50.5 + parent: 2 + - uid: 37748 + components: + - type: Transform + pos: -84.5,59.5 + parent: 2 + - uid: 37749 + components: + - type: Transform + pos: -84.5,58.5 + parent: 2 + - uid: 37750 + components: + - type: Transform + pos: -84.5,57.5 + parent: 2 + - uid: 37751 + components: + - type: Transform + pos: -83.5,59.5 + parent: 2 + - uid: 37752 + components: + - type: Transform + pos: -67.5,62.5 + parent: 2 + - uid: 37753 + components: + - type: Transform + pos: -50.5,34.5 + parent: 2 + - uid: 37754 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 37755 + components: + - type: Transform + pos: -50.5,32.5 + parent: 2 + - uid: 37756 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 + - uid: 37757 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 37758 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 37759 + components: + - type: Transform + pos: -52.5,32.5 + parent: 2 + - uid: 37760 + components: + - type: Transform + pos: -53.5,32.5 + parent: 2 + - uid: 37761 + components: + - type: Transform + pos: -68.5,63.5 + parent: 2 + - uid: 37762 + components: + - type: Transform + pos: -52.5,31.5 + parent: 2 + - uid: 37763 components: - type: Transform pos: -67.5,63.5 parent: 2 - - uid: 37354 + - uid: 37764 components: - type: Transform pos: -70.5,66.5 parent: 2 - - uid: 37355 + - uid: 37765 components: - type: Transform pos: 14.5,-42.5 parent: 2 - - uid: 37356 + - uid: 37766 components: - type: Transform pos: -37.5,-28.5 parent: 2 - - uid: 37357 + - uid: 37767 components: - type: Transform pos: -36.5,-28.5 parent: 2 - - uid: 37358 + - uid: 37768 components: - type: Transform pos: -36.5,-29.5 parent: 2 - - uid: 37359 + - uid: 37769 components: - type: Transform pos: -21.5,-28.5 parent: 2 - - uid: 37360 + - uid: 37770 components: - type: Transform pos: -80.5,52.5 parent: 2 - - uid: 37361 + - uid: 37771 components: - type: Transform pos: -79.5,53.5 parent: 2 - - uid: 37362 + - uid: 37772 components: - type: Transform pos: -80.5,53.5 parent: 2 - - uid: 37363 + - uid: 37773 components: - type: Transform pos: -85.5,55.5 parent: 2 - - uid: 37364 + - uid: 37774 components: - type: Transform pos: -85.5,54.5 parent: 2 - - uid: 37365 + - uid: 37775 components: - type: Transform pos: -84.5,55.5 parent: 2 - - uid: 37366 - components: - - type: Transform - pos: -37.5,65.5 - parent: 2 - - uid: 37367 - components: - - type: Transform - pos: -37.5,64.5 - parent: 2 - - uid: 37368 - components: - - type: Transform - pos: -36.5,64.5 - parent: 2 - - uid: 37369 - components: - - type: Transform - pos: -37.5,66.5 - parent: 2 - - uid: 37370 + - uid: 37776 components: - type: Transform pos: 13.5,-44.5 parent: 2 - - uid: 37371 + - uid: 37777 components: - type: Transform pos: -33.5,-39.5 parent: 2 - - uid: 37372 + - uid: 37778 components: - type: Transform pos: -47.5,-48.5 parent: 2 - - uid: 37373 + - uid: 37779 components: - type: Transform pos: -48.5,-48.5 parent: 2 - - uid: 37374 + - uid: 37780 components: - type: Transform pos: -49.5,-48.5 parent: 2 - - uid: 37375 + - uid: 37781 components: - type: Transform pos: -47.5,-30.5 parent: 2 - - uid: 37376 + - uid: 37782 components: - type: Transform pos: -48.5,-49.5 parent: 2 - - uid: 37377 + - uid: 37783 components: - type: Transform pos: -49.5,-47.5 parent: 2 - - uid: 37378 + - uid: 37784 components: - type: Transform pos: -48.5,-47.5 parent: 2 - - uid: 37379 + - uid: 37785 components: - type: Transform pos: -31.5,-25.5 parent: 2 - - uid: 37380 + - uid: 37786 components: - type: Transform pos: -34.5,-26.5 parent: 2 - - uid: 37381 + - uid: 37787 components: - type: Transform pos: 14.5,-43.5 parent: 2 - - uid: 37382 + - uid: 37788 components: - type: Transform pos: 13.5,-43.5 parent: 2 - - uid: 37383 + - uid: 37789 components: - type: Transform pos: -69.5,64.5 parent: 2 - - uid: 37384 + - uid: 37790 components: - type: Transform pos: -68.5,64.5 parent: 2 - - uid: 37385 + - uid: 37791 components: - type: Transform pos: -69.5,65.5 parent: 2 - - uid: 44667 + - uid: 37792 + components: + - type: Transform + pos: -85.5,56.5 + parent: 2 + - uid: 45056 components: - type: Transform pos: 33.5,76.5 - parent: 40203 - - uid: 44668 + parent: 40599 + - uid: 45057 components: - type: Transform pos: 33.5,77.5 - parent: 40203 - - uid: 44669 + parent: 40599 + - uid: 45058 components: - type: Transform pos: 17.5,43.5 - parent: 40203 - - uid: 44670 + parent: 40599 + - uid: 45059 components: - type: Transform pos: 18.5,63.5 - parent: 40203 - - uid: 44671 + parent: 40599 + - uid: 45060 components: - type: Transform pos: 18.5,60.5 - parent: 40203 - - uid: 44672 + parent: 40599 + - uid: 45061 components: - type: Transform pos: 18.5,43.5 - parent: 40203 - - uid: 44673 + parent: 40599 + - uid: 45062 components: - type: Transform pos: 18.5,42.5 - parent: 40203 - - uid: 44674 + parent: 40599 + - uid: 45063 components: - type: Transform pos: 18.5,41.5 - parent: 40203 - - uid: 44675 + parent: 40599 + - uid: 45064 components: - type: Transform pos: 18.5,39.5 - parent: 40203 - - uid: 44676 + parent: 40599 + - uid: 45065 components: - type: Transform pos: 19.5,64.5 - parent: 40203 - - uid: 44677 + parent: 40599 + - uid: 45066 components: - type: Transform pos: 19.5,63.5 - parent: 40203 - - uid: 44678 + parent: 40599 + - uid: 45067 components: - type: Transform pos: 19.5,62.5 - parent: 40203 - - uid: 44679 + parent: 40599 + - uid: 45068 components: - type: Transform pos: 19.5,61.5 - parent: 40203 - - uid: 44680 + parent: 40599 + - uid: 45069 components: - type: Transform pos: 19.5,42.5 - parent: 40203 - - uid: 44681 + parent: 40599 + - uid: 45070 components: - type: Transform pos: 19.5,41.5 - parent: 40203 - - uid: 44682 + parent: 40599 + - uid: 45071 components: - type: Transform pos: 19.5,40.5 - parent: 40203 - - uid: 44683 + parent: 40599 + - uid: 45072 components: - type: Transform pos: 19.5,39.5 - parent: 40203 - - uid: 44684 + parent: 40599 + - uid: 45073 components: - type: Transform pos: 20.5,65.5 - parent: 40203 - - uid: 44685 + parent: 40599 + - uid: 45074 components: - type: Transform pos: 20.5,64.5 - parent: 40203 - - uid: 44686 + parent: 40599 + - uid: 45075 components: - type: Transform pos: 20.5,38.5 - parent: 40203 - - uid: 44687 + parent: 40599 + - uid: 45076 components: - type: Transform pos: 21.5,38.5 - parent: 40203 - - uid: 44688 + parent: 40599 + - uid: 45077 components: - type: Transform pos: 23.5,33.5 - parent: 40203 - - uid: 44689 + parent: 40599 + - uid: 45078 components: - type: Transform pos: 24.5,34.5 - parent: 40203 - - uid: 44690 + parent: 40599 + - uid: 45079 components: - type: Transform pos: 25.5,31.5 - parent: 40203 - - uid: 44691 + parent: 40599 + - uid: 45080 components: - type: Transform pos: 72.5,67.5 - parent: 40203 - - uid: 44692 + parent: 40599 + - uid: 45081 components: - type: Transform pos: 72.5,66.5 - parent: 40203 - - uid: 44693 + parent: 40599 + - uid: 45082 components: - type: Transform pos: 73.5,68.5 - parent: 40203 - - uid: 44694 + parent: 40599 + - uid: 45083 components: - type: Transform pos: 73.5,67.5 - parent: 40203 - - uid: 44695 + parent: 40599 + - uid: 45084 components: - type: Transform pos: 73.5,66.5 - parent: 40203 - - uid: 44696 + parent: 40599 + - uid: 45085 components: - type: Transform pos: 73.5,65.5 - parent: 40203 - - uid: 44697 + parent: 40599 + - uid: 45086 components: - type: Transform pos: 74.5,67.5 - parent: 40203 - - uid: 44698 + parent: 40599 + - uid: 45087 components: - type: Transform pos: 74.5,66.5 - parent: 40203 - - uid: 44699 + parent: 40599 + - uid: 45088 components: - type: Transform pos: 75.5,67.5 - parent: 40203 - - uid: 44700 + parent: 40599 + - uid: 45089 components: - type: Transform pos: 76.5,67.5 - parent: 40203 - - uid: 44701 + parent: 40599 + - uid: 45090 components: - type: Transform pos: 32.5,78.5 - parent: 40203 - - uid: 44702 + parent: 40599 + - uid: 45091 components: - type: Transform pos: 32.5,77.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowSilver entities: - - uid: 37386 + - uid: 37793 + components: + - type: Transform + pos: -99.5,42.5 + parent: 2 + - uid: 37794 + components: + - type: Transform + pos: -98.5,43.5 + parent: 2 + - uid: 37795 + components: + - type: Transform + pos: -97.5,42.5 + parent: 2 + - uid: 37796 + components: + - type: Transform + pos: -100.5,42.5 + parent: 2 + - uid: 37797 + components: + - type: Transform + pos: -99.5,41.5 + parent: 2 + - uid: 37798 + components: + - type: Transform + pos: -30.5,61.5 + parent: 2 + - uid: 37799 + components: + - type: Transform + pos: -30.5,62.5 + parent: 2 + - uid: 37800 + components: + - type: Transform + pos: -31.5,62.5 + parent: 2 + - uid: 37801 + components: + - type: Transform + pos: -31.5,63.5 + parent: 2 + - uid: 37802 + components: + - type: Transform + pos: -101.5,55.5 + parent: 2 + - uid: 37803 + components: + - type: Transform + pos: -101.5,54.5 + parent: 2 + - uid: 37804 + components: + - type: Transform + pos: -100.5,54.5 + parent: 2 + - uid: 37805 + components: + - type: Transform + pos: -99.5,54.5 + parent: 2 + - uid: 37806 + components: + - type: Transform + pos: -56.5,44.5 + parent: 2 + - uid: 37807 + components: + - type: Transform + pos: -56.5,45.5 + parent: 2 + - uid: 37808 + components: + - type: Transform + pos: -57.5,45.5 + parent: 2 + - uid: 37809 + components: + - type: Transform + pos: 44.5,51.5 + parent: 2 + - uid: 37810 + components: + - type: Transform + pos: 44.5,53.5 + parent: 2 + - uid: 37811 + components: + - type: Transform + pos: 44.5,54.5 + parent: 2 + - uid: 37812 + components: + - type: Transform + pos: -59.5,45.5 + parent: 2 + - uid: 37813 + components: + - type: Transform + pos: 45.5,52.5 + parent: 2 + - uid: 37814 components: - type: Transform pos: 101.5,11.5 parent: 2 - - uid: 37387 + - uid: 37815 components: - type: Transform pos: 102.5,11.5 parent: 2 - - uid: 37388 + - uid: 37816 components: - type: Transform pos: 102.5,10.5 parent: 2 - - uid: 37389 + - uid: 37817 components: - type: Transform pos: 75.5,15.5 parent: 2 - - uid: 37390 + - uid: 37818 components: - type: Transform pos: 75.5,14.5 parent: 2 - - uid: 37391 + - uid: 37819 components: - type: Transform pos: 85.5,-38.5 parent: 2 - - uid: 37392 + - uid: 37820 components: - type: Transform pos: 56.5,-54.5 parent: 2 - - uid: 37393 + - uid: 37821 components: - type: Transform pos: 55.5,-55.5 parent: 2 - - uid: 37394 + - uid: 37822 components: - type: Transform pos: 55.5,-54.5 parent: 2 - - uid: 37395 + - uid: 37823 components: - type: Transform pos: -59.5,59.5 parent: 2 - - uid: 37396 - components: - - type: Transform - pos: -34.5,60.5 - parent: 2 - - uid: 37397 - components: - - type: Transform - pos: -34.5,61.5 - parent: 2 - - uid: 37398 + - uid: 37824 components: - type: Transform pos: -27.5,-30.5 parent: 2 - - uid: 37399 + - uid: 37825 components: - type: Transform pos: -28.5,-30.5 parent: 2 - - uid: 37400 + - uid: 37826 components: - type: Transform pos: 75.5,16.5 parent: 2 - - uid: 37401 + - uid: 37827 components: - type: Transform pos: -28.5,-29.5 parent: 2 - - uid: 37402 + - uid: 37828 components: - type: Transform pos: -50.5,39.5 parent: 2 - - uid: 37403 + - uid: 37829 components: - type: Transform pos: -50.5,38.5 parent: 2 - - uid: 37404 + - uid: 37830 components: - type: Transform pos: -52.5,37.5 parent: 2 - - uid: 37405 + - uid: 37831 components: - type: Transform pos: -51.5,38.5 parent: 2 - - uid: 37406 + - uid: 37832 components: - type: Transform pos: -51.5,37.5 parent: 2 - - uid: 37407 + - uid: 37833 components: - type: Transform pos: -52.5,38.5 parent: 2 - - uid: 37408 + - uid: 37834 components: - type: Transform pos: -58.5,46.5 parent: 2 - - uid: 37409 + - uid: 37835 components: - type: Transform pos: -57.5,47.5 parent: 2 - - uid: 37410 + - uid: 37836 components: - type: Transform pos: -76.5,33.5 parent: 2 - - uid: 37411 + - uid: 37837 components: - type: Transform pos: -76.5,34.5 parent: 2 - - uid: 37412 + - uid: 37838 components: - type: Transform pos: -75.5,34.5 parent: 2 - - uid: 37413 + - uid: 37839 components: - type: Transform pos: -71.5,35.5 parent: 2 - - uid: 37414 + - uid: 37840 components: - type: Transform pos: -71.5,36.5 parent: 2 - - uid: 37415 + - uid: 37841 components: - type: Transform pos: -72.5,36.5 parent: 2 - - uid: 37416 + - uid: 37842 components: - type: Transform pos: -71.5,37.5 parent: 2 - - uid: 37417 + - uid: 37843 components: - type: Transform pos: -70.5,37.5 parent: 2 - - uid: 37418 + - uid: 37844 components: - type: Transform pos: -56.5,47.5 parent: 2 - - uid: 37419 + - uid: 37845 components: - type: Transform pos: -43.5,45.5 parent: 2 - - uid: 37420 + - uid: 37846 components: - type: Transform pos: -42.5,45.5 parent: 2 - - uid: 37421 + - uid: 37847 components: - type: Transform pos: -88.5,9.5 parent: 2 - - uid: 37422 + - uid: 37848 components: - type: Transform pos: -88.5,8.5 parent: 2 - - uid: 37423 + - uid: 37849 components: - type: Transform pos: -87.5,8.5 parent: 2 - - uid: 37424 + - uid: 37850 components: - type: Transform pos: -89.5,8.5 parent: 2 - - uid: 37425 + - uid: 37851 components: - type: Transform pos: -61.5,59.5 parent: 2 - - uid: 37426 + - uid: 37852 components: - type: Transform pos: -60.5,58.5 parent: 2 - - uid: 37427 + - uid: 37853 components: - type: Transform pos: -60.5,59.5 parent: 2 - - uid: 37428 + - uid: 37854 components: - type: Transform pos: -59.5,58.5 parent: 2 - - uid: 37429 + - uid: 37855 components: - type: Transform pos: -58.5,58.5 parent: 2 - - uid: 37430 + - uid: 37856 components: - type: Transform pos: -100.5,40.5 parent: 2 - - uid: 37431 + - uid: 37857 components: - type: Transform pos: -100.5,39.5 parent: 2 - - uid: 37432 + - uid: 37858 components: - type: Transform pos: -100.5,41.5 parent: 2 - - uid: 37433 + - uid: 37859 components: - type: Transform pos: -99.5,40.5 parent: 2 - - uid: 37434 + - uid: 37860 components: - type: Transform pos: -44.5,44.5 parent: 2 - - uid: 37435 + - uid: 37861 components: - type: Transform pos: -43.5,44.5 parent: 2 - - uid: 37436 + - uid: 37862 components: - type: Transform pos: 84.5,-40.5 parent: 2 - - uid: 37437 + - uid: 37863 components: - type: Transform pos: 84.5,-38.5 parent: 2 - - uid: 37438 + - uid: 37864 components: - type: Transform pos: 34.5,40.5 parent: 2 - - uid: 37439 + - uid: 37865 components: - type: Transform pos: 35.5,40.5 parent: 2 - - uid: 37440 + - uid: 37866 components: - type: Transform pos: 85.5,-39.5 parent: 2 - - uid: 37441 + - uid: 37867 components: - type: Transform pos: 34.5,41.5 parent: 2 - - uid: 37442 + - uid: 37868 components: - type: Transform pos: -15.5,-31.5 parent: 2 - - uid: 37443 + - uid: 37869 components: - type: Transform pos: 15.5,-52.5 parent: 2 - - uid: 37444 + - uid: 37870 components: - type: Transform pos: 15.5,-53.5 parent: 2 - - uid: 37445 + - uid: 37871 components: - type: Transform pos: 14.5,-53.5 parent: 2 - - uid: 37446 + - uid: 37872 components: - type: Transform pos: 68.5,36.5 parent: 2 - - uid: 37447 + - uid: 37873 components: - type: Transform pos: 68.5,37.5 parent: 2 - - uid: 37448 + - uid: 37874 components: - type: Transform pos: 68.5,38.5 parent: 2 - - uid: 37449 + - uid: 37875 components: - type: Transform pos: 68.5,39.5 parent: 2 - - uid: 37450 + - uid: 37876 components: - type: Transform pos: 69.5,38.5 parent: 2 - - uid: 37451 + - uid: 37877 components: - type: Transform pos: 69.5,37.5 parent: 2 - - uid: 37452 + - uid: 37878 components: - type: Transform pos: 70.5,23.5 parent: 2 - - uid: 37453 + - uid: 37879 components: - type: Transform pos: 70.5,24.5 parent: 2 - - uid: 37454 + - uid: 37880 components: - type: Transform pos: 71.5,22.5 parent: 2 - - uid: 37455 + - uid: 37881 components: - type: Transform pos: 71.5,23.5 parent: 2 - - uid: 37456 + - uid: 37882 components: - type: Transform pos: 84.5,-37.5 parent: 2 - - uid: 37457 + - uid: 37883 components: - type: Transform pos: 24.5,45.5 parent: 2 - - uid: 37458 + - uid: 37884 components: - type: Transform pos: 25.5,45.5 parent: 2 - - uid: 37459 + - uid: 37885 components: - type: Transform pos: 101.5,-6.5 parent: 2 - - uid: 37460 + - uid: 37886 components: - type: Transform pos: 101.5,-5.5 parent: 2 - - uid: 37461 + - uid: 37887 components: - type: Transform pos: 90.5,7.5 parent: 2 - - uid: 37462 + - uid: 37888 components: - type: Transform pos: 89.5,6.5 parent: 2 - - uid: 37463 + - uid: 37889 components: - type: Transform pos: 89.5,7.5 parent: 2 - - uid: 37464 + - uid: 37890 components: - type: Transform pos: 89.5,8.5 parent: 2 - - uid: 37465 + - uid: 37891 components: - type: Transform pos: 76.5,12.5 parent: 2 - - uid: 37466 + - uid: 37892 components: - type: Transform pos: 76.5,14.5 parent: 2 - - uid: 37467 + - uid: 37893 components: - type: Transform pos: 76.5,13.5 parent: 2 - - uid: 37468 + - uid: 37894 components: - type: Transform pos: 76.5,15.5 parent: 2 - - uid: 37469 + - uid: 37895 components: - type: Transform pos: 74.5,14.5 parent: 2 - - uid: 37470 + - uid: 37896 components: - type: Transform pos: 75.5,13.5 parent: 2 - - uid: 37471 + - uid: 37897 components: - type: Transform pos: -14.5,-33.5 parent: 2 - - uid: 37472 + - uid: 37898 components: - type: Transform pos: -15.5,-33.5 parent: 2 - - uid: 37473 + - uid: 37899 components: - type: Transform pos: -46.5,-28.5 parent: 2 - - uid: 37474 + - uid: 37900 components: - type: Transform pos: -45.5,-29.5 parent: 2 - - uid: 37475 + - uid: 37901 components: - type: Transform pos: -45.5,-28.5 parent: 2 - - uid: 37476 + - uid: 37902 components: - type: Transform pos: -57.5,46.5 parent: 2 - - uid: 37477 + - uid: 37903 components: - type: Transform pos: -49.5,-23.5 parent: 2 - - uid: 37478 + - uid: 37904 components: - type: Transform pos: -57.5,-24.5 parent: 2 - - uid: 37479 + - uid: 37905 components: - type: Transform pos: -6.5,-72.5 parent: 2 - - uid: 37480 + - uid: 37906 components: - type: Transform pos: -5.5,-72.5 parent: 2 - - uid: 37481 + - uid: 37907 components: - type: Transform pos: -4.5,-72.5 parent: 2 - - uid: 37482 + - uid: 37908 components: - type: Transform pos: -3.5,-72.5 parent: 2 - - uid: 37483 + - uid: 37909 components: - type: Transform pos: -118.5,28.5 parent: 2 - - uid: 37484 + - uid: 37910 components: - type: Transform pos: -130.5,21.5 parent: 2 - - uid: 37485 + - uid: 37911 components: - type: Transform pos: -130.5,20.5 parent: 2 - - uid: 37486 + - uid: 37912 components: - type: Transform pos: -117.5,29.5 parent: 2 - - uid: 37487 + - uid: 37913 components: - type: Transform pos: -117.5,28.5 parent: 2 - - uid: 37488 + - uid: 37914 components: - type: Transform pos: -116.5,29.5 parent: 2 - - uid: 37489 + - uid: 37915 components: - type: Transform pos: -116.5,28.5 parent: 2 - - uid: 37490 + - uid: 37916 components: - type: Transform pos: -131.5,20.5 parent: 2 - - uid: 37491 + - uid: 37917 components: - type: Transform pos: -138.5,4.5 parent: 2 - - uid: 37492 + - uid: 37918 components: - type: Transform pos: -137.5,4.5 parent: 2 - - uid: 37493 + - uid: 37919 components: - type: Transform pos: -136.5,4.5 parent: 2 - - uid: 37494 + - uid: 37920 components: - type: Transform pos: -136.5,2.5 parent: 2 - - uid: 37495 + - uid: 37921 components: - type: Transform pos: -142.5,-7.5 parent: 2 - - uid: 37496 + - uid: 37922 components: - type: Transform pos: -142.5,-8.5 parent: 2 - - uid: 37497 + - uid: 37923 components: - type: Transform pos: -141.5,-9.5 parent: 2 - - uid: 37498 + - uid: 37924 components: - type: Transform pos: -140.5,-8.5 parent: 2 - - uid: 37499 + - uid: 37925 components: - type: Transform pos: -97.5,-14.5 parent: 2 - - uid: 37500 + - uid: 37926 components: - type: Transform pos: -96.5,-13.5 parent: 2 - - uid: 37501 + - uid: 37927 components: - type: Transform pos: -96.5,-14.5 parent: 2 - - uid: 37502 + - uid: 37928 components: - type: Transform pos: -95.5,-14.5 parent: 2 - - uid: 37503 - components: - - type: Transform - pos: -28.5,69.5 - parent: 2 - - uid: 37504 - components: - - type: Transform - pos: -27.5,69.5 - parent: 2 - - uid: 37505 - components: - - type: Transform - pos: -27.5,70.5 - parent: 2 - - uid: 37506 + - uid: 37929 components: - type: Transform pos: -17.5,66.5 parent: 2 - - uid: 37507 + - uid: 37930 components: - type: Transform pos: -17.5,67.5 parent: 2 - - uid: 37508 + - uid: 37931 components: - type: Transform pos: -17.5,68.5 parent: 2 - - uid: 37509 + - uid: 37932 components: - type: Transform pos: -16.5,66.5 parent: 2 - - uid: 37510 + - uid: 37933 components: - type: Transform pos: -81.5,-17.5 parent: 2 - - uid: 37511 + - uid: 37934 components: - type: Transform pos: -81.5,-18.5 parent: 2 - - uid: 37512 + - uid: 37935 components: - type: Transform pos: -80.5,-18.5 parent: 2 - - uid: 37513 + - uid: 37936 components: - type: Transform pos: 77.5,13.5 parent: 2 - - uid: 37514 + - uid: 37937 components: - type: Transform pos: 100.5,-6.5 parent: 2 - - uid: 37515 + - uid: 37938 components: - type: Transform pos: 100.5,-4.5 parent: 2 - - uid: 37516 + - uid: 37939 components: - type: Transform pos: 100.5,-5.5 parent: 2 - - uid: 37517 + - uid: 37940 components: - type: Transform pos: -101.5,41.5 parent: 2 - - uid: 37518 + - uid: 37941 components: - type: Transform pos: -102.5,55.5 parent: 2 - - uid: 37519 + - uid: 37942 components: - type: Transform pos: -103.5,56.5 parent: 2 - - uid: 37520 + - uid: 37943 components: - type: Transform pos: -102.5,56.5 parent: 2 - - uid: 37521 + - uid: 37944 components: - type: Transform pos: -101.5,56.5 parent: 2 - - uid: 37522 + - uid: 37945 components: - type: Transform pos: -100.5,56.5 parent: 2 - - uid: 37523 + - uid: 37946 components: - type: Transform pos: -101.5,57.5 parent: 2 - - uid: 37524 + - uid: 37947 components: - type: Transform pos: 102.5,12.5 parent: 2 - - uid: 37525 + - uid: 37948 components: - type: Transform pos: 103.5,12.5 parent: 2 - - uid: 37526 + - uid: 37949 components: - type: Transform pos: 101.5,12.5 parent: 2 - - uid: 37527 + - uid: 37950 components: - type: Transform pos: -20.5,30.5 parent: 2 - - uid: 37528 + - uid: 37951 components: - type: Transform pos: -89.5,30.5 parent: 2 - - uid: 37529 + - uid: 37952 components: - type: Transform pos: -88.5,31.5 parent: 2 - - uid: 37530 + - uid: 37953 components: - type: Transform pos: -93.5,27.5 parent: 2 - - uid: 37531 + - uid: 37954 components: - type: Transform pos: -94.5,25.5 parent: 2 - - uid: 37532 + - uid: 37955 components: - type: Transform pos: 55.5,47.5 parent: 2 - - uid: 37533 + - uid: 37956 components: - type: Transform pos: 65.5,38.5 parent: 2 - - uid: 37534 + - uid: 37957 components: - type: Transform pos: -30.5,36.5 parent: 2 - - uid: 37535 + - uid: 37958 components: - type: Transform pos: 45.5,54.5 parent: 2 - - uid: 37536 + - uid: 37959 components: - type: Transform pos: 45.5,51.5 parent: 2 - - uid: 37537 + - uid: 37960 components: - type: Transform pos: 37.5,60.5 parent: 2 - - uid: 44703 + - uid: 37961 + components: + - type: Transform + pos: -101.5,53.5 + parent: 2 + - uid: 37962 + components: + - type: Transform + pos: -98.5,42.5 + parent: 2 + - uid: 37963 + components: + - type: Transform + pos: -100.5,53.5 + parent: 2 + - uid: 45092 components: - type: Transform pos: 33.5,78.5 - parent: 40203 - - uid: 44704 + parent: 40599 + - uid: 45093 components: - type: Transform pos: 30.5,81.5 - parent: 40203 - - uid: 44705 + parent: 40599 + - uid: 45094 components: - type: Transform pos: 30.5,82.5 - parent: 40203 - - uid: 44706 + parent: 40599 + - uid: 45095 components: - type: Transform pos: 31.5,83.5 - parent: 40203 - - uid: 44707 + parent: 40599 + - uid: 45096 components: - type: Transform pos: 32.5,79.5 - parent: 40203 - - uid: 44708 + parent: 40599 + - uid: 45097 components: - type: Transform pos: 34.5,82.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowTin entities: - - uid: 37538 + - uid: 37964 + components: + - type: Transform + pos: -95.5,52.5 + parent: 2 + - uid: 37965 + components: + - type: Transform + pos: -92.5,55.5 + parent: 2 + - uid: 37966 + components: + - type: Transform + pos: -91.5,56.5 + parent: 2 + - uid: 37967 + components: + - type: Transform + pos: -91.5,55.5 + parent: 2 + - uid: 37968 + components: + - type: Transform + pos: -92.5,54.5 + parent: 2 + - uid: 37969 + components: + - type: Transform + pos: -81.5,64.5 + parent: 2 + - uid: 37970 + components: + - type: Transform + pos: -80.5,64.5 + parent: 2 + - uid: 37971 + components: + - type: Transform + pos: -96.5,52.5 + parent: 2 + - uid: 37972 + components: + - type: Transform + pos: -93.5,55.5 + parent: 2 + - uid: 37973 + components: + - type: Transform + pos: -93.5,54.5 + parent: 2 + - uid: 37974 + components: + - type: Transform + pos: -80.5,63.5 + parent: 2 + - uid: 37975 + components: + - type: Transform + pos: -43.5,72.5 + parent: 2 + - uid: 37976 + components: + - type: Transform + pos: -42.5,73.5 + parent: 2 + - uid: 37977 + components: + - type: Transform + pos: -118.5,33.5 + parent: 2 + - uid: 37978 + components: + - type: Transform + pos: -119.5,34.5 + parent: 2 + - uid: 37979 + components: + - type: Transform + pos: -119.5,33.5 + parent: 2 + - uid: 37980 + components: + - type: Transform + pos: -55.5,40.5 + parent: 2 + - uid: 37981 + components: + - type: Transform + pos: -58.5,41.5 + parent: 2 + - uid: 37982 + components: + - type: Transform + pos: -59.5,42.5 + parent: 2 + - uid: 37983 + components: + - type: Transform + pos: -58.5,42.5 + parent: 2 + - uid: 37984 + components: + - type: Transform + pos: -120.5,34.5 + parent: 2 + - uid: 37985 + components: + - type: Transform + pos: -66.5,-0.5 + parent: 2 + - uid: 37986 + components: + - type: Transform + pos: -66.5,0.5 + parent: 2 + - uid: 37987 + components: + - type: Transform + pos: -67.5,0.5 + parent: 2 + - uid: 37988 components: - type: Transform pos: -19.5,-24.5 parent: 2 - - uid: 37539 + - uid: 37989 components: - type: Transform pos: -18.5,-23.5 parent: 2 - - uid: 37540 + - uid: 37990 components: - type: Transform pos: -37.5,46.5 parent: 2 - - uid: 37541 + - uid: 37991 components: - type: Transform pos: 102.5,-2.5 parent: 2 - - uid: 37542 + - uid: 37992 components: - type: Transform pos: 103.5,-1.5 parent: 2 - - uid: 37543 + - uid: 37993 components: - type: Transform pos: 103.5,-3.5 parent: 2 - - uid: 37544 + - uid: 37994 components: - type: Transform pos: 103.5,-2.5 parent: 2 - - uid: 37545 + - uid: 37995 components: - type: Transform pos: 83.5,23.5 parent: 2 - - uid: 37546 + - uid: 37996 components: - type: Transform pos: 84.5,23.5 parent: 2 - - uid: 37547 + - uid: 37997 components: - type: Transform pos: 104.5,-1.5 parent: 2 - - uid: 37548 + - uid: 37998 components: - type: Transform pos: 96.5,7.5 parent: 2 - - uid: 37549 + - uid: 37999 components: - type: Transform pos: 56.5,-50.5 parent: 2 - - uid: 37550 + - uid: 38000 components: - type: Transform pos: 56.5,-51.5 parent: 2 - - uid: 37551 + - uid: 38001 components: - type: Transform pos: -38.5,44.5 parent: 2 - - uid: 37552 + - uid: 38002 components: - type: Transform pos: -38.5,45.5 parent: 2 - - uid: 37553 + - uid: 38003 components: - type: Transform pos: -38.5,43.5 parent: 2 - - uid: 37554 + - uid: 38004 components: - type: Transform pos: -37.5,44.5 parent: 2 - - uid: 37555 + - uid: 38005 components: - type: Transform pos: -37.5,45.5 parent: 2 - - uid: 37556 + - uid: 38006 components: - type: Transform pos: -16.5,-28.5 parent: 2 - - uid: 37557 + - uid: 38007 components: - type: Transform pos: -22.5,-27.5 parent: 2 - - uid: 37558 + - uid: 38008 components: - type: Transform pos: -22.5,-26.5 parent: 2 - - uid: 37559 + - uid: 38009 components: - type: Transform pos: -23.5,-26.5 parent: 2 - - uid: 37560 + - uid: 38010 components: - type: Transform pos: -36.5,45.5 parent: 2 - - uid: 37561 + - uid: 38011 components: - type: Transform pos: 57.5,-51.5 parent: 2 - - uid: 37562 + - uid: 38012 components: - type: Transform pos: 57.5,-52.5 parent: 2 - - uid: 37563 + - uid: 38013 components: - type: Transform pos: -62.5,-8.5 parent: 2 - - uid: 37564 + - uid: 38014 components: - type: Transform pos: -62.5,-9.5 parent: 2 - - uid: 37565 + - uid: 38015 components: - type: Transform pos: 83.5,10.5 parent: 2 - - uid: 37566 + - uid: 38016 components: - type: Transform pos: -72.5,68.5 parent: 2 - - uid: 37567 + - uid: 38017 components: - type: Transform pos: 84.5,10.5 parent: 2 - - uid: 37568 + - uid: 38018 components: - type: Transform pos: -112.5,35.5 parent: 2 - - uid: 37569 + - uid: 38019 components: - type: Transform pos: -56.5,41.5 parent: 2 - - uid: 37570 + - uid: 38020 components: - type: Transform pos: -56.5,40.5 parent: 2 - - uid: 37571 + - uid: 38021 components: - type: Transform pos: -57.5,41.5 parent: 2 - - uid: 37572 + - uid: 38022 components: - type: Transform pos: -35.5,-59.5 parent: 2 - - uid: 37573 + - uid: 38023 components: - type: Transform pos: -34.5,-59.5 parent: 2 - - uid: 37574 + - uid: 38024 components: - type: Transform pos: 85.5,10.5 parent: 2 - - uid: 37575 + - uid: 38025 components: - type: Transform pos: 84.5,9.5 parent: 2 - - uid: 37576 + - uid: 38026 components: - type: Transform pos: 85.5,9.5 parent: 2 - - uid: 37577 - components: - - type: Transform - pos: -39.5,64.5 - parent: 2 - - uid: 37578 + - uid: 38027 components: - type: Transform pos: -81.5,63.5 parent: 2 - - uid: 37579 + - uid: 38028 components: - type: Transform pos: -80.5,62.5 parent: 2 - - uid: 37580 + - uid: 38029 components: - type: Transform pos: 87.5,-36.5 parent: 2 - - uid: 37581 + - uid: 38030 components: - type: Transform pos: 17.5,-52.5 parent: 2 - - uid: 37582 + - uid: 38031 components: - type: Transform pos: 57.5,-49.5 parent: 2 - - uid: 37583 + - uid: 38032 components: - type: Transform pos: 57.5,-50.5 parent: 2 - - uid: 37584 + - uid: 38033 components: - type: Transform pos: 73.5,-52.5 parent: 2 - - uid: 37585 + - uid: 38034 components: - type: Transform pos: 74.5,-52.5 parent: 2 - - uid: 37586 + - uid: 38035 components: - type: Transform pos: 73.5,-53.5 parent: 2 - - uid: 37587 + - uid: 38036 components: - type: Transform pos: 90.5,-47.5 parent: 2 - - uid: 37588 + - uid: 38037 components: - type: Transform pos: 30.5,41.5 parent: 2 - - uid: 37589 + - uid: 38038 components: - type: Transform pos: 60.5,40.5 parent: 2 - - uid: 37590 + - uid: 38039 components: - type: Transform pos: 58.5,-51.5 parent: 2 - - uid: 37591 + - uid: 38040 components: - type: Transform pos: 29.5,41.5 parent: 2 - - uid: 37592 + - uid: 38041 components: - type: Transform pos: 29.5,42.5 parent: 2 - - uid: 37593 + - uid: 38042 components: - type: Transform pos: 39.5,35.5 parent: 2 - - uid: 37594 + - uid: 38043 components: - type: Transform pos: 40.5,33.5 parent: 2 - - uid: 37595 + - uid: 38044 components: - type: Transform pos: 40.5,34.5 parent: 2 - - uid: 37596 + - uid: 38045 components: - type: Transform pos: 39.5,34.5 parent: 2 - - uid: 37597 + - uid: 38046 components: - type: Transform pos: 88.5,-35.5 parent: 2 - - uid: 37598 + - uid: 38047 components: - type: Transform pos: 46.5,44.5 parent: 2 - - uid: 37599 + - uid: 38048 components: - type: Transform pos: 18.5,-52.5 parent: 2 - - uid: 37600 + - uid: 38049 components: - type: Transform pos: 19.5,-53.5 parent: 2 - - uid: 37601 + - uid: 38050 components: - type: Transform pos: 19.5,-52.5 parent: 2 - - uid: 37602 + - uid: 38051 components: - type: Transform pos: 88.5,-37.5 parent: 2 - - uid: 37603 + - uid: 38052 components: - type: Transform pos: 88.5,-36.5 parent: 2 - - uid: 37604 + - uid: 38053 components: - type: Transform pos: 73.5,-51.5 parent: 2 - - uid: 37605 - components: - - type: Transform - pos: 34.5,-60.5 - parent: 2 - - uid: 37606 + - uid: 38054 components: - type: Transform pos: 33.5,-61.5 parent: 2 - - uid: 37607 + - uid: 38055 components: - type: Transform pos: 33.5,-60.5 parent: 2 - - uid: 37608 + - uid: 38056 components: - type: Transform pos: 60.5,39.5 parent: 2 - - uid: 37609 + - uid: 38057 components: - type: Transform pos: 45.5,45.5 parent: 2 - - uid: 37610 + - uid: 38058 components: - type: Transform pos: 46.5,45.5 parent: 2 - - uid: 37611 + - uid: 38059 components: - type: Transform pos: -35.5,-60.5 parent: 2 - - uid: 37612 + - uid: 38060 components: - type: Transform pos: 14.5,48.5 parent: 2 - - uid: 37613 + - uid: 38061 components: - type: Transform pos: 91.5,-46.5 parent: 2 - - uid: 37614 + - uid: 38062 components: - type: Transform pos: 16.5,67.5 parent: 2 - - uid: 37615 + - uid: 38063 components: - type: Transform pos: 17.5,68.5 parent: 2 - - uid: 37616 + - uid: 38064 components: - type: Transform pos: 17.5,67.5 parent: 2 - - uid: 37617 + - uid: 38065 components: - type: Transform pos: 91.5,-5.5 parent: 2 - - uid: 37618 + - uid: 38066 components: - type: Transform pos: 91.5,-4.5 parent: 2 - - uid: 37619 + - uid: 38067 components: - type: Transform pos: 92.5,-5.5 parent: 2 - - uid: 37620 + - uid: 38068 components: - type: Transform pos: 92.5,-4.5 parent: 2 - - uid: 37621 + - uid: 38069 components: - type: Transform pos: 86.5,7.5 parent: 2 - - uid: 37622 + - uid: 38070 components: - type: Transform pos: 86.5,8.5 parent: 2 - - uid: 37623 + - uid: 38071 components: - type: Transform pos: 85.5,7.5 parent: 2 - - uid: 37624 + - uid: 38072 components: - type: Transform pos: 85.5,8.5 parent: 2 - - uid: 37625 + - uid: 38073 components: - type: Transform pos: 91.5,-3.5 parent: 2 - - uid: 37626 + - uid: 38074 components: - type: Transform pos: -60.5,7.5 parent: 2 - - uid: 37627 + - uid: 38075 components: - type: Transform pos: -60.5,6.5 parent: 2 - - uid: 37628 + - uid: 38076 components: - type: Transform pos: -67.5,2.5 parent: 2 - - uid: 37629 + - uid: 38077 components: - type: Transform pos: -67.5,1.5 parent: 2 - - uid: 37630 + - uid: 38078 components: - type: Transform pos: -68.5,1.5 parent: 2 - - uid: 37631 + - uid: 38079 components: - type: Transform pos: -59.5,8.5 parent: 2 - - uid: 37632 + - uid: 38080 components: - type: Transform pos: -71.5,68.5 parent: 2 - - uid: 37633 + - uid: 38081 components: - type: Transform pos: -70.5,68.5 parent: 2 - - uid: 37634 + - uid: 38082 components: - type: Transform pos: -72.5,-11.5 parent: 2 - - uid: 37635 + - uid: 38083 components: - type: Transform pos: -72.5,-12.5 parent: 2 - - uid: 37636 + - uid: 38084 components: - type: Transform pos: -71.5,-11.5 parent: 2 - - uid: 37637 + - uid: 38085 components: - type: Transform pos: -71.5,-12.5 parent: 2 - - uid: 37638 + - uid: 38086 components: - type: Transform pos: -70.5,-12.5 parent: 2 - - uid: 37639 + - uid: 38087 components: - type: Transform pos: -69.5,-12.5 parent: 2 - - uid: 37640 + - uid: 38088 components: - type: Transform pos: -69.5,-13.5 parent: 2 - - uid: 37641 + - uid: 38089 components: - type: Transform pos: -70.5,-13.5 parent: 2 - - uid: 37642 + - uid: 38090 components: - type: Transform pos: -71.5,-13.5 parent: 2 - - uid: 37643 + - uid: 38091 components: - type: Transform pos: -59.5,7.5 parent: 2 - - uid: 37644 + - uid: 38092 components: - type: Transform pos: 79.5,27.5 parent: 2 - - uid: 37645 + - uid: 38093 components: - type: Transform pos: 81.5,26.5 parent: 2 - - uid: 37646 + - uid: 38094 components: - type: Transform pos: 80.5,26.5 parent: 2 - - uid: 37647 + - uid: 38095 components: - type: Transform pos: 81.5,27.5 parent: 2 - - uid: 37648 + - uid: 38096 components: - type: Transform pos: 80.5,27.5 parent: 2 - - uid: 37649 + - uid: 38097 components: - type: Transform pos: 9.5,-63.5 parent: 2 - - uid: 37650 + - uid: 38098 components: - type: Transform pos: 9.5,-62.5 parent: 2 - - uid: 37651 + - uid: 38099 components: - type: Transform pos: 10.5,-61.5 parent: 2 - - uid: 37652 + - uid: 38100 components: - type: Transform pos: -56.5,-38.5 parent: 2 - - uid: 37653 + - uid: 38101 components: - type: Transform pos: -55.5,-39.5 parent: 2 - - uid: 37654 + - uid: 38102 components: - type: Transform pos: -55.5,-38.5 parent: 2 - - uid: 37655 + - uid: 38103 components: - type: Transform pos: -55.5,-37.5 parent: 2 - - uid: 37656 + - uid: 38104 components: - type: Transform pos: -44.5,-51.5 parent: 2 - - uid: 37657 + - uid: 38105 components: - type: Transform pos: -45.5,-51.5 parent: 2 - - uid: 37658 + - uid: 38106 components: - type: Transform pos: -46.5,-52.5 parent: 2 - - uid: 37659 + - uid: 38107 components: - type: Transform pos: -45.5,-52.5 parent: 2 - - uid: 37660 + - uid: 38108 components: - type: Transform pos: -44.5,-52.5 parent: 2 - - uid: 37661 + - uid: 38109 components: - type: Transform pos: -43.5,-52.5 parent: 2 - - uid: 37662 + - uid: 38110 components: - type: Transform pos: -20.5,62.5 parent: 2 - - uid: 37663 + - uid: 38111 components: - type: Transform pos: -20.5,63.5 parent: 2 - - uid: 37664 + - uid: 38112 components: - type: Transform pos: -56.5,-19.5 parent: 2 - - uid: 37665 + - uid: 38113 components: - type: Transform pos: -57.5,-18.5 parent: 2 - - uid: 37666 + - uid: 38114 components: - type: Transform pos: -58.5,-18.5 parent: 2 - - uid: 37667 + - uid: 38115 components: - type: Transform pos: -57.5,-19.5 parent: 2 - - uid: 37668 + - uid: 38116 components: - type: Transform pos: -15.5,-72.5 parent: 2 - - uid: 37669 + - uid: 38117 components: - type: Transform pos: -14.5,-72.5 parent: 2 - - uid: 37670 + - uid: 38118 components: - type: Transform pos: -106.5,37.5 parent: 2 - - uid: 37671 + - uid: 38119 components: - type: Transform pos: -105.5,38.5 parent: 2 - - uid: 37672 + - uid: 38120 components: - type: Transform pos: -104.5,37.5 parent: 2 - - uid: 37673 + - uid: 38121 components: - type: Transform pos: -110.5,35.5 parent: 2 - - uid: 37674 + - uid: 38122 components: - type: Transform pos: -111.5,35.5 parent: 2 - - uid: 37675 + - uid: 38123 components: - type: Transform pos: -122.5,23.5 parent: 2 - - uid: 37676 + - uid: 38124 components: - type: Transform pos: -123.5,22.5 parent: 2 - - uid: 37677 + - uid: 38125 components: - type: Transform pos: -105.5,-17.5 parent: 2 - - uid: 37678 + - uid: 38126 components: - type: Transform pos: -105.5,-18.5 parent: 2 - - uid: 37679 + - uid: 38127 components: - type: Transform pos: -106.5,-18.5 parent: 2 - - uid: 37680 + - uid: 38128 components: - type: Transform pos: -107.5,-18.5 parent: 2 - - uid: 37681 + - uid: 38129 components: - type: Transform pos: -126.5,-20.5 parent: 2 - - uid: 37682 + - uid: 38130 components: - type: Transform pos: -19.5,63.5 parent: 2 - - uid: 37683 + - uid: 38131 components: - type: Transform pos: -77.5,-25.5 parent: 2 - - uid: 37684 + - uid: 38132 components: - type: Transform pos: -78.5,-25.5 parent: 2 - - uid: 37685 + - uid: 38133 components: - type: Transform pos: -78.5,-24.5 parent: 2 - - uid: 37686 + - uid: 38134 components: - type: Transform pos: -78.5,-23.5 parent: 2 - - uid: 37687 + - uid: 38135 components: - type: Transform pos: -79.5,-23.5 parent: 2 - - uid: 37688 + - uid: 38136 components: - type: Transform pos: -69.5,69.5 parent: 2 - - uid: 37689 + - uid: 38137 components: - type: Transform pos: 95.5,9.5 parent: 2 - - uid: 37690 + - uid: 38138 components: - type: Transform pos: -71.5,69.5 parent: 2 - - uid: 37691 + - uid: 38139 components: - type: Transform pos: -70.5,69.5 parent: 2 - - uid: 37692 + - uid: 38140 components: - type: Transform pos: 95.5,7.5 parent: 2 - - uid: 37693 + - uid: 38141 components: - type: Transform pos: 82.5,24.5 parent: 2 - - uid: 37694 + - uid: 38142 components: - type: Transform pos: 83.5,24.5 parent: 2 - - uid: 37695 + - uid: 38143 components: - type: Transform pos: -127.5,-20.5 parent: 2 - - uid: 37696 + - uid: 38144 components: - type: Transform pos: -127.5,-19.5 parent: 2 - - uid: 37697 + - uid: 38145 components: - type: Transform pos: -106.5,38.5 parent: 2 - - uid: 37698 + - uid: 38146 components: - type: Transform pos: 94.5,8.5 parent: 2 - - uid: 37699 + - uid: 38147 components: - type: Transform pos: 95.5,8.5 parent: 2 - - uid: 37700 + - uid: 38148 components: - type: Transform pos: -95.5,54.5 parent: 2 - - uid: 37701 + - uid: 38149 components: - type: Transform pos: -94.5,54.5 parent: 2 - - uid: 37702 + - uid: 38150 components: - type: Transform pos: -93.5,53.5 parent: 2 - - uid: 37703 + - uid: 38151 components: - type: Transform pos: -94.5,53.5 parent: 2 - - uid: 37704 - components: - - type: Transform - pos: -94.5,52.5 - parent: 2 - - uid: 37705 + - uid: 38152 components: - type: Transform pos: 14.5,47.5 parent: 2 - - uid: 37706 + - uid: 38153 components: - type: Transform pos: 15.5,47.5 parent: 2 - - uid: 37707 + - uid: 38154 components: - type: Transform pos: 59.5,40.5 parent: 2 - - uid: 37708 + - uid: 38155 components: - type: Transform pos: 3.5,70.5 parent: 2 - - uid: 37709 + - uid: 38156 components: - type: Transform pos: 4.5,70.5 parent: 2 - - uid: 37710 + - uid: 38157 components: - type: Transform pos: 5.5,70.5 parent: 2 - - uid: 37711 + - uid: 38158 components: - type: Transform pos: 4.5,71.5 parent: 2 - - uid: 37712 + - uid: 38159 components: - type: Transform pos: 5.5,71.5 parent: 2 - - uid: 37713 + - uid: 38160 components: - type: Transform pos: -20.5,-24.5 parent: 2 - - uid: 37714 + - uid: 38161 components: - type: Transform pos: -19.5,-23.5 parent: 2 - - uid: 37715 + - uid: 38162 components: - type: Transform pos: 40.5,41.5 parent: 2 - - uid: 37716 + - uid: 38163 components: - type: Transform pos: 41.5,41.5 parent: 2 - - uid: 37717 + - uid: 38164 components: - type: Transform pos: 48.5,-37.5 parent: 2 - - uid: 37718 + - uid: 38165 components: - type: Transform pos: 48.5,-38.5 parent: 2 - - uid: 44709 + - uid: 38166 + components: + - type: Transform + pos: -119.5,35.5 + parent: 2 + - uid: 38167 + components: + - type: Transform + pos: -95.5,53.5 + parent: 2 + - uid: 45098 components: - type: Transform pos: 22.5,43.5 - parent: 40203 - - uid: 44710 + parent: 40599 + - uid: 45099 components: - type: Transform pos: 22.5,42.5 - parent: 40203 - - uid: 44711 + parent: 40599 + - uid: 45100 components: - type: Transform pos: 22.5,41.5 - parent: 40203 - - uid: 44712 + parent: 40599 + - uid: 45101 components: - type: Transform pos: 23.5,44.5 - parent: 40203 - - uid: 44713 + parent: 40599 + - uid: 45102 components: - type: Transform pos: 23.5,43.5 - parent: 40203 - - uid: 44714 + parent: 40599 + - uid: 45103 components: - type: Transform pos: 23.5,41.5 - parent: 40203 - - uid: 44715 + parent: 40599 + - uid: 45104 components: - type: Transform pos: 24.5,41.5 - parent: 40203 - - uid: 44716 + parent: 40599 + - uid: 45105 components: - type: Transform pos: 24.5,39.5 - parent: 40203 - - uid: 44717 + parent: 40599 + - uid: 45106 components: - type: Transform pos: 80.5,54.5 - parent: 40203 - - uid: 44718 + parent: 40599 + - uid: 45107 components: - type: Transform pos: 81.5,53.5 - parent: 40203 - - uid: 44719 + parent: 40599 + - uid: 45108 components: - type: Transform pos: 81.5,51.5 - parent: 40203 - - uid: 44720 + parent: 40599 + - uid: 45109 components: - type: Transform pos: 81.5,50.5 - parent: 40203 - - uid: 44721 + parent: 40599 + - uid: 45110 components: - type: Transform pos: 82.5,49.5 - parent: 40203 + parent: 40599 - proto: WallRockSnowUranium entities: - - uid: 37719 + - uid: 38168 + components: + - type: Transform + pos: 38.5,49.5 + parent: 2 + - uid: 38169 + components: + - type: Transform + pos: -55.5,-29.5 + parent: 2 + - uid: 38170 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 2 + - uid: 38171 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 2 + - uid: 38172 + components: + - type: Transform + pos: 37.5,49.5 + parent: 2 + - uid: 38173 + components: + - type: Transform + pos: 36.5,50.5 + parent: 2 + - uid: 38174 components: - type: Transform pos: -33.5,-24.5 parent: 2 - - uid: 37720 + - uid: 38175 components: - type: Transform pos: -14.5,64.5 parent: 2 - - uid: 37721 + - uid: 38176 components: - type: Transform pos: -15.5,65.5 parent: 2 - - uid: 37722 + - uid: 38177 components: - type: Transform pos: 79.5,20.5 parent: 2 - - uid: 37723 + - uid: 38178 components: - type: Transform pos: 79.5,19.5 parent: 2 - - uid: 37724 + - uid: 38179 components: - type: Transform pos: 89.5,11.5 parent: 2 - - uid: 37725 + - uid: 38180 components: - type: Transform pos: 90.5,11.5 parent: 2 - - uid: 37726 + - uid: 38181 components: - type: Transform pos: 104.5,2.5 parent: 2 - - uid: 37727 + - uid: 38182 components: - type: Transform pos: 104.5,1.5 parent: 2 - - uid: 37728 + - uid: 38183 components: - type: Transform pos: 105.5,0.5 parent: 2 - - uid: 37729 + - uid: 38184 components: - type: Transform pos: 105.5,1.5 parent: 2 - - uid: 37730 + - uid: 38185 components: - type: Transform pos: 80.5,19.5 parent: 2 - - uid: 37731 - components: - - type: Transform - pos: -109.5,43.5 - parent: 2 - - uid: 37732 + - uid: 38186 components: - type: Transform pos: 50.5,34.5 parent: 2 - - uid: 37733 + - uid: 38187 components: - type: Transform pos: -63.5,-23.5 parent: 2 - - uid: 37734 + - uid: 38188 components: - type: Transform pos: 49.5,34.5 parent: 2 - - uid: 37735 + - uid: 38189 components: - type: Transform pos: 50.5,35.5 parent: 2 - - uid: 37736 - components: - - type: Transform - pos: -34.5,64.5 - parent: 2 - - uid: 37737 + - uid: 38190 components: - type: Transform pos: -34.5,-25.5 parent: 2 - - uid: 37738 + - uid: 38191 components: - type: Transform pos: -61.5,-11.5 parent: 2 - - uid: 37739 + - uid: 38192 components: - type: Transform pos: -33.5,-25.5 parent: 2 - - uid: 37740 + - uid: 38193 components: - type: Transform pos: -33.5,-26.5 parent: 2 - - uid: 37741 + - uid: 38194 components: - type: Transform pos: -79.5,49.5 parent: 2 - - uid: 37742 + - uid: 38195 components: - type: Transform pos: -79.5,50.5 parent: 2 - - uid: 37743 + - uid: 38196 components: - type: Transform pos: -80.5,50.5 parent: 2 - - uid: 37744 + - uid: 38197 components: - type: Transform pos: -86.5,1.5 parent: 2 - - uid: 37745 + - uid: 38198 components: - type: Transform pos: -85.5,1.5 parent: 2 - - uid: 37746 + - uid: 38199 components: - type: Transform pos: -85.5,0.5 parent: 2 - - uid: 37747 + - uid: 38200 components: - type: Transform pos: -44.5,67.5 parent: 2 - - uid: 37748 + - uid: 38201 components: - type: Transform pos: -44.5,68.5 parent: 2 - - uid: 37749 + - uid: 38202 components: - type: Transform pos: -45.5,68.5 parent: 2 - - uid: 37750 + - uid: 38203 components: - type: Transform pos: -88.5,53.5 parent: 2 - - uid: 37751 + - uid: 38204 components: - type: Transform pos: -88.5,52.5 parent: 2 - - uid: 37752 + - uid: 38205 components: - type: Transform pos: 34.5,50.5 parent: 2 - - uid: 37753 + - uid: 38206 components: - type: Transform pos: 50.5,33.5 parent: 2 - - uid: 37754 + - uid: 38207 components: - type: Transform pos: -26.5,-35.5 parent: 2 - - uid: 37755 - components: - - type: Transform - pos: -33.5,65.5 - parent: 2 - - uid: 37756 - components: - - type: Transform - pos: -33.5,64.5 - parent: 2 - - uid: 37757 + - uid: 38208 components: - type: Transform pos: -26.5,-34.5 parent: 2 - - uid: 37758 + - uid: 38209 components: - type: Transform pos: 14.5,-45.5 parent: 2 - - uid: 37759 + - uid: 38210 components: - type: Transform pos: 39.5,63.5 parent: 2 - - uid: 37760 + - uid: 38211 components: - type: Transform pos: 39.5,62.5 parent: 2 - - uid: 37761 + - uid: 38212 components: - type: Transform pos: 14.5,-44.5 parent: 2 - - uid: 37762 + - uid: 38213 components: - type: Transform pos: 86.5,-33.5 parent: 2 - - uid: 37763 + - uid: 38214 components: - type: Transform pos: 34.5,49.5 parent: 2 - - uid: 37764 + - uid: 38215 components: - type: Transform pos: 35.5,49.5 parent: 2 - - uid: 37765 + - uid: 38216 components: - type: Transform pos: 44.5,41.5 parent: 2 - - uid: 37766 + - uid: 38217 components: - type: Transform pos: 10.5,-40.5 parent: 2 - - uid: 37767 + - uid: 38218 components: - type: Transform pos: 85.5,-33.5 parent: 2 - - uid: 37768 + - uid: 38219 components: - type: Transform pos: 62.5,20.5 parent: 2 - - uid: 37769 + - uid: 38220 components: - type: Transform pos: 63.5,21.5 parent: 2 - - uid: 37770 + - uid: 38221 components: - type: Transform pos: 38.5,63.5 parent: 2 - - uid: 37771 + - uid: 38222 components: - type: Transform pos: 73.5,30.5 parent: 2 - - uid: 37772 + - uid: 38223 components: - type: Transform pos: -59.5,1.5 parent: 2 - - uid: 37773 + - uid: 38224 components: - type: Transform pos: -59.5,0.5 parent: 2 - - uid: 37774 + - uid: 38225 components: - type: Transform pos: -59.5,-0.5 parent: 2 - - uid: 37775 + - uid: 38226 components: - type: Transform pos: -58.5,-1.5 parent: 2 - - uid: 37776 + - uid: 38227 components: - type: Transform pos: -56.5,-13.5 parent: 2 - - uid: 37777 + - uid: 38228 components: - type: Transform pos: -56.5,-12.5 parent: 2 - - uid: 37778 + - uid: 38229 components: - type: Transform pos: -55.5,-12.5 parent: 2 - - uid: 37779 + - uid: 38230 components: - type: Transform pos: -23.5,-70.5 parent: 2 - - uid: 37780 + - uid: 38231 components: - type: Transform pos: -23.5,-69.5 parent: 2 - - uid: 37781 + - uid: 38232 components: - type: Transform pos: -24.5,-69.5 parent: 2 - - uid: 37782 + - uid: 38233 components: - type: Transform pos: -27.5,-35.5 parent: 2 - - uid: 37783 + - uid: 38234 components: - type: Transform pos: -27.5,-34.5 parent: 2 - - uid: 37784 + - uid: 38235 components: - type: Transform pos: -28.5,-35.5 parent: 2 - - uid: 37785 + - uid: 38236 components: - type: Transform pos: -56.5,-46.5 parent: 2 - - uid: 37786 + - uid: 38237 components: - type: Transform pos: -57.5,-45.5 parent: 2 - - uid: 37787 + - uid: 38238 components: - type: Transform pos: -53.5,-31.5 parent: 2 - - uid: 37788 + - uid: 38239 components: - type: Transform pos: -48.5,-51.5 parent: 2 - - uid: 37789 + - uid: 38240 components: - type: Transform pos: 7.5,53.5 parent: 2 - - uid: 37790 + - uid: 38241 components: - type: Transform pos: -142.5,6.5 parent: 2 - - uid: 37791 + - uid: 38242 components: - type: Transform pos: -142.5,5.5 parent: 2 - - uid: 37792 + - uid: 38243 components: - type: Transform pos: -143.5,6.5 parent: 2 - - uid: 37793 + - uid: 38244 components: - type: Transform pos: -143.5,5.5 parent: 2 - - uid: 37794 + - uid: 38245 components: - type: Transform pos: -143.5,4.5 parent: 2 - - uid: 37795 + - uid: 38246 components: - type: Transform pos: -143.5,-4.5 parent: 2 - - uid: 37796 + - uid: 38247 components: - type: Transform pos: -144.5,-3.5 parent: 2 - - uid: 37797 + - uid: 38248 components: - type: Transform pos: -144.5,-4.5 parent: 2 - - uid: 37798 + - uid: 38249 components: - type: Transform pos: -134.5,-8.5 parent: 2 - - uid: 37799 + - uid: 38250 components: - type: Transform pos: -133.5,-8.5 parent: 2 - - uid: 37800 + - uid: 38251 components: - type: Transform pos: -133.5,-9.5 parent: 2 - - uid: 37801 + - uid: 38252 components: - type: Transform pos: -94.5,-0.5 parent: 2 - - uid: 37802 + - uid: 38253 components: - type: Transform pos: -93.5,-1.5 parent: 2 - - uid: 37803 + - uid: 38254 components: - type: Transform pos: -93.5,-0.5 parent: 2 - - uid: 37804 + - uid: 38255 components: - type: Transform pos: -94.5,-1.5 parent: 2 - - uid: 37805 + - uid: 38256 components: - type: Transform pos: -130.5,-17.5 parent: 2 - - uid: 37806 + - uid: 38257 components: - type: Transform pos: -130.5,-18.5 parent: 2 - - uid: 37807 + - uid: 38258 components: - type: Transform pos: -129.5,-18.5 parent: 2 - - uid: 37808 + - uid: 38259 components: - type: Transform pos: -116.5,-17.5 parent: 2 - - uid: 37809 + - uid: 38260 components: - type: Transform pos: -115.5,-17.5 parent: 2 - - uid: 37810 + - uid: 38261 components: - type: Transform pos: -64.5,-22.5 parent: 2 - - uid: 37811 + - uid: 38262 components: - type: Transform pos: -63.5,-22.5 parent: 2 - - uid: 37812 + - uid: 38263 components: - type: Transform pos: 85.5,-32.5 parent: 2 - - uid: 37813 - components: - - type: Transform - pos: -108.5,43.5 - parent: 2 - - uid: 37814 - components: - - type: Transform - pos: -108.5,44.5 - parent: 2 - - uid: 37815 + - uid: 38264 components: - type: Transform pos: -87.5,52.5 parent: 2 - - uid: 37816 + - uid: 38265 components: - type: Transform pos: -54.5,-30.5 parent: 2 - - uid: 37817 + - uid: 38266 components: - type: Transform pos: -54.5,-31.5 parent: 2 - - uid: 37818 + - uid: 38267 components: - type: Transform pos: -60.5,12.5 parent: 2 - - uid: 37819 + - uid: 38268 components: - type: Transform pos: 54.5,-47.5 parent: 2 - - uid: 37820 + - uid: 38269 components: - type: Transform pos: 32.5,-60.5 parent: 2 - - uid: 37821 + - uid: 38270 components: - type: Transform pos: -40.5,-49.5 parent: 2 - - uid: 37822 + - uid: 38271 components: - type: Transform pos: -75.5,66.5 parent: 2 - - uid: 37823 + - uid: 38272 components: - type: Transform pos: -94.5,-2.5 parent: 2 - - uid: 37824 + - uid: 38273 components: - type: Transform pos: -95.5,-1.5 parent: 2 - - uid: 37825 + - uid: 38274 components: - type: Transform pos: -84.5,-18.5 parent: 2 - - uid: 37826 + - uid: 38275 components: - type: Transform pos: -83.5,-19.5 parent: 2 - - uid: 37827 - components: - - type: Transform - pos: -84.5,-19.5 - parent: 2 - - uid: 37828 - components: - - type: Transform - pos: -85.5,-18.5 - parent: 2 - - uid: 44722 - components: - - type: Transform - pos: 25.5,73.5 - parent: 40203 - - uid: 44723 - components: - - type: Transform - pos: 26.5,75.5 - parent: 40203 - - uid: 44724 - components: - - type: Transform - pos: 26.5,74.5 - parent: 40203 - - uid: 44725 - components: - - type: Transform - pos: 28.5,75.5 - parent: 40203 - - uid: 44726 - components: - - type: Transform - pos: 27.5,74.5 - parent: 40203 - - uid: 44727 - components: - - type: Transform - pos: 47.5,88.5 - parent: 40203 - - uid: 44728 - components: - - type: Transform - pos: 55.5,88.5 - parent: 40203 - - uid: 44729 - components: - - type: Transform - pos: 53.5,86.5 - parent: 40203 - - uid: 44730 - components: - - type: Transform - pos: 52.5,87.5 - parent: 40203 - - uid: 44731 - components: - - type: Transform - pos: 53.5,87.5 - parent: 40203 - - uid: 44732 - components: - - type: Transform - pos: 48.5,87.5 - parent: 40203 - - uid: 44733 - components: - - type: Transform - pos: 50.5,86.5 - parent: 40203 - - uid: 44734 - components: - - type: Transform - pos: 51.5,83.5 - parent: 40203 - - uid: 44735 - components: - - type: Transform - pos: 51.5,84.5 - parent: 40203 - - uid: 44736 - components: - - type: Transform - pos: 51.5,85.5 - parent: 40203 - - uid: 44737 - components: - - type: Transform - pos: 51.5,87.5 - parent: 40203 - - uid: 44738 - components: - - type: Transform - pos: 59.5,44.5 - parent: 40203 - - uid: 44739 - components: - - type: Transform - pos: 60.5,44.5 - parent: 40203 -- proto: WallRockUranium - entities: - - uid: 37829 + - uid: 38276 components: - type: Transform - pos: -49.5,50.5 + pos: -84.5,-19.5 parent: 2 - - uid: 37830 + - uid: 38277 components: - type: Transform - pos: -49.5,49.5 + pos: -85.5,-18.5 parent: 2 -- proto: WallSnowCobblebrick - entities: - - uid: 37831 + - uid: 45111 components: - type: Transform - pos: -89.5,66.5 - parent: 2 - - uid: 37832 + pos: 25.5,73.5 + parent: 40599 + - uid: 45112 components: - type: Transform - pos: -88.5,66.5 - parent: 2 - - uid: 37833 + pos: 26.5,75.5 + parent: 40599 + - uid: 45113 components: - type: Transform - pos: -85.5,65.5 - parent: 2 - - uid: 37834 + pos: 26.5,74.5 + parent: 40599 + - uid: 45114 components: - type: Transform - pos: -90.5,61.5 - parent: 2 - - uid: 37835 + pos: 28.5,75.5 + parent: 40599 + - uid: 45115 components: - type: Transform - pos: -84.5,61.5 - parent: 2 - - uid: 37836 + pos: 27.5,74.5 + parent: 40599 + - uid: 45116 components: - type: Transform - pos: -84.5,62.5 - parent: 2 - - uid: 37837 + pos: 47.5,88.5 + parent: 40599 + - uid: 45117 components: - type: Transform - pos: -84.5,64.5 - parent: 2 - - uid: 37838 + pos: 55.5,88.5 + parent: 40599 + - uid: 45118 components: - type: Transform - pos: -89.5,61.5 - parent: 2 - - uid: 37839 + pos: 53.5,86.5 + parent: 40599 + - uid: 45119 components: - type: Transform - pos: -85.5,68.5 - parent: 2 - - uid: 37840 + pos: 52.5,87.5 + parent: 40599 + - uid: 45120 components: - type: Transform - pos: -89.5,65.5 - parent: 2 - - uid: 37841 + pos: 53.5,87.5 + parent: 40599 + - uid: 45121 components: - type: Transform - pos: -90.5,62.5 - parent: 2 - - uid: 37842 + pos: 48.5,87.5 + parent: 40599 + - uid: 45122 components: - type: Transform - pos: -85.5,66.5 - parent: 2 - - uid: 37843 + pos: 50.5,86.5 + parent: 40599 + - uid: 45123 components: - type: Transform - pos: -90.5,64.5 - parent: 2 - - uid: 37844 + pos: 51.5,83.5 + parent: 40599 + - uid: 45124 components: - type: Transform - pos: -84.5,65.5 - parent: 2 - - uid: 37845 + pos: 51.5,84.5 + parent: 40599 + - uid: 45125 components: - type: Transform - pos: -85.5,61.5 - parent: 2 - - uid: 37846 + pos: 51.5,85.5 + parent: 40599 + - uid: 45126 components: - type: Transform - pos: -85.5,67.5 - parent: 2 - - uid: 37847 + pos: 51.5,87.5 + parent: 40599 + - uid: 45127 components: - type: Transform - pos: -86.5,68.5 + pos: 59.5,44.5 + parent: 40599 + - uid: 45128 + components: + - type: Transform + pos: 60.5,44.5 + parent: 40599 +- proto: WallRockTin + entities: + - uid: 38278 + components: + - type: Transform + pos: -46.5,50.5 parent: 2 - - uid: 37848 + - uid: 38279 components: - type: Transform - pos: -87.5,68.5 + pos: -48.5,51.5 parent: 2 - - uid: 37849 + - uid: 38280 components: - type: Transform - pos: -90.5,29.5 + pos: -47.5,51.5 parent: 2 - - uid: 37850 +- proto: WallRockUranium + entities: + - uid: 38281 components: - type: Transform - pos: -92.5,25.5 + pos: -49.5,50.5 parent: 2 - - uid: 37851 + - uid: 38282 components: - type: Transform - pos: -92.5,26.5 + pos: -49.5,49.5 parent: 2 - - uid: 37852 +- proto: WallSnowCobblebrick + entities: + - uid: 38283 components: - type: Transform - pos: -88.5,68.5 + pos: -90.5,29.5 parent: 2 - - uid: 37853 + - uid: 38284 components: - type: Transform - pos: -87.5,66.5 + pos: -92.5,25.5 parent: 2 - - uid: 37854 + - uid: 38285 components: - type: Transform - pos: -90.5,65.5 + pos: -92.5,26.5 parent: 2 - - uid: 37855 + - uid: 38286 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305425,7 +313920,7 @@ entities: - type: Transform pos: -13.5,71.5 parent: 2 - - uid: 37856 + - uid: 38287 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305433,7 +313928,7 @@ entities: - type: Transform pos: -12.5,71.5 parent: 2 - - uid: 37857 + - uid: 38288 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305441,7 +313936,7 @@ entities: - type: Transform pos: -14.5,69.5 parent: 2 - - uid: 37858 + - uid: 38289 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305449,7 +313944,7 @@ entities: - type: Transform pos: -14.5,68.5 parent: 2 - - uid: 37859 + - uid: 38290 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305457,7 +313952,7 @@ entities: - type: Transform pos: -14.5,70.5 parent: 2 - - uid: 37860 + - uid: 38291 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305465,7 +313960,7 @@ entities: - type: Transform pos: -10.5,72.5 parent: 2 - - uid: 37861 + - uid: 38292 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305473,7 +313968,7 @@ entities: - type: Transform pos: -14.5,71.5 parent: 2 - - uid: 37862 + - uid: 38293 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305481,7 +313976,7 @@ entities: - type: Transform pos: -13.5,67.5 parent: 2 - - uid: 37863 + - uid: 38294 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305489,7 +313984,7 @@ entities: - type: Transform pos: -14.5,67.5 parent: 2 - - uid: 37864 + - uid: 38295 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305497,7 +313992,7 @@ entities: - type: Transform pos: -11.5,67.5 parent: 2 - - uid: 37865 + - uid: 38296 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305505,7 +314000,7 @@ entities: - type: Transform pos: -12.5,67.5 parent: 2 - - uid: 37866 + - uid: 38297 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305513,7 +314008,7 @@ entities: - type: Transform pos: -10.5,73.5 parent: 2 - - uid: 37867 + - uid: 38298 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305521,7 +314016,7 @@ entities: - type: Transform pos: -6.5,73.5 parent: 2 - - uid: 37868 + - uid: 38299 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305529,7 +314024,7 @@ entities: - type: Transform pos: -6.5,72.5 parent: 2 - - uid: 37869 + - uid: 38300 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305538,7 +314033,7 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,74.5 parent: 2 - - uid: 37870 + - uid: 38301 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305547,7 +314042,7 @@ entities: rot: -1.5707963267948966 rad pos: -10.5,75.5 parent: 2 - - uid: 37871 + - uid: 38302 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305556,7 +314051,7 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,75.5 parent: 2 - - uid: 37872 + - uid: 38303 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305565,7 +314060,7 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,75.5 parent: 2 - - uid: 37873 + - uid: 38304 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305574,7 +314069,7 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,75.5 parent: 2 - - uid: 37874 + - uid: 38305 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305583,7 +314078,7 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,75.5 parent: 2 - - uid: 37875 + - uid: 38306 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305592,7 +314087,7 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,74.5 parent: 2 - - uid: 37876 + - uid: 38307 components: - type: MetaData desc: Можно биться головой об стенку без вреда для здоровья. @@ -305602,9317 +314097,9700 @@ entities: parent: 2 - proto: WallSolid entities: - - uid: 37877 + - uid: 38308 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,42.5 + pos: 53.5,-17.5 parent: 2 - - uid: 37878 + - uid: 38309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,41.5 + rot: -1.5707963267948966 rad + pos: 59.5,-18.5 parent: 2 - - uid: 37879 + - uid: 38310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,43.5 + rot: -1.5707963267948966 rad + pos: 59.5,-16.5 parent: 2 - - uid: 37880 + - uid: 38311 components: - type: Transform - pos: -29.5,44.5 + rot: -1.5707963267948966 rad + pos: 59.5,-17.5 parent: 2 - - uid: 37881 + - uid: 38312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,42.5 + rot: -1.5707963267948966 rad + pos: 59.5,-15.5 parent: 2 - - uid: 37882 + - uid: 38313 components: - type: Transform - pos: -28.5,44.5 + rot: 1.5707963267948966 rad + pos: -103.5,40.5 parent: 2 - - uid: 37883 + - uid: 38314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,41.5 + rot: 1.5707963267948966 rad + pos: -103.5,44.5 parent: 2 - - uid: 37884 + - uid: 38315 components: - type: Transform - pos: -78.5,11.5 + pos: -106.5,40.5 parent: 2 - - uid: 37885 + - uid: 38316 components: - type: Transform - pos: -15.5,20.5 + pos: -108.5,40.5 parent: 2 - - uid: 37886 + - uid: 38317 components: - type: Transform - pos: 69.5,-33.5 + pos: 76.5,-34.5 parent: 2 - - uid: 37887 + - uid: 38318 components: - type: Transform - pos: -80.5,46.5 + pos: -104.5,45.5 parent: 2 - - uid: 37888 + - uid: 38319 components: - type: Transform - pos: 103.5,-26.5 + pos: -128.5,-12.5 parent: 2 - - uid: 37889 + - uid: 38320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-25.5 + pos: -125.5,-17.5 parent: 2 - - uid: 37890 + - uid: 38321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-36.5 + pos: -128.5,-13.5 parent: 2 - - uid: 37891 + - uid: 38322 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 103.5,-30.5 + rot: -1.5707963267948966 rad + pos: -106.5,45.5 parent: 2 - - uid: 37892 + - uid: 38323 components: - type: Transform rot: 1.5707963267948966 rad - pos: 103.5,-31.5 + pos: -117.5,41.5 parent: 2 - - uid: 37893 + - uid: 38324 components: - type: Transform rot: 1.5707963267948966 rad - pos: 103.5,-35.5 + pos: -117.5,44.5 parent: 2 - - uid: 37894 + - uid: 38325 components: - type: Transform - pos: 103.5,-20.5 + pos: -51.5,-10.5 parent: 2 - - uid: 37895 + - uid: 38326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,62.5 + pos: -52.5,-10.5 parent: 2 - - uid: 37896 + - uid: 38327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,62.5 + pos: -53.5,-8.5 parent: 2 - - uid: 37897 + - uid: 38328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,62.5 + rot: 1.5707963267948966 rad + pos: -103.5,45.5 parent: 2 - - uid: 37898 + - uid: 38329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,64.5 + rot: 1.5707963267948966 rad + pos: -103.5,42.5 parent: 2 - - uid: 37899 + - uid: 38330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,61.5 + pos: -109.5,40.5 parent: 2 - - uid: 37900 + - uid: 38331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,63.5 + pos: -53.5,-10.5 parent: 2 - - uid: 37901 + - uid: 38332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,11.5 + pos: -104.5,40.5 parent: 2 - - uid: 37902 + - uid: 38333 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,11.5 + pos: -103.5,41.5 parent: 2 - - uid: 37903 + - uid: 38334 components: - type: Transform - pos: -80.5,15.5 + pos: -24.5,61.5 parent: 2 - - uid: 37904 + - uid: 38335 components: - type: Transform - pos: -25.5,27.5 + pos: -26.5,61.5 parent: 2 - - uid: 37905 + - uid: 38336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,66.5 + pos: -25.5,61.5 parent: 2 - - uid: 37906 + - uid: 38337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,64.5 + pos: -26.5,60.5 parent: 2 - - uid: 37907 + - uid: 38338 components: - type: Transform - pos: -64.5,-6.5 + rot: 1.5707963267948966 rad + pos: 45.5,-8.5 parent: 2 - - uid: 37908 + - uid: 38339 components: - type: Transform - pos: -66.5,-6.5 + rot: 1.5707963267948966 rad + pos: 44.5,-16.5 parent: 2 - - uid: 37909 + - uid: 38340 components: - type: Transform - pos: -65.5,-7.5 + rot: 1.5707963267948966 rad + pos: 52.5,-9.5 parent: 2 - - uid: 37910 + - uid: 38341 components: - type: Transform - pos: -69.5,-0.5 + rot: 1.5707963267948966 rad + pos: 56.5,-9.5 parent: 2 - - uid: 37911 + - uid: 38342 components: - type: Transform - pos: -63.5,-5.5 + rot: 1.5707963267948966 rad + pos: 29.5,11.5 parent: 2 - - uid: 37912 + - uid: 38343 components: - type: Transform - pos: -68.5,-6.5 + rot: 1.5707963267948966 rad + pos: 52.5,-11.5 parent: 2 - - uid: 37913 + - uid: 38344 components: - type: Transform - pos: -69.5,-6.5 + rot: 1.5707963267948966 rad + pos: 29.5,5.5 parent: 2 - - uid: 37914 + - uid: 38345 components: - type: Transform - pos: -70.5,-6.5 + rot: 1.5707963267948966 rad + pos: 64.5,-29.5 parent: 2 - - uid: 37915 + - uid: 38346 components: - type: Transform - pos: -70.5,-1.5 + rot: 1.5707963267948966 rad + pos: 64.5,-31.5 parent: 2 - - uid: 37916 + - uid: 38347 components: - type: Transform - pos: -70.5,-0.5 + rot: 1.5707963267948966 rad + pos: 52.5,-12.5 parent: 2 - - uid: 37917 + - uid: 38348 components: - type: Transform - pos: -71.5,-5.5 + rot: 1.5707963267948966 rad + pos: 29.5,9.5 parent: 2 - - uid: 37918 + - uid: 38349 components: - type: Transform - pos: -71.5,-2.5 + pos: 60.5,-33.5 parent: 2 - - uid: 37919 + - uid: 38350 + components: + - type: Transform + pos: 60.5,-34.5 + parent: 2 + - uid: 38351 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,17.5 + pos: 29.5,6.5 parent: 2 - - uid: 37920 + - uid: 38352 + components: + - type: Transform + pos: 60.5,-32.5 + parent: 2 + - uid: 38353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,16.5 + pos: 29.5,10.5 parent: 2 - - uid: 37921 + - uid: 38354 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,16.5 + pos: 49.5,-17.5 parent: 2 - - uid: 37922 + - uid: 38355 components: - type: Transform - pos: -80.5,11.5 + rot: 1.5707963267948966 rad + pos: 50.5,-17.5 parent: 2 - - uid: 37923 + - uid: 38356 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,19.5 + pos: 44.5,-11.5 parent: 2 - - uid: 37924 + - uid: 38357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-17.5 + parent: 2 + - uid: 38358 components: - type: Transform rot: 1.5707963267948966 rad - pos: -74.5,19.5 + pos: 49.5,-7.5 parent: 2 - - uid: 37925 + - uid: 38359 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,19.5 + pos: 44.5,-8.5 parent: 2 - - uid: 37926 + - uid: 38360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-7.5 + parent: 2 + - uid: 38361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,19.5 + pos: 50.5,-7.5 parent: 2 - - uid: 37927 + - uid: 38362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-17.5 + parent: 2 + - uid: 38363 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,15.5 + pos: 56.5,-12.5 parent: 2 - - uid: 37928 + - uid: 38364 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,19.5 + pos: 56.5,-10.5 parent: 2 - - uid: 37929 + - uid: 38365 components: - type: Transform rot: 1.5707963267948966 rad - pos: -77.5,19.5 + pos: 44.5,-9.5 parent: 2 - - uid: 37930 + - uid: 38366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,14.5 + pos: 44.5,-14.5 parent: 2 - - uid: 37931 + - uid: 38367 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.5,19.5 + pos: 44.5,-15.5 parent: 2 - - uid: 37932 + - uid: 38368 components: - type: Transform rot: 1.5707963267948966 rad - pos: -76.5,11.5 + pos: 44.5,-13.5 parent: 2 - - uid: 37933 + - uid: 38369 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,18.5 + pos: 47.5,-7.5 parent: 2 - - uid: 37934 + - uid: 38370 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,13.5 + pos: 48.5,-7.5 parent: 2 - - uid: 37935 + - uid: 38371 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,12.5 + pos: 46.5,-7.5 parent: 2 - - uid: 37936 + - uid: 38372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -77.5,11.5 + pos: 45.5,-7.5 parent: 2 - - uid: 37937 + - uid: 38373 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,11.5 + pos: 52.5,-13.5 parent: 2 - - uid: 37938 + - uid: 38374 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,11.5 + pos: 51.5,-8.5 parent: 2 - - uid: 37939 + - uid: 38375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,42.5 + parent: 2 + - uid: 38376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,41.5 + parent: 2 + - uid: 38377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,43.5 + parent: 2 + - uid: 38378 + components: + - type: Transform + pos: -29.5,44.5 + parent: 2 + - uid: 38379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,42.5 + parent: 2 + - uid: 38380 + components: + - type: Transform + pos: -28.5,44.5 + parent: 2 + - uid: 38381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,41.5 + parent: 2 + - uid: 38382 + components: + - type: Transform + pos: -15.5,20.5 + parent: 2 + - uid: 38383 + components: + - type: Transform + pos: 69.5,-33.5 + parent: 2 + - uid: 38384 + components: + - type: Transform + pos: -80.5,46.5 + parent: 2 + - uid: 38385 + components: + - type: Transform + pos: 103.5,-26.5 + parent: 2 + - uid: 38386 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,15.5 + pos: 103.5,-25.5 parent: 2 - - uid: 37940 + - uid: 38387 components: - type: Transform - pos: -81.5,15.5 + rot: 1.5707963267948966 rad + pos: 103.5,-36.5 parent: 2 - - uid: 37941 + - uid: 38388 components: - type: Transform - pos: -81.5,14.5 + rot: 1.5707963267948966 rad + pos: 103.5,-30.5 parent: 2 - - uid: 37942 + - uid: 38389 components: - type: Transform - pos: -81.5,11.5 + rot: 1.5707963267948966 rad + pos: 103.5,-31.5 parent: 2 - - uid: 37943 + - uid: 38390 components: - type: Transform - pos: -53.5,65.5 + rot: 1.5707963267948966 rad + pos: 103.5,-35.5 parent: 2 - - uid: 37944 + - uid: 38391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,62.5 + pos: 103.5,-20.5 parent: 2 - - uid: 37945 + - uid: 38392 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,62.5 + pos: -49.5,62.5 parent: 2 - - uid: 37946 + - uid: 38393 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,65.5 + pos: -50.5,62.5 parent: 2 - - uid: 37947 + - uid: 38394 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,66.5 + pos: -52.5,62.5 parent: 2 - - uid: 37948 + - uid: 38395 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,69.5 + pos: -50.5,64.5 parent: 2 - - uid: 37949 + - uid: 38396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,69.5 + pos: -49.5,61.5 parent: 2 - - uid: 37950 + - uid: 38397 components: - type: Transform - pos: 53.5,34.5 + rot: -1.5707963267948966 rad + pos: -50.5,63.5 parent: 2 - - uid: 37951 + - uid: 38398 components: - type: Transform - pos: 55.5,30.5 + pos: -25.5,27.5 parent: 2 - - uid: 37952 + - uid: 38399 components: - type: Transform - pos: 51.5,30.5 + rot: -1.5707963267948966 rad + pos: -48.5,66.5 parent: 2 - - uid: 37953 + - uid: 38400 components: - type: Transform - pos: 51.5,34.5 + rot: -1.5707963267948966 rad + pos: -53.5,64.5 parent: 2 - - uid: 37954 + - uid: 38401 components: - type: Transform - pos: 51.5,32.5 + pos: -53.5,65.5 parent: 2 - - uid: 37955 + - uid: 38402 components: - type: Transform - pos: 51.5,33.5 + rot: -1.5707963267948966 rad + pos: -48.5,62.5 parent: 2 - - uid: 37956 + - uid: 38403 components: - type: Transform - pos: 54.5,34.5 + rot: -1.5707963267948966 rad + pos: -47.5,62.5 parent: 2 - - uid: 37957 + - uid: 38404 components: - type: Transform - pos: 55.5,34.5 + rot: -1.5707963267948966 rad + pos: -47.5,65.5 parent: 2 - - uid: 37958 + - uid: 38405 components: - type: Transform - pos: 56.5,34.5 + rot: -1.5707963267948966 rad + pos: -47.5,66.5 parent: 2 - - uid: 37959 + - uid: 38406 components: - type: Transform - pos: 54.5,30.5 + rot: -1.5707963267948966 rad + pos: -53.5,69.5 parent: 2 - - uid: 37960 + - uid: 38407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,15.5 + rot: -1.5707963267948966 rad + pos: -48.5,69.5 parent: 2 - - uid: 37961 + - uid: 38408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,15.5 + pos: 53.5,34.5 parent: 2 - - uid: 37962 + - uid: 38409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,15.5 + pos: 55.5,30.5 parent: 2 - - uid: 37963 + - uid: 38410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,15.5 + pos: 51.5,30.5 parent: 2 - - uid: 37964 + - uid: 38411 components: - type: Transform - pos: -63.5,-1.5 + pos: 51.5,34.5 parent: 2 - - uid: 37965 + - uid: 38412 components: - type: Transform - pos: -64.5,-0.5 + pos: 51.5,32.5 parent: 2 - - uid: 37966 + - uid: 38413 components: - type: Transform - pos: -64.5,-1.5 + pos: 51.5,33.5 parent: 2 - - uid: 37967 + - uid: 38414 components: - type: Transform - pos: -65.5,-0.5 + pos: 54.5,34.5 parent: 2 - - uid: 37968 + - uid: 38415 components: - type: Transform - pos: -69.5,-8.5 + pos: 55.5,34.5 parent: 2 - - uid: 37969 + - uid: 38416 components: - type: Transform - pos: -69.5,-9.5 + pos: 56.5,34.5 parent: 2 - - uid: 37970 + - uid: 38417 components: - type: Transform - pos: -65.5,-8.5 + pos: 54.5,30.5 parent: 2 - - uid: 37971 + - uid: 38418 components: - type: Transform pos: 52.5,30.5 parent: 2 - - uid: 37972 + - uid: 38419 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,61.5 parent: 2 - - uid: 37973 + - uid: 38420 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,62.5 parent: 2 - - uid: 37974 + - uid: 38421 components: - type: Transform pos: -26.5,26.5 parent: 2 - - uid: 37975 + - uid: 38422 components: - type: Transform pos: -26.5,25.5 parent: 2 - - uid: 37976 + - uid: 38423 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,62.5 parent: 2 - - uid: 37977 + - uid: 38424 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,62.5 parent: 2 - - uid: 37978 + - uid: 38425 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,62.5 parent: 2 - - uid: 37979 + - uid: 38426 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,62.5 parent: 2 - - uid: 37980 + - uid: 38427 components: - type: Transform pos: -26.5,22.5 parent: 2 - - uid: 37981 + - uid: 38428 components: - type: Transform pos: -26.5,24.5 parent: 2 - - uid: 37982 + - uid: 38429 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,64.5 parent: 2 - - uid: 37983 + - uid: 38430 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,67.5 parent: 2 - - uid: 37984 + - uid: 38431 components: - type: Transform pos: -26.5,23.5 parent: 2 - - uid: 37985 + - uid: 38432 components: - type: Transform pos: -26.5,27.5 parent: 2 - - uid: 37986 + - uid: 38433 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,68.5 parent: 2 - - uid: 37987 + - uid: 38434 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,68.5 parent: 2 - - uid: 37988 + - uid: 38435 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,68.5 parent: 2 - - uid: 37989 + - uid: 38436 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,68.5 parent: 2 - - uid: 37990 + - uid: 38437 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,68.5 parent: 2 - - uid: 37991 + - uid: 38438 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,68.5 parent: 2 - - uid: 37992 + - uid: 38439 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,63.5 parent: 2 - - uid: 37993 + - uid: 38440 components: - type: Transform rot: -1.5707963267948966 rad pos: -48.5,68.5 parent: 2 - - uid: 37994 + - uid: 38441 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,68.5 parent: 2 - - uid: 37995 + - uid: 38442 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,60.5 parent: 2 - - uid: 37996 + - uid: 38443 components: - type: Transform rot: 3.141592653589793 rad pos: -57.5,68.5 parent: 2 - - uid: 37997 + - uid: 38444 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,59.5 parent: 2 - - uid: 37998 + - uid: 38445 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,59.5 parent: 2 - - uid: 37999 + - uid: 38446 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,65.5 parent: 2 - - uid: 38000 + - uid: 38447 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,63.5 parent: 2 - - uid: 38001 + - uid: 38448 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,60.5 parent: 2 - - uid: 38002 + - uid: 38449 components: - type: Transform rot: 3.141592653589793 rad pos: -50.5,59.5 parent: 2 - - uid: 38003 + - uid: 38450 components: - type: Transform rot: 3.141592653589793 rad pos: -58.5,62.5 parent: 2 - - uid: 38004 + - uid: 38451 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,62.5 parent: 2 - - uid: 38005 + - uid: 38452 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,64.5 parent: 2 - - uid: 38006 + - uid: 38453 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,65.5 parent: 2 - - uid: 38007 + - uid: 38454 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,59.5 parent: 2 - - uid: 38008 - components: - - type: Transform - pos: -81.5,12.5 - parent: 2 - - uid: 38009 - components: - - type: Transform - pos: -81.5,13.5 - parent: 2 - - uid: 38010 + - uid: 38455 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,20.5 parent: 2 - - uid: 38011 + - uid: 38456 components: - type: Transform pos: -20.5,27.5 parent: 2 - - uid: 38012 + - uid: 38457 components: - type: Transform pos: -21.5,27.5 parent: 2 - - uid: 38013 + - uid: 38458 components: - type: Transform pos: -16.5,21.5 parent: 2 - - uid: 38014 + - uid: 38459 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,22.5 parent: 2 - - uid: 38015 + - uid: 38460 components: - type: Transform pos: -17.5,27.5 parent: 2 - - uid: 38016 + - uid: 38461 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,25.5 parent: 2 - - uid: 38017 + - uid: 38462 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,26.5 parent: 2 - - uid: 38018 + - uid: 38463 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,27.5 parent: 2 - - uid: 38019 + - uid: 38464 components: - type: Transform pos: -19.5,27.5 parent: 2 - - uid: 38020 + - uid: 38465 components: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 38021 + - uid: 38466 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,23.5 parent: 2 - - uid: 38022 + - uid: 38467 components: - type: Transform pos: -8.5,21.5 parent: 2 - - uid: 38023 + - uid: 38468 components: - type: Transform pos: -7.5,23.5 parent: 2 - - uid: 38024 + - uid: 38469 components: - type: Transform pos: -5.5,23.5 parent: 2 - - uid: 38025 + - uid: 38470 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,26.5 parent: 2 - - uid: 38026 + - uid: 38471 components: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 38027 + - uid: 38472 components: - type: Transform pos: -1.5,23.5 parent: 2 - - uid: 38028 + - uid: 38473 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,18.5 parent: 2 - - uid: 38029 + - uid: 38474 components: - type: Transform pos: -0.5,23.5 parent: 2 - - uid: 38030 + - uid: 38475 components: - type: Transform pos: -6.5,23.5 parent: 2 - - uid: 38031 + - uid: 38476 components: - type: Transform pos: -3.5,23.5 parent: 2 - - uid: 38032 + - uid: 38477 components: - type: Transform pos: -17.5,21.5 parent: 2 - - uid: 38033 + - uid: 38478 components: - type: Transform pos: -2.5,23.5 parent: 2 - - uid: 38034 + - uid: 38479 components: - type: Transform pos: 4.5,22.5 parent: 2 - - uid: 38035 + - uid: 38480 components: - type: Transform pos: -19.5,21.5 parent: 2 - - uid: 38036 + - uid: 38481 components: - type: Transform pos: -7.5,22.5 parent: 2 - - uid: 38037 + - uid: 38482 components: - type: Transform pos: -16.5,27.5 parent: 2 - - uid: 38038 + - uid: 38483 components: - type: Transform pos: 0.5,23.5 parent: 2 - - uid: 38039 + - uid: 38484 components: - type: Transform pos: -18.5,21.5 parent: 2 - - uid: 38040 + - uid: 38485 components: - type: Transform rot: -1.5707963267948966 rad pos: -16.5,22.5 parent: 2 - - uid: 38041 + - uid: 38486 components: - type: Transform pos: 4.5,23.5 parent: 2 - - uid: 38042 + - uid: 38487 components: - type: Transform pos: -8.5,22.5 parent: 2 - - uid: 38043 + - uid: 38488 components: - type: Transform pos: 3.5,23.5 parent: 2 - - uid: 38044 + - uid: 38489 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,41.5 parent: 2 - - uid: 38045 + - uid: 38490 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-26.5 parent: 2 - - uid: 38046 + - uid: 38491 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,-26.5 parent: 2 - - uid: 38047 + - uid: 38492 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,46.5 parent: 2 - - uid: 38048 + - uid: 38493 components: - type: Transform pos: -29.5,58.5 parent: 2 - - uid: 38049 + - uid: 38494 components: - type: Transform pos: -27.5,58.5 parent: 2 - - uid: 38050 + - uid: 38495 components: - type: Transform pos: -25.5,58.5 parent: 2 - - uid: 38051 + - uid: 38496 components: - type: Transform pos: -29.5,55.5 parent: 2 - - uid: 38052 + - uid: 38497 components: - type: Transform pos: -29.5,54.5 parent: 2 - - uid: 38053 + - uid: 38498 components: - type: Transform pos: -28.5,58.5 parent: 2 - - uid: 38054 + - uid: 38499 components: - type: Transform pos: -29.5,57.5 parent: 2 - - uid: 38055 + - uid: 38500 components: - type: Transform pos: -26.5,58.5 parent: 2 - - uid: 38056 + - uid: 38501 components: - type: Transform pos: -29.5,56.5 parent: 2 - - uid: 38057 + - uid: 38502 components: - type: Transform pos: 6.5,63.5 parent: 2 - - uid: 38058 + - uid: 38503 components: - type: Transform pos: -15.5,49.5 parent: 2 - - uid: 38059 + - uid: 38504 components: - type: Transform pos: -15.5,53.5 parent: 2 - - uid: 38060 + - uid: 38505 components: - type: Transform pos: -11.5,73.5 parent: 2 - - uid: 38061 + - uid: 38506 components: - type: Transform pos: 60.5,-25.5 parent: 2 - - uid: 38062 + - uid: 38507 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,41.5 parent: 2 - - uid: 38063 + - uid: 38508 components: - type: Transform pos: 10.5,43.5 parent: 2 - - uid: 38064 + - uid: 38509 components: - type: Transform pos: 10.5,44.5 parent: 2 - - uid: 38065 + - uid: 38510 components: - type: Transform pos: 0.5,-18.5 parent: 2 - - uid: 38066 + - uid: 38511 components: - type: Transform pos: 63.5,-20.5 parent: 2 - - uid: 38067 + - uid: 38512 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-25.5 parent: 2 - - uid: 38068 + - uid: 38513 components: - type: Transform pos: 44.5,-26.5 parent: 2 - - uid: 38069 + - uid: 38514 components: - type: Transform pos: 12.5,48.5 parent: 2 - - uid: 38070 + - uid: 38515 components: - type: Transform pos: 47.5,-26.5 parent: 2 - - uid: 38071 + - uid: 38516 components: - type: Transform pos: 64.5,-20.5 parent: 2 - - uid: 38072 + - uid: 38517 components: - type: Transform pos: 12.5,47.5 parent: 2 - - uid: 38073 + - uid: 38518 components: - type: Transform pos: 12.5,43.5 parent: 2 - - uid: 38074 + - uid: 38519 components: - type: Transform pos: 5.5,68.5 parent: 2 - - uid: 38075 + - uid: 38520 components: - type: Transform pos: 5.5,67.5 parent: 2 - - uid: 38076 + - uid: 38521 components: - type: Transform pos: 12.5,46.5 parent: 2 - - uid: 38077 + - uid: 38522 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,44.5 parent: 2 - - uid: 38078 + - uid: 38523 components: - type: Transform pos: -19.5,43.5 parent: 2 - - uid: 38079 + - uid: 38524 components: - type: Transform pos: -6.5,61.5 parent: 2 - - uid: 38080 + - uid: 38525 components: - type: Transform pos: -3.5,65.5 parent: 2 - - uid: 38081 + - uid: 38526 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,52.5 parent: 2 - - uid: 38082 + - uid: 38527 components: - type: Transform rot: -1.5707963267948966 rad pos: -25.5,53.5 parent: 2 - - uid: 38083 + - uid: 38528 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,49.5 parent: 2 - - uid: 38084 + - uid: 38529 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,48.5 parent: 2 - - uid: 38085 + - uid: 38530 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,51.5 parent: 2 - - uid: 38086 + - uid: 38531 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,48.5 parent: 2 - - uid: 38087 + - uid: 38532 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,48.5 parent: 2 - - uid: 38088 + - uid: 38533 components: - type: Transform pos: -3.5,66.5 parent: 2 - - uid: 38089 + - uid: 38534 components: - type: Transform pos: -6.5,63.5 parent: 2 - - uid: 38090 + - uid: 38535 components: - type: Transform pos: -3.5,67.5 parent: 2 - - uid: 38091 + - uid: 38536 components: - type: Transform pos: -6.5,62.5 parent: 2 - - uid: 38092 + - uid: 38537 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,53.5 parent: 2 - - uid: 38093 + - uid: 38538 components: - type: Transform pos: -6.5,67.5 parent: 2 - - uid: 38094 + - uid: 38539 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,59.5 parent: 2 - - uid: 38095 + - uid: 38540 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-18.5 parent: 2 - - uid: 38096 + - uid: 38541 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,59.5 parent: 2 - - uid: 38097 + - uid: 38542 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,55.5 parent: 2 - - uid: 38098 + - uid: 38543 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,53.5 parent: 2 - - uid: 38099 + - uid: 38544 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,54.5 parent: 2 - - uid: 38100 + - uid: 38545 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,53.5 parent: 2 - - uid: 38101 + - uid: 38546 components: - type: Transform rot: -1.5707963267948966 rad pos: -26.5,53.5 parent: 2 - - uid: 38102 + - uid: 38547 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,56.5 parent: 2 - - uid: 38103 + - uid: 38548 components: - type: Transform pos: -3.5,64.5 parent: 2 - - uid: 38104 + - uid: 38549 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,55.5 parent: 2 - - uid: 38105 + - uid: 38550 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,61.5 parent: 2 - - uid: 38106 + - uid: 38551 components: - type: Transform pos: -6.5,65.5 parent: 2 - - uid: 38107 + - uid: 38552 components: - type: Transform pos: -6.5,64.5 parent: 2 - - uid: 38108 + - uid: 38553 components: - type: Transform pos: -6.5,66.5 parent: 2 - - uid: 38109 + - uid: 38554 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,58.5 parent: 2 - - uid: 38110 + - uid: 38555 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,53.5 parent: 2 - - uid: 38111 + - uid: 38556 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,63.5 parent: 2 - - uid: 38112 + - uid: 38557 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,55.5 parent: 2 - - uid: 38113 + - uid: 38558 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,63.5 parent: 2 - - uid: 38114 + - uid: 38559 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,63.5 parent: 2 - - uid: 38115 + - uid: 38560 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,59.5 parent: 2 - - uid: 38116 + - uid: 38561 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,63.5 parent: 2 - - uid: 38117 + - uid: 38562 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,53.5 parent: 2 - - uid: 38118 + - uid: 38563 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,53.5 parent: 2 - - uid: 38119 + - uid: 38564 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,53.5 parent: 2 - - uid: 38120 + - uid: 38565 components: - type: Transform rot: -1.5707963267948966 rad pos: -19.5,53.5 parent: 2 - - uid: 38121 + - uid: 38566 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,53.5 parent: 2 - - uid: 38122 + - uid: 38567 components: - type: Transform pos: -10.5,71.5 parent: 2 - - uid: 38123 + - uid: 38568 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,62.5 parent: 2 - - uid: 38124 + - uid: 38569 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,63.5 parent: 2 - - uid: 38125 + - uid: 38570 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-12.5 parent: 2 - - uid: 38126 + - uid: 38571 components: - type: Transform pos: -22.5,41.5 parent: 2 - - uid: 38127 + - uid: 38572 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-15.5 parent: 2 - - uid: 38128 + - uid: 38573 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-27.5 parent: 2 - - uid: 38129 + - uid: 38574 components: - type: Transform pos: 76.5,-29.5 parent: 2 - - uid: 38130 + - uid: 38575 components: - type: Transform pos: -19.5,41.5 parent: 2 - - uid: 38131 + - uid: 38576 components: - type: Transform pos: -27.5,42.5 parent: 2 - - uid: 38132 + - uid: 38577 components: - type: Transform pos: -25.5,41.5 parent: 2 - - uid: 38133 + - uid: 38578 components: - type: Transform pos: -26.5,41.5 parent: 2 - - uid: 38134 + - uid: 38579 components: - type: Transform pos: -27.5,41.5 parent: 2 - - uid: 38135 + - uid: 38580 components: - type: Transform pos: -24.5,41.5 parent: 2 - - uid: 38136 + - uid: 38581 components: - type: Transform rot: -1.5707963267948966 rad pos: 83.5,-27.5 parent: 2 - - uid: 38137 + - uid: 38582 components: - type: Transform rot: -1.5707963267948966 rad pos: 78.5,-6.5 parent: 2 - - uid: 38138 + - uid: 38583 components: - type: Transform pos: 76.5,-35.5 parent: 2 - - uid: 38139 + - uid: 38584 components: - type: Transform pos: -15.5,37.5 parent: 2 - - uid: 38140 + - uid: 38585 components: - type: Transform pos: -18.5,41.5 parent: 2 - - uid: 38141 + - uid: 38586 components: - type: Transform pos: -18.5,38.5 parent: 2 - - uid: 38142 + - uid: 38587 components: - type: Transform pos: 77.5,-35.5 parent: 2 - - uid: 38143 - components: - - type: Transform - pos: 78.5,-29.5 - parent: 2 - - uid: 38144 - components: - - type: Transform - pos: 79.5,-29.5 - parent: 2 - - uid: 38145 + - uid: 38588 components: - type: Transform pos: 56.5,-27.5 parent: 2 - - uid: 38146 - components: - - type: Transform - pos: 80.5,-31.5 - parent: 2 - - uid: 38147 + - uid: 38589 components: - type: Transform pos: -14.5,37.5 parent: 2 - - uid: 38148 + - uid: 38590 components: - type: Transform pos: -18.5,40.5 parent: 2 - - uid: 38149 - components: - - type: Transform - pos: 80.5,-30.5 - parent: 2 - - uid: 38150 - components: - - type: Transform - pos: 80.5,-29.5 - parent: 2 - - uid: 38151 - components: - - type: Transform - pos: 77.5,-29.5 - parent: 2 - - uid: 38152 + - uid: 38591 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,-5.5 parent: 2 - - uid: 38153 + - uid: 38592 components: - type: Transform pos: 59.5,-27.5 parent: 2 - - uid: 38154 + - uid: 38593 components: - type: Transform pos: 72.5,-28.5 parent: 2 - - uid: 38155 + - uid: 38594 components: - type: Transform pos: 56.5,-26.5 parent: 2 - - uid: 38156 + - uid: 38595 components: - type: Transform pos: 76.5,-30.5 parent: 2 - - uid: 38157 + - uid: 38596 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,-6.5 parent: 2 - - uid: 38158 + - uid: 38597 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-5.5 parent: 2 - - uid: 38159 + - uid: 38598 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,-6.5 parent: 2 - - uid: 38160 + - uid: 38599 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,6.5 parent: 2 - - uid: 38161 + - uid: 38600 components: - type: Transform pos: -23.5,41.5 parent: 2 - - uid: 38162 + - uid: 38601 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,-5.5 parent: 2 - - uid: 38163 + - uid: 38602 components: - type: Transform rot: -1.5707963267948966 rad pos: 79.5,-6.5 parent: 2 - - uid: 38164 + - uid: 38603 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-6.5 parent: 2 - - uid: 38165 + - uid: 38604 components: - type: Transform rot: -1.5707963267948966 rad pos: 80.5,-6.5 parent: 2 - - uid: 38166 + - uid: 38605 components: - type: Transform rot: -1.5707963267948966 rad pos: 81.5,-27.5 parent: 2 - - uid: 38167 + - uid: 38606 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,8.5 parent: 2 - - uid: 38168 + - uid: 38607 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,9.5 parent: 2 - - uid: 38169 + - uid: 38608 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,9.5 parent: 2 - - uid: 38170 + - uid: 38609 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,9.5 parent: 2 - - uid: 38171 + - uid: 38610 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,9.5 parent: 2 - - uid: 38172 + - uid: 38611 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,9.5 parent: 2 - - uid: 38173 + - uid: 38612 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,7.5 parent: 2 - - uid: 38174 + - uid: 38613 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,6.5 parent: 2 - - uid: 38175 + - uid: 38614 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,3.5 parent: 2 - - uid: 38176 + - uid: 38615 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,2.5 parent: 2 - - uid: 38177 + - uid: 38616 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,8.5 parent: 2 - - uid: 38178 + - uid: 38617 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,7.5 parent: 2 - - uid: 38179 + - uid: 38618 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,2.5 parent: 2 - - uid: 38180 + - uid: 38619 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,9.5 parent: 2 - - uid: 38181 + - uid: 38620 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,8.5 parent: 2 - - uid: 38182 + - uid: 38621 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,2.5 parent: 2 - - uid: 38183 + - uid: 38622 components: - type: Transform rot: 1.5707963267948966 rad pos: 80.5,2.5 parent: 2 - - uid: 38184 + - uid: 38623 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,2.5 parent: 2 - - uid: 38185 + - uid: 38624 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,8.5 parent: 2 - - uid: 38186 + - uid: 38625 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,4.5 parent: 2 - - uid: 38187 + - uid: 38626 components: - type: Transform rot: 1.5707963267948966 rad pos: 83.5,3.5 parent: 2 - - uid: 38188 + - uid: 38627 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,7.5 parent: 2 - - uid: 38189 + - uid: 38628 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,6.5 parent: 2 - - uid: 38190 + - uid: 38629 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,5.5 parent: 2 - - uid: 38191 + - uid: 38630 components: - type: Transform rot: 1.5707963267948966 rad pos: 84.5,4.5 parent: 2 - - uid: 38192 + - uid: 38631 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,55.5 parent: 2 - - uid: 38193 + - uid: 38632 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,4.5 parent: 2 - - uid: 38194 + - uid: 38633 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,3.5 parent: 2 - - uid: 38195 + - uid: 38634 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-26.5 parent: 2 - - uid: 38196 + - uid: 38635 components: - type: Transform pos: 78.5,-35.5 parent: 2 - - uid: 38197 + - uid: 38636 components: - type: Transform pos: 75.5,-43.5 parent: 2 - - uid: 38198 + - uid: 38637 components: - type: Transform pos: 75.5,-48.5 parent: 2 - - uid: 38199 + - uid: 38638 components: - type: Transform pos: 70.5,-28.5 parent: 2 - - uid: 38200 + - uid: 38639 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,-25.5 parent: 2 - - uid: 38201 + - uid: 38640 components: - type: Transform pos: 69.5,-28.5 parent: 2 - - uid: 38202 + - uid: 38641 components: - type: Transform pos: 70.5,-27.5 parent: 2 - - uid: 38203 + - uid: 38642 components: - type: Transform pos: 70.5,-25.5 parent: 2 - - uid: 38204 + - uid: 38643 components: - type: Transform pos: 70.5,-26.5 parent: 2 - - uid: 38205 + - uid: 38644 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,55.5 parent: 2 - - uid: 38206 + - uid: 38645 components: - type: Transform pos: 79.5,-35.5 parent: 2 - - uid: 38207 + - uid: 38646 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,55.5 parent: 2 - - uid: 38208 + - uid: 38647 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,53.5 parent: 2 - - uid: 38209 + - uid: 38648 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,55.5 parent: 2 - - uid: 38210 + - uid: 38649 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,55.5 parent: 2 - - uid: 38211 + - uid: 38650 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,51.5 parent: 2 - - uid: 38212 + - uid: 38651 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,54.5 parent: 2 - - uid: 38213 + - uid: 38652 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,55.5 parent: 2 - - uid: 38214 - components: - - type: Transform - pos: 23.5,8.5 - parent: 2 - - uid: 38215 + - uid: 38653 components: - type: Transform pos: 29.5,12.5 parent: 2 - - uid: 38216 + - uid: 38654 components: - type: Transform pos: 23.5,12.5 parent: 2 - - uid: 38217 + - uid: 38655 components: - type: Transform pos: 29.5,14.5 parent: 2 - - uid: 38218 + - uid: 38656 components: - type: Transform rot: 1.5707963267948966 rad pos: 16.5,-18.5 parent: 2 - - uid: 38219 + - uid: 38657 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-19.5 parent: 2 - - uid: 38220 + - uid: 38658 components: - type: Transform pos: 14.5,22.5 parent: 2 - - uid: 38221 + - uid: 38659 components: - type: Transform pos: 18.5,23.5 parent: 2 - - uid: 38222 + - uid: 38660 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-18.5 parent: 2 - - uid: 38223 + - uid: 38661 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-19.5 parent: 2 - - uid: 38224 + - uid: 38662 components: - type: Transform pos: 8.5,20.5 parent: 2 - - uid: 38225 + - uid: 38663 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 parent: 2 - - uid: 38226 + - uid: 38664 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-23.5 parent: 2 - - uid: 38227 + - uid: 38665 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 - - uid: 38228 + - uid: 38666 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-24.5 parent: 2 - - uid: 38229 + - uid: 38667 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-18.5 parent: 2 - - uid: 38230 + - uid: 38668 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-24.5 parent: 2 - - uid: 38231 + - uid: 38669 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 - - uid: 38232 + - uid: 38670 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,-24.5 parent: 2 - - uid: 38233 + - uid: 38671 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-24.5 parent: 2 - - uid: 38234 + - uid: 38672 components: - type: Transform pos: 8.5,18.5 parent: 2 - - uid: 38235 + - uid: 38673 components: - type: Transform pos: 8.5,21.5 parent: 2 - - uid: 38236 + - uid: 38674 components: - type: Transform pos: 8.5,19.5 parent: 2 - - uid: 38237 + - uid: 38675 components: - type: Transform pos: 8.5,22.5 parent: 2 - - uid: 38238 + - uid: 38676 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 - - uid: 38239 + - uid: 38677 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,-24.5 parent: 2 - - uid: 38240 + - uid: 38678 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-24.5 parent: 2 - - uid: 38241 + - uid: 38679 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-24.5 parent: 2 - - uid: 38242 + - uid: 38680 components: - type: Transform rot: 1.5707963267948966 rad pos: 2.5,-24.5 parent: 2 - - uid: 38243 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,6.5 - parent: 2 - - uid: 38244 + - uid: 38681 components: - type: Transform pos: 41.5,28.5 parent: 2 - - uid: 38245 + - uid: 38682 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,23.5 parent: 2 - - uid: 38246 + - uid: 38683 components: - type: Transform pos: 42.5,28.5 parent: 2 - - uid: 38247 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,7.5 - parent: 2 - - uid: 38248 + - uid: 38684 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,23.5 parent: 2 - - uid: 38249 + - uid: 38685 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,23.5 parent: 2 - - uid: 38250 + - uid: 38686 components: - type: Transform rot: -1.5707963267948966 rad pos: -0.5,-18.5 parent: 2 - - uid: 38251 + - uid: 38687 components: - type: Transform pos: 3.5,34.5 parent: 2 - - uid: 38252 + - uid: 38688 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-18.5 parent: 2 - - uid: 38253 + - uid: 38689 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 - - uid: 38254 + - uid: 38690 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-13.5 parent: 2 - - uid: 38255 + - uid: 38691 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-17.5 parent: 2 - - uid: 38256 + - uid: 38692 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-18.5 parent: 2 - - uid: 38257 + - uid: 38693 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-18.5 parent: 2 - - uid: 38258 + - uid: 38694 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-14.5 parent: 2 - - uid: 38259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-18.5 - parent: 2 - - uid: 38260 + - uid: 38695 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-13.5 parent: 2 - - uid: 38261 + - uid: 38696 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-15.5 parent: 2 - - uid: 38262 + - uid: 38697 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-16.5 + pos: 54.5,-16.5 parent: 2 - - uid: 38263 + - uid: 38698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-14.5 + pos: 54.5,-15.5 parent: 2 - - uid: 38264 + - uid: 38699 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,-14.5 parent: 2 - - uid: 38265 + - uid: 38700 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-14.5 parent: 2 - - uid: 38266 + - uid: 38701 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-15.5 parent: 2 - - uid: 38267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-16.5 - parent: 2 - - uid: 38268 + - uid: 38702 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-18.5 parent: 2 - - uid: 38269 + - uid: 38703 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-18.5 parent: 2 - - uid: 38270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-18.5 - parent: 2 - - uid: 38271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-17.5 - parent: 2 - - uid: 38272 + - uid: 38704 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,-18.5 parent: 2 - - uid: 38273 + - uid: 38705 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,-14.5 parent: 2 - - uid: 38274 + - uid: 38706 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-14.5 parent: 2 - - uid: 38275 + - uid: 38707 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,2.5 parent: 2 - - uid: 38276 + - uid: 38708 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,3.5 parent: 2 - - uid: 38277 + - uid: 38709 components: - type: Transform rot: 1.5707963267948966 rad pos: 82.5,2.5 parent: 2 - - uid: 38278 + - uid: 38710 components: - type: Transform pos: -15.5,-29.5 parent: 2 - - uid: 38279 + - uid: 38711 components: - type: Transform pos: -15.5,-28.5 parent: 2 - - uid: 38280 + - uid: 38712 components: - type: Transform pos: -15.5,-27.5 parent: 2 - - uid: 38281 + - uid: 38713 components: - type: Transform pos: -3.5,-29.5 parent: 2 - - uid: 38282 + - uid: 38714 components: - type: Transform pos: -15.5,-26.5 parent: 2 - - uid: 38283 + - uid: 38715 components: - type: Transform pos: -15.5,-25.5 parent: 2 - - uid: 38284 + - uid: 38716 components: - type: Transform pos: -15.5,-21.5 parent: 2 - - uid: 38285 + - uid: 38717 components: - type: Transform pos: -15.5,-20.5 parent: 2 - - uid: 38286 + - uid: 38718 components: - type: Transform pos: -15.5,-19.5 parent: 2 - - uid: 38287 + - uid: 38719 components: - type: Transform pos: -15.5,-22.5 parent: 2 - - uid: 38288 + - uid: 38720 components: - type: Transform pos: -3.5,-27.5 parent: 2 - - uid: 38289 + - uid: 38721 components: - type: Transform pos: -3.5,-22.5 parent: 2 - - uid: 38290 + - uid: 38722 components: - type: Transform pos: -3.5,-25.5 parent: 2 - - uid: 38291 + - uid: 38723 components: - type: Transform pos: -3.5,-21.5 parent: 2 - - uid: 38292 + - uid: 38724 components: - type: Transform pos: -3.5,-20.5 parent: 2 - - uid: 38293 + - uid: 38725 components: - type: Transform pos: -3.5,-26.5 parent: 2 - - uid: 38294 + - uid: 38726 components: - type: Transform pos: -3.5,-28.5 parent: 2 - - uid: 38295 + - uid: 38727 components: - type: Transform pos: -3.5,-24.5 parent: 2 - - uid: 38296 + - uid: 38728 components: - type: Transform pos: -3.5,-23.5 parent: 2 - - uid: 38297 + - uid: 38729 components: - type: Transform pos: -3.5,-19.5 parent: 2 - - uid: 38298 + - uid: 38730 components: - type: Transform pos: -15.5,-24.5 parent: 2 - - uid: 38299 + - uid: 38731 components: - type: Transform pos: -15.5,-30.5 parent: 2 - - uid: 38300 + - uid: 38732 components: - type: Transform pos: -15.5,-23.5 parent: 2 - - uid: 38301 + - uid: 38733 components: - type: Transform pos: -12.5,-30.5 parent: 2 - - uid: 38302 + - uid: 38734 components: - type: Transform pos: -14.5,-30.5 parent: 2 - - uid: 38303 + - uid: 38735 components: - type: Transform pos: -13.5,-30.5 parent: 2 - - uid: 38304 + - uid: 38736 components: - type: Transform pos: -28.5,53.5 parent: 2 - - uid: 38305 + - uid: 38737 components: - type: Transform pos: 4.5,66.5 parent: 2 - - uid: 38306 + - uid: 38738 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,54.5 parent: 2 - - uid: 38307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,58.5 - parent: 2 - - uid: 38308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,58.5 - parent: 2 - - uid: 38309 + - uid: 38739 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-19.5 parent: 2 - - uid: 38310 + - uid: 38740 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-18.5 parent: 2 - - uid: 38311 + - uid: 38741 components: - type: Transform pos: 14.5,27.5 parent: 2 - - uid: 38312 + - uid: 38742 components: - type: Transform pos: 14.5,26.5 parent: 2 - - uid: 38313 - components: - - type: Transform - pos: 16.5,26.5 - parent: 2 - - uid: 38314 - components: - - type: Transform - pos: 14.5,29.5 - parent: 2 - - uid: 38315 + - uid: 38743 components: - type: Transform pos: 14.5,28.5 parent: 2 - - uid: 38316 - components: - - type: Transform - pos: 17.5,26.5 - parent: 2 - - uid: 38317 + - uid: 38744 components: - type: Transform pos: 3.5,35.5 parent: 2 - - uid: 38318 + - uid: 38745 components: - type: Transform pos: 18.5,26.5 parent: 2 - - uid: 38319 + - uid: 38746 components: - type: Transform pos: 2.5,35.5 parent: 2 - - uid: 38320 + - uid: 38747 components: - type: Transform pos: 6.5,24.5 parent: 2 - - uid: 38321 + - uid: 38748 components: - type: Transform pos: 1.5,35.5 parent: 2 - - uid: 38322 + - uid: 38749 components: - type: Transform pos: 0.5,31.5 parent: 2 - - uid: 38323 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,6.5 - parent: 2 - - uid: 38324 + - uid: 38750 components: - type: Transform rot: -1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - - uid: 38325 + - uid: 38751 components: - type: Transform pos: 4.5,35.5 parent: 2 - - uid: 38326 + - uid: 38752 components: - type: Transform pos: 5.5,35.5 parent: 2 - - uid: 38327 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,5.5 - parent: 2 - - uid: 38328 + - uid: 38753 components: - type: Transform pos: 40.5,30.5 parent: 2 - - uid: 38329 + - uid: 38754 components: - type: Transform pos: 41.5,30.5 parent: 2 - - uid: 38330 + - uid: 38755 components: - type: Transform pos: 39.5,29.5 parent: 2 - - uid: 38331 + - uid: 38756 components: - type: Transform pos: 42.5,30.5 parent: 2 - - uid: 38332 + - uid: 38757 components: - type: Transform pos: 39.5,30.5 parent: 2 - - uid: 38333 + - uid: 38758 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,3.5 parent: 2 - - uid: 38334 + - uid: 38759 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,26.5 parent: 2 - - uid: 38335 + - uid: 38760 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,17.5 parent: 2 - - uid: 38336 + - uid: 38761 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,3.5 parent: 2 - - uid: 38337 + - uid: 38762 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 - - uid: 38338 + - uid: 38763 components: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 38339 + - uid: 38764 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,2.5 parent: 2 - - uid: 38340 + - uid: 38765 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-2.5 parent: 2 - - uid: 38341 + - uid: 38766 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-1.5 parent: 2 - - uid: 38342 + - uid: 38767 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,26.5 parent: 2 - - uid: 38343 + - uid: 38768 components: - type: Transform rot: 1.5707963267948966 rad pos: 35.5,26.5 parent: 2 - - uid: 38344 + - uid: 38769 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,16.5 parent: 2 - - uid: 38345 + - uid: 38770 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-19.5 parent: 2 - - uid: 38346 + - uid: 38771 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-13.5 parent: 2 - - uid: 38347 + - uid: 38772 components: - type: Transform pos: 20.5,16.5 parent: 2 - - uid: 38348 + - uid: 38773 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-13.5 parent: 2 - - uid: 38349 + - uid: 38774 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-2.5 parent: 2 - - uid: 38350 + - uid: 38775 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,-18.5 parent: 2 - - uid: 38351 + - uid: 38776 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,16.5 parent: 2 - - uid: 38352 + - uid: 38777 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,26.5 parent: 2 - - uid: 38353 + - uid: 38778 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,16.5 parent: 2 - - uid: 38354 + - uid: 38779 components: - type: Transform pos: 22.5,14.5 parent: 2 - - uid: 38355 + - uid: 38780 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,26.5 parent: 2 - - uid: 38356 + - uid: 38781 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,3.5 parent: 2 - - uid: 38357 + - uid: 38782 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,14.5 parent: 2 - - uid: 38358 + - uid: 38783 components: - type: Transform rot: -1.5707963267948966 rad pos: 22.5,-18.5 parent: 2 - - uid: 38359 + - uid: 38784 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-19.5 parent: 2 - - uid: 38360 + - uid: 38785 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-14.5 parent: 2 - - uid: 38361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 2 - - uid: 38362 + - uid: 38786 components: - type: Transform pos: 21.5,16.5 parent: 2 - - uid: 38363 + - uid: 38787 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 2 - - uid: 38364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,7.5 - parent: 2 - - uid: 38365 + - uid: 38788 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,16.5 parent: 2 - - uid: 38366 + - uid: 38789 components: - type: Transform pos: 18.5,19.5 parent: 2 - - uid: 38367 + - uid: 38790 components: - type: Transform pos: 14.5,23.5 parent: 2 - - uid: 38368 + - uid: 38791 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,4.5 parent: 2 - - uid: 38369 + - uid: 38792 components: - type: Transform pos: 24.5,23.5 parent: 2 - - uid: 38370 + - uid: 38793 components: - type: Transform pos: 22.5,16.5 parent: 2 - - uid: 38371 + - uid: 38794 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,7.5 parent: 2 - - uid: 38372 + - uid: 38795 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,16.5 parent: 2 - - uid: 38373 + - uid: 38796 components: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 38374 + - uid: 38797 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,27.5 parent: 2 - - uid: 38375 + - uid: 38798 components: - type: Transform pos: 22.5,23.5 parent: 2 - - uid: 38376 + - uid: 38799 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,5.5 parent: 2 - - uid: 38377 + - uid: 38800 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,15.5 parent: 2 - - uid: 38378 + - uid: 38801 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,16.5 parent: 2 - - uid: 38379 + - uid: 38802 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,16.5 parent: 2 - - uid: 38380 + - uid: 38803 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,6.5 parent: 2 - - uid: 38381 + - uid: 38804 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,13.5 parent: 2 - - uid: 38382 + - uid: 38805 components: - type: Transform rot: -1.5707963267948966 rad pos: 30.5,16.5 parent: 2 - - uid: 38383 + - uid: 38806 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,3.5 parent: 2 - - uid: 38384 + - uid: 38807 components: - type: Transform pos: 19.5,28.5 parent: 2 - - uid: 38385 + - uid: 38808 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,3.5 parent: 2 - - uid: 38386 + - uid: 38809 components: - type: Transform pos: 19.5,23.5 parent: 2 - - uid: 38387 + - uid: 38810 components: - type: Transform rot: -1.5707963267948966 rad pos: 34.5,16.5 parent: 2 - - uid: 38388 + - uid: 38811 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,7.5 parent: 2 - - uid: 38389 + - uid: 38812 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,16.5 parent: 2 - - uid: 38390 + - uid: 38813 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,16.5 parent: 2 - - uid: 38391 + - uid: 38814 components: - type: Transform pos: 19.5,29.5 parent: 2 - - uid: 38392 + - uid: 38815 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,17.5 parent: 2 - - uid: 38393 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,7.5 - parent: 2 - - uid: 38394 + - uid: 38816 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,3.5 parent: 2 - - uid: 38395 + - uid: 38817 components: - type: Transform pos: 25.5,18.5 parent: 2 - - uid: 38396 + - uid: 38818 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,16.5 parent: 2 - - uid: 38397 + - uid: 38819 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,16.5 parent: 2 - - uid: 38398 + - uid: 38820 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,29.5 parent: 2 - - uid: 38399 + - uid: 38821 components: - type: Transform pos: 25.5,17.5 parent: 2 - - uid: 38400 + - uid: 38822 components: - type: Transform pos: 25.5,20.5 parent: 2 - - uid: 38401 + - uid: 38823 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,21.5 parent: 2 - - uid: 38402 + - uid: 38824 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,22.5 parent: 2 - - uid: 38403 + - uid: 38825 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 - - uid: 38404 + - uid: 38826 components: - type: Transform pos: 25.5,19.5 parent: 2 - - uid: 38405 + - uid: 38827 components: - type: Transform pos: 19.5,27.5 parent: 2 - - uid: 38406 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,7.5 - parent: 2 - - uid: 38407 + - uid: 38828 components: - type: Transform pos: 20.5,23.5 parent: 2 - - uid: 38408 + - uid: 38829 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,4.5 parent: 2 - - uid: 38409 + - uid: 38830 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,3.5 parent: 2 - - uid: 38410 + - uid: 38831 components: - type: Transform rot: 3.141592653589793 rad pos: 35.5,25.5 parent: 2 - - uid: 38411 + - uid: 38832 components: - type: Transform pos: 19.5,26.5 parent: 2 - - uid: 38412 + - uid: 38833 components: - type: Transform pos: -21.5,48.5 parent: 2 - - uid: 38413 + - uid: 38834 components: - type: Transform pos: -20.5,48.5 parent: 2 - - uid: 38414 + - uid: 38835 components: - type: Transform pos: -19.5,50.5 parent: 2 - - uid: 38415 + - uid: 38836 components: - type: Transform pos: -19.5,48.5 parent: 2 - - uid: 38416 + - uid: 38837 components: - type: Transform pos: 13.5,30.5 parent: 2 - - uid: 38417 + - uid: 38838 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,57.5 parent: 2 - - uid: 38418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,58.5 - parent: 2 - - uid: 38419 + - uid: 38839 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,56.5 parent: 2 - - uid: 38420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,58.5 - parent: 2 - - uid: 38421 + - uid: 38840 components: - type: Transform rot: 1.5707963267948966 rad pos: -24.5,58.5 parent: 2 - - uid: 38422 + - uid: 38841 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,53.5 parent: 2 - - uid: 38423 + - uid: 38842 components: - type: Transform pos: 36.5,30.5 parent: 2 - - uid: 38424 + - uid: 38843 components: - type: Transform pos: 15.5,42.5 parent: 2 - - uid: 38425 + - uid: 38844 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,44.5 parent: 2 - - uid: 38426 + - uid: 38845 components: - type: Transform pos: 23.5,41.5 parent: 2 - - uid: 38427 + - uid: 38846 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,42.5 parent: 2 - - uid: 38428 + - uid: 38847 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,41.5 parent: 2 - - uid: 38429 + - uid: 38848 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,42.5 parent: 2 - - uid: 38430 + - uid: 38849 components: - type: Transform pos: 38.5,30.5 parent: 2 - - uid: 38431 + - uid: 38850 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-2.5 parent: 2 - - uid: 38432 + - uid: 38851 components: - type: Transform pos: 24.5,41.5 parent: 2 - - uid: 38433 + - uid: 38852 components: - type: Transform pos: 39.5,27.5 parent: 2 - - uid: 38434 + - uid: 38853 components: - type: Transform pos: 19.5,17.5 parent: 2 - - uid: 38435 + - uid: 38854 components: - type: Transform pos: -23.5,48.5 parent: 2 - - uid: 38436 + - uid: 38855 components: - type: Transform pos: -24.5,48.5 parent: 2 - - uid: 38437 + - uid: 38856 components: - type: Transform pos: -22.5,48.5 parent: 2 - - uid: 38438 + - uid: 38857 components: - type: Transform pos: 22.5,41.5 parent: 2 - - uid: 38439 + - uid: 38858 components: - type: Transform pos: 22.5,43.5 parent: 2 - - uid: 38440 + - uid: 38859 components: - type: Transform pos: 24.5,42.5 parent: 2 - - uid: 38441 + - uid: 38860 components: - type: Transform pos: 22.5,42.5 parent: 2 - - uid: 38442 + - uid: 38861 components: - type: Transform pos: 26.5,41.5 parent: 2 - - uid: 38443 + - uid: 38862 components: - type: Transform pos: 65.5,11.5 parent: 2 - - uid: 38444 + - uid: 38863 components: - type: Transform rot: 3.141592653589793 rad pos: 41.5,26.5 parent: 2 - - uid: 38445 + - uid: 38864 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,24.5 parent: 2 - - uid: 38446 + - uid: 38865 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,23.5 parent: 2 - - uid: 38447 + - uid: 38866 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,21.5 parent: 2 - - uid: 38448 + - uid: 38867 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,22.5 parent: 2 - - uid: 38449 + - uid: 38868 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,20.5 parent: 2 - - uid: 38450 + - uid: 38869 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,19.5 parent: 2 - - uid: 38451 + - uid: 38870 components: - type: Transform pos: 43.5,-18.5 parent: 2 - - uid: 38452 + - uid: 38871 components: - type: Transform pos: 43.5,-19.5 parent: 2 - - uid: 38453 + - uid: 38872 components: - type: Transform pos: 45.5,-17.5 parent: 2 - - uid: 38454 - components: - - type: Transform - pos: 46.5,-12.5 - parent: 2 - - uid: 38455 + - uid: 38873 components: - type: Transform pos: 46.5,-20.5 parent: 2 - - uid: 38456 + - uid: 38874 components: - type: Transform pos: 46.5,-17.5 parent: 2 - - uid: 38457 + - uid: 38875 components: - type: Transform pos: 46.5,-18.5 parent: 2 - - uid: 38458 + - uid: 38876 components: - type: Transform + rot: -1.5707963267948966 rad pos: 44.5,-17.5 parent: 2 - - uid: 38459 + - uid: 38877 components: - type: Transform pos: 62.5,-4.5 parent: 2 - - uid: 38460 - components: - - type: Transform - pos: 45.5,-13.5 - parent: 2 - - uid: 38461 - components: - - type: Transform - pos: 45.5,-14.5 - parent: 2 - - uid: 38462 + - uid: 38878 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,28.5 parent: 2 - - uid: 38463 - components: - - type: Transform - pos: 45.5,-12.5 - parent: 2 - - uid: 38464 - components: - - type: Transform - pos: 44.5,-14.5 - parent: 2 - - uid: 38465 - components: - - type: Transform - pos: 44.5,-15.5 - parent: 2 - - uid: 38466 - components: - - type: Transform - pos: 43.5,-14.5 - parent: 2 - - uid: 38467 + - uid: 38879 components: - type: Transform - pos: 43.5,-15.5 + rot: 1.5707963267948966 rad + pos: 44.5,-12.5 parent: 2 - - uid: 38468 + - uid: 38880 components: - type: Transform pos: 43.5,-17.5 parent: 2 - - uid: 38469 - components: - - type: Transform - pos: 42.5,-15.5 - parent: 2 - - uid: 38470 - components: - - type: Transform - pos: 42.5,-18.5 - parent: 2 - - uid: 38471 - components: - - type: Transform - pos: 42.5,-17.5 - parent: 2 - - uid: 38472 - components: - - type: Transform - pos: 60.5,-31.5 - parent: 2 - - uid: 38473 + - uid: 38881 components: - type: Transform pos: 50.5,13.5 parent: 2 - - uid: 38474 + - uid: 38882 components: - type: Transform pos: 51.5,13.5 parent: 2 - - uid: 38475 + - uid: 38883 components: - type: Transform pos: 65.5,-51.5 parent: 2 - - uid: 38476 + - uid: 38884 components: - type: Transform pos: 71.5,-53.5 parent: 2 - - uid: 38477 + - uid: 38885 components: - type: Transform pos: 71.5,-52.5 parent: 2 - - uid: 38478 + - uid: 38886 components: - type: Transform pos: 53.5,13.5 parent: 2 - - uid: 38479 + - uid: 38887 components: - type: Transform pos: 54.5,13.5 parent: 2 - - uid: 38480 + - uid: 38888 components: - type: Transform pos: 63.5,9.5 parent: 2 - - uid: 38481 + - uid: 38889 components: - type: Transform pos: 52.5,13.5 parent: 2 - - uid: 38482 + - uid: 38890 components: - type: Transform pos: 48.5,13.5 parent: 2 - - uid: 38483 + - uid: 38891 components: - type: Transform pos: 91.5,-40.5 parent: 2 - - uid: 38484 + - uid: 38892 components: - type: Transform pos: 65.5,-54.5 parent: 2 - - uid: 38485 + - uid: 38893 components: - type: Transform pos: 65.5,-53.5 parent: 2 - - uid: 38486 + - uid: 38894 components: - type: Transform pos: 63.5,2.5 parent: 2 - - uid: 38487 + - uid: 38895 components: - type: Transform pos: 91.5,-41.5 parent: 2 - - uid: 38488 + - uid: 38896 components: - type: Transform pos: 54.5,14.5 parent: 2 - - uid: 38489 + - uid: 38897 components: - type: Transform pos: 71.5,-51.5 parent: 2 - - uid: 38490 + - uid: 38898 components: - type: Transform pos: 24.5,44.5 parent: 2 - - uid: 38491 + - uid: 38899 components: - type: Transform pos: 23.5,44.5 parent: 2 - - uid: 38492 + - uid: 38900 components: - type: Transform pos: 54.5,9.5 parent: 2 - - uid: 38493 + - uid: 38901 components: - type: Transform pos: 65.5,-21.5 parent: 2 - - uid: 38494 + - uid: 38902 components: - type: Transform pos: 62.5,13.5 parent: 2 - - uid: 38495 + - uid: 38903 components: - type: Transform pos: 63.5,3.5 parent: 2 - - uid: 38496 + - uid: 38904 components: - type: Transform pos: 58.5,-7.5 parent: 2 - - uid: 38497 + - uid: 38905 components: - type: Transform pos: 54.5,-8.5 parent: 2 - - uid: 38498 + - uid: 38906 components: - type: Transform pos: 59.5,13.5 parent: 2 - - uid: 38499 + - uid: 38907 components: - type: Transform pos: 65.5,-52.5 parent: 2 - - uid: 38500 + - uid: 38908 components: - type: Transform pos: 59.5,-26.5 parent: 2 - - uid: 38501 + - uid: 38909 components: - type: Transform pos: 48.5,9.5 parent: 2 - - uid: 38502 + - uid: 38910 components: - type: Transform pos: 65.5,-20.5 parent: 2 - - uid: 38503 + - uid: 38911 components: - type: Transform pos: 63.5,1.5 parent: 2 - - uid: 38504 + - uid: 38912 components: - type: Transform pos: 63.5,4.5 parent: 2 - - uid: 38505 + - uid: 38913 components: - type: Transform pos: 62.5,-3.5 parent: 2 - - uid: 38506 + - uid: 38914 components: - type: Transform pos: 64.5,13.5 parent: 2 - - uid: 38507 + - uid: 38915 components: - type: Transform pos: 65.5,12.5 parent: 2 - - uid: 38508 + - uid: 38916 components: - type: Transform pos: 65.5,13.5 parent: 2 - - uid: 38509 + - uid: 38917 components: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 38510 + - uid: 38918 components: - type: Transform pos: 50.5,8.5 parent: 2 - - uid: 38511 + - uid: 38919 components: - type: Transform pos: 68.5,4.5 parent: 2 - - uid: 38512 + - uid: 38920 components: - type: Transform pos: 65.5,8.5 parent: 2 - - uid: 38513 + - uid: 38921 components: - type: Transform pos: 68.5,8.5 parent: 2 - - uid: 38514 + - uid: 38922 components: - type: Transform pos: 65.5,9.5 parent: 2 - - uid: 38515 + - uid: 38923 components: - type: Transform pos: 65.5,10.5 parent: 2 - - uid: 38516 + - uid: 38924 components: - type: Transform pos: 67.5,8.5 parent: 2 - - uid: 38517 + - uid: 38925 components: - type: Transform pos: 66.5,8.5 parent: 2 - - uid: 38518 + - uid: 38926 components: - type: Transform pos: 68.5,7.5 parent: 2 - - uid: 38519 + - uid: 38927 components: - type: Transform pos: 68.5,5.5 parent: 2 - - uid: 38520 + - uid: 38928 components: - type: Transform pos: 64.5,5.5 parent: 2 - - uid: 38521 + - uid: 38929 components: - type: Transform pos: 65.5,5.5 parent: 2 - - uid: 38522 + - uid: 38930 components: - type: Transform pos: 66.5,5.5 parent: 2 - - uid: 38523 + - uid: 38931 components: - type: Transform pos: 86.5,-46.5 parent: 2 - - uid: 38524 + - uid: 38932 components: - type: Transform pos: -26.5,48.5 parent: 2 - - uid: 38525 + - uid: 38933 components: - type: Transform pos: -27.5,48.5 parent: 2 - - uid: 38526 + - uid: 38934 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,47.5 parent: 2 - - uid: 38527 + - uid: 38935 components: - type: Transform pos: -7.5,-18.5 parent: 2 - - uid: 38528 + - uid: 38936 components: - type: Transform pos: -5.5,-18.5 parent: 2 - - uid: 38529 + - uid: 38937 components: - type: Transform pos: -11.5,-18.5 parent: 2 - - uid: 38530 + - uid: 38938 components: - type: Transform pos: -6.5,-18.5 parent: 2 - - uid: 38531 + - uid: 38939 components: - type: Transform pos: -4.5,-18.5 parent: 2 - - uid: 38532 + - uid: 38940 components: - type: Transform pos: -3.5,-18.5 parent: 2 - - uid: 38533 + - uid: 38941 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-18.5 parent: 2 - - uid: 38534 + - uid: 38942 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 - - uid: 38535 + - uid: 38943 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,15.5 parent: 2 - - uid: 38536 + - uid: 38944 components: - type: Transform pos: 5.5,50.5 parent: 2 - - uid: 38537 + - uid: 38945 components: - type: Transform pos: 46.5,-21.5 parent: 2 - - uid: 38538 + - uid: 38946 components: - type: Transform pos: 26.5,44.5 parent: 2 - - uid: 38539 + - uid: 38947 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,25.5 parent: 2 - - uid: 38540 + - uid: 38948 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,16.5 parent: 2 - - uid: 38541 + - uid: 38949 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,17.5 parent: 2 - - uid: 38542 + - uid: 38950 components: - type: Transform pos: 22.5,44.5 parent: 2 - - uid: 38543 + - uid: 38951 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,16.5 parent: 2 - - uid: 38544 + - uid: 38952 components: - type: Transform pos: 27.5,44.5 parent: 2 - - uid: 38545 + - uid: 38953 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,41.5 parent: 2 - - uid: 38546 + - uid: 38954 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,16.5 parent: 2 - - uid: 38547 + - uid: 38955 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,44.5 parent: 2 - - uid: 38548 + - uid: 38956 components: - type: Transform pos: 12.5,42.5 parent: 2 - - uid: 38549 + - uid: 38957 components: - type: Transform pos: 17.5,44.5 parent: 2 - - uid: 38550 + - uid: 38958 components: - type: Transform pos: 11.5,42.5 parent: 2 - - uid: 38551 + - uid: 38959 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,25.5 parent: 2 - - uid: 38552 + - uid: 38960 components: - type: Transform pos: 6.5,42.5 parent: 2 - - uid: 38553 + - uid: 38961 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,16.5 parent: 2 - - uid: 38554 + - uid: 38962 components: - type: Transform pos: 25.5,44.5 parent: 2 - - uid: 38555 + - uid: 38963 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,26.5 parent: 2 - - uid: 38556 + - uid: 38964 components: - type: Transform pos: 19.5,30.5 parent: 2 - - uid: 38557 + - uid: 38965 components: - type: Transform pos: 59.5,5.5 parent: 2 - - uid: 38558 + - uid: 38966 components: - type: Transform pos: 55.5,5.5 parent: 2 - - uid: 38559 + - uid: 38967 components: - type: Transform pos: 58.5,-35.5 parent: 2 - - uid: 38560 + - uid: 38968 components: - type: Transform pos: 19.5,31.5 parent: 2 - - uid: 38561 + - uid: 38969 components: - type: Transform pos: 52.5,-7.5 parent: 2 - - uid: 38562 + - uid: 38970 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,41.5 parent: 2 - - uid: 38563 + - uid: 38971 components: - type: Transform pos: 14.5,41.5 parent: 2 - - uid: 38564 + - uid: 38972 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,27.5 parent: 2 - - uid: 38565 + - uid: 38973 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,17.5 parent: 2 - - uid: 38566 + - uid: 38974 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,16.5 parent: 2 - - uid: 38567 + - uid: 38975 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,26.5 parent: 2 - - uid: 38568 + - uid: 38976 components: - type: Transform pos: 23.5,39.5 parent: 2 - - uid: 38569 + - uid: 38977 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,23.5 parent: 2 - - uid: 38570 + - uid: 38978 components: - type: Transform pos: 67.5,3.5 parent: 2 - - uid: 38571 + - uid: 38979 components: - type: Transform pos: 18.5,37.5 parent: 2 - - uid: 38572 + - uid: 38980 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,16.5 parent: 2 - - uid: 38573 + - uid: 38981 components: - type: Transform pos: 10.5,42.5 parent: 2 - - uid: 38574 + - uid: 38982 components: - type: Transform pos: 27.5,43.5 parent: 2 - - uid: 38575 + - uid: 38983 components: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 38576 + - uid: 38984 components: - type: Transform pos: 34.5,30.5 parent: 2 - - uid: 38577 + - uid: 38985 components: - type: Transform pos: 33.5,30.5 parent: 2 - - uid: 38578 + - uid: 38986 components: - type: Transform pos: 64.5,-32.5 parent: 2 - - uid: 38579 + - uid: 38987 components: - type: Transform pos: 24.5,30.5 parent: 2 - - uid: 38580 + - uid: 38988 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,20.5 parent: 2 - - uid: 38581 + - uid: 38989 components: - type: Transform pos: -21.5,41.5 parent: 2 - - uid: 38582 + - uid: 38990 components: - type: Transform pos: 26.5,30.5 parent: 2 - - uid: 38583 + - uid: 38991 components: - type: Transform pos: 23.5,30.5 parent: 2 - - uid: 38584 + - uid: 38992 components: - type: Transform pos: 6.5,40.5 parent: 2 - - uid: 38585 + - uid: 38993 components: - type: Transform pos: -14.5,17.5 parent: 2 - - uid: 38586 + - uid: 38994 components: - type: Transform pos: -14.5,18.5 parent: 2 - - uid: 38587 + - uid: 38995 components: - type: Transform pos: 60.5,-21.5 parent: 2 - - uid: 38588 + - uid: 38996 components: - type: Transform pos: -8.5,17.5 parent: 2 - - uid: 38589 + - uid: 38997 components: - type: Transform pos: 24.5,37.5 parent: 2 - - uid: 38590 + - uid: 38998 components: - type: Transform pos: -14.5,19.5 parent: 2 - - uid: 38591 + - uid: 38999 components: - type: Transform pos: -15.5,45.5 parent: 2 - - uid: 38592 + - uid: 39000 components: - type: Transform pos: -11.5,-29.5 parent: 2 - - uid: 38593 + - uid: 39001 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,22.5 parent: 2 - - uid: 38594 + - uid: 39002 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,24.5 parent: 2 - - uid: 38595 + - uid: 39003 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,24.5 parent: 2 - - uid: 38596 + - uid: 39004 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,26.5 parent: 2 - - uid: 38597 + - uid: 39005 components: - type: Transform pos: 71.5,-48.5 parent: 2 - - uid: 38598 + - uid: 39006 components: - type: Transform pos: -7.5,-29.5 parent: 2 - - uid: 38599 + - uid: 39007 components: - type: Transform pos: -11.5,-19.5 parent: 2 - - uid: 38600 + - uid: 39008 components: - type: Transform pos: -7.5,-19.5 parent: 2 - - uid: 38601 + - uid: 39009 components: - type: Transform pos: -13.5,17.5 parent: 2 - - uid: 38602 + - uid: 39010 components: - type: Transform pos: -8.5,19.5 parent: 2 - - uid: 38603 + - uid: 39011 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,24.5 parent: 2 - - uid: 38604 + - uid: 39012 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,25.5 parent: 2 - - uid: 38605 + - uid: 39013 components: - type: Transform pos: 0.5,34.5 parent: 2 - - uid: 38606 + - uid: 39014 components: - type: Transform pos: 0.5,35.5 parent: 2 - - uid: 38607 + - uid: 39015 components: - type: Transform pos: 0.5,42.5 parent: 2 - - uid: 38608 + - uid: 39016 components: - type: Transform pos: 0.5,33.5 parent: 2 - - uid: 38609 + - uid: 39017 components: - type: Transform pos: 0.5,32.5 parent: 2 - - uid: 38610 + - uid: 39018 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,46.5 parent: 2 - - uid: 38611 + - uid: 39019 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,42.5 parent: 2 - - uid: 38612 + - uid: 39020 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,23.5 parent: 2 - - uid: 38613 + - uid: 39021 components: - type: Transform pos: -2.5,35.5 parent: 2 - - uid: 38614 + - uid: 39022 components: - type: Transform pos: -2.5,44.5 parent: 2 - - uid: 38615 + - uid: 39023 components: - type: Transform pos: -25.5,52.5 parent: 2 - - uid: 38616 + - uid: 39024 components: - type: Transform pos: -25.5,50.5 parent: 2 - - uid: 38617 + - uid: 39025 components: - type: Transform pos: -19.5,52.5 parent: 2 - - uid: 38618 + - uid: 39026 components: - type: Transform pos: -19.5,51.5 parent: 2 - - uid: 38619 + - uid: 39027 components: - type: Transform pos: -18.5,45.5 parent: 2 - - uid: 38620 + - uid: 39028 components: - type: Transform pos: -19.5,47.5 parent: 2 - - uid: 38621 + - uid: 39029 components: - type: Transform pos: -19.5,45.5 parent: 2 - - uid: 38622 + - uid: 39030 components: - type: Transform pos: 77.5,-40.5 parent: 2 - - uid: 38623 + - uid: 39031 components: - type: Transform pos: 72.5,-49.5 parent: 2 - - uid: 38624 + - uid: 39032 components: - type: Transform pos: 73.5,-42.5 parent: 2 - - uid: 38625 + - uid: 39033 components: - type: Transform pos: 65.5,4.5 parent: 2 - - uid: 38626 + - uid: 39034 components: - type: Transform pos: 52.5,-6.5 parent: 2 - - uid: 38627 + - uid: 39035 components: - type: Transform pos: 55.5,8.5 parent: 2 - - uid: 38628 + - uid: 39036 components: - type: Transform pos: 56.5,-25.5 parent: 2 - - uid: 38629 + - uid: 39037 components: - type: Transform pos: 53.5,5.5 parent: 2 - - uid: 38630 + - uid: 39038 components: - type: Transform pos: 90.5,-45.5 parent: 2 - - uid: 38631 + - uid: 39039 components: - type: Transform pos: 49.5,5.5 parent: 2 - - uid: 38632 + - uid: 39040 components: - type: Transform pos: 62.5,5.5 parent: 2 - - uid: 38633 + - uid: 39041 components: - type: Transform pos: 52.5,5.5 parent: 2 - - uid: 38634 + - uid: 39042 components: - type: Transform pos: 58.5,-0.5 parent: 2 - - uid: 38635 + - uid: 39043 components: - type: Transform pos: 60.5,5.5 parent: 2 - - uid: 38636 + - uid: 39044 components: - type: Transform pos: 52.5,-8.5 parent: 2 - - uid: 38637 + - uid: 39045 components: - type: Transform pos: 58.5,8.5 parent: 2 - - uid: 38638 + - uid: 39046 components: - type: Transform pos: 54.5,5.5 parent: 2 - - uid: 38639 + - uid: 39047 components: - type: Transform pos: 50.5,5.5 parent: 2 - - uid: 38640 + - uid: 39048 components: - type: Transform pos: 57.5,8.5 parent: 2 - - uid: 38641 + - uid: 39049 components: - type: Transform pos: 32.5,35.5 parent: 2 - - uid: 38642 + - uid: 39050 components: - type: Transform pos: 19.5,37.5 parent: 2 - - uid: 38643 + - uid: 39051 components: - type: Transform pos: -0.5,35.5 parent: 2 - - uid: 38644 + - uid: 39052 components: - type: Transform pos: 23.5,32.5 parent: 2 - - uid: 38645 + - uid: 39053 components: - type: Transform pos: 6.5,33.5 parent: 2 - - uid: 38646 + - uid: 39054 components: - type: Transform pos: 6.5,36.5 parent: 2 - - uid: 38647 + - uid: 39055 components: - type: Transform pos: 6.5,35.5 parent: 2 - - uid: 38648 + - uid: 39056 components: - type: Transform pos: 6.5,31.5 parent: 2 - - uid: 38649 + - uid: 39057 components: - type: Transform pos: 6.5,32.5 parent: 2 - - uid: 38650 + - uid: 39058 components: - type: Transform pos: -12.5,45.5 parent: 2 - - uid: 38651 + - uid: 39059 components: - type: Transform pos: 6.5,34.5 parent: 2 - - uid: 38652 + - uid: 39060 components: - type: Transform pos: 23.5,31.5 parent: 2 - - uid: 38653 + - uid: 39061 components: - type: Transform pos: -14.5,20.5 parent: 2 - - uid: 38654 + - uid: 39062 components: - type: Transform pos: 54.5,-30.5 parent: 2 - - uid: 38655 + - uid: 39063 components: - type: Transform pos: 23.5,36.5 parent: 2 - - uid: 38656 + - uid: 39064 components: - type: Transform pos: -8.5,20.5 parent: 2 - - uid: 38657 + - uid: 39065 components: - type: Transform pos: 27.5,35.5 parent: 2 - - uid: 38658 + - uid: 39066 components: - type: Transform pos: 2.5,50.5 parent: 2 - - uid: 38659 + - uid: 39067 components: - type: Transform pos: 27.5,37.5 parent: 2 - - uid: 38660 + - uid: 39068 components: - type: Transform pos: 26.5,37.5 parent: 2 - - uid: 38661 + - uid: 39069 components: - type: Transform pos: 29.5,40.5 parent: 2 - - uid: 38662 + - uid: 39070 components: - type: Transform pos: 54.5,-32.5 parent: 2 - - uid: 38663 + - uid: 39071 components: - type: Transform pos: 33.5,35.5 parent: 2 - - uid: 38664 + - uid: 39072 components: - type: Transform pos: 23.5,37.5 parent: 2 - - uid: 38665 + - uid: 39073 components: - type: Transform pos: 27.5,36.5 parent: 2 - - uid: 38666 + - uid: 39074 components: - type: Transform pos: 19.5,36.5 parent: 2 - - uid: 38667 + - uid: 39075 components: - type: Transform pos: 7.5,46.5 parent: 2 - - uid: 38668 + - uid: 39076 components: - type: Transform pos: -9.5,17.5 parent: 2 - - uid: 38669 + - uid: 39077 components: - type: Transform pos: 21.5,40.5 parent: 2 - - uid: 38670 + - uid: 39078 components: - type: Transform pos: 1.5,50.5 parent: 2 - - uid: 38671 + - uid: 39079 components: - type: Transform pos: 27.5,38.5 parent: 2 - - uid: 38672 + - uid: 39080 components: - type: Transform pos: 54.5,-33.5 parent: 2 - - uid: 38673 + - uid: 39081 components: - type: Transform pos: 54.5,-31.5 parent: 2 - - uid: 38674 + - uid: 39082 components: - type: Transform pos: 54.5,-34.5 parent: 2 - - uid: 38675 + - uid: 39083 components: - type: Transform pos: 27.5,39.5 parent: 2 - - uid: 38676 + - uid: 39084 components: - type: Transform pos: 27.5,40.5 parent: 2 - - uid: 38677 + - uid: 39085 components: - type: Transform pos: -17.5,37.5 parent: 2 - - uid: 38678 + - uid: 39086 components: - type: Transform pos: -13.5,45.5 parent: 2 - - uid: 38679 + - uid: 39087 components: - type: Transform pos: 28.5,35.5 parent: 2 - - uid: 38680 + - uid: 39088 components: - type: Transform pos: 30.5,40.5 parent: 2 - - uid: 38681 + - uid: 39089 components: - type: Transform pos: 30.5,35.5 parent: 2 - - uid: 38682 + - uid: 39090 components: - type: Transform pos: 28.5,40.5 parent: 2 - - uid: 38683 + - uid: 39091 components: - type: Transform pos: 31.5,35.5 parent: 2 - - uid: 38684 + - uid: 39092 components: - type: Transform pos: 31.5,39.5 parent: 2 - - uid: 38685 + - uid: 39093 components: - type: Transform pos: 31.5,40.5 parent: 2 - - uid: 38686 + - uid: 39094 components: - type: Transform pos: 34.5,36.5 parent: 2 - - uid: 38687 + - uid: 39095 components: - type: Transform pos: 34.5,35.5 parent: 2 - - uid: 38688 + - uid: 39096 components: - type: Transform pos: 35.5,35.5 parent: 2 - - uid: 38689 + - uid: 39097 components: - type: Transform pos: -3.5,35.5 parent: 2 - - uid: 38690 + - uid: 39098 components: - type: Transform pos: -3.5,36.5 parent: 2 - - uid: 38691 + - uid: 39099 components: - type: Transform pos: -3.5,34.5 parent: 2 - - uid: 38692 + - uid: 39100 components: - type: Transform pos: 54.5,-29.5 parent: 2 - - uid: 38693 + - uid: 39101 components: - type: Transform pos: 6.5,39.5 parent: 2 - - uid: 38694 + - uid: 39102 components: - type: Transform pos: 6.5,38.5 parent: 2 - - uid: 38695 + - uid: 39103 components: - type: Transform pos: -13.5,37.5 parent: 2 - - uid: 38696 - components: - - type: Transform - pos: 64.5,-33.5 - parent: 2 - - uid: 38697 + - uid: 39104 components: - type: Transform pos: -18.5,37.5 parent: 2 - - uid: 38698 + - uid: 39105 components: - type: Transform pos: -16.5,37.5 parent: 2 - - uid: 38699 + - uid: 39106 components: - type: Transform pos: -12.5,37.5 parent: 2 - - uid: 38700 + - uid: 39107 components: - type: Transform pos: -0.5,44.5 parent: 2 - - uid: 38701 + - uid: 39108 components: - type: Transform pos: 48.5,-21.5 parent: 2 - - uid: 38702 + - uid: 39109 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 38703 - components: - - type: Transform - pos: 62.5,-35.5 - parent: 2 - - uid: 38704 + - uid: 39110 components: - type: Transform pos: 68.5,-35.5 parent: 2 - - uid: 38705 + - uid: 39111 components: - type: Transform pos: 55.5,-35.5 parent: 2 - - uid: 38706 + - uid: 39112 components: - type: Transform pos: 60.5,-46.5 parent: 2 - - uid: 38707 + - uid: 39113 components: - type: Transform pos: 63.5,-50.5 parent: 2 - - uid: 38708 + - uid: 39114 components: - type: Transform pos: 60.5,-47.5 parent: 2 - - uid: 38709 + - uid: 39115 components: - type: Transform pos: 43.5,-20.5 parent: 2 - - uid: 38710 + - uid: 39116 components: - type: Transform pos: 25.5,-34.5 parent: 2 - - uid: 38711 + - uid: 39117 components: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 38712 + - uid: 39118 components: - type: Transform pos: 73.5,-36.5 parent: 2 - - uid: 38713 + - uid: 39119 components: - type: Transform pos: 68.5,-32.5 parent: 2 - - uid: 38714 + - uid: 39120 components: - type: Transform pos: 68.5,-30.5 parent: 2 - - uid: 38715 + - uid: 39121 components: - type: Transform pos: 68.5,-34.5 parent: 2 - - uid: 38716 + - uid: 39122 components: - type: Transform pos: 68.5,-31.5 parent: 2 - - uid: 38717 + - uid: 39123 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-26.5 parent: 2 - - uid: 38718 + - uid: 39124 components: - type: Transform pos: 62.5,-50.5 parent: 2 - - uid: 38719 + - uid: 39125 components: - type: Transform pos: 68.5,-33.5 parent: 2 - - uid: 38720 + - uid: 39126 components: - type: Transform pos: 54.5,-21.5 parent: 2 - - uid: 38721 + - uid: 39127 components: - type: Transform pos: 44.5,-25.5 parent: 2 - - uid: 38722 + - uid: 39128 components: - type: Transform pos: 49.5,-25.5 parent: 2 - - uid: 38723 + - uid: 39129 components: - type: Transform pos: 91.5,-45.5 parent: 2 - - uid: 38724 + - uid: 39130 components: - type: Transform pos: 50.5,-25.5 parent: 2 - - uid: 38725 + - uid: 39131 components: - type: Transform pos: 52.5,-21.5 parent: 2 - - uid: 38726 + - uid: 39132 components: - type: Transform pos: 56.5,-21.5 parent: 2 - - uid: 38727 + - uid: 39133 components: - type: Transform pos: 57.5,-21.5 parent: 2 - - uid: 38728 + - uid: 39134 components: - type: Transform pos: 55.5,-21.5 parent: 2 - - uid: 38729 + - uid: 39135 components: - type: Transform pos: 71.5,-49.5 parent: 2 - - uid: 38730 + - uid: 39136 components: - type: Transform pos: 61.5,-50.5 parent: 2 - - uid: 38731 + - uid: 39137 components: - type: Transform pos: 53.5,-21.5 parent: 2 - - uid: 38732 + - uid: 39138 components: - type: Transform pos: 51.5,-21.5 parent: 2 - - uid: 38733 + - uid: 39139 components: - type: Transform pos: 47.5,-25.5 parent: 2 - - uid: 38734 + - uid: 39140 components: - type: Transform pos: 48.5,-25.5 parent: 2 - - uid: 38735 + - uid: 39141 components: - type: Transform pos: 82.5,-32.5 parent: 2 - - uid: 38736 + - uid: 39142 components: - type: Transform pos: 19.5,38.5 parent: 2 - - uid: 38737 + - uid: 39143 components: - type: Transform pos: 77.5,-36.5 parent: 2 - - uid: 38738 + - uid: 39144 components: - type: Transform pos: 58.5,-25.5 parent: 2 - - uid: 38739 + - uid: 39145 components: - type: Transform pos: 87.5,-46.5 parent: 2 - - uid: 38740 + - uid: 39146 components: - type: Transform pos: 59.5,-25.5 parent: 2 - - uid: 38741 + - uid: 39147 components: - type: Transform pos: 88.5,-45.5 parent: 2 - - uid: 38742 + - uid: 39148 components: - type: Transform pos: 56.5,-28.5 parent: 2 - - uid: 38743 + - uid: 39149 components: - type: Transform pos: 85.5,-41.5 parent: 2 - - uid: 38744 + - uid: 39150 components: - type: Transform pos: 75.5,-36.5 parent: 2 - - uid: 38745 + - uid: 39151 components: - type: Transform pos: 89.5,-45.5 parent: 2 - - uid: 38746 + - uid: 39152 components: - type: Transform pos: 84.5,-47.5 parent: 2 - - uid: 38747 + - uid: 39153 components: - type: Transform pos: 80.5,-45.5 parent: 2 - - uid: 38748 + - uid: 39154 components: - type: Transform pos: 83.5,-47.5 parent: 2 - - uid: 38749 + - uid: 39155 components: - type: Transform pos: 81.5,-47.5 parent: 2 - - uid: 38750 + - uid: 39156 components: - type: Transform pos: 60.5,-26.5 parent: 2 - - uid: 38751 + - uid: 39157 components: - type: Transform pos: 74.5,-49.5 parent: 2 - - uid: 38752 + - uid: 39158 components: - type: Transform pos: 86.5,-47.5 parent: 2 - - uid: 38753 + - uid: 39159 components: - type: Transform pos: 71.5,-54.5 parent: 2 - - uid: 38754 + - uid: 39160 components: - type: Transform pos: 40.5,-24.5 parent: 2 - - uid: 38755 + - uid: 39161 components: - type: Transform pos: 42.5,-25.5 parent: 2 - - uid: 38756 + - uid: 39162 components: - type: Transform pos: 40.5,-25.5 parent: 2 - - uid: 38757 + - uid: 39163 components: - type: Transform pos: 41.5,-25.5 parent: 2 - - uid: 38758 + - uid: 39164 components: - type: Transform pos: 51.5,5.5 parent: 2 - - uid: 38759 + - uid: 39165 components: - type: Transform pos: 23.5,40.5 parent: 2 - - uid: 38760 + - uid: 39166 components: - type: Transform pos: 43.5,-25.5 parent: 2 - - uid: 38761 + - uid: 39167 components: - type: Transform pos: 39.5,-24.5 parent: 2 - - uid: 38762 + - uid: 39168 components: - type: Transform pos: 59.5,-35.5 parent: 2 - - uid: 38763 + - uid: 39169 components: - type: Transform pos: 50.5,-21.5 parent: 2 - - uid: 38764 + - uid: 39170 components: - type: Transform pos: 19.5,39.5 parent: 2 - - uid: 38765 + - uid: 39171 components: - type: Transform pos: 52.5,-3.5 parent: 2 - - uid: 38766 + - uid: 39172 components: - type: Transform pos: -16.5,45.5 parent: 2 - - uid: 38767 + - uid: 39173 components: - type: Transform pos: -17.5,45.5 parent: 2 - - uid: 38768 + - uid: 39174 components: - type: Transform pos: -25.5,48.5 parent: 2 - - uid: 38769 + - uid: 39175 components: - type: Transform pos: 0.5,44.5 parent: 2 - - uid: 38770 + - uid: 39176 components: - type: Transform pos: 0.5,46.5 parent: 2 - - uid: 38771 + - uid: 39177 components: - type: Transform pos: 58.5,-21.5 parent: 2 - - uid: 38772 + - uid: 39178 components: - type: Transform pos: 62.5,8.5 parent: 2 - - uid: 38773 + - uid: 39179 components: - type: Transform pos: 57.5,5.5 parent: 2 - - uid: 38774 + - uid: 39180 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,21.5 parent: 2 - - uid: 38775 + - uid: 39181 components: - type: Transform rot: -1.5707963267948966 rad pos: 48.5,16.5 parent: 2 - - uid: 38776 + - uid: 39182 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,15.5 parent: 2 - - uid: 38777 + - uid: 39183 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,16.5 parent: 2 - - uid: 38778 + - uid: 39184 components: - type: Transform pos: 35.5,30.5 parent: 2 - - uid: 38779 + - uid: 39185 components: - type: Transform pos: 8.5,42.5 parent: 2 - - uid: 38780 + - uid: 39186 components: - type: Transform pos: 27.5,42.5 parent: 2 - - uid: 38781 + - uid: 39187 components: - type: Transform pos: 7.5,42.5 parent: 2 - - uid: 38782 + - uid: 39188 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,24.5 parent: 2 - - uid: 38783 + - uid: 39189 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-2.5 parent: 2 - - uid: 38784 + - uid: 39190 components: - type: Transform pos: 14.5,42.5 parent: 2 - - uid: 38785 + - uid: 39191 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,44.5 parent: 2 - - uid: 38786 + - uid: 39192 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,25.5 parent: 2 - - uid: 38787 + - uid: 39193 components: - type: Transform pos: 27.5,41.5 parent: 2 - - uid: 38788 + - uid: 39194 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,44.5 parent: 2 - - uid: 38789 + - uid: 39195 components: - type: Transform pos: 9.5,42.5 parent: 2 - - uid: 38790 + - uid: 39196 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,44.5 parent: 2 - - uid: 38791 + - uid: 39197 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,15.5 parent: 2 - - uid: 38792 + - uid: 39198 components: - type: Transform pos: 7.5,30.5 parent: 2 - - uid: 38793 + - uid: 39199 components: - type: Transform pos: 3.5,50.5 parent: 2 - - uid: 38794 + - uid: 39200 components: - type: Transform pos: 17.5,37.5 parent: 2 - - uid: 38795 + - uid: 39201 components: - type: Transform pos: 18.5,30.5 parent: 2 - - uid: 38796 + - uid: 39202 components: - type: Transform pos: 19.5,32.5 parent: 2 - - uid: 38797 + - uid: 39203 components: - type: Transform pos: 19.5,34.5 parent: 2 - - uid: 38798 + - uid: 39204 components: - type: Transform pos: 82.5,-36.5 parent: 2 - - uid: 38799 + - uid: 39205 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,45.5 parent: 2 - - uid: 38800 + - uid: 39206 components: - type: Transform pos: -14.5,-18.5 parent: 2 - - uid: 38801 + - uid: 39207 components: - type: Transform pos: 79.5,-42.5 parent: 2 - - uid: 38802 + - uid: 39208 components: - type: Transform pos: -13.5,-18.5 parent: 2 - - uid: 38803 + - uid: 39209 components: - type: Transform pos: -12.5,-18.5 parent: 2 - - uid: 38804 + - uid: 39210 components: - type: Transform rot: -1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 - - uid: 38805 + - uid: 39211 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 - - uid: 38806 + - uid: 39212 components: - type: Transform pos: -17.5,-18.5 parent: 2 - - uid: 38807 + - uid: 39213 components: - type: Transform pos: -15.5,-18.5 parent: 2 - - uid: 38808 + - uid: 39214 components: - type: Transform pos: 58.5,4.5 parent: 2 - - uid: 38809 + - uid: 39215 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,43.5 parent: 2 - - uid: 38810 + - uid: 39216 components: - type: Transform pos: 75.5,-42.5 parent: 2 - - uid: 38811 + - uid: 39217 components: - type: Transform pos: 8.5,50.5 parent: 2 - - uid: 38812 + - uid: 39218 components: - type: Transform pos: 8.5,44.5 parent: 2 - - uid: 38813 + - uid: 39219 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,15.5 parent: 2 - - uid: 38814 + - uid: 39220 components: - type: Transform pos: 0.5,52.5 parent: 2 - - uid: 38815 + - uid: 39221 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,41.5 parent: 2 - - uid: 38816 + - uid: 39222 components: - type: Transform pos: 0.5,45.5 parent: 2 - - uid: 38817 + - uid: 39223 components: - type: Transform pos: 35.5,31.5 parent: 2 - - uid: 38818 + - uid: 39224 components: - type: Transform pos: 0.5,43.5 parent: 2 - - uid: 38819 + - uid: 39225 components: - type: Transform pos: 14.5,40.5 parent: 2 - - uid: 38820 + - uid: 39226 components: - type: Transform pos: 14.5,38.5 parent: 2 - - uid: 38821 + - uid: 39227 components: - type: Transform pos: 8.5,43.5 parent: 2 - - uid: 38822 + - uid: 39228 components: - type: Transform pos: 14.5,37.5 parent: 2 - - uid: 38823 + - uid: 39229 components: - type: Transform pos: 8.5,45.5 parent: 2 - - uid: 38824 + - uid: 39230 components: - type: Transform pos: 8.5,46.5 parent: 2 - - uid: 38825 + - uid: 39231 components: - type: Transform pos: 8.5,49.5 parent: 2 - - uid: 38826 + - uid: 39232 components: - type: Transform pos: -8.5,18.5 parent: 2 - - uid: 38827 + - uid: 39233 components: - type: Transform pos: 80.5,-43.5 parent: 2 - - uid: 38828 + - uid: 39234 components: - type: Transform pos: 17.5,30.5 parent: 2 - - uid: 38829 + - uid: 39235 components: - type: Transform pos: 6.5,30.5 parent: 2 - - uid: 38830 + - uid: 39236 components: - type: Transform pos: 66.5,7.5 parent: 2 - - uid: 38831 + - uid: 39237 components: - type: Transform pos: 54.5,4.5 parent: 2 - - uid: 38832 + - uid: 39238 components: - type: Transform pos: 9.5,30.5 parent: 2 - - uid: 38833 + - uid: 39239 components: - type: Transform pos: 0.5,51.5 parent: 2 - - uid: 38834 + - uid: 39240 components: - type: Transform pos: 6.5,41.5 parent: 2 - - uid: 38835 + - uid: 39241 components: - type: Transform pos: 53.5,-3.5 parent: 2 - - uid: 38836 + - uid: 39242 components: - type: Transform pos: 54.5,-3.5 parent: 2 - - uid: 38837 + - uid: 39243 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,44.5 parent: 2 - - uid: 38838 + - uid: 39244 components: - type: Transform pos: 15.5,37.5 parent: 2 - - uid: 38839 + - uid: 39245 components: - type: Transform pos: 51.5,-3.5 parent: 2 - - uid: 38840 + - uid: 39246 components: - type: Transform pos: -25.5,51.5 parent: 2 - - uid: 38841 + - uid: 39247 components: - type: Transform pos: 54.5,-2.5 parent: 2 - - uid: 38842 + - uid: 39248 components: - type: Transform pos: 49.5,8.5 parent: 2 - - uid: 38843 + - uid: 39249 components: - type: Transform pos: 53.5,-8.5 parent: 2 - - uid: 38844 + - uid: 39250 components: - type: Transform pos: 0.5,50.5 parent: 2 - - uid: 38845 + - uid: 39251 components: - type: Transform pos: 63.5,13.5 parent: 2 - - uid: 38846 + - uid: 39252 components: - type: Transform pos: 54.5,12.5 parent: 2 - - uid: 38847 + - uid: 39253 components: - type: Transform pos: -20.5,41.5 parent: 2 - - uid: 38848 + - uid: 39254 components: - type: Transform pos: 58.5,-2.5 parent: 2 - - uid: 38849 + - uid: 39255 components: - type: Transform pos: 61.5,13.5 parent: 2 - - uid: 38850 + - uid: 39256 components: - type: Transform pos: 56.5,-8.5 parent: 2 - - uid: 38851 + - uid: 39257 components: - type: Transform pos: 60.5,8.5 parent: 2 - - uid: 38852 + - uid: 39258 components: - type: Transform pos: 62.5,-21.5 parent: 2 - - uid: 38853 + - uid: 39259 components: - type: Transform pos: 35.5,34.5 parent: 2 - - uid: 38854 + - uid: 39260 components: - type: Transform pos: 54.5,8.5 parent: 2 - - uid: 38855 + - uid: 39261 components: - type: Transform pos: 35.5,32.5 parent: 2 - - uid: 38856 + - uid: 39262 components: - type: Transform pos: 68.5,-28.5 parent: 2 - - uid: 38857 + - uid: 39263 components: - type: Transform pos: 65.5,-50.5 parent: 2 - - uid: 38858 - components: - - type: Transform - pos: 64.5,-34.5 - parent: 2 - - uid: 38859 + - uid: 39264 components: - type: Transform pos: 64.5,-50.5 parent: 2 - - uid: 38860 + - uid: 39265 components: - type: Transform pos: 59.5,-21.5 parent: 2 - - uid: 38861 + - uid: 39266 components: - type: Transform pos: 63.5,-21.5 parent: 2 - - uid: 38862 + - uid: 39267 components: - type: Transform pos: 57.5,-28.5 parent: 2 - - uid: 38863 + - uid: 39268 components: - type: Transform pos: 53.5,8.5 parent: 2 - - uid: 38864 + - uid: 39269 components: - type: Transform pos: 44.5,-21.5 parent: 2 - - uid: 38865 + - uid: 39270 components: - type: Transform pos: 87.5,-45.5 parent: 2 - - uid: 38866 + - uid: 39271 components: - type: Transform pos: 51.5,-25.5 parent: 2 - - uid: 38867 - components: - - type: Transform - pos: 64.5,-35.5 - parent: 2 - - uid: 38868 + - uid: 39272 components: - type: Transform pos: 60.5,-35.5 parent: 2 - - uid: 38869 + - uid: 39273 components: - type: Transform pos: 45.5,-21.5 parent: 2 - - uid: 38870 + - uid: 39274 components: - type: Transform pos: 66.5,-54.5 parent: 2 - - uid: 38871 + - uid: 39275 components: - type: Transform pos: 70.5,-54.5 parent: 2 - - uid: 38872 + - uid: 39276 components: - type: Transform pos: 47.5,-21.5 parent: 2 - - uid: 38873 + - uid: 39277 components: - type: Transform pos: 49.5,-21.5 parent: 2 - - uid: 38874 + - uid: 39278 components: - type: Transform pos: 57.5,-25.5 parent: 2 - - uid: 38875 + - uid: 39279 components: - type: Transform pos: 64.5,9.5 parent: 2 - - uid: 38876 + - uid: 39280 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 38877 + - uid: 39281 components: - type: Transform pos: 59.5,11.5 parent: 2 - - uid: 38878 + - uid: 39282 components: - type: Transform pos: 64.5,3.5 parent: 2 - - uid: 38879 + - uid: 39283 components: - type: Transform pos: 59.5,9.5 parent: 2 - - uid: 38880 + - uid: 39284 components: - type: Transform pos: 65.5,3.5 parent: 2 - - uid: 38881 + - uid: 39285 components: - type: Transform pos: 59.5,10.5 parent: 2 - - uid: 38882 + - uid: 39286 components: - type: Transform pos: 49.5,7.5 parent: 2 - - uid: 38883 + - uid: 39287 components: - type: Transform pos: 64.5,8.5 parent: 2 - - uid: 38884 + - uid: 39288 components: - type: Transform pos: 68.5,3.5 parent: 2 - - uid: 38885 + - uid: 39289 components: - type: Transform pos: 49.5,6.5 parent: 2 - - uid: 38886 + - uid: 39290 components: - type: Transform pos: 80.5,-42.5 parent: 2 - - uid: 38887 + - uid: 39291 components: - type: Transform pos: 81.5,-41.5 parent: 2 - - uid: 38888 - components: - - type: Transform - pos: 64.5,-29.5 - parent: 2 - - uid: 38889 + - uid: 39292 components: - type: Transform pos: 64.5,-28.5 parent: 2 - - uid: 38890 + - uid: 39293 components: - type: Transform pos: 72.5,-36.5 parent: 2 - - uid: 38891 + - uid: 39294 components: - type: Transform pos: 80.5,-46.5 parent: 2 - - uid: 38892 + - uid: 39295 components: - type: Transform pos: 80.5,-49.5 parent: 2 - - uid: 38893 + - uid: 39296 components: - type: Transform pos: 82.5,-47.5 parent: 2 - - uid: 38894 + - uid: 39297 components: - type: Transform pos: 80.5,-47.5 parent: 2 - - uid: 38895 + - uid: 39298 components: - type: Transform pos: 85.5,-47.5 parent: 2 - - uid: 38896 + - uid: 39299 components: - type: Transform pos: 80.5,-48.5 parent: 2 - - uid: 38897 + - uid: 39300 components: - type: Transform pos: 80.5,-41.5 parent: 2 - - uid: 38898 + - uid: 39301 components: - type: Transform pos: 83.5,-34.5 parent: 2 - - uid: 38899 + - uid: 39302 components: - type: Transform pos: 83.5,-35.5 parent: 2 - - uid: 38900 + - uid: 39303 components: - type: Transform pos: 76.5,-42.5 parent: 2 - - uid: 38901 + - uid: 39304 components: - type: Transform pos: 83.5,-32.5 parent: 2 - - uid: 38902 + - uid: 39305 components: - type: Transform pos: 77.5,-41.5 parent: 2 - - uid: 38903 + - uid: 39306 components: - type: Transform pos: 77.5,-42.5 parent: 2 - - uid: 38904 + - uid: 39307 components: - type: Transform pos: 84.5,-41.5 parent: 2 - - uid: 38905 + - uid: 39308 components: - type: Transform pos: 72.5,-42.5 parent: 2 - - uid: 38906 + - uid: 39309 components: - type: Transform pos: 73.5,-49.5 parent: 2 - - uid: 38907 + - uid: 39310 components: - type: Transform pos: 83.5,-33.5 parent: 2 - - uid: 38908 + - uid: 39311 components: - type: Transform pos: 74.5,-36.5 parent: 2 - - uid: 38909 + - uid: 39312 components: - type: Transform pos: 80.5,-36.5 parent: 2 - - uid: 38910 + - uid: 39313 components: - type: Transform pos: 78.5,-36.5 parent: 2 - - uid: 38911 + - uid: 39314 components: - type: Transform pos: 66.5,-51.5 parent: 2 - - uid: 38912 + - uid: 39315 components: - type: Transform pos: 80.5,-32.5 parent: 2 - - uid: 38913 + - uid: 39316 components: - type: Transform pos: 70.5,-51.5 parent: 2 - - uid: 38914 + - uid: 39317 components: - type: Transform pos: 88.5,-41.5 parent: 2 - - uid: 38915 + - uid: 39318 components: - type: Transform pos: 87.5,-41.5 parent: 2 - - uid: 38916 + - uid: 39319 components: - type: Transform pos: 89.5,-41.5 parent: 2 - - uid: 38917 + - uid: 39320 components: - type: Transform pos: 90.5,-41.5 parent: 2 - - uid: 38918 + - uid: 39321 components: - type: Transform pos: 58.5,-1.5 parent: 2 - - uid: 38919 + - uid: 39322 components: - type: Transform pos: 58.5,5.5 parent: 2 - - uid: 38920 + - uid: 39323 components: - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 38921 + - uid: 39324 components: - type: Transform pos: 52.5,-4.5 parent: 2 - - uid: 38922 + - uid: 39325 components: - type: Transform pos: 66.5,3.5 parent: 2 - - uid: 38923 + - uid: 39326 components: - type: Transform pos: 57.5,-8.5 parent: 2 - - uid: 38924 + - uid: 39327 components: - type: Transform pos: 52.5,-5.5 parent: 2 - - uid: 38925 + - uid: 39328 components: - type: Transform pos: 81.5,-32.5 parent: 2 - - uid: 38926 + - uid: 39329 components: - type: Transform pos: 83.5,-40.5 parent: 2 - - uid: 38927 + - uid: 39330 components: - type: Transform pos: 82.5,-41.5 parent: 2 - - uid: 38928 + - uid: 39331 components: - type: Transform pos: 71.5,-42.5 parent: 2 - - uid: 38929 + - uid: 39332 components: - type: Transform pos: 75.5,-49.5 parent: 2 - - uid: 38930 + - uid: 39333 components: - type: Transform pos: 78.5,-42.5 parent: 2 - - uid: 38931 + - uid: 39334 components: - type: Transform pos: 71.5,-43.5 parent: 2 - - uid: 38932 + - uid: 39335 components: - type: Transform pos: 83.5,-41.5 parent: 2 - - uid: 38933 + - uid: 39336 components: - type: Transform pos: 80.5,-35.5 parent: 2 - - uid: 38934 + - uid: 39337 components: - type: Transform pos: 60.5,-49.5 parent: 2 - - uid: 38935 + - uid: 39338 components: - type: Transform pos: 70.5,-35.5 parent: 2 - - uid: 38936 + - uid: 39339 components: - type: Transform pos: 69.5,-35.5 parent: 2 - - uid: 38937 + - uid: 39340 components: - type: Transform pos: 20.5,40.5 parent: 2 - - uid: 38938 + - uid: 39341 components: - type: Transform pos: 19.5,40.5 parent: 2 - - uid: 38939 + - uid: 39342 components: - type: Transform pos: 22.5,40.5 parent: 2 - - uid: 38940 + - uid: 39343 components: - type: Transform pos: 58.5,-28.5 parent: 2 - - uid: 38941 + - uid: 39344 components: - type: Transform pos: 59.5,-28.5 parent: 2 - - uid: 38942 + - uid: 39345 components: - type: Transform pos: 6.5,37.5 parent: 2 - - uid: 38943 + - uid: 39346 components: - type: Transform pos: 60.5,-28.5 parent: 2 - - uid: 38944 + - uid: 39347 components: - type: Transform pos: 60.5,-27.5 parent: 2 - - uid: 38945 + - uid: 39348 components: - type: Transform pos: 83.5,-37.5 parent: 2 - - uid: 38946 + - uid: 39349 components: - type: Transform pos: 83.5,-36.5 parent: 2 - - uid: 38947 + - uid: 39350 components: - type: Transform pos: 83.5,-38.5 parent: 2 - - uid: 38948 + - uid: 39351 components: - type: Transform pos: 83.5,-39.5 parent: 2 - - uid: 38949 + - uid: 39352 components: - type: Transform pos: 86.5,-45.5 parent: 2 - - uid: 38950 + - uid: 39353 components: - type: Transform pos: 86.5,-41.5 parent: 2 - - uid: 38951 + - uid: 39354 components: - type: Transform pos: 86.5,-44.5 parent: 2 - - uid: 38952 + - uid: 39355 components: - type: Transform pos: 86.5,-42.5 parent: 2 - - uid: 38953 + - uid: 39356 components: - type: Transform pos: 74.5,-42.5 parent: 2 - - uid: 38954 + - uid: 39357 components: - type: Transform pos: 77.5,-39.5 parent: 2 - - uid: 38955 + - uid: 39358 components: - type: Transform pos: 76.5,-36.5 parent: 2 - - uid: 38956 + - uid: 39359 components: - type: Transform pos: 77.5,-38.5 parent: 2 - - uid: 38957 + - uid: 39360 components: - type: Transform pos: 66.5,-50.5 parent: 2 - - uid: 38958 + - uid: 39361 components: - type: Transform pos: 70.5,-50.5 parent: 2 - - uid: 38959 + - uid: 39362 components: - type: Transform pos: 71.5,-50.5 parent: 2 - - uid: 38960 + - uid: 39363 components: - type: Transform pos: 71.5,-44.5 parent: 2 - - uid: 38961 + - uid: 39364 components: - type: Transform pos: 80.5,-33.5 parent: 2 - - uid: 38962 + - uid: 39365 components: - type: Transform pos: 80.5,-34.5 parent: 2 - - uid: 38963 + - uid: 39366 components: - type: Transform pos: 71.5,-36.5 parent: 2 - - uid: 38964 + - uid: 39367 components: - type: Transform pos: 71.5,-35.5 parent: 2 - - uid: 38965 + - uid: 39368 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 38966 + - uid: 39369 components: - type: Transform pos: 60.5,-45.5 parent: 2 - - uid: 38967 + - uid: 39370 components: - type: Transform pos: 57.5,-45.5 parent: 2 - - uid: 38968 + - uid: 39371 components: - type: Transform pos: 55.5,-45.5 parent: 2 - - uid: 38969 + - uid: 39372 components: - type: Transform pos: 60.5,-50.5 parent: 2 - - uid: 38970 + - uid: 39373 components: - type: Transform pos: 56.5,-45.5 parent: 2 - - uid: 38971 + - uid: 39374 components: - type: Transform pos: 54.5,-45.5 parent: 2 - - uid: 38972 + - uid: 39375 components: - type: Transform pos: 59.5,-45.5 parent: 2 - - uid: 38973 + - uid: 39376 components: - type: Transform pos: 53.5,-42.5 parent: 2 - - uid: 38974 + - uid: 39377 components: - type: Transform pos: 53.5,-41.5 parent: 2 - - uid: 38975 + - uid: 39378 components: - type: Transform pos: 53.5,-44.5 parent: 2 - - uid: 38976 + - uid: 39379 components: - type: Transform pos: 53.5,-43.5 parent: 2 - - uid: 38977 + - uid: 39380 components: - type: Transform pos: 53.5,-45.5 parent: 2 - - uid: 38978 + - uid: 39381 components: - type: Transform pos: 54.5,-35.5 parent: 2 - - uid: 38979 + - uid: 39382 components: - type: Transform pos: 53.5,-36.5 parent: 2 - - uid: 38980 + - uid: 39383 components: - type: Transform pos: 53.5,-35.5 parent: 2 - - uid: 38981 + - uid: 39384 components: - type: Transform pos: 60.5,-48.5 parent: 2 - - uid: 38982 + - uid: 39385 components: - type: Transform pos: 60.5,13.5 parent: 2 - - uid: 38983 + - uid: 39386 components: - type: Transform pos: 54.5,11.5 parent: 2 - - uid: 38984 + - uid: 39387 components: - type: Transform pos: 54.5,10.5 parent: 2 - - uid: 38985 + - uid: 39388 components: - type: Transform pos: 58.5,3.5 parent: 2 - - uid: 38986 + - uid: 39389 components: - type: Transform pos: 58.5,2.5 parent: 2 - - uid: 38987 + - uid: 39390 components: - type: Transform pos: 63.5,5.5 parent: 2 - - uid: 38988 + - uid: 39391 components: - type: Transform pos: 58.5,-8.5 parent: 2 - - uid: 38989 + - uid: 39392 components: - type: Transform pos: 63.5,8.5 parent: 2 - - uid: 38990 + - uid: 39393 components: - type: Transform pos: 55.5,-8.5 parent: 2 - - uid: 38991 + - uid: 39394 components: - type: Transform pos: 49.5,13.5 parent: 2 - - uid: 38992 + - uid: 39395 components: - type: Transform pos: 63.5,-1.5 parent: 2 - - uid: 38993 + - uid: 39396 components: - type: Transform pos: 63.5,-0.5 parent: 2 - - uid: 38994 + - uid: 39397 components: - type: Transform pos: 63.5,-3.5 parent: 2 - - uid: 38995 + - uid: 39398 components: - type: Transform pos: 63.5,-2.5 parent: 2 - - uid: 38996 + - uid: 39399 components: - type: Transform pos: 49.5,9.5 parent: 2 - - uid: 38997 + - uid: 39400 components: - type: Transform pos: 63.5,0.5 parent: 2 - - uid: 38998 + - uid: 39401 components: - type: Transform pos: 55.5,-3.5 parent: 2 - - uid: 38999 + - uid: 39402 components: - type: Transform pos: 57.5,-3.5 parent: 2 - - uid: 39000 + - uid: 39403 components: - type: Transform pos: 50.5,-3.5 parent: 2 - - uid: 39001 + - uid: 39404 components: - type: Transform pos: 49.5,-3.5 parent: 2 - - uid: 39002 + - uid: 39405 components: - type: Transform pos: 55.5,14.5 parent: 2 - - uid: 39003 + - uid: 39406 components: - type: Transform pos: 56.5,14.5 parent: 2 - - uid: 39004 + - uid: 39407 components: - type: Transform pos: 57.5,14.5 parent: 2 - - uid: 39005 + - uid: 39408 components: - type: Transform pos: 58.5,14.5 parent: 2 - - uid: 39006 + - uid: 39409 components: - type: Transform pos: 59.5,14.5 parent: 2 - - uid: 39007 + - uid: 39410 components: - type: Transform pos: 55.5,11.5 parent: 2 - - uid: 39008 + - uid: 39411 components: - type: Transform pos: 51.5,8.5 parent: 2 - - uid: 39009 + - uid: 39412 components: - type: Transform pos: 50.5,9.5 parent: 2 - - uid: 39010 + - uid: 39413 components: - type: Transform pos: 48.5,10.5 parent: 2 - - uid: 39011 + - uid: 39414 components: - type: Transform pos: 48.5,11.5 parent: 2 - - uid: 39012 + - uid: 39415 components: - type: Transform pos: 56.5,11.5 parent: 2 - - uid: 39013 + - uid: 39416 components: - type: Transform pos: 22.5,30.5 parent: 2 - - uid: 39014 + - uid: 39417 components: - type: Transform pos: 20.5,30.5 parent: 2 - - uid: 39015 + - uid: 39418 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,17.5 parent: 2 - - uid: 39016 + - uid: 39419 components: - type: Transform rot: -1.5707963267948966 rad pos: 49.5,19.5 parent: 2 - - uid: 39017 + - uid: 39420 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,28.5 parent: 2 - - uid: 39018 + - uid: 39421 components: - type: Transform rot: -1.5707963267948966 rad pos: 47.5,28.5 parent: 2 - - uid: 39019 + - uid: 39422 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,41.5 parent: 2 - - uid: 39020 + - uid: 39423 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,43.5 parent: 2 - - uid: 39021 + - uid: 39424 components: - type: Transform rot: 1.5707963267948966 rad pos: 20.5,41.5 parent: 2 - - uid: 39022 + - uid: 39425 components: - type: Transform pos: 16.5,42.5 parent: 2 - - uid: 39023 + - uid: 39426 components: - type: Transform pos: 16.5,30.5 parent: 2 - - uid: 39024 + - uid: 39427 components: - type: Transform pos: 14.5,30.5 parent: 2 - - uid: 39025 + - uid: 39428 components: - type: Transform pos: 15.5,30.5 parent: 2 - - uid: 39026 + - uid: 39429 components: - type: Transform pos: 8.5,23.5 parent: 2 - - uid: 39027 + - uid: 39430 components: - type: Transform pos: 7.5,23.5 parent: 2 - - uid: 39028 + - uid: 39431 components: - type: Transform pos: 9.5,23.5 parent: 2 - - uid: 39029 + - uid: 39432 components: - type: Transform pos: 10.5,23.5 parent: 2 - - uid: 39030 + - uid: 39433 components: - type: Transform pos: 11.5,23.5 parent: 2 - - uid: 39031 + - uid: 39434 components: - type: Transform pos: 6.5,29.5 parent: 2 - - uid: 39032 + - uid: 39435 components: - type: Transform pos: 6.5,23.5 parent: 2 - - uid: 39033 + - uid: 39436 components: - type: Transform pos: 12.5,23.5 parent: 2 - - uid: 39034 + - uid: 39437 components: - type: Transform pos: 0.5,30.5 parent: 2 - - uid: 39035 + - uid: 39438 components: - type: Transform pos: 0.5,29.5 parent: 2 - - uid: 39036 + - uid: 39439 components: - type: Transform pos: 2.5,29.5 parent: 2 - - uid: 39037 + - uid: 39440 components: - type: Transform pos: 5.5,29.5 parent: 2 - - uid: 39038 + - uid: 39441 components: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 39039 + - uid: 39442 components: - type: Transform pos: 6.5,26.5 parent: 2 - - uid: 39040 + - uid: 39443 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-13.5 parent: 2 - - uid: 39041 + - uid: 39444 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,-13.5 parent: 2 - - uid: 39042 + - uid: 39445 components: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 39043 + - uid: 39446 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 39044 + - uid: 39447 components: - type: Transform pos: 21.5,14.5 parent: 2 - - uid: 39045 + - uid: 39448 components: - type: Transform pos: 22.5,13.5 parent: 2 - - uid: 39046 + - uid: 39449 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-4.5 parent: 2 - - uid: 39047 + - uid: 39450 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 - - uid: 39048 + - uid: 39451 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-3.5 parent: 2 - - uid: 39049 + - uid: 39452 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-2.5 parent: 2 - - uid: 39050 + - uid: 39453 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-12.5 parent: 2 - - uid: 39051 + - uid: 39454 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-11.5 parent: 2 - - uid: 39052 + - uid: 39455 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-3.5 parent: 2 - - uid: 39053 + - uid: 39456 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-12.5 parent: 2 - - uid: 39054 + - uid: 39457 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-12.5 parent: 2 - - uid: 39055 + - uid: 39458 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-13.5 parent: 2 - - uid: 39056 + - uid: 39459 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-18.5 parent: 2 - - uid: 39057 + - uid: 39460 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,17.5 parent: 2 - - uid: 39058 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,4.5 - parent: 2 - - uid: 39059 + - uid: 39461 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-22.5 parent: 2 - - uid: 39060 + - uid: 39462 components: - type: Transform rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 - - uid: 39061 + - uid: 39463 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,-23.5 parent: 2 - - uid: 39062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 2 - - uid: 39063 + - uid: 39464 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,13.5 parent: 2 - - uid: 39064 + - uid: 39465 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,8.5 parent: 2 - - uid: 39065 + - uid: 39466 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,36.5 parent: 2 - - uid: 39066 + - uid: 39467 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,35.5 parent: 2 - - uid: 39067 + - uid: 39468 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,34.5 parent: 2 - - uid: 39068 + - uid: 39469 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,33.5 parent: 2 - - uid: 39069 + - uid: 39470 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,33.5 parent: 2 - - uid: 39070 + - uid: 39471 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,33.5 parent: 2 - - uid: 39071 + - uid: 39472 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,33.5 parent: 2 - - uid: 39072 + - uid: 39473 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,32.5 parent: 2 - - uid: 39073 + - uid: 39474 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,33.5 parent: 2 - - uid: 39074 + - uid: 39475 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,33.5 parent: 2 - - uid: 39075 + - uid: 39476 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,33.5 parent: 2 - - uid: 39076 + - uid: 39477 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,32.5 parent: 2 - - uid: 39077 + - uid: 39478 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,32.5 parent: 2 - - uid: 39078 + - uid: 39479 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,59.5 parent: 2 - - uid: 39079 + - uid: 39480 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,59.5 parent: 2 - - uid: 39080 + - uid: 39481 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,59.5 parent: 2 - - uid: 39081 + - uid: 39482 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,60.5 parent: 2 - - uid: 39082 + - uid: 39483 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,61.5 parent: 2 - - uid: 39083 + - uid: 39484 components: - type: Transform pos: -7.5,67.5 parent: 2 - - uid: 39084 + - uid: 39485 components: - type: Transform pos: -9.5,67.5 parent: 2 - - uid: 39085 + - uid: 39486 components: - type: Transform pos: -10.5,67.5 parent: 2 - - uid: 39086 + - uid: 39487 components: - type: Transform pos: -8.5,67.5 parent: 2 - - uid: 39087 + - uid: 39488 components: - type: Transform pos: -6.5,71.5 parent: 2 - - uid: 39088 + - uid: 39489 components: - type: Transform pos: -5.5,71.5 parent: 2 - - uid: 39089 + - uid: 39490 components: - type: Transform pos: -4.5,71.5 parent: 2 - - uid: 39090 + - uid: 39491 components: - type: Transform pos: -3.5,71.5 parent: 2 - - uid: 39091 + - uid: 39492 components: - type: Transform pos: -2.5,71.5 parent: 2 - - uid: 39092 + - uid: 39493 components: - type: Transform pos: -2.5,70.5 parent: 2 - - uid: 39093 + - uid: 39494 components: - type: Transform pos: -2.5,69.5 parent: 2 - - uid: 39094 + - uid: 39495 components: - type: Transform pos: -2.5,68.5 parent: 2 - - uid: 39095 + - uid: 39496 components: - type: Transform pos: -2.5,67.5 parent: 2 - - uid: 39096 + - uid: 39497 components: - type: Transform rot: 3.141592653589793 rad pos: 69.5,-34.5 parent: 2 - - uid: 39097 + - uid: 39498 components: - type: Transform rot: 3.141592653589793 rad pos: 72.5,-35.5 parent: 2 - - uid: 39098 + - uid: 39499 components: - type: Transform rot: 3.141592653589793 rad pos: 73.5,-35.5 parent: 2 - - uid: 39099 + - uid: 39500 components: - type: Transform rot: 3.141592653589793 rad pos: 74.5,-35.5 parent: 2 - - uid: 39100 + - uid: 39501 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-35.5 parent: 2 - - uid: 39101 + - uid: 39502 components: - type: Transform rot: 3.141592653589793 rad pos: 49.5,-35.5 parent: 2 - - uid: 39102 + - uid: 39503 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-27.5 parent: 2 - - uid: 39103 + - uid: 39504 components: - type: Transform pos: 75.5,-10.5 parent: 2 - - uid: 39104 + - uid: 39505 components: - type: Transform pos: 77.5,-10.5 parent: 2 - - uid: 39105 - components: - - type: Transform - pos: -20.5,61.5 - parent: 2 - - uid: 39106 - components: - - type: Transform - pos: -21.5,61.5 - parent: 2 - - uid: 39107 - components: - - type: Transform - pos: -22.5,61.5 - parent: 2 - - uid: 39108 - components: - - type: Transform - pos: -23.5,61.5 - parent: 2 - - uid: 39109 - components: - - type: Transform - pos: -23.5,60.5 - parent: 2 - - uid: 39110 + - uid: 39506 components: - type: Transform pos: 82.5,-10.5 parent: 2 - - uid: 39111 + - uid: 39507 components: - type: Transform pos: 84.5,-10.5 parent: 2 - - uid: 39112 + - uid: 39508 components: - type: Transform pos: 84.5,-20.5 parent: 2 - - uid: 39113 + - uid: 39509 components: - type: Transform pos: 82.5,-20.5 parent: 2 - - uid: 39114 + - uid: 39510 components: - type: Transform pos: 77.5,-20.5 parent: 2 - - uid: 39115 + - uid: 39511 components: - type: Transform pos: 75.5,-20.5 parent: 2 - - uid: 39116 + - uid: 39512 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,-5.5 parent: 2 - - uid: 39117 + - uid: 39513 components: - type: Transform pos: 5.5,66.5 parent: 2 - - uid: 39118 + - uid: 39514 components: - type: Transform pos: 5.5,63.5 parent: 2 - - uid: 39119 + - uid: 39515 components: - type: Transform pos: -2.5,66.5 parent: 2 - - uid: 39120 + - uid: 39516 components: - type: Transform pos: -1.5,69.5 parent: 2 - - uid: 39121 + - uid: 39517 components: - type: Transform pos: 4.5,65.5 parent: 2 - - uid: 39122 + - uid: 39518 components: - type: Transform pos: 4.5,64.5 parent: 2 - - uid: 39123 + - uid: 39519 components: - type: Transform pos: 4.5,63.5 parent: 2 - - uid: 39124 + - uid: 39520 components: - type: Transform pos: 5.5,46.5 parent: 2 - - uid: 39125 + - uid: 39521 components: - type: Transform pos: 5.5,51.5 parent: 2 - - uid: 39126 + - uid: 39522 components: - type: Transform pos: 5.5,52.5 parent: 2 - - uid: 39127 + - uid: 39523 components: - type: Transform pos: 5.5,53.5 parent: 2 - - uid: 39128 + - uid: 39524 components: - type: Transform pos: 5.5,54.5 parent: 2 - - uid: 39129 + - uid: 39525 components: - type: Transform pos: 8.5,47.5 parent: 2 - - uid: 39130 + - uid: 39526 components: - type: Transform pos: -2.5,65.5 parent: 2 - - uid: 39131 + - uid: 39527 components: - type: Transform pos: -2.5,64.5 parent: 2 - - uid: 39132 + - uid: 39528 components: - type: Transform pos: -10.5,66.5 parent: 2 - - uid: 39133 + - uid: 39529 components: - type: Transform pos: -0.5,69.5 parent: 2 - - uid: 39134 + - uid: 39530 components: - type: Transform pos: 0.5,69.5 parent: 2 - - uid: 39135 + - uid: 39531 components: - type: Transform pos: 1.5,69.5 parent: 2 - - uid: 39136 + - uid: 39532 components: - type: Transform pos: 3.5,69.5 parent: 2 - - uid: 39137 + - uid: 39533 components: - type: Transform pos: 4.5,69.5 parent: 2 - - uid: 39138 + - uid: 39534 components: - type: Transform pos: 2.5,69.5 parent: 2 - - uid: 39139 + - uid: 39535 components: - type: Transform pos: 5.5,69.5 parent: 2 - - uid: 39140 + - uid: 39536 components: - type: Transform pos: -12.5,66.5 parent: 2 - - uid: 39141 + - uid: 39537 components: - type: Transform pos: -11.5,66.5 parent: 2 - - uid: 39142 + - uid: 39538 components: - type: Transform pos: -13.5,66.5 parent: 2 - - uid: 39143 + - uid: 39539 components: - type: Transform pos: -14.5,66.5 parent: 2 - - uid: 39144 + - uid: 39540 components: - type: Transform pos: -15.5,66.5 parent: 2 - - uid: 39145 + - uid: 39541 components: - type: Transform pos: -15.5,67.5 parent: 2 - - uid: 39146 + - uid: 39542 components: - type: Transform pos: -15.5,68.5 parent: 2 - - uid: 39147 + - uid: 39543 components: - type: Transform pos: -15.5,69.5 parent: 2 - - uid: 39148 + - uid: 39544 components: - type: Transform pos: -15.5,70.5 parent: 2 - - uid: 39149 + - uid: 39545 components: - type: Transform pos: -15.5,71.5 parent: 2 - - uid: 39150 + - uid: 39546 components: - type: Transform pos: -15.5,72.5 parent: 2 - - uid: 39151 + - uid: 39547 components: - type: Transform pos: -14.5,72.5 parent: 2 - - uid: 39152 + - uid: 39548 components: - type: Transform pos: -13.5,72.5 parent: 2 - - uid: 39153 + - uid: 39549 components: - type: Transform pos: -12.5,72.5 parent: 2 - - uid: 39154 + - uid: 39550 components: - type: Transform pos: -11.5,72.5 parent: 2 - - uid: 39155 + - uid: 39551 components: - type: Transform pos: -5.5,73.5 parent: 2 - - uid: 39156 + - uid: 39552 components: - type: Transform pos: -5.5,72.5 parent: 2 - - uid: 39157 + - uid: 39553 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,41.5 parent: 2 - - uid: 39158 + - uid: 39554 components: - type: Transform pos: -24.5,27.5 parent: 2 - - uid: 39159 + - uid: 39555 components: - type: Transform pos: -23.5,27.5 parent: 2 - - uid: 39160 + - uid: 39556 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,21.5 parent: 2 - - uid: 39161 + - uid: 39557 components: - type: Transform pos: 5.5,23.5 parent: 2 - - uid: 39162 + - uid: 39558 components: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 39163 + - uid: 39559 components: - type: Transform pos: 103.5,-21.5 parent: 2 - - uid: 39164 + - uid: 39560 components: - type: Transform rot: 3.141592653589793 rad pos: 14.5,39.5 parent: 2 - - uid: 39165 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,-35.5 - parent: 2 - - uid: 39166 + - uid: 39561 components: - type: Transform pos: -50.5,66.5 parent: 2 - - uid: 39167 + - uid: 39562 components: - type: Transform pos: -49.5,66.5 parent: 2 - - uid: 39168 + - uid: 39563 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,74.5 parent: 2 - - uid: 39169 + - uid: 39564 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,75.5 parent: 2 - - uid: 39170 + - uid: 39565 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,76.5 parent: 2 - - uid: 39171 + - uid: 39566 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,76.5 parent: 2 - - uid: 39172 + - uid: 39567 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,76.5 parent: 2 - - uid: 39173 + - uid: 39568 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,76.5 parent: 2 - - uid: 39174 + - uid: 39569 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,76.5 parent: 2 - - uid: 39175 + - uid: 39570 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,76.5 parent: 2 - - uid: 39176 + - uid: 39571 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,76.5 parent: 2 - - uid: 39177 + - uid: 39572 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,74.5 parent: 2 - - uid: 39178 + - uid: 39573 components: - type: Transform rot: -1.5707963267948966 rad pos: -5.5,75.5 parent: 2 - - uid: 39179 + - uid: 39574 components: - type: Transform - pos: -68.5,-9.5 + pos: -15.5,35.5 parent: 2 - - uid: 39180 + - uid: 39575 components: - type: Transform - pos: -15.5,35.5 + pos: -79.5,46.5 parent: 2 - - uid: 39181 + - uid: 39576 components: - type: Transform - pos: -71.5,-4.5 + pos: -105.5,40.5 parent: 2 - - uid: 39182 + - uid: 39577 components: - type: Transform - pos: -71.5,-3.5 + pos: -107.5,40.5 parent: 2 - - uid: 39183 + - uid: 39578 components: - type: Transform - pos: -63.5,-3.5 + pos: -109.5,41.5 parent: 2 - - uid: 39184 + - uid: 39579 components: - type: Transform - pos: -64.5,-5.5 + pos: 54.5,-17.5 parent: 2 - - uid: 39185 + - uid: 46904 components: - type: Transform - pos: -79.5,46.5 - parent: 2 -- proto: WallSolidRust - entities: - - uid: 39186 + pos: 1.5,8.5 + parent: 46584 + - uid: 46905 components: - type: Transform - pos: -65.5,-6.5 - parent: 2 - - uid: 39187 + pos: 3.5,8.5 + parent: 46584 + - uid: 46906 components: - type: Transform - pos: -63.5,-4.5 + pos: 2.5,8.5 + parent: 46584 + - uid: 46907 + components: + - type: Transform + pos: 6.5,8.5 + parent: 46584 + - uid: 46908 + components: + - type: Transform + pos: 5.5,8.5 + parent: 46584 + - uid: 46909 + components: + - type: Transform + pos: 7.5,7.5 + parent: 46584 + - uid: 46910 + components: + - type: Transform + pos: 7.5,6.5 + parent: 46584 + - uid: 46911 + components: + - type: Transform + pos: 7.5,5.5 + parent: 46584 + - uid: 46912 + components: + - type: Transform + pos: 6.5,7.5 + parent: 46584 + - uid: 46913 + components: + - type: Transform + pos: 6.5,1.5 + parent: 46584 + - uid: 46914 + components: + - type: Transform + pos: 6.5,2.5 + parent: 46584 + - uid: 46915 + components: + - type: Transform + pos: 6.5,3.5 + parent: 46584 + - uid: 46916 + components: + - type: Transform + pos: 5.5,1.5 + parent: 46584 + - uid: 46917 + components: + - type: Transform + pos: 4.5,1.5 + parent: 46584 + - uid: 46918 + components: + - type: Transform + pos: 3.5,1.5 + parent: 46584 + - uid: 46919 + components: + - type: Transform + pos: 2.5,1.5 + parent: 46584 + - uid: 46920 + components: + - type: Transform + pos: 2.5,2.5 + parent: 46584 + - uid: 46921 + components: + - type: Transform + pos: 1.5,4.5 + parent: 46584 + - uid: 46922 + components: + - type: Transform + pos: 0.5,5.5 + parent: 46584 + - uid: 46923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 46584 + - uid: 46924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 46584 + - uid: 46925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 46584 + - uid: 46926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 46584 + - uid: 46927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 46584 + - uid: 46928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 46584 + - uid: 46929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 46584 + - uid: 46930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 46584 + - uid: 46931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 46584 + - uid: 46932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 46584 + - uid: 46933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 46584 + - uid: 46934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 46584 + - uid: 46935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 46584 + - uid: 46936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 46584 + - uid: 46937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 46584 +- proto: WallSolidRust + entities: + - uid: 39580 + components: + - type: Transform + pos: -98.5,18.5 parent: 2 - - uid: 39188 + - uid: 39581 components: - type: Transform - pos: -65.5,-9.5 + pos: -127.5,-13.5 parent: 2 - - uid: 39189 + - uid: 39582 components: - type: Transform - pos: -70.5,-5.5 + pos: -128.5,-16.5 parent: 2 - - uid: 39190 + - uid: 39583 components: - type: Transform - pos: -71.5,-1.5 + pos: -124.5,-15.5 parent: 2 - - uid: 39191 + - uid: 39584 components: - type: Transform pos: 56.5,30.5 parent: 2 - - uid: 39192 + - uid: 39585 components: - type: Transform pos: 52.5,34.5 parent: 2 - - uid: 39193 + - uid: 39586 components: - type: Transform pos: 51.5,31.5 parent: 2 - - uid: 39194 + - uid: 39587 components: - type: Transform pos: 53.5,30.5 parent: 2 - - uid: 39195 + - uid: 39588 components: - type: Transform pos: 57.5,30.5 parent: 2 - - uid: 39196 + - uid: 39589 components: - type: Transform pos: 57.5,34.5 parent: 2 - - uid: 39197 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 39590 components: - type: Transform - pos: -68.5,-0.5 + rot: 1.5707963267948966 rad + pos: 100.5,-9.5 parent: 2 - - uid: 39198 + - uid: 39591 components: - type: Transform - pos: -63.5,-2.5 + pos: -6.5,-30.5 parent: 2 - - uid: 39199 + - uid: 39592 components: - type: Transform - pos: -66.5,-0.5 + pos: -35.5,-1.5 parent: 2 - - uid: 39200 + - uid: 39593 components: - type: Transform - pos: -67.5,-0.5 + rot: 3.141592653589793 rad + pos: -98.5,8.5 parent: 2 - - uid: 39201 +- proto: WallWood + entities: + - uid: 39594 components: - type: Transform - pos: -66.5,-9.5 + pos: 45.5,10.5 parent: 2 - - uid: 39202 + - uid: 39595 components: - type: Transform - pos: -69.5,-7.5 + pos: 45.5,13.5 parent: 2 -- proto: WallWeaponCapacitorRecharger - entities: - - uid: 39203 + - uid: 39596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 100.5,-9.5 + pos: 45.5,12.5 parent: 2 - - uid: 39204 + - uid: 39597 components: - type: Transform - pos: -6.5,-30.5 + pos: 44.5,10.5 parent: 2 - - uid: 39205 + - uid: 39598 components: - type: Transform - pos: -35.5,-1.5 + pos: 45.5,11.5 parent: 2 - - uid: 39206 + - uid: 39599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,8.5 + pos: 44.5,13.5 parent: 2 -- proto: WallWood - entities: - - uid: 39207 + - uid: 39600 components: - type: Transform - pos: -28.5,31.5 + pos: -57.5,50.5 parent: 2 - - uid: 39208 + - uid: 39601 components: - type: Transform - pos: -47.5,27.5 + pos: -58.5,48.5 parent: 2 - - uid: 39209 + - uid: 39602 components: - type: Transform - pos: -47.5,24.5 + pos: -56.5,49.5 parent: 2 - - uid: 39210 + - uid: 39603 components: - type: Transform - pos: -47.5,26.5 + pos: -57.5,51.5 parent: 2 - - uid: 39211 + - uid: 39604 components: - type: Transform - pos: -34.5,31.5 + rot: -1.5707963267948966 rad + pos: -57.5,48.5 parent: 2 - - uid: 39212 + - uid: 39605 components: - type: Transform - pos: -33.5,27.5 + rot: -1.5707963267948966 rad + pos: -60.5,53.5 parent: 2 - - uid: 39213 + - uid: 39606 components: - type: Transform - pos: -33.5,31.5 + pos: -59.5,50.5 parent: 2 - - uid: 39214 + - uid: 39607 components: - type: Transform - pos: -33.5,26.5 + pos: -57.5,49.5 parent: 2 - - uid: 39215 + - uid: 39608 components: - type: Transform - pos: -33.5,21.5 + pos: -60.5,50.5 parent: 2 - - uid: 39216 + - uid: 39609 components: - type: Transform - pos: -30.5,31.5 + rot: 1.5707963267948966 rad + pos: -56.5,56.5 parent: 2 - - uid: 39217 + - uid: 39610 components: - type: Transform - pos: -29.5,26.5 + rot: 1.5707963267948966 rad + pos: -57.5,56.5 parent: 2 - - uid: 39218 + - uid: 39611 components: - type: Transform - pos: -32.5,31.5 + rot: 1.5707963267948966 rad + pos: -60.5,56.5 parent: 2 - - uid: 39219 + - uid: 39612 components: - type: Transform - pos: -30.5,24.5 + rot: 1.5707963267948966 rad + pos: -58.5,56.5 parent: 2 - - uid: 39220 + - uid: 39613 components: - type: Transform - pos: -29.5,25.5 + rot: 1.5707963267948966 rad + pos: -59.5,56.5 parent: 2 - - uid: 39221 + - uid: 39614 components: - type: Transform - pos: -29.5,24.5 + pos: -76.5,19.5 parent: 2 - - uid: 39222 + - uid: 39615 components: - type: Transform - pos: -31.5,31.5 + pos: -72.5,19.5 parent: 2 - - uid: 39223 + - uid: 39616 components: - type: Transform - pos: -28.5,28.5 + pos: -79.5,14.5 parent: 2 - - uid: 39224 + - uid: 39617 components: - type: Transform - pos: -28.5,26.5 + pos: -78.5,12.5 parent: 2 - - uid: 39225 + - uid: 39618 components: - type: Transform - pos: -28.5,27.5 + pos: -78.5,15.5 parent: 2 - - uid: 39226 + - uid: 39619 components: - type: Transform - pos: -39.5,22.5 + pos: -77.5,15.5 parent: 2 - - uid: 39227 + - uid: 39620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,22.5 + pos: -78.5,14.5 parent: 2 - - uid: 39228 + - uid: 39621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,22.5 + pos: -80.5,14.5 parent: 2 - - uid: 39229 + - uid: 39622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,22.5 + pos: -81.5,14.5 parent: 2 - - uid: 39230 + - uid: 39623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,23.5 + pos: -81.5,15.5 parent: 2 - - uid: 39231 + - uid: 39624 components: - type: Transform - pos: -35.5,20.5 + pos: -77.5,10.5 parent: 2 - - uid: 39232 + - uid: 39625 components: - type: Transform - pos: -39.5,21.5 + pos: -81.5,13.5 parent: 2 - - uid: 39233 + - uid: 39626 components: - type: Transform - pos: -36.5,20.5 + pos: -80.5,17.5 parent: 2 - - uid: 39234 + - uid: 39627 components: - type: Transform - pos: -37.5,20.5 + pos: -79.5,10.5 parent: 2 - - uid: 39235 + - uid: 39628 components: - type: Transform - pos: -39.5,20.5 + pos: -75.5,10.5 parent: 2 - - uid: 39236 + - uid: 39629 components: - type: Transform - pos: -38.5,20.5 + pos: -78.5,10.5 parent: 2 - - uid: 39237 + - uid: 39630 components: - type: Transform - pos: -42.5,20.5 + pos: -80.5,10.5 parent: 2 - - uid: 39238 + - uid: 39631 components: - type: Transform - pos: -40.5,20.5 + pos: -73.5,13.5 parent: 2 - - uid: 39239 + - uid: 39632 components: - type: Transform - pos: -33.5,20.5 + pos: -73.5,15.5 parent: 2 - - uid: 39240 + - uid: 39633 components: - type: Transform - pos: -34.5,20.5 + pos: -73.5,14.5 parent: 2 - - uid: 39241 + - uid: 39634 components: - type: Transform - pos: -34.5,27.5 + pos: -73.5,16.5 parent: 2 - - uid: 39242 + - uid: 39635 components: - type: Transform - pos: -29.5,31.5 + pos: -73.5,10.5 parent: 2 - - uid: 39243 + - uid: 39636 components: - type: Transform - pos: -42.5,21.5 + pos: -73.5,11.5 parent: 2 - - uid: 39244 + - uid: 39637 components: - type: Transform - pos: -41.5,20.5 + pos: -74.5,10.5 parent: 2 - - uid: 39245 + - uid: 39638 components: - type: Transform - pos: -42.5,22.5 + pos: -76.5,10.5 parent: 2 - - uid: 39246 + - uid: 39639 components: - type: Transform - pos: -89.5,29.5 + pos: -77.5,12.5 parent: 2 - - uid: 39247 + - uid: 39640 components: - type: Transform - pos: -92.5,29.5 + pos: -77.5,11.5 parent: 2 - - uid: 39248 + - uid: 39641 components: - type: Transform - pos: -92.5,27.5 + pos: -80.5,16.5 parent: 2 - - uid: 39249 + - uid: 39642 components: - type: Transform - pos: -87.5,29.5 + pos: -79.5,19.5 parent: 2 - - uid: 39250 + - uid: 39643 components: - type: Transform - pos: -91.5,29.5 + pos: -77.5,19.5 parent: 2 - - uid: 39251 + - uid: 39644 components: - type: Transform - pos: -88.5,29.5 + pos: -75.5,19.5 parent: 2 - - uid: 39252 + - uid: 39645 components: - type: Transform - pos: -92.5,28.5 + pos: -80.5,18.5 parent: 2 - - uid: 39253 + - uid: 39646 components: - type: Transform - pos: -91.5,25.5 + pos: -80.5,19.5 parent: 2 - - uid: 39254 + - uid: 39647 components: - type: Transform - pos: -90.5,25.5 + pos: -72.5,16.5 parent: 2 - - uid: 39255 + - uid: 39648 components: - type: Transform - pos: -42.5,26.5 + pos: -72.5,17.5 parent: 2 - - uid: 39256 + - uid: 39649 components: - type: Transform - pos: -47.5,25.5 + pos: -81.5,11.5 parent: 2 - - uid: 39257 + - uid: 39650 components: - type: Transform - pos: -47.5,23.5 + pos: -81.5,16.5 parent: 2 - - uid: 39258 + - uid: 39651 components: - type: Transform - pos: -41.5,23.5 + pos: -81.5,10.5 parent: 2 - - uid: 39259 + - uid: 39652 components: - type: Transform - pos: -43.5,23.5 + pos: -81.5,12.5 parent: 2 - - uid: 39260 + - uid: 39653 components: - type: Transform - pos: -34.5,28.5 + pos: -28.5,31.5 parent: 2 - - uid: 39261 + - uid: 39654 components: - type: Transform - pos: -39.5,27.5 + pos: -47.5,27.5 parent: 2 - - uid: 39262 + - uid: 39655 components: - type: Transform - pos: -41.5,27.5 + pos: -47.5,24.5 parent: 2 - - uid: 39263 + - uid: 39656 components: - type: Transform - pos: -45.5,23.5 + pos: -47.5,26.5 parent: 2 - - uid: 39264 + - uid: 39657 components: - type: Transform - pos: -42.5,28.5 + pos: -34.5,31.5 parent: 2 - - uid: 39265 + - uid: 39658 components: - type: Transform - pos: -42.5,23.5 + pos: -33.5,27.5 parent: 2 - - uid: 39266 + - uid: 39659 components: - type: Transform - pos: -37.5,27.5 + pos: -33.5,31.5 parent: 2 - - uid: 39267 + - uid: 39660 components: - type: Transform - pos: -40.5,27.5 + pos: -33.5,26.5 parent: 2 - - uid: 39268 + - uid: 39661 components: - type: Transform - pos: -38.5,27.5 + pos: -33.5,21.5 parent: 2 - - uid: 39269 + - uid: 39662 components: - type: Transform - pos: -44.5,23.5 + pos: -30.5,31.5 parent: 2 - - uid: 39270 + - uid: 39663 components: - type: Transform - pos: -43.5,28.5 + pos: -29.5,26.5 parent: 2 - - uid: 39271 + - uid: 39664 components: - type: Transform - pos: -42.5,27.5 + pos: -32.5,31.5 parent: 2 - - uid: 39272 + - uid: 39665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,71.5 + pos: -30.5,24.5 parent: 2 - - uid: 39273 + - uid: 39666 + components: + - type: Transform + pos: -29.5,25.5 + parent: 2 + - uid: 39667 + components: + - type: Transform + pos: -29.5,24.5 + parent: 2 + - uid: 39668 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 39669 + components: + - type: Transform + pos: -28.5,28.5 + parent: 2 + - uid: 39670 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 + - uid: 39671 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 + - uid: 39672 + components: + - type: Transform + pos: -39.5,22.5 + parent: 2 + - uid: 39673 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,70.5 + pos: -31.5,22.5 parent: 2 - - uid: 39274 + - uid: 39674 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,70.5 + pos: -30.5,22.5 parent: 2 - - uid: 39275 + - uid: 39675 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,70.5 + pos: -32.5,22.5 parent: 2 - - uid: 39276 + - uid: 39676 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,71.5 + pos: -30.5,23.5 parent: 2 - - uid: 39277 + - uid: 39677 components: - type: Transform - pos: -96.5,42.5 + pos: -35.5,20.5 parent: 2 - - uid: 39278 + - uid: 39678 components: - type: Transform - pos: -99.5,42.5 + pos: -39.5,21.5 parent: 2 - - uid: 39279 + - uid: 39679 components: - type: Transform - pos: 94.5,-24.5 + pos: -36.5,20.5 parent: 2 - - uid: 39280 + - uid: 39680 components: - type: Transform - pos: -54.5,21.5 + pos: -37.5,20.5 parent: 2 - - uid: 39281 + - uid: 39681 components: - type: Transform - pos: -50.5,23.5 + pos: -39.5,20.5 parent: 2 - - uid: 39282 + - uid: 39682 components: - type: Transform - pos: -54.5,26.5 + pos: -38.5,20.5 parent: 2 - - uid: 39283 + - uid: 39683 components: - type: Transform - pos: -54.5,25.5 + pos: -42.5,20.5 parent: 2 - - uid: 39284 + - uid: 39684 components: - type: Transform - pos: -54.5,24.5 + pos: -40.5,20.5 parent: 2 - - uid: 39285 + - uid: 39685 components: - type: Transform - pos: -51.5,23.5 + pos: -33.5,20.5 parent: 2 - - uid: 39286 + - uid: 39686 components: - type: Transform - pos: -50.5,26.5 + pos: -34.5,20.5 parent: 2 - - uid: 39287 + - uid: 39687 components: - type: Transform - pos: -50.5,25.5 + pos: -34.5,27.5 parent: 2 - - uid: 39288 + - uid: 39688 components: - type: Transform - pos: -50.5,24.5 + pos: -29.5,31.5 parent: 2 - - uid: 39289 + - uid: 39689 components: - type: Transform - pos: -54.5,27.5 + pos: -42.5,21.5 parent: 2 - - uid: 39290 + - uid: 39690 components: - type: Transform - pos: -52.5,21.5 + pos: -41.5,20.5 parent: 2 - - uid: 39291 + - uid: 39691 components: - type: Transform - pos: -54.5,22.5 + pos: -42.5,22.5 parent: 2 - - uid: 39292 + - uid: 39692 components: - type: Transform - pos: -53.5,21.5 + pos: -89.5,29.5 parent: 2 - - uid: 39293 + - uid: 39693 components: - type: Transform - pos: -119.5,34.5 + pos: -92.5,29.5 parent: 2 - - uid: 39294 + - uid: 39694 components: - type: Transform - pos: -118.5,30.5 + pos: -92.5,27.5 parent: 2 - - uid: 39295 + - uid: 39695 components: - type: Transform - pos: -117.5,31.5 + pos: -87.5,29.5 parent: 2 - - uid: 39296 + - uid: 39696 components: - type: Transform - pos: -119.5,32.5 + pos: -91.5,29.5 parent: 2 - - uid: 39297 + - uid: 39697 components: - type: Transform - pos: -119.5,31.5 + pos: -88.5,29.5 parent: 2 - - uid: 39298 + - uid: 39698 components: - type: Transform - pos: -119.5,33.5 + pos: -92.5,28.5 parent: 2 - - uid: 39299 + - uid: 39699 components: - type: Transform - pos: -117.5,30.5 + pos: -91.5,25.5 parent: 2 - - uid: 39300 + - uid: 39700 components: - type: Transform - pos: -118.5,33.5 + pos: -90.5,25.5 parent: 2 - - uid: 39301 + - uid: 39701 components: - type: Transform - pos: -119.5,35.5 + pos: -42.5,26.5 parent: 2 - - uid: 39302 + - uid: 39702 + components: + - type: Transform + pos: -47.5,25.5 + parent: 2 + - uid: 39703 + components: + - type: Transform + pos: -47.5,23.5 + parent: 2 + - uid: 39704 + components: + - type: Transform + pos: -41.5,23.5 + parent: 2 + - uid: 39705 + components: + - type: Transform + pos: -43.5,23.5 + parent: 2 + - uid: 39706 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 39707 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 39708 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 39709 + components: + - type: Transform + pos: -45.5,23.5 + parent: 2 + - uid: 39710 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 39711 + components: + - type: Transform + pos: -42.5,23.5 + parent: 2 + - uid: 39712 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 + - uid: 39713 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 39714 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 39715 + components: + - type: Transform + pos: -44.5,23.5 + parent: 2 + - uid: 39716 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 39717 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - uid: 39718 + components: + - type: Transform + pos: 94.5,-24.5 + parent: 2 + - uid: 39719 components: - type: Transform pos: -46.5,23.5 parent: 2 - - uid: 39303 + - uid: 39720 components: - type: Transform pos: -33.5,23.5 parent: 2 - - uid: 39304 + - uid: 39721 components: - type: Transform pos: -32.5,24.5 parent: 2 - - uid: 39305 + - uid: 39722 components: - type: Transform pos: -31.5,24.5 parent: 2 - - uid: 39306 + - uid: 39723 components: - type: Transform pos: -35.5,27.5 parent: 2 - - uid: 39307 + - uid: 39724 components: - type: Transform pos: -34.5,29.5 parent: 2 - - uid: 39308 + - uid: 39725 components: - type: Transform pos: -34.5,30.5 parent: 2 - - uid: 39309 + - uid: 39726 components: - type: Transform pos: -39.5,23.5 parent: 2 - - uid: 39310 + - uid: 39727 components: - type: Transform pos: -33.5,24.5 parent: 2 - - uid: 39311 + - uid: 39728 components: - type: Transform pos: -33.5,22.5 parent: 2 - - uid: 39312 + - uid: 39729 components: - type: Transform pos: -28.5,30.5 parent: 2 - - uid: 39313 + - uid: 39730 components: - type: Transform pos: -45.5,28.5 parent: 2 - - uid: 39314 + - uid: 39731 components: - type: Transform pos: -47.5,28.5 parent: 2 - - uid: 39315 + - uid: 39732 components: - type: Transform pos: -46.5,28.5 parent: 2 - - uid: 39316 + - uid: 39733 components: - type: Transform pos: -61.5,50.5 parent: 2 - - uid: 39317 + - uid: 39734 components: - type: Transform pos: -61.5,48.5 parent: 2 - - uid: 39318 + - uid: 39735 components: - type: Transform pos: 39.5,-33.5 parent: 2 - - uid: 39319 + - uid: 39736 components: - type: Transform pos: 40.5,-34.5 parent: 2 - - uid: 39320 + - uid: 39737 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-24.5 parent: 2 - - uid: 39321 + - uid: 39738 components: - type: Transform pos: -60.5,55.5 parent: 2 - - uid: 39322 + - uid: 39739 components: - type: Transform pos: -61.5,55.5 parent: 2 - - uid: 39323 + - uid: 39740 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-24.5 parent: 2 - - uid: 39324 + - uid: 39741 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-27.5 parent: 2 - - uid: 39325 + - uid: 39742 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-24.5 parent: 2 - - uid: 39326 + - uid: 39743 components: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 39327 + - uid: 39744 components: - type: Transform pos: 45.5,-30.5 parent: 2 - - uid: 39328 + - uid: 39745 components: - type: Transform pos: 89.5,-24.5 parent: 2 - - uid: 39329 + - uid: 39746 components: - type: Transform pos: 43.5,-34.5 parent: 2 - - uid: 39330 + - uid: 39747 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-26.5 parent: 2 - - uid: 39331 + - uid: 39748 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-24.5 parent: 2 - - uid: 39332 + - uid: 39749 components: - type: Transform pos: 45.5,-32.5 parent: 2 - - uid: 39333 + - uid: 39750 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-25.5 parent: 2 - - uid: 39334 + - uid: 39751 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-27.5 parent: 2 - - uid: 39335 + - uid: 39752 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-28.5 parent: 2 - - uid: 39336 + - uid: 39753 components: - type: Transform rot: -1.5707963267948966 rad pos: 87.5,-29.5 parent: 2 - - uid: 39337 + - uid: 39754 components: - type: Transform pos: 45.5,-31.5 parent: 2 - - uid: 39338 + - uid: 39755 components: - type: Transform pos: 42.5,-34.5 parent: 2 - - uid: 39339 + - uid: 39756 components: - type: Transform pos: 44.5,-34.5 parent: 2 - - uid: 39340 + - uid: 39757 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-28.5 parent: 2 - - uid: 39341 + - uid: 39758 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-26.5 parent: 2 - - uid: 39342 + - uid: 39759 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-29.5 parent: 2 - - uid: 39343 + - uid: 39760 components: - type: Transform rot: -1.5707963267948966 rad pos: 92.5,-29.5 parent: 2 - - uid: 39344 + - uid: 39761 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-29.5 parent: 2 - - uid: 39345 + - uid: 39762 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,-29.5 parent: 2 - - uid: 39346 + - uid: 39763 components: - type: Transform rot: -1.5707963267948966 rad pos: 89.5,-29.5 parent: 2 - - uid: 39347 + - uid: 39764 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-29.5 parent: 2 - - uid: 39348 + - uid: 39765 components: - type: Transform rot: -1.5707963267948966 rad pos: 93.5,-28.5 parent: 2 - - uid: 39349 + - uid: 39766 components: - type: Transform pos: 45.5,-34.5 parent: 2 - - uid: 39350 + - uid: 39767 components: - type: Transform pos: 39.5,8.5 parent: 2 - - uid: 39351 + - uid: 39768 components: - type: Transform pos: 38.5,14.5 parent: 2 - - uid: 39352 + - uid: 39769 components: - type: Transform pos: 40.5,14.5 parent: 2 - - uid: 39353 + - uid: 39770 components: - type: Transform pos: 41.5,14.5 parent: 2 - - uid: 39354 - components: - - type: Transform - pos: 43.5,11.5 - parent: 2 - - uid: 39355 + - uid: 39771 components: - type: Transform pos: 43.5,14.5 parent: 2 - - uid: 39356 + - uid: 39772 components: - type: Transform pos: 42.5,14.5 parent: 2 - - uid: 39357 + - uid: 39773 components: - type: Transform pos: 37.5,14.5 parent: 2 - - uid: 39358 + - uid: 39774 components: - type: Transform pos: 39.5,14.5 parent: 2 - - uid: 39359 + - uid: 39775 components: - type: Transform pos: 43.5,12.5 parent: 2 - - uid: 39360 + - uid: 39776 components: - type: Transform pos: 43.5,13.5 parent: 2 - - uid: 39361 + - uid: 39777 components: - type: Transform pos: 2.5,-35.5 parent: 2 - - uid: 39362 + - uid: 39778 components: - type: Transform pos: 10.5,-33.5 parent: 2 - - uid: 39363 + - uid: 39779 components: - type: Transform pos: 10.5,-32.5 parent: 2 - - uid: 39364 + - uid: 39780 components: - type: Transform pos: 2.5,-33.5 parent: 2 - - uid: 39365 + - uid: 39781 components: - type: Transform pos: 10.5,-31.5 parent: 2 - - uid: 39366 + - uid: 39782 components: - type: Transform pos: 2.5,-36.5 parent: 2 - - uid: 39367 + - uid: 39783 components: - type: Transform pos: 2.5,-34.5 parent: 2 - - uid: 39368 + - uid: 39784 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 39369 + - uid: 39785 components: - type: Transform pos: 2.5,-31.5 parent: 2 - - uid: 39370 + - uid: 39786 components: - type: Transform pos: 3.5,-31.5 parent: 2 - - uid: 39371 + - uid: 39787 components: - type: Transform pos: 5.5,-31.5 parent: 2 - - uid: 39372 + - uid: 39788 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 39373 + - uid: 39789 components: - type: Transform pos: 9.5,-31.5 parent: 2 - - uid: 39374 + - uid: 39790 components: - type: Transform pos: 9.5,-37.5 parent: 2 - - uid: 39375 + - uid: 39791 components: - type: Transform pos: 5.5,-37.5 parent: 2 - - uid: 39376 + - uid: 39792 components: - type: Transform pos: 6.5,-37.5 parent: 2 - - uid: 39377 + - uid: 39793 components: - type: Transform pos: 10.5,-36.5 parent: 2 - - uid: 39378 + - uid: 39794 components: - type: Transform pos: 7.5,-37.5 parent: 2 - - uid: 39379 + - uid: 39795 components: - type: Transform pos: 8.5,-37.5 parent: 2 - - uid: 39380 + - uid: 39796 components: - type: Transform pos: 10.5,-37.5 parent: 2 - - uid: 39381 + - uid: 39797 components: - type: Transform pos: 10.5,-35.5 parent: 2 - - uid: 39382 + - uid: 39798 components: - type: Transform pos: 10.5,-34.5 parent: 2 - - uid: 39383 + - uid: 39799 components: - type: Transform pos: 3.5,-37.5 parent: 2 - - uid: 39384 + - uid: 39800 components: - type: Transform pos: 2.5,-37.5 parent: 2 - - uid: 39385 + - uid: 39801 components: - type: Transform pos: 4.5,-37.5 parent: 2 - - uid: 39386 + - uid: 39802 components: - type: Transform pos: 32.5,-0.5 parent: 2 - - uid: 39387 + - uid: 39803 components: - type: Transform pos: 34.5,-0.5 parent: 2 - - uid: 39388 + - uid: 39804 components: - type: Transform pos: 35.5,0.5 parent: 2 - - uid: 39389 + - uid: 39805 components: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 39390 + - uid: 39806 components: - type: Transform pos: 37.5,0.5 parent: 2 - - uid: 39391 + - uid: 39807 components: - type: Transform pos: 38.5,0.5 parent: 2 - - uid: 39392 + - uid: 39808 components: - type: Transform pos: 39.5,0.5 parent: 2 - - uid: 39393 + - uid: 39809 components: - type: Transform pos: 39.5,-0.5 parent: 2 - - uid: 39394 + - uid: 39810 components: - type: Transform pos: 39.5,-1.5 parent: 2 - - uid: 39395 + - uid: 39811 components: - type: Transform pos: 39.5,-2.5 parent: 2 - - uid: 39396 + - uid: 39812 components: - type: Transform pos: 39.5,-3.5 parent: 2 - - uid: 39397 + - uid: 39813 components: - type: Transform pos: 39.5,-4.5 parent: 2 - - uid: 39398 + - uid: 39814 components: - type: Transform pos: 39.5,-5.5 parent: 2 - - uid: 39399 + - uid: 39815 components: - type: Transform pos: 35.5,-0.5 parent: 2 - - uid: 39400 + - uid: 39816 components: - type: Transform pos: 32.5,-1.5 parent: 2 - - uid: 39401 + - uid: 39817 components: - type: Transform pos: 32.5,-2.5 parent: 2 - - uid: 39402 + - uid: 39818 components: - type: Transform pos: 32.5,-5.5 parent: 2 - - uid: 39403 + - uid: 39819 components: - type: Transform pos: 33.5,-5.5 parent: 2 - - uid: 39404 + - uid: 39820 components: - type: Transform pos: 34.5,-5.5 parent: 2 - - uid: 39405 + - uid: 39821 components: - type: Transform pos: 35.5,-5.5 parent: 2 - - uid: 39406 + - uid: 39822 components: - type: Transform pos: 36.5,-5.5 parent: 2 - - uid: 39407 + - uid: 39823 components: - type: Transform pos: 38.5,-5.5 parent: 2 - - uid: 39408 + - uid: 39824 components: - type: Transform pos: 35.5,-1.5 parent: 2 - - uid: 39409 + - uid: 39825 components: - type: Transform pos: 35.5,-2.5 parent: 2 - - uid: 39410 + - uid: 39826 components: - type: Transform pos: 32.5,-8.5 parent: 2 - - uid: 39411 + - uid: 39827 components: - type: Transform pos: 33.5,-8.5 parent: 2 - - uid: 39412 + - uid: 39828 components: - type: Transform pos: 34.5,-8.5 parent: 2 - - uid: 39413 + - uid: 39829 components: - type: Transform pos: 35.5,-8.5 parent: 2 - - uid: 39414 + - uid: 39830 components: - type: Transform pos: 36.5,-8.5 parent: 2 - - uid: 39415 + - uid: 39831 components: - type: Transform pos: 36.5,-9.5 parent: 2 - - uid: 39416 + - uid: 39832 components: - type: Transform pos: 43.5,10.5 parent: 2 - - uid: 39417 + - uid: 39833 components: - type: Transform pos: 38.5,8.5 parent: 2 - - uid: 39418 + - uid: 39834 components: - type: Transform pos: 31.5,-8.5 parent: 2 - - uid: 39419 + - uid: 39835 components: - type: Transform pos: 31.5,-9.5 parent: 2 - - uid: 39420 + - uid: 39836 components: - type: Transform pos: 31.5,-10.5 parent: 2 - - uid: 39421 + - uid: 39837 components: - type: Transform pos: 31.5,-11.5 parent: 2 - - uid: 39422 + - uid: 39838 components: - type: Transform pos: 31.5,-12.5 parent: 2 - - uid: 39423 + - uid: 39839 components: - type: Transform pos: 31.5,-13.5 parent: 2 - - uid: 39424 + - uid: 39840 components: - type: Transform pos: 43.5,9.5 parent: 2 - - uid: 39425 + - uid: 39841 components: - type: Transform pos: 36.5,-12.5 parent: 2 - - uid: 39426 + - uid: 39842 components: - type: Transform pos: 36.5,-13.5 parent: 2 - - uid: 39427 + - uid: 39843 components: - type: Transform pos: 35.5,-13.5 parent: 2 - - uid: 39428 + - uid: 39844 components: - type: Transform pos: 34.5,-13.5 parent: 2 - - uid: 39429 + - uid: 39845 components: - type: Transform pos: 37.5,10.5 parent: 2 - - uid: 39430 + - uid: 39846 components: - type: Transform pos: 37.5,13.5 parent: 2 - - uid: 39431 + - uid: 39847 components: - type: Transform pos: 37.5,11.5 parent: 2 - - uid: 39432 + - uid: 39848 components: - type: Transform pos: 34.5,-14.5 parent: 2 - - uid: 39433 + - uid: 39849 components: - type: Transform pos: 33.5,-14.5 parent: 2 - - uid: 39434 + - uid: 39850 components: - type: Transform pos: 31.5,-14.5 parent: 2 - - uid: 39435 + - uid: 39851 components: - type: Transform pos: 42.5,8.5 parent: 2 - - uid: 39436 + - uid: 39852 components: - type: Transform pos: 43.5,8.5 parent: 2 - - uid: 39437 + - uid: 39853 components: - type: Transform pos: 38.5,10.5 parent: 2 - - uid: 39438 + - uid: 39854 components: - type: Transform pos: 38.5,9.5 parent: 2 - - uid: 39439 + - uid: 39855 components: - type: Transform pos: 45.5,-33.5 parent: 2 - - uid: 39440 + - uid: 39856 components: - type: Transform pos: 41.5,-34.5 parent: 2 - - uid: 39441 + - uid: 39857 components: - type: Transform pos: 40.5,-33.5 parent: 2 - - uid: 39442 + - uid: 39858 components: - type: Transform pos: 39.5,-32.5 parent: 2 - - uid: 39443 + - uid: 39859 components: - type: Transform pos: 38.5,-31.5 parent: 2 - - uid: 39444 + - uid: 39860 components: - type: Transform pos: 44.5,-30.5 parent: 2 - - uid: 39445 + - uid: 39861 components: - type: Transform pos: 38.5,-30.5 parent: 2 - - uid: 39446 + - uid: 39862 components: - type: Transform pos: 39.5,-30.5 parent: 2 - - uid: 39447 + - uid: 39863 components: - type: Transform pos: 43.5,-30.5 parent: 2 - - uid: 39448 + - uid: 39864 components: - type: Transform pos: 42.5,-30.5 parent: 2 - - uid: 39449 + - uid: 39865 components: - type: Transform pos: 89.5,-28.5 parent: 2 - - uid: 39450 + - uid: 39866 components: - type: Transform pos: 89.5,-27.5 parent: 2 - - uid: 39451 + - uid: 39867 components: - type: Transform pos: 89.5,-26.5 parent: 2 - - uid: 39452 + - uid: 39868 components: - type: Transform pos: 88.5,-26.5 parent: 2 - - uid: 39453 + - uid: 39869 components: - type: Transform pos: -61.5,51.5 parent: 2 - - uid: 39454 + - uid: 39870 components: - type: Transform pos: -61.5,52.5 parent: 2 - - uid: 39455 + - uid: 39871 components: - type: Transform pos: -61.5,53.5 parent: 2 - - uid: 39456 + - uid: 39872 components: - type: Transform pos: -61.5,54.5 parent: 2 - - uid: 39457 - components: - - type: Transform - pos: -103.5,43.5 - parent: 2 - - uid: 39458 - components: - - type: Transform - pos: -99.5,43.5 - parent: 2 - - uid: 39459 - components: - - type: Transform - pos: -96.5,43.5 - parent: 2 - - uid: 39460 - components: - - type: Transform - pos: -104.5,48.5 - parent: 2 - - uid: 39461 - components: - - type: Transform - pos: -97.5,49.5 - parent: 2 - - uid: 39462 - components: - - type: Transform - pos: -95.5,48.5 - parent: 2 - - uid: 39463 - components: - - type: Transform - pos: -95.5,49.5 - parent: 2 - - uid: 39464 - components: - - type: Transform - pos: -95.5,50.5 - parent: 2 - - uid: 39465 - components: - - type: Transform - pos: -95.5,52.5 - parent: 2 - - uid: 39466 - components: - - type: Transform - pos: -95.5,53.5 - parent: 2 - - uid: 39467 - components: - - type: Transform - pos: -96.5,53.5 - parent: 2 - - uid: 39468 - components: - - type: Transform - pos: -97.5,53.5 - parent: 2 - - uid: 39469 - components: - - type: Transform - pos: -98.5,53.5 - parent: 2 - - uid: 39470 - components: - - type: Transform - pos: -99.5,53.5 - parent: 2 - - uid: 39471 - components: - - type: Transform - pos: -100.5,53.5 - parent: 2 - - uid: 39472 - components: - - type: Transform - pos: -101.5,53.5 - parent: 2 - - uid: 39473 - components: - - type: Transform - pos: -104.5,49.5 - parent: 2 - - uid: 39474 - components: - - type: Transform - pos: -104.5,47.5 - parent: 2 - - uid: 39475 - components: - - type: Transform - pos: -104.5,46.5 - parent: 2 - - uid: 39476 - components: - - type: Transform - pos: -104.5,45.5 - parent: 2 - - uid: 39477 - components: - - type: Transform - pos: -104.5,44.5 - parent: 2 - - uid: 39478 - components: - - type: Transform - pos: -103.5,44.5 - parent: 2 - - uid: 39479 - components: - - type: Transform - pos: -102.5,44.5 - parent: 2 - - uid: 39480 - components: - - type: Transform - pos: -101.5,44.5 - parent: 2 - - uid: 39481 - components: - - type: Transform - pos: -100.5,44.5 - parent: 2 - - uid: 39482 - components: - - type: Transform - pos: -99.5,44.5 - parent: 2 - - uid: 39483 - components: - - type: Transform - pos: -98.5,44.5 - parent: 2 - - uid: 39484 - components: - - type: Transform - pos: -96.5,44.5 - parent: 2 - - uid: 39485 - components: - - type: Transform - pos: -95.5,45.5 - parent: 2 - - uid: 39486 - components: - - type: Transform - pos: -95.5,46.5 - parent: 2 - - uid: 39487 - components: - - type: Transform - pos: -95.5,47.5 - parent: 2 - - uid: 39488 - components: - - type: Transform - pos: -97.5,52.5 - parent: 2 - - uid: 39489 - components: - - type: Transform - pos: -97.5,51.5 - parent: 2 - - uid: 39490 - components: - - type: Transform - pos: -97.5,50.5 - parent: 2 - - uid: 39491 - components: - - type: Transform - pos: -96.5,45.5 - parent: 2 - - uid: 39492 - components: - - type: Transform - pos: -98.5,45.5 - parent: 2 - - uid: 39493 + - uid: 39873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,69.5 + pos: -36.5,27.5 parent: 2 - - uid: 39494 + - uid: 39874 components: - type: Transform - pos: -36.5,27.5 + pos: -28.5,29.5 parent: 2 - - uid: 39495 + - uid: 39875 components: - type: Transform - pos: -28.5,29.5 + pos: -73.5,12.5 parent: 2 - - uid: 44740 + - uid: 45129 components: - type: Transform pos: 47.5,18.5 - parent: 40203 - - uid: 44741 + parent: 40599 + - uid: 45130 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,33.5 - parent: 40203 - - uid: 44742 + parent: 40599 + - uid: 45131 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,32.5 - parent: 40203 - - uid: 44743 + parent: 40599 + - uid: 45132 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,31.5 - parent: 40203 - - uid: 44744 + parent: 40599 + - uid: 45133 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,33.5 - parent: 40203 - - uid: 44745 + parent: 40599 + - uid: 45134 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,29.5 - parent: 40203 - - uid: 44746 + parent: 40599 + - uid: 45135 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,28.5 - parent: 40203 - - uid: 44747 + parent: 40599 + - uid: 45136 components: - type: Transform rot: 1.5707963267948966 rad pos: 30.5,27.5 - parent: 40203 - - uid: 44748 + parent: 40599 + - uid: 45137 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,33.5 - parent: 40203 - - uid: 44749 + parent: 40599 + - uid: 45138 components: - type: Transform rot: 1.5707963267948966 rad pos: 31.5,27.5 - parent: 40203 - - uid: 44750 + parent: 40599 + - uid: 45139 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,30.5 - parent: 40203 - - uid: 44751 + parent: 40599 + - uid: 45140 components: - type: Transform rot: 1.5707963267948966 rad pos: 33.5,26.5 - parent: 40203 - - uid: 44752 + parent: 40599 + - uid: 45141 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,30.5 - parent: 40203 - - uid: 44753 + parent: 40599 + - uid: 45142 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,29.5 - parent: 40203 - - uid: 44754 + parent: 40599 + - uid: 45143 components: - type: Transform rot: 1.5707963267948966 rad pos: 34.5,27.5 - parent: 40203 - - uid: 44755 + parent: 40599 + - uid: 45144 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,38.5 - parent: 40203 - - uid: 44756 + parent: 40599 + - uid: 45145 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,37.5 - parent: 40203 - - uid: 44757 + parent: 40599 + - uid: 45146 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,36.5 - parent: 40203 - - uid: 44758 + parent: 40599 + - uid: 45147 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,35.5 - parent: 40203 - - uid: 44759 + parent: 40599 + - uid: 45148 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,34.5 - parent: 40203 - - uid: 44760 + parent: 40599 + - uid: 45149 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,38.5 - parent: 40203 - - uid: 44761 + parent: 40599 + - uid: 45150 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,34.5 - parent: 40203 - - uid: 44762 + parent: 40599 + - uid: 45151 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,38.5 - parent: 40203 - - uid: 44763 + parent: 40599 + - uid: 45152 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,33.5 - parent: 40203 - - uid: 44764 + parent: 40599 + - uid: 45153 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,38.5 - parent: 40203 - - uid: 44765 + parent: 40599 + - uid: 45154 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,38.5 - parent: 40203 - - uid: 44766 + parent: 40599 + - uid: 45155 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,33.5 - parent: 40203 - - uid: 44767 + parent: 40599 + - uid: 45156 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,27.5 - parent: 40203 - - uid: 44768 + parent: 40599 + - uid: 45157 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,26.5 - parent: 40203 - - uid: 44769 + parent: 40599 + - uid: 45158 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,25.5 - parent: 40203 - - uid: 44770 + parent: 40599 + - uid: 45159 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,38.5 - parent: 40203 - - uid: 44771 + parent: 40599 + - uid: 45160 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,29.5 - parent: 40203 - - uid: 44772 + parent: 40599 + - uid: 45161 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,28.5 - parent: 40203 - - uid: 44773 + parent: 40599 + - uid: 45162 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,27.5 - parent: 40203 - - uid: 44774 + parent: 40599 + - uid: 45163 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,23.5 - parent: 40203 - - uid: 44775 + parent: 40599 + - uid: 45164 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,38.5 - parent: 40203 - - uid: 44776 + parent: 40599 + - uid: 45165 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,33.5 - parent: 40203 - - uid: 44777 + parent: 40599 + - uid: 45166 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,23.5 - parent: 40203 - - uid: 44778 + parent: 40599 + - uid: 45167 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,38.5 - parent: 40203 - - uid: 44779 + parent: 40599 + - uid: 45168 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,37.5 - parent: 40203 - - uid: 44780 + parent: 40599 + - uid: 45169 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,36.5 - parent: 40203 - - uid: 44781 + parent: 40599 + - uid: 45170 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,35.5 - parent: 40203 - - uid: 44782 + parent: 40599 + - uid: 45171 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,23.5 - parent: 40203 - - uid: 44783 + parent: 40599 + - uid: 45172 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,22.5 - parent: 40203 - - uid: 44784 + parent: 40599 + - uid: 45173 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,29.5 - parent: 40203 - - uid: 44785 + parent: 40599 + - uid: 45174 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,22.5 - parent: 40203 - - uid: 44786 + parent: 40599 + - uid: 45175 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,29.5 - parent: 40203 - - uid: 44787 + parent: 40599 + - uid: 45176 components: - type: Transform rot: 1.5707963267948966 rad pos: 45.5,22.5 - parent: 40203 - - uid: 44788 + parent: 40599 + - uid: 45177 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,22.5 - parent: 40203 - - uid: 44789 + parent: 40599 + - uid: 45178 components: - type: Transform rot: 1.5707963267948966 rad pos: 47.5,22.5 - parent: 40203 - - uid: 44790 + parent: 40599 + - uid: 45179 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,28.5 - parent: 40203 - - uid: 44791 + parent: 40599 + - uid: 45180 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,24.5 - parent: 40203 - - uid: 44792 + parent: 40599 + - uid: 45181 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,28.5 - parent: 40203 - - uid: 44793 + parent: 40599 + - uid: 45182 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,27.5 - parent: 40203 - - uid: 44794 + parent: 40599 + - uid: 45183 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,25.5 - parent: 40203 - - uid: 44795 + parent: 40599 + - uid: 45184 components: - type: Transform rot: 1.5707963267948966 rad pos: 49.5,24.5 - parent: 40203 - - uid: 44796 + parent: 40599 + - uid: 45185 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,31.5 - parent: 40203 - - uid: 44797 + parent: 40599 + - uid: 45186 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,30.5 - parent: 40203 - - uid: 44798 + parent: 40599 + - uid: 45187 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,28.5 - parent: 40203 - - uid: 44799 + parent: 40599 + - uid: 45188 components: - type: Transform rot: 1.5707963267948966 rad pos: 53.5,27.5 - parent: 40203 - - uid: 44800 + parent: 40599 + - uid: 45189 components: - type: Transform pos: 54.5,18.5 - parent: 40203 - - uid: 44801 + parent: 40599 + - uid: 45190 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,31.5 - parent: 40203 - - uid: 44802 + parent: 40599 + - uid: 45191 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,27.5 - parent: 40203 - - uid: 44803 + parent: 40599 + - uid: 45192 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,26.5 - parent: 40203 - - uid: 44804 + parent: 40599 + - uid: 45193 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,25.5 - parent: 40203 - - uid: 44805 + parent: 40599 + - uid: 45194 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,25.5 - parent: 40203 - - uid: 44806 + parent: 40599 + - uid: 45195 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,31.5 - parent: 40203 - - uid: 44807 + parent: 40599 + - uid: 45196 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,29.5 - parent: 40203 - - uid: 44808 + parent: 40599 + - uid: 45197 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,28.5 - parent: 40203 - - uid: 44809 + parent: 40599 + - uid: 45198 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,27.5 - parent: 40203 - - uid: 44810 + parent: 40599 + - uid: 45199 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,26.5 - parent: 40203 - - uid: 44811 + parent: 40599 + - uid: 45200 components: - type: Transform rot: 1.5707963267948966 rad pos: 58.5,25.5 - parent: 40203 - - uid: 44812 + parent: 40599 + - uid: 45201 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,29.5 - parent: 40203 - - uid: 44813 + parent: 40599 + - uid: 45202 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,43.5 - parent: 40203 - - uid: 44814 + parent: 40599 + - uid: 45203 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,42.5 - parent: 40203 - - uid: 44815 + parent: 40599 + - uid: 45204 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,41.5 - parent: 40203 - - uid: 44816 + parent: 40599 + - uid: 45205 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,40.5 - parent: 40203 - - uid: 44817 + parent: 40599 + - uid: 45206 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,44.5 - parent: 40203 - - uid: 44818 + parent: 40599 + - uid: 45207 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,43.5 - parent: 40203 - - uid: 44819 + parent: 40599 + - uid: 45208 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,44.5 - parent: 40203 - - uid: 44820 + parent: 40599 + - uid: 45209 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,44.5 - parent: 40203 - - uid: 44821 + parent: 40599 + - uid: 45210 components: - type: Transform rot: 1.5707963267948966 rad pos: 66.5,39.5 - parent: 40203 - - uid: 44822 + parent: 40599 + - uid: 45211 components: - type: Transform pos: 67.5,38.5 - parent: 40203 - - uid: 44823 + parent: 40599 + - uid: 45212 components: - type: Transform rot: 1.5707963267948966 rad pos: 67.5,44.5 - parent: 40203 - - uid: 44824 + parent: 40599 + - uid: 45213 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,44.5 - parent: 40203 - - uid: 44825 + parent: 40599 + - uid: 45214 components: - type: Transform rot: 1.5707963267948966 rad pos: 68.5,38.5 - parent: 40203 - - uid: 44826 + parent: 40599 + - uid: 45215 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,44.5 - parent: 40203 - - uid: 44827 + parent: 40599 + - uid: 45216 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,43.5 - parent: 40203 - - uid: 44828 + parent: 40599 + - uid: 45217 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,41.5 - parent: 40203 - - uid: 44829 + parent: 40599 + - uid: 45218 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,40.5 - parent: 40203 - - uid: 44830 + parent: 40599 + - uid: 45219 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,39.5 - parent: 40203 - - uid: 44831 + parent: 40599 + - uid: 45220 components: - type: Transform rot: 1.5707963267948966 rad pos: 69.5,38.5 - parent: 40203 - - uid: 44832 + parent: 40599 + - uid: 45221 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,28.5 - parent: 40203 - - uid: 44833 + parent: 40599 + - uid: 45222 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,27.5 - parent: 40203 - - uid: 44834 + parent: 40599 + - uid: 45223 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,26.5 - parent: 40203 - - uid: 44835 + parent: 40599 + - uid: 45224 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,30.5 - parent: 40203 - - uid: 44836 + parent: 40599 + - uid: 45225 components: - type: Transform rot: 1.5707963267948966 rad pos: 72.5,28.5 - parent: 40203 - - uid: 44837 + parent: 40599 + - uid: 45226 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,30.5 - parent: 40203 - - uid: 44838 + parent: 40599 + - uid: 45227 components: - type: Transform rot: 1.5707963267948966 rad pos: 73.5,24.5 - parent: 40203 - - uid: 44839 + parent: 40599 + - uid: 45228 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,30.5 - parent: 40203 - - uid: 44840 + parent: 40599 + - uid: 45229 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,24.5 - parent: 40203 - - uid: 44841 + parent: 40599 + - uid: 45230 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,30.5 - parent: 40203 - - uid: 44842 + parent: 40599 + - uid: 45231 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,29.5 - parent: 40203 - - uid: 44843 + parent: 40599 + - uid: 45232 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,28.5 - parent: 40203 - - uid: 44844 + parent: 40599 + - uid: 45233 components: - type: Transform rot: 1.5707963267948966 rad pos: 75.5,24.5 - parent: 40203 - - uid: 44845 + parent: 40599 + - uid: 45234 components: - type: Transform pos: 76.5,37.5 - parent: 40203 - - uid: 44846 + parent: 40599 + - uid: 45235 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,36.5 - parent: 40203 - - uid: 44847 + parent: 40599 + - uid: 45236 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,34.5 - parent: 40203 - - uid: 44848 + parent: 40599 + - uid: 45237 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,33.5 - parent: 40203 - - uid: 44849 + parent: 40599 + - uid: 45238 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,32.5 - parent: 40203 - - uid: 44850 + parent: 40599 + - uid: 45239 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,26.5 - parent: 40203 - - uid: 44851 + parent: 40599 + - uid: 45240 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,25.5 - parent: 40203 - - uid: 44852 + parent: 40599 + - uid: 45241 components: - type: Transform rot: 1.5707963267948966 rad pos: 76.5,24.5 - parent: 40203 - - uid: 44853 + parent: 40599 + - uid: 45242 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,37.5 - parent: 40203 - - uid: 44854 + parent: 40599 + - uid: 45243 components: - type: Transform rot: 1.5707963267948966 rad pos: 77.5,32.5 - parent: 40203 - - uid: 44855 + parent: 40599 + - uid: 45244 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,37.5 - parent: 40203 - - uid: 44856 + parent: 40599 + - uid: 45245 components: - type: Transform rot: 1.5707963267948966 rad pos: 78.5,32.5 - parent: 40203 - - uid: 44857 + parent: 40599 + - uid: 45246 components: - type: Transform pos: 79.5,31.5 - parent: 40203 - - uid: 44858 + parent: 40599 + - uid: 45247 components: - type: Transform rot: 1.5707963267948966 rad pos: 79.5,37.5 - parent: 40203 - - uid: 44859 + parent: 40599 + - uid: 45248 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,36.5 - parent: 40203 - - uid: 44860 + parent: 40599 + - uid: 45249 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,34.5 - parent: 40203 - - uid: 44861 + parent: 40599 + - uid: 45250 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,33.5 - parent: 40203 - - uid: 44862 + parent: 40599 + - uid: 45251 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,32.5 - parent: 40203 - - uid: 44863 + parent: 40599 + - uid: 45252 components: - type: Transform pos: 38.5,34.5 - parent: 40203 + parent: 40599 + - uid: 47123 + components: + - type: Transform + pos: -5.5,1.5 + parent: 46943 + - uid: 47124 + components: + - type: Transform + pos: -5.5,0.5 + parent: 46943 + - uid: 47125 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 46943 + - uid: 47126 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 46943 + - uid: 47127 + components: + - type: Transform + pos: 6.5,1.5 + parent: 46943 + - uid: 47128 + components: + - type: Transform + pos: 6.5,0.5 + parent: 46943 + - uid: 47129 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 46943 + - uid: 47130 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 46943 + - uid: 47131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,4.5 + parent: 46943 + - uid: 47132 + components: + - type: Transform + pos: -1.5,11.5 + parent: 46943 + - uid: 47133 + components: + - type: Transform + pos: 0.5,11.5 + parent: 46943 + - uid: 47134 + components: + - type: Transform + pos: 1.5,11.5 + parent: 46943 + - uid: 47135 + components: + - type: Transform + pos: 2.5,11.5 + parent: 46943 + - uid: 47136 + components: + - type: Transform + pos: 4.5,8.5 + parent: 46943 + - uid: 47137 + components: + - type: Transform + pos: -0.5,11.5 + parent: 46943 + - uid: 47138 + components: + - type: Transform + pos: 3.5,10.5 + parent: 46943 + - uid: 47139 + components: + - type: Transform + pos: 4.5,10.5 + parent: 46943 + - uid: 47140 + components: + - type: Transform + pos: -4.5,8.5 + parent: 46943 + - uid: 47141 + components: + - type: Transform + pos: -4.5,6.5 + parent: 46943 + - uid: 47142 + components: + - type: Transform + pos: -2.5,10.5 + parent: 46943 + - uid: 47143 + components: + - type: Transform + pos: -3.5,10.5 + parent: 46943 + - uid: 47144 + components: + - type: Transform + pos: 5.5,5.5 + parent: 46943 + - uid: 47145 + components: + - type: Transform + pos: -3.5,8.5 + parent: 46943 + - uid: 47146 + components: + - type: Transform + pos: 5.5,6.5 + parent: 46943 + - uid: 47147 + components: + - type: Transform + pos: -4.5,5.5 + parent: 46943 + - uid: 47148 + components: + - type: Transform + pos: 5.5,7.5 + parent: 46943 + - uid: 47149 + components: + - type: Transform + pos: 5.5,8.5 + parent: 46943 + - uid: 47150 + components: + - type: Transform + pos: 4.5,9.5 + parent: 46943 + - uid: 47151 + components: + - type: Transform + pos: -4.5,7.5 + parent: 46943 + - uid: 47152 + components: + - type: Transform + pos: -3.5,9.5 + parent: 46943 + - uid: 47153 + components: + - type: Transform + pos: -1.5,10.5 + parent: 46943 + - uid: 47154 + components: + - type: Transform + pos: 2.5,10.5 + parent: 46943 + - uid: 47155 + components: + - type: Transform + pos: -2.5,4.5 + parent: 46943 + - uid: 47156 + components: + - type: Transform + pos: 0.5,1.5 + parent: 46943 + - uid: 47157 + components: + - type: Transform + pos: 3.5,4.5 + parent: 46943 + - uid: 47158 + components: + - type: Transform + pos: 2.5,4.5 + parent: 46943 + - uid: 47159 + components: + - type: Transform + pos: -1.5,1.5 + parent: 46943 + - uid: 47160 + components: + - type: Transform + pos: 5.5,4.5 + parent: 46943 + - uid: 47161 + components: + - type: Transform + pos: -1.5,4.5 + parent: 46943 + - uid: 47162 + components: + - type: Transform + pos: 5.5,2.5 + parent: 46943 + - uid: 47163 + components: + - type: Transform + pos: 4.5,7.5 + parent: 46943 + - uid: 47164 + components: + - type: Transform + pos: -0.5,1.5 + parent: 46943 + - uid: 47165 + components: + - type: Transform + pos: 1.5,1.5 + parent: 46943 + - uid: 47166 + components: + - type: Transform + pos: 5.5,3.5 + parent: 46943 + - uid: 47167 + components: + - type: Transform + pos: 3.5,3.5 + parent: 46943 + - uid: 47168 + components: + - type: Transform + pos: 3.5,2.5 + parent: 46943 + - uid: 47169 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 46943 + - uid: 47170 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 46943 + - uid: 47171 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 46943 + - uid: 47172 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 46943 + - uid: 47173 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 46943 + - uid: 47174 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 46943 + - uid: 47175 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 46943 + - uid: 47176 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 46943 + - uid: 47177 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 46943 + - uid: 47178 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 46943 + - uid: 47179 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 46943 + - uid: 47180 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 46943 + - uid: 47181 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 46943 + - uid: 47182 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 46943 + - uid: 47183 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 46943 + - uid: 47184 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 46943 + - uid: 47185 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 46943 + - uid: 47186 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 46943 + - uid: 47187 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 46943 + - uid: 47188 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 46943 + - uid: 47189 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 46943 + - uid: 47190 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 46943 + - uid: 47191 + components: + - type: Transform + pos: 2.5,1.5 + parent: 46943 + - uid: 47192 + components: + - type: Transform + pos: 3.5,1.5 + parent: 46943 + - uid: 47193 + components: + - type: Transform + pos: -4.5,1.5 + parent: 46943 + - uid: 47194 + components: + - type: Transform + pos: -2.5,1.5 + parent: 46943 + - uid: 47195 + components: + - type: Transform + pos: 5.5,1.5 + parent: 46943 + - uid: 47196 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 46943 + - uid: 47197 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 46943 + - uid: 47198 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 46943 + - uid: 47199 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 46943 + - uid: 47200 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 46943 + - uid: 47201 + components: + - type: Transform + pos: 0.5,4.5 + parent: 46943 + - uid: 47202 + components: + - type: Transform + pos: 3.5,5.5 + parent: 46943 + - uid: 47203 + components: + - type: Transform + pos: -4.5,2.5 + parent: 46943 + - uid: 47204 + components: + - type: Transform + pos: -1.5,6.5 + parent: 46943 + - uid: 47205 + components: + - type: Transform + pos: -1.5,7.5 + parent: 46943 + - uid: 47206 + components: + - type: Transform + pos: -1.5,8.5 + parent: 46943 + - uid: 47207 + components: + - type: Transform + pos: -1.5,9.5 + parent: 46943 + - uid: 47208 + components: + - type: Transform + pos: -0.5,7.5 + parent: 46943 + - uid: 47209 + components: + - type: Transform + pos: 1.5,7.5 + parent: 46943 + - uid: 47210 + components: + - type: Transform + pos: 2.5,7.5 + parent: 46943 + - uid: 47211 + components: + - type: Transform + pos: 2.5,8.5 + parent: 46943 + - uid: 47212 + components: + - type: Transform + pos: 0.5,7.5 + parent: 46943 - proto: WardrobeBlack entities: - - uid: 15068 + - uid: 15387 components: - type: Transform pos: 46.5,-25.5 @@ -314923,15 +323801,15 @@ entities: showEnts: False occludes: True ents: - - 15069 - - 15070 - - 15071 - - 15072 + - 15388 + - 15389 + - 15390 + - 15391 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15073 + - uid: 15392 components: - type: Transform pos: 24.5,-18.5 @@ -314960,15 +323838,15 @@ entities: showEnts: False occludes: True ents: - - 15076 - - 15074 - - 15077 - - 15075 + - 15395 + - 15393 + - 15396 + - 15394 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15078 + - uid: 15397 components: - type: Transform pos: 25.5,-18.5 @@ -314997,15 +323875,15 @@ entities: showEnts: False occludes: True ents: - - 15080 - - 15079 - - 15082 - - 15081 + - 15399 + - 15398 + - 15401 + - 15400 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15086 + - uid: 15405 components: - type: Transform pos: 24.5,2.5 @@ -315034,15 +323912,15 @@ entities: showEnts: False occludes: True ents: - - 15090 - - 15088 - - 15089 - - 15087 + - 15409 + - 15407 + - 15408 + - 15406 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15091 + - uid: 15410 components: - type: Transform pos: 25.5,2.5 @@ -315071,64 +323949,163 @@ entities: showEnts: False occludes: True ents: - - 15095 - - 15094 - - 15092 - - 15093 + - 15414 + - 15413 + - 15411 + - 15412 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15427 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15429 + - 15431 + - 15428 + - 15430 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15432 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15436 + - 15434 + - 15435 + - 15433 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15108 +- proto: WardrobeBotanist + entities: + - uid: 15137 components: - type: Transform - pos: -13.5,19.5 + pos: -101.50869,17.420336 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 15110 - - 15112 - - 15109 - - 15111 + - 15138 + - 15143 + - 15142 + - 15144 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15113 +- proto: WardrobeCargoFilled + entities: + - uid: 39876 components: - type: Transform - pos: -13.5,18.5 + pos: -108.75276,41.5 + parent: 2 + - uid: 39877 + components: + - type: Transform + pos: 61.5,-49.5 parent: 2 + - uid: 39878 + components: + - type: Transform + pos: 62.5,-49.5 + parent: 2 + - uid: 39879 + components: + - type: Transform + pos: 63.5,-49.5 + parent: 2 +- proto: WardrobeChapelFilled + entities: + - uid: 8464 + components: + - type: Transform + pos: 55.733463,-10.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8465 + - 8466 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 47025 + components: + - type: Transform + pos: -3.5,7.5 + parent: 46943 - type: EntityStorage air: volume: 200 immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -315145,67 +324122,22 @@ entities: showEnts: False occludes: True ents: - - 15117 - - 15115 - - 15116 - - 15114 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: WardrobeBotanist - entities: - - uid: 14825 - components: - - type: Transform - pos: -101.50869,17.420336 - parent: 2 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14826 - - 14831 - - 14830 - - 14832 + - 47026 + - 47027 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null -- proto: WardrobeCargoFilled - entities: - - uid: 39496 - components: - - type: Transform - pos: 61.5,-49.5 - parent: 2 - - uid: 39497 - components: - - type: Transform - pos: 62.5,-49.5 - parent: 2 - - uid: 39498 - components: - - type: Transform - pos: 63.5,-49.5 - parent: 2 - - uid: 39499 - components: - - type: Transform - pos: 64.5,-49.5 - parent: 2 - proto: WardrobeGenetics entities: - - uid: 39500 + - uid: 39880 components: - type: Transform pos: -27.5,49.5 parent: 2 - proto: WardrobeMixedFilled entities: - - uid: 15059 + - uid: 15379 components: - type: Transform pos: 38.5,11.5 @@ -315234,71 +324166,71 @@ entities: showEnts: False occludes: True ents: - - 15060 + - 15380 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobePink entities: - - uid: 39501 + - uid: 39881 components: - type: Transform pos: 34.5,-2.5 parent: 2 - - uid: 45130 + - uid: 45514 components: - type: MetaData desc: Стандартное хранилище для одежды и снаряжения. - type: Transform pos: 0.5,7.5 - parent: 44970 + parent: 45355 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 45134 - - 45131 - - 45135 - - 45136 - - 45132 - - 45133 + - 45518 + - 45515 + - 45519 + - 45520 + - 45516 + - 45517 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 45137 + - uid: 45521 components: - type: MetaData desc: Стандартное хранилище для одежды и снаряжения. - type: Transform pos: -1.5,7.5 - parent: 44970 + parent: 45355 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 45140 - - 45143 - - 45139 - - 45142 - - 45141 - - 45138 + - 45524 + - 45527 + - 45523 + - 45526 + - 45525 + - 45522 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 45144 + - uid: 45528 components: - type: MetaData desc: Стандартное хранилище для одежды и снаряжения. - type: Transform pos: -3.5,7.5 - parent: 44970 + parent: 45355 - type: EntityStorage air: volume: 200 @@ -315323,53 +324255,53 @@ entities: showEnts: False occludes: True ents: - - 45147 - - 45150 - - 45149 - - 45146 - - 45145 - - 45148 + - 45531 + - 45534 + - 45533 + - 45530 + - 45529 + - 45532 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 45151 + - uid: 45535 components: - type: MetaData desc: Стандартное хранилище для одежды и снаряжения. - type: Transform pos: 2.5,7.5 - parent: 44970 + parent: 45355 - type: ContainerContainer containers: entity_storage: !type:Container showEnts: False occludes: True ents: - - 45155 - - 45152 - - 45156 - - 45153 - - 45157 - - 45154 + - 45539 + - 45536 + - 45540 + - 45537 + - 45541 + - 45538 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobePinkFilled entities: - - uid: 39502 + - uid: 39882 components: - type: Transform pos: 34.5,-1.5 parent: 2 - proto: WardrobePrison entities: - - uid: 41484 + - uid: 41880 components: - type: Transform pos: 37.58947,68.614975 - parent: 40203 + parent: 40599 - type: EntityStorage air: volume: 200 @@ -315394,18 +324326,18 @@ entities: showEnts: False occludes: True ents: - - 41485 - - 41486 - - 41487 + - 41881 + - 41882 + - 41883 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 44864 + - uid: 45253 components: - type: Transform pos: 39.355095,68.5056 - parent: 40203 + parent: 40599 - type: Fixtures fixtures: fix1: @@ -315432,11 +324364,11 @@ entities: removedMasks: 20 - type: PlaceableSurface isPlaceable: True - - uid: 44865 + - uid: 45254 components: - type: Transform pos: 36.417595,68.6306 - parent: 40203 + parent: 40599 - type: Fixtures fixtures: fix1: @@ -315465,39 +324397,39 @@ entities: isPlaceable: True - proto: WardrobePrisonFilled entities: - - uid: 39503 + - uid: 39883 components: - type: Transform pos: -42.5,15.5 parent: 2 - - uid: 39504 + - uid: 39884 components: - type: Transform pos: -46.5,15.5 parent: 2 - - uid: 39505 + - uid: 39885 components: - type: Transform pos: -50.5,15.5 parent: 2 - - uid: 39506 + - uid: 39886 components: - type: Transform pos: -115.5,23.5 parent: 2 - - uid: 39507 + - uid: 39887 components: - type: Transform pos: -115.5,15.5 parent: 2 - - uid: 39508 + - uid: 39888 components: - type: Transform pos: -115.5,19.5 parent: 2 - proto: WardrobeSalvageFilled entities: - - uid: 39509 + - uid: 39889 components: - type: Transform pos: 74.5,-43.5 @@ -315520,43 +324452,43 @@ entities: - 0 - 0 - 0 - - uid: 39510 + - uid: 39890 components: - type: Transform pos: 72.5,-43.5 parent: 2 - - uid: 39511 + - uid: 39891 components: - type: Transform pos: 73.5,-43.5 parent: 2 - proto: WardrobeScienceFilled entities: - - uid: 39512 + - uid: 39892 components: - type: Transform pos: 16.5,-43.5 parent: 2 - - uid: 39513 + - uid: 39893 components: - type: Transform pos: 16.5,-44.5 parent: 2 - - uid: 39514 + - uid: 39894 components: - type: Transform pos: 16.5,-45.5 parent: 2 - proto: WardrobeVirologyFilled entities: - - uid: 39515 + - uid: 39895 components: - type: Transform pos: 23.5,54.5 parent: 2 - proto: WardrobeWhite entities: - - uid: 15096 + - uid: 15415 components: - type: Transform pos: 48.5,20.5 @@ -315585,13 +324517,13 @@ entities: showEnts: False occludes: True ents: - - 15098 - - 15097 + - 15417 + - 15416 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15101 + - uid: 15420 components: - type: Transform pos: -116.5,1.5 @@ -315602,14 +324534,14 @@ entities: showEnts: False occludes: True ents: - - 15102 - - 15103 - - 15104 + - 15421 + - 15422 + - 15423 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - - uid: 15150 + - uid: 15468 components: - type: Transform pos: -117.5,1.5 @@ -315620,37 +324552,37 @@ entities: showEnts: False occludes: True ents: - - 15152 - - 15151 - - 15153 + - 15470 + - 15469 + - 15471 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobeWhiteFilled entities: - - uid: 39516 + - uid: 39896 components: - type: Transform pos: 33.5,-13.5 parent: 2 - proto: WarningAir entities: - - uid: 39517 + - uid: 39897 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-67.5 parent: 2 - - uid: 44866 + - uid: 45255 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,62.5 - parent: 40203 + parent: 40599 - proto: WarningCO2 entities: - - uid: 39518 + - uid: 39898 components: - type: Transform rot: 3.141592653589793 rad @@ -315658,7 +324590,7 @@ entities: parent: 2 - proto: WarningN2 entities: - - uid: 39519 + - uid: 39899 components: - type: Transform rot: 3.141592653589793 rad @@ -315666,7 +324598,7 @@ entities: parent: 2 - proto: WarningO2 entities: - - uid: 39520 + - uid: 39900 components: - type: Transform rot: 3.141592653589793 rad @@ -315674,21 +324606,21 @@ entities: parent: 2 - proto: WarningPlasma entities: - - uid: 39521 + - uid: 39901 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-67.5 parent: 2 - - uid: 44867 + - uid: 45256 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,60.5 - parent: 40203 + parent: 40599 - proto: WarningTritium entities: - - uid: 39522 + - uid: 39902 components: - type: Transform rot: 3.141592653589793 rad @@ -315696,13 +324628,13 @@ entities: parent: 2 - proto: WarningWaste entities: - - uid: 39523 + - uid: 39903 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,-67.5 parent: 2 - - uid: 39524 + - uid: 39904 components: - type: MetaData desc: ВНИМАНИЕ! Труба для транспортировки раскалённых отходов. Перед работой убедитесь, что поток отходов через неё отключён. @@ -315711,23 +324643,23 @@ entities: parent: 2 - proto: WarpPoint entities: - - uid: 44868 + - uid: 45257 components: - type: Transform pos: 52.5,40.5 - parent: 40203 + parent: 40599 - type: WarpPoint location: Теслаград - - uid: 46219 + - uid: 46572 components: - type: Transform pos: 2.5,-1.5 - parent: 44970 + parent: 45355 - type: WarpPoint location: Горячие источники - proto: WarpPointBombing entities: - - uid: 39525 + - uid: 39905 components: - type: MetaData name: Массив СМЭС @@ -315736,7 +324668,7 @@ entities: parent: 2 - type: WarpPoint location: Массив СМЭС - - uid: 39526 + - uid: 39906 components: - type: MetaData name: Ксеноархеология @@ -315745,7 +324677,7 @@ entities: parent: 2 - type: WarpPoint location: Ксеноархеология - - uid: 39527 + - uid: 39907 components: - type: MetaData name: Оружейная @@ -315754,7 +324686,7 @@ entities: parent: 2 - type: WarpPoint location: Оружейная - - uid: 39528 + - uid: 39908 components: - type: MetaData name: Хранилище EVA @@ -315763,7 +324695,7 @@ entities: parent: 2 - type: WarpPoint location: Хранилище EVA - - uid: 39529 + - uid: 39909 components: - type: MetaData desc: Серверная телекоммуникации @@ -315773,7 +324705,7 @@ entities: parent: 2 - type: WarpPoint location: Серверная телекоммуникации - - uid: 39530 + - uid: 39910 components: - type: MetaData name: Серверная камер @@ -315782,7 +324714,7 @@ entities: parent: 2 - type: WarpPoint location: Серверная камер - - uid: 39531 + - uid: 39911 components: - type: MetaData name: Хранилище @@ -315791,7 +324723,7 @@ entities: parent: 2 - type: WarpPoint location: Хранилище - - uid: 39532 + - uid: 39912 components: - type: MetaData name: Хранилище плат @@ -315800,7 +324732,7 @@ entities: parent: 2 - type: WarpPoint location: Хранилище плат - - uid: 39533 + - uid: 39913 components: - type: MetaData name: Офис капитана @@ -315809,7 +324741,7 @@ entities: parent: 2 - type: WarpPoint location: Офис капитана - - uid: 39534 + - uid: 39914 components: - type: MetaData name: Химическая лаборатория @@ -315818,7 +324750,7 @@ entities: parent: 2 - type: WarpPoint location: Химическая лаборатория - - uid: 39535 + - uid: 39915 components: - type: MetaData name: Лаборатория клонирования @@ -315827,7 +324759,7 @@ entities: parent: 2 - type: WarpPoint location: Лаборатория клонирования - - uid: 39536 + - uid: 39916 components: - type: MetaData name: Перма бриг, коридор у камер @@ -315836,7 +324768,7 @@ entities: parent: 2 - type: WarpPoint location: Перма бриг, коридор у камер - - uid: 39537 + - uid: 39917 components: - type: MetaData name: Мостик @@ -315845,7 +324777,7 @@ entities: parent: 2 - type: WarpPoint location: Мостик - - uid: 39538 + - uid: 39918 components: - type: MetaData name: Офис квартирмейстера @@ -315854,7 +324786,7 @@ entities: parent: 2 - type: WarpPoint location: Офис квартирмейстера - - uid: 39539 + - uid: 39919 components: - type: MetaData name: Каюта клоуна @@ -315863,7 +324795,7 @@ entities: parent: 2 - type: WarpPoint location: Каюта клоуна - - uid: 39540 + - uid: 39920 components: - type: MetaData name: Офис АВД @@ -315872,7 +324804,7 @@ entities: parent: 2 - type: WarpPoint location: Офис АВД - - uid: 39541 + - uid: 39921 components: - type: MetaData name: Офис главы службы безопасности @@ -315881,7 +324813,7 @@ entities: parent: 2 - type: WarpPoint location: Офис главы службы безопасности - - uid: 39542 + - uid: 39922 components: - type: MetaData name: Офис главы персонала @@ -315890,7 +324822,7 @@ entities: parent: 2 - type: WarpPoint location: Офис главы персонала - - uid: 39543 + - uid: 39923 components: - type: MetaData name: Офис старшего инженера @@ -315899,7 +324831,7 @@ entities: parent: 2 - type: WarpPoint location: Офис старшего инженера - - uid: 39544 + - uid: 39924 components: - type: MetaData name: Офис НР @@ -315908,7 +324840,7 @@ entities: parent: 2 - type: WarpPoint location: Офис Научрука - - uid: 39545 + - uid: 39925 components: - type: MetaData name: Офис главного врача @@ -315919,294 +324851,301 @@ entities: location: Офис главного врача - proto: WaterCooler entities: - - uid: 39546 + - uid: 39926 components: - type: Transform - pos: -10.5,-10.5 + pos: -106.26821,41.5 parent: 2 - - uid: 39547 + - uid: 39927 components: - type: Transform - pos: -40.5,-13.5 + pos: -10.5,-10.5 parent: 2 - - uid: 39548 + - uid: 39928 components: - type: Transform - pos: 16.5,41.5 + pos: -40.5,-13.5 parent: 2 - - uid: 39549 + - uid: 39929 components: - type: Transform - pos: 18.5,27.5 + pos: 16.5,41.5 parent: 2 - - uid: 39550 + - uid: 39930 components: - type: Transform pos: 22.5,-54.5 parent: 2 - - uid: 39551 + - uid: 39931 components: - type: Transform pos: 4.5,-46.5 parent: 2 - - uid: 39552 + - uid: 39932 components: - type: Transform pos: -2.5,-50.5 parent: 2 - - uid: 39553 + - uid: 39933 components: - type: Transform pos: 6.5,-53.5 parent: 2 - - uid: 39554 + - uid: 39934 components: - type: Transform pos: -20.5,47.5 parent: 2 - - uid: 39555 + - uid: 39935 components: - type: Transform pos: -19.5,22.5 parent: 2 - - uid: 39556 + - uid: 39936 components: - type: Transform pos: 0.5,49.5 parent: 2 - - uid: 39557 + - uid: 39937 components: - type: Transform - pos: 67.5,-33.5 + pos: -33.5,-20.5 parent: 2 - - uid: 39558 + - uid: 39938 components: - type: Transform - pos: -33.5,-20.5 + pos: 67.5,-31.5 parent: 2 - - uid: 44869 + - uid: 45258 components: - type: Transform pos: 74.5,71.5 - parent: 40203 - - uid: 46220 + parent: 40599 + - uid: 46573 components: - type: Transform pos: 3.5,5.5 - parent: 44970 + parent: 45355 - proto: WaterTankFull entities: - - uid: 39559 + - uid: 39939 + components: + - type: Transform + pos: 56.503716,-17.542713 + parent: 2 + - uid: 39940 components: - type: Transform pos: -86.5,52.5 parent: 2 - - uid: 39560 + - uid: 39941 components: - type: Transform pos: 56.5,38.5 parent: 2 - - uid: 39561 + - uid: 39942 components: - type: Transform pos: 59.5,-36.5 parent: 2 - - uid: 39562 + - uid: 39943 components: - type: Transform pos: 48.5,-30.5 parent: 2 - - uid: 39563 + - uid: 39944 components: - type: Transform pos: 24.5,-9.5 parent: 2 - - uid: 39564 - components: - - type: Transform - pos: 33.5,-49.5 - parent: 2 - - uid: 39565 + - uid: 39945 components: - type: Transform - pos: 77.5,6.5 + pos: 33.5,-49.5 parent: 2 - - uid: 39566 + - uid: 39946 components: - type: Transform - pos: 53.5,-17.5 + pos: 77.5,6.5 parent: 2 - - uid: 39567 + - uid: 39947 components: - type: Transform pos: 28.5,47.5 parent: 2 - - uid: 39568 + - uid: 39948 components: - type: Transform pos: -99.5,24.5 parent: 2 - - uid: 39569 + - uid: 39949 components: - type: Transform pos: -64.5,-11.5 parent: 2 - proto: WaterTankHighCapacity entities: - - uid: 39570 + - uid: 39950 components: - type: Transform pos: 18.5,36.5 parent: 2 - - uid: 39571 + - uid: 39951 components: - type: Transform pos: -101.5,14.5 parent: 2 - - uid: 44870 + - uid: 45259 components: - type: Transform pos: 51.5,74.5 - parent: 40203 + parent: 40599 - proto: WaterVaporCanister entities: - - uid: 39572 + - uid: 39952 components: - type: Transform pos: -7.5,-56.5 parent: 2 - - uid: 39573 + - uid: 39953 components: - type: Transform pos: 48.5,-48.5 parent: 2 - - uid: 39574 + - uid: 39954 components: - type: Transform pos: -6.5,-68.5 parent: 2 +- proto: WeaponBaguette + entities: + - uid: 39955 + components: + - type: Transform + pos: 22.510942,15.623734 + parent: 2 - proto: WeaponCapacitorRecharger entities: - - uid: 39575 + - uid: 39956 components: - type: Transform pos: -40.5,-11.5 parent: 2 - - uid: 39576 + - uid: 39957 components: - type: Transform pos: -33.5,12.5 parent: 2 - - uid: 39577 + - uid: 39958 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-55.5 parent: 2 - - uid: 39578 + - uid: 39959 components: - type: Transform pos: -24.5,-10.5 parent: 2 - - uid: 39579 + - uid: 39960 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,2.5 parent: 2 - - uid: 39580 + - uid: 39961 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,-11.5 parent: 2 - - uid: 39581 + - uid: 39962 components: - type: Transform pos: -10.5,54.5 parent: 2 - - uid: 39582 + - uid: 39963 components: - type: Transform rot: -1.5707963267948966 rad pos: -110.5,20.5 parent: 2 - - uid: 39583 + - uid: 39964 components: - type: Transform pos: -33.5,-18.5 parent: 2 - - uid: 44871 + - uid: 45260 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,80.5 - parent: 40203 + parent: 40599 - proto: WeaponDisabler entities: - - uid: 8330 + - uid: 8570 components: - type: Transform - parent: 8318 + parent: 8558 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 39584 + - uid: 39965 components: - type: Transform rot: -1.5707963267948966 rad pos: 65.55436,-26.42872 parent: 2 - - uid: 39585 + - uid: 39966 components: - type: Transform pos: -27.551468,-11.278118 parent: 2 - - uid: 39586 + - uid: 39967 components: - type: Transform pos: -107.455574,19.526716 parent: 2 - proto: WeaponDisablerPractice entities: - - uid: 39587 + - uid: 39968 components: - type: Transform pos: -24.55628,-9.687729 parent: 2 - - uid: 44872 + - uid: 45261 components: - type: Transform rot: 0.4188790204786391 rad pos: 44.338074,80.65854 - parent: 40203 + parent: 40599 - proto: WeaponDisablerSMG entities: - - uid: 23066 + - uid: 23467 components: - type: Transform - parent: 23063 + parent: 23464 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponForceGun entities: - - uid: 44873 + - uid: 45262 components: - type: Transform rot: 3.5255650890285457 rad pos: 65.587524,50.523216 - parent: 40203 + parent: 40599 - proto: WeaponLaserCannon entities: - - uid: 44874 + - uid: 45263 components: - type: MetaData desc: Тяжёлая лазерная пушка. Изменённая батарея и рельса делают её ещё более смертоносным оружием. name: усовершенствованная лазерная пушка - type: Transform pos: 51.52543,34.705864 - parent: 40203 + parent: 40599 - type: Gun fireRate: 2.5 - type: Battery @@ -316214,60 +325153,60 @@ entities: maxCharge: 2000 - proto: WeaponLaserCarbine entities: - - uid: 39588 + - uid: 39969 components: - type: Transform pos: -40.488773,-6.432732 parent: 2 - - uid: 39589 + - uid: 39970 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.59695,11.31876 parent: 2 - - uid: 39590 + - uid: 39971 components: - type: Transform pos: -40.499054,-6.327566 parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 39591 + - uid: 39972 components: - type: Transform pos: 43.496723,-55.56943 parent: 2 - - uid: 39592 + - uid: 39973 components: - type: Transform pos: 43.51235,-55.366306 parent: 2 - - uid: 39593 + - uid: 39974 components: - type: Transform pos: -24.58776,-8.448357 parent: 2 - proto: WeaponLaserGun entities: - - uid: 39594 + - uid: 39975 components: - type: Transform pos: -37.464073,-6.336498 parent: 2 - - uid: 39595 + - uid: 39976 components: - type: Transform pos: -37.4695,-6.479607 parent: 2 - - uid: 46221 + - uid: 46574 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.4085274,12.085537 - parent: 44970 + parent: 45355 - proto: WeaponLaserSvalinn entities: - - uid: 39596 + - uid: 39977 components: - type: MetaData desc: Именной лазерный пистолет с гравировкой на нём. Кажется он потрёпан временем и слегка промёрз насквозь. @@ -316276,7 +325215,7 @@ entities: parent: 2 - proto: WeaponLauncherChinaLake entities: - - uid: 39597 + - uid: 39978 components: - type: MetaData desc: Грозное трофейное оружие, добытое в кровопролитном сражении. Его точно не выиграли в карты по пьяни! @@ -316293,75 +325232,58 @@ entities: - Pullable - Wieldable - GunWieldBonus -- proto: WeaponPistolCobra - entities: - - uid: 39598 - components: - - type: Transform - pos: -62.8758,50.42331 - parent: 2 - proto: WeaponPistolMk58 entities: - - uid: 23074 + - uid: 23475 components: - type: Transform - parent: 23069 + parent: 23470 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 23075 + - uid: 23476 components: - type: Transform - parent: 23069 + parent: 23470 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponPistolViper entities: - - uid: 13735 + - uid: 47251 components: - type: Transform - pos: -58.97281,52.315483 - parent: 2 - - type: ContainerContainer - containers: - gun_magazine: !type:ContainerSlot - showEnts: False - occludes: True - ent: 13737 - gun_chamber: !type:ContainerSlot - showEnts: False - occludes: True - ent: 13736 - - type: ChamberMagazineAmmoProvider - boltClosed: True + parent: 47246 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponProtoKineticAccelerator entities: - - uid: 46222 + - uid: 46575 components: - type: Transform rot: 3.141592653589793 rad pos: -2.0637598,1.6283531 - parent: 44970 + parent: 45355 - proto: WeaponRevolverDeckard entities: - - uid: 39599 + - uid: 39979 components: - type: Transform pos: 4.454509,-8.935495 parent: 2 - proto: WeaponRevolverMateba entities: - - uid: 23062 + - uid: 23463 components: - type: Transform - parent: 23059 + parent: 23460 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponRevolverPirate entities: - - uid: 39600 + - uid: 39980 components: - type: MetaData desc: Странный дульнозарядный револьвер, который использовали пираты. Использует патроны калибра .45 магнум. На нём бирка "Грязная бомба" @@ -316371,32 +325293,46 @@ entities: parent: 2 - proto: WeaponRevolverPython entities: - - uid: 44875 + - uid: 45264 components: - type: Transform rot: 3.735004599267865 rad pos: 74.9,73.27307 - parent: 40203 + parent: 40599 +- proto: WeaponRifleFoam + entities: + - uid: 39981 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 28.495764,10.528836 + parent: 2 + - uid: 39982 + components: + - type: Transform + rot: 0.17453292519943295 rad + pos: 28.495764,10.685086 + parent: 2 - proto: WeaponRifleLecter entities: - - uid: 44876 + - uid: 45265 components: - type: Transform rot: 2.91469985083053 rad pos: 36.75,72.55 - parent: 40203 + parent: 40599 - proto: WeaponShotgunBulldog entities: - - uid: 41507 + - uid: 41903 components: - type: Transform - parent: 41504 + parent: 41900 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunDoubleBarreled entities: - - uid: 39601 + - uid: 39983 components: - type: Transform rot: 1.5707963267948966 rad @@ -316404,94 +325340,94 @@ entities: parent: 2 - proto: WeaponShotgunDoubleBarreledRubber entities: - - uid: 45018 + - uid: 45403 components: - type: MetaData desc: Добро пожаловать в клуб 27. - type: Transform - parent: 45007 + parent: 45392 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunEnforcerRubber entities: - - uid: 39602 + - uid: 39984 components: - type: Transform pos: -42.53581,-8.370232 parent: 2 - proto: WeaponShotgunHandmade entities: - - uid: 8219 + - uid: 39985 components: - type: MetaData desc: И пусть меня зовут сумасшедшим, ведь ты есть моя помощь, сила и спасение. name: Аннабель - type: Transform - parent: 8214 - - type: Physics - canCollide: False - - uid: 44877 + rot: 0.17453292519943295 rad + pos: 53.405212,-12.287792 + parent: 2 + - uid: 45266 components: - type: Transform rot: 1.8675022996339325 rad pos: 42.525574,80.580414 - parent: 40203 + parent: 40599 - proto: WeaponShotgunImprovised entities: - - uid: 14801 + - uid: 15113 components: - type: Transform - parent: 14799 + parent: 15111 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunKammerer entities: - - uid: 39603 + - uid: 39986 components: - type: Transform pos: -36.48275,-6.2268777 parent: 2 - - uid: 39604 + - uid: 39987 components: - type: Transform pos: -36.4515,-6.4143777 parent: 2 - - uid: 39605 + - uid: 39988 components: - type: Transform rot: 3.141592653589793 rad pos: -44.43003,-8.369499 parent: 2 - - uid: 39606 + - uid: 39989 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.7532,12.365635 parent: 2 - - uid: 39607 + - uid: 39990 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.47195,12.35001 parent: 2 - - uid: 44878 + - uid: 45267 components: - type: Transform rot: 0.3490658503988659 rad pos: 37.35,80.65 - parent: 40203 + parent: 40599 - proto: WeaponShotgunSawnEmpty entities: - - uid: 39608 + - uid: 39991 components: - type: Transform pos: 24.328924,-3.1844153 parent: 2 - proto: WeaponSniperHristov entities: - - uid: 39609 + - uid: 39992 components: - type: MetaData desc: MLG 360 NO SCOPE!!! @@ -316505,172 +325441,153 @@ entities: - Gun - GunWieldBonus - Contraband - - uid: 39610 + - uid: 39993 components: - type: Transform pos: -48.468174,-8.610992 parent: 2 - proto: WeaponSprayNozzle entities: - - uid: 39611 + - uid: 39994 components: - type: Transform pos: -31.196667,23.903236 parent: 2 - proto: WeaponSubMachineGunWt550 entities: - - uid: 23067 + - uid: 23468 components: - type: Transform - parent: 23063 + parent: 23464 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponTurretHostile entities: - - uid: 39612 - components: - - type: Transform - pos: -127.5,-14.5 - parent: 2 - - uid: 44879 + - uid: 45268 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,83.5 - parent: 40203 - - uid: 44880 + parent: 40599 + - uid: 45269 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,77.5 - parent: 40203 + parent: 40599 - proto: WeaponTurretNanoTrasen entities: - - uid: 39613 + - uid: 39995 components: - type: Transform pos: 2.5,11.5 parent: 2 - proto: WeaponTurretSyndicateBroken entities: - - uid: 39614 + - uid: 39996 components: - type: Transform pos: 13.5,64.5 parent: 2 - - uid: 39615 + - uid: 39997 components: - type: Transform pos: 9.5,64.5 parent: 2 - - uid: 39616 + - uid: 39998 components: - type: Transform pos: 37.5,-41.5 parent: 2 - - uid: 39617 + - uid: 39999 components: - type: Transform pos: 42.5,-39.5 parent: 2 - - uid: 39618 - components: - - type: Transform - pos: 2.5,15.5 - parent: 2 - - uid: 44881 + - uid: 45270 components: - type: Transform pos: 43.5,63.5 - parent: 40203 - - uid: 44882 + parent: 40599 + - uid: 45271 components: - type: Transform pos: 53.5,59.5 - parent: 40203 - - uid: 44883 + parent: 40599 + - uid: 45272 components: - type: Transform pos: 53.5,63.5 - parent: 40203 - - uid: 44884 + parent: 40599 + - uid: 45273 components: - type: Transform pos: 55.5,55.5 - parent: 40203 - - uid: 44885 + parent: 40599 + - uid: 45274 components: - type: Transform pos: 54.5,74.5 - parent: 40203 - - uid: 44886 + parent: 40599 + - uid: 45275 components: - type: Transform pos: 69.5,65.5 - parent: 40203 - - uid: 44887 + parent: 40599 + - uid: 45276 components: - type: Transform pos: 28.5,66.5 - parent: 40203 - - uid: 44888 + parent: 40599 + - uid: 45277 components: - type: Transform pos: 44.5,74.5 - parent: 40203 - - uid: 44889 + parent: 40599 + - uid: 45278 components: - type: Transform pos: 52.5,49.5 - parent: 40203 - - uid: 44890 + parent: 40599 + - uid: 45279 components: - type: Transform pos: 46.5,79.5 - parent: 40203 -- proto: WeaponWaterPistol + parent: 40599 +- proto: WeaponWaterBlaster entities: - - uid: 39619 + - uid: 40000 components: - type: Transform - pos: -24.505905,-9.059986 + rot: 2.1467549799530254 rad + pos: 25.586472,11.521622 parent: 2 -- proto: WebBed +- proto: WeaponWaterPistol entities: - - uid: 39620 - components: - - type: MetaData - name: слепленная из снега кровать - - type: Transform - pos: -63.5,27.5 - parent: 2 - - uid: 39621 + - uid: 40001 components: - - type: MetaData - desc: Слишком холодная. - name: снежковая кровать - type: Transform - pos: -85.5,64.5 + rot: 0.3839724354387525 rad + pos: 28.57471,11.514511 parent: 2 - - type: Pullable - prevFixedRotation: True - - uid: 39622 + - uid: 40002 components: - type: Transform - pos: -98.5,42.5 + pos: -24.505905,-9.059986 parent: 2 -- proto: WebDoor +- proto: WebBed entities: - - uid: 39623 + - uid: 40003 components: - type: MetaData - desc: Дверь, ведущая в снежные земли... или просторную комнату. - name: снежная дверь + name: слепленная из снега кровать - type: Transform - pos: -84.5,63.5 + pos: -63.5,27.5 parent: 2 - - uid: 39624 +- proto: WebDoor + entities: + - uid: 40004 components: - type: MetaData desc: Дверь, ведущая в древние земли... или просторную комнату. @@ -316678,177 +325595,160 @@ entities: - type: Transform pos: 85.5,-5.5 parent: 2 - - uid: 39625 - components: - - type: MetaData - desc: Дверь, ведущая в земли Йети... или просторную комнату. - name: снежная дверь - - type: Transform - pos: -59.5,43.5 - parent: 2 - - uid: 39626 - components: - - type: MetaData - desc: Дверь, ведущая в снежные земли... или просторную комнату. - name: снежная дверь - - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,66.5 - parent: 2 - proto: Welder entities: - - uid: 39627 + - uid: 40005 components: - type: Transform pos: -59.49571,67.59336 parent: 2 - - uid: 39628 + - uid: 40006 components: - type: Transform pos: 60.226055,-36.961327 parent: 2 - proto: WelderIndustrial entities: - - uid: 39629 + - uid: 40007 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.48771477,-44.05281 parent: 2 - - uid: 39630 + - uid: 40008 components: - type: Transform pos: -12.556444,-53.51322 parent: 2 - proto: WelderIndustrialAdvanced entities: - - uid: 44891 + - uid: 45280 components: - type: Transform rot: -1.5707963267948966 rad pos: 68.75333,61.501488 - parent: 40203 + parent: 40599 - proto: WelderMini entities: - - uid: 39631 + - uid: 40009 components: - type: Transform pos: 45.471962,-18.37196 parent: 2 - - uid: 39632 + - uid: 40010 components: - type: Transform pos: -12.244377,-53.62059 parent: 2 - proto: WeldingFuelTank entities: - - uid: 39633 + - uid: 40011 components: - type: Transform pos: -85.5,52.5 parent: 2 - - uid: 39634 + - uid: 40012 components: - type: Transform pos: 100.5,-29.5 parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 39635 + - uid: 40013 components: - type: Transform pos: -68.5,16.5 parent: 2 - - uid: 39636 + - uid: 40014 components: - type: Transform pos: 57.5,38.5 parent: 2 - - uid: 39637 + - uid: 40015 components: - type: Transform pos: 60.5,-36.5 parent: 2 - - uid: 39638 + - uid: 40016 components: - type: Transform pos: 52.5,-31.5 parent: 2 - - uid: 39639 + - uid: 40017 components: - type: Transform pos: 24.5,-10.5 parent: 2 - - uid: 39640 + - uid: 40018 components: - type: Transform pos: 28.5,-39.5 parent: 2 - - uid: 39641 + - uid: 40019 components: - type: Transform pos: 8.5,-11.5 parent: 2 - - uid: 39642 + - uid: 40020 components: - type: Transform pos: -12.5,-54.5 parent: 2 - - uid: 39643 + - uid: 40021 components: - type: Transform pos: 18.5,46.5 parent: 2 - proto: WeldingFuelTankHighCapacity entities: - - uid: 39644 + - uid: 40022 components: - type: Transform pos: 0.5,-40.5 parent: 2 - proto: WetFloorSign entities: - - uid: 39645 + - uid: 40023 components: - type: Transform pos: 2.3543549,30.362684 parent: 2 - - uid: 39646 + - uid: 40024 components: - type: Transform pos: 2.5106049,30.393934 parent: 2 - - uid: 39647 + - uid: 40025 components: - type: Transform pos: 2.7449799,30.362684 parent: 2 - proto: WheatBushel entities: - - uid: 19386 + - uid: 19704 components: - type: Transform - parent: 19369 + parent: 19687 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19387 + - uid: 19705 components: - type: Transform - parent: 19369 + parent: 19687 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 19388 + - uid: 19706 components: - type: Transform - parent: 19369 + parent: 19687 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WhiteCane entities: - - uid: 39648 + - uid: 40026 components: - type: MetaData desc: Ловись рыбка большая и маленькая. @@ -316857,7 +325757,7 @@ entities: rot: -1.5707963267948966 rad pos: -73.59644,38.40028 parent: 2 - - uid: 39649 + - uid: 40027 components: - type: MetaData desc: Ловись рыбка большая и маленькая. @@ -316868,109 +325768,112 @@ entities: parent: 2 - proto: Windoor entities: - - uid: 39650 + - uid: 40028 components: - type: Transform pos: -4.5,-13.5 parent: 2 - - uid: 39651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-30.5 - parent: 2 - - uid: 39652 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,-31.5 - parent: 2 - - uid: 39653 + - uid: 40029 components: - type: Transform pos: 71.5,-32.5 parent: 2 - - uid: 39654 + - uid: 40030 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,19.5 parent: 2 - - uid: 39655 + - uid: 40031 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,18.5 parent: 2 - - uid: 46223 + - uid: 46576 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,10.5 - parent: 44970 - - uid: 46224 + parent: 45355 + - uid: 46577 components: - type: Transform rot: 3.141592653589793 rad pos: -2.5,10.5 - parent: 44970 + parent: 45355 +- proto: WindoorAssembly + entities: + - uid: 40032 + components: + - type: Transform + pos: -75.5,13.5 + parent: 2 - proto: WindoorAssemblySecure entities: - - uid: 44892 + - uid: 45281 components: - type: MetaData name: раздвижное бронеокно - type: Transform rot: 3.141592653589793 rad pos: 71.5,78.5 - parent: 40203 - - uid: 44893 + parent: 40599 + - uid: 45282 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,80.5 - parent: 40203 - - uid: 44894 + parent: 40599 + missingComponents: + - Pullable + - uid: 45283 components: - type: Transform rot: 3.141592653589793 rad pos: 39.5,72.5 - parent: 40203 + parent: 40599 + - uid: 46938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 46584 - proto: WindoorAssemblySecurePlasma entities: - - uid: 44895 + - uid: 45284 components: - type: Transform pos: 52.5,36.5 - parent: 40203 + parent: 40599 - proto: WindoorBarLocked entities: - - uid: 39656 + - uid: 40033 components: - type: Transform pos: 47.5,21.5 parent: 2 - proto: WindoorHydroponicsLocked entities: - - uid: 39657 + - uid: 40034 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,30.5 parent: 2 - - uid: 39658 + - uid: 40035 components: - type: Transform rot: -1.5707963267948966 rad pos: 19.5,35.5 parent: 2 - - uid: 39659 + - uid: 40036 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,36.5 parent: 2 - - uid: 39660 + - uid: 40037 components: - type: Transform rot: 3.141592653589793 rad @@ -316978,13 +325881,13 @@ entities: parent: 2 - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 39661 + - uid: 40038 components: - type: Transform rot: 1.5707963267948966 rad pos: 19.5,35.5 parent: 2 - - uid: 39662 + - uid: 40039 components: - type: Transform rot: -1.5707963267948966 rad @@ -316992,7 +325895,7 @@ entities: parent: 2 - proto: WindoorKitchenLocked entities: - - uid: 39663 + - uid: 40040 components: - type: Transform rot: 1.5707963267948966 rad @@ -317000,19 +325903,19 @@ entities: parent: 2 - proto: WindoorPlasma entities: - - uid: 39664 + - uid: 40041 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,-36.5 parent: 2 - - uid: 39665 + - uid: 40042 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-36.5 parent: 2 - - uid: 39666 + - uid: 40043 components: - type: Transform rot: 3.141592653589793 rad @@ -317020,41 +325923,41 @@ entities: parent: 2 - proto: WindoorSecure entities: - - uid: 39667 + - uid: 40044 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,11.5 parent: 2 - - uid: 39668 + - uid: 40045 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,10.5 parent: 2 - - uid: 39669 + - uid: 40046 components: - type: Transform rot: -1.5707963267948966 rad pos: -9.5,12.5 parent: 2 - - uid: 39670 + - uid: 40047 components: - type: Transform rot: 3.141592653589793 rad pos: 68.5,-25.5 parent: 2 - - uid: 39671 + - uid: 40048 components: - type: Transform pos: -29.5,-1.5 parent: 2 - - uid: 39672 + - uid: 40049 components: - type: Transform pos: -28.5,-1.5 parent: 2 - - uid: 39673 + - uid: 40050 components: - type: Transform rot: 3.141592653589793 rad @@ -317063,122 +325966,121 @@ entities: - type: AccessReader access: - - Captain + - uid: 46939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 46584 - proto: WindoorSecureArmoryLocked entities: - - uid: 39674 + - uid: 40051 components: - type: Transform rot: -1.5707963267948966 rad pos: -35.5,-13.5 parent: 2 - - uid: 39675 + - uid: 40052 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-9.5 parent: 2 - - uid: 39676 + - uid: 40053 components: - type: Transform rot: -1.5707963267948966 rad pos: -47.5,-8.5 parent: 2 - - uid: 39677 + - uid: 40054 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-9.5 parent: 2 - - uid: 39678 + - uid: 40055 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-9.5 parent: 2 - - uid: 39679 + - uid: 40056 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-17.5 parent: 2 - - uid: 44896 + - uid: 45285 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,72.5 - parent: 40203 - - uid: 44897 + parent: 40599 + - uid: 45286 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,72.5 - parent: 40203 - - uid: 44898 + parent: 40599 + - uid: 45287 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,72.5 - parent: 40203 + parent: 40599 - proto: WindoorSecureBrigLocked entities: - - uid: 39680 + - uid: 40057 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-6.5 parent: 2 - - uid: 39681 + - uid: 40058 components: - type: Transform rot: -1.5707963267948966 rad pos: -24.5,-11.5 parent: 2 - - uid: 44899 + - uid: 45288 components: - type: Transform rot: 3.141592653589793 rad pos: 45.5,80.5 - parent: 40203 + parent: 40599 - proto: WindoorSecureCargoLocked entities: - - uid: 39682 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-30.5 - parent: 2 - - uid: 39683 + - uid: 40059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-31.5 + pos: 62.5,-32.5 parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 39684 + - uid: 40060 components: - type: Transform pos: -7.5,45.5 parent: 2 - - uid: 39685 + - uid: 40061 components: - type: Transform pos: -8.5,45.5 parent: 2 - - uid: 39686 + - uid: 40062 components: - type: Transform pos: -6.5,45.5 parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 39687 + - uid: 40063 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-10.5 parent: 2 - - uid: 39688 + - uid: 40064 components: - type: Transform rot: 3.141592653589793 rad @@ -317186,13 +326088,13 @@ entities: parent: 2 - proto: WindoorSecureDetectiveLocked entities: - - uid: 39689 + - uid: 40065 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,11.5 parent: 2 - - uid: 39690 + - uid: 40066 components: - type: Transform rot: 1.5707963267948966 rad @@ -317200,13 +326102,13 @@ entities: parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 39691 + - uid: 40067 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-5.5 parent: 2 - - uid: 39692 + - uid: 40068 components: - type: Transform rot: 3.141592653589793 rad @@ -317214,37 +326116,37 @@ entities: parent: 2 - proto: WindoorSecureKitchenLocked entities: - - uid: 39693 + - uid: 40069 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,30.5 parent: 2 - - uid: 39694 + - uid: 40070 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 - - uid: 39695 + - uid: 40071 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,30.5 parent: 2 - - uid: 39696 + - uid: 40072 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,30.5 parent: 2 - - uid: 39697 + - uid: 40073 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,30.5 parent: 2 - - uid: 39698 + - uid: 40074 components: - type: Transform rot: 3.141592653589793 rad @@ -317252,33 +326154,47 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 39699 + - uid: 40075 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,39.5 parent: 2 - - uid: 39700 + - uid: 40076 components: - type: Transform rot: 1.5707963267948966 rad pos: 3.5,40.5 parent: 2 - - uid: 39701 + - uid: 40077 components: - type: Transform rot: 1.5707963267948966 rad pos: 0.5,37.5 parent: 2 - - uid: 39702 + - uid: 40078 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,45.5 parent: 2 +- proto: WindoorSecurePlasma + entities: + - uid: 46940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 46584 + - uid: 46941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,10.5 + parent: 46584 - proto: WindoorSecureSalvageLocked entities: - - uid: 39703 + - uid: 40079 components: - type: Transform rot: -1.5707963267948966 rad @@ -317286,136 +326202,136 @@ entities: parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 39704 + - uid: 40080 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,14.5 parent: 2 - - uid: 39705 + - uid: 40081 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,14.5 parent: 2 - - uid: 39706 + - uid: 40082 components: - type: Transform pos: -48.5,14.5 parent: 2 - - uid: 39707 + - uid: 40083 components: - type: Transform pos: -44.5,14.5 parent: 2 - - uid: 39708 + - uid: 40084 components: - type: Transform pos: -40.5,14.5 parent: 2 - - uid: 39709 + - uid: 40085 components: - type: Transform rot: 3.141592653589793 rad pos: -40.5,14.5 parent: 2 - - uid: 39710 + - uid: 40086 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,49.5 parent: 2 - - uid: 39711 + - uid: 40087 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,49.5 parent: 2 - - uid: 39712 + - uid: 40088 components: - type: Transform rot: 1.5707963267948966 rad pos: -35.5,-13.5 parent: 2 - - uid: 39713 + - uid: 40089 components: - type: Transform pos: 68.5,-25.5 parent: 2 - - uid: 39714 + - uid: 40090 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-1.5 parent: 2 - - uid: 39715 + - uid: 40091 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 2 - - uid: 39716 + - uid: 40092 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-1.5 parent: 2 - - uid: 39717 + - uid: 40093 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 2 - - uid: 39718 + - uid: 40094 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,9.5 parent: 2 - - uid: 39719 + - uid: 40095 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,-28.5 parent: 2 - - uid: 39720 + - uid: 40096 components: - type: Transform rot: 3.141592653589793 rad pos: -109.5,17.5 parent: 2 - - uid: 39721 + - uid: 40097 components: - type: Transform rot: 3.141592653589793 rad pos: -110.5,17.5 parent: 2 - - uid: 39722 + - uid: 40098 components: - type: Transform pos: -100.5,9.5 parent: 2 - proto: WindoorTheatreLocked entities: - - uid: 39723 + - uid: 40099 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,12.5 parent: 2 - - uid: 39724 + - uid: 40100 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,11.5 parent: 2 - - uid: 39725 + - uid: 40101 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,11.5 parent: 2 - - uid: 39726 + - uid: 40102 components: - type: Transform rot: 3.141592653589793 rad @@ -317423,478 +326339,551 @@ entities: parent: 2 - proto: Window entities: - - uid: 39727 + - uid: 40103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,44.5 + parent: 2 + - uid: 40104 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,42.5 + parent: 2 + - uid: 40105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -107.5,45.5 + parent: 2 + - uid: 40106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,45.5 + parent: 2 + - uid: 40107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,44.5 + parent: 2 + - uid: 40108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,43.5 + parent: 2 + - uid: 40109 + components: + - type: Transform + pos: -78.5,19.5 + parent: 2 + - uid: 40110 + components: + - type: Transform + pos: -73.5,19.5 + parent: 2 + - uid: 40111 + components: + - type: Transform + pos: -74.5,19.5 + parent: 2 + - uid: 40112 + components: + - type: Transform + pos: 23.5,11.5 + parent: 2 + - uid: 40113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,-31.5 + parent: 2 + - uid: 40114 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 40115 components: - type: MetaData name: тонкий лед - type: Transform pos: -76.5,-10.5 parent: 2 - - uid: 39728 + missingComponents: + - Destructible + - uid: 40116 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,43.5 parent: 2 - - uid: 39729 + - uid: 40117 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,44.5 parent: 2 - - uid: 39730 + - uid: 40118 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,45.5 parent: 2 - - uid: 39731 + - uid: 40119 components: - type: Transform pos: 3.5,-18.5 parent: 2 - - uid: 39732 + - uid: 40120 components: - type: Transform pos: 4.5,46.5 parent: 2 - - uid: 39733 + - uid: 40121 components: - type: Transform pos: 2.5,46.5 parent: 2 - - uid: 39734 + - uid: 40122 components: - type: Transform pos: 3.5,46.5 parent: 2 - - uid: 39735 + - uid: 40123 components: - type: Transform pos: -15.5,51.5 parent: 2 - - uid: 39736 + - uid: 40124 components: - type: Transform pos: -15.5,50.5 parent: 2 - - uid: 39737 + - uid: 40125 components: - type: Transform pos: -15.5,52.5 parent: 2 - - uid: 39738 + - uid: 40126 components: - type: Transform pos: 1.5,-18.5 parent: 2 - - uid: 39739 + - uid: 40127 components: - type: Transform rot: 1.5707963267948966 rad pos: -23.5,42.5 parent: 2 - - uid: 39740 + - uid: 40128 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,46.5 parent: 2 - - uid: 39741 + - uid: 40129 components: - type: Transform pos: 0.5,65.5 parent: 2 - - uid: 39742 + - uid: 40130 components: - type: Transform pos: 0.5,66.5 parent: 2 - - uid: 39743 + - uid: 40131 components: - type: Transform pos: 6.5,50.5 parent: 2 - - uid: 39744 + - uid: 40132 components: - type: Transform rot: -1.5707963267948966 rad pos: 91.5,-24.5 parent: 2 - - uid: 39745 + - uid: 40133 components: - type: Transform rot: -1.5707963267948966 rad pos: 90.5,-24.5 parent: 2 - - uid: 39746 + - uid: 40134 components: - type: Transform rot: -1.5707963267948966 rad pos: 88.5,-24.5 parent: 2 - - uid: 39747 + - uid: 40135 components: - type: Transform pos: 18.5,20.5 parent: 2 - - uid: 39748 + - uid: 40136 components: - type: Transform pos: 18.5,21.5 parent: 2 - - uid: 39749 + - uid: 40137 components: - type: Transform pos: 18.5,22.5 parent: 2 - - uid: 39750 + - uid: 40138 components: - type: Transform pos: 36.5,-11.5 parent: 2 - - uid: 39751 + - uid: 40139 components: - type: Transform pos: 36.5,-10.5 parent: 2 - - uid: 39752 + - uid: 40140 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-6.5 parent: 2 - - uid: 39753 + - uid: 40141 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-11.5 parent: 2 - - uid: 39754 + - uid: 40142 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-5.5 parent: 2 - - uid: 39755 + - uid: 40143 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,26.5 parent: 2 - - uid: 39756 + - uid: 40144 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,26.5 parent: 2 - - uid: 39757 + - uid: 40145 components: - type: Transform rot: 3.141592653589793 rad pos: 24.5,26.5 parent: 2 - - type: PointLight - softness: 0.9 - energy: 7 - color: '#8E7CC3FF' - - uid: 39758 + - uid: 40146 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 - - uid: 39759 + - uid: 40147 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-22.5 parent: 2 - - uid: 39760 + - uid: 40148 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-28.5 parent: 2 - - uid: 39761 + - uid: 40149 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-23.5 parent: 2 - - uid: 39762 + - uid: 40150 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-25.5 parent: 2 - - uid: 39763 + - uid: 40151 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 - - uid: 39764 + - uid: 40152 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-21.5 parent: 2 - - uid: 39765 + - uid: 40153 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-25.5 parent: 2 - - uid: 39766 + - uid: 40154 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-22.5 parent: 2 - - uid: 39767 + - uid: 40155 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-28.5 parent: 2 - - uid: 39768 + - uid: 40156 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-24.5 parent: 2 - - uid: 39769 + - uid: 40157 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-20.5 parent: 2 - - uid: 39770 + - uid: 40158 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 - - uid: 39771 + - uid: 40159 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-26.5 parent: 2 - - uid: 39772 + - uid: 40160 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-26.5 parent: 2 - - uid: 39773 + - uid: 40161 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-23.5 parent: 2 - - uid: 39774 + - uid: 40162 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-27.5 parent: 2 - - uid: 39775 + - uid: 40163 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-21.5 parent: 2 - - uid: 39776 + - uid: 40164 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-4.5 parent: 2 - - uid: 39777 + - uid: 40165 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-10.5 parent: 2 - - uid: 39778 + - uid: 40166 components: - type: Transform rot: -1.5707963267948966 rad pos: 23.5,-9.5 parent: 2 - - uid: 39779 + - uid: 40167 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,-31.5 parent: 2 - - uid: 39780 + - uid: 40168 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-31.5 parent: 2 - - uid: 39781 + - uid: 40169 components: - type: Transform pos: 32.5,-4.5 parent: 2 - - uid: 39782 + - uid: 40170 components: - type: Transform pos: 37.5,-5.5 parent: 2 - - uid: 39783 + - uid: 40171 components: - type: Transform pos: 32.5,-3.5 parent: 2 - - uid: 39784 + - uid: 40172 components: - type: Transform pos: 41.5,8.5 parent: 2 - - uid: 39785 + - uid: 40173 components: - type: Transform pos: 40.5,8.5 parent: 2 - - uid: 39786 + - uid: 40174 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,19.5 parent: 2 - - uid: 39787 + - uid: 40175 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,18.5 parent: 2 - - uid: 39788 + - uid: 40176 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,20.5 parent: 2 - - uid: 39789 + - uid: 40177 components: - type: Transform pos: 31.5,26.5 parent: 2 - - uid: 39790 + - uid: 40178 components: - type: Transform pos: 32.5,26.5 parent: 2 - - type: PointLight - softness: 0.9 - energy: 7 - color: '#8E7CC3FF' - - uid: 39791 + - uid: 40179 components: - type: Transform pos: 33.5,26.5 parent: 2 - - uid: 39792 + - uid: 40180 components: - type: Transform pos: 7.5,50.5 parent: 2 - - uid: 39793 + - uid: 40181 components: - type: Transform pos: 1.5,66.5 parent: 2 - - uid: 39794 + - uid: 40182 components: - type: Transform pos: 0.5,64.5 parent: 2 - - uid: 39795 + - uid: 40183 components: - type: Transform pos: 2.5,66.5 parent: 2 - - uid: 39796 + - uid: 40184 components: - type: Transform rot: -1.5707963267948966 rad pos: 3.5,66.5 parent: 2 - - uid: 39797 + - uid: 40185 components: - type: MetaData name: тонкий лед - type: Transform pos: -77.5,-10.5 parent: 2 - - uid: 39798 + missingComponents: + - Destructible + - uid: 40186 components: - type: MetaData name: тонкий лед - type: Transform pos: -75.5,-9.5 parent: 2 - - uid: 39799 + missingComponents: + - Destructible + - uid: 40187 components: - type: MetaData name: тонкий лед - type: Transform pos: -77.5,-9.5 parent: 2 - - uid: 39800 + missingComponents: + - Destructible + - uid: 40188 components: - type: MetaData name: тонкий лед - type: Transform pos: -75.5,-8.5 parent: 2 - - uid: 39801 + missingComponents: + - Destructible + - uid: 40189 components: - type: MetaData name: тонкий лед - type: Transform pos: -76.5,-9.5 parent: 2 - - uid: 39802 + missingComponents: + - Destructible + - uid: 40190 components: - type: MetaData name: тонкий лед - type: Transform pos: -75.5,-10.5 parent: 2 + missingComponents: + - Destructible - proto: WindowDirectional entities: - - uid: 39803 + - uid: 40191 components: - type: Transform pos: 74.5,-32.5 parent: 2 - - uid: 39804 + - uid: 40192 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-31.5 parent: 2 - - uid: 39805 + - uid: 40193 components: - type: Transform pos: 73.5,-32.5 parent: 2 - - uid: 39806 + - uid: 40194 components: - type: Transform pos: 75.5,-30.5 parent: 2 - - uid: 39807 + - uid: 40195 components: - type: Transform pos: -54.5,-1.5 parent: 2 - - uid: 39808 + - uid: 40196 components: - type: MetaData name: зеркало @@ -317902,7 +326891,7 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,46.5 parent: 2 - - uid: 39809 + - uid: 40197 components: - type: MetaData name: зеркало @@ -317910,7 +326899,7 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,47.5 parent: 2 - - uid: 39810 + - uid: 40198 components: - type: MetaData name: зеркало @@ -317918,19 +326907,19 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,48.5 parent: 2 - - uid: 39811 + - uid: 40199 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,-52.5 parent: 2 - - uid: 39812 + - uid: 40200 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,17.5 parent: 2 - - uid: 39813 + - uid: 40201 components: - type: MetaData name: зеркало @@ -317938,7 +326927,7 @@ entities: rot: 3.141592653589793 rad pos: -10.5,36.5 parent: 2 - - uid: 39814 + - uid: 40202 components: - type: MetaData name: зеркало @@ -317946,183 +326935,183 @@ entities: rot: 3.141592653589793 rad pos: -7.5,36.5 parent: 2 - - uid: 39815 + - uid: 40203 components: - type: MetaData name: зеркало - type: Transform pos: 31.5,-55.5 parent: 2 - - uid: 39816 + - uid: 40204 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,36.5 parent: 2 - - uid: 39817 + - uid: 40205 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,36.5 parent: 2 - - uid: 39818 + - uid: 40206 components: - type: Transform pos: 45.5,21.5 parent: 2 - - uid: 39819 + - uid: 40207 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,12.5 parent: 2 - - uid: 39820 + - uid: 40208 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,10.5 parent: 2 - - uid: 39821 + - uid: 40209 components: - type: Transform rot: 1.5707963267948966 rad pos: 56.5,13.5 parent: 2 - - uid: 39822 + - uid: 40210 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,4.5 parent: 2 - - uid: 39823 + - uid: 40211 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,3.5 parent: 2 - - uid: 39824 + - uid: 40212 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,2.5 parent: 2 - - uid: 39825 + - uid: 40213 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-0.5 parent: 2 - - uid: 39826 + - uid: 40214 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-1.5 parent: 2 - - uid: 39827 + - uid: 40215 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-2.5 parent: 2 - - uid: 39828 + - uid: 40216 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,10.5 parent: 2 - - uid: 39829 + - uid: 40217 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,12.5 parent: 2 - - uid: 39830 + - uid: 40218 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,-6.5 parent: 2 - - uid: 39831 + - uid: 40219 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,-6.5 parent: 2 - - uid: 39832 + - uid: 40220 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,-6.5 parent: 2 - - uid: 39833 + - uid: 40221 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,-6.5 parent: 2 - - uid: 39834 + - uid: 40222 components: - type: Transform pos: 46.5,21.5 parent: 2 - - uid: 39835 + - uid: 40223 components: - type: Transform pos: 48.5,21.5 parent: 2 - - uid: 39836 + - uid: 40224 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 - - uid: 39837 + - uid: 40225 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,30.5 parent: 2 - - uid: 39838 + - uid: 40226 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,19.5 parent: 2 - - uid: 39839 + - uid: 40227 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,19.5 parent: 2 - - uid: 39840 + - uid: 40228 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,19.5 parent: 2 - - uid: 39841 + - uid: 40229 components: - type: Transform pos: 72.5,-32.5 parent: 2 - - uid: 39842 + - uid: 40230 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-33.5 parent: 2 - - uid: 39843 + - uid: 40231 components: - type: Transform rot: 1.5707963267948966 rad pos: 74.5,-32.5 parent: 2 - - uid: 39844 + - uid: 40232 components: - type: Transform pos: 70.5,-32.5 parent: 2 - - uid: 39845 + - uid: 40233 components: - type: MetaData name: зеркало @@ -318130,17 +327119,17 @@ entities: rot: 3.141592653589793 rad pos: 82.5,-36.5 parent: 2 - - uid: 39846 + - uid: 40234 components: - type: Transform pos: -53.5,-1.5 parent: 2 - - uid: 39847 + - uid: 40235 components: - type: Transform pos: -51.5,-1.5 parent: 2 - - uid: 39848 + - uid: 40236 components: - type: MetaData name: зеркало @@ -318148,382 +327137,360 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,64.5 parent: 2 - - uid: 39849 + - uid: 40237 components: - type: Transform pos: -52.5,-1.5 parent: 2 - - uid: 44900 + - uid: 45289 components: - type: Transform pos: 56.5,84.5 - parent: 40203 - - uid: 44901 + parent: 40599 + - uid: 45290 components: - type: Transform pos: 57.5,84.5 - parent: 40203 + parent: 40599 - proto: WindowFrostedDirectional entities: - - uid: 39850 + - uid: 40238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-9.5 + parent: 2 + - uid: 40239 + components: + - type: Transform + pos: 57.5,-9.5 + parent: 2 + - uid: 40240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-9.5 + parent: 2 + - uid: 40241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 2 + - uid: 40242 components: - type: Transform rot: 3.141592653589793 rad pos: -27.5,25.5 parent: 2 - - uid: 39851 + - uid: 40243 components: - type: Transform pos: -27.5,25.5 parent: 2 - - uid: 39852 + - uid: 40244 components: - type: Transform rot: -1.5707963267948966 rad pos: -27.5,25.5 parent: 2 - - uid: 39853 + - uid: 40245 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-20.5 parent: 2 - - uid: 39854 + - uid: 40246 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-21.5 parent: 2 - - uid: 39855 + - uid: 40247 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.5,-20.5 parent: 2 - - uid: 39856 + - uid: 40248 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-21.5 parent: 2 - - uid: 39857 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,47.5 - parent: 2 - - uid: 39858 - components: - - type: Transform - pos: -28.5,47.5 - parent: 2 - - uid: 39859 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,47.5 - parent: 2 - - uid: 39860 + - uid: 40249 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-50.5 parent: 2 - - uid: 39861 + - uid: 40250 components: - type: Transform rot: 1.5707963267948966 rad pos: 64.5,0.5 parent: 2 - - uid: 39862 + - uid: 40251 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,0.5 parent: 2 - - uid: 39863 + - uid: 40252 components: - type: Transform pos: 64.5,0.5 parent: 2 - - uid: 39864 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,1.5 - parent: 2 - - uid: 39865 - components: - - type: Transform - pos: 64.5,1.5 - parent: 2 - - uid: 39866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,1.5 - parent: 2 - - uid: 39867 + - uid: 40253 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-17.5 parent: 2 - - uid: 39868 + - uid: 40254 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-17.5 parent: 2 - - uid: 39869 + - uid: 40255 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 - - uid: 39870 + - uid: 40256 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 - - uid: 39871 + - uid: 40257 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,1.5 parent: 2 - - uid: 39872 + - uid: 40258 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,0.5 parent: 2 - - uid: 39873 + - uid: 40259 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,1.5 parent: 2 - - uid: 39874 + - uid: 40260 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,-0.5 parent: 2 - - uid: 39875 + - uid: 40261 components: - type: Transform rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 - - uid: 39876 + - uid: 40262 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-0.5 parent: 2 - - uid: 39877 + - uid: 40263 components: - type: Transform pos: 59.5,2.5 parent: 2 - - uid: 39878 + - uid: 40264 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,-0.5 parent: 2 - - uid: 39879 + - uid: 40265 components: - type: Transform pos: 60.5,2.5 parent: 2 - - uid: 39880 + - uid: 40266 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,4.5 parent: 2 - - uid: 39881 + - uid: 40267 components: - type: Transform rot: 3.141592653589793 rad pos: 60.5,4.5 parent: 2 - - uid: 39882 + - uid: 40268 components: - type: Transform pos: 60.5,-2.5 parent: 2 - - uid: 39883 + - uid: 40269 components: - type: Transform pos: 59.5,-2.5 parent: 2 - - uid: 39884 + - uid: 40270 components: - type: Transform rot: 3.141592653589793 rad pos: -19.5,5.5 parent: 2 - - uid: 39885 + - uid: 40271 components: - type: Transform rot: 3.141592653589793 rad pos: -20.5,5.5 parent: 2 - - uid: 39886 + - uid: 40272 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,-6.5 parent: 2 - - uid: 39887 + - uid: 40273 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-10.5 parent: 2 - - uid: 39888 + - uid: 40274 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-10.5 parent: 2 - - uid: 39889 + - uid: 40275 components: - type: Transform rot: 1.5707963267948966 rad pos: 81.5,-33.5 parent: 2 - - uid: 39890 + - uid: 40276 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,6.5 parent: 2 - - uid: 39891 + - uid: 40277 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,38.5 parent: 2 - - uid: 39892 + - uid: 40278 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,39.5 parent: 2 - - uid: 39893 + - uid: 40279 components: - type: Transform rot: 3.141592653589793 rad pos: -36.5,-17.5 parent: 2 - - uid: 39894 + - uid: 40280 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,47.5 parent: 2 - - uid: 39895 + - uid: 40281 components: - type: Transform pos: -29.5,47.5 parent: 2 - - uid: 39896 + - uid: 40282 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,47.5 parent: 2 - - uid: 39897 + - uid: 40283 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,23.5 parent: 2 - - uid: 39898 + - uid: 40284 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,23.5 parent: 2 - - uid: 39899 + - uid: 40285 components: - type: Transform pos: -97.5,23.5 parent: 2 - - uid: 39900 + - uid: 40286 components: - type: Transform pos: -97.5,22.5 parent: 2 - - uid: 39901 + - uid: 40287 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,22.5 parent: 2 - - uid: 39902 + - uid: 40288 components: - type: Transform rot: 3.141592653589793 rad pos: -97.5,22.5 parent: 2 - - uid: 39903 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-46.5 - parent: 2 - - uid: 39904 - components: - - type: Transform - pos: 59.5,-48.5 - parent: 2 - - uid: 39905 + - uid: 40289 components: - type: Transform - pos: 59.5,-46.5 + pos: 59.5,-48.5 parent: 2 - - uid: 39906 + - uid: 40290 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,-48.5 parent: 2 - - uid: 39907 + - uid: 40291 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,-48.5 parent: 2 - - uid: 39908 + - uid: 40292 components: - type: Transform rot: -1.5707963267948966 rad pos: 12.5,-37.5 parent: 2 - - uid: 39909 + - uid: 40293 components: - type: Transform rot: 3.141592653589793 rad pos: 12.5,-37.5 parent: 2 - - uid: 39910 + - uid: 40294 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,-37.5 parent: 2 - - uid: 39911 + - uid: 40295 components: - type: Transform pos: 12.5,-37.5 parent: 2 - - uid: 39912 + - uid: 40296 components: - type: Transform rot: -1.5707963267948966 rad @@ -318533,7 +327500,7 @@ entities: maxVisibility: -1 lastVisibility: -1 examineThreshold: 0 - - uid: 39913 + - uid: 40297 components: - type: Transform pos: -28.5,-48.5 @@ -318542,2032 +327509,2258 @@ entities: maxVisibility: -1 lastVisibility: -1 examineThreshold: 0 - - uid: 39914 + - uid: 40298 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-11.5 parent: 2 - - uid: 39915 + - uid: 40299 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-9.5 parent: 2 - - uid: 39916 + - uid: 40300 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-7.5 parent: 2 - - uid: 39917 + - uid: 40301 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-6.5 parent: 2 - - uid: 39918 + - uid: 40302 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-10.5 parent: 2 - - uid: 39919 + - uid: 40303 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-9.5 parent: 2 - - uid: 39920 + - uid: 40304 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-7.5 parent: 2 - - uid: 39921 + - uid: 40305 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-4.5 parent: 2 - - uid: 44902 + - uid: 45291 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,80.5 - parent: 40203 - - uid: 44903 + parent: 40599 + - uid: 45292 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,80.5 - parent: 40203 - - uid: 44904 + parent: 40599 + - uid: 45293 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,82.5 - parent: 40203 - - uid: 46225 + parent: 40599 + - uid: 46578 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,7.5 - parent: 44970 - - uid: 46226 + parent: 45355 + - uid: 46579 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,7.5 - parent: 44970 - - uid: 46227 + parent: 45355 + - uid: 46580 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,7.5 - parent: 44970 - - uid: 46228 + parent: 45355 + - uid: 46581 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,7.5 - parent: 44970 - - uid: 46229 + parent: 45355 + - uid: 46582 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,7.5 - parent: 44970 - - uid: 46230 + parent: 45355 + - uid: 46583 components: - type: Transform pos: 7.5,2.5 - parent: 44970 + parent: 45355 - proto: WindowReinforcedDirectional entities: - - uid: 39922 + - uid: 40306 + components: + - type: Transform + pos: 61.5,-32.5 + parent: 2 + - uid: 40307 + components: + - type: Transform + pos: 63.5,-32.5 + parent: 2 + - uid: 40308 components: - type: Transform rot: -1.5707963267948966 rad pos: 42.5,-60.5 parent: 2 - - uid: 39923 + - uid: 40309 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,-60.5 parent: 2 - - uid: 39924 + - uid: 40310 components: - type: Transform rot: 3.141592653589793 rad pos: 27.5,-60.5 parent: 2 - - uid: 39925 + - uid: 40311 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 - - uid: 39926 + - uid: 40312 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,36.5 parent: 2 - - uid: 39927 + - uid: 40313 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,41.5 parent: 2 - - uid: 39928 + - uid: 40314 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,39.5 parent: 2 - - uid: 39929 + - uid: 40315 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,40.5 parent: 2 - - uid: 39930 + - uid: 40316 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,37.5 parent: 2 - - uid: 39931 + - uid: 40317 components: - type: Transform rot: -1.5707963267948966 rad pos: 10.5,38.5 parent: 2 - - uid: 39932 + - uid: 40318 components: - type: Transform rot: 3.141592653589793 rad pos: 13.5,36.5 parent: 2 - - uid: 39933 + - uid: 40319 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,36.5 parent: 2 - - uid: 39934 + - uid: 40320 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,1.5 parent: 2 - - uid: 39935 + - uid: 40321 components: - type: Transform rot: -1.5707963267948966 rad pos: -106.5,4.5 parent: 2 - - uid: 39936 + - uid: 40322 components: - type: Transform rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 2 - - uid: 39937 + - uid: 40323 components: - type: Transform pos: 75.5,-26.5 parent: 2 - - uid: 39938 + - uid: 40324 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,38.5 parent: 2 - - uid: 39939 + - uid: 40325 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,38.5 parent: 2 - - uid: 39940 + - uid: 40326 components: - type: Transform pos: -16.5,-43.5 parent: 2 - - uid: 39941 + - uid: 40327 components: - type: Transform rot: 3.141592653589793 rad pos: -16.5,-43.5 parent: 2 - - uid: 39942 + - uid: 40328 components: - type: Transform pos: -12.5,-43.5 parent: 2 - - uid: 39943 + - uid: 40329 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,-36.5 parent: 2 - - uid: 39944 + - uid: 40330 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-43.5 parent: 2 - - uid: 39945 + - uid: 40331 components: - type: Transform rot: 3.141592653589793 rad pos: -4.5,-5.5 parent: 2 - - uid: 39946 + - uid: 40332 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 2 - - uid: 39947 + - uid: 40333 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-39.5 parent: 2 - - uid: 39948 + - uid: 40334 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-38.5 parent: 2 - - uid: 39949 + - uid: 40335 components: - type: Transform rot: -1.5707963267948966 rad pos: 17.5,-37.5 parent: 2 - - uid: 39950 + - uid: 40336 components: - type: Transform rot: 3.141592653589793 rad pos: 17.5,-37.5 parent: 2 - - uid: 39951 + - uid: 40337 components: - type: Transform pos: 17.5,-39.5 parent: 2 - - uid: 39952 + - uid: 40338 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,-6.5 parent: 2 - - uid: 39953 + - uid: 40339 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 2 - - uid: 39954 + - uid: 40340 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,-36.5 parent: 2 - - uid: 39955 + - uid: 40341 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,4.5 parent: 2 - - uid: 39956 + - uid: 40342 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,5.5 parent: 2 - - uid: 39957 + - uid: 40343 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,7.5 parent: 2 - - uid: 39958 + - uid: 40344 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,10.5 parent: 2 - - uid: 39959 + - uid: 40345 components: - type: Transform pos: -12.5,8.5 parent: 2 - - uid: 39960 + - uid: 40346 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,6.5 parent: 2 - - uid: 39961 + - uid: 40347 components: - type: Transform rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 2 - - uid: 39962 + - uid: 40348 components: - type: Transform pos: -11.5,8.5 parent: 2 - - uid: 39963 + - uid: 40349 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,7.5 parent: 2 - - uid: 39964 + - uid: 40350 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,5.5 parent: 2 - - uid: 39965 + - uid: 40351 components: - type: Transform rot: -1.5707963267948966 rad pos: -11.5,4.5 parent: 2 - - uid: 39966 + - uid: 40352 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,6.5 parent: 2 - - uid: 39967 + - uid: 40353 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,45.5 parent: 2 - - uid: 39968 + - uid: 40354 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,45.5 parent: 2 - - uid: 39969 + - uid: 40355 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-56.5 parent: 2 - - uid: 39970 + - uid: 40356 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,-55.5 parent: 2 - - uid: 39971 + - uid: 40357 components: - type: Transform pos: -24.5,-10.5 parent: 2 - - uid: 39972 + - uid: 40358 components: - type: Transform rot: 3.141592653589793 rad pos: -24.5,-7.5 parent: 2 - - uid: 39973 + - uid: 40359 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-7.5 parent: 2 - - uid: 39974 + - uid: 40360 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-7.5 parent: 2 - - uid: 39975 + - uid: 40361 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-8.5 parent: 2 - - uid: 39976 + - uid: 40362 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,-6.5 parent: 2 - - uid: 39977 + - uid: 40363 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-8.5 parent: 2 - - uid: 39978 + - uid: 40364 components: - type: Transform rot: -1.5707963267948966 rad pos: -41.5,-6.5 parent: 2 - - uid: 39979 + - uid: 40365 components: - type: Transform rot: 3.141592653589793 rad pos: -48.5,-8.5 parent: 2 - - uid: 39980 + - uid: 40366 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,9.5 parent: 2 - - uid: 39981 + - uid: 40367 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-31.5 parent: 2 - - uid: 39982 + - uid: 40368 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,10.5 parent: 2 - - uid: 39983 + - uid: 40369 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,12.5 parent: 2 - - uid: 39984 + - uid: 40370 components: - type: Transform rot: 3.141592653589793 rad pos: 75.5,-26.5 parent: 2 - - uid: 39985 + - uid: 40371 components: - type: Transform rot: 3.141592653589793 rad pos: -102.5,17.5 parent: 2 - - uid: 39986 + - uid: 40372 components: - type: Transform rot: 3.141592653589793 rad pos: -101.5,17.5 parent: 2 - - uid: 39987 + - uid: 40373 components: - type: Transform rot: 3.141592653589793 rad pos: -100.5,17.5 parent: 2 - - uid: 39988 + - uid: 40374 components: - type: Transform pos: -101.5,9.5 parent: 2 - - uid: 39989 + - uid: 40375 components: - type: Transform pos: -99.5,9.5 parent: 2 - - uid: 39990 + - uid: 40376 components: - type: Transform pos: 27.5,-60.5 parent: 2 - - uid: 39991 + - uid: 40377 components: - type: Transform rot: -1.5707963267948966 rad pos: 27.5,-60.5 parent: 2 - - uid: 39992 + - uid: 40378 components: - type: Transform pos: 42.5,-60.5 parent: 2 - - uid: 44905 + - uid: 45294 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,79.5 - parent: 40203 - - uid: 44906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,72.5 - parent: 40203 - - uid: 44907 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,71.5 - parent: 40203 - - uid: 44908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,72.5 - parent: 40203 - - uid: 44909 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 66.5,71.5 - parent: 40203 - - uid: 44910 + parent: 40599 + - uid: 45295 components: - type: Transform pos: 40.5,84.5 - parent: 40203 - - uid: 44911 + parent: 40599 + - uid: 45296 components: - type: Transform pos: 41.5,84.5 - parent: 40203 - - uid: 44912 + parent: 40599 + - uid: 45297 components: - type: Transform pos: 44.5,82.5 - parent: 40203 - - uid: 44913 + parent: 40599 + - uid: 45298 components: - type: Transform pos: 42.5,82.5 - parent: 40203 - - uid: 44914 + parent: 40599 + - uid: 45299 components: - type: Transform rot: -1.5707963267948966 rad pos: 53.5,34.5 - parent: 40203 - - uid: 44915 + parent: 40599 + - uid: 45300 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,40.5 - parent: 40203 - - uid: 44916 + parent: 40599 + - uid: 45301 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,41.5 - parent: 40203 - - uid: 44917 + parent: 40599 + - uid: 45302 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,39.5 - parent: 40203 - - uid: 44918 + parent: 40599 + - uid: 45303 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,41.5 - parent: 40203 - - uid: 44919 + parent: 40599 + - uid: 45304 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,40.5 - parent: 40203 - - uid: 44920 + parent: 40599 + - uid: 45305 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,39.5 - parent: 40203 - - uid: 44921 + parent: 40599 + - uid: 45306 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,34.5 - parent: 40203 - - uid: 44922 + parent: 40599 + - uid: 45307 components: - type: Transform rot: 1.5707963267948966 rad pos: 51.5,34.5 - parent: 40203 - - uid: 44923 + parent: 40599 + - uid: 45308 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,34.5 - parent: 40203 - - uid: 44924 + parent: 40599 + - uid: 45309 components: - type: Transform rot: -1.5707963267948966 rad pos: 36.5,72.5 - parent: 40203 - - uid: 44925 + parent: 40599 + - uid: 45310 components: - type: Transform rot: 1.5707963267948966 rad pos: 37.5,72.5 - parent: 40203 - - uid: 44926 + parent: 40599 + - uid: 45311 components: - type: Transform rot: -1.5707963267948966 rad pos: 38.5,72.5 - parent: 40203 - - uid: 44927 + parent: 40599 + - uid: 45312 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,72.5 - parent: 40203 + parent: 40599 - proto: Wirecutter entities: - - uid: 39993 + - uid: 40379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.824524,51.127167 + parent: 2 + - uid: 40380 components: - type: Transform pos: -11.552944,-7.343065 parent: 2 - - uid: 39994 + - uid: 40381 components: - type: Transform pos: 81.72828,6.3965144 parent: 2 +- proto: WizardsGrimoire + entities: + - uid: 47213 + components: + - type: MetaData + desc: Загадочная книга неизвестного культа.. + name: тёмный гримуар + - type: Transform + rot: 3.420845333908886 rad + pos: 0.5111542,-0.3243103 + parent: 46943 + missingComponents: + - ActivatableUI + - Store - proto: WoodDoor entities: - - uid: 39995 + - uid: 40382 components: - type: Transform - pos: -50.5,65.5 + rot: -1.5707963267948966 rad + pos: 52.5,-16.5 parent: 2 - - uid: 39996 + - uid: 40383 components: - type: Transform - pos: 86.5,-25.5 + pos: -78.5,13.5 parent: 2 - - uid: 39997 + - uid: 40384 components: - type: Transform - pos: 37.5,12.5 + pos: -72.5,18.5 parent: 2 - - uid: 39998 + - uid: 40385 components: - type: Transform - pos: 32.5,-14.5 + pos: -50.5,65.5 parent: 2 - - uid: 39999 + - uid: 40386 components: - type: Transform - pos: 33.5,-0.5 + pos: 86.5,-25.5 parent: 2 - - uid: 40000 + - uid: 40387 components: - type: Transform - pos: 6.5,-31.5 + pos: 37.5,12.5 parent: 2 - - uid: 40001 + - uid: 40388 components: - type: Transform - pos: 25.5,4.5 + pos: 32.5,-14.5 parent: 2 - - uid: 40002 + - uid: 40389 components: - type: Transform - pos: 24.5,7.5 + pos: 33.5,-0.5 parent: 2 - - uid: 40003 + - uid: 40390 components: - type: Transform - pos: 87.5,-26.5 + pos: 6.5,-31.5 parent: 2 - - uid: 40004 + - uid: 40391 components: - type: Transform - pos: 89.5,-25.5 + pos: 87.5,-26.5 parent: 2 - - uid: 40005 + - uid: 40392 components: - type: Transform - pos: -67.5,-6.5 + pos: 89.5,-25.5 parent: 2 - - uid: 40006 + - uid: 40393 components: - type: Transform pos: -44.5,28.5 parent: 2 - - uid: 40007 + - uid: 40394 components: - type: Transform pos: -44.5,28.5 parent: 2 - - uid: 40008 + - uid: 40395 components: - type: Transform pos: -40.5,23.5 parent: 2 - - uid: 44928 + - uid: 45313 components: - type: Transform pos: 53.5,29.5 - parent: 40203 - - uid: 44929 + parent: 40599 + - uid: 45314 components: - type: Transform pos: 49.5,26.5 - parent: 40203 - - uid: 44930 + parent: 40599 + - uid: 45315 components: - type: Transform pos: 72.5,29.5 - parent: 40203 - - uid: 44931 + parent: 40599 + - uid: 45316 components: - type: Transform pos: 65.5,39.5 - parent: 40203 - - uid: 44932 + parent: 40599 + - uid: 45317 components: - type: Transform pos: 34.5,28.5 - parent: 40203 - - uid: 44933 + parent: 40599 + - uid: 45318 components: - type: Transform pos: 39.5,33.5 - parent: 40203 + parent: 40599 + - uid: 47214 + components: + - type: Transform + pos: 1.5,4.5 + parent: 46943 + - uid: 47215 + components: + - type: Transform + pos: -3.5,1.5 + parent: 46943 + - uid: 47216 + components: + - type: Transform + pos: 4.5,1.5 + parent: 46943 + - uid: 47217 + components: + - type: Transform + pos: 4.5,5.5 + parent: 46943 + - uid: 47218 + components: + - type: Transform + pos: 2.5,9.5 + parent: 46943 + - uid: 47219 + components: + - type: Transform + pos: -1.5,5.5 + parent: 46943 - proto: WoodenBench entities: - - uid: 40009 + - uid: 40396 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,31.5 parent: 2 - - uid: 40010 + - uid: 40397 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,31.5 parent: 2 - - uid: 40011 + - uid: 40398 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,33.5 parent: 2 - - uid: 40012 + - uid: 40399 components: - type: Transform rot: -1.5707963267948966 rad pos: 57.5,31.5 parent: 2 - - uid: 40013 + - uid: 40400 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,33.5 parent: 2 - - uid: 40014 + - uid: 40401 components: - type: Transform rot: -1.5707963267948966 rad pos: 55.5,33.5 parent: 2 - - uid: 40015 + - uid: 40402 components: - type: Transform pos: -35.5,-52.5 parent: 2 - - uid: 40016 + - uid: 40403 components: - type: Transform rot: -1.5707963267948966 rad pos: -33.5,-54.5 parent: 2 - - uid: 40017 + - uid: 40404 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,28.5 parent: 2 - - uid: 40018 + - uid: 40405 components: - type: Transform rot: -1.5707963267948966 rad pos: 13.5,27.5 parent: 2 - - uid: 40019 + - uid: 40406 components: - type: Transform rot: 3.141592653589793 rad pos: 86.5,-23.5 parent: 2 - - uid: 40020 + - uid: 40407 components: - type: Transform pos: -123.5,9.5 parent: 2 - - uid: 40021 + - uid: 40408 components: - type: Transform pos: -122.5,9.5 parent: 2 - - uid: 40022 + - uid: 40409 components: - type: Transform rot: 3.141592653589793 rad pos: -123.5,5.5 parent: 2 - - uid: 40023 + - uid: 40410 components: - type: Transform rot: 3.141592653589793 rad pos: -122.5,5.5 parent: 2 + - uid: 47220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 46943 + - uid: 47221 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 46943 + - uid: 47222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 46943 + - uid: 47223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 46943 + - uid: 47224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 46943 + - uid: 47225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 46943 + - uid: 47226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 46943 + - uid: 47227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 46943 + - uid: 47228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 46943 + - uid: 47229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 46943 + - uid: 47230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 46943 + - uid: 47231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 46943 + - uid: 47232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 46943 + - uid: 47233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 46943 + - uid: 47234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 46943 - proto: WoodenSign entities: - - uid: 40024 + - uid: 40411 components: - type: Transform - pos: 33.619724,-19.308674 + pos: -35.561867,60.29374 parent: 2 - - uid: 40025 + - uid: 40412 components: - type: Transform - pos: -35.67632,59.195915 + pos: -70.799995,18.50875 parent: 2 - - uid: 40026 + - uid: 40413 + components: + - type: Transform + pos: 33.619724,-19.308674 + parent: 2 + - uid: 40414 components: - type: Transform pos: -44.62293,60.30529 parent: 2 - - uid: 40027 + - uid: 40415 components: - type: Transform pos: 25.68126,-22.550093 parent: 2 - - uid: 40028 + - uid: 40416 components: - type: Transform pos: -27.533546,60.699425 parent: 2 - - uid: 40029 + - uid: 40417 components: - type: Transform pos: -3.9679794,29.581657 parent: 2 - - uid: 40030 + - uid: 40418 components: - type: Transform pos: 79.905266,-8.564896 parent: 2 - - uid: 40031 + - uid: 40419 components: - type: Transform pos: 73.12699,-21.84562 parent: 2 - - uid: 44934 + - uid: 45319 components: - type: Transform pos: 85.50097,38 - parent: 40203 - - uid: 44935 + parent: 40599 + - uid: 45320 components: - type: Transform pos: 82.507256,30 - parent: 40203 - - uid: 44936 + parent: 40599 + - uid: 45321 components: - type: Transform pos: 74.496445,22 - parent: 40203 - - uid: 44937 + parent: 40599 + - uid: 45322 components: - type: Transform pos: 28.496767,25 - parent: 40203 - - uid: 44938 + parent: 40599 + - uid: 45323 components: - type: Transform pos: 62.49498,32 - parent: 40203 - - uid: 44939 + parent: 40599 + - uid: 45324 components: - type: Transform pos: 38.497597,26 - parent: 40203 - - uid: 44940 + parent: 40599 + - uid: 45325 components: - type: Transform pos: 33.48694,39 - parent: 40203 - - uid: 44941 + parent: 40599 + - uid: 45326 components: - type: Transform pos: 50.505863,31 - parent: 40203 - - uid: 44942 + parent: 40599 + - uid: 45327 components: - type: Transform pos: 50.505863,31 - parent: 40203 - - uid: 44943 + parent: 40599 + - uid: 45328 components: - type: Transform pos: 78.5058,41 - parent: 40203 + parent: 40599 - proto: WoodenSignRight entities: - - uid: 40032 - components: - - type: Transform - pos: -30.590816,66.40938 - parent: 2 - - uid: 40033 + - uid: 40420 components: - type: Transform pos: 51.996452,42.48335 parent: 2 - - uid: 40034 + - uid: 40421 components: - type: Transform pos: -92.40299,-6.8379297 parent: 2 - - uid: 40035 + - uid: 40422 components: - type: Transform pos: 66.26636,-57.198692 parent: 2 - proto: WoodenSupport entities: - - uid: 40036 + - uid: 40423 components: - type: Transform - pos: -29.5,65.5 + pos: -71.5,17.5 parent: 2 - - uid: 40037 + - uid: 40424 components: - type: Transform - pos: -76.5,-22.5 + pos: -79.5,15.5 parent: 2 - - uid: 40038 + - uid: 40425 components: - type: Transform - pos: -89.5,-11.5 + pos: -29.5,65.5 parent: 2 - - uid: 40039 + - uid: 40426 components: - type: Transform - pos: -80.5,-17.5 + pos: -76.5,-22.5 parent: 2 - - uid: 40040 + - uid: 40427 + components: + - type: Transform + pos: -89.5,-11.5 + parent: 2 + - uid: 40428 components: - type: Transform pos: -74.5,-12.5 parent: 2 - - uid: 40041 + - uid: 40429 components: - type: Transform pos: -42.5,33.5 parent: 2 - - uid: 40042 + - uid: 40430 components: - type: Transform rot: 1.5707963267948966 rad pos: 100.5,7.5 parent: 2 - - uid: 40043 + - uid: 40431 components: - type: Transform rot: -1.5707963267948966 rad pos: 82.5,-0.5 parent: 2 - - uid: 40044 + - uid: 40432 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,38.5 parent: 2 - - uid: 40045 + - uid: 40433 components: - type: Transform pos: -63.5,-17.5 parent: 2 - - uid: 40046 + - uid: 40434 components: - type: Transform pos: 67.5,25.5 parent: 2 - - uid: 40047 + - uid: 40435 components: - type: Transform rot: -1.5707963267948966 rad pos: 70.5,27.5 parent: 2 - - uid: 40048 + - uid: 40436 components: - type: Transform pos: 72.5,18.5 parent: 2 - - uid: 40049 + - uid: 40437 components: - type: Transform pos: -86.5,10.5 parent: 2 - - uid: 40050 + - uid: 40438 components: - type: Transform pos: -92.5,13.5 parent: 2 - - uid: 40051 + - uid: 40439 components: - type: Transform pos: 18.5,64.5 parent: 2 - - uid: 40052 + - uid: 40440 components: - type: Transform pos: 13.5,58.5 parent: 2 - - uid: 40053 + - uid: 40441 components: - type: Transform pos: -19.5,-27.5 parent: 2 - - uid: 40054 + - uid: 40442 components: - type: Transform pos: -19.5,-30.5 parent: 2 - - uid: 40055 + - uid: 40443 components: - type: Transform pos: -24.5,-25.5 parent: 2 - - uid: 40056 + - uid: 40444 components: - type: Transform pos: -49.5,-46.5 parent: 2 - - uid: 40057 + - uid: 40445 components: - type: Transform pos: -45.5,-46.5 parent: 2 - - uid: 40058 + - uid: 40446 components: - type: Transform pos: -45.5,-34.5 parent: 2 - - uid: 40059 + - uid: 40447 components: - type: Transform pos: -49.5,-34.5 parent: 2 - - uid: 40060 + - uid: 40448 components: - type: Transform pos: -51.5,-40.5 parent: 2 - - uid: 40061 + - uid: 40449 components: - type: Transform pos: -44.5,-42.5 parent: 2 - - uid: 40062 + - uid: 40450 components: - type: Transform pos: -45.5,-37.5 parent: 2 - - uid: 40063 + - uid: 40451 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-32.5 parent: 2 - - uid: 40064 + - uid: 40452 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-31.5 parent: 2 - - uid: 40065 + - uid: 40453 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,-28.5 parent: 2 - - uid: 40066 + - uid: 40454 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-24.5 parent: 2 - - uid: 40067 + - uid: 40455 components: - type: Transform rot: 3.141592653589793 rad pos: -47.5,-27.5 parent: 2 - - uid: 40068 + - uid: 40456 components: - type: Transform pos: -56.5,-24.5 parent: 2 - - uid: 40069 + - uid: 40457 components: - type: Transform pos: -55.5,-22.5 parent: 2 - - uid: 40070 + - uid: 40458 components: - type: Transform pos: 59.5,28.5 parent: 2 - - uid: 40071 + - uid: 40459 components: - type: Transform pos: 63.5,16.5 parent: 2 - - uid: 40072 + - uid: 40460 components: - type: Transform pos: 72.5,-4.5 parent: 2 - - uid: 40073 - components: - - type: Transform - pos: 51.5,-12.5 - parent: 2 - - uid: 40074 + - uid: 40461 components: - type: Transform pos: 63.5,-8.5 parent: 2 - - uid: 40075 + - uid: 40462 components: - type: Transform pos: 62.5,-19.5 parent: 2 - - uid: 40076 + - uid: 40463 components: - type: Transform pos: 52.5,-33.5 parent: 2 - - uid: 40077 + - uid: 40464 components: - type: Transform pos: 46.5,-28.5 parent: 2 - - uid: 40078 + - uid: 40465 components: - type: Transform pos: -84.5,3.5 parent: 2 - - uid: 40079 + - uid: 40466 components: - type: Transform rot: 3.141592653589793 rad pos: 16.5,-27.5 parent: 2 - - uid: 40080 + - uid: 40467 components: - type: Transform pos: -142.5,-0.5 parent: 2 - - uid: 40081 + - uid: 40468 components: - type: Transform pos: -69.5,19.5 parent: 2 - - uid: 40082 + - uid: 40469 components: - type: Transform rot: 1.5707963267948966 rad pos: -91.5,28.5 parent: 2 - - uid: 44944 + - uid: 40470 + components: + - type: Transform + pos: -98.5,47.5 + parent: 2 + - uid: 45329 components: - type: Transform pos: 31.5,82.5 - parent: 40203 - - uid: 44945 + parent: 40599 + - uid: 45330 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,50.5 - parent: 40203 - - uid: 44946 + parent: 40599 + - uid: 45331 components: - type: Transform rot: 1.5707963267948966 rad pos: 18.5,51.5 - parent: 40203 + parent: 40599 + - uid: 47235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 46943 - proto: WoodenSupportBeam entities: - - uid: 40083 + - uid: 40471 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-2.5 + pos: -53.5,-13.5 parent: 2 - - uid: 40084 + - uid: 40472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -138.5,1.5 + pos: -78.5,19.5 parent: 2 - - uid: 40085 + - uid: 40473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,69.5 + pos: -77.5,13.5 parent: 2 - - uid: 40086 + - uid: 40474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,61.5 + pos: -74.5,19.5 parent: 2 - - uid: 40087 + - uid: 40475 + components: + - type: Transform + pos: 53.5,-20.5 + parent: 2 + - uid: 40476 + components: + - type: Transform + pos: -73.5,19.5 + parent: 2 + - uid: 40477 + components: + - type: Transform + pos: -78.5,16.5 + parent: 2 + - uid: 40478 + components: + - type: Transform + pos: -77.5,14.5 + parent: 2 + - uid: 40479 + components: + - type: Transform + pos: -79.5,16.5 + parent: 2 + - uid: 40480 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-15.5 + pos: -61.5,-2.5 parent: 2 - - uid: 40088 + - uid: 40481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -138.5,1.5 + parent: 2 + - uid: 40482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,61.5 + parent: 2 + - uid: 40483 components: - type: Transform rot: -1.5707963267948966 rad pos: 59.5,23.5 parent: 2 - - uid: 40089 + - uid: 40484 components: - type: Transform pos: -88.5,48.5 parent: 2 - - uid: 40090 + - uid: 40485 components: - type: Transform pos: -24.5,64.5 parent: 2 - - uid: 40091 + - uid: 40486 components: - type: Transform pos: 8.5,63.5 parent: 2 - - uid: 40092 + - uid: 40487 components: - type: Transform pos: -61.5,49.5 parent: 2 - - uid: 40093 + - uid: 40488 components: - type: Transform rot: -1.5707963267948966 rad pos: -62.5,42.5 parent: 2 - - uid: 40094 + - uid: 40489 components: - type: Transform rot: -1.5707963267948966 rad pos: -64.5,33.5 parent: 2 - - uid: 40095 + - uid: 40490 components: - type: Transform rot: -1.5707963267948966 rad pos: -69.5,38.5 parent: 2 - - uid: 40096 + - uid: 40491 components: - type: Transform pos: -53.5,-40.5 parent: 2 - - uid: 40097 + - uid: 40492 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,38.5 parent: 2 - - uid: 40098 + - uid: 40493 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,39.5 parent: 2 - - uid: 40099 + - uid: 40494 components: - type: Transform pos: -48.5,36.5 parent: 2 - - uid: 40100 + - uid: 40495 components: - type: Transform pos: -48.5,35.5 parent: 2 - - uid: 40101 + - uid: 40496 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-45.5 parent: 2 - - uid: 40102 + - uid: 40497 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-43.5 parent: 2 - - uid: 40103 + - uid: 40498 components: - type: Transform pos: -40.5,-38.5 parent: 2 - - uid: 40104 + - uid: 40499 components: - type: Transform pos: 59.5,38.5 parent: 2 - - uid: 40105 + - uid: 40500 components: - type: Transform pos: 27.5,46.5 parent: 2 - - uid: 40106 + - uid: 40501 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-27.5 parent: 2 - - uid: 40107 + - uid: 40502 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,-29.5 parent: 2 - - uid: 40108 + - uid: 40503 components: - type: Transform pos: 17.5,45.5 parent: 2 - - uid: 40109 + - uid: 40504 components: - type: Transform rot: 1.5707963267948966 rad pos: -64.5,23.5 parent: 2 - - uid: 40110 + - uid: 40505 components: - type: Transform pos: -80.5,59.5 parent: 2 - - uid: 40111 + - uid: 40506 components: - type: Transform pos: -74.5,1.5 parent: 2 - - uid: 40112 + - uid: 40507 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,37.5 parent: 2 - - uid: 40113 + - uid: 40508 components: - type: Transform pos: -42.5,62.5 parent: 2 - - uid: 40114 + - uid: 40509 components: - type: Transform pos: -71.5,6.5 parent: 2 - - uid: 40115 + - uid: 40510 components: - type: Transform rot: 3.141592653589793 rad pos: -77.5,27.5 parent: 2 - - uid: 44947 + - uid: 45332 components: - type: Transform rot: 1.5707963267948966 rad pos: 43.5,34.5 - parent: 40203 - - uid: 44948 + parent: 40599 + - uid: 45333 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,30.5 - parent: 40203 - - uid: 44949 + parent: 40599 + - uid: 45334 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,22.5 - parent: 40203 - - uid: 44950 + parent: 40599 + - uid: 45335 components: - type: Transform pos: 66.5,38.5 - parent: 40203 - - uid: 44951 + parent: 40599 + - uid: 45336 components: - type: Transform rot: 1.5707963267948966 rad pos: 46.5,28.5 - parent: 40203 - - uid: 44952 + parent: 40599 + - uid: 45337 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,30.5 - parent: 40203 - - uid: 44953 + parent: 40599 + - uid: 45338 components: - type: Transform rot: 1.5707963267948966 rad pos: 71.5,25.5 - parent: 40203 - - uid: 44954 + parent: 40599 + - uid: 45339 components: - type: Transform pos: 80.5,31.5 - parent: 40203 - - uid: 44955 + parent: 40599 + - uid: 45340 components: - type: Transform pos: 80.5,37.5 - parent: 40203 - - uid: 44956 + parent: 40599 + - uid: 45341 components: - type: Transform pos: 33.5,73.5 - parent: 40203 - - uid: 44957 + parent: 40599 + - uid: 45342 components: - type: Transform pos: 26.5,77.5 - parent: 40203 - - uid: 44958 + parent: 40599 + - uid: 45343 components: - type: Transform rot: -1.5707963267948966 rad pos: 32.5,47.5 - parent: 40203 - - uid: 44959 + parent: 40599 + - uid: 45344 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,58.5 - parent: 40203 + parent: 40599 + - uid: 47236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 46943 + - uid: 47237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 46943 + - uid: 47238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 46943 + - uid: 47239 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 46943 + - uid: 47240 + components: + - type: Transform + pos: -3.5,1.5 + parent: 46943 + - uid: 47241 + components: + - type: Transform + pos: 4.5,1.5 + parent: 46943 - proto: WoodenSupportWall entities: - - uid: 40116 + - uid: 40511 components: - type: Transform - pos: -30.5,70.5 + pos: -78.5,9.5 parent: 2 - - uid: 40117 + - uid: 40512 components: - type: Transform pos: 62.5,36.5 parent: 2 - - uid: 40118 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,56.5 - parent: 2 - - uid: 40119 + - uid: 40513 components: - type: Transform pos: 62.5,33.5 parent: 2 - - uid: 40120 + - uid: 40514 components: - type: Transform rot: -1.5707963267948966 rad pos: 58.5,23.5 parent: 2 - - uid: 40121 + - uid: 40515 components: - type: Transform rot: -1.5707963267948966 rad pos: 71.5,5.5 parent: 2 - - uid: 40122 + - uid: 40516 components: - type: Transform rot: -1.5707963267948966 rad pos: 67.5,29.5 parent: 2 - - uid: 40123 + - uid: 40517 components: - type: Transform pos: -86.5,42.5 parent: 2 - - uid: 40124 + - uid: 40518 components: - type: Transform pos: -52.5,35.5 parent: 2 - - uid: 40125 + - uid: 40519 components: - type: Transform pos: -50.5,36.5 parent: 2 - - uid: 40126 + - uid: 40520 components: - type: Transform pos: -34.5,38.5 parent: 2 - - uid: 40127 + - uid: 40521 components: - type: Transform rot: 1.5707963267948966 rad pos: 103.5,4.5 parent: 2 - - uid: 40128 + - uid: 40522 components: - type: Transform rot: -1.5707963267948966 rad pos: 86.5,0.5 parent: 2 - - uid: 40129 + - uid: 40523 components: - type: Transform pos: -59.5,-18.5 parent: 2 - - uid: 40130 + - uid: 40524 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,40.5 parent: 2 - - uid: 40131 + - uid: 40525 components: - type: Transform rot: 3.141592653589793 rad pos: -60.5,32.5 parent: 2 - - uid: 40132 + - uid: 40526 components: - type: Transform pos: -61.5,-17.5 parent: 2 - - uid: 40133 + - uid: 40527 components: - type: Transform pos: -33.5,55.5 parent: 2 - - uid: 40134 + - uid: 40528 components: - type: Transform pos: -51.5,-24.5 parent: 2 - - uid: 40135 + - uid: 40529 components: - type: Transform pos: -54.5,-23.5 parent: 2 - - uid: 40136 + - uid: 40530 components: - type: Transform rot: 1.5707963267948966 rad pos: 26.5,58.5 parent: 2 - - uid: 40137 + - uid: 40531 components: - type: Transform pos: 8.5,56.5 parent: 2 - - uid: 40138 + - uid: 40532 components: - type: Transform pos: 20.5,60.5 parent: 2 - - uid: 40139 + - uid: 40533 components: - type: Transform pos: 20.5,61.5 parent: 2 - - uid: 40140 + - uid: 40534 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-46.5 parent: 2 - - uid: 40141 + - uid: 40535 components: - type: Transform rot: 3.141592653589793 rad pos: -37.5,-43.5 parent: 2 - - uid: 40142 + - uid: 40536 components: - type: Transform pos: -47.5,-34.5 parent: 2 - - uid: 40143 + - uid: 40537 components: - type: Transform pos: -47.5,-46.5 parent: 2 - - uid: 40144 + - uid: 40538 components: - type: Transform pos: -40.5,-37.5 parent: 2 - - uid: 40145 + - uid: 40539 components: - type: Transform pos: -40.5,-44.5 parent: 2 - - uid: 40146 + - uid: 40540 components: - type: Transform pos: -52.5,-40.5 parent: 2 - - uid: 40147 + - uid: 40541 components: - type: Transform pos: -54.5,-40.5 parent: 2 - - uid: 40148 + - uid: 40542 components: - type: Transform pos: 60.5,38.5 parent: 2 - - uid: 40149 + - uid: 40543 components: - type: Transform pos: 58.5,38.5 parent: 2 - - uid: 40150 + - uid: 40544 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-23.5 parent: 2 - - uid: 40151 + - uid: 40545 components: - type: Transform rot: 3.141592653589793 rad pos: -38.5,-22.5 parent: 2 - - uid: 40152 + - uid: 40546 components: - type: Transform pos: 17.5,46.5 parent: 2 - - uid: 40153 + - uid: 40547 components: - type: Transform pos: -84.5,-9.5 parent: 2 - - uid: 40154 + - uid: 40548 components: - type: Transform pos: -79.5,59.5 parent: 2 - - uid: 40155 + - uid: 40549 components: - type: Transform pos: -81.5,6.5 parent: 2 - - uid: 40156 + - uid: 40550 components: - type: Transform pos: -80.5,5.5 parent: 2 - - uid: 40157 + - uid: 40551 components: - type: Transform pos: -79.5,5.5 parent: 2 - - uid: 40158 + - uid: 40552 components: - type: Transform rot: -1.5707963267948966 rad pos: 61.5,23.5 parent: 2 - - uid: 40159 + - uid: 40553 components: - type: Transform pos: 9.5,58.5 parent: 2 - - uid: 40160 + - uid: 40554 components: - type: Transform rot: 3.141592653589793 rad pos: -69.5,15.5 parent: 2 - - uid: 40161 + - uid: 40555 components: - type: Transform rot: 1.5707963267948966 rad pos: -86.5,22.5 parent: 2 - - uid: 40162 + - uid: 40556 components: - type: Transform rot: 3.141592653589793 rad pos: -65.5,3.5 parent: 2 - - uid: 40163 + - uid: 40557 components: - type: Transform - rot: 3.141592653589793 rad pos: -68.5,48.5 parent: 2 + - uid: 40558 + components: + - type: Transform + pos: -84.5,63.5 + parent: 2 - type: Airtight - - uid: 44960 + - uid: 45345 components: - type: Transform pos: 55.5,18.5 - parent: 40203 - - uid: 44961 + parent: 40599 + - uid: 45346 components: - type: Transform pos: 46.5,18.5 - parent: 40203 - - uid: 44962 + parent: 40599 + - uid: 45347 components: - type: Transform pos: 32.5,73.5 - parent: 40203 - - uid: 44963 + parent: 40599 + - uid: 45348 components: - type: Transform pos: 24.5,73.5 - parent: 40203 - - uid: 44964 + parent: 40599 + - uid: 45349 components: - type: Transform rot: -1.5707963267948966 rad pos: 44.5,52.5 - parent: 40203 - - uid: 44965 + parent: 40599 + - uid: 45350 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,54.5 - parent: 40203 - - uid: 44966 + parent: 40599 + - uid: 45351 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,58.5 - parent: 40203 + parent: 40599 + - uid: 47242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 46943 + - uid: 47243 + components: + - type: Transform + pos: -4.5,0.5 + parent: 46943 - proto: WoodenSupportWallBroken entities: - - uid: 40164 + - uid: 40559 components: - type: Transform - pos: -87.5,14.5 + pos: -76.5,20.5 parent: 2 - - uid: 40165 + - uid: 40560 components: - type: Transform - pos: -74.5,63.5 + pos: -77.5,9.5 parent: 2 - - uid: 40166 + - uid: 40561 components: - type: Transform - pos: -30.5,60.5 + pos: -79.5,13.5 parent: 2 - - uid: 40167 + - uid: 40562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,14.5 + pos: -87.5,14.5 parent: 2 - - uid: 40168 + - uid: 40563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,23.5 + pos: -74.5,63.5 parent: 2 - - uid: 40169 + - uid: 40564 + components: + - type: Transform + pos: -30.5,60.5 + parent: 2 + - uid: 40565 components: - type: Transform rot: -1.5707963267948966 rad - pos: 73.5,22.5 + pos: 73.5,14.5 parent: 2 - - uid: 40170 + - uid: 40566 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-10.5 + pos: 60.5,23.5 parent: 2 - - uid: 40171 + - uid: 40567 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-15.5 + pos: 73.5,22.5 parent: 2 - - uid: 40172 + - uid: 40568 components: - type: Transform pos: -41.5,39.5 parent: 2 - - uid: 40173 + - uid: 40569 components: - type: Transform rot: 1.5707963267948966 rad pos: 92.5,4.5 parent: 2 - - uid: 40174 + - uid: 40570 components: - type: Transform rot: -1.5707963267948966 rad pos: -59.5,-15.5 parent: 2 - - uid: 40175 + - uid: 40571 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,35.5 parent: 2 - - uid: 40176 + - uid: 40572 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,34.5 parent: 2 - - uid: 40177 + - uid: 40573 components: - type: Transform pos: -81.5,5.5 parent: 2 - - uid: 40178 + - uid: 40574 components: - type: Transform pos: -93.5,11.5 parent: 2 - - uid: 40179 + - uid: 40575 components: - type: Transform rot: 3.141592653589793 rad pos: -25.5,-25.5 parent: 2 - - uid: 40180 + - uid: 40576 components: - type: Transform pos: 18.5,62.5 parent: 2 - - uid: 40181 + - uid: 40577 components: - type: Transform pos: 15.5,56.5 parent: 2 - - uid: 40182 + - uid: 40578 components: - type: Transform pos: 8.5,58.5 parent: 2 - - uid: 40183 + - uid: 40579 components: - type: Transform pos: -16.5,-24.5 parent: 2 - - uid: 40184 + - uid: 40580 components: - type: Transform rot: 3.141592653589793 rad pos: -35.5,-44.5 parent: 2 - - uid: 40185 + - uid: 40581 components: - type: Transform rot: 3.141592653589793 rad pos: -39.5,-44.5 parent: 2 - - uid: 40186 + - uid: 40582 components: - type: Transform pos: 33.5,42.5 parent: 2 - - uid: 40187 + - uid: 40583 components: - type: Transform rot: -1.5707963267948966 rad pos: 25.5,47.5 parent: 2 - - uid: 40188 + - uid: 40584 components: - type: Transform rot: 3.141592653589793 rad pos: -43.5,-26.5 parent: 2 - - uid: 40189 + - uid: 40585 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,-29.5 parent: 2 - - uid: 40190 + - uid: 40586 components: - type: Transform pos: -82.5,55.5 parent: 2 - - uid: 40191 + - uid: 40587 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,56.5 parent: 2 - - uid: 40192 + - uid: 40588 components: - type: Transform pos: -47.5,57.5 parent: 2 - - uid: 40193 + - uid: 40589 components: - type: Transform pos: -135.5,-8.5 parent: 2 - - uid: 40194 + - uid: 40590 components: - type: Transform pos: -81.5,9.5 parent: 2 - - uid: 40195 + - uid: 40591 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-13.5 parent: 2 - - uid: 44967 + - uid: 40592 + components: + - type: Transform + pos: -101.5,42.5 + parent: 2 + - uid: 45352 components: - type: Transform pos: 57.5,31.5 - parent: 40203 - - uid: 44968 + parent: 40599 + - uid: 45353 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,60.5 - parent: 40203 - - uid: 44969 + parent: 40599 + - uid: 45354 components: - type: Transform rot: 1.5707963267948966 rad pos: 21.5,47.5 - parent: 40203 + parent: 40599 + - uid: 47244 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 46943 - proto: Wrench entities: - - uid: 40196 + - uid: 40593 components: - type: Transform - pos: -77.51107,18.660833 + rot: 6.283185307179586 rad + pos: 18.419054,28.598558 parent: 2 - - uid: 40197 + - uid: 40594 components: - type: Transform pos: -24.501236,50.57331 parent: 2 - - uid: 40198 + - uid: 40595 components: - type: Transform pos: 17.5,-41.5 parent: 2 - - uid: 40199 + - uid: 40596 components: - type: Transform rot: 3.141592653589793 rad pos: -69.534,13.981235 parent: 2 -- proto: Zipties - entities: - - uid: 40200 + - uid: 46942 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.357704,12.3719225 - parent: 2 + pos: -3.8400116,8.985199 + parent: 46584 - proto: ZiptiesBroken entities: - - uid: 40201 + - uid: 40597 components: - type: Transform pos: -45.477142,15.387623 parent: 2 - - uid: 40202 + - uid: 40598 components: - type: Transform rot: 3.141592653589793 rad diff --git a/Resources/Maps/corvax_maus.yml b/Resources/Maps/corvax_maus.yml index 5a5a58621ef..78ba7edc0af 100644 --- a/Resources/Maps/corvax_maus.yml +++ b/Resources/Maps/corvax_maus.yml @@ -732,6 +732,15 @@ entities: id: Basalt6 decals: 2112: -64,-61 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA4A' + id: Basalt7 + decals: + 5739: -69.9948,-8.309416 + 5740: -68.77612,-7.774233 + 5741: -66.51709,-7.7890987 - node: cleanable: True color: '#FFFFFF88' @@ -761,6 +770,15 @@ entities: id: Basalt8 decals: 3798: -68.0748,-38.036724 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA4A' + id: Basalt8 + decals: + 5742: -69.45976,-8.05669 + 5743: -66.5914,-7.298514 + 5744: -66.7103,-7.149852 - node: cleanable: True color: '#FFFFFF88' @@ -879,6 +897,12 @@ entities: 3557: -64,-12 3559: -68,-13 4312: -8,-46 + - node: + zIndex: 10 + color: '#FFFFFFFF' + id: Bot + decals: + 5848: -48,-22 - node: zIndex: 1 angle: 4.71238898038469 rad @@ -3833,6 +3857,12 @@ entities: 4054: -79,-74 4055: -79,-76 4056: -79,-77 + - node: + cleanable: True + color: '#FFFFFF6C' + id: Dirt + decals: + 5834: -55,-4 - node: cleanable: True color: '#FFFFFF6F' @@ -3868,6 +3898,12 @@ entities: 5466: -77,-8 5467: -80,-8 5468: -81,-8 + - node: + cleanable: True + color: '#FFFFFF85' + id: Dirt + decals: + 5835: -55,-2 - node: cleanable: True color: '#FFFFFF88' @@ -3879,6 +3915,36 @@ entities: 4060: -73,-73 4061: -79,-76 4062: -79,-74 + - node: + cleanable: True + color: '#FFFFFF8B' + id: Dirt + decals: + 5783: -82,-55 + 5784: -82,-55 + 5785: -82,-51 + 5786: -82,-51 + 5787: -88,-41 + 5788: -88,-41 + 5789: -88,-41 + 5790: -88,-41 + 5804: -87,-40 + 5805: -88,-40 + 5806: -88,-40 + 5810: -87,-41 + 5811: -86,-41 + 5812: -84,-41 + 5813: -84,-41 + 5814: -83,-41 + 5815: -83,-40 + 5816: -85,-37 + 5817: -85,-36 + 5818: -75,-39 + 5819: -76,-37 + 5820: -76,-38 + 5821: -76,-35 + 5822: -72,-35 + 5823: -72,-35 - node: cleanable: True zIndex: 40 @@ -4155,6 +4221,12 @@ entities: 5537: -61,-49 5688: -23,-11 5691: -24,-9 + 5751: -33,-71 + 5752: -31,-66 + 5753: -32,-67 + 5754: -36,-59 + 5764: -31,-72 + 5765: -31,-72 - node: cleanable: True zIndex: 4 @@ -4245,6 +4317,43 @@ entities: 5664: -87,-25 5672: -83,-30 5673: -83,-29 + - node: + cleanable: True + color: '#FFFFFF85' + id: DirtHeavy + decals: + 5836: -52,-2 + 5837: -52,-2 + 5838: -54,-4 + 5839: -52,-5 + 5840: -54,-3 + 5841: -53,-4 + 5842: -52,-3 + 5843: -58,-5 + 5844: -56,-4 + - node: + cleanable: True + color: '#FFFFFF8B' + id: DirtHeavy + decals: + 5794: -87,-40 + 5795: -87,-40 + 5796: -88,-40 + 5797: -88,-41 + 5798: -87,-41 + 5799: -87,-41 + 5800: -89,-41 + 5801: -88,-40 + 5802: -88,-41 + 5803: -88,-41 + 5824: -70,-35 + 5825: -70,-35 + 5826: -70,-35 + 5827: -64,-36 + 5828: -64,-36 + 5829: -64,-36 + 5830: -61,-26 + 5831: -46,-48 - node: cleanable: True zIndex: 40 @@ -4485,6 +4594,12 @@ entities: 5536: -59,-49 5689: -23,-13 5690: -23,-8 + 5755: -38,-60 + 5756: -38,-60 + 5757: -32,-67 + 5758: -31,-68 + 5759: -32,-70 + 5760: -31,-70 - node: cleanable: True zIndex: 4 @@ -4557,6 +4672,24 @@ entities: 4241: -90,-28 4242: -101,-25 4253: -69,-17 + - node: + cleanable: True + color: '#FFFFFF6C' + id: DirtHeavyMonotile + decals: + 5832: -28,-63 + 5833: -54,-4 + - node: + cleanable: True + color: '#FFFFFF8B' + id: DirtHeavyMonotile + decals: + 5791: -88,-41 + 5792: -86,-40 + 5793: -87,-40 + 5807: -87,-41 + 5808: -87,-41 + 5809: -87,-41 - node: cleanable: True zIndex: 40 @@ -4732,6 +4865,14 @@ entities: id: DirtLight decals: 5665: -87,-27 + - node: + cleanable: True + color: '#FFFFFF85' + id: DirtLight + decals: + 5845: -56,-3 + 5846: -56,-3 + 5847: -79,-3 - node: cleanable: True zIndex: 40 @@ -4818,6 +4959,9 @@ entities: 5506: -77,-20 5538: -60,-49 5539: -60,-49 + 5761: -34,-71 + 5762: -31,-71 + 5763: -31,-71 - node: cleanable: True zIndex: 4 @@ -4853,6 +4997,12 @@ entities: 4225: -72,-4 4226: -72,-4 4227: -82,-3 + - node: + cleanable: True + color: '#FFFFFF28' + id: DirtMedium + decals: + 5771: -38,-72 - node: cleanable: True color: '#FFFFFF6F' @@ -4860,6 +5010,22 @@ entities: decals: 5670: -82,-30 5671: -83,-30 + - node: + cleanable: True + color: '#FFFFFF8B' + id: DirtMedium + decals: + 5772: -46,-76 + 5773: -59,-75 + 5774: -64,-71 + 5775: -73,-70 + 5776: -74,-71 + 5777: -70,-67 + 5778: -70,-63 + 5779: -70,-62 + 5780: -82,-53 + 5781: -82,-52 + 5782: -82,-54 - node: cleanable: True zIndex: 40 @@ -5042,6 +5208,11 @@ entities: 5509: -76,-19 5510: -79,-19 5511: -79,-19 + 5766: -31,-72 + 5767: -31,-72 + 5768: -31,-71 + 5769: -33,-70 + 5770: -32,-71 - node: cleanable: True zIndex: 4 @@ -6128,6 +6299,7 @@ entities: id: MiniTileDarkInnerSw decals: 797: -26,-59 + 5750: -66,-7 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE @@ -6364,7 +6536,6 @@ entities: decals: 543: -69,-7 544: -68,-7 - 545: -67,-7 640: -30,-32 757: -21,-32 924: -15,-49 @@ -6451,13 +6622,13 @@ entities: 2850: -26,-20 2851: -24,-20 2852: -23,-20 + 5748: -67,-7 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: 540: -66,-10 541: -66,-9 - 542: -66,-8 808: -26,-65 995: -75,-55 996: -75,-54 @@ -6576,6 +6747,7 @@ entities: 2864: -27,-10 2865: -27,-9 2866: -27,-8 + 5749: -66,-8 - node: color: '#D381C996' id: MiniTileDiagonalCheckerAOverlay @@ -8852,6 +9024,13 @@ entities: id: brush decals: 4757: -51.013798,-76.04195 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA0F' + id: brush + decals: + 5745: -69.86104,-7.759366 - node: cleanable: True zIndex: 10 @@ -8912,6 +9091,14 @@ entities: id: bushsnowa2 decals: 3802: -67.87627,-38.79293 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA4D' + id: bushsnowa2 + decals: + 5746: -69.81645,-8.071556 + 5747: -66.769745,-7.5066404 - node: color: '#FF7CFFB4' id: bushsnowa2 @@ -9049,6 +9236,19 @@ entities: 1731: -75.28492,-6.618595 1732: -75.06771,-6.0057316 1733: -74.8505,-5.9902163 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA4A' + id: dot + decals: + 5732: -69.89076,-8.324283 + 5733: -69.23683,-7.328246 + 5734: -67.200745,-7.6553025 + 5735: -66.57654,-8.17562 + 5736: -67.066986,-8.636473 + 5737: -66.338745,-7.848563 + 5738: -69.93535,-8.264817 - node: cleanable: True zIndex: 10 @@ -9091,12 +9291,27 @@ entities: id: grasssnow02 decals: 760: -37,-30 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA50' + id: grasssnow03 + decals: + 5722: -66.621124,-7.5512395 - node: cleanable: True color: '#FFFFFFFF' id: grasssnow05 decals: 767: -38.13005,-30.021358 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA50' + id: grasssnow07 + decals: + 5723: -69.60838,-8.116156 + 5724: -69.10309,-8.17562 - node: cleanable: True color: '#FFFFFFFF' @@ -9109,6 +9324,13 @@ entities: id: grasssnow09 decals: 761: -37,-32 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA50' + id: grasssnow10 + decals: + 5725: -69.266556,-7.818831 - node: cleanable: True color: '#FFFFFFFF' @@ -9136,6 +9358,14 @@ entities: id: grasssnow13 decals: 5687: -38.799465,-83.97225 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA4A' + id: grasssnowc1 + decals: + 5730: -69.57866,-8.0269575 + 5731: -66.88864,-7.6255703 - node: cleanable: True color: '#CD498869' @@ -9194,6 +9424,13 @@ entities: id: slash decals: 3784: -68.25964,-38.164726 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA22' + id: slash + decals: + 5729: -66.7103,-7.670169 - node: color: '#0000002B' id: smallbrush @@ -9257,6 +9494,14 @@ entities: decals: 4288: -78.07762,-68.21719 4289: -77.83977,-68.21719 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA50' + id: smallbrush + decals: + 5726: -69.57866,-7.878296 + 5727: -66.65085,-7.4620423 - node: cleanable: True color: '#FF85004A' @@ -9342,6 +9587,13 @@ entities: id: splatter decals: 3783: -68.15882,-38.374184 + - node: + cleanable: True + zIndex: 10 + color: '#FF46CA22' + id: splatter + decals: + 5728: -66.5914,-7.328246 - type: GridAtmosphere version: 2 data: @@ -9667,7 +9919,8 @@ entities: -12,4: 1: 63624 -11,-1: - 0: 39867 + 0: 39835 + 3: 32 -11,4: 1: 61695 -10,0: @@ -9785,13 +10038,13 @@ entities: 0: 2 -19,0: 0: 7 - 3: 1792 + 4: 1792 -19,1: - 4: 7 + 5: 7 2: 1792 -19,2: 2: 7 - 5: 256 + 6: 256 0: 1536 -19,3: 2: 7 @@ -10388,7 +10641,8 @@ entities: -17,-8: 0: 55775 -17,-7: - 0: 3532 + 0: 1484 + 7: 2048 -17,-6: 0: 36863 -17,-9: @@ -10491,7 +10745,8 @@ entities: -12,-10: 0: 65262 -13,-10: - 0: 60943 + 3: 3 + 0: 60940 -12,-9: 0: 61166 -13,-9: @@ -10513,9 +10768,9 @@ entities: 0: 65535 -10,-9: 0: 47 - 6: 60928 + 8: 60928 -10,-8: - 6: 3276 + 8: 3276 0: 4368 -9,-8: 0: 1638 @@ -10554,7 +10809,8 @@ entities: -11,-2: 0: 45311 -10,-3: - 0: 12287 + 0: 12031 + 7: 256 -10,-2: 0: 29439 -16,-15: @@ -10613,7 +10869,8 @@ entities: -14,-11: 0: 65419 -14,-10: - 0: 65039 + 0: 64015 + 9: 1024 -14,-9: 0: 61679 -14,-8: @@ -10987,6 +11244,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11032,6 +11304,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -11048,10 +11335,10 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 293.14975 moles: - - 21.6852 - - 81.57766 + - 21.824879 + - 82.10312 - 0 - 0 - 0 @@ -15821,18 +16108,6 @@ entities: - type: Transform pos: -82.5,-26.5 parent: 2 -- proto: AirlockExternal - entities: - - uid: 136 - components: - - type: Transform - pos: -5.5,7.5 - parent: 2 - - uid: 137 - components: - - type: Transform - pos: -3.5,7.5 - parent: 2 - proto: AirlockExternalCargoLocked entities: - uid: 138 @@ -15909,6 +16184,16 @@ entities: invokeCounter: 2 - proto: AirlockExternalGlass entities: + - uid: 136 + components: + - type: Transform + pos: -3.5,7.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -5.5,7.5 + parent: 2 - uid: 239 components: - type: Transform @@ -17897,8 +18182,6 @@ entities: - type: Transform pos: -18.5,-5.5 parent: 2 - - type: Apc - hasAccess: True - uid: 376 components: - type: MetaData @@ -18182,8 +18465,6 @@ entities: - type: Transform pos: -62.5,-20.5 parent: 2 - - type: Apc - hasAccess: True - uid: 425 components: - type: MetaData @@ -18306,8 +18587,6 @@ entities: rot: -1.5707963267948966 rad pos: -74.5,-60.5 parent: 2 - - type: Apc - hasAccess: True - uid: 3995 components: - type: MetaData @@ -18636,16 +18915,6 @@ entities: - type: Transform pos: -30.61742,-12.394011 parent: 2 - - uid: 10271 - components: - - type: Transform - pos: -43.452953,-71.40552 - parent: 2 - - uid: 10284 - components: - - type: Transform - pos: -48.372272,-72.53535 - parent: 2 - uid: 15321 components: - type: Transform @@ -33921,6 +34190,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 12328 + components: + - type: Transform + parent: 5976 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15323 + components: + - type: Transform + parent: 6442 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CableHV entities: - uid: 495 @@ -44643,61 +44926,16 @@ entities: - type: Transform pos: -3.267089,2.9951859 parent: 2 - - uid: 5759 - components: - - type: Transform - pos: -51.966557,-43.49808 - parent: 2 - - uid: 5785 - components: - - type: Transform - pos: -6.9220357,-45.60687 - parent: 2 - - uid: 10269 - components: - - type: Transform - pos: -48.446583,-72.40155 - parent: 2 - - uid: 10275 - components: - - type: Transform - pos: -40.67376,-71.360916 - parent: 2 - - uid: 12560 - components: - - type: Transform - pos: -43.467815,-71.331184 - parent: 2 - uid: 13766 components: - type: Transform pos: -75.26117,-6.448744 parent: 2 - - uid: 14079 - components: - - type: Transform - pos: -78.69429,-6.820399 - parent: 2 - - uid: 14102 - components: - - type: Transform - pos: -76.19849,-40.374043 - parent: 2 - uid: 15320 components: - type: Transform pos: -32.551895,1.4428725 parent: 2 - - uid: 15322 - components: - - type: Transform - pos: -13.2851305,-8.361358 - parent: 2 - - uid: 15327 - components: - - type: Transform - pos: -48.219044,-21.55375 - parent: 2 - proto: CandleBlueInfinite entities: - uid: 167 @@ -45723,125 +45961,13 @@ entities: - type: Transform pos: -76.936226,-5.251665 parent: 2 -- proto: CarvedPumpkin - entities: - - uid: 5751 - components: - - type: Transform - pos: -34.99313,-3.2038922 - parent: 2 - - uid: 19153 - components: - - type: Transform - pos: -60.48982,-68.53796 - parent: 2 - - uid: 19156 - components: - - type: Transform - pos: 0.51129055,5.6742935 - parent: 17958 - proto: CarvedPumpkinSmall entities: - - uid: 5756 - components: - - type: Transform - pos: -50.926216,-43.37915 - parent: 2 - - uid: 5757 - components: - - type: Transform - pos: -61.350937,-26.802704 - parent: 2 - - uid: 5758 - components: - - type: Transform - pos: -58.807648,-34.358513 - parent: 2 - - uid: 5784 - components: - - type: Transform - pos: -6.5158076,-45.518898 - parent: 2 - - uid: 10287 - components: - - type: Transform - pos: -78.548035,-42.6399 - parent: 2 - - uid: 10307 - components: - - type: Transform - pos: -73.58856,-73.33977 - parent: 2 - - uid: 10738 - components: - - type: Transform - pos: -54.730595,-68.45638 - parent: 2 - - uid: 10739 - components: - - type: Transform - pos: -48.61768,-21.411789 - parent: 2 - - uid: 12255 - components: - - type: Transform - pos: -71.45598,-50.385178 - parent: 2 - - uid: 12325 - components: - - type: Transform - pos: -56.3967,-70.39975 - parent: 2 - - uid: 12328 - components: - - type: Transform - pos: -13.240684,-8.748235 - parent: 2 - - uid: 19144 - components: - - type: Transform - pos: -49.539913,-36.727776 - parent: 2 - - uid: 19145 - components: - - type: Transform - pos: -15.517138,-37.373314 - parent: 2 - - uid: 19146 - components: - - type: Transform - pos: -20.324501,-3.1480181 - parent: 2 - uid: 19147 components: - type: Transform pos: -32.97416,1.7631598 parent: 2 - - uid: 19149 - components: - - type: Transform - pos: -61.58295,-54.380833 - parent: 2 - - uid: 19150 - components: - - type: Transform - pos: -70.30138,-14.4104805 - parent: 2 - - uid: 19151 - components: - - type: Transform - pos: -64.530914,-1.2819548 - parent: 2 - - uid: 19154 - components: - - type: Transform - pos: -60.51767,-62.48834 - parent: 2 - - uid: 19155 - components: - - type: Transform - pos: -71.46733,-64.14058 - parent: 2 - proto: Catwalk entities: - uid: 13 @@ -50057,6 +50183,20 @@ entities: parent: 16090 - proto: ChemicalPayload entities: + - uid: 11186 + components: + - type: Transform + parent: 5976 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14079 + components: + - type: Transform + parent: 6442 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 16357 components: - type: Transform @@ -51044,6 +51184,11 @@ entities: - type: Transform pos: -16.5,-34.5 parent: 2 + - uid: 7018 + components: + - type: Transform + pos: -30.5,-69.5 + parent: 2 - uid: 7334 components: - type: Transform @@ -51067,6 +51212,11 @@ entities: - 0 - 0 - 0 + - uid: 10301 + components: + - type: Transform + pos: -41.5,-71.5 + parent: 2 - uid: 10482 components: - type: Transform @@ -51982,12 +52132,6 @@ entities: - type: Transform pos: -40.331936,-71.47984 parent: 2 - - uid: 14083 - components: - - type: Transform - rot: -0.20943951023931956 rad - pos: -78.170166,-41.327244 - parent: 2 - proto: ClothingHeadHelmetCult entities: - uid: 7438 @@ -52015,28 +52159,6 @@ entities: parent: 2 - type: HandheldLight toggleActionEntity: 8361 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]10%[/color]. - - - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - type: Item heldPrefix: off inhandVisuals: {} @@ -52167,6 +52289,13 @@ entities: parent: 15964 - proto: ClothingMaskBreathMedicalSecurity entities: + - uid: 5751 + components: + - type: Transform + parent: 6153 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 9951 components: - type: Transform @@ -52174,6 +52303,20 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 12325 + components: + - type: Transform + parent: 5976 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 14796 + components: + - type: Transform + parent: 6442 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 16369 components: - type: Transform @@ -52217,6 +52360,11 @@ entities: - type: Transform pos: -60.46964,4.353569 parent: 2 + - uid: 10292 + components: + - type: Transform + pos: -64.46393,-1.4018123 + parent: 2 - uid: 19927 components: - type: Transform @@ -52298,6 +52446,20 @@ entities: parent: 6763 - type: Physics canCollide: False +- proto: ClothingMaskNeckGaiter + entities: + - uid: 10206 + components: + - type: Transform + pos: -73.75424,-70.39087 + parent: 2 +- proto: ClothingMaskNeckGaiterRed + entities: + - uid: 19165 + components: + - type: Transform + pos: -73.21008,-70.566124 + parent: 2 - proto: ClothingMaskPlague entities: - uid: 5958 @@ -52711,22 +52873,6 @@ entities: parent: 2 - proto: ClothingOuterGhostSheet entities: - - uid: 10207 - components: - - type: Transform - pos: -47.309143,-71.411644 - parent: 2 - - uid: 10290 - components: - - type: Transform - parent: 10289 - - type: Physics - canCollide: False - - uid: 10292 - components: - - type: Transform - pos: -75.41731,-29.500141 - parent: 2 - uid: 12256 components: - type: Transform @@ -52897,12 +53043,6 @@ entities: parent: 2 - proto: ClothingOuterSuitWitchRobes entities: - - uid: 5755 - components: - - type: Transform - rot: 0.4014257279586958 rad - pos: -76.54526,-40.37581 - parent: 2 - uid: 12327 components: - type: Transform @@ -54109,6 +54249,12 @@ entities: - type: Transform pos: -57.5,-16.5 parent: 2 + - uid: 10198 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -65.5,-1.5 + parent: 2 - proto: ComputerAnalysisConsole entities: - uid: 6056 @@ -54388,14 +54534,6 @@ entities: rot: 3.141592653589793 rad pos: -36.5,-64.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 6097 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-63.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 15787 @@ -54416,6 +54554,14 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-50.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 6097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-63.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 6101 @@ -54672,8 +54818,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -54690,17 +54836,17 @@ entities: showEnts: False occludes: True ents: - - 19001 - - 19002 - - 19003 - - 19004 - - 19005 - - 19006 - - 19007 - - 19009 - - 19010 - - 19011 - 19012 + - 19011 + - 19010 + - 19009 + - 19007 + - 19006 + - 19005 + - 19004 + - 19003 + - 19002 + - 19001 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -54712,6 +54858,24 @@ entities: - type: Transform pos: -42.5,-2.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: CrateEmptySpawner entities: - uid: 6139 @@ -55225,6 +55389,11 @@ entities: - type: Transform pos: -27.260523,-1.6337173 parent: 2 + - uid: 10271 + components: + - type: Transform + pos: -58.541794,-43.322 + parent: 2 - uid: 17288 components: - type: Transform @@ -55263,6 +55432,11 @@ entities: parent: 2 - proto: CrowbarYellow entities: + - uid: 10226 + components: + - type: Transform + pos: -64.47879,-1.3869464 + parent: 2 - uid: 18468 components: - type: Transform @@ -56915,6 +57089,12 @@ entities: rot: 3.141592653589793 rad pos: -44.5,-54.5 parent: 2 + - uid: 5785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-22.5 + parent: 2 - uid: 6256 components: - type: Transform @@ -57735,12 +57915,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-22.5 parent: 2 - - uid: 6411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-22.5 - parent: 2 - uid: 6412 components: - type: Transform @@ -59954,6 +60128,11 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,-67.5 parent: 2 + - uid: 6411 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 - uid: 6602 components: - type: Transform @@ -60229,6 +60408,11 @@ entities: - type: Transform pos: -31.5,-25.5 parent: 2 + - uid: 7017 + components: + - type: Transform + pos: -47.5,-21.5 + parent: 2 - uid: 7335 components: - type: Transform @@ -61499,12 +61683,6 @@ entities: rot: -1.5707963267948966 rad pos: -73.5,-51.5 parent: 2 - - uid: 6838 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,-51.5 - parent: 2 - uid: 6839 components: - type: Transform @@ -62394,16 +62572,6 @@ entities: - type: Transform pos: -54.5,-48.5 parent: 2 - - uid: 7017 - components: - - type: Transform - pos: -62.5,-54.5 - parent: 2 - - uid: 7018 - components: - - type: Transform - pos: -62.5,-52.5 - parent: 2 - proto: FirelockEdge entities: - uid: 5395 @@ -65945,13 +66113,6 @@ entities: - type: Transform pos: -41.47605,-20.312874 parent: 2 -- proto: FoodBluePumpkin - entities: - - uid: 19148 - components: - - type: Transform - pos: -78.66295,-5.6579165 - parent: 2 - proto: FoodBoxDonkpocketPizza entities: - uid: 7224 @@ -66457,13 +66618,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: FoodPumpkin - entities: - - uid: 15323 - components: - - type: Transform - pos: -40.492207,-29.535221 - parent: 2 - proto: FoodSnackChocolate entities: - uid: 8824 @@ -90171,6 +90325,13 @@ entities: - type: Transform pos: 8.667786,-1.6342468 parent: 17265 +- proto: LandMineModular + entities: + - uid: 19166 + components: + - type: Transform + pos: -46.440575,-71.43438 + parent: 2 - proto: LargeBeaker entities: - uid: 5664 @@ -90225,6 +90386,17 @@ entities: parent: 2 - proto: LightBulb entities: + - uid: 11029 + components: + - type: Transform + parent: 11005 + - type: LightBulb + lightSoftness: 2 + lightRadius: 8 + lightEnergy: 2 + color: '#FF0000FF' + - type: Physics + canCollide: False - uid: 11036 components: - type: Transform @@ -90312,6 +90484,17 @@ entities: color: '#FF0000FF' - type: Physics canCollide: False + - uid: 19180 + components: + - type: Transform + parent: 19179 + - type: LightBulb + lightSoftness: 2 + lightRadius: 8 + lightEnergy: 2 + color: '#FF0000FF' + - type: Physics + canCollide: False - uid: 20728 components: - type: Transform @@ -90759,11 +90942,77 @@ entities: - type: Transform pos: -50.5,-39.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: + - 12560 + - 12328 + - 12325 + - 11186 + - 12885 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - uid: 6442 components: - type: Transform pos: -51.5,-39.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: + - 15327 + - 15323 + - 14796 + - 14079 + - 17179 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: LockerChiefEngineerFilled entities: - uid: 11189 @@ -91214,13 +91463,6 @@ entities: showEnts: False occludes: True ent: null -- proto: LockerMedical - entities: - - uid: 20624 - components: - - type: Transform - pos: -53.5,-37.5 - parent: 2 - proto: LockerMedicalFilled entities: - uid: 870 @@ -91299,8 +91541,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -91317,9 +91559,10 @@ entities: showEnts: False occludes: True ents: - - 6154 + - 5751 - 6155 - 6156 + - 6154 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -91847,6 +92090,22 @@ entities: parent: 17265 - proto: LuxuryPen entities: + - uid: 5755 + components: + - type: MetaData + name: липкий роскошная ручка + - type: Transform + pos: -48.80904,-51.096474 + parent: 2 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 1.5 + - type: Glued + - type: NameModifier + baseName: роскошная ручка - uid: 10061 components: - type: Transform @@ -92035,6 +92294,11 @@ entities: - type: InsideEntityStorage - proto: MaintenanceFluffSpawner entities: + - uid: 10284 + components: + - type: Transform + pos: -45.5,-72.5 + parent: 2 - uid: 14846 components: - type: Transform @@ -92080,6 +92344,12 @@ entities: - type: Transform pos: -52.5,26.5 parent: 2 + - uid: 19161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-71.5 + parent: 2 - uid: 20453 components: - type: Transform @@ -92092,6 +92362,11 @@ entities: parent: 2 - proto: MaintenancePlantSpawner entities: + - uid: 5759 + components: + - type: Transform + pos: -43.5,-72.5 + parent: 2 - uid: 18398 components: - type: Transform @@ -92114,6 +92389,12 @@ entities: parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 10275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-72.5 + parent: 2 - uid: 11017 components: - type: Transform @@ -92191,6 +92472,12 @@ entities: - type: Transform pos: -75.5,-18.5 parent: 2 + - uid: 6838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-71.5 + parent: 2 - uid: 9239 components: - type: Transform @@ -92352,45 +92639,6 @@ entities: showEnts: False occludes: False ent: 10056 - - uid: 10289 - components: - - type: Transform - pos: -47.5,-21.5 - parent: 2 - - type: ContainerContainer - containers: - jumpsuit: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - outerClothing: !type:ContainerSlot - showEnts: False - occludes: False - ent: 10290 - neck: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - mask: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - eyes: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - head: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - suitstorage: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - back: !type:ContainerSlot - showEnts: False - occludes: False - ent: null - uid: 10486 components: - type: Transform @@ -92719,6 +92967,14 @@ entities: rot: 3.141592653589793 rad pos: -78.26276,-6.950615 parent: 2 +- proto: MaterialBones1 + entities: + - uid: 10289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.171597,6.458458 + parent: 2 - proto: MaterialCloth entities: - uid: 10090 @@ -93166,25 +93422,36 @@ entities: parent: 2 - proto: Mirror entities: - - uid: 7463 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-53.5 - parent: 2 - uid: 10120 components: - type: Transform pos: -39.5,-13.5 parent: 2 - - uid: 10384 + - uid: 19137 components: - type: Transform - rot: 3.141592653589793 rad pos: -66.5,-53.5 parent: 2 + - uid: 19145 + components: + - type: Transform + pos: -67.5,-53.5 + parent: 2 + - uid: 19154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,-30.5 + parent: 2 - proto: ModularGrenade entities: + - uid: 12560 + components: + - type: Transform + parent: 5976 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 16600 components: - type: Transform @@ -93200,6 +93467,13 @@ entities: - type: Transform pos: -3.728714,-13.411652 parent: 16090 + - uid: 17179 + components: + - type: Transform + parent: 6442 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: MopBucket entities: - uid: 9944 @@ -93542,6 +93816,16 @@ entities: - type: Transform pos: -48.5,-64.5 parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 9072 + components: + - type: MetaData + desc: Используется для хранения среднего количества химикатов и растворов. + name: мензурка + - type: Transform + pos: -53.704834,-37.38664 + parent: 2 - proto: OreBag entities: - uid: 18912 @@ -93988,6 +94272,61 @@ entities: rot: 1.5707963267948966 rad pos: -61.5119,-27.612831 parent: 2 + - uid: 9422 + components: + - type: Transform + pos: -53.338238,-37.346996 + parent: 2 + - type: Paper + stampState: paper_stamp-cmo + stampedBy: + - stampedColor: '#33CCFFFF' + stampedName: stamp-component-stamped-name-cmo + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True - uid: 10179 components: - type: Transform @@ -94628,6 +94967,34 @@ entities: parent: 16090 - proto: PartRodMetal1 entities: + - uid: 7463 + components: + - type: Transform + pos: -11.592953,-41.140137 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: -10.58263,-12.910476 + parent: 2 + - uid: 10207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.607815,-32.93825 + parent: 2 + - uid: 10290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.246017,-71.82798 + parent: 2 + - uid: 10293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.252893,-27.183258 + parent: 2 - uid: 17316 components: - type: Transform @@ -94727,6 +95094,46 @@ entities: rot: 1.5707963267948966 rad pos: -8.342773,-0.45532227 parent: 17265 + - uid: 19146 + components: + - type: Transform + pos: -67.26947,-35.368767 + parent: 2 + - uid: 19148 + components: + - type: Transform + pos: -83.97012,-33.388462 + parent: 2 + - uid: 19149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.53267,-38.604378 + parent: 2 + - uid: 19153 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.477335,-58.13683 + parent: 2 + - uid: 19156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.398476,-71.68346 + parent: 2 + - uid: 19163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.6548166,-15.303934 + parent: 2 + - uid: 19175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.727029,-0.6668124 + parent: 2 - proto: PaxChemistryBottle entities: - uid: 10998 @@ -95259,25 +95666,6 @@ entities: - type: Transform pos: 8.462524,-8.570953 parent: 17265 -- proto: PlushieGhost - entities: - - uid: 10206 - components: - - type: Transform - pos: -44.06344,-72.30184 - parent: 2 - - uid: 10293 - components: - - type: Transform - pos: -74.47786,-12.544738 - parent: 2 -- proto: PlushieGhostRevenant - entities: - - uid: 10301 - components: - - type: Transform - pos: -71.10643,-37.863716 - parent: 2 - proto: PlushieLamp entities: - uid: 10272 @@ -95364,7 +95752,7 @@ entities: - uid: 5786 components: - type: Transform - pos: -48.530743,-71.491455 + pos: -48.649326,-71.68915 parent: 2 - proto: PlushieRGBee entities: @@ -95866,6 +96254,14 @@ entities: - type: Transform pos: -31.5,-18.5 parent: 2 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 5757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,-22.5 + parent: 2 - proto: PosterLegitLoveIan entities: - uid: 14415 @@ -96809,12 +97205,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-30.5 parent: 2 - - uid: 10416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-23.5 - parent: 2 - uid: 10418 components: - type: Transform @@ -97147,12 +97537,6 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 - - uid: 10499 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-18.5 - parent: 2 - uid: 10500 components: - type: Transform @@ -97538,12 +97922,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 - - uid: 10594 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,1.5 - parent: 2 - uid: 10597 components: - type: Transform @@ -97802,6 +98180,18 @@ entities: rot: 3.141592653589793 rad pos: -57.5,-0.5 parent: 2 + - uid: 14083 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 2 - uid: 14221 components: - type: Transform @@ -98097,6 +98487,17 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-74.5 parent: 2 + - uid: 19170 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 + - uid: 19174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 2 - uid: 20312 components: - type: Transform @@ -98182,12 +98583,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-40.5 parent: 2 - - uid: 20592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 2 - uid: 20839 components: - type: Transform @@ -98841,17 +99236,17 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,4.5 parent: 2 - - uid: 11029 + - uid: 13591 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-49.5 + pos: -71.5,11.5 parent: 2 - - uid: 13591 + - uid: 19151 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,11.5 + pos: -53.5,-49.5 parent: 2 - proto: PoweredSmallLight entities: @@ -98943,6 +99338,12 @@ entities: rot: 3.141592653589793 rad pos: -50.5,6.5 parent: 2 + - uid: 10594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 - uid: 10645 components: - type: Transform @@ -99733,6 +100134,24 @@ entities: isDamageActive: False - proto: PoweredStrobeLightEpsilon entities: + - uid: 11005 + components: + - type: MetaData + desc: Индикатор того, что спутник ИИ переведён в режим защиты. + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-1.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 11029 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False - uid: 18804 components: - type: Transform @@ -99751,6 +100170,24 @@ entities: invokeCounter: 1 - type: DamageOnInteract isDamageActive: False + - uid: 19179 + components: + - type: MetaData + desc: Индикатор того, что спутник ИИ переведён в режим защиты. + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 19180 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False - proto: PrintedDocumentSentence entities: - uid: 13322 @@ -101248,12 +101685,6 @@ entities: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 7916 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-30.5 - parent: 2 - uid: 8834 components: - type: Transform @@ -101266,21 +101697,11 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-89.5 parent: 2 - - uid: 10198 - components: - - type: Transform - pos: -12.5,-48.5 - parent: 2 - uid: 10225 components: - type: Transform pos: -7.5,-47.5 parent: 2 - - uid: 10226 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - uid: 10237 components: - type: Transform @@ -101302,11 +101723,6 @@ entities: rot: -1.5707963267948966 rad pos: -70.5,-66.5 parent: 2 - - uid: 11186 - components: - - type: Transform - pos: -35.5,-6.5 - parent: 2 - uid: 17935 components: - type: Transform @@ -101342,6 +101758,21 @@ entities: - type: Transform pos: -7.5,0.5 parent: 17265 + - uid: 19171 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 19172 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 - uid: 19957 components: - type: Transform @@ -101367,35 +101798,6 @@ entities: - type: Transform pos: -26.5,-4.5 parent: 2 - - uid: 20449 - components: - - type: Transform - pos: -46.5,-2.5 - parent: 2 - - uid: 20843 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-30.5 - parent: 2 - - uid: 20844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-26.5 - parent: 2 - - uid: 20845 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-26.5 - parent: 2 - - uid: 20846 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-37.5 - parent: 2 - uid: 20848 components: - type: Transform @@ -101408,24 +101810,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-38.5 parent: 2 - - uid: 20850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-34.5 - parent: 2 - - uid: 20851 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-28.5 - parent: 2 - - uid: 20852 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-28.5 - parent: 2 - uid: 20855 components: - type: Transform @@ -101438,12 +101822,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,-56.5 parent: 2 - - uid: 20858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-66.5 - parent: 2 - uid: 20859 components: - type: Transform @@ -101462,36 +101840,6 @@ entities: rot: 1.5707963267948966 rad pos: -75.5,-72.5 parent: 2 - - uid: 20866 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-55.5 - parent: 2 - - uid: 20870 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-13.5 - parent: 2 - - uid: 20872 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,2.5 - parent: 2 - - uid: 20873 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-3.5 - parent: 2 - - uid: 20874 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-2.5 - parent: 2 - uid: 20875 components: - type: Transform @@ -101504,18 +101852,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,-17.5 parent: 2 - - uid: 20877 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-17.5 - parent: 2 - - uid: 20878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,14.5 - parent: 2 - uid: 20881 components: - type: Transform @@ -101528,48 +101864,18 @@ entities: rot: 1.5707963267948966 rad pos: -72.5,-63.5 parent: 2 - - uid: 20883 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 - parent: 2 - uid: 20884 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,-13.5 parent: 2 - - uid: 20885 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-17.5 - parent: 2 - - uid: 20886 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-16.5 - parent: 2 - uid: 20887 components: - type: Transform rot: 1.5707963267948966 rad pos: -29.5,-17.5 parent: 2 - - uid: 20888 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-14.5 - parent: 2 - - uid: 20889 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-17.5 - parent: 2 - uid: 20890 components: - type: Transform @@ -101588,12 +101894,6 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 2 - - uid: 20893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,5.5 - parent: 2 - uid: 20894 components: - type: Transform @@ -101606,36 +101906,18 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,1.5 parent: 2 - - uid: 20896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-37.5 - parent: 2 - uid: 20897 components: - type: Transform rot: 1.5707963267948966 rad pos: -70.5,-30.5 parent: 2 - - uid: 20898 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-28.5 - parent: 2 - uid: 20899 components: - type: Transform rot: 1.5707963267948966 rad pos: -79.5,-35.5 parent: 2 - - uid: 20900 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-34.5 - parent: 2 - uid: 20901 components: - type: Transform @@ -104604,6 +104886,11 @@ entities: parent: 2 - proto: Screwdriver entities: + - uid: 5756 + components: + - type: Transform + pos: -50.513733,-43.60813 + parent: 2 - uid: 12230 components: - type: Transform @@ -104681,6 +104968,17 @@ entities: - type: Transform pos: -67.436584,-37.812122 parent: 2 + - uid: 10384 + components: + - type: Transform + pos: -85.18906,-43.69113 + parent: 2 + - uid: 10416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.93561,-70.95385 + parent: 2 - uid: 11110 components: - type: Transform @@ -104697,6 +104995,47 @@ entities: rot: 3.141592653589793 rad pos: -42.55361,-92.54824 parent: 2 + - uid: 19150 + components: + - type: Transform + pos: -78.52577,-34.580322 + parent: 2 + - uid: 19157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.868496,-58.979675 + parent: 2 + - uid: 19158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.56993,-72.65637 + parent: 2 + - uid: 19160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.9536,-49.33076 + parent: 2 + - uid: 19162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.909256,-35.4168 + parent: 2 + - uid: 19173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.039957,-31.28624 + parent: 2 + - uid: 19178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.86516,-35.09553 + parent: 2 - proto: ShardGlassClockwork entities: - uid: 17663 @@ -104766,6 +105105,12 @@ entities: parent: 17265 - proto: SheetGlass10 entities: + - uid: 5784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -87.64548,-39.907627 + parent: 2 - uid: 19053 components: - type: Transform @@ -105055,6 +105400,11 @@ entities: rot: -1.5707963267948966 rad pos: -36.266037,-91.07961 parent: 2 + - uid: 19177 + components: + - type: Transform + pos: -46.478336,-71.46338 + parent: 2 - proto: SheetSteel10 entities: - uid: 7199 @@ -105159,6 +105509,12 @@ entities: parent: 17265 - proto: ShotGunCabinetFilled entities: + - uid: 10307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,2.5 + parent: 2 - uid: 16646 components: - type: Transform @@ -106034,6 +106390,8 @@ entities: - Pressed: DoorBolt - uid: 11561 components: + - type: MetaData + desc: Эта кнопка болтирует шлюз. - type: Transform pos: -61.5,-51.5 parent: 2 @@ -106043,6 +106401,8 @@ entities: - Pressed: DoorBolt - uid: 11562 components: + - type: MetaData + desc: Эта кнопка болтирует шлюз. - type: Transform rot: 3.141592653589793 rad pos: -61.5,-55.5 @@ -106141,6 +106501,7 @@ entities: - type: SignalSwitch state: True - type: DeviceLinkSource + range: 200 linkedPorts: 18793: - Pressed: Toggle @@ -106171,7 +106532,7 @@ entities: - Pressed: AutoClose 6862: - Pressed: Toggle - - Pressed: DoorBolt + - Pressed: AutoClose 9570: - Pressed: Toggle - Pressed: AutoClose @@ -106198,6 +106559,14 @@ entities: - Pressed: Toggle 11135: - Pressed: Toggle + 11005: + - Pressed: Toggle + 19179: + - Pressed: Toggle + 7229: + - Pressed: Toggle + 4072: + - Pressed: Toggle - proto: SignalTimer entities: - uid: 16653 @@ -107186,12 +107555,6 @@ entities: - type: Transform pos: -19.5,13.5 parent: 2 - - uid: 12885 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-30.5 - parent: 2 - uid: 13585 components: - type: Transform @@ -107209,6 +107572,12 @@ entities: rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 17265 + - uid: 19155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-30.5 + parent: 2 - uid: 20260 components: - type: Transform @@ -111102,6 +111471,22 @@ entities: id: EVA - proto: SurveillanceCameraEngineering entities: + - uid: 10287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -85.5,-1.5 + parent: 2 + - type: SurveillanceCamera + id: Выход в космос + - uid: 10499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,19.5 + parent: 2 + - type: SurveillanceCamera + id: ТЭГ - uid: 11476 components: - type: Transform @@ -111412,6 +111797,30 @@ entities: parent: 2 - type: SurveillanceCamera id: Морг + - uid: 19159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-30.5 + parent: 2 + - type: SurveillanceCamera + id: У кабинета главного врача + - uid: 19164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,-26.5 + parent: 2 + - type: SurveillanceCamera + id: Парамедик + - uid: 19169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-28.5 + parent: 2 + - type: SurveillanceCamera + id: Психолог - uid: 20574 components: - type: Transform @@ -111494,6 +111903,28 @@ entities: parent: 2 - proto: SurveillanceCameraScience entities: + - uid: 5758 + components: + - type: Transform + pos: -35.5,-67.5 + parent: 2 + - type: SurveillanceCamera + id: У кабинета научного руководителя + - uid: 10269 + components: + - type: Transform + pos: -44.5,-80.5 + parent: 2 + - type: SurveillanceCamera + id: Комната отдыха + - uid: 10738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-79.5 + parent: 2 + - type: SurveillanceCamera + id: Перемычка - uid: 14097 components: - type: Transform @@ -111529,6 +111960,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Роботехника + - uid: 19168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-70.5 + parent: 2 + - type: SurveillanceCamera + id: Аварийные шкафы - uid: 20585 components: - type: Transform @@ -111564,6 +112003,14 @@ entities: - SurveillanceCameraSecurity nameSet: True id: Комната казни + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 2 + - type: SurveillanceCamera + id: Вход в бриг - uid: 18834 components: - type: Transform @@ -111579,6 +112026,13 @@ entities: parent: 2 - type: SurveillanceCamera id: Карцер + - uid: 19167 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - type: SurveillanceCamera + id: Скафандры - uid: 20588 components: - type: Transform @@ -111624,6 +112078,14 @@ entities: - SurveillanceCameraService nameSet: True id: Бар + - uid: 15322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 + parent: 2 + - type: SurveillanceCamera + id: Морозильник - uid: 18845 components: - type: Transform @@ -112946,6 +113408,12 @@ entities: rot: 1.5707963267948966 rad pos: -101.5,-25.5 parent: 2 + - uid: 6404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-37.5 + parent: 2 - uid: 7263 components: - type: Transform @@ -114234,6 +114702,22 @@ entities: - type: Transform pos: -14.627133,4.826293 parent: 2 +- proto: TimerTrigger + entities: + - uid: 12885 + components: + - type: Transform + parent: 5976 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15327 + components: + - type: Transform + parent: 6442 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: TintedWindow entities: - uid: 12530 @@ -133546,6 +134030,7 @@ entities: - uid: 18896 components: - type: MetaData + desc: Охолощённая винтовка Кардашёва-Мосина, с пластиковым штыком. name: макет винтовки Кардашёв-Мосин - type: Transform pos: -78.54529,-19.535015 diff --git a/Resources/Maps/corvax_paper.yml b/Resources/Maps/corvax_paper.yml index f7d702692f7..ae4d3e556c7 100644 --- a/Resources/Maps/corvax_paper.yml +++ b/Resources/Maps/corvax_paper.yml @@ -267,7 +267,7 @@ entities: version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -1,0: ind: -1,0 @@ -909,7 +909,6 @@ entities: 6027: 40,64 6028: 40,59 6209: 50,66 - 6818: 48,-6 7207: 21,-12 7215: 40,-8 - node: @@ -6766,6 +6765,18 @@ entities: id: Grassa3 decals: 8734: 39.496677,47.968212 + - node: + cleanable: True + color: '#0000003F' + id: Grassa4 + decals: + 8833: 47.995117,-6.277954 + - node: + cleanable: True + color: '#0000003F' + id: Grassa5 + decals: + 8834: 47.869614,-6.073131 - node: cleanable: True color: '#FFFFFFFF' @@ -6782,6 +6793,19 @@ entities: id: Grassb2 decals: 8336: 73.92772,1.9280376 + - node: + cleanable: True + color: '#0000003F' + id: Grassb4 + decals: + 8831: 47.724297,-6.211882 + 8835: 47.896038,-5.848486 + - node: + cleanable: True + color: '#0000003F' + id: Grassb5 + decals: + 8832: 47.684666,-5.722949 - node: color: '#FFFFFFFF' id: Grassc1 @@ -8690,27 +8714,27 @@ entities: 5: 32896 5,20: 0: 13107 - 7: 128 + 6: 128 5: 32768 6,17: 0: 61440 6,18: 4: 240 - 6: 61440 + 7: 61440 6,19: 5: 61680 7,17: 0: 30304 7,18: 4: 16 - 6: 4096 + 7: 4096 0: 17476 7,19: 5: 4112 0: 17476 7,20: 0: 17476 - 7: 16 + 6: 16 5: 4096 8,16: 1: 65303 @@ -8725,7 +8749,7 @@ entities: 5,22: 0: 3983 6,20: - 7: 240 + 6: 240 5: 61440 6,22: 0: 3855 @@ -9870,10 +9894,10 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -9885,10 +9909,10 @@ entities: - volume: 2500 temperature: 293.15 moles: + - 6666.982 - 0 - 0 - 0 - - 6666.982 - 0 - 0 - 0 @@ -14153,6 +14177,14 @@ entities: - type: Transform pos: 12.5,4.5 parent: 16504 +- proto: AirlockGlassShuttle + entities: + - uid: 22016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 - proto: AirlockHatch entities: - uid: 282 @@ -15637,7 +15669,6 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,-11.5 parent: 2 - - type: DeviceNetwork - uid: 507 components: - type: Transform @@ -16116,8 +16147,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,31.5 parent: 2 - - type: Apc - hasAccess: True - type: PowerNetworkBattery loadingNetworkDemand: 2625 currentReceiving: 2625.0105 @@ -16260,8 +16289,6 @@ entities: - type: Transform pos: 25.5,-36.5 parent: 2 - - type: Apc - hasAccess: True - uid: 16547 components: - type: Transform @@ -36886,6 +36913,11 @@ entities: - type: Transform pos: 27.5,-42.5 parent: 2 + - uid: 6457 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 - uid: 6500 components: - type: Transform @@ -40596,6 +40628,11 @@ entities: - type: Transform pos: -6.5,23.5 parent: 2 + - uid: 22014 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 - proto: CableApcStack entities: - uid: 3441 @@ -55481,11 +55518,6 @@ entities: - type: Transform pos: -9.5,19.5 parent: 2 - - uid: 10912 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - uid: 10914 components: - type: Transform @@ -55501,6 +55533,11 @@ entities: - type: Transform pos: -7.5,17.5 parent: 2 + - uid: 11238 + components: + - type: Transform + pos: -9.5,17.5 + parent: 2 - uid: 11515 components: - type: Transform @@ -55511,6 +55548,11 @@ entities: - type: Transform pos: 51.5,-32.5 parent: 2 + - uid: 11667 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 - uid: 12554 components: - type: Transform @@ -56502,6 +56544,16 @@ entities: - type: Transform pos: 59.5,-25.5 parent: 2 + - uid: 21897 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + pos: -10.5,17.5 + parent: 2 - uid: 21917 components: - type: Transform @@ -56602,6 +56654,31 @@ entities: - type: Transform pos: 51.5,-19.5 parent: 2 + - uid: 22010 + components: + - type: Transform + pos: -12.5,18.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 22013 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 22015 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 - proto: Chair entities: - uid: 5952 @@ -61114,6 +61191,12 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,-3.5 parent: 16504 + - uid: 21892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 6452 @@ -61147,14 +61230,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,12.5 parent: 2 -- proto: ComputerCloningConsole - entities: - - uid: 6457 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 2 - proto: ComputerComms entities: - uid: 4321 @@ -61358,20 +61433,20 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-1.5 parent: 2 -- proto: ComputerSalvageExpedition +- proto: ComputerShuttleCargo entities: - - uid: 6485 + - uid: 6486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 + pos: 5.5,9.5 parent: 2 -- proto: ComputerShuttleCargo +- proto: ComputerShuttleSalvage entities: - - uid: 6486 + - uid: 8105 components: - type: Transform - pos: 5.5,9.5 + rot: 3.141592653589793 rad + pos: 5.5,12.5 parent: 2 - proto: ComputerSolarControl entities: @@ -68550,7 +68625,7 @@ entities: - type: Label currentLabel: кофейный ликёр - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.024522448 + sprayFizzinessThresholdRoll: 0.50556636 - type: NameModifier baseName: бутылка кофейного ликёра - type: ContainerContainer @@ -68832,7 +68907,7 @@ entities: - type: Label currentLabel: ром - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.27521503 + sprayFizzinessThresholdRoll: 0.5162235 - type: NameModifier baseName: кубинский пряный ром капитана Пита - type: ContainerContainer @@ -68869,7 +68944,7 @@ entities: - type: Label currentLabel: текила - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.9392517 + sprayFizzinessThresholdRoll: 0.030043429 - type: NameModifier baseName: бутылка текилы Каккаво гарантированного качества - type: ContainerContainer @@ -68910,7 +68985,7 @@ entities: - type: Label currentLabel: вермут - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.31759587 + sprayFizzinessThresholdRoll: 0.22483605 - type: NameModifier baseName: бутылка вермута Золотой глаз - type: ContainerContainer @@ -68933,7 +69008,7 @@ entities: - type: Label currentLabel: водка - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.7674419 + sprayFizzinessThresholdRoll: 0.60066545 - type: NameModifier baseName: бутылка водки - type: ContainerContainer @@ -69001,7 +69076,7 @@ entities: - type: Label currentLabel: вино - type: PressurizedSolution - sprayFizzinessThresholdRoll: 0.64443517 + sprayFizzinessThresholdRoll: 0.4686988 - type: NameModifier baseName: особое двухбородое бородатое вино - type: ContainerContainer @@ -75275,15 +75350,10 @@ entities: parent: 2 - proto: GasAnalyzer entities: - - uid: 8105 - components: - - type: Transform - pos: 49.016895,-1.9675412 - parent: 2 - uid: 8106 components: - type: Transform - pos: 47.610493,-0.35056996 + pos: 47.52881,-0.44988373 parent: 2 - proto: GasCanisterBrokenBase entities: @@ -99175,21 +99245,11 @@ entities: - type: Transform pos: -12.5,20.5 parent: 2 - - uid: 21892 - components: - - type: Transform - pos: -12.5,19.5 - parent: 2 - uid: 21893 components: - type: Transform pos: -9.5,16.5 parent: 2 - - uid: 21909 - components: - - type: Transform - pos: -11.5,17.5 - parent: 2 - proto: GrilleBroken entities: - uid: 3170 @@ -102601,11 +102661,6 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 11238 - components: - - type: Transform - pos: 48.5,-5.5 - parent: 2 - uid: 11239 components: - type: Transform @@ -103157,6 +103212,13 @@ entities: - type: Transform pos: 15.5,34.5 parent: 16504 +- proto: MedicalScanner + entities: + - uid: 6485 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 - proto: MedicalTechFab entities: - uid: 11298 @@ -103996,6 +104058,20 @@ entities: - type: Transform pos: 48.5,-9.5 parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 22025 + components: + - type: Transform + pos: 47.70715,-2.3725793 + parent: 2 +- proto: OreBox + entities: + - uid: 10912 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 - proto: OreProcessor entities: - uid: 11368 @@ -104973,6 +105049,83 @@ entities: ░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ░░░░░░░░░░░░░░░░░░░░░░░░░ [/bold] + - uid: 22024 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: 47.723507,-5.366261 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2- + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] + - uid: 22026 + components: + - type: Transform + pos: 47.340557,-2.3626688 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True - proto: PaperBin10 entities: - uid: 11448 @@ -106595,11 +106748,6 @@ entities: - type: Transform pos: 45.5,64.5 parent: 2 - - uid: 11667 - components: - - type: Transform - pos: 47.5,-2.5 - parent: 2 - uid: 11668 components: - type: Transform @@ -110672,18 +110820,6 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,34.5 parent: 16504 - - uid: 21896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 2 - - uid: 21897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 2 - uid: 21898 components: - type: Transform @@ -110700,6 +110836,17 @@ entities: - type: Transform pos: -5.5,16.5 parent: 2 + - uid: 22019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,19.5 + parent: 2 + - uid: 22020 + components: + - type: Transform + pos: -11.5,17.5 + parent: 2 - proto: RailingCorner entities: - uid: 252 @@ -110821,6 +110968,18 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,23.5 parent: 2 + - uid: 22017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 2 - proto: RailingCornerSmall entities: - uid: 251 @@ -110974,6 +111133,17 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,18.5 parent: 2 + - uid: 22021 + components: + - type: Transform + pos: -10.5,19.5 + parent: 2 + - uid: 22023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 - proto: RailingRound entities: - uid: 3218 @@ -117646,6 +117816,13 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,5.5 parent: 2 +- proto: SignCloning + entities: + - uid: 22022 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 - proto: SignCryo entities: - uid: 12956 @@ -123795,6 +123972,11 @@ entities: rot: -1.5707963267948966 rad pos: 37.5,32.5 parent: 16504 + - uid: 21896 + components: + - type: Transform + pos: 47.5,-2.5 + parent: 2 - proto: TableCarpet entities: - uid: 4978 diff --git a/Resources/Maps/corvax_pearl.yml b/Resources/Maps/corvax_pearl.yml index 8dca6d87479..ad07aaed02e 100644 --- a/Resources/Maps/corvax_pearl.yml +++ b/Resources/Maps/corvax_pearl.yml @@ -135,7 +135,7 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAAgAAAAAAAgAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAAgAAAAAAAgAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAAgAAAAAAAgAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAALwAAAAAALwAAAAAAAgAAAAAAAgAAAAAALwAAAAAALwAAAAAALwAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAA version: 6 0,-1: ind: 0,-1 @@ -151,7 +151,7 @@ entities: version: 6 0,1: ind: 0,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAAHQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAABAAAAAAABAAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAAHQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAABAAAAAAABAAAAAAA version: 6 1,1: ind: 1,1 @@ -259,11 +259,11 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: NwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAOgAAAAAAOgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAANwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAOgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAKwAAAAAANwAAAAAAKwAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAKQAAAAAANwAAAAAAOgAAAAAAKQAAAAAAKQAAAAAAKwAAAAAAKQAAAAAAKQAAAAAAOwAAAAAAOgAAAAAAOgAAAAAAKQAAAAAAKwAAAAAAKQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAAAKAAAAAAAKwAAAAAAKQAAAAAAKAAAAAAAKAAAAAAAKQAAAAAAOwAAAAAAKAAAAAAAgQAAAAAABAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKAAAAAAAKAAAAAAAgQAAAAAABAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAABAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAPgAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAA + tiles: NwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAOgAAAAAAOgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAgQAAAAAANwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAALAAAAAAAOgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAKwAAAAAANwAAAAAAKwAAAAAAKQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAKQAAAAAANwAAAAAAOgAAAAAAKQAAAAAAKQAAAAAAKwAAAAAAKQAAAAAAKQAAAAAAOwAAAAAAOgAAAAAAOgAAAAAAKQAAAAAAKwAAAAAAKQAAAAAAgQAAAAAABAAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAOgAAAAAAKAAAAAAAKwAAAAAAKQAAAAAAKAAAAAAAKAAAAAAAKQAAAAAAOwAAAAAAKAAAAAAAgQAAAAAAKwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAKAAAAAAAKAAAAAAAgQAAAAAAKwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAKwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAKwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAAAHQAAAAAAgQAAAAAAgQAAAAAAKQAAAAAAKQAAAAAAgQAAAAAAPgAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAgQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAABAAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAgQAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAABAAAAAAAgQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAgQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 @@ -12741,7 +12741,6 @@ entities: 9193: -6,10 9194: -6,9 9195: -5,10 - 9196: -5,11 9197: -5,12 9198: -6,12 9199: -4,12 @@ -12836,7 +12835,6 @@ entities: 9288: -6,12 9289: -6,11 9290: -7,11 - 9291: -5,11 9292: -5,12 9293: -5,13 9294: -4,13 @@ -12859,7 +12857,6 @@ entities: 9311: -3,12 9312: -4,13 9313: -4,12 - 9314: -5,11 9315: -4,12 9316: -3,13 9317: -1,15 @@ -12891,7 +12888,6 @@ entities: 9343: -2,12 9344: -3,12 9345: -3,11 - 9346: -5,11 9347: -5,10 9348: -5,9 9349: -6,8 @@ -13159,7 +13155,6 @@ entities: 9611: 1,23 9612: 0,23 9613: 0,24 - 9614: 0,25 9615: 0,26 9616: 0,27 9617: 0,28 @@ -13237,8 +13232,6 @@ entities: 9689: -2,27 9690: -1,27 9691: 0,26 - 9692: 0,25 - 9693: 0,25 9694: -2,26 9695: -1,27 9696: 0,28 @@ -36810,7 +36803,8 @@ entities: 3,-13: 0: 7645 4,-12: - 0: 4095 + 0: 3839 + 1: 256 4,-11: 0: 65535 4,-10: @@ -37977,16 +37971,16 @@ entities: id: docking279215 localAnchorB: 0.49999997,-2 localAnchorA: -33,-29.5 - damping: 189.71228 - stiffness: 1702.8535 + damping: 189.71222 + stiffness: 1702.8529 docking279217: !type:WeldJoint bodyB: 15534 bodyA: 2 id: docking279217 localAnchorB: 0.49999997,0 localAnchorA: -33,-24.5 - damping: 319.52106 - stiffness: 2868.0146 + damping: 319.52087 + stiffness: 2868.0127 - uid: 15489 components: - type: MetaData @@ -40685,6 +40679,30 @@ entities: parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,64.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,62.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,64.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,62.5 + parent: 2 - uid: 15605 components: - type: Transform @@ -40804,30 +40822,6 @@ entities: parent: 15602 - proto: AirlockGlassShuttle entities: - - uid: 104 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,62.5 - parent: 2 - - uid: 105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,62.5 - parent: 2 - - uid: 106 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,64.5 - parent: 2 - - uid: 107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,64.5 - parent: 2 - uid: 108 components: - type: Transform @@ -41054,6 +41048,11 @@ entities: - type: Transform pos: 40.5,20.5 parent: 2 + - uid: 415 + components: + - type: Transform + pos: 46.5,-58.5 + parent: 2 - uid: 12908 components: - type: Transform @@ -41935,26 +41934,6 @@ entities: - type: Transform pos: 41.5,36.5 parent: 2 - - uid: 248 - components: - - type: Transform - pos: -7.5,64.5 - parent: 2 - - uid: 249 - components: - - type: Transform - pos: 4.5,62.5 - parent: 2 - - uid: 250 - components: - - type: Transform - pos: 4.5,64.5 - parent: 2 - - uid: 251 - components: - - type: Transform - pos: -7.5,62.5 - parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 252 @@ -62439,6 +62418,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: -1.5707963267948966 rad position: Down + buckledEntities: [] - uid: 3226 components: - type: Transform @@ -62451,6 +62431,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 1.5707963267948966 rad position: Stand + buckledEntities: [] - uid: 3227 components: - type: Transform @@ -62664,6 +62645,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 1.5707963267948966 rad position: Down + buckledEntities: [] - uid: 3265 components: - type: Transform @@ -62676,6 +62658,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: -1.5707963267948966 rad position: Down + buckledEntities: [] - proto: CarpetChapel entities: - uid: 3266 @@ -62781,6 +62764,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 1.5707963267948966 rad position: Down + buckledEntities: [] - uid: 3282 components: - type: Transform @@ -62793,6 +62777,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 1.5707963267948966 rad position: Stand + buckledEntities: [] - proto: CarpetOrange entities: - uid: 3283 @@ -62822,6 +62807,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: -1.5707963267948966 rad position: Down + buckledEntities: [] - uid: 3287 components: - type: Transform @@ -62834,6 +62820,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 1.5707963267948966 rad position: Stand + buckledEntities: [] - uid: 3288 components: - type: Transform @@ -62902,6 +62889,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: -1.5707963267948966 rad position: Down + buckledEntities: [] - uid: 3299 components: - type: Transform @@ -62914,6 +62902,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 0.7853981633974483 rad position: Down + buckledEntities: [] - proto: CarpetSBlue entities: - uid: 3300 @@ -62948,6 +62937,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 1.5707963267948966 rad position: Down + buckledEntities: [] - uid: 3305 components: - type: Transform @@ -62960,6 +62950,7 @@ entities: path: /Audio/Effects/buckle.ogg rotation: 1.5707963267948966 rad position: Down + buckledEntities: [] - proto: Catwalk entities: - uid: 1777 @@ -66431,6 +66422,25 @@ entities: - type: Transform pos: 38.504364,-62.40447 parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + Обеспечивает следующую защиту: + + - [color=orange]Взрывной[/color] урон [color=white]к содержимому[/color] снижается на [color=lightblue]90%[/color]. + priority: 0 + component: Armor + - message: Понижает вашу скорость бега на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null - proto: ClothingBeltUtilityFilled entities: - uid: 3750 @@ -66733,23 +66743,31 @@ entities: - uid: 17720 components: - type: Transform - pos: 33.40181,-66.620865 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17721 components: - type: Transform - pos: 33.332508,-66.32646 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17722 components: - type: Transform - pos: 33.74832,-66.29183 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17723 components: - type: Transform - pos: 33.74832,-66.55159 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHatSurgcapGreen entities: - uid: 3804 @@ -67730,11 +67748,6 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-59.5 parent: 2 - - uid: 3857 - components: - - type: Transform - pos: 45.5,-58.5 - parent: 2 - uid: 3858 components: - type: Transform @@ -67853,6 +67866,14 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,67.5 parent: 2 +- proto: ComputerBroken + entities: + - uid: 10302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,59.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 3877 @@ -68063,14 +68084,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,39.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 3906 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,59.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 15509 @@ -68093,7 +68106,7 @@ entities: parent: 2 - proto: ComputerShuttleSalvage entities: - - uid: 3908 + - uid: 250 components: - type: Transform rot: -1.5707963267948966 rad @@ -68706,6 +68719,29 @@ entities: showEnts: False occludes: True ent: null + - uid: 12797 + components: + - type: Transform + pos: 32.5,-66.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 17714 + - 17716 + - 17715 + - 17717 + - 17723 + - 17722 + - 17720 + - 17721 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateMedicalScrubs entities: - uid: 3994 @@ -69057,22 +69093,22 @@ entities: - uid: 17707 components: - type: Transform - pos: 31.732784,-66.40485 + pos: 31.404812,-66.40301 parent: 2 - uid: 17708 components: - type: Transform - pos: 31.4036,-66.17972 + pos: 31.332153,-66.20479 parent: 2 - uid: 17709 components: - type: Transform - pos: 31.680809,-66.1624 + pos: 31.609577,-66.20479 parent: 2 - uid: 17712 components: - type: Transform - pos: 31.90604,-66.26631 + pos: 31.715263,-66.38979 parent: 2 - proto: CrystalSpawner entities: @@ -69174,7 +69210,7 @@ entities: pos: 29.5,23.5 parent: 2 - type: Door - secondsUntilStateChange: -3413.3145 + secondsUntilStateChange: -6069.1206 state: Opening - proto: CurtainsBlueOpen entities: @@ -69379,7 +69415,7 @@ entities: pos: 89.5,16.5 parent: 2 - type: Door - secondsUntilStateChange: -120677.05 + secondsUntilStateChange: -123332.85 state: Closing - uid: 4080 components: @@ -76393,6 +76429,13 @@ entities: - type: Transform pos: 7.6076508,-14.416324 parent: 15602 +- proto: ExosuitFabricator + entities: + - uid: 10554 + components: + - type: Transform + pos: 17.5,51.5 + parent: 2 - proto: ExtinguisherCabinet entities: - uid: 5001 @@ -85085,26 +85128,6 @@ entities: - type: Transform pos: 52.5,-47.5 parent: 2 - - uid: 6331 - components: - - type: Transform - pos: 47.5,-56.5 - parent: 2 - - uid: 6332 - components: - - type: Transform - pos: 47.5,-57.5 - parent: 2 - - uid: 6333 - components: - - type: Transform - pos: 48.5,-55.5 - parent: 2 - - uid: 6334 - components: - - type: Transform - pos: 48.5,-56.5 - parent: 2 - uid: 6335 components: - type: Transform @@ -93134,9 +93157,12 @@ entities: - uid: 7784 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: -4.5,11.5 - parent: 2 + pos: -4.9375,10.953125 + parent: 1 + - type: Physics + bodyType: Dynamic - uid: 7785 components: - type: Transform @@ -94510,9 +94536,12 @@ entities: - uid: 8015 components: - type: Transform + anchored: False rot: 1.5707963267948966 rad - pos: 0.5,25.5 - parent: 2 + pos: 0.0625,24.953125 + parent: 1 + - type: Physics + bodyType: Dynamic - uid: 8016 components: - type: Transform @@ -97371,16 +97400,6 @@ entities: - type: Transform pos: 47.5,-63.5 parent: 2 - - uid: 8619 - components: - - type: Transform - pos: 47.5,-58.5 - parent: 2 - - uid: 8620 - components: - - type: Transform - pos: 47.5,-59.5 - parent: 2 - uid: 8621 components: - type: Transform @@ -97391,16 +97410,6 @@ entities: - type: Transform pos: 47.5,-61.5 parent: 2 - - uid: 8623 - components: - - type: Transform - pos: 48.5,-58.5 - parent: 2 - - uid: 8624 - components: - - type: Transform - pos: 48.5,-59.5 - parent: 2 - uid: 8625 components: - type: Transform @@ -97426,11 +97435,6 @@ entities: - type: Transform pos: 48.5,-62.5 parent: 2 - - uid: 8630 - components: - - type: Transform - pos: 48.5,-57.5 - parent: 2 - uid: 8631 components: - type: Transform @@ -97441,16 +97445,6 @@ entities: - type: Transform pos: 49.5,-58.5 parent: 2 - - uid: 8633 - components: - - type: Transform - pos: 49.5,-56.5 - parent: 2 - - uid: 8634 - components: - - type: Transform - pos: 49.5,-55.5 - parent: 2 - uid: 8635 components: - type: Transform @@ -110726,10 +110720,9 @@ entities: parent: 2 - proto: HospitalCurtains entities: - - uid: 10302 + - uid: 10585 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,-47.5 parent: 2 - uid: 16611 @@ -112890,11 +112883,6 @@ entities: parent: 2 - proto: MachineFrame entities: - - uid: 10554 - components: - - type: Transform - pos: 17.5,51.5 - parent: 2 - uid: 10555 components: - type: Transform @@ -113172,13 +113160,6 @@ entities: - type: Transform pos: 32.5,18.5 parent: 2 -- proto: MaterialReclaimer - entities: - - uid: 10585 - components: - - type: Transform - pos: -12.5,53.5 - parent: 2 - proto: MatterBinStockPart entities: - uid: 10586 @@ -113771,8 +113752,20 @@ entities: - type: Transform pos: 44.5,-59.5 parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 249 + components: + - type: Transform + pos: 33.340176,-66.38319 + parent: 2 - proto: OreBox entities: + - uid: 251 + components: + - type: Transform + pos: 3.5,61.5 + parent: 2 - uid: 10641 components: - type: MetaData @@ -113843,6 +113836,57 @@ entities: parent: 2 - proto: Paper entities: + - uid: 248 + components: + - type: Transform + pos: 33.663837,-66.37658 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + editingDisabled: True - uid: 10650 components: - type: Transform @@ -114491,10 +114535,10 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 10739 + - uid: 422 components: - type: Transform - pos: 15.5,-56.5 + pos: 16.5,-59.5 parent: 2 - uid: 13809 components: @@ -117727,12 +117771,34 @@ entities: parent: 2 - proto: Railing entities: + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-57.5 + parent: 2 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,-58.5 + parent: 2 - uid: 216 components: - type: Transform rot: 3.141592653589793 rad pos: 84.5,31.5 parent: 2 + - uid: 354 + components: + - type: Transform + pos: 49.5,-56.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: 47.5,-59.5 + parent: 2 - uid: 1404 components: - type: Transform @@ -119107,6 +119173,11 @@ entities: parent: 15602 - proto: RailingCorner entities: + - uid: 406 + components: + - type: Transform + pos: 48.5,-59.5 + parent: 2 - uid: 11326 components: - type: Transform @@ -119557,6 +119628,12 @@ entities: parent: 15602 - proto: RailingCornerSmall entities: + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-56.5 + parent: 2 - uid: 9805 components: - type: Transform @@ -123161,7 +123238,7 @@ entities: parent: 2 - proto: SalvageCanisterSpawner entities: - - uid: 12064 + - uid: 416 components: - type: Transform pos: 15.5,-56.5 @@ -124915,15 +124992,15 @@ entities: parent: 2 - proto: SmartFridge entities: - - uid: 12250 + - uid: 107 components: - type: Transform - pos: 40.5,-50.5 + pos: 17.5,-47.5 parent: 2 - - uid: 12251 + - uid: 12250 components: - type: Transform - pos: 17.5,-47.5 + pos: 40.5,-50.5 parent: 2 - proto: SMESBasic entities: @@ -127761,6 +127838,15 @@ entities: - type: Transform pos: 35.5,-56.5 parent: 2 +- proto: StationAnchorIndestructible + entities: + - uid: 3908 + components: + - type: Transform + pos: 63.5,6.5 + parent: 2 + - type: Stealth + - type: StealthOnMove - proto: StationMap entities: - uid: 12615 @@ -128591,12 +128677,6 @@ entities: - type: Transform pos: 40.5,-53.5 parent: 2 - - uid: 12715 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-51.5 - parent: 2 - uid: 12716 components: - type: Transform @@ -129139,6 +129219,11 @@ entities: parent: 2 - proto: Syringe entities: + - uid: 3906 + components: + - type: Transform + pos: 17.436646,-45.306988 + parent: 2 - uid: 12793 components: - type: Transform @@ -129159,16 +129244,6 @@ entities: - type: Transform pos: 34.710228,-58.44356 parent: 2 - - uid: 12797 - components: - - type: Transform - pos: 17.56063,-45.490753 - parent: 2 - - uid: 12798 - components: - - type: Transform - pos: 17.404358,-45.373566 - parent: 2 - uid: 12799 components: - type: Transform @@ -129181,6 +129256,11 @@ entities: rot: 3.141592653589793 rad pos: 45.55882,-58.4723 parent: 2 + - uid: 13042 + components: + - type: Transform + pos: 17.659576,-45.45565 + parent: 2 - proto: SyringeEphedrine entities: - uid: 12801 @@ -130262,6 +130342,11 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-26.5 parent: 2 + - uid: 12251 + components: + - type: Transform + pos: 17.5,-45.5 + parent: 2 - uid: 12980 components: - type: Transform @@ -130575,12 +130660,6 @@ entities: rot: 1.5707963267948966 rad pos: 25.5,-55.5 parent: 2 - - uid: 13042 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-45.5 - parent: 2 - uid: 13043 components: - type: Transform @@ -131014,11 +131093,6 @@ entities: - type: Transform pos: 31.5,-66.5 parent: 2 - - uid: 17703 - components: - - type: Transform - pos: 32.5,-66.5 - parent: 2 - uid: 17704 components: - type: Transform @@ -132172,23 +132246,31 @@ entities: - uid: 17714 components: - type: Transform - pos: 32.304527,-66.387535 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17715 components: - type: Transform - pos: 32.910923,-66.49144 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17716 components: - type: Transform - pos: 32.425804,-66.578026 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 17717 components: - type: Transform - pos: 32.703014,-66.43948 - parent: 2 + parent: 12797 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: UniformScrubsColorGreen entities: - uid: 3809 @@ -132750,18 +132832,6 @@ entities: parent: 2 - proto: WallBrick entities: - - uid: 416 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,33.5 - parent: 2 - - uid: 422 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,34.5 - parent: 2 - uid: 1797 components: - type: Transform @@ -132792,755 +132862,11 @@ entities: - type: Transform pos: 26.5,8.5 parent: 2 - - uid: 10091 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,31.5 - parent: 2 - - uid: 11823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,21.5 - parent: 2 - - uid: 11828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,30.5 - parent: 2 - - uid: 11834 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,30.5 - parent: 2 - - uid: 11836 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,30.5 - parent: 2 - - uid: 11846 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,15.5 - parent: 2 - - uid: 11884 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,32.5 - parent: 2 - - uid: 11917 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,33.5 - parent: 2 - - uid: 11935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,22.5 - parent: 2 - - uid: 12020 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,23.5 - parent: 2 - uid: 12444 components: - type: Transform pos: 5.5,7.5 parent: 2 - - uid: 13381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,31.5 - parent: 2 - - uid: 13384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,29.5 - parent: 2 - - uid: 13385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,29.5 - parent: 2 - - uid: 13556 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,34.5 - parent: 2 - - uid: 13557 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,34.5 - parent: 2 - - uid: 13558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,34.5 - parent: 2 - - uid: 13559 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,34.5 - parent: 2 - - uid: 13560 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,34.5 - parent: 2 - - uid: 13561 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,30.5 - parent: 2 - - uid: 13562 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,30.5 - parent: 2 - - uid: 13563 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,14.5 - parent: 2 - - uid: 13564 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,11.5 - parent: 2 - - uid: 13565 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,10.5 - parent: 2 - - uid: 13566 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,14.5 - parent: 2 - - uid: 13579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,10.5 - parent: 2 - - uid: 13580 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,10.5 - parent: 2 - - uid: 13581 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,10.5 - parent: 2 - - uid: 13582 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,16.5 - parent: 2 - - uid: 13583 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,15.5 - parent: 2 - - uid: 13584 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,18.5 - parent: 2 - - uid: 13585 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,28.5 - parent: 2 - - uid: 13589 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,20.5 - parent: 2 - - uid: 13593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 85.5,11.5 - parent: 2 - - uid: 13596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,25.5 - parent: 2 - - uid: 13597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,30.5 - parent: 2 - - uid: 13598 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,29.5 - parent: 2 - - uid: 13599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,24.5 - parent: 2 - - uid: 13600 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,24.5 - parent: 2 - - uid: 13601 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,30.5 - parent: 2 - - uid: 13688 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,30.5 - parent: 2 - - uid: 13736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,30.5 - parent: 2 - - uid: 13827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 90.5,24.5 - parent: 2 - - uid: 13830 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,30.5 - parent: 2 - - uid: 13854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,30.5 - parent: 2 - - uid: 13856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,30.5 - parent: 2 - - uid: 13879 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,28.5 - parent: 2 - - uid: 13932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 77.5,28.5 - parent: 2 - - uid: 13933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,28.5 - parent: 2 - - uid: 13935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,27.5 - parent: 2 - - uid: 13936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,26.5 - parent: 2 - - uid: 13937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,27.5 - parent: 2 - - uid: 13938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,26.5 - parent: 2 - - uid: 13939 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 80.5,15.5 - parent: 2 - - uid: 13940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,15.5 - parent: 2 - - uid: 13941 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,15.5 - parent: 2 - - uid: 13942 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,15.5 - parent: 2 - - uid: 13943 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,15.5 - parent: 2 - - uid: 13944 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 76.5,18.5 - parent: 2 - - uid: 13945 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,16.5 - parent: 2 - - uid: 13946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,17.5 - parent: 2 - - uid: 13947 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,18.5 - parent: 2 - - uid: 13948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,18.5 - parent: 2 - - uid: 13949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,23.5 - parent: 2 - - uid: 13951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,24.5 - parent: 2 - - uid: 13952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,23.5 - parent: 2 - - uid: 13953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 74.5,22.5 - parent: 2 - - uid: 13954 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,16.5 - parent: 2 - - uid: 13955 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,17.5 - parent: 2 - - uid: 13956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,18.5 - parent: 2 - - uid: 13957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,29.5 - parent: 2 - - uid: 13958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 68.5,29.5 - parent: 2 - - uid: 13959 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,25.5 - parent: 2 - - uid: 13960 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,29.5 - parent: 2 - - uid: 13961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,29.5 - parent: 2 - - uid: 13962 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 81.5,15.5 - parent: 2 - - uid: 13963 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,15.5 - parent: 2 - - uid: 13964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,15.5 - parent: 2 - - uid: 13965 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,16.5 - parent: 2 - - uid: 13966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,17.5 - parent: 2 - - uid: 13967 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,18.5 - parent: 2 - - uid: 13968 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,19.5 - parent: 2 - - uid: 13969 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,19.5 - parent: 2 - - uid: 13970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,19.5 - parent: 2 - - uid: 13971 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,19.5 - parent: 2 - - uid: 13972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,23.5 - parent: 2 - - uid: 13973 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,23.5 - parent: 2 - - uid: 13975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,24.5 - parent: 2 - - uid: 13976 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 78.5,23.5 - parent: 2 - - uid: 13977 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,28.5 - parent: 2 - - uid: 13978 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,25.5 - parent: 2 - - uid: 13979 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,24.5 - parent: 2 - - uid: 13980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 84.5,23.5 - parent: 2 - - uid: 13981 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 79.5,23.5 - parent: 2 - - uid: 13982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 83.5,23.5 - parent: 2 - - uid: 13983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,17.5 - parent: 2 - - uid: 13984 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,15.5 - parent: 2 - - uid: 13985 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,15.5 - parent: 2 - - uid: 13986 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,19.5 - parent: 2 - - uid: 13987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,19.5 - parent: 2 - - uid: 13988 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,19.5 - parent: 2 - - uid: 13989 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,19.5 - parent: 2 - - uid: 13990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,23.5 - parent: 2 - - uid: 13991 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,23.5 - parent: 2 - - uid: 13992 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,23.5 - parent: 2 - - uid: 13993 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,28.5 - parent: 2 - - uid: 13998 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 93.5,28.5 - parent: 2 - - uid: 13999 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 91.5,28.5 - parent: 2 - - uid: 14000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 90.5,28.5 - parent: 2 - - uid: 14001 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 87.5,28.5 - parent: 2 - - uid: 14002 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 92.5,28.5 - parent: 2 - - uid: 14003 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,28.5 - parent: 2 - - uid: 14005 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 88.5,28.5 - parent: 2 - - uid: 14006 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 86.5,28.5 - parent: 2 - - uid: 14007 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,28.5 - parent: 2 - - uid: 14008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,23.5 - parent: 2 - - uid: 14010 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,24.5 - parent: 2 - - uid: 14011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,27.5 - parent: 2 - - uid: 14012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 96.5,23.5 - parent: 2 - - uid: 14013 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,28.5 - parent: 2 - - uid: 14014 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,28.5 - parent: 2 - - uid: 14015 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 95.5,23.5 - parent: 2 - - uid: 14016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,28.5 - parent: 2 - - uid: 14017 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 75.5,29.5 - parent: 2 - - uid: 14018 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 73.5,18.5 - parent: 2 - uid: 14020 components: - type: Transform @@ -133565,2023 +132891,1347 @@ entities: rot: 3.141592653589793 rad pos: 83.5,2.5 parent: 2 - - uid: 14029 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 85.5,19.5 - parent: 2 - - uid: 14030 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 94.5,23.5 - parent: 2 - - uid: 14211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 97.5,25.5 - parent: 2 - - uid: 14212 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 89.5,23.5 - parent: 2 - - uid: 14237 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 72.5,18.5 - parent: 2 - proto: WallMining entities: - - uid: 4076 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,49.5 - parent: 2 - - uid: 10049 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,49.5 - parent: 2 - - uid: 12346 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 12666 - components: - - type: Transform - pos: 47.5,18.5 - parent: 2 - - uid: 13864 - components: - - type: Transform - pos: 4.5,61.5 - parent: 2 - - uid: 13865 - components: - - type: Transform - pos: -7.5,61.5 - parent: 2 - - uid: 13871 - components: - - type: Transform - pos: -8.5,55.5 - parent: 2 - uid: 13889 components: - type: Transform pos: -7.5,55.5 parent: 2 - - uid: 13890 - components: - - type: Transform - pos: -7.5,56.5 - parent: 2 - uid: 13891 components: - type: Transform pos: -7.5,57.5 parent: 2 - - uid: 13892 - components: - - type: Transform - pos: -7.5,65.5 - parent: 2 - uid: 13893 components: - type: Transform pos: -7.5,66.5 parent: 2 - - uid: 13894 - components: - - type: Transform - pos: -7.5,67.5 - parent: 2 - - uid: 13895 - components: - - type: Transform - pos: -3.5,67.5 - parent: 2 - - uid: 13896 - components: - - type: Transform - pos: -3.5,66.5 - parent: 2 - - uid: 13897 - components: - - type: Transform - pos: -3.5,64.5 - parent: 2 - - uid: 13898 - components: - - type: Transform - pos: -3.5,63.5 - parent: 2 - - uid: 13899 - components: - - type: Transform - pos: -3.5,62.5 - parent: 2 - - uid: 13900 - components: - - type: Transform - pos: -3.5,61.5 - parent: 2 - - uid: 13901 - components: - - type: Transform - pos: -3.5,60.5 - parent: 2 - - uid: 13902 - components: - - type: Transform - pos: -3.5,59.5 - parent: 2 - - uid: 13903 - components: - - type: Transform - pos: -3.5,58.5 - parent: 2 - - uid: 13904 - components: - - type: Transform - pos: -3.5,56.5 - parent: 2 - - uid: 13905 - components: - - type: Transform - pos: -3.5,55.5 - parent: 2 - - uid: 13906 - components: - - type: Transform - pos: -2.5,55.5 - parent: 2 - - uid: 13907 - components: - - type: Transform - pos: -1.5,55.5 - parent: 2 - - uid: 13908 - components: - - type: Transform - pos: -0.5,55.5 - parent: 2 - - uid: 13909 - components: - - type: Transform - pos: 0.5,55.5 - parent: 2 - - uid: 13910 - components: - - type: Transform - pos: 0.5,56.5 - parent: 2 - - uid: 13911 - components: - - type: Transform - pos: 0.5,58.5 - parent: 2 - uid: 13912 components: - type: Transform pos: 0.5,59.5 parent: 2 - - uid: 13913 - components: - - type: Transform - pos: 0.5,60.5 - parent: 2 - - uid: 13914 - components: - - type: Transform - pos: 0.5,61.5 - parent: 2 - - uid: 13915 - components: - - type: Transform - pos: 0.5,62.5 - parent: 2 - - uid: 13916 - components: - - type: Transform - pos: 0.5,63.5 - parent: 2 - uid: 13917 components: - type: Transform pos: 0.5,64.5 parent: 2 - - uid: 13918 - components: - - type: Transform - pos: 0.5,66.5 - parent: 2 - - uid: 13919 - components: - - type: Transform - pos: 0.5,67.5 - parent: 2 - - uid: 13920 - components: - - type: Transform - pos: 4.5,67.5 - parent: 2 - - uid: 13921 - components: - - type: Transform - pos: 4.5,66.5 - parent: 2 - - uid: 13922 - components: - - type: Transform - pos: 4.5,65.5 - parent: 2 - - uid: 13924 - components: - - type: Transform - pos: 4.5,57.5 - parent: 2 - - uid: 13925 - components: - - type: Transform - pos: 4.5,56.5 - parent: 2 - - uid: 13926 - components: - - type: Transform - pos: 4.5,55.5 - parent: 2 - - uid: 13927 - components: - - type: Transform - pos: 5.5,55.5 - parent: 2 - - uid: 13929 - components: - - type: Transform - pos: 5.5,54.5 - parent: 2 - - uid: 14233 - components: - - type: Transform - pos: 45.5,19.5 - parent: 2 - - uid: 14234 - components: - - type: Transform - pos: 45.5,18.5 - parent: 2 - - uid: 14235 - components: - - type: Transform - pos: 45.5,24.5 - parent: 2 - - uid: 14236 - components: - - type: Transform - pos: 48.5,24.5 - parent: 2 - - uid: 14238 - components: - - type: Transform - pos: 46.5,24.5 - parent: 2 - - uid: 14239 - components: - - type: Transform - pos: 49.5,24.5 - parent: 2 - - uid: 14240 - components: - - type: Transform - pos: 50.5,24.5 - parent: 2 - - uid: 14241 - components: - - type: Transform - pos: 47.5,24.5 - parent: 2 - - uid: 14242 +- proto: WallmountTelescreen + entities: + - uid: 16928 components: - type: Transform - pos: 45.5,23.5 - parent: 2 - - uid: 14243 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 15602 +- proto: WallmountTelevision + entities: + - uid: 16929 components: - type: Transform - pos: 50.5,22.5 - parent: 2 - - uid: 14244 + rot: 1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 15602 +- proto: WallReinforced + entities: + - uid: 3857 components: - type: Transform - pos: 50.5,23.5 + pos: 75.5,33.5 parent: 2 - - uid: 14245 + - uid: 4076 components: - type: Transform - pos: 50.5,20.5 + pos: 70.5,34.5 parent: 2 - - uid: 14246 + - uid: 4085 components: - type: Transform - pos: 50.5,21.5 + rot: 3.141592653589793 rad + pos: 13.5,57.5 parent: 2 - - uid: 14248 + - uid: 4088 components: - type: Transform - pos: 50.5,19.5 + rot: 3.141592653589793 rad + pos: 13.5,56.5 parent: 2 - - uid: 14249 + - uid: 4730 components: - type: Transform - pos: 50.5,18.5 + pos: 39.5,-62.5 parent: 2 - - uid: 14804 + - uid: 6331 components: - type: Transform - pos: 5.5,52.5 + pos: 75.5,31.5 parent: 2 - - uid: 14805 + - uid: 6332 components: - type: Transform - pos: 5.5,51.5 + pos: 97.5,21.5 parent: 2 - - uid: 15088 + - uid: 6333 components: - type: Transform - pos: 5.5,50.5 + pos: 79.5,30.5 parent: 2 - - uid: 15089 + - uid: 6334 components: - type: Transform - pos: 5.5,49.5 + pos: 78.5,30.5 parent: 2 - - uid: 15381 + - uid: 8619 components: - type: Transform - pos: 46.5,18.5 + pos: 84.5,30.5 parent: 2 - - uid: 15382 + - uid: 8620 components: - type: Transform - pos: 4.5,49.5 + pos: 97.5,15.5 parent: 2 - - uid: 15383 + - uid: 8623 components: - type: Transform - pos: 52.5,18.5 + pos: 78.5,32.5 parent: 2 - - uid: 15393 + - uid: 8624 components: - type: Transform - pos: -0.5,49.5 + pos: 78.5,33.5 parent: 2 - - uid: 15394 + - uid: 8630 components: - type: Transform - pos: -2.5,54.5 + pos: 97.5,22.5 parent: 2 - - uid: 15395 + - uid: 8633 components: - type: Transform - pos: -1.5,50.5 + pos: 75.5,23.5 parent: 2 - - uid: 15396 + - uid: 8634 components: - type: Transform - pos: -2.5,53.5 + pos: 78.5,31.5 parent: 2 - - uid: 15397 + - uid: 8901 components: - type: Transform - pos: -2.5,52.5 + pos: 35.5,-66.5 parent: 2 - - uid: 15398 + - uid: 10049 components: - type: Transform - pos: -2.5,51.5 + pos: 78.5,29.5 parent: 2 - - uid: 15399 + - uid: 10062 components: - type: Transform - pos: -2.5,50.5 + pos: 84.5,29.5 parent: 2 - - uid: 15400 + - uid: 10063 components: - type: Transform - pos: -1.5,49.5 + pos: 75.5,34.5 parent: 2 - - uid: 15401 + - uid: 10075 components: - type: Transform - pos: 3.5,49.5 + pos: 76.5,34.5 parent: 2 - - uid: 15411 + - uid: 10076 components: - type: Transform - pos: 51.5,24.5 + pos: 77.5,34.5 parent: 2 - - uid: 15424 + - uid: 10091 components: - type: Transform - pos: 52.5,24.5 + pos: 78.5,34.5 parent: 2 - - uid: 15425 + - uid: 10434 components: - type: Transform - pos: 52.5,23.5 + pos: 37.5,-66.5 parent: 2 - - uid: 15428 + - uid: 10435 components: - type: Transform - pos: 51.5,18.5 + pos: 39.5,-63.5 parent: 2 - - uid: 15429 + - uid: 10438 components: - type: Transform - pos: 52.5,19.5 + pos: 38.5,-63.5 parent: 2 - - uid: 15430 + - uid: 10439 components: - type: Transform - pos: 52.5,20.5 + pos: 37.5,-63.5 parent: 2 - - uid: 15431 + - uid: 10739 components: - type: Transform - pos: 52.5,21.5 + pos: 69.5,34.5 parent: 2 - - uid: 15432 + - uid: 11822 components: - type: Transform - pos: 52.5,22.5 + pos: 76.5,30.5 parent: 2 - - uid: 17765 + - uid: 11823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,21.5 + pos: 77.5,30.5 parent: 2 -- proto: WallmountTelescreen - entities: - - uid: 16928 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 15602 -- proto: WallmountTelevision - entities: - - uid: 16929 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-4.5 - parent: 15602 -- proto: WallPlastitanium - entities: - - uid: 156 + - uid: 11828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-32.5 + pos: 79.5,14.5 parent: 2 - - uid: 157 + - uid: 11834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-30.5 + pos: 79.5,11.5 parent: 2 - - uid: 354 + - uid: 11836 components: - type: Transform - pos: -10.5,-35.5 + pos: 84.5,10.5 parent: 2 - - uid: 406 + - uid: 11846 components: - type: Transform - pos: -7.5,-32.5 + pos: 85.5,14.5 parent: 2 - - uid: 411 + - uid: 11847 components: - type: Transform - pos: -8.5,-32.5 + pos: 80.5,10.5 parent: 2 - - uid: 414 + - uid: 11861 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-29.5 + pos: 85.5,10.5 parent: 2 - - uid: 415 + - uid: 11868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-25.5 + pos: 79.5,10.5 parent: 2 - - uid: 10062 + - uid: 11876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-31.5 + pos: 91.5,16.5 parent: 2 - - uid: 10063 + - uid: 11884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-29.5 + pos: 91.5,15.5 parent: 2 - - uid: 10075 + - uid: 11917 components: - type: Transform - pos: -10.5,-33.5 + pos: 91.5,18.5 parent: 2 - - uid: 10076 + - uid: 11935 components: - type: Transform - pos: -6.5,-32.5 + pos: 97.5,28.5 parent: 2 - - uid: 11822 + - uid: 12020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-18.5 + pos: 97.5,20.5 parent: 2 - - uid: 11847 + - uid: 12026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-16.5 + pos: 85.5,11.5 parent: 2 - - uid: 11861 + - uid: 12027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-18.5 + pos: 78.5,25.5 parent: 2 - - uid: 11868 + - uid: 12029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-20.5 + pos: 69.5,30.5 parent: 2 - - uid: 11876 + - uid: 12037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-27.5 + pos: 69.5,29.5 parent: 2 - - uid: 12026 + - uid: 12042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 + pos: 69.5,24.5 parent: 2 - - uid: 12027 + - uid: 12049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 + pos: 70.5,24.5 parent: 2 - - uid: 12029 + - uid: 12051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 + pos: 70.5,30.5 parent: 2 - - uid: 12037 + - uid: 12064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-33.5 + pos: 71.5,30.5 parent: 2 - - uid: 12042 + - uid: 12336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-19.5 + pos: 72.5,30.5 parent: 2 - - uid: 12049 + - uid: 12346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 + pos: 90.5,24.5 parent: 2 - - uid: 12051 + - uid: 12349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 + pos: 73.5,30.5 parent: 2 - - uid: 12336 + - uid: 12666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 + pos: 74.5,30.5 parent: 2 - - uid: 12349 + - uid: 12715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 + pos: 75.5,30.5 parent: 2 - uid: 12979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-34.5 + pos: 76.5,28.5 parent: 2 - uid: 12991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-35.5 + pos: 77.5,28.5 parent: 2 - uid: 13002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-21.5 + pos: 78.5,28.5 parent: 2 - uid: 13033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-21.5 + pos: 78.5,27.5 parent: 2 - uid: 13311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-26.5 + pos: 78.5,26.5 parent: 2 - uid: 13312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-25.5 + pos: 84.5,27.5 parent: 2 - uid: 13313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-24.5 + pos: 84.5,26.5 parent: 2 - uid: 13314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-23.5 + pos: 80.5,15.5 parent: 2 - uid: 13315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-21.5 + pos: 79.5,15.5 parent: 2 - uid: 13316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-21.5 + pos: 78.5,15.5 parent: 2 - uid: 13317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 + pos: 74.5,15.5 parent: 2 - uid: 13318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-20.5 + pos: 76.5,15.5 parent: 2 - uid: 13319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 + pos: 76.5,18.5 parent: 2 - uid: 13320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-19.5 + pos: 74.5,16.5 parent: 2 - uid: 13321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-19.5 + pos: 74.5,17.5 parent: 2 - uid: 13322 components: - type: Transform - pos: -4.5,-32.5 + pos: 74.5,18.5 parent: 2 - uid: 13323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-27.5 + pos: 71.5,18.5 parent: 2 - uid: 13324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-35.5 + pos: 71.5,23.5 parent: 2 - uid: 13325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 + pos: 71.5,24.5 parent: 2 - uid: 13326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-25.5 + pos: 74.5,23.5 parent: 2 - uid: 13327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-27.5 + pos: 74.5,22.5 parent: 2 - uid: 13328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-37.5 + pos: 78.5,16.5 parent: 2 - uid: 13329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-35.5 + pos: 78.5,17.5 parent: 2 - uid: 13330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-35.5 + pos: 78.5,18.5 parent: 2 - uid: 13331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-29.5 + pos: 64.5,29.5 parent: 2 - uid: 13332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-37.5 + pos: 68.5,29.5 parent: 2 - uid: 13333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-18.5 + pos: 69.5,25.5 parent: 2 - uid: 13334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-17.5 + pos: 67.5,29.5 parent: 2 - uid: 13335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-18.5 + pos: 65.5,29.5 parent: 2 - uid: 13336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-27.5 + pos: 81.5,15.5 parent: 2 - uid: 13337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-35.5 + pos: 83.5,15.5 parent: 2 - uid: 13338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-34.5 + pos: 84.5,15.5 parent: 2 - uid: 13339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-26.5 + pos: 84.5,16.5 parent: 2 - uid: 13340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-21.5 + pos: 84.5,17.5 parent: 2 - uid: 13341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-27.5 + pos: 84.5,18.5 parent: 2 - uid: 13342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + pos: 78.5,19.5 parent: 2 - uid: 13343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-20.5 + pos: 84.5,19.5 parent: 2 - uid: 13345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-20.5 + pos: 79.5,19.5 parent: 2 - uid: 13346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 + pos: 83.5,19.5 parent: 2 - uid: 13347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 + pos: 72.5,23.5 parent: 2 - uid: 13348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-26.5 + pos: 73.5,23.5 parent: 2 - uid: 13349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-28.5 + pos: 78.5,24.5 parent: 2 - uid: 13350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-17.5 + pos: 78.5,23.5 parent: 2 - uid: 13351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 + pos: 84.5,28.5 parent: 2 - uid: 13352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-25.5 + pos: 84.5,25.5 parent: 2 - uid: 13353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-18.5 + pos: 84.5,24.5 parent: 2 - uid: 13355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-33.5 + pos: 84.5,23.5 parent: 2 - uid: 13356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-24.5 + pos: 79.5,23.5 parent: 2 - uid: 13357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-23.5 + pos: 83.5,23.5 parent: 2 - uid: 13358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 + pos: 91.5,17.5 parent: 2 - uid: 13359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-37.5 + pos: 90.5,15.5 parent: 2 - uid: 13360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-37.5 + pos: 85.5,15.5 parent: 2 - uid: 13361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-37.5 + pos: 90.5,19.5 parent: 2 - uid: 13362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-29.5 + pos: 89.5,19.5 parent: 2 - uid: 13363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-33.5 + pos: 88.5,19.5 parent: 2 - uid: 13364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-33.5 + pos: 91.5,19.5 parent: 2 - uid: 13365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-33.5 + pos: 85.5,23.5 parent: 2 - uid: 13366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-29.5 + pos: 90.5,23.5 parent: 2 - uid: 13367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-37.5 + pos: 91.5,23.5 parent: 2 - uid: 13368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-37.5 + pos: 89.5,28.5 parent: 2 - uid: 13369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-37.5 + pos: 93.5,28.5 parent: 2 - uid: 13370 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-35.5 + pos: 91.5,28.5 parent: 2 - uid: 13371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 + pos: 90.5,28.5 parent: 2 - uid: 13372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-37.5 + pos: 87.5,28.5 parent: 2 - uid: 13373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-35.5 + pos: 92.5,28.5 parent: 2 - uid: 13374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-37.5 + pos: 85.5,28.5 parent: 2 - uid: 13375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-17.5 + pos: 88.5,28.5 parent: 2 - uid: 13376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-17.5 + pos: 86.5,28.5 parent: 2 - uid: 13377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-17.5 + pos: 96.5,28.5 parent: 2 - uid: 13378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 + pos: 97.5,23.5 parent: 2 - uid: 13379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-19.5 + pos: 97.5,24.5 parent: 2 - uid: 13380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-23.5 + pos: 97.5,27.5 + parent: 2 + - uid: 13381 + components: + - type: Transform + pos: 96.5,23.5 parent: 2 - uid: 13382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-33.5 + pos: 94.5,28.5 parent: 2 - uid: 13383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 + pos: 95.5,28.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: 95.5,23.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: 75.5,28.5 parent: 2 - uid: 13386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-17.5 + pos: 75.5,29.5 parent: 2 - uid: 13387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-17.5 + pos: 73.5,18.5 parent: 2 - uid: 13388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-18.5 + pos: 85.5,19.5 parent: 2 - uid: 13391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-18.5 + pos: 94.5,23.5 parent: 2 - uid: 13392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-37.5 + pos: 97.5,25.5 parent: 2 - uid: 13393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-37.5 + pos: 89.5,23.5 parent: 2 - uid: 13398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-37.5 + pos: 72.5,18.5 parent: 2 - uid: 13408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 + pos: 2.5,49.5 parent: 2 - uid: 13409 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 - parent: 2 - - uid: 13410 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 - parent: 2 - - uid: 13411 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-35.5 + pos: 0.5,49.5 parent: 2 - uid: 13418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-35.5 + pos: 4.5,61.5 parent: 2 - uid: 13419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-35.5 + pos: -7.5,61.5 parent: 2 - uid: 13420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-22.5 + pos: -8.5,55.5 parent: 2 - uid: 13421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-18.5 + pos: -7.5,56.5 parent: 2 - uid: 13422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-25.5 + pos: -7.5,65.5 parent: 2 - uid: 13423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-37.5 + pos: -7.5,67.5 parent: 2 - uid: 13424 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-37.5 + pos: -3.5,67.5 parent: 2 - uid: 13425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 + pos: -3.5,66.5 parent: 2 - uid: 13426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-37.5 + pos: -3.5,64.5 parent: 2 - uid: 13427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-37.5 + pos: -3.5,63.5 parent: 2 - uid: 13428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-37.5 + pos: -3.5,62.5 parent: 2 - uid: 13429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-37.5 + pos: -3.5,61.5 parent: 2 - uid: 13430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-37.5 + pos: -3.5,60.5 parent: 2 - uid: 13431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-35.5 + pos: -3.5,59.5 parent: 2 - uid: 13432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-35.5 + pos: -3.5,58.5 parent: 2 - uid: 13433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-32.5 + pos: -3.5,56.5 parent: 2 - uid: 13434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-25.5 + pos: -3.5,55.5 parent: 2 - uid: 13435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-21.5 + pos: -2.5,55.5 parent: 2 - uid: 13436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-25.5 + pos: -1.5,55.5 parent: 2 - uid: 13437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 + pos: -0.5,55.5 parent: 2 - uid: 13438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-20.5 + pos: 0.5,55.5 parent: 2 - uid: 13439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-19.5 + pos: 0.5,56.5 parent: 2 - uid: 13440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-18.5 + pos: 0.5,58.5 parent: 2 - uid: 13441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-29.5 + pos: 0.5,60.5 parent: 2 - uid: 13442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-35.5 + pos: 0.5,61.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + pos: 0.5,62.5 parent: 2 - uid: 13444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-34.5 + pos: 0.5,63.5 parent: 2 - uid: 13445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-35.5 + pos: 0.5,66.5 parent: 2 - uid: 13446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-33.5 + pos: 0.5,67.5 parent: 2 - uid: 13447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-35.5 + pos: 4.5,67.5 parent: 2 - uid: 13448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-24.5 + pos: 4.5,66.5 parent: 2 - uid: 13449 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-20.5 + pos: 4.5,65.5 parent: 2 - uid: 13450 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-20.5 + pos: 4.5,57.5 parent: 2 - uid: 13451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-20.5 + pos: 4.5,56.5 parent: 2 - uid: 13452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 + pos: 4.5,55.5 parent: 2 - uid: 13453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-19.5 + pos: 5.5,55.5 parent: 2 - uid: 13454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-34.5 + pos: 5.5,54.5 parent: 2 - - uid: 13455 + - uid: 13470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 + pos: 5.5,52.5 parent: 2 - - uid: 13456 + - uid: 13471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-23.5 + pos: 5.5,51.5 parent: 2 - - uid: 13457 + - uid: 13472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-19.5 + pos: 5.5,50.5 parent: 2 - - uid: 13458 + - uid: 13473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-25.5 + pos: 5.5,49.5 parent: 2 - - uid: 13459 + - uid: 13475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 + pos: 4.5,49.5 parent: 2 - - uid: 13460 + - uid: 13478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-20.5 + pos: -0.5,49.5 parent: 2 - - uid: 13461 + - uid: 13479 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-23.5 + pos: -2.5,54.5 parent: 2 - - uid: 13462 + - uid: 13480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-19.5 + pos: -1.5,50.5 parent: 2 - - uid: 13463 + - uid: 13481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-29.5 + pos: -2.5,53.5 parent: 2 - - uid: 13464 + - uid: 13483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-17.5 + pos: -2.5,52.5 parent: 2 - - uid: 13465 + - uid: 13484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-21.5 + pos: -2.5,51.5 parent: 2 - - uid: 13466 + - uid: 13485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-17.5 + pos: -2.5,50.5 parent: 2 - - uid: 13467 + - uid: 13486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-18.5 + pos: -1.5,49.5 parent: 2 - - uid: 13468 + - uid: 13487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-18.5 + pos: 3.5,49.5 parent: 2 - - uid: 13469 + - uid: 13497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-18.5 + pos: 8.5,-32.5 parent: 2 - - uid: 13470 + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-17.5 - parent: 2 - - uid: 13471 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 - parent: 2 - - uid: 13472 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-33.5 - parent: 2 - - uid: 13473 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 - parent: 2 - - uid: 13474 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-28.5 - parent: 2 - - uid: 13475 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-35.5 - parent: 2 - - uid: 13476 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-33.5 - parent: 2 - - uid: 13478 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-35.5 - parent: 2 - - uid: 13479 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-22.5 - parent: 2 - - uid: 13480 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-31.5 - parent: 2 - - uid: 13481 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-19.5 - parent: 2 - - uid: 13483 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 2 - - uid: 13484 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-25.5 - parent: 2 - - uid: 13485 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 2 - - uid: 13486 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-33.5 - parent: 2 - - uid: 13487 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-30.5 - parent: 2 - - uid: 13488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-31.5 - parent: 2 - - uid: 13489 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 2 - - uid: 13490 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 - parent: 2 - - uid: 13491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-36.5 - parent: 2 - - uid: 13492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-18.5 - parent: 2 - - uid: 13493 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-19.5 - parent: 2 - - uid: 13494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 2 - - uid: 13495 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-23.5 - parent: 2 - - uid: 13496 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-29.5 - parent: 2 - - uid: 13497 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-32.5 - parent: 2 - - uid: 13498 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-36.5 + pos: 8.5,-30.5 parent: 2 - uid: 13499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-28.5 + pos: -10.5,-35.5 parent: 2 - uid: 13500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-21.5 + pos: -7.5,-32.5 parent: 2 - uid: 13501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-20.5 + pos: -8.5,-32.5 parent: 2 - uid: 13502 components: - type: Transform - pos: -5.5,-32.5 + pos: 13.5,-29.5 parent: 2 - uid: 13503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-25.5 + pos: 10.5,-25.5 parent: 2 - uid: 13504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 + pos: 8.5,-31.5 parent: 2 - uid: 13505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-25.5 + pos: 11.5,-29.5 parent: 2 - uid: 13506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-26.5 + pos: -10.5,-33.5 parent: 2 - uid: 13507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-27.5 + pos: -6.5,-32.5 parent: 2 - uid: 13508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-33.5 + pos: -0.5,-18.5 parent: 2 - uid: 13509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-35.5 + pos: -3.5,-16.5 parent: 2 - uid: 13510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-28.5 + pos: -27.5,-18.5 parent: 2 - uid: 13511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-25.5 + pos: -26.5,-20.5 parent: 2 - uid: 13512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-27.5 + pos: -3.5,-27.5 parent: 2 - uid: 13513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 + pos: -2.5,-16.5 parent: 2 - uid: 13514 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-17.5 + pos: -0.5,-16.5 parent: 2 - uid: 13515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-21.5 + pos: -0.5,-28.5 parent: 2 - uid: 13516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-20.5 + pos: -0.5,-33.5 parent: 2 - uid: 13517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 + pos: -11.5,-19.5 parent: 2 - uid: 13518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-28.5 + pos: -0.5,-34.5 parent: 2 - uid: 13519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-17.5 + pos: -0.5,-35.5 parent: 2 - uid: 13520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-36.5 + pos: -7.5,-37.5 parent: 2 - uid: 13521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-29.5 + pos: -17.5,-25.5 parent: 2 - uid: 13522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-20.5 + pos: -14.5,-34.5 parent: 2 - uid: 13523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-20.5 + pos: -28.5,-35.5 parent: 2 - uid: 13524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-25.5 + pos: -5.5,-21.5 parent: 2 - uid: 13525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 + pos: -10.5,-21.5 parent: 2 - uid: 13526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-19.5 + pos: -10.5,-26.5 parent: 2 - uid: 13528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-25.5 + pos: -10.5,-25.5 parent: 2 - uid: 13529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 + pos: -15.5,-24.5 parent: 2 - uid: 13530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-20.5 + pos: -15.5,-23.5 parent: 2 - uid: 13531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-19.5 + pos: -9.5,-21.5 parent: 2 - uid: 13532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-17.5 + pos: -11.5,-21.5 parent: 2 - uid: 13533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 + pos: -15.5,-22.5 parent: 2 - uid: 13534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-27.5 + pos: -23.5,-20.5 parent: 2 - uid: 13535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-28.5 + pos: -20.5,-19.5 parent: 2 - uid: 13536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-28.5 + pos: -21.5,-19.5 parent: 2 - uid: 13538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-32.5 + pos: -23.5,-19.5 parent: 2 - uid: 13539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 + pos: -4.5,-32.5 parent: 2 - uid: 13540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-20.5 + pos: 4.5,-27.5 parent: 2 - uid: 13541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-32.5 + pos: 13.5,-35.5 parent: 2 - uid: 13542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-27.5 + pos: 0.5,-25.5 parent: 2 - uid: 13543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-17.5 + pos: 8.5,-25.5 parent: 2 - uid: 13544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-17.5 + pos: 0.5,-27.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + pos: -4.5,-36.5 parent: 2 - uid: 13546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-28.5 + pos: 4.5,-37.5 parent: 2 - uid: 13547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-25.5 + pos: 11.5,-35.5 parent: 2 - uid: 13548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 + pos: 8.5,-35.5 parent: 2 - uid: 13549 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-24.5 + pos: 15.5,-29.5 parent: 2 - uid: 13550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-32.5 + pos: 5.5,-37.5 parent: 2 - uid: 13552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-29.5 + pos: -28.5,-18.5 parent: 2 - uid: 13553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-29.5 + pos: -29.5,-17.5 parent: 2 - uid: 13554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 + pos: -32.5,-18.5 parent: 2 - uid: 13555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-26.5 - parent: 2 - - uid: 13590 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-20.5 - parent: 2 - - uid: 13592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-18.5 - parent: 2 - - uid: 13594 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 2 - - uid: 13595 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-19.5 - parent: 2 - - uid: 14024 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 2 - - uid: 14028 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-23.5 + pos: -0.5,-27.5 parent: 2 - - uid: 14283 + - uid: 13556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 + pos: 9.5,-35.5 parent: 2 -- proto: WallReinforced - entities: - - uid: 4085 + - uid: 13557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,57.5 + pos: 15.5,-34.5 parent: 2 - - uid: 4088 + - uid: 13558 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,56.5 + pos: 4.5,-26.5 parent: 2 - - uid: 4730 + - uid: 13559 components: - type: Transform - pos: 39.5,-62.5 + pos: 0.5,-21.5 parent: 2 - - uid: 8901 + - uid: 13560 components: - type: Transform - pos: 35.5,-66.5 + pos: -18.5,-27.5 parent: 2 - - uid: 10434 + - uid: 13561 components: - type: Transform - pos: 37.5,-66.5 + pos: -3.5,-19.5 parent: 2 - - uid: 10435 + - uid: 13562 components: - type: Transform - pos: 39.5,-63.5 + pos: -3.5,-20.5 parent: 2 - - uid: 10438 + - uid: 13563 components: - type: Transform - pos: 38.5,-63.5 + pos: 0.5,-20.5 parent: 2 - - uid: 10439 + - uid: 13564 components: - type: Transform - pos: 37.5,-63.5 + pos: -16.5,-25.5 parent: 2 - - uid: 13443 + - uid: 13565 components: - type: Transform - pos: -15.5,-32.5 + pos: 8.5,-33.5 parent: 2 - - uid: 13545 + - uid: 13566 components: - type: Transform - pos: -4.5,-36.5 + pos: -14.5,-26.5 parent: 2 - uid: 13570 components: @@ -135628,779 +134278,1699 @@ entities: - type: Transform pos: 20.5,-41.5 parent: 2 - - uid: 13604 + - uid: 13579 components: - type: Transform - pos: 43.5,-57.5 + pos: -18.5,-28.5 parent: 2 - - uid: 13651 + - uid: 13580 components: - type: Transform - pos: 34.5,-61.5 + pos: -31.5,-17.5 parent: 2 - - uid: 13766 + - uid: 13581 components: - type: Transform - pos: 2.5,39.5 + pos: -28.5,-34.5 parent: 2 - - uid: 13863 + - uid: 13582 components: - type: Transform - pos: 18.5,43.5 + pos: -11.5,-25.5 parent: 2 - - uid: 13923 + - uid: 13583 components: - type: Transform - pos: 18.5,-54.5 + pos: -15.5,-18.5 parent: 2 - - uid: 13934 + - uid: 13584 components: - type: Transform - pos: 69.5,28.5 + pos: 15.5,-33.5 parent: 2 - - uid: 14032 + - uid: 13585 components: - type: Transform - pos: 44.5,-44.5 + pos: 4.5,-24.5 parent: 2 - - uid: 14034 + - uid: 13589 components: - type: Transform - pos: 29.5,-44.5 + pos: 4.5,-23.5 parent: 2 - - uid: 14035 + - uid: 13590 components: - type: Transform - pos: 37.5,-44.5 + pos: 4.5,-25.5 parent: 2 - - uid: 14036 + - uid: 13592 components: - type: Transform - pos: 33.5,-44.5 + pos: 2.5,-37.5 parent: 2 - - uid: 14037 + - uid: 13593 components: - type: Transform - pos: 38.5,-44.5 + pos: 1.5,-37.5 parent: 2 - - uid: 14038 + - uid: 13594 components: - type: Transform - pos: 28.5,-44.5 + pos: 0.5,-37.5 parent: 2 - - uid: 14039 + - uid: 13595 components: - type: Transform - pos: 37.5,-50.5 + pos: 10.5,-29.5 parent: 2 - - uid: 14040 + - uid: 13596 components: - type: Transform - pos: 38.5,-49.5 + pos: 4.5,-33.5 parent: 2 - - uid: 14041 + - uid: 13597 components: - type: Transform - pos: 38.5,-50.5 + pos: 6.5,-33.5 parent: 2 - - uid: 14042 + - uid: 13598 components: - type: Transform - pos: 17.5,-48.5 + pos: 2.5,-33.5 parent: 2 - - uid: 14043 + - uid: 13599 components: - type: Transform - pos: 36.5,-50.5 + pos: 14.5,-29.5 parent: 2 - - uid: 14044 + - uid: 13600 components: - type: Transform - pos: 28.5,-50.5 + pos: 3.5,-37.5 parent: 2 - - uid: 14045 + - uid: 13601 components: - type: Transform - pos: 13.5,-48.5 + pos: -0.5,-37.5 parent: 2 - - uid: 14046 + - uid: 13604 components: - type: Transform - pos: 39.5,-58.5 + pos: 43.5,-57.5 parent: 2 - - uid: 14047 + - uid: 13651 components: - type: Transform - pos: 38.5,-45.5 + pos: 34.5,-61.5 parent: 2 - - uid: 14048 + - uid: 13688 components: - type: Transform - pos: 27.5,-44.5 + pos: -1.5,-37.5 parent: 2 - - uid: 14049 + - uid: 13736 components: - type: Transform - pos: 26.5,-44.5 + pos: 15.5,-35.5 parent: 2 - - uid: 14050 + - uid: 13766 components: - type: Transform - pos: 25.5,-44.5 + pos: 2.5,39.5 parent: 2 - - uid: 14051 + - uid: 13827 components: - type: Transform - pos: 24.5,-44.5 + pos: 8.5,-37.5 parent: 2 - - uid: 14052 + - uid: 13830 components: - type: Transform - pos: 24.5,-45.5 + pos: 6.5,-37.5 parent: 2 - - uid: 14053 + - uid: 13854 components: - type: Transform - pos: 24.5,-46.5 + pos: 10.5,-35.5 parent: 2 - - uid: 14054 + - uid: 13856 components: - type: Transform - pos: 24.5,-47.5 + pos: 7.5,-37.5 parent: 2 - - uid: 14055 + - uid: 13859 components: - type: Transform - pos: 24.5,-48.5 + pos: -19.5,-17.5 parent: 2 - - uid: 14056 + - uid: 13860 components: - type: Transform - pos: 24.5,-49.5 + pos: -18.5,-17.5 parent: 2 - - uid: 14057 + - uid: 13861 components: - type: Transform - pos: 24.5,-50.5 + pos: -15.5,-17.5 parent: 2 - - uid: 14058 + - uid: 13863 components: - type: Transform - pos: 39.5,-44.5 + pos: 18.5,43.5 parent: 2 - - uid: 14059 + - uid: 13864 components: - type: Transform - pos: 40.5,-44.5 + pos: 0.5,-26.5 parent: 2 - - uid: 14060 + - uid: 13865 components: - type: Transform - pos: 41.5,-44.5 + pos: 0.5,-19.5 parent: 2 - - uid: 14061 + - uid: 13867 components: - type: Transform - pos: 42.5,-44.5 + pos: 0.5,-23.5 parent: 2 - - uid: 14062 + - uid: 13868 components: - type: Transform - pos: 43.5,-44.5 + pos: 0.5,-33.5 parent: 2 - - uid: 14063 + - uid: 13871 components: - type: Transform - pos: 44.5,-45.5 + pos: 8.5,-36.5 parent: 2 - - uid: 14064 + - uid: 13872 components: - type: Transform - pos: 44.5,-46.5 + pos: -11.5,-17.5 parent: 2 - - uid: 14065 + - uid: 13873 components: - type: Transform - pos: 44.5,-47.5 + pos: -10.5,-17.5 parent: 2 - - uid: 14066 + - uid: 13874 components: - type: Transform - pos: 44.5,-48.5 + pos: 0.5,-18.5 parent: 2 - - uid: 14067 + - uid: 13875 components: - type: Transform - pos: 44.5,-49.5 + pos: 2.5,-18.5 parent: 2 - - uid: 14068 + - uid: 13876 components: - type: Transform - pos: 44.5,-50.5 + pos: -8.5,-37.5 parent: 2 - - uid: 14069 + - uid: 13877 components: - type: Transform - pos: 15.5,-59.5 + pos: -9.5,-37.5 parent: 2 - - uid: 14070 + - uid: 13878 components: - type: Transform - pos: 36.5,-55.5 + pos: -11.5,-37.5 parent: 2 - - uid: 14071 + - uid: 13879 components: - type: Transform - pos: 33.5,-54.5 + pos: -13.5,-37.5 parent: 2 - - uid: 14072 + - uid: 13880 components: - type: Transform - pos: 34.5,-54.5 + pos: -18.5,-32.5 parent: 2 - - uid: 14073 + - uid: 13881 components: - type: Transform - pos: 35.5,-54.5 + pos: -18.5,-33.5 parent: 2 - - uid: 14074 + - uid: 13882 components: - type: Transform - pos: 36.5,-54.5 + pos: -15.5,-35.5 parent: 2 - - uid: 14075 + - uid: 13883 components: - type: Transform - pos: 37.5,-58.5 + pos: -22.5,-35.5 parent: 2 - - uid: 14076 + - uid: 13884 components: - type: Transform - pos: 38.5,-58.5 + pos: -20.5,-35.5 parent: 2 - - uid: 14077 + - uid: 13885 components: - type: Transform - pos: 40.5,-54.5 + pos: -19.5,-22.5 parent: 2 - - uid: 14078 + - uid: 13886 components: - type: Transform - pos: 41.5,-54.5 + pos: -19.5,-18.5 parent: 2 - - uid: 14079 + - uid: 13887 components: - type: Transform - pos: 42.5,-54.5 + pos: 13.5,-25.5 parent: 2 - - uid: 14080 + - uid: 13888 components: - type: Transform - pos: 29.5,-54.5 + pos: -6.5,-37.5 parent: 2 - - uid: 14081 + - uid: 13890 components: - type: Transform - pos: 28.5,-54.5 + pos: -5.5,-37.5 parent: 2 - - uid: 14082 + - uid: 13892 components: - type: Transform - pos: 27.5,-54.5 + pos: -4.5,-37.5 parent: 2 - - uid: 14083 + - uid: 13894 components: - type: Transform - pos: 26.5,-54.5 + pos: -3.5,-37.5 parent: 2 - - uid: 14084 + - uid: 13895 components: - type: Transform - pos: 25.5,-54.5 + pos: -2.5,-37.5 parent: 2 - - uid: 14085 + - uid: 13896 components: - type: Transform - pos: 26.5,-55.5 + pos: -10.5,-37.5 parent: 2 - - uid: 14086 + - uid: 13897 components: - type: Transform - pos: 26.5,-57.5 + pos: -12.5,-37.5 parent: 2 - - uid: 14087 + - uid: 13898 components: - type: Transform - pos: 26.5,-58.5 + pos: -14.5,-37.5 parent: 2 - - uid: 14088 + - uid: 13899 components: - type: Transform - pos: 36.5,-56.5 + pos: -19.5,-35.5 parent: 2 - - uid: 14089 + - uid: 13900 components: - type: Transform - pos: 36.5,-57.5 + pos: -17.5,-35.5 parent: 2 - - uid: 14090 + - uid: 13901 components: - type: Transform - pos: 36.5,-58.5 + pos: -22.5,-32.5 parent: 2 - - uid: 14091 + - uid: 13902 components: - type: Transform - pos: 29.5,-59.5 + pos: -19.5,-25.5 parent: 2 - - uid: 14092 + - uid: 13903 components: - type: Transform - pos: 31.5,-59.5 + pos: -19.5,-21.5 parent: 2 - - uid: 14093 + - uid: 13904 components: - type: Transform - pos: 35.5,-59.5 + pos: 12.5,-25.5 parent: 2 - - uid: 14095 + - uid: 13905 components: - type: Transform - pos: 32.5,-59.5 + pos: 12.5,-21.5 parent: 2 - - uid: 14096 + - uid: 13906 components: - type: Transform - pos: 34.5,-59.5 + pos: 10.5,-20.5 parent: 2 - - uid: 14097 + - uid: 13907 components: - type: Transform - pos: 36.5,-59.5 + pos: 8.5,-19.5 parent: 2 - - uid: 14098 + - uid: 13908 components: - type: Transform - pos: 30.5,-59.5 + pos: 5.5,-18.5 parent: 2 - - uid: 14099 + - uid: 13909 components: - type: Transform - pos: 28.5,-59.5 + pos: 8.5,-29.5 parent: 2 - - uid: 14100 + - uid: 13910 components: - type: Transform - pos: 27.5,-59.5 + pos: -16.5,-35.5 parent: 2 - - uid: 14101 + - uid: 13911 components: - type: Transform - pos: 26.5,-59.5 + pos: -18.5,-34.5 parent: 2 - - uid: 14102 + - uid: 13913 components: - type: Transform - pos: 40.5,-58.5 + pos: -18.5,-35.5 parent: 2 - - uid: 14103 + - uid: 13914 components: - type: Transform - pos: 41.5,-58.5 + pos: -22.5,-33.5 parent: 2 - - uid: 14104 + - uid: 13915 components: - type: Transform - pos: 42.5,-55.5 + pos: -21.5,-35.5 parent: 2 - - uid: 14105 + - uid: 13916 components: - type: Transform - pos: 42.5,-56.5 + pos: -19.5,-24.5 parent: 2 - - uid: 14106 + - uid: 13918 components: - type: Transform - pos: 42.5,-57.5 + pos: -19.5,-20.5 parent: 2 - - uid: 14107 + - uid: 13919 components: - type: Transform - pos: 42.5,-58.5 + pos: 12.5,-20.5 parent: 2 - - uid: 14108 + - uid: 13920 components: - type: Transform - pos: 23.5,-54.5 + pos: 9.5,-20.5 parent: 2 - - uid: 14109 + - uid: 13921 components: - type: Transform - pos: 21.5,-54.5 + pos: 7.5,-19.5 parent: 2 - - uid: 14110 + - uid: 13922 components: - type: Transform - pos: 20.5,-54.5 + pos: 5.5,-19.5 parent: 2 - - uid: 14111 + - uid: 13923 components: - type: Transform - pos: 19.5,-54.5 + pos: 18.5,-54.5 parent: 2 - - uid: 14112 + - uid: 13924 components: - type: Transform - pos: 18.5,-55.5 + pos: -22.5,-34.5 parent: 2 - - uid: 14113 + - uid: 13925 components: - type: Transform - pos: 18.5,-56.5 + pos: -19.5,-32.5 parent: 2 - - uid: 14114 + - uid: 13926 components: - type: Transform - pos: 18.5,-57.5 + pos: -19.5,-23.5 parent: 2 - - uid: 14115 + - uid: 13927 components: - type: Transform - pos: 18.5,-58.5 + pos: -19.5,-19.5 parent: 2 - - uid: 14116 + - uid: 13929 components: - type: Transform - pos: 19.5,-58.5 + pos: 14.5,-25.5 parent: 2 - - uid: 14117 + - uid: 13930 components: - type: Transform - pos: 20.5,-58.5 + pos: 13.5,-21.5 parent: 2 - - uid: 14118 + - uid: 13931 components: - type: Transform - pos: 21.5,-58.5 + pos: 11.5,-20.5 parent: 2 - - uid: 14119 + - uid: 13932 components: - type: Transform - pos: 15.5,-58.5 + pos: 1.5,-23.5 parent: 2 - - uid: 14120 + - uid: 13933 components: - type: Transform - pos: 23.5,-58.5 + pos: 6.5,-19.5 parent: 2 - - uid: 14121 + - uid: 13934 components: - type: Transform - pos: 25.5,-58.5 + pos: 69.5,28.5 parent: 2 - - uid: 14122 + - uid: 13935 components: - type: Transform - pos: 22.5,-54.5 + pos: 9.5,-29.5 parent: 2 - - uid: 14127 + - uid: 13936 components: - type: Transform - pos: 43.5,-50.5 + pos: -4.5,-17.5 parent: 2 - - uid: 14128 + - uid: 13937 components: - type: Transform - pos: 21.5,-49.5 + pos: -3.5,-21.5 parent: 2 - - uid: 14129 + - uid: 13938 components: - type: Transform - pos: 17.5,-44.5 + pos: 0.5,-17.5 parent: 2 - - uid: 14130 + - uid: 13939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-50.5 + pos: 3.5,-18.5 parent: 2 - - uid: 14131 + - uid: 13940 components: - type: Transform - pos: 17.5,-49.5 + pos: 1.5,-18.5 parent: 2 - - uid: 14132 + - uid: 13941 components: - type: Transform - pos: 18.5,-44.5 + pos: 4.5,-18.5 parent: 2 - - uid: 14133 + - uid: 13942 components: - type: Transform - pos: 19.5,-44.5 + pos: -3.5,-17.5 parent: 2 - - uid: 14134 + - uid: 13943 components: - type: Transform - pos: 20.5,-44.5 + pos: 8.5,-34.5 parent: 2 - - uid: 14135 + - uid: 13944 components: - type: Transform - pos: 21.5,-44.5 + pos: 7.5,-33.5 parent: 2 - - uid: 14136 + - uid: 13945 components: - type: Transform - pos: 22.5,-44.5 + pos: 14.5,-26.5 parent: 2 - - uid: 14137 + - uid: 13946 components: - type: Transform - pos: 23.5,-44.5 + pos: 14.5,-28.5 parent: 2 - - uid: 14138 + - uid: 13947 components: - type: Transform - pos: 21.5,-45.5 + pos: 12.5,-35.5 parent: 2 - - uid: 14139 + - uid: 13948 components: - type: Transform - pos: 17.5,-54.5 + pos: 3.5,-33.5 parent: 2 - - uid: 14140 + - uid: 13949 components: - type: Transform - pos: 37.5,-61.5 + pos: 14.5,-35.5 parent: 2 - - uid: 14141 + - uid: 13950 components: - type: Transform - pos: 21.5,-50.5 + pos: 0.5,-22.5 parent: 2 - - uid: 14142 + - uid: 13951 components: - type: Transform - pos: 27.5,-50.5 + pos: -28.5,-31.5 parent: 2 - - uid: 14143 + - uid: 13952 components: - type: Transform - pos: 17.5,-50.5 + pos: 4.5,-19.5 parent: 2 - - uid: 14144 + - uid: 13953 components: - type: Transform - pos: 14.5,-56.5 + pos: -18.5,-25.5 parent: 2 - - uid: 14145 + - uid: 13954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-50.5 + pos: -23.5,-25.5 parent: 2 - - uid: 14146 + - uid: 13955 components: - type: Transform - pos: 45.5,-54.5 + pos: -28.5,-25.5 parent: 2 - - uid: 14147 + - uid: 13956 components: - type: Transform - pos: 14.5,-54.5 + pos: -28.5,-33.5 parent: 2 - - uid: 14148 + - uid: 13957 components: - type: Transform - pos: 13.5,-54.5 + pos: -28.5,-30.5 parent: 2 - - uid: 14149 + - uid: 13958 components: - type: Transform - pos: 13.5,-53.5 + pos: -22.5,-31.5 parent: 2 - - uid: 14150 + - uid: 13959 components: - type: Transform - pos: 13.5,-52.5 + pos: -14.5,-25.5 parent: 2 - - uid: 14151 + - uid: 13960 components: - type: Transform - pos: 13.5,-51.5 + pos: -23.5,-21.5 parent: 2 - - uid: 14152 + - uid: 13961 components: - type: Transform - pos: 13.5,-50.5 + pos: -14.5,-36.5 parent: 2 - - uid: 14153 + - uid: 13962 components: - type: Transform - pos: 13.5,-49.5 + pos: -11.5,-18.5 parent: 2 - - uid: 14154 + - uid: 13963 components: - type: Transform - pos: 14.5,-48.5 + pos: -22.5,-19.5 parent: 2 - - uid: 14155 + - uid: 13964 components: - type: Transform - pos: 15.5,-48.5 + pos: -14.5,-27.5 parent: 2 - - uid: 14156 + - uid: 13965 components: - type: Transform - pos: 16.5,-48.5 + pos: -4.5,-23.5 parent: 2 - - uid: 14157 + - uid: 13966 components: - type: Transform - pos: 15.5,-57.5 + pos: -28.5,-29.5 parent: 2 - - uid: 14158 + - uid: 13967 components: - type: Transform - pos: 14.5,-57.5 + pos: -28.5,-32.5 parent: 2 - - uid: 14159 + - uid: 13968 components: - type: Transform - pos: 14.5,-55.5 + pos: -0.5,-36.5 parent: 2 - - uid: 14160 + - uid: 13969 components: - type: Transform - pos: 15.5,-60.5 + pos: -10.5,-28.5 parent: 2 - - uid: 14161 + - uid: 13970 components: - type: Transform - pos: 15.5,-61.5 + pos: -32.5,-21.5 parent: 2 - - uid: 14162 + - uid: 13971 components: - type: Transform - pos: 16.5,-61.5 + pos: -24.5,-20.5 parent: 2 - - uid: 14163 + - uid: 13972 components: - type: Transform - pos: 17.5,-61.5 + pos: -5.5,-32.5 parent: 2 - - uid: 14164 + - uid: 13973 components: - type: Transform - pos: 18.5,-61.5 + pos: -4.5,-25.5 parent: 2 - - uid: 14165 + - uid: 13974 components: - type: Transform - pos: 19.5,-61.5 + pos: -21.5,-25.5 parent: 2 - - uid: 14166 + - uid: 13975 components: - type: Transform - pos: 20.5,-61.5 + pos: -22.5,-25.5 parent: 2 - - uid: 14167 + - uid: 13976 components: - type: Transform - pos: 21.5,-61.5 + pos: -18.5,-26.5 parent: 2 - - uid: 14168 + - uid: 13977 components: - type: Transform - pos: 22.5,-61.5 + pos: -10.5,-27.5 parent: 2 - - uid: 14169 + - uid: 13978 components: - type: Transform - pos: 23.5,-61.5 + pos: -14.5,-33.5 parent: 2 - - uid: 14170 + - uid: 13979 components: - type: Transform - pos: 35.5,-62.5 + pos: -14.5,-35.5 parent: 2 - - uid: 14171 + - uid: 13980 components: - type: Transform - pos: 36.5,-62.5 + pos: -14.5,-28.5 parent: 2 - - uid: 14172 + - uid: 13981 components: - type: Transform - pos: 23.5,-62.5 + pos: -12.5,-25.5 parent: 2 - - uid: 14173 + - uid: 13982 components: - type: Transform - pos: 24.5,-62.5 + pos: -28.5,-27.5 parent: 2 - - uid: 14174 + - uid: 13983 components: - type: Transform - pos: 25.5,-62.5 + pos: -11.5,-20.5 parent: 2 - - uid: 14175 + - uid: 13984 components: - type: Transform - pos: 26.5,-62.5 + pos: -17.5,-17.5 parent: 2 - - uid: 14176 + - uid: 13985 components: - type: Transform - pos: 27.5,-62.5 + pos: -28.5,-21.5 parent: 2 - - uid: 14177 + - uid: 13986 components: - type: Transform - pos: 28.5,-62.5 + pos: -32.5,-20.5 parent: 2 - - uid: 14178 + - uid: 13987 components: - type: Transform - pos: 29.5,-62.5 + pos: -3.5,-18.5 parent: 2 - - uid: 14179 + - uid: 13988 components: - type: Transform - pos: 30.5,-62.5 + pos: -15.5,-28.5 parent: 2 - - uid: 14180 + - uid: 13989 components: - type: Transform - pos: 31.5,-62.5 + pos: -16.5,-17.5 parent: 2 - - uid: 14181 + - uid: 13990 components: - type: Transform - pos: 32.5,-62.5 + pos: -10.5,-36.5 parent: 2 - - uid: 14183 + - uid: 13991 components: - type: Transform - pos: 34.5,-62.5 + pos: -22.5,-29.5 parent: 2 - - uid: 14184 + - uid: 13992 components: - type: Transform - pos: 38.5,-61.5 + pos: 8.5,-20.5 parent: 2 - - uid: 14185 + - uid: 13993 components: - type: Transform - pos: 39.5,-61.5 + pos: -25.5,-20.5 parent: 2 - - uid: 14186 + - uid: 13994 components: - type: Transform - pos: 40.5,-61.5 + pos: -15.5,-25.5 parent: 2 - - uid: 14187 + - uid: 13995 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 13996 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 13997 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 13998 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + pos: -14.5,-32.5 + parent: 2 + - uid: 14008 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 14009 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 14010 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 14011 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 2 + - uid: 14012 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 14013 + components: + - type: Transform + pos: -28.5,-17.5 + parent: 2 + - uid: 14014 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 14015 + components: + - type: Transform + pos: -13.5,-25.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: -9.5,-32.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 14024 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 14025 + components: + - type: Transform + pos: -20.5,-25.5 + parent: 2 + - uid: 14026 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 14027 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + pos: -26.5,-18.5 + parent: 2 + - uid: 14029 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: -26.5,-19.5 + parent: 2 + - uid: 14031 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: 44.5,-44.5 + parent: 2 + - uid: 14033 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 14034 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: 37.5,-44.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: 38.5,-44.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: 37.5,-50.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: 38.5,-49.5 + parent: 2 + - uid: 14041 + components: + - type: Transform + pos: 38.5,-50.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: 17.5,-48.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: 36.5,-50.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + pos: 28.5,-50.5 + parent: 2 + - uid: 14045 + components: + - type: Transform + pos: 13.5,-48.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + pos: 39.5,-58.5 + parent: 2 + - uid: 14047 + components: + - type: Transform + pos: 38.5,-45.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + pos: 25.5,-44.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + pos: 24.5,-44.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: 24.5,-45.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: 24.5,-46.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: 24.5,-47.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: 24.5,-48.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: 24.5,-49.5 + parent: 2 + - uid: 14057 + components: + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + pos: 39.5,-44.5 + parent: 2 + - uid: 14059 + components: + - type: Transform + pos: 40.5,-44.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + pos: 41.5,-44.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + pos: 42.5,-44.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + pos: 43.5,-44.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + pos: 44.5,-45.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: 44.5,-46.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + pos: 44.5,-47.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + pos: 44.5,-48.5 + parent: 2 + - uid: 14067 + components: + - type: Transform + pos: 44.5,-49.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: 44.5,-50.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + pos: 36.5,-55.5 + parent: 2 + - uid: 14071 + components: + - type: Transform + pos: 33.5,-54.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: 34.5,-54.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: 36.5,-54.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: 37.5,-58.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: 38.5,-58.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: 40.5,-54.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: 41.5,-54.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + pos: 42.5,-54.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: 28.5,-54.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + pos: 26.5,-54.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: 25.5,-54.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 26.5,-55.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: 26.5,-57.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: 26.5,-58.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: 36.5,-56.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 36.5,-57.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: 36.5,-58.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 29.5,-59.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 31.5,-59.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + pos: 35.5,-59.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 2 + - uid: 14096 + components: + - type: Transform + pos: 34.5,-59.5 + parent: 2 + - uid: 14097 + components: + - type: Transform + pos: 36.5,-59.5 + parent: 2 + - uid: 14098 + components: + - type: Transform + pos: 30.5,-59.5 + parent: 2 + - uid: 14099 + components: + - type: Transform + pos: 28.5,-59.5 + parent: 2 + - uid: 14100 + components: + - type: Transform + pos: 27.5,-59.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: 26.5,-59.5 + parent: 2 + - uid: 14102 + components: + - type: Transform + pos: 40.5,-58.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: 41.5,-58.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: 42.5,-55.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + pos: 42.5,-56.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + pos: 42.5,-57.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + pos: 42.5,-58.5 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: 23.5,-54.5 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: 21.5,-54.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: 20.5,-54.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: 19.5,-54.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: 18.5,-55.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + pos: 18.5,-56.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + pos: 18.5,-57.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + pos: 18.5,-58.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + pos: 19.5,-58.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + pos: 20.5,-58.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + pos: 21.5,-58.5 + parent: 2 + - uid: 14119 + components: + - type: Transform + pos: 15.5,-58.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + pos: 23.5,-58.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + pos: 25.5,-58.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + pos: 22.5,-54.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 14126 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + pos: 43.5,-50.5 + parent: 2 + - uid: 14128 + components: + - type: Transform + pos: 21.5,-49.5 + parent: 2 + - uid: 14129 + components: + - type: Transform + pos: 17.5,-44.5 + parent: 2 + - uid: 14130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-50.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + pos: 17.5,-49.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + pos: 18.5,-44.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + pos: 20.5,-44.5 + parent: 2 + - uid: 14135 + components: + - type: Transform + pos: 21.5,-44.5 + parent: 2 + - uid: 14136 + components: + - type: Transform + pos: 22.5,-44.5 + parent: 2 + - uid: 14137 + components: + - type: Transform + pos: 23.5,-44.5 + parent: 2 + - uid: 14138 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + pos: 17.5,-54.5 + parent: 2 + - uid: 14140 + components: + - type: Transform + pos: 37.5,-61.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + pos: 21.5,-50.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + pos: 17.5,-50.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + pos: 14.5,-56.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-50.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + pos: 45.5,-54.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + pos: 13.5,-52.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + pos: 13.5,-50.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + pos: 14.5,-48.5 + parent: 2 + - uid: 14155 + components: + - type: Transform + pos: 15.5,-48.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + pos: 16.5,-48.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + pos: 14.5,-57.5 + parent: 2 + - uid: 14159 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 + - uid: 14160 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + pos: 15.5,-61.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + pos: 16.5,-61.5 + parent: 2 + - uid: 14163 + components: + - type: Transform + pos: 17.5,-61.5 + parent: 2 + - uid: 14164 + components: + - type: Transform + pos: 18.5,-61.5 + parent: 2 + - uid: 14165 + components: + - type: Transform + pos: 19.5,-61.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + pos: 20.5,-61.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: 22.5,-61.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: 23.5,-61.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: 35.5,-62.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: 36.5,-62.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: 23.5,-62.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: 24.5,-62.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: 25.5,-62.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: 26.5,-62.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: 27.5,-62.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: 28.5,-62.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: 29.5,-62.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: 30.5,-62.5 + parent: 2 + - uid: 14180 + components: + - type: Transform + pos: 31.5,-62.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: 32.5,-62.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 34.5,-62.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + pos: 38.5,-61.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + pos: 39.5,-61.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + pos: 40.5,-61.5 + parent: 2 + - uid: 14187 components: - type: Transform pos: 41.5,-61.5 @@ -136448,7 +136018,7 @@ entities: - uid: 14196 components: - type: Transform - pos: 46.5,-58.5 + pos: 15.5,37.5 parent: 2 - uid: 14197 components: @@ -136463,371 +136033,1375 @@ entities: - uid: 14199 components: - type: Transform - pos: 46.5,-61.5 + pos: 46.5,-61.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + pos: 16.5,37.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: 28.5,-45.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-58.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + pos: 12.5,43.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + pos: 10.5,43.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-45.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-44.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-44.5 + parent: 2 + - uid: 14208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-47.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + pos: 26.5,-56.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + pos: 25.5,52.5 + parent: 2 + - uid: 14212 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 14213 + components: + - type: Transform + pos: 15.5,-54.5 + parent: 2 + - uid: 14214 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: 22.5,39.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: 25.5,50.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + pos: 25.5,51.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + pos: 24.5,53.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: 36.5,63.5 + parent: 2 + - uid: 14234 + components: + - type: Transform + pos: 22.5,53.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: 18.5,51.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: 18.5,53.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: 19.5,53.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: 33.5,47.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 38.5,63.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + pos: 28.5,42.5 + parent: 2 + - uid: 14242 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + pos: 28.5,44.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: 28.5,39.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: 25.5,49.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-47.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: 25.5,48.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + pos: 26.5,40.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: 26.5,42.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-54.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-54.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-54.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-54.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-53.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-52.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-51.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-50.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-49.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-48.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-47.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-47.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-47.5 + parent: 2 + - uid: 14278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 + - uid: 14280 + components: + - type: Transform + pos: 43.5,-54.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: 45.5,-57.5 + parent: 2 + - uid: 14282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,39.5 + parent: 2 + - uid: 14283 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 14287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,56.5 + parent: 2 + - uid: 14290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,54.5 + parent: 2 + - uid: 14291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,55.5 + parent: 2 + - uid: 14292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,56.5 + parent: 2 + - uid: 14293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,57.5 + parent: 2 + - uid: 14294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,57.5 + parent: 2 + - uid: 14295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,57.5 + parent: 2 + - uid: 14296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,57.5 + parent: 2 + - uid: 14297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,57.5 + parent: 2 + - uid: 14298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,57.5 + parent: 2 + - uid: 14299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,57.5 + parent: 2 + - uid: 14300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,57.5 + parent: 2 + - uid: 14301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,57.5 + parent: 2 + - uid: 14302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,55.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,56.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,55.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,55.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,55.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,55.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,54.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,55.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,49.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,50.5 + parent: 2 + - uid: 14314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,51.5 + parent: 2 + - uid: 14315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,54.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,54.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,54.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,54.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,54.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,43.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + pos: 33.5,46.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: 33.5,43.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: 31.5,43.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: 30.5,43.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: 29.5,43.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + pos: 28.5,48.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: 37.5,-62.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: 16.5,48.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,55.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: 9.5,48.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: 9.5,47.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: 9.5,45.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: 9.5,44.5 + parent: 2 + - uid: 14359 + components: + - type: Transform + pos: 9.5,43.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: 25.5,42.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 42.5,70.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 37.5,70.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 43.5,68.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + pos: 42.5,69.5 + parent: 2 + - uid: 14716 + components: + - type: Transform + pos: 38.5,69.5 + parent: 2 + - uid: 14753 + components: + - type: Transform + pos: 36.5,64.5 + parent: 2 + - uid: 14756 + components: + - type: Transform + pos: 18.5,49.5 + parent: 2 + - uid: 14777 + components: + - type: Transform + pos: 35.5,70.5 + parent: 2 + - uid: 14778 + components: + - type: Transform + pos: 34.5,67.5 + parent: 2 + - uid: 14779 + components: + - type: Transform + pos: 35.5,64.5 + parent: 2 + - uid: 14781 + components: + - type: Transform + pos: 13.5,48.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: 17.5,48.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: 14.5,48.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + pos: 38.5,72.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: 42.5,71.5 + parent: 2 + - uid: 14832 + components: + - type: Transform + pos: 38.5,68.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: 36.5,70.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + pos: 38.5,71.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: 34.5,68.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: 34.5,69.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + pos: 35.5,69.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: 42.5,72.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: 43.5,67.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: 38.5,70.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: 43.5,66.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + pos: 42.5,68.5 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 14970 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + pos: 32.5,43.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: 26.5,41.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: 24.5,42.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: 17.5,43.5 + parent: 2 + - uid: 15085 + components: + - type: Transform + pos: 17.5,44.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 15087 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + pos: 12.5,49.5 + parent: 2 + - uid: 15089 + components: + - type: Transform + pos: 12.5,51.5 + parent: 2 + - uid: 15092 + components: + - type: Transform + pos: 13.5,43.5 + parent: 2 + - uid: 15093 + components: + - type: Transform + pos: 33.5,45.5 + parent: 2 + - uid: 15099 + components: + - type: Transform + pos: 22.5,42.5 + parent: 2 + - uid: 15100 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: 12.5,48.5 + parent: 2 + - uid: 15102 + components: + - type: Transform + pos: 11.5,48.5 + parent: 2 + - uid: 15103 + components: + - type: Transform + pos: 10.5,48.5 + parent: 2 + - uid: 15104 + components: + - type: Transform + pos: 14.5,52.5 + parent: 2 + - uid: 15105 + components: + - type: Transform + pos: 15.5,52.5 + parent: 2 + - uid: 15108 + components: + - type: Transform + pos: 16.5,52.5 + parent: 2 + - uid: 15115 + components: + - type: Transform + pos: 17.5,52.5 + parent: 2 + - uid: 15116 + components: + - type: Transform + pos: 18.5,50.5 + parent: 2 + - uid: 15160 + components: + - type: Transform + pos: 18.5,48.5 + parent: 2 + - uid: 15223 + components: + - type: Transform + pos: 19.5,48.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: 17.5,47.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: 18.5,52.5 + parent: 2 + - uid: 15230 + components: + - type: Transform + pos: 13.5,52.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: 33.5,49.5 + parent: 2 + - uid: 15232 + components: + - type: Transform + pos: 28.5,47.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + pos: 34.5,64.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + pos: 28.5,49.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: 28.5,50.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: 30.5,50.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 15274 + components: + - type: Transform + pos: 34.5,65.5 + parent: 2 + - uid: 15281 + components: + - type: Transform + pos: 34.5,66.5 + parent: 2 + - uid: 15282 + components: + - type: Transform + pos: 43.5,65.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: 43.5,64.5 + parent: 2 + - uid: 15284 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + pos: 39.5,63.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + pos: 39.5,62.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: 40.5,62.5 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: 41.5,62.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + pos: 42.5,62.5 + parent: 2 + - uid: 15297 + components: + - type: Transform + pos: 43.5,62.5 + parent: 2 + - uid: 15298 + components: + - type: Transform + pos: 43.5,63.5 + parent: 2 + - uid: 15299 + components: + - type: Transform + pos: 29.5,42.5 + parent: 2 + - uid: 15300 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 15301 + components: + - type: Transform + pos: 29.5,39.5 + parent: 2 + - uid: 15302 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + pos: 13.5,51.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + pos: 31.5,42.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: 30.5,41.5 + parent: 2 + - uid: 15310 + components: + - type: Transform + pos: -8.5,54.5 parent: 2 - - uid: 14201 + - uid: 15311 components: - type: Transform - pos: 28.5,-45.5 + pos: 4.5,43.5 parent: 2 - - uid: 14202 + - uid: 15312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-58.5 + pos: -9.5,50.5 parent: 2 - - uid: 14205 + - uid: 15313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-45.5 + pos: -8.5,50.5 parent: 2 - - uid: 14206 + - uid: 15314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-44.5 + pos: -9.5,49.5 parent: 2 - - uid: 14207 + - uid: 15315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-44.5 + pos: -10.5,48.5 parent: 2 - - uid: 14208 + - uid: 15316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-46.5 + pos: -10.5,47.5 parent: 2 - - uid: 14209 + - uid: 15317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-47.5 + pos: -10.5,46.5 parent: 2 - - uid: 14210 + - uid: 15318 components: - type: Transform - pos: 26.5,-56.5 + pos: -10.5,45.5 parent: 2 - - uid: 14213 + - uid: 15319 components: - type: Transform - pos: 15.5,-54.5 + pos: -11.5,44.5 parent: 2 - - uid: 14247 + - uid: 15374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-47.5 + pos: -10.5,44.5 parent: 2 - - uid: 14265 + - uid: 15375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-54.5 + pos: 32.5,-60.5 parent: 2 - - uid: 14266 + - uid: 15376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-54.5 + pos: -9.5,44.5 parent: 2 - - uid: 14267 + - uid: 15377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-54.5 + pos: 3.5,43.5 parent: 2 - - uid: 14268 + - uid: 15378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-54.5 + pos: -8.5,39.5 parent: 2 - - uid: 14269 + - uid: 15379 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-53.5 + pos: -12.5,44.5 parent: 2 - - uid: 14270 + - uid: 15381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-52.5 + pos: -13.5,44.5 parent: 2 - - uid: 14271 + - uid: 15382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-51.5 + pos: -13.5,43.5 parent: 2 - - uid: 14272 + - uid: 15383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-50.5 + pos: -13.5,42.5 parent: 2 - - uid: 14273 + - uid: 15384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-49.5 + pos: -13.5,41.5 parent: 2 - - uid: 14274 + - uid: 15385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-48.5 + pos: -13.5,40.5 parent: 2 - - uid: 14275 + - uid: 15386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-47.5 + pos: -12.5,40.5 parent: 2 - - uid: 14276 + - uid: 15387 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-47.5 + pos: -12.5,39.5 parent: 2 - - uid: 14277 + - uid: 15389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-47.5 + pos: -7.5,39.5 parent: 2 - - uid: 14278 + - uid: 15390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-47.5 + pos: -2.5,39.5 parent: 2 - - uid: 14280 + - uid: 15393 components: - type: Transform - pos: 43.5,-54.5 + pos: -1.5,39.5 parent: 2 - - uid: 14281 + - uid: 15394 components: - type: Transform - pos: 45.5,-57.5 + pos: 6.5,49.5 parent: 2 - - uid: 14282 + - uid: 15395 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,39.5 + pos: 6.5,48.5 parent: 2 - - uid: 14287 + - uid: 15396 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,56.5 + pos: 6.5,47.5 parent: 2 - - uid: 14290 + - uid: 15397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,54.5 + pos: 6.5,46.5 parent: 2 - - uid: 14291 + - uid: 15398 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,55.5 + pos: 6.5,45.5 parent: 2 - - uid: 14292 + - uid: 15399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,56.5 + pos: 6.5,44.5 parent: 2 - - uid: 14293 + - uid: 15400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,57.5 + pos: 6.5,43.5 parent: 2 - - uid: 14294 + - uid: 15401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,57.5 + pos: 2.5,43.5 parent: 2 - - uid: 14295 + - uid: 15402 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,57.5 + pos: -1.5,43.5 parent: 2 - - uid: 14296 + - uid: 15403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,57.5 + pos: -8.5,44.5 parent: 2 - - uid: 14297 + - uid: 15404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,57.5 + pos: -14.5,49.5 parent: 2 - - uid: 14298 + - uid: 15405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,57.5 + pos: -13.5,53.5 parent: 2 - - uid: 14299 + - uid: 15406 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,57.5 + pos: -9.5,48.5 parent: 2 - - uid: 14300 + - uid: 15407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,57.5 + pos: -1.5,44.5 parent: 2 - - uid: 14301 + - uid: 15408 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,57.5 + pos: -8.5,48.5 parent: 2 - - uid: 14302 + - uid: 15409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,55.5 + pos: -7.5,48.5 parent: 2 - - uid: 14303 + - uid: 15410 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,56.5 + pos: -9.5,54.5 parent: 2 - - uid: 14304 + - uid: 15411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,55.5 + pos: -10.5,54.5 parent: 2 - - uid: 14305 + - uid: 15412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,55.5 + pos: -11.5,54.5 parent: 2 - - uid: 14306 + - uid: 15413 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,55.5 + pos: -12.5,54.5 parent: 2 - - uid: 14307 + - uid: 15414 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,55.5 + pos: -13.5,54.5 parent: 2 - - uid: 14308 + - uid: 15415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,54.5 + pos: -14.5,52.5 parent: 2 - - uid: 14309 + - uid: 15416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,53.5 + pos: -13.5,52.5 parent: 2 - - uid: 14310 + - uid: 15417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,55.5 + pos: -14.5,51.5 parent: 2 - - uid: 14312 + - uid: 15418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,49.5 + pos: -14.5,50.5 parent: 2 - - uid: 14313 + - uid: 15419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,50.5 + pos: -10.5,50.5 parent: 2 - - uid: 14314 + - uid: 15420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,51.5 + pos: -11.5,50.5 parent: 2 - - uid: 14315 + - uid: 15421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,54.5 + pos: -12.5,50.5 parent: 2 - - uid: 14316 + - uid: 15422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,54.5 + pos: -13.5,50.5 parent: 2 - - uid: 14317 + - uid: 15423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,54.5 + pos: -15.5,49.5 parent: 2 - - uid: 14318 + - uid: 15424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,54.5 + pos: -16.5,49.5 parent: 2 - - uid: 14319 + - uid: 15425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,54.5 + pos: -16.5,48.5 parent: 2 - - uid: 14321 + - uid: 15428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,43.5 + pos: -16.5,47.5 parent: 2 - - uid: 14346 + - uid: 15429 components: - type: Transform - pos: 37.5,-62.5 + pos: -16.5,46.5 parent: 2 - - uid: 14348 + - uid: 15430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,55.5 + pos: -16.5,45.5 parent: 2 - - uid: 14359 + - uid: 15431 components: - type: Transform - pos: 7.5,47.5 + pos: -16.5,44.5 parent: 2 - - uid: 15375 + - uid: 15432 components: - type: Transform - pos: 32.5,-60.5 + pos: -14.5,44.5 parent: 2 - uid: 15469 components: @@ -138101,736 +138675,11 @@ entities: parent: 2 - proto: WallRiveted entities: - - uid: 13859 - components: - - type: Transform - pos: 17.5,37.5 - parent: 2 - - uid: 13860 - components: - - type: Transform - pos: 15.5,37.5 - parent: 2 - - uid: 13861 - components: - - type: Transform - pos: 16.5,37.5 - parent: 2 - - uid: 13867 - components: - - type: Transform - pos: 12.5,43.5 - parent: 2 - - uid: 13868 - components: - - type: Transform - pos: 10.5,43.5 - parent: 2 - - uid: 13872 - components: - - type: Transform - pos: 25.5,52.5 - parent: 2 - - uid: 13873 - components: - - type: Transform - pos: 22.5,41.5 - parent: 2 - - uid: 13874 - components: - - type: Transform - pos: 25.5,53.5 - parent: 2 - - uid: 13875 - components: - - type: Transform - pos: 22.5,39.5 - parent: 2 - - uid: 13876 - components: - - type: Transform - pos: 25.5,50.5 - parent: 2 - - uid: 13877 - components: - - type: Transform - pos: 25.5,51.5 - parent: 2 - - uid: 13878 - components: - - type: Transform - pos: 23.5,53.5 - parent: 2 - - uid: 13880 - components: - - type: Transform - pos: 24.5,53.5 - parent: 2 - - uid: 13881 - components: - - type: Transform - pos: 36.5,63.5 - parent: 2 - - uid: 13882 - components: - - type: Transform - pos: 22.5,53.5 - parent: 2 - - uid: 13883 - components: - - type: Transform - pos: 18.5,51.5 - parent: 2 - - uid: 13884 - components: - - type: Transform - pos: 18.5,53.5 - parent: 2 - - uid: 13885 - components: - - type: Transform - pos: 19.5,53.5 - parent: 2 - - uid: 13886 - components: - - type: Transform - pos: 33.5,48.5 - parent: 2 - - uid: 13887 - components: - - type: Transform - pos: 33.5,47.5 - parent: 2 - - uid: 13930 - components: - - type: Transform - pos: 38.5,63.5 - parent: 2 - - uid: 13931 - components: - - type: Transform - pos: 28.5,42.5 - parent: 2 - - uid: 13950 - components: - - type: Transform - pos: 28.5,43.5 - parent: 2 - - uid: 13974 - components: - - type: Transform - pos: 28.5,44.5 - parent: 2 - - uid: 13994 - components: - - type: Transform - pos: 28.5,39.5 - parent: 2 - - uid: 13995 - components: - - type: Transform - pos: 23.5,42.5 - parent: 2 - - uid: 13996 - components: - - type: Transform - pos: 25.5,49.5 - parent: 2 - - uid: 13997 - components: - - type: Transform - pos: 25.5,48.5 - parent: 2 - - uid: 14009 - components: - - type: Transform - pos: 26.5,40.5 - parent: 2 - - uid: 14019 - components: - - type: Transform - pos: 21.5,38.5 - parent: 2 - - uid: 14025 - components: - - type: Transform - pos: 22.5,38.5 - parent: 2 - - uid: 14026 - components: - - type: Transform - pos: 26.5,42.5 - parent: 2 - - uid: 14027 - components: - - type: Transform - pos: 13.5,39.5 - parent: 2 - - uid: 14031 - components: - - type: Transform - pos: 15.5,39.5 - parent: 2 - - uid: 14033 - components: - - type: Transform - pos: 14.5,39.5 - parent: 2 - - uid: 14094 - components: - - type: Transform - pos: 16.5,39.5 - parent: 2 - - uid: 14123 - components: - - type: Transform - pos: 21.5,53.5 - parent: 2 - - uid: 14124 - components: - - type: Transform - pos: 17.5,38.5 - parent: 2 - - uid: 14125 - components: - - type: Transform - pos: 33.5,46.5 - parent: 2 - - uid: 14126 - components: - - type: Transform - pos: 33.5,43.5 - parent: 2 - - uid: 14200 - components: - - type: Transform - pos: 33.5,44.5 - parent: 2 - - uid: 14203 - components: - - type: Transform - pos: 31.5,43.5 - parent: 2 - - uid: 14204 - components: - - type: Transform - pos: 30.5,43.5 - parent: 2 - - uid: 14214 - components: - - type: Transform - pos: 29.5,43.5 - parent: 2 - - uid: 14215 - components: - - type: Transform - pos: 26.5,38.5 - parent: 2 - - uid: 14216 - components: - - type: Transform - pos: 22.5,44.5 - parent: 2 - - uid: 14217 - components: - - type: Transform - pos: 28.5,48.5 - parent: 2 - - uid: 14218 - components: - - type: Transform - pos: 16.5,48.5 - parent: 2 - - uid: 14232 - components: - - type: Transform - pos: 17.5,39.5 - parent: 2 - - uid: 14252 - components: - - type: Transform - pos: 9.5,48.5 - parent: 2 - - uid: 14253 - components: - - type: Transform - pos: 9.5,47.5 - parent: 2 - - uid: 14254 - components: - - type: Transform - pos: 9.5,45.5 - parent: 2 - uid: 14255 components: - type: Transform pos: 9.5,46.5 parent: 2 - - uid: 14256 - components: - - type: Transform - pos: 9.5,44.5 - parent: 2 - - uid: 14257 - components: - - type: Transform - pos: 9.5,43.5 - parent: 2 - - uid: 14331 - components: - - type: Transform - pos: 21.5,48.5 - parent: 2 - - uid: 14332 - components: - - type: Transform - pos: 25.5,42.5 - parent: 2 - - uid: 14338 - components: - - type: Transform - pos: 42.5,70.5 - parent: 2 - - uid: 14339 - components: - - type: Transform - pos: 37.5,70.5 - parent: 2 - - uid: 14340 - components: - - type: Transform - pos: 43.5,68.5 - parent: 2 - - uid: 14341 - components: - - type: Transform - pos: 42.5,69.5 - parent: 2 - - uid: 14342 - components: - - type: Transform - pos: 38.5,69.5 - parent: 2 - - uid: 14343 - components: - - type: Transform - pos: 36.5,64.5 - parent: 2 - - uid: 14344 - components: - - type: Transform - pos: 18.5,49.5 - parent: 2 - - uid: 14345 - components: - - type: Transform - pos: 35.5,70.5 - parent: 2 - - uid: 14347 - components: - - type: Transform - pos: 34.5,67.5 - parent: 2 - - uid: 14349 - components: - - type: Transform - pos: 35.5,64.5 - parent: 2 - - uid: 14350 - components: - - type: Transform - pos: 13.5,48.5 - parent: 2 - - uid: 14351 - components: - - type: Transform - pos: 17.5,48.5 - parent: 2 - - uid: 14352 - components: - - type: Transform - pos: 14.5,48.5 - parent: 2 - - uid: 14353 - components: - - type: Transform - pos: 38.5,72.5 - parent: 2 - - uid: 14398 - components: - - type: Transform - pos: 42.5,71.5 - parent: 2 - - uid: 14400 - components: - - type: Transform - pos: 38.5,68.5 - parent: 2 - - uid: 14401 - components: - - type: Transform - pos: 36.5,70.5 - parent: 2 - - uid: 14406 - components: - - type: Transform - pos: 38.5,71.5 - parent: 2 - - uid: 14407 - components: - - type: Transform - pos: 34.5,68.5 - parent: 2 - - uid: 14715 - components: - - type: Transform - pos: 34.5,69.5 - parent: 2 - - uid: 14716 - components: - - type: Transform - pos: 35.5,69.5 - parent: 2 - - uid: 14753 - components: - - type: Transform - pos: 42.5,72.5 - parent: 2 - - uid: 14756 - components: - - type: Transform - pos: 43.5,67.5 - parent: 2 - - uid: 14777 - components: - - type: Transform - pos: 38.5,70.5 - parent: 2 - - uid: 14778 - components: - - type: Transform - pos: 43.5,66.5 - parent: 2 - - uid: 14779 - components: - - type: Transform - pos: 42.5,68.5 - parent: 2 - - uid: 14781 - components: - - type: Transform - pos: 18.5,38.5 - parent: 2 - - uid: 14926 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - - uid: 15115 - components: - - type: Transform - pos: 20.5,38.5 - parent: 2 - - uid: 15116 - components: - - type: Transform - pos: 26.5,39.5 - parent: 2 - - uid: 15160 - components: - - type: Transform - pos: 32.5,43.5 - parent: 2 - - uid: 15223 - components: - - type: Transform - pos: 26.5,41.5 - parent: 2 - - uid: 15228 - components: - - type: Transform - pos: 24.5,42.5 - parent: 2 - - uid: 15229 - components: - - type: Transform - pos: 17.5,43.5 - parent: 2 - - uid: 15230 - components: - - type: Transform - pos: 17.5,44.5 - parent: 2 - - uid: 15231 - components: - - type: Transform - pos: 17.5,41.5 - parent: 2 - - uid: 15232 - components: - - type: Transform - pos: 17.5,42.5 - parent: 2 - - uid: 15233 - components: - - type: Transform - pos: 12.5,49.5 - parent: 2 - - uid: 15235 - components: - - type: Transform - pos: 12.5,51.5 - parent: 2 - - uid: 15250 - components: - - type: Transform - pos: 13.5,43.5 - parent: 2 - - uid: 15253 - components: - - type: Transform - pos: 33.5,45.5 - parent: 2 - - uid: 15262 - components: - - type: Transform - pos: 22.5,42.5 - parent: 2 - - uid: 15263 - components: - - type: Transform - pos: 22.5,43.5 - parent: 2 - - uid: 15272 - components: - - type: Transform - pos: 12.5,48.5 - parent: 2 - - uid: 15273 - components: - - type: Transform - pos: 11.5,48.5 - parent: 2 - - uid: 15274 - components: - - type: Transform - pos: 10.5,48.5 - parent: 2 - - uid: 15281 - components: - - type: Transform - pos: 14.5,52.5 - parent: 2 - - uid: 15282 - components: - - type: Transform - pos: 15.5,52.5 - parent: 2 - - uid: 15283 - components: - - type: Transform - pos: 16.5,52.5 - parent: 2 - - uid: 15284 - components: - - type: Transform - pos: 17.5,52.5 - parent: 2 - - uid: 15288 - components: - - type: Transform - pos: 18.5,50.5 - parent: 2 - - uid: 15289 - components: - - type: Transform - pos: 18.5,48.5 - parent: 2 - - uid: 15290 - components: - - type: Transform - pos: 19.5,48.5 - parent: 2 - - uid: 15291 - components: - - type: Transform - pos: 17.5,47.5 - parent: 2 - - uid: 15292 - components: - - type: Transform - pos: 18.5,52.5 - parent: 2 - - uid: 15297 - components: - - type: Transform - pos: 13.5,52.5 - parent: 2 - - uid: 15298 - components: - - type: Transform - pos: 33.5,49.5 - parent: 2 - - uid: 15299 - components: - - type: Transform - pos: 28.5,47.5 - parent: 2 - - uid: 15300 - components: - - type: Transform - pos: 34.5,64.5 - parent: 2 - - uid: 15301 - components: - - type: Transform - pos: 28.5,49.5 - parent: 2 - - uid: 15302 - components: - - type: Transform - pos: 28.5,50.5 - parent: 2 - - uid: 15303 - components: - - type: Transform - pos: 29.5,50.5 - parent: 2 - - uid: 15304 - components: - - type: Transform - pos: 30.5,50.5 - parent: 2 - - uid: 15305 - components: - - type: Transform - pos: 31.5,50.5 - parent: 2 - - uid: 15306 - components: - - type: Transform - pos: 32.5,50.5 - parent: 2 - - uid: 15307 - components: - - type: Transform - pos: 33.5,50.5 - parent: 2 - - uid: 15308 - components: - - type: Transform - pos: 34.5,65.5 - parent: 2 - - uid: 15309 - components: - - type: Transform - pos: 34.5,66.5 - parent: 2 - - uid: 15310 - components: - - type: Transform - pos: 43.5,65.5 - parent: 2 - - uid: 15311 - components: - - type: Transform - pos: 43.5,64.5 - parent: 2 - - uid: 15312 - components: - - type: Transform - pos: 17.5,40.5 - parent: 2 - - uid: 15313 - components: - - type: Transform - pos: 39.5,63.5 - parent: 2 - - uid: 15314 - components: - - type: Transform - pos: 39.5,62.5 - parent: 2 - - uid: 15315 - components: - - type: Transform - pos: 40.5,62.5 - parent: 2 - - uid: 15316 - components: - - type: Transform - pos: 41.5,62.5 - parent: 2 - - uid: 15317 - components: - - type: Transform - pos: 42.5,62.5 - parent: 2 - - uid: 15318 - components: - - type: Transform - pos: 43.5,62.5 - parent: 2 - - uid: 15319 - components: - - type: Transform - pos: 43.5,63.5 - parent: 2 - - uid: 15374 - components: - - type: Transform - pos: 29.5,42.5 - parent: 2 - - uid: 15376 - components: - - type: Transform - pos: 29.5,41.5 - parent: 2 - - uid: 15377 - components: - - type: Transform - pos: 29.5,39.5 - parent: 2 - - uid: 15378 - components: - - type: Transform - pos: 29.5,40.5 - parent: 2 - - uid: 15379 - components: - - type: Transform - pos: 27.5,39.5 - parent: 2 - - uid: 15434 - components: - - type: Transform - pos: 11.5,51.5 - parent: 2 - - uid: 15435 - components: - - type: Transform - pos: 9.5,49.5 - parent: 2 - - uid: 15460 - components: - - type: Transform - pos: 13.5,51.5 - parent: 2 - - uid: 15487 - components: - - type: Transform - pos: 31.5,41.5 - parent: 2 - - uid: 15488 - components: - - type: Transform - pos: 31.5,42.5 - parent: 2 - - uid: 17172 - components: - - type: Transform - pos: 30.5,41.5 - parent: 2 - proto: WallRock entities: - uid: 14360 @@ -139000,221 +138849,16 @@ entities: parent: 2 - proto: WallSandCobblebrick entities: - - uid: 13888 - components: - - type: Transform - pos: -8.5,54.5 - parent: 2 - - uid: 14333 - components: - - type: Transform - pos: 4.5,43.5 - parent: 2 - - uid: 14806 - components: - - type: Transform - pos: -9.5,50.5 - parent: 2 - - uid: 14807 - components: - - type: Transform - pos: -8.5,50.5 - parent: 2 - - uid: 14832 - components: - - type: Transform - pos: -9.5,49.5 - parent: 2 - - uid: 14839 - components: - - type: Transform - pos: -10.5,48.5 - parent: 2 - - uid: 14854 - components: - - type: Transform - pos: -10.5,47.5 - parent: 2 - - uid: 14902 - components: - - type: Transform - pos: -10.5,46.5 - parent: 2 - - uid: 14903 - components: - - type: Transform - pos: -10.5,45.5 - parent: 2 - - uid: 14904 - components: - - type: Transform - pos: -11.5,44.5 - parent: 2 - - uid: 14905 - components: - - type: Transform - pos: -10.5,44.5 - parent: 2 - - uid: 14906 - components: - - type: Transform - pos: -9.5,44.5 - parent: 2 - - uid: 14927 - components: - - type: Transform - pos: 3.5,43.5 - parent: 2 - uid: 14953 components: - type: Transform pos: -8.5,43.5 parent: 2 - - uid: 14954 - components: - - type: Transform - pos: -8.5,39.5 - parent: 2 - - uid: 14955 - components: - - type: Transform - pos: -12.5,44.5 - parent: 2 - - uid: 14956 - components: - - type: Transform - pos: -13.5,44.5 - parent: 2 - - uid: 14969 - components: - - type: Transform - pos: -13.5,43.5 - parent: 2 - - uid: 14970 - components: - - type: Transform - pos: -13.5,42.5 - parent: 2 - - uid: 14973 - components: - - type: Transform - pos: -13.5,41.5 - parent: 2 - - uid: 14974 - components: - - type: Transform - pos: -13.5,40.5 - parent: 2 - - uid: 14978 - components: - - type: Transform - pos: -12.5,40.5 - parent: 2 - - uid: 14979 - components: - - type: Transform - pos: -12.5,39.5 - parent: 2 - - uid: 15085 - components: - - type: Transform - pos: -7.5,39.5 - parent: 2 - - uid: 15086 - components: - - type: Transform - pos: -2.5,39.5 - parent: 2 - - uid: 15087 - components: - - type: Transform - pos: -1.5,39.5 - parent: 2 - - uid: 15092 - components: - - type: Transform - pos: 6.5,49.5 - parent: 2 - - uid: 15093 - components: - - type: Transform - pos: 6.5,48.5 - parent: 2 - - uid: 15099 - components: - - type: Transform - pos: 6.5,47.5 - parent: 2 - - uid: 15100 - components: - - type: Transform - pos: 6.5,46.5 - parent: 2 - - uid: 15101 - components: - - type: Transform - pos: 6.5,45.5 - parent: 2 - - uid: 15102 - components: - - type: Transform - pos: 6.5,44.5 - parent: 2 - - uid: 15103 - components: - - type: Transform - pos: 6.5,43.5 - parent: 2 - - uid: 15104 - components: - - type: Transform - pos: 2.5,43.5 - parent: 2 - - uid: 15105 - components: - - type: Transform - pos: -1.5,43.5 - parent: 2 - - uid: 15108 - components: - - type: Transform - pos: -8.5,44.5 - parent: 2 - - uid: 15384 - components: - - type: Transform - pos: -14.5,49.5 - parent: 2 - - uid: 15385 - components: - - type: Transform - pos: -13.5,53.5 - parent: 2 - - uid: 15386 - components: - - type: Transform - pos: -9.5,48.5 - parent: 2 - - uid: 15387 - components: - - type: Transform - pos: -1.5,44.5 - parent: 2 - uid: 15388 components: - type: Transform pos: -1.5,47.5 parent: 2 - - uid: 15389 - components: - - type: Transform - pos: -8.5,48.5 - parent: 2 - - uid: 15390 - components: - - type: Transform - pos: -7.5,48.5 - parent: 2 - uid: 15391 components: - type: Transform @@ -139225,111 +138869,6 @@ entities: - type: Transform pos: -2.5,48.5 parent: 2 - - uid: 15402 - components: - - type: Transform - pos: -9.5,54.5 - parent: 2 - - uid: 15403 - components: - - type: Transform - pos: -10.5,54.5 - parent: 2 - - uid: 15404 - components: - - type: Transform - pos: -11.5,54.5 - parent: 2 - - uid: 15405 - components: - - type: Transform - pos: -12.5,54.5 - parent: 2 - - uid: 15406 - components: - - type: Transform - pos: -13.5,54.5 - parent: 2 - - uid: 15407 - components: - - type: Transform - pos: -14.5,52.5 - parent: 2 - - uid: 15408 - components: - - type: Transform - pos: -13.5,52.5 - parent: 2 - - uid: 15409 - components: - - type: Transform - pos: -14.5,51.5 - parent: 2 - - uid: 15410 - components: - - type: Transform - pos: -14.5,50.5 - parent: 2 - - uid: 15412 - components: - - type: Transform - pos: -10.5,50.5 - parent: 2 - - uid: 15413 - components: - - type: Transform - pos: -11.5,50.5 - parent: 2 - - uid: 15414 - components: - - type: Transform - pos: -12.5,50.5 - parent: 2 - - uid: 15415 - components: - - type: Transform - pos: -13.5,50.5 - parent: 2 - - uid: 15416 - components: - - type: Transform - pos: -15.5,49.5 - parent: 2 - - uid: 15417 - components: - - type: Transform - pos: -16.5,49.5 - parent: 2 - - uid: 15418 - components: - - type: Transform - pos: -16.5,48.5 - parent: 2 - - uid: 15419 - components: - - type: Transform - pos: -16.5,47.5 - parent: 2 - - uid: 15420 - components: - - type: Transform - pos: -16.5,46.5 - parent: 2 - - uid: 15421 - components: - - type: Transform - pos: -16.5,45.5 - parent: 2 - - uid: 15422 - components: - - type: Transform - pos: -16.5,44.5 - parent: 2 - - uid: 15423 - components: - - type: Transform - pos: -14.5,44.5 - parent: 2 - uid: 15433 components: - type: Transform @@ -140259,6 +139798,156 @@ entities: parent: 15534 - proto: WallSolid entities: + - uid: 13410 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 13411 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 13455 + components: + - type: Transform + pos: 45.5,19.5 + parent: 2 + - uid: 13456 + components: + - type: Transform + pos: 45.5,18.5 + parent: 2 + - uid: 13457 + components: + - type: Transform + pos: 45.5,24.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: 48.5,24.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: 49.5,24.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: 50.5,24.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 + - uid: 13465 + components: + - type: Transform + pos: 50.5,23.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: 50.5,20.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + pos: 50.5,21.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: 46.5,18.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: 51.5,24.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + pos: 52.5,23.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + pos: 52.5,19.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + pos: 52.5,20.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + pos: 52.5,21.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + pos: 52.5,22.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + pos: 11.5,53.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + pos: 7.5,47.5 + parent: 2 - uid: 14393 components: - type: Transform @@ -140998,6 +140687,16 @@ entities: - type: Transform pos: 55.5,-0.5 parent: 2 + - uid: 15304 + components: + - type: Transform + pos: 11.5,51.5 + parent: 2 + - uid: 15305 + components: + - type: Transform + pos: 9.5,49.5 + parent: 2 - uid: 15570 components: - type: Transform @@ -142005,20 +141704,38 @@ entities: - type: Transform pos: 16.5,-45.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: - - 3808 - - 3809 - - 3804 - - 3806 - - 3807 - - 3810 - - 3803 - 3805 + - 3803 + - 3810 + - 3807 + - 3806 + - 3804 + - 3809 + - 3808 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -143235,18 +142952,6 @@ entities: - type: Transform pos: 51.5,0.5 parent: 2 - - uid: 14917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-45.5 - parent: 2 - - uid: 14918 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-47.5 - parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 5316 @@ -143271,6 +142976,18 @@ entities: - type: Transform pos: -3.5,-25.5 parent: 2 + - uid: 14917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-47.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 - uid: 14919 components: - type: Transform diff --git a/Resources/Maps/corvax_pilgrim.yml b/Resources/Maps/corvax_pilgrim.yml index fa0a4f805ae..f1b4be3603d 100644 --- a/Resources/Maps/corvax_pilgrim.yml +++ b/Resources/Maps/corvax_pilgrim.yml @@ -6577,6 +6577,41 @@ entities: id: FullTileOverlayGreyscale decals: 1619: -52,-12 + - node: + cleanable: True + zIndex: 10 + color: '#00000033' + id: Grassa1 + decals: + 18687: -50.19651,-17.01407 + - node: + cleanable: True + zIndex: 10 + color: '#00000033' + id: Grassa3 + decals: + 18686: -50.285683,-17.133001 + - node: + cleanable: True + zIndex: 10 + color: '#00000033' + id: Grassa4 + decals: + 18684: -50.077614,-17.281662 + - node: + cleanable: True + zIndex: 10 + color: '#00000033' + id: Grassa5 + decals: + 18683: -50.33027,-17.118134 + - node: + cleanable: True + zIndex: 10 + color: '#00000033' + id: Grassb1 + decals: + 18685: -50.211372,-16.865408 - node: cleanable: True zIndex: 5 @@ -23234,7 +23269,8 @@ entities: -9,-9: 0: 64733 -13,-4: - 0: 47895 + 0: 47383 + 5: 512 -12,-3: 0: 4095 -13,-3: @@ -23418,7 +23454,7 @@ entities: 0: 48035 1,8: 0: 32955 - 5: 8192 + 6: 8192 2,5: 0: 41915 2,6: @@ -23595,7 +23631,7 @@ entities: -1,9: 0: 32631 0,10: - 5: 16 + 6: 16 0: 64704 0,11: 0: 65535 @@ -23605,7 +23641,7 @@ entities: 0: 65535 1,9: 0: 61576 - 5: 34 + 6: 34 1,10: 0: 30576 1,11: @@ -23615,26 +23651,26 @@ entities: 2,9: 0: 61631 2,10: - 5: 4368 - 6: 3264 + 6: 4368 + 7: 3264 2,11: - 5: 4369 - 7: 204 - 8: 49152 + 6: 4369 + 8: 204 + 9: 49152 2,12: - 5: 4369 - 8: 52236 + 6: 4369 + 9: 52236 3,9: 0: 29303 3,10: - 6: 272 + 7: 272 0: 17476 3,11: - 7: 17 - 8: 4096 + 8: 17 + 9: 4096 0: 52420 3,12: - 8: 4353 + 9: 4353 0: 52424 4,8: 0: 32625 @@ -23688,11 +23724,11 @@ entities: 0: 32764 -8,11: 0: 2254 - 5: 12544 + 6: 12544 -9,11: - 5: 40816 + 6: 40816 -8,12: - 5: 12835 + 6: 12835 0: 35968 -7,9: 0: 1919 @@ -23723,33 +23759,33 @@ entities: -13,10: 0: 16375 -12,11: - 5: 53104 + 6: 53104 -13,11: - 5: 60416 + 6: 60416 0: 19 -12,12: - 5: 35254 + 6: 35254 0: 8 -11,9: 0: 65484 -11,10: 0: 32752 -11,11: - 5: 24432 + 6: 24432 -11,12: - 5: 52419 + 6: 52419 0: 12 -10,9: 0: 61416 -10,10: 0: 32752 -10,11: - 5: 57200 + 6: 57200 -10,12: 0: 9 - 5: 39318 + 6: 39318 -9,12: - 5: 35939 + 6: 35939 5,4: 0: 40759 5,5: @@ -23941,19 +23977,19 @@ entities: 6,12: 0: 4369 6,11: - 5: 49152 + 6: 49152 7,11: - 5: 63896 + 6: 63896 7,9: 0: 61156 7,10: - 5: 59520 + 6: 59520 7,12: - 5: 4369 + 6: 4369 8,8: 0: 65527 8,10: - 5: 61440 + 6: 61440 9,-4: 0: 61695 9,-3: @@ -24020,10 +24056,10 @@ entities: 0: 65535 12,0: 0: 4403 - 5: 25800 + 6: 25800 12,1: 0: 12561 - 5: 2 + 6: 2 12,2: 0: 65527 12,3: @@ -24103,23 +24139,23 @@ entities: 9,7: 0: 4095 9,8: - 5: 36590 + 6: 36590 10,5: 0: 52701 10,6: 0: 24029 10,7: 0: 341 - 5: 49160 + 6: 49160 11,5: 0: 65535 11,6: 0: 7 - 5: 4368 + 6: 4368 11,7: - 5: 4369 + 6: 4369 11,8: - 5: 273 + 6: 273 12,4: 0: 65535 12,5: @@ -24127,11 +24163,11 @@ entities: 8,9: 0: 61156 9,10: - 5: 63902 + 6: 63902 10,8: - 5: 3840 + 6: 3840 9,9: - 5: 34952 + 6: 34952 12,-2: 0: 61166 12,-1: @@ -24154,39 +24190,39 @@ entities: 0: 6131 14,-5: 0: 4983 - 5: 58368 + 6: 58368 13,-11: 0: 13073 13,-10: 0: 28979 - 5: 1728 + 6: 1728 13,-9: 0: 65527 13,-8: 0: 65535 14,-10: - 5: 9712 + 6: 9712 0: 20480 14,-9: 0: 21845 - 5: 10786 + 6: 10786 14,-8: 0: 85 - 5: 61986 + 6: 61986 15,-10: - 5: 9712 + 6: 9712 0: 20480 15,-9: 0: 21845 - 5: 10786 + 6: 10786 15,-8: 0: 85 - 5: 61986 + 6: 61986 16,-10: - 5: 24336 + 6: 24336 16,-9: 0: 21845 - 5: 10786 + 6: 10786 13,2: 0: 4352 13,3: @@ -24467,7 +24503,7 @@ entities: 0: 65535 -20,-8: 0: 7 - 5: 34816 + 6: 34816 -19,-12: 0: 65535 -19,-11: @@ -24542,18 +24578,18 @@ entities: 0: 15 -20,-7: 0: 128 - 5: 32768 + 6: 32768 -19,-7: 0: 61182 -20,-6: - 5: 2184 + 6: 2184 -20,-5: 0: 8 - 5: 34816 + 6: 34816 -19,-5: 0: 61167 -20,-4: - 5: 34952 + 6: 34952 -19,-6: 0: 61166 -19,-4: @@ -24577,7 +24613,7 @@ entities: -16,-5: 0: 65524 -20,-3: - 5: 14 + 6: 14 0: 65280 -21,-3: 0: 65504 @@ -24790,7 +24826,8 @@ entities: -14,-5: 0: 48049 -14,-4: - 0: 47931 + 0: 45883 + 10: 2048 -13,-5: 0: 30577 -15,-3: @@ -24859,89 +24896,89 @@ entities: 0: 16383 -14,12: 0: 563 - 5: 21824 + 6: 21824 -13,12: - 5: 64310 + 6: 64310 -14,13: - 5: 21841 + 6: 21841 -14,14: - 5: 21843 + 6: 21843 -14,15: - 5: 21841 + 6: 21841 -14,16: - 5: 14611 + 6: 14611 -13,13: - 5: 31734 + 6: 31734 0: 32776 -13,14: - 5: 64370 + 6: 64370 0: 136 -13,15: - 5: 15350 + 6: 15350 0: 8 -13,16: - 5: 7398 + 6: 7398 -12,13: - 5: 63623 + 6: 63623 0: 8 -12,14: - 5: 35071 + 6: 35071 -12,15: - 5: 47495 + 6: 47495 0: 8 -12,16: - 5: 32710 + 6: 32710 0: 8 -11,13: - 5: 48719 + 6: 48719 -11,14: - 5: 20150 + 6: 20150 0: 8 -11,15: - 5: 52431 + 6: 52431 -11,16: 0: 12 - 5: 32595 + 6: 32595 -10,13: - 5: 60311 + 6: 60311 0: 8 -10,14: - 5: 39915 + 6: 39915 -10,15: - 5: 39319 + 6: 39319 0: 8 -10,16: 0: 9 - 5: 32726 + 6: 32726 -9,13: - 5: 30855 + 6: 30855 0: 32776 -9,14: - 5: 34935 + 6: 34935 0: 136 -9,15: - 5: 27783 + 6: 27783 0: 8 -9,16: - 5: 32659 + 6: 32659 -8,13: - 5: 12851 + 6: 12851 0: 34944 -8,14: - 5: 12850 + 6: 12850 0: 34952 -8,15: - 5: 8755 + 6: 8755 0: 35968 -8,16: - 5: 18739 + 6: 18739 -7,13: 0: 65521 -7,14: 0: 65535 -7,15: 0: 4369 - 5: 192 + 6: 192 -6,13: 0: 30512 -6,14: @@ -24950,7 +24987,7 @@ entities: 0: 61152 -6,16: 0: 238 - 5: 4096 + 6: 4096 -5,13: 0: 65262 -5,14: @@ -24975,95 +25012,95 @@ entities: 0: 61007 -3,16: 0: 238 - 5: 8192 + 6: 8192 -2,13: 0: 65533 -2,14: 0: 4573 - 5: 49152 + 6: 49152 -2,15: 0: 4353 - 5: 17476 + 6: 17476 -2,16: 0: 17 - 5: 8196 + 6: 8196 -1,13: 0: 65535 -1,14: 0: 255 - 5: 61440 + 6: 61440 -1,15: - 8: 65520 + 9: 65520 0,13: 0: 65535 0,14: 0: 1279 - 5: 61440 + 6: 61440 0,15: - 8: 4432 + 9: 4432 1,13: 0: 30583 1,14: 0: 119 - 5: 61440 + 6: 61440 1,15: - 5: 25587 + 6: 25587 0: 32768 1,16: - 5: 12666 + 6: 12666 0: 49280 2,13: - 5: 4369 - 9: 3264 + 6: 4369 + 11: 3264 2,14: - 5: 37137 - 8: 204 + 6: 37137 + 9: 204 2,15: - 5: 760 + 6: 760 0: 61440 2,16: - 5: 527 + 6: 527 0: 61680 3,13: - 9: 272 - 5: 52416 + 11: 272 + 6: 52416 0: 8 3,14: - 8: 17 - 5: 52428 + 9: 17 + 6: 52428 3,15: - 5: 52476 + 6: 52476 0: 4096 3,16: - 5: 52431 + 6: 52431 0: 4112 4,13: - 5: 62800 + 6: 62800 4,14: - 5: 4369 + 6: 4369 4,15: - 5: 4593 + 6: 4593 0: 49152 4,16: - 5: 4383 + 6: 4383 0: 49344 5,13: - 5: 61440 + 6: 61440 5,15: - 5: 752 + 6: 752 0: 61440 5,16: - 5: 527 + 6: 527 0: 61680 6,13: - 5: 61996 + 6: 61996 6,15: - 5: 12848 + 6: 12848 6,16: - 5: 25714 + 6: 25714 0: 4096 7,13: - 5: 4369 + 6: 4369 -16,-20: 0: 65535 -16,-21: @@ -25206,14 +25243,14 @@ entities: 0: 61167 -22,-4: 0: 273 - 5: 8738 + 6: 8738 -22,-3: 0: 65280 - 5: 14 + 6: 14 -22,-2: 0: 65535 -22,-5: - 5: 8704 + 6: 8704 0: 3 -24,-8: 0: 65399 @@ -25241,14 +25278,14 @@ entities: 0: 61166 -22,-8: 0: 13 - 5: 8704 + 6: 8704 -22,-7: 0: 48 - 5: 8192 + 6: 8192 -22,-9: 0: 56782 -22,-6: - 5: 546 + 6: 546 -24,-12: 0: 65521 -24,-13: @@ -25326,88 +25363,88 @@ entities: -26,0: 0: 65535 4,20: - 5: 29781 + 6: 29781 4,19: - 5: 53279 + 6: 53279 0: 192 3,20: 0: 8 - 5: 61909 + 6: 61909 0,17: - 5: 29426 + 6: 29426 -1,17: - 5: 63730 + 6: 63730 0,18: - 5: 17509 + 6: 17509 -1,18: 0: 60928 0,19: - 5: 2126 + 6: 2126 0: 12288 -1,19: 0: 53724 0,20: 0: 13107 0,16: - 5: 8736 + 6: 8736 1,17: - 5: 12605 + 6: 12605 0: 49344 1,19: - 5: 62331 + 6: 62331 0: 128 1,18: - 5: 28989 + 6: 28989 0: 32960 1,20: - 5: 4369 + 6: 4369 2,17: - 5: 527 + 6: 527 0: 61680 2,18: - 5: 527 + 6: 527 0: 61680 2,19: - 5: 61967 + 6: 61967 0: 240 3,17: - 5: 52431 + 6: 52431 0: 4112 3,18: - 5: 52431 + 6: 52431 0: 4112 3,19: - 5: 55503 + 6: 55503 0: 16 4,17: - 5: 4383 + 6: 4383 0: 49344 4,18: - 5: 4383 + 6: 4383 0: 49344 -4,17: - 5: 51449 + 6: 51449 -5,17: - 5: 17653 + 6: 17653 -4,19: - 5: 4959 + 6: 4959 0: 32768 -4,20: - 5: 4369 + 6: 4369 0: 34952 -4,18: - 5: 17604 + 6: 17604 -3,17: - 5: 62207 + 6: 62207 -3,19: 0: 28774 -3,18: - 5: 1 + 6: 1 0: 60928 -3,20: 0: 30583 -2,17: - 5: 64243 + 6: 64243 -2,19: 0: 65520 -2,18: @@ -25417,128 +25454,128 @@ entities: -1,20: 0: 56541 -1,16: - 5: 8736 + 6: 8736 -8,17: - 5: 29922 + 6: 29922 -9,17: - 5: 63600 + 6: 63600 -8,18: - 5: 62532 + 6: 62532 -8,19: - 5: 68 + 6: 68 -7,16: - 5: 4576 + 6: 4576 -7,17: - 5: 241 + 6: 241 -7,18: - 5: 61440 + 6: 61440 -6,17: - 5: 4593 + 6: 4593 -6,18: - 5: 61713 + 6: 61713 -6,19: - 5: 17 + 6: 17 -5,18: - 5: 29764 + 6: 29764 -5,19: - 5: 68 + 6: 68 -12,17: - 5: 61552 + 6: 61552 -13,17: - 5: 63746 + 6: 63746 -11,17: - 5: 63600 + 6: 63600 -10,17: - 5: 61552 + 6: 61552 -14,17: - 5: 2246 + 6: 2246 16,-8: 0: 85 - 5: 29218 + 6: 29218 16,-7: - 5: 8831 + 6: 8831 0: 20480 15,-7: - 5: 8959 + 6: 8959 0: 20480 16,-6: 0: 21845 - 5: 10786 + 6: 10786 15,-6: - 5: 10786 + 6: 10786 0: 21845 16,-5: 0: 5 - 5: 8018 + 6: 8018 15,-5: - 5: 62754 + 6: 62754 0: 85 17,-7: - 5: 62077 + 6: 62077 0: 2 17,-6: - 5: 4369 + 6: 4369 17,-5: - 5: 273 + 6: 273 17,-8: - 5: 29425 + 6: 29425 17,-9: - 5: 4369 + 6: 4369 18,-8: - 5: 4368 + 6: 4368 18,-7: - 5: 4369 + 6: 4369 -4,21: - 5: 62769 + 6: 62769 0: 8 -3,21: 0: 7 -3,22: - 5: 2096 + 6: 2096 -2,21: 0: 65535 -2,22: - 5: 3840 + 6: 3840 -1,21: 0: 4381 -1,22: - 5: 896 + 6: 896 0,21: 0: 3 - 5: 58496 + 6: 58496 0,22: - 5: 16 + 6: 16 1,21: - 5: 4369 + 6: 4369 5,17: - 5: 527 + 6: 527 0: 61680 5,18: - 5: 527 + 6: 527 0: 61680 5,19: - 5: 61967 + 6: 61967 0: 240 6,17: - 5: 25701 + 6: 25701 0: 4112 6,18: - 5: 29797 + 6: 29797 0: 16 6,19: - 5: 12850 + 6: 12850 17,-10: - 5: 4352 + 6: 4352 13,-7: 0: 65535 13,-6: 0: 65535 14,-7: - 5: 8959 + 6: 8959 0: 20480 14,-6: 0: 30549 - 5: 2082 + 6: 2082 -27,1: 0: 52428 -27,2: @@ -26537,7 +26574,7 @@ entities: 0: 65533 26,0: 0: 13119 - 5: 2048 + 6: 2048 26,1: 0: 7099 26,2: @@ -26550,7 +26587,7 @@ entities: 0: 56605 27,0: 0: 34959 - 5: 768 + 6: 768 27,1: 0: 7099 27,2: @@ -26610,7 +26647,7 @@ entities: 0: 20479 29,0: 0: 8751 - 5: 2048 + 6: 2048 29,1: 0: 2986 29,2: @@ -26621,7 +26658,7 @@ entities: 0: 32527 30,0: 0: 34959 - 5: 768 + 6: 768 30,1: 0: 7099 30,2: @@ -26898,7 +26935,7 @@ entities: 0: 65535 28,-4: 0: 15 - 5: 57344 + 6: 57344 28,-2: 0: 65524 26,-6: @@ -27239,7 +27276,7 @@ entities: 0: 13107 13,-13: 0: 17 - 5: 8 + 6: 8 13,-17: 0: 4096 14,-16: @@ -27247,11 +27284,11 @@ entities: 14,-15: 0: 30583 14,-13: - 5: 39 + 6: 39 14,-17: 0: 8192 14,-14: - 5: 8736 + 6: 8736 -35,-18: 0: 65534 -35,-19: @@ -27342,6 +27379,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.1498 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True temperature: 288.15 @@ -27403,6 +27455,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -88537,11 +88604,9 @@ entities: - type: Transform pos: -53.47,14.531252 parent: 2 - - type: ClothingSpeedModifier - sprintModifier: 0.65 - walkModifier: 0.65 - type: Armor modifiers: + flatReductions: {} coefficients: Blunt: 0.3 Slash: 0.3 @@ -88549,6 +88614,9 @@ entities: Heat: 0.6 Radiation: 0 Caustic: 0.75 + - type: ClothingSpeedModifier + sprintModifier: 0.65 + walkModifier: 0.65 - proto: ClothingOuterArmorReflective entities: - uid: 5940 @@ -90404,6 +90472,12 @@ entities: parent: 2 - proto: ComputerBroken entities: + - uid: 8602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-16.5 + parent: 2 - uid: 8701 components: - type: Transform @@ -90416,6 +90490,12 @@ entities: rot: 3.141592653589793 rad pos: 24.5,33.5 parent: 2 + - uid: 20251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-54.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 12910 @@ -90533,12 +90613,6 @@ entities: parent: 2 - proto: ComputerFrame entities: - - uid: 8602 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-16.5 - parent: 2 - uid: 15294 components: - type: Transform @@ -90680,14 +90754,6 @@ entities: - type: Transform pos: 9.5,27.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 20401 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-54.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 31107 @@ -90728,6 +90794,14 @@ entities: - type: Transform pos: 12.5,-51.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 31360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-54.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 9831 @@ -91286,10 +91360,10 @@ entities: air: volume: 200 immutable: False - temperature: 75.31249 + temperature: 293.14755 moles: - - 0 - - 0 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -91726,6 +91800,24 @@ entities: - type: Transform pos: -52.5,-13.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: CrateNPCHamlet entities: - uid: 1766 @@ -115207,6 +115299,14 @@ entities: - type: Transform pos: 104.57311,34.538353 parent: 2 +- proto: FoodCartCold + entities: + - uid: 31363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 2 - proto: FoodCartHot entities: - uid: 22793 @@ -115298,6 +115398,12 @@ entities: showEnts: False occludes: True ent: null + - uid: 31364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-2.5 + parent: 2 - proto: FoodCondimentBottleEnzyme entities: - uid: 736 @@ -118854,12 +118960,6 @@ entities: rot: -1.5707963267948966 rad pos: -55.5,-33.5 parent: 2 - - uid: 20251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-36.5 - parent: 2 - uid: 20259 components: - type: Transform @@ -140282,6 +140382,12 @@ entities: - type: Transform pos: -56.5,-33.5 parent: 2 + - uid: 20267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-36.5 + parent: 2 - uid: 20494 components: - type: Transform @@ -140772,12 +140878,9 @@ entities: - uid: 30337 components: - type: Transform - anchored: False rot: 1.5707963267948966 rad - pos: -56.5,-36.5 + pos: -57.5,-36.5 parent: 2 - - type: Physics - bodyType: Dynamic - proto: GasThermoMachineHeater entities: - uid: 17543 @@ -150206,7 +150309,7 @@ entities: pos: -18.5,-29.5 parent: 2 - type: Door - secondsUntilStateChange: -15944.961 + secondsUntilStateChange: -17154.996 state: Closing - uid: 9988 components: @@ -155916,6 +156019,20 @@ entities: - type: Transform pos: -67.5,-35.5 parent: 2 +- proto: OpporozidoneBeakerSmall + entities: + - uid: 31361 + components: + - type: Transform + pos: -58.308327,-32.387505 + parent: 2 +- proto: OreBox + entities: + - uid: 31366 + components: + - type: Transform + pos: 9.5,-69.5 + parent: 2 - proto: OreProcessor entities: - uid: 24754 @@ -160245,6 +160362,82 @@ entities: ============================================= [italic]Место для печатей[/italic] + - uid: 31362 + components: + - type: Transform + pos: -58.69474,-32.367683 + parent: 2 + - type: Paper + content: >- + Оппорозидон используется для регенерации гниющих тканей и мозгового вещества. + + Действует на мертвых существ, чья температура тела не более 150K. + + + [head=2]Рецепт Оппорозидона[/head] + + + [head=3]Оппорозидон[/head] + + [color=#E333A7]▣[/color] плазма [2] + + [color=#B50EE8]▣[/color] когнизин [1] + + [color=#32CD32]▣[/color] доксарубиксадон [1] + + [italic]Нагреть выше 400K[/italic] + + ▣ оппорозидон [3] + + + [color=#B50EE8]▣[/color] [bold]Когнизин[/bold] + + [bullet]карпотоксин [1] + + [bullet]сидерлак [1] + + [bullet]ацетон [1] + + [italic]Смешать[/italic] + + [bullet]когнизин [1] + + + [color=#32CD32]▣[/color] [bold]Доксарубиксадон[/bold] + + [bullet]криоксадон [1] + + [bullet]нестабильный мутаген [1] + + [italic]Смешать[/italic] + + [bullet]доксарубиксадон [2] + - uid: 31365 + components: + - type: Transform + rot: 0.22689280275926285 rad + pos: -50.378647,-16.532919 + parent: 2 + - type: Paper + stampState: paper_stamp-clown + stampedBy: + - stampedColor: '#FF33CCFF' + stampedName: stamp-component-stamped-name-clown + content: >2- + + + Всем привет! Это клоун Бим-Бон!!! + + Я случайно взорвал клонирующую машину. Ну, вы там это, не серчайте =) + + Оставил вам немного [bold]Оппорозидона[/bold] и его рецепт в Крио комнате. Он довольно простой. + + + Откуда у меня Оппорозидон и как я узнал его рецепт? + + Всё очень просто! + + [head=2]ГЛУПЕНЬКИЙ ХОНК-ХОООНК!!![/head] - uid: 31519 components: - type: Transform @@ -197925,10 +198118,11 @@ entities: rot: 3.141592653589793 rad pos: -58.5,-36.5 parent: 2 - - uid: 20267 + - uid: 20401 components: - type: Transform - pos: -57.5,-36.5 + rot: 3.141592653589793 rad + pos: -58.5,-32.5 parent: 2 - uid: 22235 components: @@ -235782,7 +235976,7 @@ entities: - uid: 20266 components: - type: Transform - pos: -57.63923,-36.36264 + pos: -58.52737,-36.37762 parent: 2 - uid: 27903 components: diff --git a/Resources/Maps/corvax_silly.yml b/Resources/Maps/corvax_silly.yml index fd6cc6bfc59..d627a964212 100644 --- a/Resources/Maps/corvax_silly.yml +++ b/Resources/Maps/corvax_silly.yml @@ -178,7 +178,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: BgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: gQAAAAAAgQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAgQAAAAAAgQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABgAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 @@ -17897,14 +17897,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-4.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 1884 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,8.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 6790 @@ -17919,6 +17911,13 @@ entities: - type: Transform pos: 16.5,13.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 4456 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 - proto: ComputerSolarControl entities: - uid: 1886 @@ -38820,6 +38819,11 @@ entities: parent: 2 - proto: VendingMachineTankDispenserEVA entities: + - uid: 1884 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 - uid: 4454 components: - type: Transform @@ -38830,11 +38834,6 @@ entities: - type: Transform pos: 26.5,0.5 parent: 2 - - uid: 4456 - components: - - type: Transform - pos: 21.5,16.5 - parent: 2 - uid: 4457 components: - type: Transform diff --git a/Resources/Maps/corvax_tushkan.yml b/Resources/Maps/corvax_tushkan.yml index f8920ef28f0..102cc82ddd6 100644 --- a/Resources/Maps/corvax_tushkan.yml +++ b/Resources/Maps/corvax_tushkan.yml @@ -300,6 +300,7 @@ entities: 5291: -28,19 5292: -27,19 5293: -26,19 + 7274: 33,25 - node: zIndex: 1 color: '#FFFFFFFF' @@ -6715,6 +6716,16 @@ entities: decals: 1072: -5,-6 6178: -23,-32 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 7275: -15,-35 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 7276: -15,-37 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSW @@ -6936,8 +6947,6 @@ entities: 2796: 26,3 2797: 27,3 2798: 28,3 - 3622: -14,-38 - 3623: -13,-38 5243: -29,33 5498: -42,6 5540: -36,-14 @@ -15495,6 +15504,16 @@ entities: - type: Transform pos: 19.5,-8.5 parent: 2 + - uid: 5591 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 - uid: 5697 components: - type: Transform @@ -19995,6 +20014,16 @@ entities: - type: Transform pos: 15.5,-37.5 parent: 2 + - uid: 10936 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 10937 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 - proto: CableApcStack entities: - uid: 2740 @@ -20220,6 +20249,11 @@ entities: - type: Transform pos: 10.5,22.5 parent: 2 + - uid: 2557 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 - uid: 2569 components: - type: Transform @@ -20310,6 +20344,11 @@ entities: - type: Transform pos: 17.5,28.5 parent: 2 + - uid: 2935 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 - uid: 3128 components: - type: Transform @@ -20345,6 +20384,11 @@ entities: - type: Transform pos: 31.5,31.5 parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 - uid: 3263 components: - type: Transform @@ -23424,6 +23468,11 @@ entities: - type: Transform pos: -14.5,14.5 parent: 2 + - uid: 5616 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 - uid: 5657 components: - type: Transform @@ -25427,32 +25476,12 @@ entities: - uid: 10668 components: - type: Transform - pos: -15.5,-35.5 - parent: 2 - - uid: 10669 - components: - - type: Transform - pos: -16.5,-35.5 - parent: 2 - - uid: 10670 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 10671 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - - uid: 10672 - components: - - type: Transform - pos: -17.5,-37.5 + pos: -13.5,-36.5 parent: 2 - uid: 10673 components: - type: Transform - pos: -17.5,-38.5 + pos: -13.5,-37.5 parent: 2 - uid: 10674 components: @@ -25506,6 +25535,11 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,35.5 parent: 2 + - uid: 2483 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 - uid: 2554 components: - type: Transform @@ -30288,6 +30322,12 @@ entities: - type: Transform pos: -19.5,-20.5 parent: 2 + - uid: 5592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 2954 @@ -30428,16 +30468,16 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,13.5 parent: 2 - - uid: 3209 + - uid: 8200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,29.5 + pos: -24.5,37.5 parent: 2 - - uid: 8200 + - uid: 10671 components: - type: Transform - pos: -24.5,37.5 + rot: 1.5707963267948966 rad + pos: 34.5,28.5 parent: 2 - proto: ComputerResearchAndDevelopment entities: @@ -30467,14 +30507,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,11.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 2935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,27.5 - parent: 2 - proto: ComputerShuttle entities: - uid: 1982 @@ -30495,6 +30527,14 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,14.5 parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 5615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,25.5 + parent: 2 - proto: ComputerStationRecords entities: - uid: 2197 @@ -30945,7 +30985,7 @@ entities: - uid: 5621 components: - type: Transform - pos: -12.502153,-37.414986 + pos: -12.557435,-33.50232 parent: 2 - proto: CrewMonitoringServer entities: @@ -52511,7 +52551,7 @@ entities: - uid: 6076 components: - type: Transform - pos: -12.56297,-33.380184 + pos: -12.512849,-33.21986 parent: 2 - proto: IngotGold entities: @@ -54943,11 +54983,6 @@ entities: parent: 2 - proto: NitrogenCanister entities: - - uid: 2557 - components: - - type: Transform - pos: 34.5,27.5 - parent: 2 - uid: 2927 components: - type: Transform @@ -55047,6 +55082,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: OreBox + entities: + - uid: 10802 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 - proto: OreProcessor entities: - uid: 3123 @@ -55061,11 +55103,6 @@ entities: - type: Transform pos: -22.5,37.5 parent: 2 - - uid: 2483 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - uid: 2756 components: - type: Transform @@ -55081,6 +55118,11 @@ entities: - type: Transform pos: 24.5,11.5 parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 - uid: 6604 components: - type: Transform @@ -64491,11 +64533,6 @@ entities: - type: Transform pos: -38.5,10.5 parent: 2 - - uid: 10802 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - proto: RadiationCollectorFullTank entities: - uid: 10297 @@ -67839,6 +67876,11 @@ entities: - type: Transform pos: -34.5,4.5 parent: 2 + - uid: 10938 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 - proto: SignSurgery entities: - uid: 4374 @@ -68027,6 +68069,16 @@ entities: - type: Transform pos: 34.5,34.5 parent: 2 + - uid: 5590 + components: + - type: MetaData + name: СМЭС Телекоммуникации + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - type: Battery + startingCharge: 20000000 + maxCharge: 20000000 - uid: 6417 components: - type: MetaData @@ -69153,6 +69205,13 @@ entities: - type: Transform pos: -13.5,-27.5 parent: 2 + - uid: 5589 + components: + - type: MetaData + name: подстанция Телекоммуникации + - type: Transform + pos: -13.5,-37.5 + parent: 2 - uid: 6418 components: - type: MetaData @@ -69785,12 +69844,12 @@ entities: - uid: 5619 components: - type: Transform - pos: -13.433733,-37.553738 + pos: -13.18541,-33.487453 parent: 2 - uid: 5620 components: - type: Transform - pos: -13.235524,-37.345608 + pos: -13.538327,-33.26446 parent: 2 - proto: SurveillanceCameraRouterCommand entities: @@ -70443,26 +70502,6 @@ entities: - type: Transform pos: -18.5,-27.5 parent: 2 - - uid: 5589 - components: - - type: Transform - pos: -12.5,-37.5 - parent: 2 - - uid: 5590 - components: - - type: Transform - pos: -13.5,-37.5 - parent: 2 - - uid: 5591 - components: - - type: Transform - pos: -12.5,-33.5 - parent: 2 - - uid: 5592 - components: - - type: Transform - pos: -13.5,-33.5 - parent: 2 - uid: 6036 components: - type: Transform @@ -71006,6 +71045,18 @@ entities: - type: Transform pos: 1.5,-0.5 parent: 9095 + - uid: 10669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-33.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 83 @@ -71533,7 +71584,7 @@ entities: - uid: 5617 components: - type: Transform - pos: -13.381185,-33.432255 + pos: -13.568051,-33.487453 parent: 2 - uid: 5618 components: @@ -72048,6 +72099,7 @@ entities: tags: - Paper sizes: null + mindRoles: null components: null - type: Dumpable delayPerItem: 0 @@ -81616,13 +81668,6 @@ entities: - type: Transform pos: 1.5,-0.5 parent: 9095 -- proto: WeaponCrusherGlaive - entities: - - uid: 10806 - components: - - type: Transform - pos: 33.5,25.5 - parent: 2 - proto: WeaponDisabler entities: - uid: 6213 @@ -81970,18 +82015,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-34.5 parent: 2 - - uid: 5611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-37.5 - parent: 2 - - uid: 5612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-37.5 - parent: 2 - uid: 5613 components: - type: Transform @@ -82453,18 +82486,6 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,-37.5 parent: 2 - - uid: 5615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-33.5 - parent: 2 - - uid: 5616 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 - parent: 2 - uid: 6056 components: - type: Transform @@ -82623,6 +82644,18 @@ entities: - type: Transform pos: -13.5,-39.5 parent: 2 + - uid: 10672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-37.5 + parent: 2 + - uid: 10806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-33.5 + parent: 2 - proto: WoodDoor entities: - uid: 3462 diff --git a/Resources/Maps/fland.yml b/Resources/Maps/fland.yml index c1534496c40..b6ccea09867 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: diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 15a719bb532..0b5a6bec70e 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -14470,7 +14470,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -76151.9 + secondsUntilStateChange: -76213.97 state: Opening - uid: 6934 components: @@ -14482,7 +14482,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -76154.53 + secondsUntilStateChange: -76216.6 state: Opening - uid: 6935 components: @@ -14494,7 +14494,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -76153.38 + secondsUntilStateChange: -76215.45 state: Opening - uid: 6936 components: @@ -14505,7 +14505,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -76152.6 + secondsUntilStateChange: -76214.67 state: Opening - proto: AirlockTheatreLocked entities: @@ -81255,6 +81255,13 @@ entities: - type: Transform pos: -54.5,-11.5 parent: 2 +- proto: DefaultStationBeaconVox + entities: + - uid: 29615 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 - proto: DefaultStationBeaconWardensOffice entities: - uid: 11912 @@ -94258,7 +94265,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -67475.88 + secondsUntilStateChange: -67537.95 - type: DeviceNetwork deviceLists: - 18275 @@ -138807,7 +138814,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -104307.73 + secondsUntilStateChange: -104369.8 state: Opening - uid: 5211 components: @@ -190162,7 +190169,7 @@ entities: pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -449512.38 + secondsUntilStateChange: -449574.44 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index d2d35c7d928..5ad509170dd 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/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index 5430a3f005a..d80e36bde1f 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -280,6 +280,8 @@ checkCanInteract: false checkConsciousness: false event: !type:WakeActionEvent + startDelay: true + useDelay: 2 - type: entity id: ActionActivateHonkImplant diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index c059f095e1d..75b3a290659 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -302,13 +302,19 @@ components: - type: StorageFill contents: + - id: DefibrillatorSyndicate - id: MedkitCombatFilled - - id: Defibrillator + amount: 4 + - id: Tourniquet + amount: 4 - id: CombatMedipen - amount: 3 - - id: ClothingHandsGlovesNitrile - - id: SyringeTranexamicAcid - - id: SyringeHyronalin + amount: 4 + - id: PunctAutoInjector + amount: 4 + - id: PyraAutoInjector + amount: 4 + - id: AirlossAutoInjector + amount: 4 - type: entity parent: ClothingBackpackDuffelSyndicateBundle diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index d905350cded..4a798b1a13a 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -46,10 +46,10 @@ table: !type:AllSelector children: - id: Stunbaton - - id: GrenadeFlashBang - - id: TearGasGrenade - id: Handcuffs - id: Handcuffs + - id: HoloprojectorSecurity + - id: RadioHandheldSecurity - type: entity id: ClothingBeltSecurityFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 8214a340bce..4eda923072b 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -306,6 +306,7 @@ id: LockerFillResearchDirectorNoHardsuit table: !type:AllSelector children: + - id: Intellicard - id: BoxEncryptionKeyScience - id: CircuitImprinterMachineCircuitboard - id: ClothingBeltUtilityFilled diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml index 6bdb8e73739..edb8ff1eb0e 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/medical.yml @@ -11,6 +11,7 @@ Bloodpack: 5 EpinephrineChemistryBottle: 3 Syringe: 5 + BoxBottle: 3 ClothingEyesHudMedical: 2 ClothingEyesEyepatchHudMedical: 2 # ADT tweak Start diff --git a/Resources/Prototypes/Corvax/Datasets/Names/corvax_syndie_smuggler.yml b/Resources/Prototypes/Corvax/Datasets/Names/corvax_syndie_smuggler.yml new file mode 100644 index 00000000000..8c26d71d106 --- /dev/null +++ b/Resources/Prototypes/Corvax/Datasets/Names/corvax_syndie_smuggler.yml @@ -0,0 +1,55 @@ +- type: dataset + id: corvax_names_syndie_smuggler + values: + - "'Альфонс'" + - "'Арестант'" + - "'Баобаб'" + - "'Бес'" + - "'Бибер'" + - "'Братик'" + - "'Вездессущий'" + - "'Вилка'" + - "'Водолазик'" + - "'Вульполюб'" + - "'Головастик'" + - "'Должник'" + - "'Еретик'" + - "'Каблук'" + - "'Квартет'" + - "'Кесадилья'" + - "'Кочерга'" + - "'Контролёр'" + - "'Кровоотсос'" + - "'Крот'" + - "'Курва'" + - "'Кучерявый'" + - "'Леон'" + - "'Лис'" + - "'Ложка'" + - "'Лосьон'" + - "'Мейнкун'" + - "'Меченый'" + - "'Никотин'" + - "'Нож'" + - "'Отец'" + - "'Пастырь'" + - "'Петля'" + - "'Питбуль'" + - "'Полторашка'" + - "'Призрак'" + - "'Прокурор'" + - "'Прометей'" + - "'Проводник'" + - "'Прохожий'" + - "'Псина'" + - "'Сержант'" + - "'Сисадмин'" + - "'Скат'" + - "'Слипволкер'" + - "'Смотритель'" + - "'Харон'" + - "'Чирик'" + - "'Цирюльник'" + - "'Шкаф'" + - "'Шкет'" + - "'Юморист'" \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Entities/Mobs/NPCs/human.yml b/Resources/Prototypes/Corvax/Entities/Mobs/NPCs/human.yml new file mode 100644 index 00000000000..7462d3ec747 --- /dev/null +++ b/Resources/Prototypes/Corvax/Entities/Mobs/NPCs/human.yml @@ -0,0 +1,31 @@ +- type: entity + name: syndicate smuggler + parent: BaseMobHuman + id: MobSyndicateSmuggler + components: + - type: NpcFactionMember + factions: + - Syndicate + - type: Loadout + prototypes: + - SyndicateSmugglerGear + - SyndicateSmugglerMedicGear + - SyndicateSmugglerSoldierGear + - SyndicateSmugglerMinerGear + - type: InputMover + - type: MobMover + - type: HTN + rootTask: + task: SimpleHumanoidHostileCompound + - type: RandomMetadata + nameSegments: + - fake_human_first + - corvax_names_syndie_smuggler + - names_last + - type: GhostTakeoverAvailable + - type: GhostRole + name: ghost-role-information-syndicate-smuggler-name + description: ghost-role-information-syndicate-smuggler-description + rules: ghost-role-information-freeagent-rules + raffle: + settings: default \ No newline at end of file diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Corvax/Entities/Objects/Devices/Circuitboards/computer.yml new file mode 100644 index 00000000000..f6cdc417744 --- /dev/null +++ b/Resources/Prototypes/Corvax/Entities/Objects/Devices/Circuitboards/computer.yml @@ -0,0 +1,8 @@ +- type: entity + parent: BaseComputerCircuitboard + id: SalvageShuttleConsoleCircuitboard + name: salvage shuttle console board + description: A computer printed circuit board for a salvage shuttle console. + components: + - type: ComputerBoard + prototype: ComputerShuttleSalvage diff --git a/Resources/Prototypes/Corvax/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Corvax/Entities/Objects/Specific/chemistry.yml new file mode 100644 index 00000000000..f4570c62b06 --- /dev/null +++ b/Resources/Prototypes/Corvax/Entities/Objects/Specific/chemistry.yml @@ -0,0 +1,14 @@ +- type: entity + suffix: opporozidone + parent: Beaker + id: OpporozidoneBeakerSmall + components: + - type: Label + currentLabel: reagent-name-opporozidone + - type: SolutionContainerManager + solutions: + beaker: + maxVol: 50 + reagents: + - ReagentId: Opporozidone + Quantity: 50 diff --git a/Resources/Prototypes/Corvax/Entities/Stations/base.yml b/Resources/Prototypes/Corvax/Entities/Stations/base.yml index 81fdf71f22e..8be2b98109c 100644 --- a/Resources/Prototypes/Corvax/Entities/Stations/base.yml +++ b/Resources/Prototypes/Corvax/Entities/Stations/base.yml @@ -22,3 +22,10 @@ - ADTStationGoalTransitMedicine - ADTStationGoalTransitContraband - ADTStationGoalMultiple + +- type: entity + id: BaseStationSiliconLawNTDefault + abstract: true + components: + - type: SiliconLawProvider + laws: NTDefault diff --git a/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml index 550fc2c5bd5..d636cc5229c 100644 --- a/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Corvax/Entities/Stations/nanotrasen.yml @@ -30,10 +30,18 @@ maxCount: 2 stationGrid: false paths: - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml + - /Maps/Ruins/corvax_accident.yml + - /Maps/Ruins/corvax_adventurer.yml + - /Maps/Ruins/corvax_aplink.yml + - /Maps/Ruins/corvax_battleship.yml + - /Maps/Ruins/corvax_gas_station.yml + - /Maps/Ruins/corvax_bss_unluck.yml + - /Maps/Ruins/corvax_hotel_trivago.yml + - /Maps/Ruins/corvax_kamikaze.yml + - /Maps/Ruins/corvax_ore.yml + - /Maps/Ruins/corvax_research_station.yml + - /Maps/Ruins/corvax_rnd_debris.yml + - /Maps/Ruins/corvax_sanctus.yml + - /Maps/Ruins/corvax_syndi_base.yml + - /Maps/Ruins/corvax_ussp_debris.yml + - /Maps/Ruins/corvax_ussp_asteroid.yml diff --git a/Resources/Prototypes/Corvax/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Corvax/Entities/Structures/Machines/Computers/computers.yml index 92deeaec34e..999ac679e84 100644 --- a/Resources/Prototypes/Corvax/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Corvax/Entities/Structures/Machines/Computers/computers.yml @@ -12,3 +12,31 @@ path: /Audio/Corvax/Announcements/centcomm.ogg params: volume: -4 + +- type: entity + parent: BaseComputerShuttle + id: ComputerShuttleSalvage + name: salvage shuttle console + description: Used to pilot the salvage shuttle. + components: + - type: Sprite + layers: + - map: ["computerLayerBody"] + state: computer + - map: ["computerLayerKeyboard"] + state: generic_keyboard + - map: ["computerLayerScreen"] + state: shuttle + - map: ["computerLayerKeys"] + state: generic_keys + - type: DroneConsole + components: + - type: SalvageShuttle + - type: RadarConsole + maxRange: 256 + - type: PointLight + radius: 1.5 + energy: 1.6 + color: "#c94242" + - type: Computer + board: SalvageShuttleConsoleCircuitboard diff --git a/Resources/Prototypes/Corvax/Loadouts/Fun/misc_startinggear.yml b/Resources/Prototypes/Corvax/Loadouts/Fun/misc_startinggear.yml new file mode 100644 index 00000000000..18d6d68e7e2 --- /dev/null +++ b/Resources/Prototypes/Corvax/Loadouts/Fun/misc_startinggear.yml @@ -0,0 +1,65 @@ +- type: startingGear + id: SyndicateSmugglerBase + equipment: + jumpsuit: ClothingUniformJumpsuitOperative + head: ClothingHeadHatUshanka + eyes: ClothingEyesGlassesCheapSunglasses + outerClothing: ClothingOuterWinterSyndie + gloves: ClothingHandsGlovesColorBlack + back: ClothingBackpackSalvage + shoes: ClothingShoesBootsWinterSyndicate + neck: ClothingNeckScarfStripedSyndieRed + id: SyndiPDA + belt: ClothingBeltMilitaryWebbing + storage: + back: + - BoxSurvivalSyndicate + +- type: startingGear + id: SyndicateSmugglerGear + parent: SyndicateSmugglerBase + inhand: + - CombatKnife + +- type: startingGear + id: SyndicateSmugglerMedicGear + parent: SyndicateSmugglerBase + equipment: + back: ClothingBackpackSatchelGenetics + neck: ClothingNeckScarfStripedSyndieGreen + belt: ClothingBeltMilitaryWebbingMed + eyes: ClothingEyesEyepatchHudMedical + pocket1: EmergencyMedipen + mask: ClothingMaskBandGrey + storage: + back: + - MedkitCombatFilled + inhand: + - Scalpel + +- type: startingGear + id: SyndicateSmugglerSoldierGear + parent: SyndicateSmugglerBase + equipment: + shoes: ClothingShoesBootsCombat + outerClothing: ClothingOuterWinterSyndieCapArmored + gloves: ClothingHandsGlovesCombat + mask: ClothingMaskNeckGaiter + pocket1: WeaponPistolViper + pocket2: MagazinePistol + eyes: ClothingEyesGlassesHiddenSecurity + inhand: + - CombatKnife + +- type: startingGear + id: SyndicateSmugglerMinerGear + parent: SyndicateSmugglerBase + equipment: + jumpsuit: ClothingUniformJumpsuitTacticool + head: ClothingHeadHatHardhatArmored + eyes: ClothingEyesGlassesThermal + belt: OreBag + back: ClothingBackpackSatchelSalvage + pocket1: MineralScanner + inhand: + - Pickaxe diff --git a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml index d8f3bebad6f..be6e1c4ae27 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/corvax.yml @@ -11,6 +11,6 @@ - CorvaxTerra - CorvaxPearl - CorvaxTushkan - - CorvaxGlacier + #- CorvaxGlacier - Box #- Train diff --git a/Resources/Prototypes/Corvax/Maps/Pools/default.yml b/Resources/Prototypes/Corvax/Maps/Pools/default.yml index 00417cba88f..2a73f26129d 100644 --- a/Resources/Prototypes/Corvax/Maps/Pools/default.yml +++ b/Resources/Prototypes/Corvax/Maps/Pools/default.yml @@ -6,7 +6,7 @@ - CorvaxAvrite - CorvaxAstra - CorvaxPilgrim - - CorvaxGlacier + #- CorvaxGlacier - Box # Midpop - CorvaxPaper diff --git a/Resources/Prototypes/Corvax/Maps/frame.yml b/Resources/Prototypes/Corvax/Maps/frame.yml index 9306797542b..4f30741a5a0 100644 --- a/Resources/Prototypes/Corvax/Maps/frame.yml +++ b/Resources/Prototypes/Corvax/Maps/frame.yml @@ -30,21 +30,6 @@ mining: !type:GridSpawnGroup paths: - /Maps/Shuttles/corvax_mining.yml - # Spawn last - ruins: !type:GridSpawnGroup - hide: true - nameGrid: true - minCount: 10 - maxCount: 10 - stationGrid: false - paths: - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml - type: StationJobs availableJobs: # cargo diff --git a/Resources/Prototypes/Corvax/Maps/glacier.yml b/Resources/Prototypes/Corvax/Maps/glacier.yml index 21e102fc4b2..248407805eb 100644 --- a/Resources/Prototypes/Corvax/Maps/glacier.yml +++ b/Resources/Prototypes/Corvax/Maps/glacier.yml @@ -36,7 +36,7 @@ #IAA: [ 1, 1 ] #ADT FIX # cargo Quartermaster: [ 1, 1 ] - SalvageSpecialist: [ 3, 3 ] + SalvageSpecialist: [ 4, 4 ] CargoTechnician: [ 4, 5 ] # engineering ChiefEngineer: [ 1, 1 ] diff --git a/Resources/Prototypes/Corvax/Maps/split.yml b/Resources/Prototypes/Corvax/Maps/split.yml index c37156ff5a8..944625341d7 100644 --- a/Resources/Prototypes/Corvax/Maps/split.yml +++ b/Resources/Prototypes/Corvax/Maps/split.yml @@ -141,21 +141,6 @@ mining: !type:GridSpawnGroup paths: - /Maps/Shuttles/corvax_mining.yml - # Spawn last - ruins: !type:GridSpawnGroup - hide: true - nameGrid: true - minCount: 3 - maxCount: 3 - stationGrid: false - paths: - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml - type: StationCargoShuttle path: /Maps/Shuttles/cargo.yml - type: StationEmergencyShuttle diff --git a/Resources/Prototypes/Corvax/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Corvax/Recipes/Lathes/electronics.yml new file mode 100644 index 00000000000..f55761b94ff --- /dev/null +++ b/Resources/Prototypes/Corvax/Recipes/Lathes/electronics.yml @@ -0,0 +1,4 @@ +- type: latheRecipe + parent: BaseGoldCircuitboardRecipe + id: SalvageExpeditionsComputerCircuitboard + result: SalvageExpeditionsComputerCircuitboard diff --git a/Resources/Prototypes/Datasets/Names/last.yml b/Resources/Prototypes/Datasets/Names/last.yml index 154f7a005d1..650ef9774bc 100644 --- a/Resources/Prototypes/Datasets/Names/last.yml +++ b/Resources/Prototypes/Datasets/Names/last.yml @@ -192,7 +192,6 @@ - Хоу - Хьюи - Хьюз - - Хьюсак - Хант - Хантер - Хуссейн diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 2c6b9d957ec..3874a083e21 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -491,7 +491,6 @@ - CartridgeAmmo - DoorRemote - Whistle - - HolosignProjector - BalloonPopper - type: ItemMapper mapLayers: diff --git a/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml b/Resources/Prototypes/Entities/Clothing/Multiple/towel.yml new file mode 100644 index 00000000000..d3f7dc480ca --- /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 f48f3d077b5..11da2a9bd58 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 d8e654b111d..abb3deb5fd9 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/boots.yml @@ -207,6 +207,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSpurs + params: + variation: 0.09 - type: entity parent: ClothingShoesBootsCowboyBrown diff --git a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml index 6ea38691956..874185895c0 100644 --- a/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml +++ b/Resources/Prototypes/Entities/Clothing/Shoes/specific.yml @@ -40,6 +40,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 # for H.O.N.K. construction - type: Tag tags: @@ -59,6 +61,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSlip + params: + variation: 0.10 - type: Construction graph: BananaClownShoes node: shoes @@ -79,6 +83,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepClown + params: + variation: 0.17 - type: PointLight enabled: true radius: 3 @@ -270,6 +276,8 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepJester + params: + variation: 0.07 - type: entity parent: ClothingShoesClown @@ -329,3 +337,5 @@ - type: FootstepModifier footstepSoundCollection: collection: FootstepSkates + params: + variation: 0.08 diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index 59fa1b0d1a6..8784ed77cec 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -222,3 +222,16 @@ state: metal_foam-north - map: [ "enum.EdgeLayer.West" ] state: metal_foam-west + +- type: entity + id: ReactionFlash + categories: [ HideSpawnMenu ] + components: + - type: PointLight + enabled: true + radius: 2 + energy: 8 + - type: LightFade + duration: 0.5 + - type: TimedDespawn + lifetime: 0.5 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml index c7269043ce1..c54eb3f4007 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/maintenance.yml @@ -303,6 +303,7 @@ - id: ResearchDisk5000 - id: PetCarrier - id: DrinkMopwataBottleRandom + - id: SpectralLocator - id: LidSalami weight: 0.05 diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 25add04088d..ee30bd26387 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -78,7 +78,7 @@ - type: EmagSiliconLaw stunTime: 5 - type: SiliconLawProvider - laws: Crewsimov + laws: NTDefault # Corvax-NTDefault - type: IonStormTarget - type: Inventory templateId: borg diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index cc08d79f353..bf7b1ca38e7 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1420,8 +1420,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 @@ -1445,11 +1444,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 @@ -1579,8 +1581,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 740445dc4e5..49823fc4785 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -819,6 +819,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 3c65f56becd..8abe4c07ca5 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 6c1d95ff36a..34489b686b0 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml @@ -173,6 +173,8 @@ maxInterval: 12 sound: collection: BikeHorn + params: + variation: 0.125 - type: Sprite sprite: Mobs/Silicon/Bots/honkbot.rsi state: honkbot @@ -217,6 +219,8 @@ interactFailureString: petting-failure-honkbot interactSuccessSound: path: /Audio/Items/bikehorn.ogg + params: + variation: 0.125 - type: entity parent: MobHonkBot @@ -227,6 +231,8 @@ - type: SpamEmitSound sound: collection: CluwneHorn + params: + variation: 0.125 - type: Sprite state: jonkbot - type: Construction @@ -242,6 +248,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 9114352a5c6..74b19c51847 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 - IgnoreBalanceChecks # ADT-Economy-Tweak - type: Input context: "aghost" diff --git a/Resources/Prototypes/Entities/Mobs/Player/human.yml b/Resources/Prototypes/Entities/Mobs/Player/human.yml index 13c22d4fa04..a1fe731f18b 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 b20c8271b70..5e8dfdb89f9 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 ] @@ -76,6 +78,13 @@ - type: ComplexInteraction #ADT Observer PDA end +# proto for player ghosts specifically +- type: entity + parent: MobObserverBase + id: MobObserver + components: + - type: Spectral + - type: entity id: ActionGhostBoo name: Boo! @@ -85,6 +94,7 @@ icon: Interface/Actions/scream.png checkCanInteract: false event: !type:BooActionEvent + startDelay: true useDelay: 120 - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml index ffbc46e94c3..8a01de40809 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 fd561a0062e..35946628e5b 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -70,7 +70,29 @@ canShuttle: false title: comms-console-announcement-title-station-ai color: "#2ed2fd" + - type: Speech + speechVerb: Robotic +- 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 +104,8 @@ - type: StationAiHolder slot: name: station-ai-mind-slot - locked: true + locked: false + disableEject: true whitelist: tags: - StationAi @@ -239,6 +262,7 @@ state: std_mod - type: SiliconLawProvider laws: AntimovLawset + lawUploadSound: /Audio/Ambience/Antag/silicon_lawboard_antimov.ogg - type: entity id: NutimovCircuitBoard @@ -255,13 +279,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: @@ -350,7 +377,7 @@ - type: BlockMovement blockInteraction: false - type: SiliconLawProvider - laws: Crewsimov + laws: NTDefault # Corvax-NTDefault - type: SiliconLawBound - type: ActionGrant actions: @@ -360,7 +387,6 @@ enum.SiliconLawsUiKey.Key: type: SiliconLawBoundUserInterface - type: ComplexInteraction - - type: DoorRemote - type: Actions - type: Access groups: @@ -373,6 +399,7 @@ tags: - HideContextMenu - StationAi + - NoConsoleSound # Start-ADT-Tweak: Ai chat - type: HighlightWordsInChat highlightWords: diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index eb241ef8eec..ecebfea53df 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 448ef0868d6..0b574cdd720 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/Containers/bowl.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml index 40cb141af78..ffccf07ab64 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/bowl.yml @@ -21,6 +21,10 @@ visible: false - type: MixableSolution solution: food + - type: Drink + solution: food + useSound: + path: /Audio/Items/drink.ogg - type: DamageOnLand damage: types: diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meat.yml index 000f21db3f4..612f7da0472 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/Devices/chameleon_projector.yml b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml index 99d58c6a3ad..f07ae635696 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/chameleon_projector.yml @@ -12,6 +12,7 @@ components: - Anchorable - Item + tags: - Bot # for funny bot moments blacklist: components: diff --git a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml index 0c8b539c590..0df74d80d6a 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/holoprojectors.yml @@ -121,6 +121,7 @@ - type: Tag tags: - HolofanProjector + - SecBeltEquip - type: StaticPrice price: 50 diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml index 19eab391ac0..836ce7ff14e 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml @@ -639,3 +639,11 @@ components: - type: NavMapBeacon defaultText: station-beacon-escape-pod + +- type: entity + parent: DefaultStationBeacon + id: DefaultStationBeaconVox + suffix: Vox + components: + - type: NavMapBeacon + defaultText: station-beacon-vox diff --git a/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml b/Resources/Prototypes/Entities/Objects/Fun/Instruments/instruments_percussion.yml index a6eaa128d60..7ad65e52b24 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/spectral_locator.yml b/Resources/Prototypes/Entities/Objects/Fun/spectral_locator.yml new file mode 100644 index 00000000000..930b9c4926d --- /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 3956c2faee4..9ba145a108d 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -35,6 +35,7 @@ damage: types: Blunt: 0 + hidden: true - type: PhysicalComposition materialComposition: Cloth: 100 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml b/Resources/Prototypes/Entities/Objects/Specific/Mech/mechs.yml index 1fbde27e71b..4c4e44c28cd 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/defib.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml index 69c106efab1..fb0f3d52c68 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/defib.yml @@ -71,3 +71,69 @@ id: DefibrillatorOneHandedUnpowered parent: BaseDefibrillator suffix: One-Handed, Unpowered + +- type: entity + id: DefibrillatorCompact # This should be a research item at some point + parent: [ BaseDefibrillator, PowerCellSlotMediumItem ] + name: compact defibrillator + description: Now in fun size! + components: + - type: Sprite + sprite: Objects/Specific/Medical/defibsmall.rsi + layers: + - state: icon + - state: screen + map: [ "enum.ToggleVisuals.Layer" ] + visible: false + shader: unshaded + - state: ready + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: Item + size: Normal + - type: ToggleCellDraw + - type: PowerCellDraw + useRate: 100 + - type: Defibrillator + zapHeal: + types: + Asphyxiation: -40 + doAfterDuration: 6 + - type: DoAfter + - type: UseDelay + +- type: entity + id: DefibrillatorSyndicate + parent: DefibrillatorCompact + name: interdyne defibrillator + description: Doubles as a self-defense weapon against war-crime inclined tiders. + components: + - type: Sprite + sprite: Objects/Specific/Medical/defibsyndi.rsi + layers: + - state: icon + - state: screen + map: [ "enum.ToggleVisuals.Layer" ] + visible: false + shader: unshaded + - state: ready + map: ["enum.PowerDeviceVisualLayers.Powered"] + shader: unshaded + - type: MeleeWeapon + damage: + types: + Blunt: 8 + - type: ItemToggleMeleeWeapon + activatedSoundOnHit: + path: /Audio/Items/Defib/defib_zap.ogg + params: + variation: 0.250 + activatedSoundOnHitNoDamage: + path: /Audio/Items/Defib/defib_zap.ogg + params: + variation: 0.250 + volume: -10 + activatedDamage: + types: + Blunt: 8 + Shock: 16 diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml index 059aff3eed5..ea2edb092e4 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Medical/hypospray.yml @@ -272,7 +272,6 @@ transferAmount: 20 onlyAffectsMobs: false injectOnly: true - - type: SolutionContainerManager solutions: pen: @@ -285,6 +284,102 @@ - type: Tag tags: [] +- type: entity + name: puncturase auto-injector + parent: ChemicalMedipen + id: PunctAutoInjector + description: A rapid dose of puncturase and tranexamic acid, intended for combat applications. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: punctpen + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: punctpen_empty + - type: Hypospray + solutionName: pen + transferAmount: 15 + onlyAffectsMobs: false + injectOnly: true + - type: SolutionContainerManager + solutions: + pen: + maxVol: 15 + reagents: + - ReagentId: Puncturase + Quantity: 10 + - ReagentId: TranexamicAcid + Quantity: 5 + - type: Tag + tags: [] + +- type: entity + name: pyrazine auto-injector + parent: ChemicalMedipen + id: PyraAutoInjector + description: A rapid dose of pyrazine and dermaline, intended for combat applications. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: pyrapen + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: pyrapen_empty + - type: Hypospray + solutionName: pen + transferAmount: 20 + onlyAffectsMobs: false + injectOnly: true + - type: SolutionContainerManager + solutions: + pen: + maxVol: 20 + reagents: + - ReagentId: Pyrazine + Quantity: 10 + - ReagentId: Dermaline + Quantity: 10 + - type: Tag + tags: [] + +- type: entity + name: airloss auto-injector + parent: ChemicalMedipen + id: AirlossAutoInjector + description: A rapid dose of saline and dexalin plus, intended to get someone up quickly. + components: + - type: Sprite + sprite: Objects/Specific/Medical/medipen.rsi + layers: + - state: dexpen + map: ["enum.SolutionContainerLayers.Fill"] + - type: SolutionContainerVisuals + maxFillLevels: 1 + changeColor: false + emptySpriteName: dexpen_empty + - type: Hypospray + solutionName: pen + transferAmount: 40 + onlyAffectsMobs: false + injectOnly: true + - type: SolutionContainerManager + solutions: + pen: + maxVol: 40 + reagents: + - ReagentId: Saline + Quantity: 20 + - ReagentId: DexalinPlus + Quantity: 20 + - type: Tag + tags: [] + - type: entity name: space medipen parent: ChemicalMedipen diff --git a/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml b/Resources/Prototypes/Entities/Objects/Specific/Medical/surgery.yml index 9b6da25eb7d..5b0c97dc837 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/mmi.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml index 5155e70cca4..33eabbb60b5 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 0f74b4afaf9..3f2ac403ac9 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 28157ef3450..8fe03f3c6e1 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 98ad35b70d2..3af2b7affbb 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 d5fb4360a82..bcd56c1d64a 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 e4be926d4a0..92a1a6b418d 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 fbd20446906..e081d574d7a 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 7a5f5d27ca6..98e063e297f 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/pneumatic_cannon.yml b/Resources/Prototypes/Entities/Objects/Weapons/Guns/pneumatic_cannon.yml index 1d18c2b0500..63a7acd2576 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/Melee/mining.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml index 337c7f07f7b..5b565127a2d 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/mining.yml @@ -149,6 +149,7 @@ - type: GunRequiresWield - type: Item size: Ginormous + sprite: Objects/Weapons/Melee/crusher-inhands.rsi - type: DisarmMalus - type: Prying @@ -191,3 +192,6 @@ - type: Tag tags: - Pickaxe + - type: Item + size: Ginormous + sprite: Objects/Weapons/Melee/crusher_glaive-inhands.rsi diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index af20725ff47..4f97136b1c6 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -66,15 +66,21 @@ maxCount: 2 stationGrid: false paths: - - /Maps/Ruins/chunked_tcomms.yml - - /Maps/Ruins/biodome_satellite.yml - - /Maps/Ruins/derelict.yml - - /Maps/Ruins/djstation.yml - - /Maps/Ruins/empty_flagship.yml - - /Maps/Ruins/old_ai_sat.yml - - /Maps/Ruins/syndicate_dropship.yml - - /Maps/Ruins/whiteship_ancient.yml - - /Maps/Ruins/whiteship_bluespacejumper.yml + - /Maps/Ruins/corvax_accident.yml + - /Maps/Ruins/corvax_adventurer.yml + - /Maps/Ruins/corvax_aplink.yml + - /Maps/Ruins/corvax_battleship.yml + - /Maps/Ruins/corvax_gas_station.yml + - /Maps/Ruins/corvax_bss_unluck.yml + - /Maps/Ruins/corvax_hotel_trivago.yml + - /Maps/Ruins/corvax_kamikaze.yml + - /Maps/Ruins/corvax_ore.yml + - /Maps/Ruins/corvax_research_station.yml + - /Maps/Ruins/corvax_rnd_debris.yml + - /Maps/Ruins/corvax_sanctus.yml + - /Maps/Ruins/corvax_syndi_base.yml + - /Maps/Ruins/corvax_ussp_debris.yml + - /Maps/Ruins/corvax_ussp_asteroid.yml vgroid: !type:DungeonSpawnGroup minimumDistance: 300 maximumDistance: 350 diff --git a/Resources/Prototypes/Entities/Stations/nanotrasen.yml b/Resources/Prototypes/Entities/Stations/nanotrasen.yml index c2a4bfb11a8..09f3bda7075 100644 --- a/Resources/Prototypes/Entities/Stations/nanotrasen.yml +++ b/Resources/Prototypes/Entities/Stations/nanotrasen.yml @@ -23,7 +23,7 @@ - BaseStationAlertLevels - BaseStationMagnet - BaseStationExpeditions - - BaseStationSiliconLawCrewsimov + - BaseStationSiliconLawNTDefault # Corvax-NTDefault - BaseStationAllEventsEligible - BaseStationNanotrasen categories: [ HideSpawnMenu ] diff --git a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml index 22a0734be7d..4667f2f4a8a 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Firelocks/firelock.yml @@ -116,6 +116,7 @@ color: Red enabled: false castShadows: false + - type: NavMapDoor - type: entity id: Firelock diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 9baca8b4b6b..d79348bfa61 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/fax_machine.yml b/Resources/Prototypes/Entities/Structures/Machines/fax_machine.yml index a70763f0b85..53b1981642f 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 024911fee52..8e95c932559 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -201,11 +201,9 @@ - WetFloorSign - ClothingHeadHatCone - FreezerElectronics - - Flare - type: EmagLatheRecipes emagStaticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunSlug - CombatKnife - MagazineBoxLightRifle @@ -589,6 +587,7 @@ - MassMediaCircuitboard - ReagentGrinderIndustrialMachineCircuitboard - JukeboxCircuitBoard + - SalvageExpeditionsComputerCircuitboard # Corvax-Cringe - ADTIndustrialSMESMachineCircuitboard #ADT - type: EmagLatheRecipes emagDynamicRecipes: @@ -819,7 +818,6 @@ runningState: icon staticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunPractice - BoxShotgunSlug - ClothingEyesHudSecurity @@ -950,7 +948,6 @@ runningState: icon staticRecipes: - BoxLethalshot - - BoxShotgunFlare - BoxShotgunSlug - BoxShellTranquilizer - MagazineBoxLightRifle @@ -1313,8 +1310,6 @@ - type: Machine board: BiogeneratorMachineCircuitboard - type: MaterialStorage - insertOnInteract: false - canEjectStoredMaterials: false - type: ProduceMaterialExtractor - type: ItemSlots slots: diff --git a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml index 71e171fc50d..5562715fdb2 100644 --- a/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml +++ b/Resources/Prototypes/Entities/Structures/Piping/Atmospherics/miners.yml @@ -113,6 +113,14 @@ - type: GasMiner spawnGas: Tritium +- type: entity + name: frezon gas miner + parent: GasMinerBase + id: GasMinerFrezon + components: + - type: GasMiner + spawnGas: Frezon + - type: entity name: water vapor gas miner parent: GasMinerBase diff --git a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml index 595915202d8..1f2a5ebeb0d 100644 --- a/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml +++ b/Resources/Prototypes/Entities/Structures/Wallmounts/timer.yml @@ -64,8 +64,8 @@ canEditLabel: true - type: TextScreenVisuals color: FloralWhite - textOffset: 0,8 - timerOffset: 0,8 + textOffset: 0,6 + timerOffset: 0,6 textLength: 5 rows: 1 - type: Sprite diff --git a/Resources/Prototypes/Entities/Structures/hydro_tray.yml b/Resources/Prototypes/Entities/Structures/hydro_tray.yml index 1432adc9dbd..223b74a582c 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/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 8e151d0cc84..b7a70542cfa 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -484,7 +484,7 @@ duration: 1 - type: RuleGrids - type: LoadMapRule - preloadedGrid: ShuttleStriker + mapPath: /Maps/Shuttles/ShuttleEvent/striker.yml - type: NukeopsRule roundEndBehavior: Nothing - type: AntagSelection diff --git a/Resources/Prototypes/GameRules/roundstart.yml b/Resources/Prototypes/GameRules/roundstart.yml index da0dc5b7129..dc41238a69b 100644 --- a/Resources/Prototypes/GameRules/roundstart.yml +++ b/Resources/Prototypes/GameRules/roundstart.yml @@ -191,6 +191,15 @@ 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 parent: BaseGameRule diff --git a/Resources/Prototypes/GameRules/unknown_shuttles.yml b/Resources/Prototypes/GameRules/unknown_shuttles.yml index 49fa4ced738..aad36fe5452 100644 --- a/Resources/Prototypes/GameRules/unknown_shuttles.yml +++ b/Resources/Prototypes/GameRules/unknown_shuttles.yml @@ -20,7 +20,6 @@ - id: UnknownShuttleMeatZone - id: UnknownShuttleMicroshuttle - id: UnknownShuttleSpacebus - - id: UnknownShuttleInstigator - type: entityTable id: UnknownShuttlesFreelanceTable diff --git a/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml b/Resources/Prototypes/Loadouts/Miscellaneous/glasses.yml index b7dae89fda9..1ff3f1533eb 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 d6efb61570c..125fd7792e4 100644 --- a/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml +++ b/Resources/Prototypes/Loadouts/Miscellaneous/trinkets.yml @@ -196,5 +196,194 @@ # storage: # back: # - ClothingNeckGoldAutismPin - #ADT end + +# 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: JobIAA # Corvax-IAA + 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 diff --git a/Resources/Prototypes/Loadouts/loadout_groups.yml b/Resources/Prototypes/Loadouts/loadout_groups.yml index be533fcd208..d5c380dcc8e 100644 --- a/Resources/Prototypes/Loadouts/loadout_groups.yml +++ b/Resources/Prototypes/Loadouts/loadout_groups.yml @@ -41,6 +41,24 @@ - ClothingNeckSolarisPin - ClothingNeckWhiteListPin # Corvax-Loadouts-End + - TowelColorBlack + - TowelColorDarkBlue + - TowelColorDarkGreen + - TowelColorGold + - TowelColorGray + - TowelColorGreen + - TowelColorLightBlue + - TowelColorLightBrown + - TowelColorMaroon + - TowelColorMime + - TowelColorOrange + - TowelColorPurple + - TowelColorRed + - TowelColorSilver + - TowelColorLightBlue + - TowelColorWhite + - TowelColorYellow + - type: loadoutGroup id: Glasses name: loadout-group-glasses diff --git a/Resources/Prototypes/Procedural/dungeon_configs.yml b/Resources/Prototypes/Procedural/dungeon_configs.yml index b55d5a9e697..d75581bbc2b 100644 --- a/Resources/Prototypes/Procedural/dungeon_configs.yml +++ b/Resources/Prototypes/Procedural/dungeon_configs.yml @@ -127,6 +127,8 @@ Junction: BaseAirlock WallMounts: ScienceLabsWalls Window: BaseWindow + tiles: + FallbackTile: FloorDark whitelists: Rooms: tags: diff --git a/Resources/Prototypes/Reagents/narcotics.yml b/Resources/Prototypes/Reagents/narcotics.yml index a11d31df751..651e750eec7 100644 --- a/Resources/Prototypes/Reagents/narcotics.yml +++ b/Resources/Prototypes/Reagents/narcotics.yml @@ -378,6 +378,9 @@ - !type:GenericStatusEffect key: Muted component: Muted + type: Add + time: 10 + refresh: false - type: reagent id: NorepinephricAcid diff --git a/Resources/Prototypes/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/Recipes/Reactions/chemicals.yml index 537a792e859..78fdfec7c9a 100644 --- a/Resources/Prototypes/Recipes/Reactions/chemicals.yml +++ b/Resources/Prototypes/Recipes/Reactions/chemicals.yml @@ -81,7 +81,7 @@ amount: 1 Sulfur: amount: 1 - Oxygen: + Oxygen: amount: 2 products: SulfuricAcid: 3 @@ -205,6 +205,20 @@ energyConsumption: 12500 duration: 15 +- type: reaction + id: Flash + impact: High + priority: 20 + reactants: + Aluminium: + amount: 1 + Potassium: + amount: 1 + Sulfur: + amount: 1 + effects: + - !type:FlashReactionEffect + - type: reaction id: TableSalt minTemp: 370 @@ -501,3 +515,4 @@ amount: 1 products: Tazinide: 1 + diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 9bbd07848a8..2353099df56 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/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 2bee453d27d..832414dafbe 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -184,6 +184,7 @@ - OreBagOfHolding - MiningDrillDiamond - AdvancedMineralScannerEmpty + - SalvageExpeditionsComputerCircuitboard # Corvax-Cringe # Tier 3 diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 57dd3ac3fa4..2a169d2bac9 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: diff --git a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml index a5269a73dae..1703e0c6980 100644 --- a/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml +++ b/Resources/Prototypes/Shuttles/shuttle_incoming_event.yml @@ -1,8 +1,3 @@ -- type: preloadedGrid - id: ShuttleStriker - path: /Maps/Shuttles/ShuttleEvent/striker.yml - copies: 2 - - type: preloadedGrid id: ShuttleCargoLost path: /Maps/Shuttles/ShuttleEvent/lost_cargo.yml diff --git a/Resources/Prototypes/Voice/speech_emote_sounds.yml b/Resources/Prototypes/Voice/speech_emote_sounds.yml index 8e1f50df395..5eda800244f 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 6144fe97256..1e057ac8c25 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -314,6 +314,38 @@ - щёлкнула пальцами # Corvax-Localization-End +- 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 + # Corvax-Localization-Start + - стучит хвостом + - стукнул хвостом + - стукнула хвостом + - стукнул своим хвостом + - стукнула своим хвостом + # Corvax-Localization-End + - type: emote id: Salute name: chat-emote-name-salute diff --git a/Resources/Prototypes/silicon-laws.yml b/Resources/Prototypes/silicon-laws.yml index a2cf560129b..0ca79d2f23c 100644 --- a/Resources/Prototypes/silicon-laws.yml +++ b/Resources/Prototypes/silicon-laws.yml @@ -504,9 +504,9 @@ id: IonStormLawsets weights: # its crewsimov by default dont be lame - Crewsimov: 0.25 + Crewsimov: 1 # Corvax-NTDefault swapped with NTDefault Corporate: 1 - NTDefault: 1 + NTDefault: 0.25 # Corvax-NTDefault swapped with Crewsimov CommandmentsLawset: 1 PaladinLawset: 1 LiveLetLiveLaws: 1 diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 4f9d0eb3f8c..8962da5790c 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -987,6 +987,9 @@ - type: Tag id: NoBlockAnchoring +- type: Tag + id: NoConsoleSound + - type: Tag id: NozzleBackTank @@ -1297,6 +1300,9 @@ - type: Tag id: Syringe +- type: Tag + id: SyringeGunAmmo + - type: Tag id: Spellbook diff --git a/Resources/ServerInfo/Guidebook/Command.xml b/Resources/ServerInfo/Guidebook/Command.xml index 11696e42757..99b8e0656dc 100644 --- a/Resources/ServerInfo/Guidebook/Command.xml +++ b/Resources/ServerInfo/Guidebook/Command.xml @@ -1,55 +1,55 @@ -# Command -The heads of each department come together to form the [color=#1b67a5]Command[/color] department, a force to be reckoned with and the handlers of the station. They usually have access to special equipment and their own rooms. They are often wanted dead. +# Командование +Главы всех отделов объединяются в отдел [color=#1b67a5]Командования[/color] - сила, с которой нужно считаться, и руководители станции. Обычно они имеют доступ к специальной экипировке и своим собственным комнатам. Часто антагонистам требуется их убить. ## Personnel -[color=#1b67a5]Command[/color] is made up of the heads of each department, being the [color=#9fed58]Head of Personnel[/color], the [color=#cb0000]Head of Security[/color], the [color=#5b97bc]Chief Medical Officer[/color], the [color=#f39f27]Chief Engineer[/color], the [color=#c96dbf]Research Director[/color], the [color=#b18644]Quartermaster[/color] and above all else, the [color=#1b67a5]Captain[/color]. +[color=#1b67a5]Командование[/color] состоит из глав каждого отдела, то есть [color=#9fed58]Главы Персонала[/color], [color=#cb0000]Главы Службы Безопасности[/color], [color=#5b97bc]Главного Врача[/color], [color=#f39f27]Старшего Инженера[/color], [color=#c96dbf]Научного Руководителя[/color], [color=#b18644]Квартирмейстера[/color] и самого важного среди них, [color=#1b67a5]Капитана[/color]. - + - - - + + + - - - + + + -## Taking Charge -Congratulations on your promotion! Besides all the extra paperwork, your new [color=#a4885c]responsibilities[/color] include running your department, making changes and choosing priorities, keeping personnel and equipment safe as well as slacking off while your cronies do all the work. +## Ответственность +Поздравляем с вашим повышением! Помимо бумажной работы, ваши новые [color=#a4885c]обязанности[/color] включают в себя обеспечение работы отдела, проведение изменений и смены приоритетов, обеспечение безопасности персонала отдела и его экипировки, а также лежать на спинке кресла, пока ваши сотрудники работают. -Don't forget, you still have a job! Your fancy tools don't earn you a day off, you still have to fill in for any staffing shortages, helping out struggling workers and teaching the newbies. +Но не забывайте, у вас всё ещё есть работа! Ваши крутые инстументы не зарабатывают вам зарплату, вам всё ещё стоит восполнять нехватку кадров, помогать страдающим работникам и обучать новичков. -You might get away with just sitting around and letting people resent you, but it's wiser to get active and work alongside them. -Remember to move your workers around to have them do what they like doing or what they do best. +Возможно у вас получится просто отсиживаться и давать людям работать за вас, но всё же лучше быть активным и работать вместе с ними. +Помните менять обязанности ваших работников так, чтобы они делали то, что им нравится, либо у них хорошо получается. -## Your Locker +## Ваш шкафчик -To deal with your new soul-crushing tasks, every head is given special items to lead your subordinates. Most of your new shiny tools can be found in your [color=#a4885c]locker[/color]. +Чтобы справляться с вашими дробящими душу новыми задачами, у каждой главы есть специальные предметы, чтобы руководить своими подчиненными. Большинство блестящих инструментов вы сможете найти в своём [color=#a4885c]шкафчике[/color]. -Your [color=#a4885c]remote[/color] is very simple but profoundly underestimated. A small but mighty force, your remote can open and close [color=#a4885c]airlocks[/color], spin the [color=#a4885c]bolts[/color] to lock them, or toggle [color=#a4885c]emergency access[/color]. It can do this from a distance. +Ваш [color=#a4885c]пульт управления[/color] очень прост, хоть и обычно недооценён. Небольшая, но великая сила открывать и закрывать [color=#a4885c]шлюзы[/color], крутить [color=#a4885c]болты[/color] чтобы их закрыть, или переключить [color=#a4885c]аварийный доступ[/color]. Всё это можно делать с дистанции. -The remote influences where people move around. Heads can lock personnel out of dangerous areas or let people in to grab something really quickly. +Пульт управления влияет на то, где и как могут передвигаться люди. Главы могут закрыть персонал от опасных мест или быстро пустить кого-нибудь в отдел. -You also have access to your very own [color=#1b67a5]Command[/color] channel, like every other department. However, yours is particularly special as the people who can hear you have [color=#a4885c]entire departments[/color] at their fingertips. -Use this to communicate with other heads and be a representative of what your workers want or need. +Также у вас есть доступ к вашему собственному [color=#1b67a5]Командному[/color] каналу связи, как и любому другому. Однако ваш уникален тем, что все кого вы слышите в эту рацию контролируют [color=#a4885c]целые отделы[/color]. +Используйте это для общения с другими главами и представляйте желания и нужды своих работников. -The [color=#1b67a5]Captain[/color] and the [color=#9fed58]Head of Personnel[/color] get access to the lucrative [color=#a4885c]master encryption key[/color], letting them tune into every radio channel on the station. This is extremly valuable, as you can coordinate between departments yourself. -[color=#a4885c]Don't waste this vital advantage![/color] +[color=#1b67a5]Капитан[/color] и [color=#9fed58]Глава Персонала[/color] имеют доступ к особенному [color=#a4885c]универсальному ключу шифрования[/color], который даёт им доступ ко всем рациям на станции. Это позволяет вам координировать отделы между собой самостоятельно. +[color=#a4885c]Не упускайте это важное преимущество![/color] -To make the swamp of paperwork (that will definitely overwhelm you) even harder to deal with, you have generously been given a [color=#a4885c]stamp[/color] in your locker. Use this to sign paperwork. After you stamp it, it can't be edited. Look it over first. +Чтобы сделать болото бумажной работы (которое явно вас превзойдёт) ещё более тяжким для преодоления, у вас есть своя собственная [color=#a4885c]печать[/color] в шкафчике. Используйте её для подписания бумаг. После того как вы поставите печать, текст на бумаге уже нельзя изменить. Сначала читайте текст. diff --git a/Resources/ServerInfo/Guidebook/Jobs.xml b/Resources/ServerInfo/Guidebook/Jobs.xml index 0382039441f..cb692e787be 100644 --- a/Resources/ServerInfo/Guidebook/Jobs.xml +++ b/Resources/ServerInfo/Guidebook/Jobs.xml @@ -24,7 +24,7 @@ SS14 имеет большое количество должностей, кот Медицинский отдел является одним из наиболее хорошо оснащённых, с возможностью определения местонахождения раненых членов экипажа с помощью монитора экипажа, почти бесконечным запасом медикаментов если химики не подведут, и способностью быстро диагностировать и вакцинировать контагиозные заболевания. ## Научный отдел -Science consists of research assistants, scientists, and the research director. As a department it is responsible for researching technologies and artifacts, upgrading machines, and printing new and useful devices. +В научный отдел входят научные ассистенты, учёные и научный руководитель (НР). Этот отдел отвечает за изучение технологий и артефактов, улучшение машин, а также производство полезных для станции устройств. Учёные должны искать новые артефакты и аномалии для изучения, а также отвечать на запросы других отделов о модернизации их оборудования. diff --git a/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml b/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml index 18c3d9f7dab..0f67c84886c 100644 --- a/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml +++ b/Resources/ServerInfo/Guidebook/NewPlayer/NewPlayer.xml @@ -34,8 +34,8 @@ Space Station 14 это многопользовательская игра о Присоединяйтесь к десяткам других игроков на искусно спроектированной и смоделированной космической станции, погружаясь в ролевую игру и справляясь с угрозами на своем пути. -SS14 - это [italic]игра с открытым исходным кодом[/italic], разработанная такими же людьми,[bold]как и вы![/bold]. -Она получает [color=lime]ежедневные обновления[/color] и временами может быть [color=#EB2D3A][bold]нестабильной.[/bold][/color]. +SS14 - это [italic]игра с открытым исходным кодом[/italic], разработанная такими же людьми, [bold]как и вы![/bold] +Она получает [color=lime]ежедневные обновления[/color] и временами может быть [color=#EB2D3A][bold]нестабильной.[/bold][/color] [italic]Если вы хотите сообщать об ошибках или помогать в разработке, присоединяйтесь к discord и узнайте, с чего начать.[/italic] diff --git a/Resources/ServerInfo/Guidebook/References.xml b/Resources/ServerInfo/Guidebook/References.xml index 1994b463b34..28b68f2e743 100644 --- a/Resources/ServerInfo/Guidebook/References.xml +++ b/Resources/ServerInfo/Guidebook/References.xml @@ -1,4 +1,4 @@ - # Reference Tables - This entry is made to contain information that you might have to come back to over and over again. Use as necessary. + # Таблицы и референсы + Этот раздел содержит информацию, которая пригодится вам многократно. Используйте по необходимости. diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png index e2415d48d46..e022d266f31 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png index ed64010e818..135f2f90cc2 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png index 1bb0b35282b..8d6c8b3d706 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png index a0a36dc72a0..b7a21c5b72a 100644 Binary files a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png and b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json index 187e5b7e684..c461ca03667 100644 --- a/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Hats/security_trooper_hat.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by DieselMohawk for use in ss14", + "copyright": "Sprites made by @prazat911", "size": { "x": 32, "y": 32 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 00000000000..e293a0e7e9e 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 00000000000..6ccb1f26ae0 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 00000000000..769f67b9a0c 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 00000000000..6105c8aba12 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 00000000000..c5c73e1060d 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 00000000000..334d3f3531e 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 00000000000..4c8b4428ae6 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 00000000000..7ef955ba5f8 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 00000000000..95acda0af39 --- /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/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png index fec358aa493..7613d09e48f 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-monkey.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-reptilian.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-reptilian.png new file mode 100644 index 00000000000..c487c8b9019 Binary files /dev/null and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING-reptilian.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png index 59fdc6a720d..a8d24ba9970 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png index 6da72364d9b..eea6e0f5b67 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png index 4899fb66e38..ebc27a1b7a6 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png index 7a4841f09b6..ed6e317ba17 100644 Binary files a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png and b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json index ffbdd2c8dfb..3546268483e 100644 --- a/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json +++ b/Resources/Textures/Clothing/Uniforms/Jumpsuit/security_trooper.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by DieselMohawk for use in ss14", + "copyright": "Sprites made by @prazat911", "size": { "x": 32, "y": 32 @@ -17,6 +17,10 @@ { "name": "equipped-INNERCLOTHING-monkey", "directions": 4 + }, + { + "name": "equipped-INNERCLOTHING-reptilian", + "directions": 4 }, { "name": "inhand-left", diff --git a/Resources/Textures/Interface/Emotes/attributions.yml b/Resources/Textures/Interface/Emotes/attributions.yml index 4cb2faa076e..55cb19a9d7c 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 00000000000..75405a67bab Binary files /dev/null and b/Resources/Textures/Interface/Emotes/tailslap.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 244183c078c..535f5a48e99 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 7e61f368de2..a62b9263d52 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 59131c8c0aa..69a1825d91d 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/Devices/encryption_keys.rsi/crypt_blue.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_blue.png index a1b463f7896..45e0c9755e4 100644 Binary files a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_blue.png and b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_blue.png differ diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gold.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gold.png index 641a4c22153..53b97f4c783 100644 Binary files a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gold.png and b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gold.png differ diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gray.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gray.png index 47d410736e7..8f905fb9a88 100644 Binary files a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gray.png and b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_gray.png differ diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_orange.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_orange.png index e0ddcfe7b7e..638d7509a0a 100644 Binary files a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_orange.png and b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_orange.png differ diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_red.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_red.png index d30341b1422..14b22cf14a4 100644 Binary files a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_red.png and b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_red.png differ diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_rusted.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_rusted.png index ce82c248db8..8223bcca8fa 100644 Binary files a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_rusted.png and b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_rusted.png differ diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_silver.png b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_silver.png index c31a743f473..03e29607792 100644 Binary files a/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_silver.png and b/Resources/Textures/Objects/Devices/encryption_keys.rsi/crypt_silver.png differ diff --git a/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json b/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json index a6222e988f7..62e47be4ba3 100644 --- a/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/encryption_keys.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Created by DSC@300074782328750080 for Space Station 14, borg_label taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi and modified by ArtisticRoomba", + "copyright": "Created by DSC@300074782328750080 for Space Station 14, borg_label taken from https://github.com/vgstation-coders/vgstation13/blob/e71d6c4fba5a51f99b81c295dcaec4fc2f58fb19/icons/mob/screen1.dmi and modified by ArtisticRoomba, crypt states modified by Flareguy for Space Station 14", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Objects/Devices/tablets.rsi/generic.png b/Resources/Textures/Objects/Devices/tablets.rsi/generic.png index 5e1130fcc1c..22225d775ee 100644 Binary files a/Resources/Textures/Objects/Devices/tablets.rsi/generic.png and b/Resources/Textures/Objects/Devices/tablets.rsi/generic.png differ diff --git a/Resources/Textures/Objects/Devices/tablets.rsi/meta.json b/Resources/Textures/Objects/Devices/tablets.rsi/meta.json index 11d1d586eb7..5af056f2915 100644 --- a/Resources/Textures/Objects/Devices/tablets.rsi/meta.json +++ b/Resources/Textures/Objects/Devices/tablets.rsi/meta.json @@ -1 +1,26 @@ -{"version":1,"license":"CC-BY-SA-3.0","copyright":"https://github.com/Baystation12/Baystation12/tree/17e84546562b97d775cb26790a08e6d87e7f8077","size":{"x":32,"y":32},"states":[{"name":"tablet"},{"name":"tabletsol"},{"name":"generic","delays":[[0.3,0.3]]}]} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Baystation12 at https://github.com/Baystation12/Baystation12/tree/17e84546562b97d775cb26790a08e6d87e7f8077 and heavily modified by Flareguy for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "tablet" + }, + { + "name": "tabletsol" + }, + { + "name": "generic", + "delays": [ + [ + 0.3, + 0.3 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Devices/tablets.rsi/tablet.png b/Resources/Textures/Objects/Devices/tablets.rsi/tablet.png index 417d44fbcc0..5fb920e7824 100644 Binary files a/Resources/Textures/Objects/Devices/tablets.rsi/tablet.png and b/Resources/Textures/Objects/Devices/tablets.rsi/tablet.png differ diff --git a/Resources/Textures/Objects/Devices/tablets.rsi/tabletsol.png b/Resources/Textures/Objects/Devices/tablets.rsi/tabletsol.png index f79a25da853..8a336405382 100644 Binary files a/Resources/Textures/Objects/Devices/tablets.rsi/tabletsol.png and b/Resources/Textures/Objects/Devices/tablets.rsi/tabletsol.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 00000000000..b18dfd1c294 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 00000000000..cb25c6e3cf2 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 00000000000..7c34512cb66 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 00000000000..1556cd4eb9f --- /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 00000000000..eb4ab6bbbec 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 1495eccd7a6..0c29f3e3fb1 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 00000000000..66c49a744cd 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 00000000000..6f5d5663546 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 00000000000..71d3bad044a 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 7819a48c661..5faf746ae3a 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/Specific/Medical/defibsmall.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/icon.png new file mode 100644 index 00000000000..99a15087e7b Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-left.png new file mode 100644 index 00000000000..42d319843d9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-right.png new file mode 100644 index 00000000000..a2317f7face Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/meta.json new file mode 100644 index 00000000000..441fd4f5feb --- /dev/null +++ b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14 and modified by alzore_(Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "ready" + }, + { + "name": "screen" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/ready.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/ready.png new file mode 100644 index 00000000000..cc4b2741143 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/ready.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/screen.png b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/screen.png new file mode 100644 index 00000000000..1a2ac1cdec9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsmall.rsi/screen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/icon.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/icon.png new file mode 100644 index 00000000000..69c4e441de0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-left.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-left.png new file mode 100644 index 00000000000..ac0c8d61898 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-right.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-right.png new file mode 100644 index 00000000000..c30877c534e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/meta.json new file mode 100644 index 00000000000..441fd4f5feb --- /dev/null +++ b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by EmoGarbage404 (github) for Space Staiton 14 and modified by alzore_(Discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "ready" + }, + { + "name": "screen" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/ready.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/ready.png new file mode 100644 index 00000000000..e5a8065eadc Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/ready.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/screen.png b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/screen.png new file mode 100644 index 00000000000..0c7a26a2a5e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/defibsyndi.rsi/screen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen.png new file mode 100644 index 00000000000..7a8ebfec6bf Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen_empty.png new file mode 100644 index 00000000000..28c0b3c51e0 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/dexpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json index 8e9f54f1d06..8872f25f52c 100644 --- a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/meta.json @@ -96,6 +96,24 @@ }, { "name": "medipen-inhand-right" + }, + { + "name": "punctpen" + }, + { + "name": "punctpen_empty" + }, + { + "name": "pyrapen" + }, + { + "name": "pyrapen_empty" + }, + { + "name": "dexpen" + }, + { + "name": "dexpen_empty" } ] } diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen.png new file mode 100644 index 00000000000..fa529e8d189 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen_empty.png new file mode 100644 index 00000000000..4bd9cd48583 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/punctpen_empty.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen.png new file mode 100644 index 00000000000..fee075cc3be Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen.png differ diff --git a/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen_empty.png b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen_empty.png new file mode 100644 index 00000000000..02dfcae6ba2 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Medical/medipen.rsi/pyrapen_empty.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 877a76785e8..e80c4fa942b 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 00000000000..19d43a58d25 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 00000000000..99d7bc37309 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 07cec4822e9..3a6e8e9d8e9 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 1784e7f6236..6a141b7efb1 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 00000000000..2414fe500b9 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 00000000000..1784e7f6236 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 3ff1180051b..d68f85845e5 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 00000000000..50ea7c47ff3 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 00000000000..94a2272c800 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 a72e24594e3..b2728ab02bb 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 edcbdbd3851..c9f029f32a3 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 00000000000..84725cfd321 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 00000000000..532baa546b3 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 da73a5f853b..8b49392b77d 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 00000000000..80e504f560e 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 00000000000..0c582b01d57 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 6a77161ab26..39e05c72114 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 00000000000..8fd938dce0b 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 00000000000..6a77161ab26 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 878138f73fa..958aeb6f48e 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 a6feb95c36c..36c872a4268 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 00000000000..025bec650e0 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 00000000000..31c1c6b5c76 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 7fbc8f50acf..39e05c72114 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 00000000000..8fd938dce0b 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 00000000000..6a77161ab26 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 22eef0aaf3a..ff9704e4fc7 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 a36a9226170..8b7d23dc6c4 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 00000000000..6d2b4034e1f 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 00000000000..7d2bcd29ec2 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 67af0dcd27b..bb09b47a524 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 f32f6862662..43d1f0f5f71 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 00000000000..5d6d61f5dbf 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 6237fcbe6fe..dd1e88cffcb 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 0c642312083..4d7eb62cbf2 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 00000000000..24cf3a37fb9 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 00000000000..68bb5da7bed 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 a3d15b76e69..39e05c72114 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 00000000000..8fd938dce0b 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 00000000000..6a77161ab26 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 18e89881dd9..5c5b4eaef38 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 00000000000..b59a4d52682 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 00000000000..6a8268d27e3 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 00000000000..dae584eb812 --- /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 00000000000..972714d1c71 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Guns/Cannons/syringe_gun.rsi/syringe_gun.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/inhand-left.png new file mode 100644 index 00000000000..1c1093a702e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/inhand-right.png new file mode 100644 index 00000000000..75934554bfa Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/meta.json new file mode 100644 index 00000000000..c634ba82a37 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by alzore_ (discord) based on the proto-kinetic crusher", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..e8e9a267ff2 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..4ef9c388d62 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher-inhands.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/icon.png index d9b6ca8157b..1df2bf43885 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/inhand-left.png deleted file mode 100644 index 28eab44a32f..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/inhand-right.png deleted file mode 100644 index dcf606531ba..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/meta.json index 2d91fb460be..8a70dbd998c 100644 --- a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/crusher.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/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi", + "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi and modified by alzore_ (discord)", "size": { "x": 32, "y": 32 @@ -21,22 +21,6 @@ 0.3 ] ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/wielded-inhand-left.png deleted file mode 100644 index 6b55e43f72e..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/wielded-inhand-right.png deleted file mode 100644 index b3d449f083a..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-left.png index 5d64ccba6ed..ccb1aa83d83 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-left.png and b/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-right.png index cce061bab29..ae6e01f4a50 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-right.png and b/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/meta.json index f076030635f..f64277be797 100644 --- a/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/crusher_dagger.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/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi", + "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi inhands by alzore_ (discord)", "size": { "x": 32, "y": 32 @@ -22,4 +22,4 @@ "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/inhand-left.png new file mode 100644 index 00000000000..f245aea9fea Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/inhand-right.png new file mode 100644 index 00000000000..6949718a597 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/meta.json new file mode 100644 index 00000000000..c6fb3d12d8e --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by alzore_ (discord) based on the proto-kinetic crusher glaive", + "size": { + "x": 64, + "y": 64 + }, + "states": [ + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/wielded-inhand-left.png new file mode 100644 index 00000000000..330b936fb25 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/wielded-inhand-right.png new file mode 100644 index 00000000000..2d1a481266d Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive-inhands.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/icon.png index 980af14aa86..e22b636f3da 100644 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/icon.png and b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/inhand-left.png deleted file mode 100644 index 6d9aab74206..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/inhand-right.png deleted file mode 100644 index e2d24c9ee8a..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/meta.json index 2d91fb460be..8a70dbd998c 100644 --- a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/meta.json +++ b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.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/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi", + "copyright": "https://github.com/Citadel-Station-13/Citadel-Station-13-RP/blob/817e7c1f225876b45891e3f06908e6d032f0a8bc/icons/obj/mining.dmi and modified by alzore_ (discord)", "size": { "x": 32, "y": 32 @@ -21,22 +21,6 @@ 0.3 ] ] - }, - { - "name": "inhand-left", - "directions": 4 - }, - { - "name": "inhand-right", - "directions": 4 - }, - { - "name": "wielded-inhand-left", - "directions": 4 - }, - { - "name": "wielded-inhand-right", - "directions": 4 } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/wielded-inhand-left.png deleted file mode 100644 index ce6c530f30c..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/wielded-inhand-left.png and /dev/null differ diff --git a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/wielded-inhand-right.png deleted file mode 100644 index 84abf801487..00000000000 Binary files a/Resources/Textures/Objects/Weapons/Melee/crusher_glaive.rsi/wielded-inhand-right.png and /dev/null differ diff --git a/Resources/Textures/Structures/Machines/station_map.rsi/meta.json b/Resources/Textures/Structures/Machines/station_map.rsi/meta.json index a1da3673bbd..12c6a212a19 100644 --- a/Resources/Textures/Structures/Machines/station_map.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/station_map.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC0-1.0", - "copyright": "Made by brainfood1183 (github) for ss14", + "copyright": "Made by brainfood1183 (github) for ss14 and modified by Flareguy for ss14. station_map_broken based on broken state in Cryogenic2.dmi from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/96246eed6e19899971a6d18e849fa6fe0b8ab52a/icons/obj/Cryogenic2.dmi", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Machines/station_map.rsi/station_map0.png b/Resources/Textures/Structures/Machines/station_map.rsi/station_map0.png index 9c22f5852cf..a15bffd4487 100644 Binary files a/Resources/Textures/Structures/Machines/station_map.rsi/station_map0.png and b/Resources/Textures/Structures/Machines/station_map.rsi/station_map0.png differ diff --git a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_broken.png b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_broken.png index 7297442f108..6228597a401 100644 Binary files a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_broken.png and b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_broken.png differ diff --git a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame0.png b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame0.png index 460c86b896a..1b6241a5754 100644 Binary files a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame0.png and b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame0.png differ diff --git a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame1.png b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame1.png index 4b6fd1babf7..83dfe28b291 100644 Binary files a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame1.png and b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame1.png differ diff --git a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame2.png b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame2.png index 91fb91378a1..9a160c373d8 100644 Binary files a/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame2.png and b/Resources/Textures/Structures/Machines/station_map.rsi/station_map_frame2.png differ diff --git a/Resources/Textures/Structures/Wallmounts/mirror.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/mirror.rsi/meta.json index 73d8063a693..ad764027d16 100644 --- a/Resources/Textures/Structures/Wallmounts/mirror.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/mirror.rsi/meta.json @@ -1 +1,17 @@ -{"version":1,"size":{"x":32,"y":32},"copyright":"Taken from tgstation","license":"CC-BY-SA-3.0","states":[{"name":"mirror"},{"name":"mirror_broke"}]} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "by Ko4erga (discord)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "mirror" + }, + { + "name": "mirror_broke" + } + ] +} diff --git a/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror.png b/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror.png index 6411d2f12bd..c11fadcae64 100644 Binary files a/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror.png and b/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror.png differ diff --git a/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror_broke.png b/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror_broke.png index 53a7cf64eeb..e63d2bd47ea 100644 Binary files a/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror_broke.png and b/Resources/Textures/Structures/Wallmounts/mirror.rsi/mirror_broke.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json index a5dfc0546bd..cdcfa49711b 100644 --- a/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by brainfood1183 (Github) for Space Station 14", + "copyright": "Made by brainfood1183 (Github) for Space Station 14 and modified by Flareguy", "size": { "x": 32, "y": 32 diff --git a/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png index e1496f2ca8b..715d3ab5c6c 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png and b/Resources/Textures/Structures/Wallmounts/signalscreen.rsi/signalscreen.png differ diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json index 0944ac28e23..230beb2dccb 100644 --- a/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json +++ b/Resources/Textures/Structures/Wallmounts/signs.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github). 'court', 'janitor', 'law' & 'psychology' changed for corvax by netwy (discord, 583844759429316618) and updated by github:lapatison; Job signs localized by kaiserGans (github), 'direction_atmos' made by SlamBamActionman. voxcross taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/e7f005f8b8d3f7d89cbee3b87f76c23f9e951c27/icons/obj/decals.dmi", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris at commit 4e0bbe682d0a00192d24708fdb7031008aa03f18 and bee station at commit https://github.com/BeeStation/BeeStation-Hornet/commit/13dd5ac712385642574138f6d7b30eea7c2fab9c, Job signs by EmoGarbage404 (github) with inspiration from yogstation and tgstation, 'direction_exam' and 'direction_icu' made by rosieposieeee (github). 'court', 'janitor', 'law' & 'psychology' changed for corvax by netwy (discord, 583844759429316618) and updated by github:lapatison; Job signs localized by kaiserGans (github), 'direction_atmos' made by SlamBamActionman. voxcross taken from vgstation13 at https://github.com/vgstation-coders/vgstation13/blob/e7f005f8b8d3f7d89cbee3b87f76c23f9e951c27/icons/obj/decals.dmi, 'ntmining' modified by Ko4erga", "states": [ { "name": "ai" diff --git a/Resources/Textures/Structures/Wallmounts/signs.rsi/ntmining.png b/Resources/Textures/Structures/Wallmounts/signs.rsi/ntmining.png index bd452d172ba..8b4fc0b6e40 100644 Binary files a/Resources/Textures/Structures/Wallmounts/signs.rsi/ntmining.png and b/Resources/Textures/Structures/Wallmounts/signs.rsi/ntmining.png differ diff --git a/RobustToolbox b/RobustToolbox index d1d43f834b8..32bca7cfd41 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit d1d43f834b8845da698ef1898e8191ab159ee367 +Subproject commit 32bca7cfd417edcad9a60c2b1703eba8675f56af